LDA Clean

Tutorial Here

OVERVIEW

1. GET the data
2. CLEAN the data with regex
3. TOKENIZE the data
4. REMOVE stopwords from the data
In [8]:
import pandas as pd
def get_data(url):
    df = pd.read_json(url)
    return df

def do_some_eda(df):
    print(df.target_names.unique())
    df.head()

import re
def clean_data(df):
    text_corpus = df.content.values.tolist()
    text_corpus = [re.sub('\S*@\S*\s?', '', doc) for doc in text_corpus] #removing emails
    text_corpus = [re.sub('\s+', ' ', doc) for doc in text_corpus] #removing newline 
    text_corpus = [re.sub("\'", "", doc) for doc in text_corpus] #removing single quotes
    return text_corpus

import gensim
import warnings
warnings.simplefilter("ignore", DeprecationWarning)
 
def doc_to_words(sentences):
    for sentence in sentences:
        yield(gensim.utils.simple_preprocess(str(sentence), deacc=True))

        
from nltk.corpus import stopwords
stop_words = stopwords.words('english')
stop_words.extend(['from', 'subject', 're', 'edu', 'use'])
 
def remove_stopwords(text):
    return [[word for word in gensim.utils.simple_preprocess(str(doc)) 
             if word not in stop_words] for doc in text_corpus]
 
    
import spacy
nlp = spacy.load('en', disable=['parser', 'ner'] )
 
def lemmatization(texts, allowed_postags=['NOUN', 'ADJ', 'VERB', 'ADV']):
    texts_out = []
    for idx, sent in enumerate(texts):
        if (idx) % 500 == 0:
            print(str(idx) + ' documents lemmatised')
        doc = nlp(" ".join(sent)) 
        texts_out.append([token.lemma_ for token in doc if token.pos_ in allowed_postags])
    return texts_out
 
# Create Dictionary
import gensim.corpora as corpora
def get_model(data_lemmatized):
    id2word = corpora.Dictionary(data_lemmatized)

    # Create Corpus
    corpus = [id2word.doc2bow(text) for text in data_lemmatized]

    # Build LDA model
    lda_model = gensim.models.ldamodel.LdaModel(corpus=corpus,
                                               id2word=id2word,
                                               num_topics=20, 
                                               per_word_topics=True)
    return corpus, lda_model


def format_topics_sentences(ldamodel, corpus, texts):
    # Array of top 10 topics
    top10array = []
 
    for row in range(ldamodel.num_topics):
        wp = ldamodel.show_topic(row)
        topic_keywords = ", ".join([word for word, prop in wp])
        top10array.append((row+1, topic_keywords))
 
    top10dict = dict(top10array)
 
    sent_topics_df = pd.DataFrame(pd.DataFrame([sorted(topic[0], key=lambda x: (x[1]), reverse=True) 
                                                for topic in ldamodel[corpus]])[0])
    sent_topics_df.columns=["Data"]
    sent_topics_df['Dominant_Topic'] = sent_topics_df.Data.apply(lambda x: x[0]+1)
    sent_topics_df['Perc_Contribution'] = sent_topics_df.Data.apply(lambda x: round(x[1],4))
    sent_topics_df['Topic_Keywords'] = sent_topics_df.Dominant_Topic.apply(lambda x: top10dict[x])
 
    # Add original text to the end of the output
    contents = pd.Series(texts)
    sent_topics_df = pd.concat([sent_topics_df, contents.rename("Text")], axis=1)
    sent_topics_df = sent_topics_df[['Dominant_Topic', 'Perc_Contribution', 'Topic_Keywords', 'Text']]
    return(sent_topics_df)
 


# def do_the_thing():
df = get_data('https://raw.githubusercontent.com/selva86/datasets/master/newsgroups.json')
# do_some_eda(df)
text_corpus = clean_data(df)
words = list(doc_to_words(text_corpus)) 
words = remove_stopwords(words)
words

# data_lemmatized = lemmatization(words, allowed_postags=['NOUN', 'ADJ', 'VERB', 'ADV'])

# corpus, lda_model = get_model(data_lemmatized)

# from pprint import pprint
# pprint(lda_model.print_topics())
# doc_lda = lda_model[corpus]
# df_topic_sents_keywords = format_topics_sentences(lda_model, corpus, text_corpus)
# df_topic_sents_keywords
Out[8]:
[['wheres',
  'thing',
  'car',
  'nntp',
  'posting',
  'host',
  'rac',
  'wam',
  'umd',
  'organization',
  'university',
  'maryland',
  'college',
  'park',
  'lines',
  'wondering',
  'anyone',
  'could',
  'enlighten',
  'car',
  'saw',
  'day',
  'door',
  'sports',
  'car',
  'looked',
  'late',
  'early',
  'called',
  'bricklin',
  'doors',
  'really',
  'small',
  'addition',
  'front',
  'bumper',
  'separate',
  'rest',
  'body',
  'know',
  'anyone',
  'tellme',
  'model',
  'name',
  'engine',
  'specs',
  'years',
  'production',
  'car',
  'made',
  'history',
  'whatever',
  'info',
  'funky',
  'looking',
  'car',
  'please',
  'mail',
  'thanks',
  'il',
  'brought',
  'neighborhood',
  'lerxst'],
 ['guy',
  'kuo',
  'si',
  'clock',
  'poll',
  'final',
  'call',
  'summary',
  'final',
  'call',
  'si',
  'clock',
  'reports',
  'keywords',
  'si',
  'acceleration',
  'clock',
  'upgrade',
  'article',
  'shelley',
  'qvfo',
  'innc',
  'organization',
  'university',
  'washington',
  'lines',
  'nntp',
  'posting',
  'host',
  'carson',
  'washington',
  'fair',
  'number',
  'brave',
  'souls',
  'upgraded',
  'si',
  'clock',
  'oscillator',
  'shared',
  'experiences',
  'poll',
  'please',
  'send',
  'brief',
  'message',
  'detailing',
  'experiences',
  'procedure',
  'top',
  'speed',
  'attained',
  'cpu',
  'rated',
  'speed',
  'add',
  'cards',
  'adapters',
  'heat',
  'sinks',
  'hour',
  'usage',
  'per',
  'day',
  'floppy',
  'disk',
  'functionality',
  'floppies',
  'especially',
  'requested',
  'summarizing',
  'next',
  'two',
  'days',
  'please',
  'add',
  'network',
  'knowledge',
  'base',
  'done',
  'clock',
  'upgrade',
  'havent',
  'answered',
  'poll',
  'thanks',
  'guy',
  'kuo'],
 ['thomas',
  'willis',
  'pb',
  'questions',
  'organization',
  'purdue',
  'university',
  'engineering',
  'computer',
  'network',
  'distribution',
  'usa',
  'lines',
  'well',
  'folks',
  'mac',
  'plus',
  'finally',
  'gave',
  'ghost',
  'weekend',
  'starting',
  'life',
  'way',
  'back',
  'sooo',
  'im',
  'market',
  'new',
  'machine',
  'bit',
  'sooner',
  'intended',
  'im',
  'looking',
  'picking',
  'powerbook',
  'maybe',
  'bunch',
  'questions',
  'hopefully',
  'somebody',
  'answer',
  'anybody',
  'know',
  'dirt',
  'next',
  'round',
  'powerbook',
  'introductions',
  'expected',
  'id',
  'heard',
  'supposed',
  'make',
  'appearence',
  'summer',
  'havent',
  'heard',
  'anymore',
  'since',
  'dont',
  'access',
  'macleak',
  'wondering',
  'anybody',
  'info',
  'anybody',
  'heard',
  'rumors',
  'price',
  'drops',
  'powerbook',
  'line',
  'like',
  'ones',
  'duos',
  'went',
  'recently',
  'whats',
  'impression',
  'display',
  'could',
  'probably',
  'swing',
  'got',
  'mb',
  'disk',
  'rather',
  'dont',
  'really',
  'feel',
  'much',
  'better',
  'display',
  'yea',
  'looks',
  'great',
  'store',
  'wow',
  'really',
  'good',
  'could',
  'solicit',
  'opinions',
  'people',
  'day',
  'day',
  'worth',
  'taking',
  'disk',
  'size',
  'money',
  'hit',
  'get',
  'active',
  'display',
  'realize',
  'real',
  'subjective',
  'question',
  'ive',
  'played',
  'around',
  'machines',
  'computer',
  'store',
  'breifly',
  'figured',
  'opinions',
  'somebody',
  'actually',
  'uses',
  'machine',
  'daily',
  'might',
  'prove',
  'helpful',
  'well',
  'hellcats',
  'perform',
  'thanks',
  'bunch',
  'advance',
  'info',
  'could',
  'email',
  'ill',
  'post',
  'summary',
  'news',
  'reading',
  'time',
  'premium',
  'finals',
  'around',
  'corner',
  'tom',
  'willis',
  'purdue',
  'electrical',
  'engineering',
  'convictions',
  'dangerous',
  'enemies',
  'truth',
  'lies',
  'nietzsche'],
 ['joe',
  'green',
  'weitek',
  'organization',
  'harris',
  'computer',
  'systems',
  'division',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'amber',
  'ssd',
  'csd',
  'harris',
  'com',
  'newsreader',
  'tin',
  'version',
  'pl',
  'robert',
  'kyanko',
  'wrote',
  'writes',
  'article',
  'anyone',
  'know',
  'weitek',
  'graphics',
  'chip',
  'far',
  'low',
  'level',
  'stuff',
  'goes',
  'looks',
  'pretty',
  'nice',
  'got',
  'quadrilateral',
  'fill',
  'command',
  'requires',
  'four',
  'points',
  'weiteks',
  'address',
  'phone',
  'number',
  'id',
  'like',
  'get',
  'information',
  'chip',
  'joe',
  'green',
  'harris',
  'corporation',
  'computer',
  'systems',
  'division',
  'thing',
  'really',
  'scares',
  'person',
  'sense',
  'humor',
  'jonathan',
  'winters'],
 ['jonathan',
  'mcdowell',
  'shuttle',
  'launch',
  'question',
  'organization',
  'smithsonian',
  'astrophysical',
  'observatory',
  'cambridge',
  'usa',
  'distribution',
  'sci',
  'lines',
  'article',
  'tom',
  'baker',
  'article',
  'pack',
  'rat',
  'writes',
  'clear',
  'caution',
  'warning',
  'memory',
  'verify',
  'unexpected',
  'errors',
  'wondering',
  'expected',
  'error',
  'might',
  'sorry',
  'really',
  'dumb',
  'question',
  'parity',
  'errors',
  'memory',
  'previously',
  'known',
  'conditions',
  'waivered',
  'yes',
  'error',
  'already',
  'knew',
  'id',
  'curious',
  'real',
  'meaning',
  'quote',
  'tom',
  'understanding',
  'expected',
  'errors',
  'basically',
  'known',
  'bugs',
  'warning',
  'system',
  'software',
  'things',
  'checked',
  'dont',
  'right',
  'values',
  'yet',
  'arent',
  'set',
  'till',
  'launch',
  'suchlike',
  'rather',
  'fix',
  'code',
  'possibly',
  'introduce',
  'new',
  'bugs',
  'tell',
  'crew',
  'ok',
  'see',
  'warning',
  'liftoff',
  'ignore',
  'jonathan'],
 ['foxvog',
  'douglas',
  'rewording',
  'second',
  'amendment',
  'ideas',
  'organization',
  'vtt',
  'lines',
  'article',
  'tavares',
  'writes',
  'article',
  'foxvog',
  'douglas',
  'writes',
  'article',
  'tavares',
  'writes',
  'article',
  'john',
  'lawrence',
  'rutledge',
  'writes',
  'massive',
  'destructive',
  'power',
  'many',
  'modern',
  'weapons',
  'makes',
  'cost',
  'accidental',
  'crimial',
  'usage',
  'weapons',
  'great',
  'weapons',
  'mass',
  'destruction',
  'need',
  'control',
  'government',
  'individual',
  'access',
  'would',
  'result',
  'needless',
  'deaths',
  'millions',
  'makes',
  'right',
  'people',
  'keep',
  'bear',
  'many',
  'modern',
  'weapons',
  'non',
  'existant',
  'thanks',
  'stating',
  'youre',
  'coming',
  'needless',
  'say',
  'disagree',
  'every',
  'count',
  'believe',
  'individuals',
  'right',
  'weapons',
  'mass',
  'destruction',
  'find',
  'hard',
  'believe',
  'would',
  'support',
  'neighbors',
  'right',
  'keep',
  'nuclear',
  'weapons',
  'biological',
  'weapons',
  'nerve',
  'gas',
  'property',
  'cannot',
  'even',
  'agree',
  'keeping',
  'weapons',
  'mass',
  'destruction',
  'hands',
  'individuals',
  'hope',
  'us',
  'dont',
  'sign',
  'blank',
  'checks',
  'course',
  'term',
  'must',
  'rigidly',
  'defined',
  'bill',
  'doug',
  'foxvog',
  'says',
  'weapons',
  'mass',
  'destruction',
  'means',
  'cbw',
  'nukes',
  'sarah',
  'brady',
  'says',
  'weapons',
  'mass',
  'destruction',
  'means',
  'street',
  'sweeper',
  'shotguns',
  'semi',
  'automatic',
  'sks',
  'rifles',
  'doubt',
  'uses',
  'term',
  'using',
  'quote',
  'allegedly',
  'back',
  'john',
  'lawrence',
  'rutledge',
  'says',
  'weapons',
  'mass',
  'destruction',
  'immediately',
  'follows',
  'us',
  'thousands',
  'people',
  'killed',
  'year',
  'handguns',
  'number',
  'easily',
  'reduced',
  'putting',
  'reasonable',
  'restrictions',
  'rutledge',
  'mean',
  'term',
  'read',
  'article',
  'presenting',
  'first',
  'argument',
  'weapons',
  'mass',
  'destruction',
  'commonly',
  'understood',
  'switching',
  'topics',
  'first',
  'point',
  'evidently',
  'show',
  'weapons',
  'allowed',
  'later',
  'analysis',
  'given',
  'understanding',
  'consider',
  'another',
  'class',
  'believe',
  'speak',
  'company',
  'write',
  'today',
  'special',
  'investors',
  'packet',
  'doug',
  'foxvog'],
 ['brian',
  'manning',
  'delaney',
  'brain',
  'tumor',
  'treatment',
  'thanks',
  'reply',
  'organization',
  'university',
  'chicago',
  'lines',
  'people',
  'responded',
  'request',
  'info',
  'treatment',
  'astrocytomas',
  'email',
  'couldnt',
  'thank',
  'directly',
  'mail',
  'bouncing',
  'probs',
  'sean',
  'debra',
  'sharon',
  'thought',
  'id',
  'publicly',
  'thank',
  'everyone',
  'thanks',
  'im',
  'sure',
  'glad',
  'accidentally',
  'hit',
  'rn',
  'instead',
  'rm',
  'trying',
  'delete',
  'file',
  'last',
  'september',
  'hmmm',
  'news',
  'whats',
  'brian'],
 ['grubb',
  'ide',
  'vs',
  'scsi',
  'organization',
  'new',
  'mexico',
  'state',
  'university',
  'las',
  'cruces',
  'nm',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'dante',
  'nmsu',
  'writes',
  'article',
  'grubb',
  'says',
  'pc',
  'magazine',
  'april',
  'although',
  'scsi',
  'twice',
  'fasst',
  'esdi',
  'faster',
  'ide',
  'support',
  'devices',
  'acceptance',
  'long',
  'stalled',
  'incompatability',
  'problems',
  'installation',
  'headaches',
  'love',
  'magazine',
  'writers',
  'make',
  'stupid',
  'statements',
  'like',
  'performance',
  'get',
  'numbers',
  'ill',
  'list',
  'actual',
  'performance',
  'ranges',
  'convince',
  'anyone',
  'statement',
  'absurd',
  'scsi',
  'ranges',
  'mb',
  'scsi',
  'ii',
  'ranges',
  'mb',
  'ide',
  'ranges',
  'mb',
  'esdi',
  'always',
  'mb',
  'although',
  'non',
  'standard',
  'versions',
  'shows',
  'dont',
  'know',
  'much',
  'scsi',
  'scsi',
  'scsi',
  'controler',
  'chip',
  'range',
  'indeed',
  'mb',
  'right',
  'scsi',
  'scsi',
  'scsi',
  'controller',
  'chip',
  'mb',
  'mb',
  'burst',
  'bit',
  'note',
  'increase',
  'speed',
  'mac',
  'quadra',
  'uses',
  'version',
  'scsi',
  'exist',
  'pc',
  'set',
  'scsi',
  'bit',
  'scsi',
  'mode',
  'mb',
  'mb',
  'burst',
  'scsi',
  'bit',
  'wide',
  'fast',
  'mode',
  'mb',
  'mb',
  'burst',
  'scsi',
  'bit',
  'wide',
  'fast',
  'mb',
  'mb',
  'burst',
  'data',
  'although',
  'scsi',
  'twice',
  'fast',
  'esdi',
  'correct',
  'scsi',
  'controller',
  'chip',
  'scsi',
  'reach',
  'mb',
  'indeed',
  'faster',
  'ide',
  'scsi',
  'facts',
  'posted',
  'newsgroup',
  'mac',
  'ibm',
  'info',
  'sheet',
  'available',
  'ftp',
  'sumex',
  'aim',
  'stanford',
  'info',
  'mac',
  'report',
  'mac',
  'ibm',
  'compare',
  'version',
  'txt',
  'may',
  'still',
  'part',
  'problem',
  'mac',
  'ibm',
  'pc',
  'inconsiant',
  'scsi',
  'though',
  'well',
  'documented',
  'quadra',
  'scsi',
  'chip',
  'apple',
  'salesperson',
  'said',
  'uses',
  'fast',
  'scsi',
  'chip',
  'mb',
  'mb',
  'burst',
  'scsi',
  'mb',
  'maximum',
  'synchronous',
  'quadra',
  'uses',
  'ansynchronous',
  'scsi',
  'slower',
  'seems',
  'mac',
  'ibm',
  'see',
  'scsi',
  'interface',
  'think',
  'scsi',
  'maybe',
  'scsi',
  'interface',
  'driven',
  'machine',
  'scsi',
  'controller',
  'chip',
  'bit',
  'mode',
  'much',
  'faster',
  'true',
  'scsi',
  'go',
  'dont',
  'slam',
  'article',
  'dont',
  'understand',
  'going',
  'one',
  'reference',
  'quadras',
  'scsi',
  'controller',
  'chip',
  'digital',
  'review',
  'oct'],
 ['win',
  'icon',
  'help',
  'please',
  'organization',
  'university',
  'northern',
  'iowa',
  'lines',
  'win',
  'downloaded',
  'several',
  'icons',
  'bmps',
  'cant',
  'figure',
  'change',
  'wallpaper',
  'icons',
  'help',
  'would',
  'appreciated',
  'thanx',
  'brando',
  'ps',
  'please',
  'mail'],
 ['stan',
  'kerr',
  'sigma',
  'designs',
  'double',
  'article',
  'ux',
  'organization',
  'university',
  'illinois',
  'urbana',
  'lines',
  'joseph',
  'pellettiere',
  'writes',
  'looking',
  'information',
  'sigma',
  'designs',
  'double',
  'board',
  'figure',
  'hardware',
  'compression',
  'board',
  'works',
  'autodoubler',
  'sure',
  'also',
  'much',
  'would',
  'one',
  'cost',
  'ive',
  'board',
  'year',
  'work',
  'diskdoubler',
  'autodoubler',
  'due',
  'licensing',
  'problem',
  'stac',
  'technologies',
  'owners',
  'boards',
  'compression',
  'technology',
  'im',
  'writing',
  'memory',
  'ive',
  'lost',
  'reference',
  'please',
  'correct',
  'im',
  'wrong',
  'using',
  'board',
  'ive',
  'problems',
  'file',
  'icons',
  'lost',
  'hard',
  'say',
  'whether',
  'boards',
  'fault',
  'something',
  'else',
  'however',
  'decompress',
  'troubled',
  'file',
  'recompress',
  'without',
  'board',
  'icon',
  'usually',
  'reappears',
  'mentioned',
  'licensing',
  'problem',
  'freeware',
  'expansion',
  'utility',
  'dd',
  'expand',
  'decompress',
  'board',
  'compressed',
  'file',
  'unless',
  'board',
  'installed',
  'since',
  'stac',
  'product',
  'seems',
  'unlikely',
  'holes',
  'autodoubler',
  'diskdoubler',
  'related',
  'board',
  'fixed',
  'sad',
  'makes',
  'reluctant',
  'buy',
  'stacs',
  'product',
  'since',
  'theyre',
  'stinky',
  'hey',
  'thats',
  'competition',
  'stan',
  'kerr',
  'computing',
  'communications',
  'services',
  'office',
  'illinois',
  'urbana',
  'phone',
  'email'],
 ['irwin',
  'arnstein',
  'recommendation',
  'duc',
  'summary',
  'whats',
  'worth',
  'distribution',
  'usa',
  'expires',
  'sat',
  'may',
  'gmt',
  'organization',
  'computrac',
  'inc',
  'richardson',
  'tx',
  'keywords',
  'ducati',
  'gts',
  'much',
  'lines',
  'line',
  'ducati',
  'gts',
  'model',
  'clock',
  'runs',
  'well',
  'paint',
  'bronze',
  'brown',
  'orange',
  'faded',
  'leaks',
  'bit',
  'oil',
  'pops',
  'st',
  'hard',
  'accel',
  'shop',
  'fix',
  'trans',
  'oil',
  'leak',
  'sold',
  'bike',
  'owner',
  'want',
  'thinking',
  'like',
  'opinions',
  'please',
  'email',
  'thanks',
  'would',
  'nice',
  'stable',
  'mate',
  'beemer',
  'ill',
  'get',
  'jap',
  'bike',
  'call',
  'axis',
  'motors',
  'tuba',
  'irwin',
  'honk',
  'therefore',
  'computrac',
  'richardson',
  'tx',
  'dod'],
 ['david',
  'bold',
  'question',
  'popular',
  'morality',
  'reply',
  'distribution',
  'world',
  'organization',
  'camtec',
  'electronics',
  'ericsson',
  'leicester',
  'england',
  'lines',
  'nntp',
  'posting',
  'host',
  'bangkok',
  'article',
  'james',
  'owens',
  'writes',
  'previous',
  'article',
  'david',
  'bold',
  'says',
  'dont',
  'mean',
  'rude',
  'think',
  'youve',
  'got',
  'hold',
  'wrong',
  'end',
  'different',
  'stick',
  'david',
  'look',
  'posting',
  'see',
  'mean',
  'intent',
  'explaining',
  'jung',
  'thought',
  'could',
  'moral',
  'god',
  'overlooked',
  'main',
  'line',
  'thought',
  'seem',
  'saying',
  'god',
  'unknowable',
  'morality',
  'unknowable',
  'yep',
  'thats',
  'pretty',
  'much',
  'im',
  'jew',
  'understand',
  'jewish',
  'way',
  'thinking',
  'however',
  'jews',
  'believe',
  'covenant',
  'yhwh',
  'patriarchs',
  'abraham',
  'moses',
  'case',
  'establishes',
  'moral',
  'code',
  'follow',
  'mankind',
  'even',
  'jews',
  'could',
  'decide',
  'boundaries',
  'fall',
  'though',
  'understand',
  'sadducees',
  'believed',
  'torah',
  'required',
  'whereas',
  'pharisees',
  'ancestors',
  'modern',
  'judaism',
  'believed',
  'torah',
  'available',
  'interpretation',
  'lead',
  'understanding',
  'required',
  'morality',
  'nuances',
  'talmud',
  'essence',
  'biblical',
  'morality',
  'interface',
  'man',
  'yhwh',
  'jew',
  'christian',
  'necessarily',
  'indicate',
  'anything',
  'yhwh',
  'outside',
  'relationship',
  'although',
  'one',
  'speculate',
  'first',
  'thing',
  'comes',
  'mind',
  'man',
  'supposed',
  'created',
  'image',
  'argument',
  'committed',
  'whatever',
  'moral',
  'code',
  'follows',
  'part',
  'trying',
  'live',
  'image',
  'supposed',
  'live',
  'christs',
  'example',
  'would',
  'hard',
  'pressed',
  'argue',
  'god',
  'say',
  'kind',
  'guy',
  'trouble',
  'dont',
  'really',
  'know',
  'created',
  'image',
  'means',
  'ive',
  'heard',
  'number',
  'different',
  'opinions',
  'still',
  'come',
  'conclusion',
  'rather',
  'upsets',
  'apple',
  'cart',
  'one',
  'wants',
  'base',
  'life',
  'script',
  'shaky',
  'foundation',
  'mix',
  'metaphors',
  'unashamedly',
  'living',
  'christs',
  'example',
  'know',
  'little',
  'jesus',
  'person',
  'recorded',
  'utterances',
  'set',
  'narratives',
  'followers',
  'small',
  'references',
  'comtemporary',
  'historians',
  'revelation',
  'aside',
  'one',
  'know',
  'christ',
  'second',
  'hand',
  'worse',
  'attempt',
  'debunk',
  'christianity',
  'although',
  'may',
  'seem',
  'way',
  'initially',
  'point',
  'trying',
  'make',
  'really',
  'bible',
  'interpret',
  'interpretation',
  'humanity',
  'guess',
  'faith',
  'relevation',
  'comes',
  'inherent',
  'subjectiveness',
  'metaphysically',
  'multiple',
  'moral',
  'codes',
  'absolute',
  'moral',
  'code',
  'think',
  'theologically',
  'questionable',
  'may',
  'absolute',
  'moral',
  'code',
  'undoubtably',
  'multiple',
  'moral',
  'codes',
  'multiple',
  'moral',
  'codes',
  'may',
  'founded',
  'absolute',
  'moral',
  'code',
  'example',
  'parent',
  'may',
  'tell',
  'child',
  'never',
  'swear',
  'child',
  'may',
  'assume',
  'parent',
  'never',
  'swears',
  'simply',
  'parent',
  'told',
  'child',
  'wrong',
  'parent',
  'may',
  'swear',
  'like',
  'trooper',
  'pub',
  'bar',
  'children',
  'wrongness',
  'child',
  'disobeys',
  'parent',
  'parent',
  'may',
  'feel',
  'inappropriate',
  'swear',
  'front',
  'children',
  'may',
  'quite',
  'happy',
  'swear',
  'front',
  'animals',
  'analogy',
  'quite',
  'hold',
  'water',
  'child',
  'knows',
  'type',
  'parent',
  'may',
  'parent',
  'later',
  'life',
  'get',
  'gist',
  'incidentally',
  'young',
  'child',
  'considers',
  'directive',
  'absolute',
  'gets',
  'older',
  'see',
  'piaget',
  'learns',
  'morality',
  'david',
  'religion',
  'oh',
  'sea',
  'fishes',
  'cried',
  'swam',
  'clearness'],
 ['rod',
  'cerkoney',
  'qxf',
  'fekvh',
  'nntp',
  'posting',
  'host',
  'hpfcmrc',
  'fc',
  'hp',
  'com',
  'organization',
  'hewlett',
  'packard',
  'fort',
  'collins',
  'co',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'regards',
  'rod',
  'cerkoney',
  'rod',
  'cerkoney',
  'ms',
  'email',
  'hewlett',
  'packard',
  'east',
  'harmony',
  'rd',
  'hpdesk',
  'fort',
  'collins',
  'co',
  'hp',
  'ux'],
 ['david',
  'mckissock',
  'space',
  'station',
  'redesign',
  'jsc',
  'alternative',
  'organization',
  'nasa',
  'lewis',
  'research',
  'center',
  'cleveland',
  'ohio',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'tm',
  'lerc',
  'nasa',
  'gov',
  'news',
  'software',
  'vax',
  'vms',
  'vnews',
  'article',
  'writes',
  'description',
  'external',
  'tank',
  'option',
  'ssf',
  'redesign',
  'deleted',
  'mark',
  'proposed',
  'design',
  'joe',
  'sheas',
  'committee',
  'crystal',
  'city',
  'reports',
  'warmly',
  'received',
  'however',
  'rumors',
  'hear',
  'say',
  'design',
  'based',
  'wingless',
  'space',
  'shuttle',
  'orbiter',
  'seems',
  'likely',
  'yo',
  'ken',
  'lets',
  'keep',
  'top',
  'things',
  'external',
  'tank',
  'wingless',
  'orbiter',
  'options',
  'deleted',
  'ssf',
  'redesign',
  'options',
  'list',
  'todays',
  'edition',
  'new',
  'york',
  'times',
  'reports',
  'oconnor',
  'told',
  'panel',
  'redesign',
  'proposals',
  'dropped',
  'using',
  'giant',
  'external',
  'fuel',
  'tanks',
  'used',
  'launching',
  'space',
  'shuttles',
  'building',
  'station',
  'around',
  'existing',
  'space',
  'shuttle',
  'wings',
  'tail',
  'removed',
  'currently',
  'three',
  'options',
  'considered',
  'presented',
  'advisory',
  'panel',
  'meeting',
  'yesterday',
  'reported',
  'todays',
  'times',
  'option',
  'low',
  'cost',
  'modular',
  'approach',
  'option',
  'studied',
  'team',
  'msfc',
  'aside',
  'ssf',
  'redesign',
  'teams',
  'msfc',
  'jsc',
  'larc',
  'supporting',
  'srt',
  'station',
  'redesign',
  'team',
  'crystal',
  'city',
  'lerc',
  'reston',
  'folks',
  'also',
  'site',
  'locations',
  'helping',
  'respective',
  'teams',
  'redesign',
  'activities',
  'key',
  'features',
  'option',
  'uses',
  'bus',
  'modular',
  'bus',
  'developed',
  'lockheed',
  'thats',
  'qualified',
  'sts',
  'elvs',
  'bus',
  'provides',
  'propulsion',
  'gn',
  'communications',
  'data',
  'management',
  'lockheed',
  'developed',
  'air',
  'force',
  'power',
  'station',
  'capability',
  'obtained',
  'shuttle',
  'flights',
  'ssf',
  'solar',
  'arrays',
  'used',
  'provide',
  'kw',
  'power',
  'vehicle',
  'flies',
  'arrow',
  'mode',
  'optimize',
  'microgravity',
  'environment',
  'shuttle',
  'spacelab',
  'missions',
  'would',
  'utilize',
  'vehilce',
  'power',
  'source',
  'day',
  'missions',
  'human',
  'tended',
  'capability',
  'opposed',
  'old',
  'ssf',
  'sexist',
  'term',
  'man',
  'tended',
  'capability',
  'achieved',
  'addition',
  'us',
  'common',
  'module',
  'modified',
  'version',
  'existing',
  'ssf',
  'lab',
  'module',
  'docking',
  'ports',
  'added',
  'international',
  'partners',
  'labs',
  'taking',
  'place',
  'nodes',
  'ssf',
  'shuttle',
  'docked',
  'station',
  'day',
  'missions',
  'orbiter',
  'would',
  'provide',
  'crew',
  'habitability',
  'eva',
  'capability',
  'international',
  'human',
  'tended',
  'add',
  'nasda',
  'esa',
  'modules',
  'add',
  'another',
  'kw',
  'power',
  'permanent',
  'human',
  'presence',
  'capability',
  'add',
  'rd',
  'power',
  'module',
  'habitation',
  'module',
  'acrv',
  'assured',
  'crew',
  'return',
  'vehicle',
  'option',
  'space',
  'station',
  'freedom',
  'derived',
  'option',
  'team',
  'based',
  'larc',
  'lead',
  'mike',
  'griffin',
  'option',
  'looks',
  'alot',
  'like',
  'existing',
  'ssf',
  'design',
  'come',
  'know',
  'love',
  'option',
  'assumes',
  'lightweight',
  'external',
  'tank',
  'available',
  'ssf',
  'assembly',
  'flights',
  'option',
  'also',
  'number',
  'flights',
  'computed',
  'inclination',
  'orbit',
  'options',
  'build',
  'occurs',
  'six',
  'phases',
  'initial',
  'research',
  'capability',
  'reached',
  'flights',
  'power',
  'transferred',
  'vehicle',
  'orbiter',
  'spacelab',
  'visits',
  'man',
  'tended',
  'capability',
  'griffin',
  'yet',
  'adopted',
  'non',
  'sexist',
  'language',
  'achieved',
  'flights',
  'lab',
  'deployed',
  'solar',
  'power',
  'module',
  'provides',
  'kw',
  'power',
  'permanent',
  'human',
  'presence',
  'capability',
  'occurs',
  'flights',
  'keeping',
  'one',
  'orbiter',
  'orbit',
  'acrv',
  'sometimes',
  'would',
  'two',
  'orbiters',
  'orbit',
  'acrv',
  'second',
  'one',
  'comes',
  'logistics',
  'supply',
  'two',
  'fault',
  'tolerance',
  'capability',
  'achieved',
  'flights',
  'addition',
  'nd',
  'power',
  'module',
  'another',
  'thermal',
  'control',
  'system',
  'radiator',
  'propulsion',
  'modules',
  'flights',
  'internationals',
  'board',
  'power',
  'habitation',
  'module',
  'acrv',
  'added',
  'finish',
  'assembly',
  'flights',
  'systems',
  'currently',
  'ssf',
  'used',
  'option',
  'exception',
  'data',
  'management',
  'system',
  'major',
  'changes',
  'option',
  'single',
  'core',
  'launch',
  'station',
  'jsc',
  'lead',
  'option',
  'basically',
  'take',
  'ft',
  'diameter',
  'cylinder',
  'thats',
  'ft',
  'long',
  'slap',
  'space',
  'shuttle',
  'main',
  'engines',
  'backside',
  'put',
  'nose',
  'cone',
  'top',
  'attached',
  'regular',
  'shuttle',
  'external',
  'tank',
  'regular',
  'set',
  'solid',
  'rocket',
  'motors',
  'launch',
  'key',
  'features',
  'complete',
  'end',
  'end',
  'ground',
  'integration',
  'checkout',
  'tangentially',
  'mounted',
  'fixed',
  'solar',
  'panels',
  'body',
  'mounted',
  'radiators',
  'adds',
  'protection',
  'micrometeroid',
  'orbital',
  'debris',
  'centerline',
  'docking',
  'ports',
  'one',
  'end',
  'berthing',
  'ports',
  'single',
  'pressurized',
  'volume',
  'approximately',
  'cubic',
  'feet',
  'twice',
  'volume',
  'skylab',
  'floors',
  'center',
  'passageway',
  'floors',
  'kw',
  'housekeeping',
  'power',
  'graceful',
  'degradation',
  'failures',
  'power',
  'channels',
  'thermal',
  'loops',
  'dual',
  'environmental',
  'control',
  'life',
  'support',
  'system',
  'increased',
  'crew',
  'time',
  'utilization',
  'micro',
  'thru',
  'core',
  'module'],
 ['johnny',
  'lee',
  'moving',
  'sale',
  'summary',
  'moving',
  'sale',
  'organization',
  'ub',
  'lines',
  'nntp',
  'posting',
  'host',
  'lictor',
  'acsu',
  'buffalo',
  'reduced',
  'prices',
  'list',
  'things',
  'forsale',
  'behalf',
  'brother',
  'whos',
  'moving',
  'moved',
  'already',
  'offer',
  'black',
  'decker',
  'duster',
  'plus',
  'portable',
  'hand',
  'vaccum',
  'purchased',
  'sr',
  'dual',
  'cassette',
  'portable',
  'player',
  'fm',
  'band',
  'graphics',
  'equalizer',
  'high',
  'speed',
  'dubing',
  'duo',
  'tape',
  'tape',
  'deck',
  'seems',
  'lost',
  'treble',
  'sound',
  'bet',
  'fixable',
  'purchased',
  'monolux',
  'zoom',
  'microscope',
  'magnification',
  'made',
  'japan',
  'includes',
  'case',
  'accessories',
  'purchased',
  'sunbeam',
  'hair',
  'dryer',
  'dryer',
  'put',
  'head',
  'know',
  'ones',
  'see',
  'salons',
  'dont',
  'ask',
  'bro',
  'purchased',
  'everylast',
  'speed',
  'bag',
  'leather',
  'brand',
  'new',
  'never',
  'used',
  'osterizer',
  'pusle',
  'matic',
  'blender',
  'speeds',
  'cookbook',
  'years',
  'old',
  'purchased',
  'binolux',
  'binoculars',
  'extra',
  'wide',
  'angle',
  'ft',
  'yds',
  'case',
  'new',
  'proctor',
  'silex',
  'spray',
  'steam',
  'dry',
  'iron',
  'new',
  'questions',
  'contact',
  'thru',
  'mail',
  'reply',
  'expeditously',
  'always',
  'included',
  'please',
  'consider',
  'lastly',
  'im',
  'reasonable',
  'reasonable',
  'thanks',
  'john'],
 ['mathew',
  'political',
  'atheists',
  'organization',
  'mantis',
  'consultants',
  'cambridge',
  'uk',
  'newsreader',
  'rusnews',
  'lines',
  'keith',
  'ryan',
  'writes',
  'almost',
  'sure',
  'zyklon',
  'immediate',
  'painless',
  'method',
  'death',
  'insert',
  'soem',
  'form',
  'ethnic',
  'minority',
  'groups',
  'killed',
  'mutilated',
  'exterminated',
  'history',
  'guess',
  'unusual',
  'would',
  'agree',
  'holocost',
  'would',
  'allowed',
  'us',
  'constitution',
  'far',
  'punishment',
  'doubt',
  'recieved',
  'would',
  'considered',
  'fair',
  'trial',
  'us',
  'standards',
  'dont',
  'sure',
  'look',
  'happened',
  'japanese',
  'citizens',
  'us',
  'world',
  'war',
  'ii',
  'youre',
  'prepared',
  'say',
  'lets',
  'round',
  'people',
  'stick',
  'concentration',
  'camp',
  'without',
  'trial',
  'short',
  'step',
  'gassing',
  'without',
  'trial',
  'seems',
  'nazis',
  'originally',
  'intended',
  'imprison',
  'jews',
  'final',
  'solution',
  'dreamt',
  'partly',
  'couldnt',
  'afford',
  'run',
  'camps',
  'devastation',
  'caused',
  'goerings',
  'total',
  'war',
  'werent',
  'gassed',
  'generally',
  'died',
  'malnutrition',
  'disease',
  'mathew'],
 ['allen',
  'tiff',
  'philosophical',
  'significance',
  'organization',
  'purdue',
  'university',
  'lines',
  'article',
  'martin',
  'preston',
  'writes',
  'pd',
  'library',
  'reading',
  'writing',
  'tiff',
  'files',
  'took',
  'good',
  'minutes',
  'start',
  'using',
  'app',
  'certainly',
  'whenever',
  'tiff',
  'usually',
  'works',
  'well',
  'thats',
  'point',
  'im',
  'philosophically',
  'opposed',
  'complexity',
  'complexity',
  'led',
  'programs',
  'poor',
  'tiff',
  'writers',
  'making',
  'bizarre',
  'files',
  'programs',
  'inability',
  'load',
  'tiff',
  'images',
  'though',
  'theyll',
  'save',
  'course',
  'general',
  'inability',
  'interchange',
  'images',
  'different',
  'environments',
  'despite',
  'fact',
  'think',
  'understand',
  'tiff',
  'saying',
  'goes',
  'im',
  'worried',
  'assholes',
  'ive',
  'big',
  'trouble',
  'misuse',
  'abuse',
  'tiff',
  'years',
  'chalk',
  'immense',
  'unnecessary',
  'complexity',
  'format',
  'words',
  'tiff',
  'spec',
  'appendix',
  'page',
  'capitalized',
  'emphasis',
  'mine',
  'problem',
  'sort',
  'success',
  'tiff',
  'designed',
  'powerful',
  'flexible',
  'expense',
  'simplicity',
  'takes',
  'fair',
  'amount',
  'effort',
  'handle',
  'options',
  'currently',
  'defined',
  'specification',
  'probably',
  'application',
  'complete',
  'job',
  'currently',
  'way',
  'sure',
  'able',
  'import',
  'tiff',
  'image',
  'since',
  'many',
  'image',
  'generating',
  'applications',
  'program',
  'worse',
  'applications',
  'cant',
  'read',
  'every',
  'tiff',
  'image',
  'means',
  'wont',
  'might',
  'deal',
  'would',
  'want',
  'images',
  'trapped',
  'format',
  'dont',
  'neither',
  'anyone',
  'agrees',
  'reasoning',
  'anyone',
  'course',
  'ab'],
 ['kevin',
  'parker',
  'insurance',
  'rates',
  'performance',
  'cars',
  'summary',
  'organization',
  'louisiana',
  'tech',
  'university',
  'lines',
  'nntp',
  'posting',
  'host',
  'vm',
  'cc',
  'latech',
  'newsreader',
  'nnr',
  'vm',
  's_',
  'recently',
  'posted',
  'article',
  'asking',
  'kind',
  'rates',
  'single',
  'male',
  'drivers',
  'yrs',
  'old',
  'paying',
  'performance',
  'cars',
  'heres',
  'summary',
  'replies',
  'received',
  'im',
  'anymore',
  'close',
  'enough',
  'dodge',
  'stealth',
  'rt',
  'twin',
  'turbo',
  'hp',
  'model',
  'tickets',
  'accidents',
  'house',
  'taken',
  'defensive',
  'driving',
  'airbag',
  'abs',
  'security',
  'alarm',
  'single',
  'year',
  'decut',
  'state',
  'farm',
  'insurance',
  'includes',
  'additional',
  'umbrella',
  'policy',
  'car',
  'house',
  'base',
  'policy',
  'standard',
  'policy',
  'required',
  'de',
  'nd',
  'defensive',
  'driving',
  'course',
  'less',
  'bought',
  'car',
  'september',
  'company',
  'never',
  'accident',
  'ticket',
  'years',
  'quoted',
  'hope',
  'helps',
  'steve',
  'flynn',
  'university',
  'delaware',
  'kevin',
  'hope',
  'remembered',
  'name',
  'correctly',
  'asked',
  'insurance',
  'performance',
  'cars',
  'well',
  'last',
  'year',
  'similar',
  'situation',
  'bought',
  'car',
  'made',
  'inquiry',
  'age',
  'car',
  'eagle',
  'talon',
  'tsi',
  'awd',
  'driving',
  'record',
  'clean',
  'state',
  'illinois',
  'cost',
  'mos',
  'turn',
  'may',
  'insurance',
  'goes',
  'mos',
  'also',
  'im',
  'single',
  'incurs',
  'higher',
  'rate',
  'company',
  'ive',
  'got',
  'couple',
  'friends',
  'awds',
  'pay',
  'different',
  'ins',
  'companies',
  'also',
  'maybe',
  'im',
  'lucky',
  'hope',
  'info',
  'helps',
  'dan',
  'motorola',
  'cellular',
  'subscriber',
  'group',
  'usa',
  'cc',
  'im',
  'live',
  'norman',
  'oklahoma',
  'drive',
  'thunderbird',
  'sc',
  'never',
  'made',
  'claim',
  'insurance',
  'though',
  'hit',
  'several',
  'times',
  'negligent',
  'drivers',
  'couldnt',
  'see',
  'stop',
  'signs',
  'fiddling',
  'radios',
  'three',
  'moving',
  'violations',
  'last',
  'months',
  'one',
  'going',
  'one',
  'failure',
  'clear',
  'intersection',
  'still',
  'say',
  'damn',
  'light',
  'yellow',
  'one',
  'going',
  'didnt',
  'go',
  'record',
  'rates',
  'state',
  'farm',
  'passive',
  'restraint',
  'deduction',
  'liability',
  'deductible',
  'comprehensive',
  'deductible',
  'collision',
  'roughly',
  'year',
  'paying',
  'year',
  'escort',
  'lx',
  'james',
  'james',
  'callison',
  'microcomputer',
  'coordinator',
  'oklahoma',
  'law',
  'center',
  'disclaimer',
  'im',
  'engineer',
  'play',
  'one',
  'work',
  'forecast',
  'calls',
  'thunder',
  'bird',
  'sc',
  'hell',
  'thing',
  'killing',
  'man',
  'take',
  'away',
  'hes',
  'ever',
  'gonna',
  'munny',
  'unforgiven',
  'beyond',
  'age',
  'group',
  'experience',
  'years',
  'ago',
  'might',
  'interesting',
  'owned',
  'toyota',
  'celica',
  'gt',
  'decided',
  'buy',
  'gift',
  'exotic',
  'car',
  'front',
  'runners',
  'included',
  'toyota',
  'supra',
  'turbo',
  'porsche',
  'model',
  'years',
  'narrowed',
  'two',
  'liked',
  'simplicity',
  'handling',
  'snob',
  'appeal',
  'driving',
  'porsche',
  'supra',
  'turbo',
  'less',
  'money',
  'features',
  'performance',
  'almost',
  'personal',
  'luxury',
  'car',
  'better',
  'acceleration',
  'higher',
  'top',
  'speed',
  'almost',
  'ready',
  'give',
  'buying',
  'impulse',
  'decided',
  'stop',
  'insurance',
  'agents',
  'office',
  'way',
  'asked',
  'would',
  'happen',
  'rate',
  'either',
  'car',
  'buy',
  'supra',
  'rate',
  'classification',
  'celica',
  'celica',
  'considered',
  'subcompact',
  'year',
  'rated',
  'one',
  'safest',
  'cars',
  'slight',
  'increase',
  'car',
  'years',
  'newer',
  'lower',
  'risk',
  'division',
  'continue',
  'handle',
  'account',
  'buy',
  'porsche',
  'well',
  'change',
  'standard',
  'higher',
  'rate',
  'company',
  'rate',
  'double',
  'go',
  'another',
  'story',
  'well',
  'cover',
  'rest',
  'year',
  'cancel',
  'supra',
  'much',
  'faster',
  'actually',
  'faster',
  'standard',
  'doenst',
  'make',
  'sense',
  'thats',
  'book',
  'says',
  'dont',
  'insure',
  'corvettes',
  'either',
  'reason',
  'underwriters',
  'consider',
  'supras',
  'drivers',
  'traditional',
  'conservative',
  'eventually',
  'went',
  'supra',
  'number',
  'reasons',
  'porsche',
  'dealer',
  'nice',
  'salesman',
  'get',
  'interested',
  'tough',
  'high',
  'pressure',
  'guy',
  'back',
  'room',
  'equal',
  'monthly',
  'payments',
  'would',
  'taken',
  'year',
  'longer',
  'pay',
  'porsche',
  'plus',
  'higher',
  'insurance',
  'concluded',
  'high',
  'insurance',
  'related',
  'probability',
  'auto',
  'theft',
  'everyones',
  'entitled',
  'opinion',
  'imagination',
  'important',
  'knowledge',
  'albert',
  'einstein',
  'live',
  'idaho',
  'many',
  'years',
  'ago',
  'years',
  'bought',
  'trans',
  'new',
  'insurance',
  'year',
  'turned',
  'immediately',
  'dropped',
  'year',
  'accidents',
  'strictly',
  'age',
  'change',
  'rate',
  'stayed',
  'pretty',
  'much',
  'sold',
  'car',
  'years',
  'ago',
  'pickup',
  'year',
  'less',
  'real',
  'amazing',
  'thing',
  'woke',
  'age',
  'felt',
  'much',
  'responsible',
  'wes',
  'information',
  'california',
  'male',
  'single',
  'moving',
  'violation',
  'alfa',
  'spider',
  'year',
  'bargain',
  'lets',
  'see',
  'im',
  'single',
  'male',
  'clean',
  'driving',
  'record',
  'vw',
  'corrado',
  'vr',
  'live',
  'san',
  'jose',
  'california',
  'pay',
  'year',
  'allstate',
  'good',
  'deal',
  'ask',
  'thinking',
  'getting',
  'talon',
  'think',
  'insurance',
  'higher',
  'turbo',
  'sports',
  'car',
  'vs',
  'honda',
  'crx',
  'si',
  'clean',
  'record',
  'small',
  'new',
  'mexico',
  'town',
  'around',
  'per',
  'year',
  'age',
  'nearby',
  'city',
  'rates',
  'higher',
  'ive',
  'got',
  'mine',
  'insured',
  'robert',
  'robert',
  'stack',
  'institute',
  'transportation',
  'studies',
  'univ',
  'california',
  'irvine',
  'mazda',
  'protege',
  'lx',
  'per',
  'year',
  'saturn',
  'sc',
  'years',
  'old',
  'state',
  'new',
  'mexico',
  'insurance',
  'state',
  'farm',
  'info',
  'car',
  'toyota',
  'celica',
  'st',
  'insurance',
  'co',
  'farmers',
  'insurance',
  'yearly',
  'insurance',
  'age',
  'date',
  'license',
  'oct',
  'residence',
  'mountain',
  'view',
  'california',
  'moving',
  'violations',
  'atleast',
  'hope',
  'helps',
  'please',
  'post',
  'summary',
  'possible',
  'vijay',
  'vijay',
  'anisetti',
  'email',
  'apt',
  'single',
  'years',
  'old',
  'eagle',
  'talon',
  'turbo',
  'awd',
  'full',
  'cover',
  'reasonable',
  'liability',
  'tickets',
  'violations',
  'accidents',
  'knock',
  'wood',
  'mass',
  'one',
  'thing',
  'makes',
  'huge',
  'difference',
  'mass',
  'town',
  'live',
  'im',
  'personally',
  'one',
  'best',
  'towns',
  'within',
  'reasonable',
  'distance',
  'boston',
  'moved',
  'absolute',
  'best',
  'would',
  'go',
  'moved',
  'worst',
  'would',
  'also',
  'one',
  'accident',
  'couple',
  'tickets',
  'would',
  'probably',
  'add',
  'another',
  'mitsubishi',
  'eclipse',
  'turbo',
  'awd',
  'years',
  'old',
  'tickets',
  'went',
  'record',
  'live',
  'illinois',
  'outside',
  'chicago',
  'pay',
  'year',
  'full',
  'coverage',
  'state',
  'farm',
  'get',
  'small',
  'discount',
  'alarm',
  'system',
  'year',
  'live',
  'miles',
  'chicago',
  'actually',
  'lived',
  'city',
  'price',
  'would',
  'year',
  'im',
  'case',
  'youre',
  'interested',
  'anyway',
  'im',
  'insuring',
  'sho',
  'month',
  'thats',
  'personal',
  'total',
  'property',
  'deductible',
  'glass',
  'towing',
  'state',
  'farm',
  'unless',
  'driving',
  'less',
  'years',
  'think',
  'seriously',
  'ripped',
  'dont',
  'one',
  'performance',
  'cars',
  'listed',
  'record',
  'clean',
  'paying',
  'try',
  'calling',
  'insurance',
  'dealers',
  'could',
  'find',
  'although',
  'rates',
  'supposed',
  'standardized',
  'ive',
  'found',
  'places',
  'initially',
  'call',
  'give',
  'ridiculously',
  'high',
  'quote',
  'finaly',
  'hit',
  'one',
  'much',
  'lower',
  'also',
  'changed',
  'insurance',
  'companies',
  'rate',
  'went',
  'renewal',
  'accidents',
  'tickets',
  'car',
  'gets',
  'older',
  'maintain',
  'low',
  'rate',
  'always',
  'careful',
  'comes',
  'insurance',
  'companies',
  'good',
  'luck',
  'serge'],
 ['seeking',
  'thermocouple',
  'amplifier',
  'circuit',
  'reply',
  'organization',
  'materials',
  'research',
  'lab',
  'lines',
  'would',
  'like',
  'able',
  'amplify',
  'voltage',
  'signal',
  'output',
  'thermocouple',
  'preferably',
  'factor',
  'resulting',
  'voltage',
  'fed',
  'easily',
  'personal',
  'computer',
  'based',
  'adc',
  'data',
  'acquisition',
  'card',
  'might',
  'anyone',
  'able',
  'point',
  'references',
  'circuits',
  'seen',
  'simple',
  'amplifier',
  'circuits',
  'sure',
  'well',
  'work',
  'practice',
  'case',
  'id',
  'like',
  'something',
  'amplify',
  'sufficiently',
  'nicely',
  'used',
  'thermocouples',
  'say',
  'degrees',
  'accuracy',
  'better',
  'pointers',
  'would',
  'greatly',
  'appreciated'],
 ['ann',
  'marie',
  'barden',
  'terminal',
  'config',
  'file',
  'question',
  'organization',
  'tybrin',
  'corporation',
  'shalimar',
  'fl',
  'distribution',
  'usa',
  'lines',
  'question',
  'exact',
  'entry',
  'parameter',
  'syntax',
  'please',
  'terminal',
  'configuration',
  'file',
  'loaded',
  'terminal',
  'boots',
  'add',
  'another',
  'system',
  'tcp',
  'ip',
  'access',
  'control',
  'list',
  'background',
  'two',
  'unix',
  'systems',
  'running',
  'mits',
  'sun',
  'ss',
  'without',
  'want',
  'window',
  'sun',
  'ncd',
  'terminal',
  'time',
  'manually',
  'set',
  'network',
  'parameter',
  'tcp',
  'ip',
  'access',
  'control',
  'list',
  'login',
  'telnet',
  'session',
  'great',
  'ive',
  'tried',
  'get',
  'xhost',
  'work',
  'failed',
  'either',
  'syntax',
  'wrong',
  'implementation',
  'bogus',
  'trying',
  'edit',
  'ncd',
  'configuration',
  'file',
  'loaded',
  'ncd',
  'boots',
  'matter',
  'entry',
  'add',
  'edit',
  'ncd',
  'still',
  'boots',
  'tcp',
  'ip',
  'access',
  'control',
  'list',
  'containing',
  'manuals',
  'worthless',
  'help',
  'would',
  'appreciated',
  'thanks',
  'ann',
  'marie',
  'barden'],
 ['keith',
  'allan',
  'schneider',
  'pompous',
  'ass',
  'organization',
  'california',
  'institute',
  'technology',
  'pasadena',
  'lines',
  'nntp',
  'posting',
  'host',
  'punisher',
  'caltech',
  'jon',
  'livesey',
  'writes',
  'little',
  'things',
  'reference',
  'germany',
  'clearly',
  'people',
  'said',
  'similar',
  'things',
  'germany',
  'one',
  'could',
  'name',
  'thats',
  'true',
  'gave',
  'two',
  'examples',
  'one',
  'rather',
  'pevasive',
  'anti',
  'semitism',
  'german',
  'christianity',
  'well',
  'hitler',
  'arrived',
  'system',
  'social',
  'ranks',
  'used',
  'imperail',
  'germany',
  'austria',
  'distinguish',
  'jews',
  'rest',
  'population',
  'dont',
  'seem',
  'like',
  'little',
  'things',
  'least',
  'orders',
  'worse',
  'motto',
  'think',
  'motto',
  'little',
  'thing',
  'lead',
  'worse',
  'things',
  'keith'],
 ['gary',
  'leung',
  'nhl',
  'team',
  'captains',
  'organization',
  'university',
  'toronto',
  'systems',
  'control',
  'group',
  'lines',
  'article',
  'scott',
  'marks',
  'writes',
  'course',
  'mike',
  'ramsey',
  'one',
  'time',
  'captain',
  'buffalo',
  'prior',
  'traded',
  'pittsburgh',
  'currently',
  'penguins',
  'former',
  'captains',
  'real',
  'captain',
  'lemieux',
  'playing',
  'rotate',
  'season',
  'even',
  'mario',
  'even',
  'troy',
  'loney',
  'worn',
  'pens',
  'think',
  'mike',
  'foligno',
  'captain',
  'sabres',
  'got',
  'traded',
  'leafs',
  'also',
  'wasnt',
  'rick',
  'vaive',
  'captain',
  'leafs',
  'got',
  'traded',
  'chicago',
  'steve',
  'thomas',
  'ed',
  'olcyzk',
  'someone',
  'speaking',
  'leafs',
  'believe',
  'darryl',
  'sittler',
  'captain',
  'hed',
  'torn',
  'jersey',
  'think',
  'claimed',
  'captaincy',
  'later',
  'traded',
  'flyers',
  'oh',
  'yeah',
  'course',
  'gretzky',
  'captain',
  'oilers',
  'traded',
  'wasnt',
  'gary'],
 ['rpwhite',
  'catalog',
  'hard',
  'find',
  'pc',
  'enhancements',
  'repost',
  'organization',
  'naval',
  'postgraduate',
  'school',
  'monterey',
  'distribution',
  'usa',
  'lines',
  'andy',
  'freeman',
  'writes',
  'joe',
  'doll',
  'writes',
  'catalog',
  'personal',
  'computing',
  'tools',
  'engineers',
  'scien',
  'tists',
  'lists',
  'hardware',
  'cards',
  'application',
  'software',
  'packages',
  'pc',
  'xt',
  'ps',
  'class',
  'machines',
  'focus',
  'engineering',
  'scien',
  'tific',
  'applications',
  'pcs',
  'data',
  'acquisition',
  'control',
  'design',
  'automation',
  'data',
  'analysis',
  'presentation',
  'would',
  'like',
  'free',
  'copy',
  'reply',
  'postal',
  'mailing',
  'address',
  'interested',
  'catalog',
  'mail',
  'bounces',
  'dont',
  'bother',
  'never',
  'comes',
  'cheap',
  'trick',
  'building',
  'mailing',
  'list',
  'sell',
  'junk',
  'mail',
  'flow',
  'indication',
  'copy',
  'catalog',
  'front',
  'write',
  'tons',
  'qool',
  'stuff',
  'impression',
  'try',
  'send',
  'browsers',
  'appears',
  'buyer',
  'engineer',
  'want',
  'waste',
  'catalog',
  'get',
  'catalog',
  'theres',
  'vip',
  'code',
  'give',
  'ensure',
  'continued',
  'subscription',
  'anyway',
  'want',
  'get',
  'touch',
  'company',
  'personal',
  'computing',
  'tools',
  'division',
  'street',
  'campbell',
  'ca',
  'also',
  'fax',
  'toll',
  'free',
  'ordering',
  'tech',
  'support',
  'please',
  'note',
  'associated',
  'way',
  'fact',
  'never',
  'ordered',
  'cant',
  'comment',
  'products',
  'service',
  'catalog',
  'real',
  'sitting',
  'salivating'],
 ['chris',
  'syphers',
  'dos',
  'font',
  'size',
  'windows',
  'organization',
  'kansas',
  'state',
  'university',
  'lines',
  'nntp',
  'posting',
  'host',
  'uafhp',
  'uark',
  'alavi',
  'writes',
  'card',
  'using',
  'windows',
  'mode',
  'normal',
  'font',
  'small',
  'enhanced',
  'mode',
  'dos',
  'window',
  'font',
  'small',
  'monitor',
  'way',
  'spacify',
  'font',
  'size',
  'dos',
  'window',
  'youll',
  'excuse',
  'trivial',
  'answer',
  'since',
  'fairly',
  'new',
  'ms',
  'windows',
  'world',
  'thanks',
  'please',
  'include',
  'message',
  'reference',
  'alavi',
  'control',
  'box',
  'window',
  'upper',
  'left',
  'corner',
  'window',
  'single',
  'click',
  'simplistic',
  'font',
  'option',
  'biggest',
  'one',
  'without',
  'characters',
  'turning',
  'funky',
  'hpoe',
  'helps'],
 ['mark',
  'nodine',
  'quadra',
  'scsi',
  'problems',
  'keywords',
  'quadra',
  'scsi',
  'aps',
  'organization',
  'mit',
  'laboratory',
  'computer',
  'science',
  'lines',
  'dont',
  'know',
  'specific',
  'problem',
  'mentioned',
  'message',
  'definitely',
  'scsi',
  'problems',
  'venerable',
  'jasmine',
  'megadrive',
  'cartridge',
  'drives',
  'solution',
  'get',
  'silverlining',
  'none',
  'loops',
  'involved',
  'blind',
  'writes',
  'worked',
  'drives',
  'fact',
  'loop',
  'worked',
  'macintosh',
  'software',
  'loop',
  'whatever',
  'means',
  'mark'],
 ['kenneth',
  'hinckley',
  'voice',
  'input',
  'vendor',
  'information',
  'needed',
  'reply',
  'kenneth',
  'hinckley',
  'organization',
  'university',
  'virginia',
  'lines',
  'hello',
  'looking',
  'add',
  'voice',
  'input',
  'capability',
  'user',
  'interface',
  'developing',
  'hp',
  'unix',
  'workstation',
  'would',
  'greatly',
  'appreciate',
  'information',
  'anyone',
  'would',
  'care',
  'offer',
  'voice',
  'input',
  'systems',
  'easily',
  'accessible',
  'unix',
  'environment',
  'names',
  'adresses',
  'applicable',
  'vendors',
  'well',
  'experiences',
  'specific',
  'systems',
  'would',
  'helpful',
  'please',
  'respond',
  'via',
  'email',
  'post',
  'summary',
  'sufficient',
  'interest',
  'thanks',
  'ken',
  'found',
  'several',
  'impressive',
  'systems',
  'ibm',
  'pcs',
  'would',
  'like',
  'avoid',
  'hassle',
  'purchasing',
  'maintaining',
  'separate',
  'pc',
  'possible',
  'ken',
  'hinckley',
  'university',
  'virginia',
  'neurosurgical',
  'visualization',
  'laboratory'],
 ['john',
  'nagle',
  'nuclear',
  'sites',
  'cooling',
  'towers',
  'organization',
  'netcom',
  'line',
  'communication',
  'services',
  'guest',
  'lines',
  'wayne',
  'alan',
  'martin',
  'writes',
  'excerpts',
  'netnews',
  'sci',
  'electronics',
  'apr',
  'nuclear',
  'sites',
  'nuclear',
  'sites',
  'cooling',
  'towers',
  'date',
  'fri',
  'apr',
  'pdt',
  'article',
  'walker',
  'man',
  'wrote',
  'really',
  'dont',
  'know',
  'post',
  'question',
  'figured',
  'board',
  'would',
  'appropriate',
  'wondering',
  'massive',
  'concrete',
  'cylinders',
  'ever',
  'present',
  'nuclear',
  'poer',
  'sites',
  'look',
  'like',
  'cylinders',
  'pinched',
  'middle',
  'anybody',
  'know',
  'actual',
  'purpose',
  'things',
  'hear',
  'theyre',
  'called',
  'cooling',
  'towers',
  'heck',
  'cool',
  'great',
  'explaination',
  'however',
  'left',
  'one',
  'detail',
  'always',
  'see',
  'nuclear',
  'plants',
  'always',
  'fossil',
  'fuel',
  'plants',
  'nuclear',
  'plants',
  'prefered',
  'run',
  'water',
  'closed',
  'cycle',
  'whereas',
  'fossil',
  'fuel',
  'plants',
  'cases',
  'get',
  'away',
  'dumping',
  'hot',
  'water',
  'recall',
  'water',
  'isnt',
  'hot',
  'many',
  'fossil',
  'fuel',
  'plants',
  'course',
  'less',
  'danger',
  'radioactive',
  'contamination',
  'actually',
  'fossil',
  'fuel',
  'plants',
  'run',
  'hotter',
  'usual',
  'boiling',
  'water',
  'reactor',
  'nuclear',
  'plants',
  'theres',
  'gripe',
  'industry',
  'nuclear',
  'power',
  'uses',
  'vintage',
  'steam',
  'technology',
  'important',
  'nuclear',
  'plants',
  'get',
  'cold',
  'end',
  'system',
  'cold',
  'possible',
  'hence',
  'big',
  'cooling',
  'towers',
  'oil',
  'gas',
  'fired',
  'steam',
  'plants',
  'also',
  'condensers',
  'usually',
  'sized',
  'get',
  'steam',
  'back',
  'hot',
  'water',
  'way',
  'ambient',
  'plants',
  'cool',
  'condensers',
  'water',
  'rather',
  'air',
  'one',
  'canadian',
  'official',
  'asked',
  'thermal',
  'pollution',
  'de',
  'icing',
  'river',
  'said',
  'view',
  'heat',
  'resource',
  'everybody',
  'runs',
  'closed',
  'cycle',
  'boilers',
  'water',
  'used',
  'purified',
  'solids',
  'otherwise',
  'crud',
  'boiler',
  'plumbing',
  'water',
  'boils',
  'purifying',
  'water',
  'boiler',
  'bigger',
  'job',
  'cooling',
  'boiler',
  'water',
  'recycled',
  'john',
  'nagle'],
 ['doug',
  'roberts',
  'nl',
  'vs',
  'al',
  'organization',
  'university',
  'arizona',
  'biotechnology',
  'tucson',
  'lines',
  'nntp',
  'posting',
  'host',
  'joplin',
  'biosci',
  'arizona',
  'keywords',
  'game',
  'length',
  'doug',
  'roberts',
  'ken',
  'hill',
  'nl',
  'mvp',
  'lets',
  'go',
  'spos'],
 ['jonathan',
  'hayward',
  'pantheism',
  'organization',
  'wheaton',
  'college',
  'il',
  'lines',
  'article',
  'gary',
  'cavano',
  'writes',
  'im',
  'new',
  'group',
  'maybe',
  'covered',
  'already',
  'anybody',
  'see',
  'current',
  'emphasis',
  'environment',
  'turned',
  'unintentionally',
  'course',
  'pantheism',
  'yes',
  'adamantly',
  'styrofoam',
  'table',
  'service',
  'please',
  'keep',
  'mind',
  'read',
  'post',
  'wish',
  'attack',
  'half',
  'truth',
  'least',
  'dangerous',
  'complete',
  'lie',
  'complete',
  'lie',
  'rarely',
  'readily',
  'accepted',
  'half',
  'truth',
  'lie',
  'subtly',
  'hidden',
  'powerfully',
  'offered',
  'one',
  'masquerades',
  'angel',
  'light',
  'satan',
  'people',
  'loosened',
  'grip',
  'treating',
  'earth',
  'something',
  'gods',
  'intricate',
  'handiwork',
  'something',
  'health',
  'future',
  'generations',
  'based',
  'treated',
  'respect',
  'think',
  'hes',
  'going',
  'happily',
  'leave',
  'one',
  'error',
  'rejected',
  'style',
  'push',
  'people',
  'opposite',
  'error',
  'therefore',
  'earth',
  'gods',
  'intricate',
  'handiwork',
  'rubbish',
  'god',
  'mother',
  'earth',
  'one',
  'primarily',
  'love',
  'serve',
  'see',
  'two',
  'facets',
  'response',
  'care',
  'environment',
  'treat',
  'proper',
  'respect',
  'gods',
  'intricate',
  'handiwork',
  'health',
  'future',
  'generation',
  'showing',
  'facet',
  'one',
  'disregardful',
  'things',
  'constitute',
  'apostle',
  'paul',
  'called',
  'becoming',
  'things',
  'men',
  'possible',
  'means',
  'might',
  'save',
  'dont',
  'say',
  'forget',
  'environment',
  'ive',
  'got',
  'important',
  'things',
  'spend',
  'time',
  'putting',
  'foot',
  'mouth',
  'manner',
  'destroy',
  'credibility',
  'expressing',
  'things',
  'important',
  'show',
  'ultimate',
  'entity',
  'creature',
  'creator',
  'show',
  'beauty',
  'glory',
  'points',
  'greater',
  'beauty',
  'glory',
  'show',
  'ultimate',
  'tapestry',
  'one',
  'many',
  'cords',
  'woven',
  'infinite',
  'tapestry',
  'god',
  'give',
  'mountains',
  'greatest',
  'jonathan',
  'hayward',
  'climb',
  'love',
  'strength',
  'climbing',
  'corinthians'],
 ['jim',
  'frost',
  'car',
  'saftey',
  'important',
  'organization',
  'centerline',
  'software',
  'inc',
  'lines',
  'nntp',
  'posting',
  'host',
  'trevor',
  'corkum',
  'writes',
  'safety',
  'one',
  'important',
  'factors',
  'buying',
  'car',
  'depends',
  'priorities',
  'lot',
  'people',
  'put',
  'higher',
  'priorities',
  'gas',
  'mileage',
  'cost',
  'safety',
  'buying',
  'unsafe',
  'econoboxes',
  'instead',
  'volvos',
  'personally',
  'take',
  'middle',
  'ground',
  'thing',
  'really',
  'look',
  'three',
  'point',
  'seatbelt',
  'mph',
  'bumpers',
  'figure',
  'mph',
  'collisions',
  'brick',
  'walls',
  'arent',
  'common',
  'enough',
  'spend',
  'much',
  'extra',
  'money',
  'protection',
  'lots',
  'low',
  'speed',
  'collisions',
  'worry',
  'jim',
  'frost'],
 ['michael',
  'hartman',
  'car',
  'stereo',
  'stolen',
  'organization',
  'iowa',
  'state',
  'university',
  'ames',
  'ia',
  'lines',
  'article',
  'kenneth',
  'dwayne',
  'ray',
  'writes',
  'front',
  'panel',
  'car',
  'stereo',
  'stolen',
  'weekend',
  'need',
  'buy',
  'front',
  'panel',
  'sony',
  'xr',
  'car',
  'stereo',
  'understanding',
  'purpose',
  'removeable',
  'front',
  'panels',
  'make',
  'radio',
  'useless',
  'thus',
  'discourage',
  'theft',
  'cover',
  'removed',
  'owner',
  'taken',
  'along',
  'whenever',
  'car',
  'left',
  'covers',
  'sold',
  'anything',
  'remarkably',
  'less',
  'radio',
  'originally',
  'costs',
  'even',
  'sold',
  'discouragement',
  'wouldnt',
  'great',
  'personally',
  'would',
  'unhappy',
  'bought',
  'radio',
  'like',
  'thinking',
  'removing',
  'cover',
  'greatly',
  'depreciated',
  'radios',
  'value',
  'covers',
  'sold',
  'company',
  'legitimate',
  'source',
  'cheaply',
  'front',
  'covers',
  'available',
  'sony',
  'check',
  'local',
  'car',
  'stereo',
  'shop',
  'probably',
  'definitely',
  'provide',
  'units',
  'serial',
  'number',
  'hopefully',
  'registered',
  'warranty',
  'card',
  'dont',
  'know',
  'cost',
  'replacements',
  'available',
  'people',
  'damage',
  'face',
  'cover',
  'stands',
  'reason',
  'replaced',
  'deterring',
  'theft',
  'worked',
  'stereo',
  'shop',
  'referred',
  'customer',
  'sony',
  'number',
  'would',
  'sell',
  'face',
  'available',
  'people',
  'came',
  'asking',
  'face',
  'cover',
  'pullout',
  'sleave',
  'matter',
  'would',
  'look',
  'disheartened',
  'find',
  'acquired',
  'deck',
  'couldnt',
  'theft',
  'occurs',
  'decks',
  'notify',
  'sony',
  'serial',
  'numbers',
  'catch',
  'theives',
  'thought',
  'michael'],
 ['teenage',
  'acne',
  'pat',
  'churchill',
  'organization',
  'actrix',
  'networks',
  'lines',
  'son',
  'usual',
  'teenage',
  'spotty',
  'chin',
  'greasy',
  'nose',
  'bought',
  'clearasil',
  'face',
  'wash',
  'ointment',
  'think',
  'probably',
  'enough',
  'along',
  'usual',
  'good',
  'diet',
  'however',
  'get',
  'product',
  'called',
  'dalacin',
  'used',
  'doctors',
  'prescription',
  'treatment',
  'available',
  'chemists',
  'counter',
  'asked',
  'couple',
  'pharmacists',
  'say',
  'either',
  'acne',
  'severe',
  'enough',
  'dalacin',
  'clearasil',
  'ok',
  'odd',
  'spots',
  'teenager',
  'nothing',
  'serious',
  'father',
  'dont',
  'figure',
  'acne',
  'going',
  'escalate',
  'something',
  'disfiguring',
  'know',
  'kids',
  'senstitive',
  'appearance',
  'wary',
  'neighbours',
  'son',
  'wierd',
  'malady',
  'eventually',
  'put',
  'overdose',
  'vitamin',
  'acne',
  'treatment',
  'want',
  'help',
  'appropriate',
  'treatment',
  'son',
  'also',
  'scaliness',
  'around',
  'hairline',
  'scalp',
  'sort',
  'teenage',
  'cradle',
  'cap',
  'pointers',
  'advice',
  'tried',
  'couple',
  'anti',
  'dandruff',
  'shampoos',
  'inclined',
  'make',
  'condition',
  'worse',
  'better',
  'shall',
  'bury',
  'kid',
  'till',
  'hes',
  'floggings',
  'continue',
  'morale',
  'improves',
  'pat',
  'churchill',
  'wellington',
  'new',
  'zealand'],
 ['john',
  'gilbert',
  'exploding',
  'tv',
  'organization',
  'university',
  'british',
  'columbia',
  'lines',
  'distribution',
  'usa',
  'nntp',
  'posting',
  'host',
  'unixg',
  'ubc',
  'ca',
  'possible',
  'interest',
  'understanding',
  'exploding',
  'televisions',
  'major',
  'cause',
  'domestic',
  'accidents',
  'soviet',
  'union',
  'past',
  'years'],
 ['amir',
  'rosenblatt',
  'israeli',
  'expansion',
  'lust',
  'nntp',
  'posting',
  'host',
  'cunixa',
  'cc',
  'columbia',
  'reply',
  'amir',
  'rosenblatt',
  'organization',
  'columbia',
  'university',
  'lines',
  'article',
  'joseph',
  'askew',
  'writes',
  'article',
  'adam',
  'shostack',
  'writes',
  'article',
  'writes',
  'imho',
  'really',
  'matter',
  'started',
  'individual',
  'battle',
  'within',
  'arabs',
  'isreal',
  'war',
  'context',
  'real',
  'question',
  'started',
  'war',
  'anyone',
  'doubts',
  'creation',
  'israel',
  'arab',
  'land',
  'huh',
  'war',
  'started',
  'several',
  'armies',
  'invaded',
  'israel',
  'vowing',
  'drive',
  'jews',
  'sea',
  'jews',
  'wanted',
  'live',
  'peace',
  'arabs',
  'stayed',
  'israel',
  'granted',
  'citizenship',
  'depends',
  'entirely',
  'define',
  'war',
  'actual',
  'fighting',
  'largely',
  'predates',
  'arab',
  'invasions',
  'deir',
  'yassin',
  'happened',
  'midapril',
  'well',
  'arab',
  'invasion',
  'said',
  'elsewhere',
  'lt',
  'col',
  'lorch',
  'said',
  'hagana',
  'forces',
  'fighting',
  'well',
  'arabs',
  'invaded',
  'months',
  'jews',
  'wanting',
  'live',
  'peace',
  'entirely',
  'arguable',
  'think',
  'easy',
  'enough',
  'show',
  'labour',
  'party',
  'leadership',
  'intention',
  'arabs',
  'stayed',
  'dont',
  'mean',
  'expelled',
  'even',
  'stay',
  'granted',
  'citizenship',
  'expelled',
  'fighting',
  'stopped',
  'anyway',
  'joseph',
  'askew',
  'define',
  'war',
  'seiges',
  'constant',
  'attacks',
  'villiages',
  'count',
  'acts',
  'war',
  'jews',
  'january',
  'arab',
  'liberation',
  'army',
  'attacks',
  'kfar',
  'szold',
  'men',
  'attack',
  'kfar',
  'etzion',
  'miles',
  'south',
  'jerusalem',
  'cutting',
  'supply',
  'lines',
  'attacks',
  'yehiam',
  'western',
  'galilee',
  'kibbutz',
  'tirat',
  'tzvi',
  'mid',
  'march',
  'jewish',
  'settlements',
  'negev',
  'cut',
  'land',
  'links',
  'rest',
  'jewish',
  'population',
  'etzion',
  'group',
  'villiages',
  'near',
  'hebron',
  'cut',
  'members',
  'convoy',
  'trying',
  'supply',
  'yehiam',
  'slaughtered',
  'cutting',
  'villiage',
  'jerusalem',
  'seige',
  'cut',
  'supply',
  'route',
  'tel',
  'aviv',
  'bombed',
  'supply',
  'trucks',
  'left',
  'side',
  'road',
  'day',
  'memoriam',
  'time',
  'jews',
  'killed',
  'course',
  'isnt',
  'war',
  'since',
  'arabs',
  'attacking',
  'like',
  'last',
  'week',
  'fatah',
  'launched',
  'katyusha',
  'rockets',
  'northern',
  'israel',
  'uprising',
  'end',
  'war',
  'begin',
  'still',
  'intifadah',
  'plo',
  'brings',
  'tanks',
  'joseph',
  'askew',
  'gauche',
  'proud',
  'autumn',
  'stillness',
  'see',
  'pleiades',
  'remote',
  'thorny',
  'deserts',
  'fell',
  'grief',
  'disclaimer',
  'sue',
  'see',
  'care',
  'north',
  'tents',
  'sky',
  'must',
  'end',
  'somwhere',
  'actually',
  'rather',
  'like',
  'brenda',
  'beyond',
  'pale',
  'river',
  'murmurs',
  'amir'],
 ['joe',
  'cipale',
  'clayton',
  'need',
  'retract',
  'organization',
  'cypress',
  'semi',
  'beaverton',
  'lines',
  'article',
  'theodore',
  'kaldis',
  'writes',
  'civilized',
  'society',
  'way',
  'homosexual',
  'maintain',
  'even',
  'modicum',
  'respectability',
  'remaining',
  'closet',
  'views',
  'expressed',
  'herein',
  'theodore',
  'kaldis',
  'seriously',
  'believe',
  'major',
  'university',
  'rutgers',
  'remus',
  'rutgers',
  'kaldis',
  'would',
  'hold',
  'views',
  'appears',
  'one',
  'eyed',
  'man',
  'appeared',
  'land',
  'sighted',
  'strange',
  'resaon',
  'appointed',
  'ruler',
  'supreme',
  'power',
  'joe',
  'cipale'],
 ['deepak',
  'chhabra',
  'goalie',
  'masks',
  'nntp',
  'posting',
  'host',
  'stpl',
  'ists',
  'ca',
  'organization',
  'solar',
  'terresterial',
  'physics',
  'laboratory',
  'ists',
  'lines',
  'article',
  'keith',
  'keller',
  'writes',
  'vote',
  'goes',
  'john',
  'vanbiesbrouck',
  'mask',
  'skyline',
  'new',
  'york',
  'city',
  'sides',
  'bunch',
  'bees',
  'beezer',
  'looks',
  'really',
  'sharp',
  'funny',
  'mention',
  'one',
  'time',
  'hnic',
  'cherry',
  'pointed',
  'vanbiesbroucks',
  'mask',
  'think',
  'said',
  'something',
  'effect',
  'see',
  'great',
  'last',
  'year',
  'goes',
  'gets',
  'dopey',
  'mask',
  'cant',
  'stop',
  'beachball',
  'may',
  'may',
  'take',
  'cherry',
  'seriously',
  'cracked',
  'heard',
  'think',
  'ed',
  'belfour',
  'current',
  'best',
  'mask',
  'nhl',
  'btw',
  'also',
  'like',
  'moogs',
  'ill',
  'give',
  'fuhrs',
  'new',
  'one',
  'honourable',
  'mention',
  'although',
  'havent',
  'seen',
  'closely',
  'yet',
  'looked',
  'good',
  'distance',
  'whats',
  'also',
  'neat',
  'chevaldaes',
  'detroit',
  'call',
  'chevy',
  'two',
  'checkered',
  'flags',
  'painted',
  'top',
  'auto',
  'race'],
 ['joe',
  'ehrlich',
  'bmw',
  'moa',
  'members',
  'read',
  'organization',
  'holonet',
  'national',
  'internet',
  'access',
  'system',
  'modem',
  'lines',
  'oh',
  'boy',
  'little',
  'bike',
  'versus',
  'scuffling',
  'grow',
  'goes',
  'hope',
  'dump',
  'dempster',
  'campaign',
  'works',
  'however',
  'think',
  'crook',
  'suprised',
  'taken',
  'long',
  'anything',
  'done',
  'though',
  'obviously',
  'aint',
  'yet',
  'hand',
  'im',
  'sure',
  'want',
  'bed',
  'wackos',
  'running',
  'throwing',
  'oo',
  'rathole',
  'might',
  'effective',
  'sending',
  'club',
  'wouldnt',
  'get',
  'anything',
  'dont',
  'get',
  'anything',
  'magazine',
  'say',
  'ever',
  'since',
  'moa',
  'politburo',
  'installed',
  'lacked',
  'sort',
  'panache',
  'may',
  'ah',
  'would',
  'know',
  'bike',
  'static',
  'moa'],
 ['eli',
  'brandt',
  'need',
  'clipper',
  'cheap',
  'security',
  'organization',
  'harvey',
  'mudd',
  'college',
  'claremont',
  'ca',
  'lines',
  'article',
  'amanda',
  'walker',
  'writes',
  'agreed',
  'remember',
  'dont',
  'even',
  'think',
  'clipper',
  'encryption',
  'real',
  'sense',
  'id',
  'probably',
  'lot',
  'annoyed',
  'agree',
  'assessment',
  'furthermore',
  'promotion',
  'providing',
  'greater',
  'protection',
  'bare',
  'voice',
  'quite',
  'true',
  'far',
  'goes',
  'however',
  'way',
  'fulfill',
  'stated',
  'goal',
  'letting',
  'le',
  'wiretap',
  'terrorists',
  'drug',
  'dealers',
  'restrict',
  'stronger',
  'techniques',
  'wiretap',
  'targets',
  'presently',
  'strong',
  'encryption',
  'weak',
  'encryption',
  'vast',
  'majority',
  'encryption',
  'latter',
  'two',
  'classes',
  'tapped',
  'weak',
  'encryption',
  'every',
  'phone',
  'encryption',
  'class',
  'merged',
  'weak',
  'encryption',
  'class',
  'introduction',
  'clipper',
  'cause',
  'targets',
  'presently',
  'enjoying',
  'strong',
  'privacy',
  'give',
  'rely',
  'privacy',
  'system',
  'expressly',
  'designed',
  'deny',
  'people',
  'like',
  'doubt',
  'mere',
  'introduction',
  'scheme',
  'give',
  'government',
  'nothing',
  'stated',
  'goal',
  'preventing',
  'degradation',
  'wiretapping',
  'capabilities',
  'fulfilled',
  'restriction',
  'domestic',
  'cryptography',
  'restriction',
  'clipper',
  'appears',
  'sop',
  'given',
  'public',
  'mute',
  'complaints',
  'would',
  'find',
  'grossly',
  'inadequate',
  'tradeoff',
  'fear',
  'public',
  'large',
  'care',
  'hate',
  'even',
  'mention',
  'gun',
  'control',
  'people',
  'seem',
  'think',
  'assault',
  'weapon',
  'nyt',
  'uses',
  'word',
  'sort',
  'automatic',
  'weapon',
  'caliber',
  'maybe',
  'wants',
  'thing',
  'legal',
  'well',
  'people',
  'know',
  'even',
  'less',
  'cryptology',
  'suspect',
  'strong',
  'cryptography',
  'could',
  'easily',
  'labeled',
  'much',
  'secrecy',
  'law',
  'abiding',
  'citizens',
  'need',
  'thats',
  'clinton',
  'anyone',
  'say',
  'though',
  'federal',
  'supreme',
  'courts',
  'say',
  'anything',
  'anything',
  'administration',
  'governmental',
  'agency',
  'says',
  'opinion',
  'best',
  'say',
  'opinion',
  'matters',
  'continue',
  'unless',
  'overturned',
  'courts',
  'reluctant',
  'annul',
  'law',
  'regulation',
  'going',
  'length',
  'decide',
  'cases',
  'grounds',
  'furthermore',
  'congress',
  'get',
  'away',
  'quite',
  'bit',
  'could',
  'levy',
  'burdensome',
  'tax',
  'would',
  'place',
  'enforcement',
  'hands',
  'batf',
  'weve',
  'seen',
  'really',
  'dont',
  'want',
  'case',
  'could',
  'invoke',
  'commerce',
  'clause',
  'seems',
  'likely',
  'clause',
  'get',
  'anywhere',
  'days',
  'th',
  'required',
  'supreme',
  'court',
  'ruled',
  'prohibitory',
  'statute',
  'congress',
  'prohibited',
  'many',
  'drugs',
  'textual',
  'nod',
  'commerce',
  'clause',
  'controlled',
  'substances',
  'act',
  'still',
  'stands',
  'think',
  'government',
  'could',
  'get',
  'away',
  'amanda',
  'walker',
  'pgp',
  'key',
  'finger',
  'mail',
  'eli'],
 ['chris',
  'behanna',
  'liability',
  'insurance',
  'required',
  'organization',
  'nec',
  'systems',
  'laboratory',
  'inc',
  'distribution',
  'usa',
  'lines',
  'article',
  'tom',
  'coradeschi',
  'writes',
  'article',
  'richard',
  'pierson',
  'wrote',
  'lets',
  'get',
  'fault',
  'stuff',
  'straight',
  'lived',
  'nj',
  'nf',
  'started',
  'rates',
  'went',
  'alot',
  'moved',
  'pa',
  'rates',
  'went',
  'alot',
  'nf',
  'came',
  'pa',
  'different',
  'story',
  'sitting',
  'parking',
  'lot',
  'lunch',
  'whatever',
  'someone',
  'wacks',
  'guess',
  'whose',
  'insurance',
  'pays',
  'give',
  'bzzzt',
  'drivers',
  'fault',
  'insurance',
  'co',
  'pays',
  'less',
  'deductible',
  'recoups',
  'total',
  'cost',
  'guy',
  'gals',
  'company',
  'theres',
  'fancy',
  'word',
  'escapes',
  'right',
  'pays',
  'deductible',
  'go',
  'guy',
  'gals',
  'company',
  'right',
  'takes',
  'longer',
  'get',
  'cash',
  'opposed',
  'state',
  'farm',
  'cut',
  'check',
  'today',
  'spot',
  'damage',
  'wifes',
  'cage',
  'word',
  'subrogation',
  'seems',
  'youre',
  'willing',
  'wait',
  'money',
  'scumbags',
  'insurance',
  'save',
  'pay',
  'deductible',
  'however',
  'scumbags',
  'insurance',
  'scum',
  'insurance',
  'may',
  'pay',
  'deductible',
  'get',
  'insurance',
  'co',
  'pack',
  'rabid',
  'large',
  'fanged',
  'lawyers',
  'recover',
  'damages',
  'scum',
  'insurances',
  'lawyers',
  'sad',
  'true',
  'call',
  'job',
  'security',
  'lawyers',
  'later',
  'chris',
  'behanna',
  'dod',
  'fxwg',
  'wide',
  'glide',
  'jubilees',
  'red',
  'lady',
  'cb',
  'baby',
  'bike',
  'disclaimer',
  'would',
  'nec',
  'zx',
  'needs',
  'name',
  'agree',
  'anyway',
  'raised',
  'pack',
  'wild',
  'corn',
  'dogs'],
 ['rick',
  'bressler',
  'gun',
  'lovers',
  'gun',
  'like',
  'american',
  'express',
  'card',
  'organization',
  'boeing',
  'commercial',
  'airplane',
  'group',
  'lines',
  'iftccu',
  'talk',
  'politics',
  'guns',
  'vincent',
  'fox',
  'apr',
  'isnt',
  'rec',
  'guns',
  'maybe',
  'getting',
  'bet',
  'technical',
  'cant',
  'resist',
  'revolver',
  'also',
  'advantage',
  'misfires',
  'pull',
  'trigger',
  'sometimes',
  'depends',
  'misfired',
  'double',
  'action',
  'revolver',
  'almost',
  'hand',
  'cocked',
  'first',
  'fire',
  'merely',
  'pulling',
  'trigger',
  'cant',
  'imagine',
  'much',
  'combat',
  'type',
  'shooting',
  'single',
  'action',
  'misfire',
  'revolver',
  'merely',
  'means',
  'must',
  'pull',
  'trigger',
  'rotate',
  'next',
  'round',
  'assuming',
  'cylinder',
  'rotate',
  'revolver',
  'carried',
  'th',
  'chamber',
  'empty',
  'hammer',
  'maximum',
  'safety',
  'still',
  'drawn',
  'fired',
  'easy',
  'motion',
  'even',
  'one',
  'handed',
  'never',
  'hurts',
  'err',
  'side',
  'safety',
  'youve',
  'got',
  'one',
  'new',
  'fangled',
  'hammer',
  'blocks',
  'transfer',
  'bar',
  'safeties',
  'unnecessarily',
  'redundant',
  'id',
  'rather',
  'extra',
  'round',
  'speedloaders',
  'revolver',
  'allow',
  'reloads',
  'almost',
  'fast',
  'magazines',
  'semi',
  'autos',
  'faster',
  'depending',
  'users',
  'quite',
  'true',
  'speed',
  'loaders',
  'little',
  'less',
  'convenient',
  'pack',
  'around',
  'magazines',
  'though',
  'misfire',
  'semi',
  'auto',
  'require',
  'clear',
  'jammed',
  'shell',
  'first',
  'time',
  'spent',
  'fatal',
  'vital',
  'second',
  'often',
  'lost',
  'realize',
  'hey',
  'jammed',
  'starting',
  'anything',
  'clearing',
  'true',
  'training',
  'function',
  'semi',
  'autos',
  'must',
  'slide',
  'worked',
  'chamber',
  'first',
  'round',
  'cock',
  'hammer',
  'police',
  'carry',
  'semi',
  'autos',
  'chamber',
  'loaded',
  'hammer',
  'cocked',
  'safety',
  'engaged',
  'consider',
  'safe',
  'however',
  'must',
  'trade',
  'safety',
  'get',
  'speed',
  'employment',
  'revolver',
  'cocked',
  'locked',
  'single',
  'actions',
  'hammer',
  'double',
  'actions',
  'carry',
  'modes',
  'make',
  'sense',
  'series',
  'colts',
  'example',
  'quite',
  'safe',
  'carry',
  'way',
  'double',
  'action',
  'semi',
  'autos',
  'complexity',
  'operation',
  'many',
  'requires',
  'training',
  'agreed',
  'ive',
  'shot',
  'mouth',
  'bit',
  'let',
  'back',
  'true',
  'simple',
  'misfire',
  'revolver',
  'doesnt',
  'cost',
  'much',
  'hand',
  'ive',
  'sorts',
  'interesting',
  'things',
  'happen',
  'years',
  'example',
  'ive',
  'factory',
  'ammunition',
  'high',
  'primers',
  'high',
  'primer',
  'tie',
  'revolver',
  'somewhere',
  'seconds',
  'minutes',
  'try',
  'pound',
  'action',
  'open',
  'clear',
  'problem',
  'auto',
  'jack',
  'slide',
  'continue',
  'ive',
  'bullets',
  'come',
  'case',
  'keeping',
  'cylinder',
  'turning',
  'see',
  'clearing',
  'paragraph',
  'worst',
  'happen',
  'semi',
  'auto',
  'double',
  'feed',
  'cleared',
  'seconds',
  'revolvers',
  'fragile',
  'semi',
  'autos',
  'sorts',
  'close',
  'tolerance',
  'parts',
  'fitting',
  'involved',
  'dropping',
  'gun',
  'blow',
  'gun',
  'sorts',
  'things',
  'take',
  'action',
  'many',
  'problems',
  'cured',
  'spot',
  'quality',
  'semi',
  'auto',
  'take',
  'gun',
  'smith',
  'revolver',
  'short',
  'revolver',
  'may',
  'less',
  'likely',
  'malfunction',
  'rule',
  'youre',
  'fight',
  'majority',
  'malfunctions',
  'occur',
  'semi',
  'autos',
  'fall',
  'category',
  'vincint',
  'makes',
  'many',
  'good',
  'points',
  'post',
  'leaves',
  'opposing',
  'view',
  'real',
  'good',
  'starting',
  'place',
  'ayoobs',
  'semi',
  'auto',
  'pistol',
  'police',
  'self',
  'defense',
  'general',
  'id',
  'agree',
  'revolver',
  'excellent',
  'first',
  'gun',
  'self',
  'defense',
  'weapon',
  'somebody',
  'time',
  'inclination',
  'necessary',
  'training',
  'practice',
  'needed',
  'semi',
  'auto',
  'effectively',
  'self',
  'defense',
  'arm',
  'cops',
  'notoriously',
  'indifferent',
  'firearms',
  'department',
  'isnt',
  'going',
  'train',
  'arent',
  'going',
  'take',
  'time',
  'doubt',
  'training',
  'issue',
  'amount',
  'training',
  'required',
  'effective',
  'semi',
  'auto',
  'probably',
  'several',
  'times',
  'revolver',
  'many',
  'cops',
  'dont',
  'bother',
  'id',
  'hate',
  'limited',
  'one',
  'id',
  'rather',
  'pick',
  'fits',
  'better',
  'personal',
  'inclination',
  'im',
  'wearing',
  'day',
  'like',
  'moderator',
  'rec',
  'guns',
  'says',
  'buy',
  'em',
  'said',
  'admit',
  'often',
  'advice',
  'people',
  'thinking',
  'buying',
  'first',
  'defense',
  'arm',
  'right',
  'taking',
  'class',
  'get',
  'ruger',
  'smith',
  'revolver',
  'sorry',
  'colt',
  'fans',
  'colt',
  'revolvers',
  'ok',
  'post',
  'gone',
  'way',
  'id',
  'arguing',
  'revolvers',
  'rick'],
 ['sean',
  'garrison',
  'bonilla',
  'nntp',
  'posting',
  'host',
  'berkeley',
  'kstar',
  'node',
  'net',
  'yale',
  'organization',
  'yale',
  'univeristy',
  'lines',
  'article',
  'theodore',
  'krueger',
  'wrote',
  'isnt',
  'funny',
  'white',
  'person',
  'calls',
  'comeone',
  'nigger',
  'gets',
  'banned',
  'year',
  'black',
  'person',
  'calls',
  'someone',
  'faggot',
  'consequence',
  'ted',
  'ted',
  'youre',
  'missing',
  'vital',
  'point',
  'roger',
  'lustig',
  'pointed',
  'previous',
  'response',
  'reason',
  'schott',
  'banned',
  'baseball',
  'known',
  'call',
  'think',
  'racially',
  'biased',
  'manner',
  'constant',
  'basis',
  'thoughts',
  'affected',
  'hiring',
  'practices',
  'bonilla',
  'hand',
  'found',
  'mentioned',
  'one',
  'word',
  'single',
  'time',
  'known',
  'go',
  'around',
  'criticizing',
  'homosexuals',
  'would',
  'different',
  'story',
  'furthermore',
  'merely',
  'athlete',
  'doesnt',
  'hire',
  'anyone',
  'schott',
  'dave',
  'pallone',
  'former',
  'nl',
  'umpire',
  'admitted',
  'homosexual',
  'decided',
  'assist',
  'protest',
  'mets',
  'game',
  'shea',
  'like',
  'thinks',
  'bonilla',
  'suspended',
  'baseball',
  'pallone',
  'hoping',
  'years',
  'suspension',
  'opinion',
  'thats',
  'downright',
  'ludicrous',
  'howie',
  'rose',
  'wfan',
  'said',
  'start',
  'suspending',
  'athletes',
  'mentioned',
  'derogatory',
  'word',
  'even',
  'single',
  'time',
  'whatever',
  'conditions',
  'youd',
  'probably',
  'enough',
  'people',
  'remaining',
  'play',
  'three',
  'three',
  'game',
  'honestly',
  'truly',
  'analyze',
  'differences',
  'two',
  'cases',
  'bring',
  'article',
  'would',
  'think',
  'youd',
  'reconsider',
  'thoughts',
  'sean',
  'behind',
  'bag',
  'vin',
  'scully'],
 ['operator',
  'fax',
  'modem',
  'best',
  'nntp',
  'posting',
  'host',
  'admin',
  'reply',
  'organization',
  'ncube',
  'corp',
  'foster',
  'city',
  'ca',
  'lines',
  'well',
  'using',
  'home',
  'office',
  'bought',
  'arounde',
  'dont',
  'know',
  'data',
  'fax',
  'feature',
  'voic',
  'mail',
  'box',
  'really',
  'liked',
  'captain',
  'zod'],
 ['sam',
  'latonia',
  'need',
  'phone',
  'number',
  'western',
  'digital',
  'esdi',
  'problem',
  'organization',
  'case',
  'western',
  'reserve',
  'university',
  'cleveland',
  'ohio',
  'usa',
  'lines',
  'nntp',
  'posting',
  'host',
  'slc',
  'ins',
  'cwru',
  'western',
  'digital',
  'sam',
  'gosh',
  'think',
  'installed',
  'virus',
  'called',
  'ms',
  'dos',
  'dont',
  'copy',
  'floppy',
  'burn',
  'love',
  'windows',
  'crash'],
 ['paul',
  'krueger',
  'brewer',
  'bullpen',
  'rocked',
  'organization',
  'computing',
  'services',
  'division',
  'university',
  'wisconsin',
  'milwaukee',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'originator',
  'second',
  'straight',
  'game',
  'california',
  'scored',
  'ton',
  'late',
  'runs',
  'crush',
  'brewhas',
  'six',
  'runs',
  'th',
  'win',
  'monday',
  'five',
  'th',
  'six',
  'th',
  'win',
  'yesterday',
  'jamie',
  'navarro',
  'pitched',
  'seven',
  'strong',
  'innings',
  'orosco',
  'austin',
  'manzanillo',
  'lloyd',
  'took',
  'part',
  'mockery',
  'bullpen',
  'yesterday',
  'hows',
  'numbers',
  'maldanado',
  'pitched',
  'three',
  'scoreless',
  'innings',
  'navarros',
  'era',
  'next',
  'lowest',
  'staff',
  'wegman',
  'ouch',
  'doesnt',
  'look',
  'much',
  'better',
  'hitters',
  'hamilton',
  'batting',
  'thon',
  'hitting',
  'seven',
  'rbi',
  'next',
  'highest',
  'three',
  'next',
  'best',
  'hitter',
  'jaha',
  'vaughn',
  'teams',
  'hr',
  'another',
  'ouch',
  'looking',
  'stats',
  'hard',
  'see',
  'team',
  'fact',
  'doesnt',
  'sound',
  'bad',
  'youre',
  'averaging',
  'three',
  'runs',
  'game',
  'giving',
  'game',
  'still',
  'early',
  'things',
  'undoubtedly',
  'get',
  'better',
  'offense',
  'come',
  'around',
  'bullpen',
  'major',
  'worry',
  'fetters',
  'plesac',
  'austin',
  'gave',
  'brewers',
  'great',
  'middle',
  'relief',
  'last',
  'year',
  'lloyd',
  'maldanado',
  'manzanillo',
  'fetters',
  'austin',
  'orosco',
  'pick',
  'pace',
  'team',
  'successful',
  'milwaukee',
  'number',
  'games',
  'last',
  'year',
  'middle',
  'relief',
  'either',
  'held',
  'small',
  'leads',
  'kept',
  'small',
  'deficits',
  'place',
  'starters',
  'okay',
  'defense',
  'alright',
  'hitting',
  'come',
  'around',
  'bullpen',
  'big',
  'question',
  'mark',
  'news',
  'nilsson',
  'doran',
  'reactivated',
  'yesterday',
  'william',
  'suero',
  'sent',
  'tim',
  'mcintosh',
  'picked',
  'montreal',
  'todays',
  'game',
  'california',
  'cancelled',
  'salty'],
 ['craig',
  'meyer',
  'jack',
  'morris',
  'organization',
  'dso',
  'stanford',
  'university',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'michael',
  'chen',
  'wrote',
  'case',
  'think',
  'viola',
  'would',
  'made',
  'better',
  'signing',
  'viola',
  'younger',
  'left',
  'handed',
  'many',
  'left',
  'handed',
  'starters',
  'toronto',
  'well',
  'agree',
  'viola',
  'better',
  'signing',
  'however',
  'everyone',
  'say',
  'want',
  'lefthanded',
  'starters',
  'understand',
  'lefthanded',
  'spot',
  'relievers',
  'even',
  'though',
  'usually',
  'face',
  'righthanded',
  'batters',
  'lefthanded',
  'batters',
  'dont',
  'understand',
  'people',
  'insist',
  'lefthanded',
  'starters',
  'unless',
  'park',
  'effect',
  'yankee',
  'stadium',
  'batters',
  'mlb',
  'righthanded',
  'righthanded',
  'starters',
  'platoon',
  'advantage',
  'often',
  'lefthanded',
  'starters',
  'guess',
  'one',
  'argument',
  'lefty',
  'starters',
  'certain',
  'teams',
  'may',
  'vulnerable',
  'lhps',
  'rhps',
  'however',
  'probably',
  'factor',
  'postseason',
  'teams',
  'seldom',
  'juggle',
  'starters',
  'reason',
  'regular',
  'season',
  'think',
  'want',
  'best',
  'starters',
  'get',
  'regardless',
  'whether',
  'lefties',
  'righties',
  'lefthanded',
  'starters',
  'tend',
  'higher',
  'eras',
  'righthanded',
  'starters',
  'precisely',
  'managers',
  'go',
  'way',
  'start',
  'inferior',
  'lefties',
  'perhaps',
  'platoon',
  'advantage',
  'missing',
  'something',
  'craig'],
 ['robert',
  'everett',
  'brunskill',
  'fix',
  'trackball',
  'organization',
  'freshman',
  'electrical',
  'computer',
  'engineering',
  'carnegie',
  'mellon',
  'pittsburgh',
  'pa',
  'lines',
  'nntp',
  'posting',
  'host',
  'po',
  'andrew',
  'cmu',
  'reply',
  'course',
  'want',
  'check',
  'honesty',
  'dealler',
  'take',
  'knowing',
  'whats',
  'wrong',
  'ask',
  'tell',
  'course',
  'hell',
  'probably',
  'know',
  'right',
  'way',
  'charge',
  'service',
  'fee',
  'rob'],
 ['wyse',
  'terminal',
  'emulator',
  'reply',
  'organization',
  'dept',
  'info',
  'sys',
  'comp',
  'sci',
  'national',
  'university',
  'singapore',
  'singapore',
  'lines',
  'wyse',
  'terminal',
  'emulator',
  'comms',
  'toolbox',
  'kit',
  'available',
  'net',
  'somewhere',
  'thanks',
  'vince'],
 ['speedy',
  'mercer',
  'looking',
  'movies',
  'bikes',
  'organization',
  'louisiana',
  'tech',
  'university',
  'lines',
  'nntp',
  'posting',
  'host',
  'bhm',
  'spc',
  'engr',
  'latech',
  'summary',
  'bike',
  'movies',
  'keywords',
  'movies',
  'article',
  'charles',
  'sundheim',
  'writes',
  'folks',
  'assembling',
  'info',
  'film',
  'criticism',
  'class',
  'final',
  'project',
  'essentially',
  'need',
  'movies',
  'motos',
  'substantial',
  'capacity',
  'ie',
  'fallen',
  'angles',
  'marlboro',
  'man',
  'raising',
  'arizona',
  'etc',
  'help',
  'fellow',
  'mers',
  'could',
  'give',
  'would',
  'much',
  'preciated',
  'btw',
  'summary',
  'bike',
  'plot',
  'helpful',
  'necessary',
  'easy',
  'rider',
  'harleys',
  'drugs',
  'rednecks',
  'new',
  'orleans',
  'mad',
  'max',
  'violence',
  'dod',
  'wanna',
  'bes',
  'time',
  'rider',
  'honda',
  'thumper',
  'time',
  'travel',
  'sunday',
  'documentary',
  'dirtbike',
  'racers',
  'great',
  'great',
  'escape',
  'steve',
  'mcqueen',
  'nazis',
  'rebel',
  'without',
  'cause',
  'james',
  'dean',
  'future',
  'doders',
  'think',
  'last',
  'two',
  'right',
  'old',
  'movies',
  'havent',
  'seen',
  'years',
  'dod',
  'technician',
  'dr',
  'speed',
  'student',
  'stolen',
  'taglines',
  'god',
  'real',
  'unless',
  'declared',
  'integer',
  'came',
  'saw',
  'deleted',
  'files',
  'black',
  'holes',
  'god',
  'dividing',
  'zero',
  'world',
  'end',
  'minutes',
  'please',
  'log',
  'earth',
  'full',
  'please',
  'delete',
  'anyone'],
 ['tom',
  'glinos',
  'organization',
  'department',
  'computer',
  'science',
  'university',
  'toronto',
  'distribution',
  'na',
  'lines',
  'line',
  'says',
  'im',
  'working',
  'project',
  'car',
  'battery',
  'need',
  'pull',
  'possibly',
  'several',
  'ideas',
  'id',
  'prefer',
  'benefit',
  'brilliant',
  'people',
  'conquest',
  'easy',
  'control',
  'tom',
  'glinos',
  'toronto',
  'statistics',
  'star',
  'trek',
  'tos',
  'usl',
  'forgot',
  'simple',
  'history',
  'lesson'],
 ['tom',
  'golden',
  'space',
  'ages',
  'added',
  'forwarded',
  'space',
  'digest',
  'organization',
  'via',
  'international',
  'space',
  'university',
  'original',
  'sender',
  'distribution',
  'sci',
  'lines',
  'pat',
  'sez',
  'oddly',
  'enough',
  'smithsonian',
  'calls',
  'lindbergh',
  'years',
  'golden',
  'age',
  'flight',
  'would',
  'call',
  'granite',
  'years',
  'reflecting',
  'primitive',
  'nature',
  'romantic',
  'swashbuckling',
  'daredevils',
  'daring',
  'young',
  'men',
  'flying',
  'machines',
  'reality',
  'sucked',
  'death',
  'highly',
  'likely',
  'occurence',
  'environment',
  'blew',
  'yeah',
  'windscreen',
  'cut',
  'canopies',
  'ended',
  'completely',
  'course',
  'environment',
  'space',
  'continues',
  'suck',
  'tommy',
  'mac',
  'tom',
  'mcwilliams',
  'wk',
  'radius',
  'vision',
  'increases',
  'hm',
  'circumference',
  'mystery',
  'grows'],
 ['john',
  'collins',
  'problem',
  'mit',
  'shm',
  'organization',
  'boston',
  'university',
  'lines',
  'trying',
  'write',
  'image',
  'display',
  'program',
  'uses',
  'mit',
  'shared',
  'memory',
  'extension',
  'shared',
  'memory',
  'segment',
  'gets',
  'allocated',
  'attached',
  'process',
  'problem',
  'program',
  'crashes',
  'first',
  'call',
  'xshmputimage',
  'following',
  'message',
  'error',
  'failed',
  'request',
  'badshmseg',
  'invalid',
  'shared',
  'segment',
  'parameter',
  'major',
  'opcode',
  'failed',
  'request',
  'mit',
  'shm',
  'minor',
  'opcode',
  'failed',
  'request',
  'x_shmputimage',
  'segment',
  'id',
  'failed',
  'request',
  'serial',
  'number',
  'failed',
  'request',
  'current',
  'serial',
  'number',
  'output',
  'stream',
  'like',
  'said',
  'error',
  'checking',
  'calls',
  'shmget',
  'shmat',
  'necessary',
  'create',
  'shared',
  'memory',
  'segment',
  'well',
  'checking',
  'xshmattach',
  'problems',
  'anybody',
  'problem',
  'used',
  'mit',
  'shm',
  'without',
  'problem',
  'please',
  'let',
  'know',
  'way',
  'running',
  'openwindows',
  'sun',
  'sparc',
  'thanks',
  'advance',
  'john'],
 ['darius_lecointe',
  'sabbath',
  'admissions',
  'organization',
  'florida',
  'state',
  'university',
  'lines',
  'following',
  'thread',
  'talk',
  'religion',
  'soc',
  'religion',
  'christian',
  'bible',
  'study',
  'interest',
  'amazed',
  'different',
  'non',
  'biblical',
  'argument',
  'oppose',
  'sabbath',
  'present',
  'one',
  'question',
  'comes',
  'mind',
  'especially',
  'since',
  'last',
  'one',
  'answered',
  'scripture',
  'maybe',
  'clh',
  'may',
  'wish',
  'provide',
  'first',
  'response',
  'lot',
  'talk',
  'sabbath',
  'tc',
  'ceremonial',
  'answer',
  'since',
  'tc',
  'commandments',
  'one',
  'law',
  'ten',
  'parts',
  'biblical',
  'basis',
  'decided',
  'sabbath',
  'portion',
  'ceremonial',
  'say',
  'seventh',
  'day',
  'sabbath',
  'applicable',
  'gentile',
  'christians',
  'mean',
  'sabbath',
  'commandment',
  'annulled',
  'references',
  'please',
  'god',
  'intend',
  'requirements',
  'jews',
  'applicable',
  'gentile',
  'christians',
  'make',
  'plain',
  'gentiles',
  'grafted',
  'commonwealth',
  'israel',
  'darius',
  'acts',
  'rom',
  'col',
  'gal',
  'believe',
  'weve',
  'gotten',
  'loop',
  'point',
  'one',
  'classic',
  'situations',
  'sides',
  'think',
  'clear',
  'scriptural',
  'support',
  'theres',
  'obvious',
  'argument',
  'going',
  'change',
  'anybodys',
  'mind',
  'dont',
  'think',
  'going',
  'anything',
  'repeating',
  'clh'],
 ['eugene',
  'kuo',
  'updated',
  'canon',
  'bj',
  'driver',
  'organization',
  'computer',
  'science',
  'department',
  'stanford',
  'university',
  'lines',
  'hi',
  'anyone',
  'tell',
  'get',
  'copy',
  'updated',
  'canon',
  'bj',
  'printer',
  'driver',
  'windows',
  'ver',
  'comes',
  'bj',
  'printer',
  'wonder',
  'newer',
  'version',
  'thanks',
  'much',
  'please',
  'email'],
 ['ken',
  'mitchum',
  'patient',
  'physician',
  'diplomacy',
  'article',
  'pitt',
  'reply',
  'ken',
  'mitchum',
  'organization',
  'univ',
  'pittsburgh',
  'computer',
  'science',
  'lines',
  'article',
  'herman',
  'rubin',
  'writes',
  'article',
  'ken',
  'mitchum',
  'writes',
  'ditto',
  'disease',
  'great',
  'leveling',
  'experience',
  'however',
  'people',
  'much',
  'afronted',
  'find',
  'money',
  'world',
  'buy',
  'one',
  'health',
  'everyone',
  'looks',
  'die',
  'money',
  'buy',
  'one',
  'health',
  'talking',
  'paying',
  'medical',
  'expenses',
  'currently',
  'adequately',
  'covered',
  'herman',
  'would',
  'think',
  'people',
  'would',
  'could',
  'distinguish',
  'health',
  'treatment',
  'disease',
  'prevention',
  'medicine',
  'people',
  'preach',
  'time',
  'cannot',
  'buy',
  'health',
  'buy',
  'treatment',
  'disease',
  'assuming',
  'lucky',
  'enough',
  'disease',
  'treated',
  'rich',
  'person',
  'terminal',
  'disease',
  'bit',
  'luck',
  'thing',
  'adequately',
  'covered',
  'never',
  'worth',
  'ill',
  'first',
  'admit',
  'patients',
  'die',
  'km'],
 ['serdar',
  'argic',
  'day',
  'night',
  'armenians',
  'rounding',
  'male',
  'inhabitants',
  'article',
  'zuma',
  'reply',
  'serdar',
  'argic',
  'distribution',
  'world',
  'lines',
  'article',
  'eduard',
  'wiener',
  'writes',
  'sure',
  'joined',
  'ballot',
  'suppose',
  'northern',
  'bukovina',
  'born',
  'always',
  'thats',
  'zoologists',
  'refer',
  'fecal',
  'shield',
  'colonel',
  'semen',
  'budienny',
  'subsequent',
  'soviet',
  'military',
  'fame',
  'said',
  'armenian',
  'genocide',
  'million',
  'defenseless',
  'turkish',
  'kurdish',
  'women',
  'children',
  'elderly',
  'people',
  'visit',
  'anatolia',
  'june',
  'armenians',
  'become',
  'troublemakers',
  'hinchakist',
  'dashnakist',
  'parties',
  'opportunist',
  'serving',
  'lackeys',
  'whatever',
  'power',
  'happened',
  'ascendent',
  'september',
  'major',
  'general',
  'thwaites',
  'director',
  'military',
  'intelligence',
  'wrote',
  'lord',
  'hardinge',
  'secretary',
  'state',
  'foreign',
  'affairs',
  'useless',
  'pretend',
  'armenians',
  'satisfactory',
  'allies',
  'deserving',
  'sympathy',
  'claim',
  'special',
  'collection',
  'stanford',
  'hoover',
  'library',
  'donated',
  'georgia',
  'cutler',
  'letter',
  'dated',
  'nov',
  'states',
  'prescot',
  'hall',
  'wrote',
  'large',
  'volume',
  'prove',
  'armenians',
  'never',
  'could',
  'desirable',
  'citizens',
  'would',
  'always',
  'unscrupulous',
  'merchants',
  'source',
  'documents',
  'volume',
  'document',
  'archive',
  'cabin',
  'drawer',
  'file',
  'section',
  'contents',
  'th',
  'division',
  'command',
  'militia',
  'commander',
  'ismail',
  'hakki',
  'eight',
  'days',
  'armenians',
  'forcibly',
  'obstructing',
  'people',
  'leaving',
  'homes',
  'going',
  'one',
  'village',
  'day',
  'night',
  'rounding',
  'male',
  'inhabitants',
  'taking',
  'unknown',
  'destinations',
  'nothing',
  'heard',
  'informed',
  'statements',
  'succeeded',
  'escaping',
  'wounded',
  'massacres',
  'around',
  'taskilise',
  'ruins',
  'women',
  'children',
  'openly',
  'murdered',
  'gathered',
  'church',
  'square',
  'similar',
  'places',
  'inhuman',
  'barbarous',
  'acts',
  'committed',
  'moslems',
  'eight',
  'days',
  'document',
  'archive',
  'cabin',
  'drawer',
  'file',
  'section',
  'contents',
  'st',
  'caucasian',
  'army',
  'corps',
  'command',
  'nd',
  'caucasian',
  'army',
  'corps',
  'command',
  'communications',
  'zone',
  'inspectorate',
  'commander',
  'rd',
  'army',
  'general',
  'almost',
  'russian',
  'units',
  'opposite',
  'front',
  'withdrawn',
  'population',
  'loyal',
  'us',
  'regions',
  'behind',
  'russian',
  'positions',
  'facing',
  'ever',
  'increasing',
  'threat',
  'suppression',
  'well',
  'cruelties',
  'abuses',
  'armenians',
  'decided',
  'systematically',
  'annihilate',
  'moslem',
  'population',
  'regions',
  'occupation',
  'regularly',
  'informed',
  'russian',
  'command',
  'atrocities',
  'cruelties',
  'gained',
  'impression',
  'authority',
  'seems',
  'failing',
  'restoring',
  'order',
  'serdar',
  'argic',
  'closed',
  'roads',
  'mountain',
  'passes',
  'might',
  'serve',
  'ways',
  'escape',
  'turks',
  'proceeded',
  'work',
  'extermination',
  'ohanus',
  'appressian',
  'soviet',
  'armenia',
  'today',
  'longer',
  'exists',
  'single',
  'turkish',
  'soul',
  'sahak',
  'melkonian'],
 ['carl',
  'ellison',
  'clipper',
  'crypto',
  'organization',
  'stratus',
  'computer',
  'software',
  'engineering',
  'lines',
  'distribution',
  'inet',
  'nntp',
  'posting',
  'host',
  'ellisun',
  'sw',
  'stratus',
  'com',
  'keywords',
  'crypto',
  'eff',
  'sent',
  'response',
  'white',
  'house',
  'white',
  'house',
  'received',
  'nice',
  'automatic',
  'reply',
  'micmail',
  'noting',
  'passing',
  'included',
  'snail',
  'address',
  'would',
  'get',
  'reply',
  'due',
  'course',
  'care',
  'reply',
  'yes',
  'lets',
  'protect',
  'voice',
  'network',
  'privately',
  'developed',
  'crypto',
  'always',
  'available',
  'always',
  'lets',
  'think',
  'law',
  'enforcement',
  'given',
  'fact',
  'hope',
  'legislate',
  'needs',
  'crypto',
  'system',
  'designer',
  'met',
  'clipper',
  'chip',
  'want',
  'freely',
  'export',
  'uses',
  'algorithms',
  'like',
  'des',
  'rsa',
  'already',
  'freely',
  'available',
  'destination',
  'country',
  'disclaimer',
  'opinions',
  'expressed',
  'course',
  'carl',
  'ellison',
  'stratus',
  'computer',
  'inc',
  'bkw',
  'tel',
  'fairbanks',
  'boulevard',
  'marlborough',
  'fax'],
 ['eliot',
  'improvements',
  'automatic',
  'transmissions',
  'keywords',
  'saturn',
  'subaru',
  'manual',
  'automatic',
  'article',
  'engr',
  'apr',
  'organization',
  'clearer',
  'blir',
  'lines',
  'nntp',
  'posting',
  'host',
  'lanmola',
  'engr',
  'washington',
  'excellent',
  'automatic',
  'found',
  'subaru',
  'legacy',
  'switches',
  'sport',
  'mode',
  'electronics',
  'figure',
  'driver',
  'sets',
  'switch',
  'proper',
  'way',
  'imo',
  'sport',
  'mode',
  'entail',
  'several',
  'things',
  'revving',
  'red',
  'line',
  'rev',
  'limiter',
  'case',
  'legacy',
  'delayed',
  'upshifts',
  'lift',
  'briefly',
  'remain',
  'low',
  'gear',
  'handy',
  'charging',
  'corners',
  'would',
  'like',
  'without',
  'distraction',
  'upshifts',
  'theres',
  'another',
  'curve',
  'approaching',
  'part',
  'throttle',
  'downshifts',
  'based',
  'speed',
  'pedal',
  'depressed',
  'rather',
  'position',
  'pedal',
  'modern',
  'electronics',
  'measure',
  'easily',
  'switch',
  'sport',
  'mode',
  'wonderful',
  'want',
  'charge',
  'green',
  'light',
  'turn',
  'red',
  'audi',
  'senses',
  'well',
  'downshift',
  'little',
  'half',
  'throttle',
  'right',
  'foot',
  'fast',
  'enough',
  'also',
  'think',
  'smart',
  'automatic',
  'deliver',
  'better',
  'gas',
  'mileage',
  'dumb',
  'driver',
  'stick',
  'else',
  'equal',
  'remember',
  'idea',
  'stick',
  'economical',
  'automatic',
  'makes',
  'big',
  'assumption',
  'driver',
  'smart',
  'enough',
  'know',
  'gear',
  'situation',
  'many',
  'times',
  'ridden',
  'inattentive',
  'driver',
  'cruising',
  'highway',
  'th',
  'gear',
  'speed',
  'many',
  'people',
  'drive',
  'manuals',
  'really',
  'know',
  'best',
  'gear',
  'every',
  'conceivable',
  'situation',
  'im',
  'sure',
  'know',
  'suspect',
  'chip',
  'controlled',
  'automatic',
  'possible',
  'scenario',
  'ratio',
  'combinations',
  'stored',
  'rom',
  'likely',
  'better',
  'also',
  'say',
  'previous',
  'assumptions',
  'proved',
  'wrong',
  'got',
  'car',
  'instantaneous',
  'mpg',
  'readout',
  'high',
  'gear',
  'low',
  'revs',
  'wide',
  'open',
  'throttle',
  'economical',
  'low',
  'gear',
  'high',
  'revs',
  'small',
  'throttle',
  'opening',
  'explanation',
  'quite',
  'simple',
  'one',
  'sits',
  'think',
  'obvious',
  'first',
  'sight',
  'eliot'],
 ['david',
  'jaracz',
  'octopus',
  'detroit',
  'organization',
  'plymouth',
  'state',
  'college',
  'plymouth',
  'nh',
  'lines',
  'article',
  'harold',
  'zazula',
  'writes',
  'watching',
  'detroit',
  'minnesota',
  'game',
  'last',
  'night',
  'thought',
  'saw',
  'octopus',
  'ice',
  'ysebaert',
  'scored',
  'tie',
  'game',
  'two',
  'gives',
  'squid',
  'keep',
  'tradition',
  'alive',
  'kinda',
  'like',
  'fish',
  'unh',
  'games',
  'custom',
  'throw',
  'octopuses',
  'ice',
  'detroit',
  'responsible',
  'dain',
  'bramaged',
  'harold',
  'zazula'],
 ['svein',
  'pedersen',
  'utility',
  'updating',
  'win',
  'ini',
  'system',
  'ini',
  'organization',
  'university',
  'tromsoe',
  'norway',
  'lines',
  'sorry',
  'nt',
  'tell',
  'exactly',
  'need',
  'need',
  'utility',
  'automatic',
  'updating',
  'deleting',
  'adding',
  'changing',
  'ini',
  'files',
  'windows',
  'program',
  'run',
  'dos',
  'batchfile',
  'program',
  'run',
  'script',
  'windows',
  'utility',
  'updating',
  'win',
  'ini',
  'files',
  'meny',
  'pc',
  'find',
  'ftp',
  'host',
  'svein'],
 ['jon',
  'leech',
  'space',
  'faq',
  'upcoming',
  'planetary',
  'probes',
  'supersedes',
  'organization',
  'university',
  'north',
  'carolina',
  'chapel',
  'hill',
  'lines',
  'distribution',
  'world',
  'expires',
  'may',
  'gmt',
  'nntp',
  'posting',
  'host',
  'mahler',
  'cs',
  'unc',
  'keywords',
  'frequently',
  'asked',
  'questions',
  'archive',
  'name',
  'space',
  'new_probes',
  'last',
  'modified',
  'date',
  'upcoming',
  'planetary',
  'probes',
  'missions',
  'schedules',
  'information',
  'upcoming',
  'currently',
  'active',
  'missions',
  'mentioned',
  'would',
  'welcome',
  'sources',
  'nasa',
  'fact',
  'sheets',
  'cassini',
  'mission',
  'design',
  'team',
  'isas',
  'nasda',
  'launch',
  'schedules',
  'press',
  'kits',
  'asuka',
  'astro',
  'isas',
  'japan',
  'ray',
  'astronomy',
  'satellite',
  'launched',
  'earth',
  'orbit',
  'equipped',
  'large',
  'area',
  'wide',
  'wavelength',
  'angstrom',
  'ray',
  'telescope',
  'ray',
  'ccd',
  'cameras',
  'imaging',
  'gas',
  'scintillation',
  'proportional',
  'counters',
  'cassini',
  'saturn',
  'orbiter',
  'titan',
  'atmosphere',
  'probe',
  'cassini',
  'joint',
  'nasa',
  'esa',
  'project',
  'designed',
  'accomplish',
  'exploration',
  'saturnian',
  'system',
  'cassini',
  'saturn',
  'orbiter',
  'huygens',
  'titan',
  'probe',
  'cassini',
  'scheduled',
  'launch',
  'aboard',
  'titan',
  'iv',
  'centaur',
  'october',
  'gravity',
  'assists',
  'venus',
  'earth',
  'jupiter',
  'vvejga',
  'trajectory',
  'spacecraft',
  'arrive',
  'saturn',
  'june',
  'upon',
  'arrival',
  'cassini',
  'spacecraft',
  'performs',
  'several',
  'maneuvers',
  'achieve',
  'orbit',
  'around',
  'saturn',
  'near',
  'end',
  'initial',
  'orbit',
  'huygens',
  'probe',
  'separates',
  'orbiter',
  'descends',
  'atmosphere',
  'titan',
  'orbiter',
  'relays',
  'probe',
  'data',
  'earth',
  'hours',
  'probe',
  'enters',
  'traverses',
  'cloudy',
  'atmosphere',
  'surface',
  'completion',
  'probe',
  'mission',
  'orbiter',
  'continues',
  'touring',
  'saturnian',
  'system',
  'three',
  'half',
  'years',
  'titan',
  'synchronous',
  'orbit',
  'trajectories',
  'allow',
  'flybys',
  'titan',
  'targeted',
  'flybys',
  'iapetus',
  'dione',
  'enceladus',
  'objectives',
  'mission',
  'threefold',
  'conduct',
  'detailed',
  'studies',
  'saturns',
  'atmosphere',
  'rings',
  'magnetosphere',
  'conduct',
  'close',
  'studies',
  'saturns',
  'satellites',
  'characterize',
  'titans',
  'atmosphere',
  'surface',
  'one',
  'intriguing',
  'aspects',
  'titan',
  'possibility',
  'surface',
  'may',
  'covered',
  'part',
  'lakes',
  'liquid',
  'hydrocarbons',
  'result',
  'photochemical',
  'processes',
  'upper',
  'atmosphere',
  'hydrocarbons',
  'condense',
  'form',
  'global',
  'smog',
  'layer',
  'eventually',
  'rain',
  'onto',
  'surface',
  'cassini',
  'orbiter',
  'onboard',
  'radar',
  'peer',
  'titans',
  'clouds',
  'determine',
  'liquid',
  'surface',
  'experiments',
  'aboard',
  'orbiter',
  'entry',
  'probe',
  'investigate',
  'chemical',
  'processes',
  'produce',
  'unique',
  'atmosphere',
  'cassini',
  'mission',
  'named',
  'jean',
  'dominique',
  'cassini',
  'first',
  'director',
  'paris',
  'observatory',
  'discovered',
  'several',
  'saturns',
  'satellites',
  'major',
  'division',
  'rings',
  'titan',
  'atmospheric',
  'entry',
  'probe',
  'named',
  'dutch',
  'physicist',
  'christiaan',
  'huygens',
  'discovered',
  'titan',
  'first',
  'described',
  'true',
  'nature',
  'saturns',
  'rings',
  'key',
  'scheduled',
  'dates',
  'cassini',
  'mission',
  'vvejga',
  'trajectory',
  'titan',
  'iv',
  'centaur',
  'launch',
  'venus',
  'gravity',
  'assist',
  'venus',
  'gravity',
  'assist',
  'earth',
  'gravity',
  'assist',
  'jupiter',
  'gravity',
  'assist',
  'saturn',
  'arrival',
  'titan',
  'probe',
  'release',
  'titan',
  'probe',
  'entry',
  'end',
  'primary',
  'mission',
  'schedule',
  'last',
  'updated',
  'galileo',
  'jupiter',
  'orbiter',
  'atmosphere',
  'probe',
  'transit',
  'returned',
  'first',
  'resolved',
  'images',
  'asteroid',
  'gaspra',
  'transit',
  'jupiter',
  'efforts',
  'unfurl',
  'stuck',
  'high',
  'gain',
  'antenna',
  'hga',
  'essentially',
  'abandoned',
  'jpl',
  'developed',
  'backup',
  'plan',
  'using',
  'data',
  'compression',
  'jpeg',
  'like',
  'images',
  'lossless',
  'compression',
  'data',
  'instruments',
  'allow',
  'mission',
  'achieve',
  'approximately',
  'original',
  'objectives',
  'galileo',
  'schedule',
  'launch',
  'space',
  'shuttle',
  'venus',
  'flyby',
  'venus',
  'data',
  'playback',
  'st',
  'earth',
  'flyby',
  'high',
  'gain',
  'antenna',
  'unfurled',
  'st',
  'asteroid',
  'belt',
  'passage',
  'asteroid',
  'gaspra',
  'flyby',
  'nd',
  'earth',
  'flyby',
  'nd',
  'asteroid',
  'belt',
  'passage',
  'asteroid',
  'ida',
  'flyby',
  'probe',
  'separation',
  'orbiter',
  'deflection',
  'maneuver',
  'orbital',
  'tour',
  'jovian',
  'moons',
  'jupiter',
  'io',
  'encounter',
  'ganymede',
  'ganymede',
  'callisto',
  'europa',
  'ganymede',
  'europa',
  'europa',
  'jupiter',
  'magnetotail',
  'exploration',
  'hiten',
  'japanese',
  'isas',
  'lunar',
  'probe',
  'launched',
  'made',
  'multiple',
  'lunar',
  'flybys',
  'released',
  'hagoromo',
  'smaller',
  'satellite',
  'lunar',
  'orbit',
  'mission',
  'made',
  'japan',
  'third',
  'nation',
  'orbit',
  'satellite',
  'around',
  'moon',
  'magellan',
  'venus',
  'radar',
  'mapping',
  'mission',
  'mapped',
  'almost',
  'entire',
  'surface',
  'high',
  'resolution',
  'currently',
  'collecting',
  'global',
  'gravity',
  'map',
  'mars',
  'observer',
  'mars',
  'orbiter',
  'including',
  'pixel',
  'resolution',
  'camera',
  'launched',
  'titan',
  'iii',
  'tos',
  'booster',
  'mo',
  'currently',
  'transit',
  'mars',
  'arriving',
  'operations',
  'start',
  'one',
  'martian',
  'year',
  'days',
  'topex',
  'poseidon',
  'joint',
  'us',
  'french',
  'earth',
  'observing',
  'satellite',
  'launched',
  'ariane',
  'booster',
  'primary',
  'objective',
  'topex',
  'poseidon',
  'project',
  'make',
  'precise',
  'accurate',
  'global',
  'observations',
  'sea',
  'level',
  'several',
  'years',
  'substantially',
  'increasing',
  'understanding',
  'global',
  'ocean',
  'dynamics',
  'satellite',
  'also',
  'increase',
  'understanding',
  'heat',
  'transported',
  'ocean',
  'ulysses',
  'european',
  'space',
  'agency',
  'probe',
  'study',
  'sun',
  'orbit',
  'poles',
  'launched',
  'late',
  'carries',
  'particles',
  'fields',
  'experiments',
  'magnetometer',
  'ion',
  'electron',
  'collectors',
  'various',
  'energy',
  'ranges',
  'plasma',
  'wave',
  'radio',
  'receivers',
  'etc',
  'camera',
  'since',
  'human',
  'built',
  'rocket',
  'hefty',
  'enough',
  'send',
  'ulysses',
  'far',
  'ecliptic',
  'plane',
  'went',
  'jupiter',
  'instead',
  'stole',
  'energy',
  'planet',
  'sliding',
  'jupiters',
  'north',
  'pole',
  'gravity',
  'assist',
  'manuver',
  'february',
  'bent',
  'path',
  'solar',
  'orbit',
  'tilted',
  'degrees',
  'ecliptic',
  'pass',
  'suns',
  'south',
  'pole',
  'summer',
  'aphelion',
  'au',
  'surprisingly',
  'perihelion',
  'au',
  'thats',
  'right',
  'solar',
  'studies',
  'spacecraft',
  'thats',
  'always',
  'sun',
  'earth',
  'jupiters',
  'neigborhood',
  'ulysses',
  'studied',
  'magnetic',
  'radiation',
  'environment',
  'short',
  'summary',
  'results',
  'see',
  'science',
  'september',
  'gory',
  'technical',
  'detail',
  'see',
  'many',
  'articles',
  'issue',
  'space',
  'science',
  'missions',
  'note',
  'based',
  'posting',
  'ron',
  'baalke',
  'isas',
  'nasda',
  'information',
  'contributed',
  'yoshiro',
  'yamada',
  'im',
  'attempting',
  'track',
  'changes',
  'based',
  'updated',
  'shuttle',
  'manifests',
  'corrections',
  'updates',
  'welcome',
  'missions',
  'alexis',
  'spring',
  'pegasus',
  'alexis',
  'array',
  'low',
  'energy',
  'ray',
  'imaging',
  'sensors',
  'perform',
  'wide',
  'field',
  'sky',
  'survey',
  'soft',
  'low',
  'energy',
  'ray',
  'spectrum',
  'scan',
  'entire',
  'sky',
  'every',
  'six',
  'months',
  'search',
  'variations',
  'soft',
  'ray',
  'emission',
  'sources',
  'white',
  'dwarfs',
  'cataclysmic',
  'variable',
  'stars',
  'flare',
  'stars',
  'also',
  'search',
  'nearby',
  'space',
  'exotic',
  'objects',
  'isolated',
  'neutron',
  'stars',
  'gamma',
  'ray',
  'bursters',
  'alexis',
  'project',
  'los',
  'alamos',
  'national',
  'laboratory',
  'primarily',
  'technology',
  'development',
  'mission',
  'uses',
  'astrophysical',
  'sources',
  'demonstrate',
  'technology',
  'contact',
  'project',
  'investigator',
  'jeffrey',
  'bloch',
  'information',
  'wind',
  'aug',
  'delta',
  'ii',
  'rocket',
  'satellite',
  'measure',
  'solar',
  'wind',
  'input',
  'magnetosphere',
  'space',
  'radar',
  'lab',
  'sep',
  'sts',
  'srl',
  'gather',
  'radar',
  'images',
  'earths',
  'surface',
  'total',
  'ozone',
  'mapping',
  'spectrometer',
  'dec',
  'pegasus',
  'rocket',
  'study',
  'stratospheric',
  'ozone',
  'sfu',
  'space',
  'flyer',
  'unit',
  'isas',
  'conducting',
  'space',
  'experiments',
  'observations',
  'recovered',
  'conducts',
  'various',
  'scientific',
  'engineering',
  'experiments',
  'sfu',
  'launched',
  'isas',
  'retrieved',
  'space',
  'shuttle',
  'sts',
  'polar',
  'auroral',
  'plasma',
  'physics',
  'may',
  'delta',
  'ii',
  'rocket',
  'june',
  'measure',
  'solar',
  'wind',
  'ions',
  'gases',
  'surrounding',
  'earth',
  'iml',
  'sts',
  'nasda',
  'jul',
  'iml',
  'international',
  'microgravity',
  'laboratory',
  'adeos',
  'nasda',
  'advanced',
  'earth',
  'observing',
  'satellite',
  'muses',
  'mu',
  'space',
  'engineering',
  'satellite',
  'isas',
  'conducting',
  'research',
  'precise',
  'mechanism',
  'space',
  'structure',
  'space',
  'astronomical',
  'observations',
  'electromagnetic',
  'waves',
  'lunar',
  'isas',
  'elucidating',
  'crust',
  'structure',
  'thermal',
  'construction',
  'moons',
  'interior',
  'proposed',
  'missions',
  'advanced',
  'ray',
  'astronomy',
  'facility',
  'axaf',
  'possible',
  'launch',
  'shuttle',
  'axaf',
  'space',
  'observatory',
  'high',
  'resolution',
  'telescope',
  'would',
  'orbit',
  'years',
  'study',
  'mysteries',
  'fate',
  'universe',
  'earth',
  'observing',
  'system',
  'eos',
  'possible',
  'launch',
  'us',
  'orbiting',
  'space',
  'platforms',
  'provide',
  'long',
  'term',
  'data',
  'years',
  'earth',
  'systems',
  'science',
  'including',
  'planetary',
  'evolution',
  'mercury',
  'observer',
  'possible',
  'launch',
  'lunar',
  'observer',
  'possible',
  'launch',
  'would',
  'sent',
  'long',
  'term',
  'lunar',
  'orbit',
  'observer',
  'miles',
  'moons',
  'poles',
  'would',
  'survey',
  'characteristics',
  'provide',
  'global',
  'context',
  'results',
  'apollo',
  'program',
  'space',
  'infrared',
  'telescope',
  'facility',
  'possible',
  'launch',
  'shuttle',
  'th',
  'element',
  'great',
  'observatories',
  'program',
  'free',
  'flying',
  'observatory',
  'lifetime',
  'years',
  'would',
  'observe',
  'new',
  'comets',
  'primitive',
  'bodies',
  'outer',
  'solar',
  'system',
  'study',
  'cosmic',
  'birth',
  'formation',
  'galaxies',
  'stars',
  'planets',
  'distant',
  'infrared',
  'emitting',
  'galaxies',
  'mars',
  'rover',
  'sample',
  'return',
  'mrsr',
  'robotics',
  'rover',
  'would',
  'return',
  'samples',
  'mars',
  'atmosphere',
  'surface',
  'earch',
  'analysis',
  'possible',
  'launch',
  'dates',
  'imaging',
  'orbiter',
  'rover',
  'fire',
  'ice',
  'possible',
  'launch',
  'gravity',
  'assist',
  'flyby',
  'earth',
  'final',
  'gravity',
  'assist',
  'jupiter',
  'probe',
  'split',
  'fire',
  'ice',
  'components',
  'fire',
  'probe',
  'journey',
  'sun',
  'taking',
  'measurements',
  'stars',
  'upper',
  'atmosphere',
  'vaporized',
  'intense',
  'heat',
  'ice',
  'probe',
  'head',
  'towards',
  'pluto',
  'reaching',
  'tiny',
  ...],
 ['jason',
  'blakey',
  'ftp',
  'sites',
  'anyone',
  'nntp',
  'posting',
  'host',
  'ug',
  'cs',
  'dal',
  'ca',
  'organization',
  'math',
  'stats',
  'cs',
  'dalhousie',
  'university',
  'halifax',
  'ns',
  'canada',
  'lines',
  'hello',
  'netters',
  'anyone',
  'know',
  'ftp',
  'sites',
  'projects',
  'plans',
  'etc',
  'electrical',
  'nature',
  'jason',
  'jason',
  'blakey'],
 ['bill',
  'poitras',
  'automated',
  'testing',
  'reply',
  'organization',
  'molecular',
  'simulations',
  'inc',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'mark',
  'collier',
  'wrote',
  'anyone',
  'know',
  'available',
  'terms',
  'automated',
  'testing',
  'motif',
  'applications',
  'thinking',
  'system',
  'could',
  'program',
  'could',
  'record',
  'events',
  'output',
  'verification',
  'test',
  'procedures',
  'run',
  'rerun',
  'time',
  'regression',
  'testing',
  'interested',
  'product',
  'like',
  'unix',
  'projects',
  'separate',
  'project',
  'using',
  'openvms',
  'question',
  'like',
  'answered',
  'faq',
  'sharing',
  'windows',
  'one',
  'answers',
  'xtrap',
  'record',
  'playback',
  'extenstion',
  'find',
  'export',
  'lcs',
  'mit',
  'contrib',
  'xtrapv',
  'tar',
  'anyone',
  'know',
  'program',
  'doesnt',
  'require',
  'extension',
  'servers',
  'work',
  'vendor',
  'extensions',
  'cant',
  'modify',
  'xtrap',
  'doesnt',
  'help',
  'conferencing',
  'software',
  'mit',
  'dont',
  'know',
  'easy',
  'would',
  'modify',
  'record',
  'playback',
  'help',
  'would',
  'appreciated',
  'bill',
  'poitras',
  'molecular',
  'simulations',
  'inc',
  'tel',
  'sunnyvale',
  'ca',
  'fax',
  'ftp',
  'mail',
  'mail',
  'offers',
  'ftp',
  'via',
  'email',
  'cr',
  'help',
  'cr',
  'quit'],
 ['william',
  'daul',
  'toshiba',
  'cd',
  'rom',
  'summary',
  'need',
  'info',
  'difference',
  'find',
  'keywords',
  'toshiba',
  'cd',
  'cd',
  'rom',
  'cd',
  'rom',
  'organization',
  'informix',
  'software',
  'inc',
  'lines',
  'notice',
  'toshiba',
  'versions',
  'internal',
  'external',
  'portable',
  'anyone',
  'tell',
  'difference',
  'portable',
  'external',
  'version',
  'sf',
  'bay',
  'area',
  'find',
  'model',
  'thanks',
  'bill',
  'william',
  'daul',
  'advanced',
  'support',
  'informix',
  'software',
  'inc',
  'bohannon',
  'dr',
  'wk',
  'menlo',
  'park',
  'ca',
  'uunet',
  'infmx',
  'billd'],
 ['cds',
  'priced',
  'immediate',
  'sale',
  'article',
  'asuacad',
  'agrgb',
  'organization',
  'arizona',
  'state',
  'university',
  'lines',
  'hey',
  'following',
  'cds',
  'still',
  'available',
  'offers',
  'trades',
  'considered',
  'gowan',
  'lost',
  'brotherhood',
  'katrina',
  'waves',
  'break',
  'hearts',
  'joe',
  'cocker',
  'live',
  'charles',
  'neville',
  'diversity',
  'thanks',
  'rich'],
 ['steve',
  'phillips',
  'ford',
  'automobile',
  'organization',
  'hewlett',
  'packard',
  'narc',
  'atlanta',
  'newsreader',
  'tin',
  'pl',
  'lines',
  'ford',
  'automobile',
  'need',
  'information',
  'whether',
  'ford',
  'partially',
  'responsible',
  'car',
  'accidents',
  'depletion',
  'ozone',
  'layer',
  'also',
  'additional',
  'information',
  'greatly',
  'appreciated',
  'thanks',
  'fault',
  'thank',
  'god',
  'louis',
  'chevrolet',
  'innocent',
  'guy',
  'diesel',
  'otto',
  'feel',
  'guilty',
  'stephen',
  'phillips',
  'atlanta',
  'response',
  'center',
  'atlanta',
  'ga',
  'home',
  'braves'],
 ['aario',
  'sami',
  'genocide',
  'caused',
  'atheism',
  'organization',
  'tampere',
  'university',
  'technology',
  'computing',
  'centre',
  'lines',
  'distribution',
  'sfnet',
  'nntp',
  'posting',
  'host',
  'cc',
  'tut',
  'fi',
  'deletions',
  'mozumder',
  'writes',
  'really',
  'dont',
  'think',
  'imagine',
  'like',
  'infinite',
  'first',
  'infinity',
  'mathematical',
  'concept',
  'created',
  'humans',
  'explain',
  'certain',
  'things',
  'certain',
  'way',
  'dont',
  'know',
  'actually',
  'applies',
  'reality',
  'dont',
  'know',
  'anything',
  'world',
  'infinite',
  'wouldnt',
  'able',
  'comprehend',
  'reality',
  'like',
  'programmer',
  'would',
  'require',
  'infinite',
  'memory',
  'whatever',
  'reality',
  'continuous',
  'based',
  'infinietely',
  'small',
  'units',
  'units',
  'dont',
  'know',
  'universe',
  'actually',
  'continuous',
  'continuum',
  'another',
  'mathematical',
  'concept',
  'based',
  'infinity',
  'used',
  'explain',
  'things',
  'certain',
  'way',
  'humans',
  'know',
  'infinite',
  'call',
  'something',
  'beyond',
  'numbers',
  'call',
  'endless',
  'know',
  'pretty',
  'good',
  'idea',
  'infinity',
  'man',
  'made',
  'concept',
  'like',
  'many',
  'man',
  'made',
  'concepts',
  'evolved',
  'time',
  'ancient',
  'greeks',
  'different',
  'understanding',
  'call',
  'allah',
  'infinitely',
  'powerful',
  'knowledgeable',
  'etc',
  'yet',
  'cannot',
  'imagine',
  'allah',
  'actually',
  'cannot',
  'imagine',
  'like',
  'infinite',
  'precicely',
  'dont',
  'even',
  'know',
  'infinity',
  'applies',
  'reality',
  'sami',
  'aario',
  'see',
  'measure',
  'atom',
  'yet',
  'explode',
  'one',
  'sunlight',
  'comprised',
  'many',
  'atoms',
  'stupid',
  'minds',
  'stupid',
  'stupid',
  'eros',
  'plan',
  'outer',
  'space',
  'disclaimer',
  'dont',
  'agree',
  'eros'],
 ['seth',
  'finkelstein',
  'source',
  'announcement',
  'organization',
  'massachvsetts',
  'institvte',
  'technology',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'frumious',
  'bandersnatch',
  'mit',
  'also',
  'note',
  'whois',
  'rs',
  'internic',
  'net',
  'tis',
  'dom',
  'trusted',
  'information',
  'systems',
  'inc',
  'tis',
  'dom',
  'washington',
  'road',
  'route',
  'glenwood',
  'md',
  'domain',
  'name',
  'tis',
  'com',
  'administrative',
  'contact',
  'walker',
  'stephen',
  'stw',
  'technical',
  'contact',
  'zone',
  'contact',
  'dalva',
  'david',
  'record',
  'last',
  'updated',
  'jul',
  'domain',
  'servers',
  'listed',
  'order',
  'tis',
  'com',
  'la',
  'tis',
  'com',
  'dockmaster',
  'infamous',
  'address',
  'seth',
  'finkelstein',
  'road',
  'hell',
  'paved',
  'good',
  'intentions'],
 ['lance',
  'bledsoe',
  'atf',
  'suspects',
  'drug',
  'lab',
  'compound',
  'organization',
  'cs',
  'dept',
  'university',
  'texas',
  'austin',
  'lines',
  'nntp',
  'posting',
  'host',
  'im',
  'cs',
  'utexas',
  'article',
  'mr',
  'nice',
  'guy',
  'writes',
  'associated',
  'press',
  'news',
  'story',
  'reports',
  'developments',
  'saturday',
  'david',
  'troy',
  'intelligence',
  'chief',
  'atf',
  'confirmed',
  'reports',
  'authorities',
  'suspected',
  'cult',
  'methamphetamine',
  'lab',
  'said',
  'evidence',
  'possible',
  'drug',
  'activity',
  'surfaced',
  'late',
  'atf',
  'investigation',
  'cults',
  'gun',
  'dealings',
  'wow',
  'scope',
  'mission',
  'atf',
  'continues',
  'expand',
  'besides',
  'alcohol',
  'tobacco',
  'firearms',
  'seem',
  'involded',
  'child',
  'protective',
  'services',
  'drug',
  'enforcement',
  'tax',
  'evasion',
  'look',
  'road',
  'nations',
  'boys',
  'blue',
  'knock',
  'one',
  'hand',
  'zeik',
  'heil',
  'lance',
  'lance',
  'bledsoe',
  'ye',
  'shall',
  'know',
  'truth',
  'truth',
  'shall',
  'make',
  'free'],
 ['chris',
  'blask',
  'islamic',
  'authority',
  'women',
  'reply',
  'chris',
  'blask',
  'organization',
  'mississauga',
  'ontario',
  'canada',
  'lines',
  'mozumder',
  'writes',
  'article',
  'writes',
  'belief',
  'causes',
  'far',
  'horrors',
  'crusades',
  'emasculation',
  'internment',
  'native',
  'americans',
  'killing',
  'various',
  'tribes',
  'south',
  'america',
  'inquisition',
  'counter',
  'reformation',
  'wars',
  'followed',
  'salem',
  'witch',
  'trials',
  'european',
  'witch',
  'hunts',
  'holy',
  'wars',
  'middle',
  'east',
  'colonization',
  'destruction',
  'africa',
  'wars',
  'christianity',
  'islam',
  'post',
  'crusade',
  'genocide',
  'biblical',
  'canaanites',
  'philistines',
  'aryian',
  'invasion',
  'india',
  'attempted',
  'genocide',
  'jews',
  'nazi',
  'germany',
  'current',
  'missionary',
  'assaults',
  'tribes',
  'africa',
  'think',
  'horrors',
  'mentioned',
  'due',
  'lack',
  'people',
  'following',
  'religion',
  'lack',
  'people',
  'following',
  'religion',
  'also',
  'include',
  'fanatics',
  'people',
  'dont',
  'know',
  'following',
  'know',
  'right',
  'trying',
  'shove',
  'throat',
  'religion',
  'causes',
  'horrors',
  'really',
  'covers',
  'something',
  'false',
  'save',
  'peace',
  'bobby',
  'mozumder',
  'thought',
  'another',
  'one',
  'bible',
  'definately',
  'lack',
  'religion',
  'book',
  'esther',
  'read',
  'day',
  'reasons',
  'describes',
  'origin',
  'purim',
  'jewish',
  'celbration',
  'joy',
  'peace',
  'long',
  'short',
  'story',
  'people',
  'killed',
  'people',
  'tripping',
  'peacefull',
  'solutions',
  'lying',
  'couldnt',
  'swing',
  'sacred',
  'cow',
  'without',
  'slammin',
  'nice',
  'peaceful',
  'solution',
  'course',
  'joshua',
  'jawbone',
  'ass',
  'spring',
  'mind',
  'agree',
  'bobby',
  'far',
  'religion',
  'used',
  'kill',
  'large',
  'numbers',
  'people',
  'usually',
  'used',
  'form',
  'manner',
  'originally',
  'intended',
  'doesnt',
  'reduce',
  'number',
  'deaths',
  'directly',
  'caused',
  'religion',
  'minor',
  'observation',
  'fact',
  'almost',
  'nothing',
  'pure',
  'universe',
  'act',
  'honestly',
  'attempting',
  'find',
  'true',
  'meaning',
  'religious',
  'teaching',
  'many',
  'times',
  'inspired',
  'hatred',
  'led',
  'war',
  'many',
  'people',
  'led',
  'religious',
  'leaders',
  'involved',
  'stomache',
  'contentsthan',
  'absolute',
  'truth',
  'therefore',
  'driven',
  'kill',
  'leaders',
  'point',
  'many',
  'things',
  'involved',
  'religion',
  'often',
  'lead',
  'war',
  'whether',
  'things',
  'part',
  'religion',
  'unpleasant',
  'side',
  'effect',
  'bobby',
  'would',
  'result',
  'people',
  'switching',
  'religion',
  'atheism',
  'spontaneously',
  'results',
  'groups',
  'long',
  'involved',
  'majority',
  'bloodiest',
  'parts',
  'mans',
  'atheists',
  'hand',
  'preen',
  'preen',
  'typically',
  'ideological',
  'social',
  'caste',
  'driven',
  'organize',
  'spread',
  'beliefs',
  'overuse',
  'nazism',
  'stalinism',
  'show',
  'true',
  'two',
  'groups',
  'clear',
  'specific',
  'ideologies',
  'using',
  'religious',
  'persecution',
  'means',
  'anyone',
  'cannot',
  'see',
  'obvious',
  'namely',
  'groups',
  'founded',
  'reasons',
  'entirely',
  'used',
  'religious',
  'persecution',
  'belief',
  'system',
  'made',
  'powerfull',
  'trying',
  'hard',
  'basically',
  'bobby',
  'uses',
  'examples',
  'wars',
  'specifically',
  'fought',
  'religion',
  'many',
  'choices',
  'well',
  'im',
  'key',
  'west',
  'flames',
  'heating',
  'bottom',
  'little',
  'silver',
  'butter',
  'dishes',
  'ciao',
  'chris',
  'blask'],
 ['suresh',
  'balasubramanian',
  'twin',
  'size',
  'mattress',
  'boxsprng',
  'frame',
  'sale',
  'organization',
  'digital',
  'equipment',
  'corporation',
  'lines',
  'distribution',
  'ba',
  'nntp',
  'posting',
  'host',
  'tmax',
  'pa',
  'dec',
  'com',
  'twin',
  'size',
  'mattress',
  'box',
  'spring',
  'frame',
  'sale',
  'medico',
  'pedic',
  'type',
  'mattress',
  'excellent',
  'condition',
  'yrs',
  'old',
  'well',
  'maintained',
  'come',
  'pick',
  'stuff',
  'located',
  'paloalto',
  'asking',
  'contact',
  'suresh',
  'mail',
  'suresh',
  'balasubramanian',
  'dd',
  'digital',
  'equipment',
  'corp'],
 ['serdar',
  'argic',
  'jews',
  'latvia',
  'documents',
  'article',
  'zuma',
  'reply',
  'serdar',
  'argic',
  'distribution',
  'world',
  'lines',
  'article',
  'neil',
  'bernstein',
  'writes',
  'pardon',
  'amherst',
  'clown',
  'three',
  'chiefs',
  'dro',
  'hamazasp',
  'kulkhandanian',
  'ringleaders',
  'bands',
  'destroyed',
  'tartar',
  'villages',
  'staged',
  'massacres',
  'zangezour',
  'surmali',
  'etchmiadzin',
  'zangibasar',
  'intolerable',
  'armenia',
  'expecting',
  'different',
  'response',
  'another',
  'one',
  'source',
  'papazian',
  'patriotism',
  'perverted',
  'baikar',
  'press',
  'boston',
  'pages',
  'appendix',
  'third',
  'paragraph',
  'real',
  'fighters',
  'sprang',
  'among',
  'people',
  'struck',
  'terror',
  'hearts',
  'turks',
  'within',
  'months',
  'war',
  'began',
  'armenian',
  'guerrilla',
  'forces',
  'operating',
  'close',
  'coordination',
  'russians',
  'savagely',
  'attacking',
  'turkish',
  'cities',
  'towns',
  'villages',
  'east',
  'massacring',
  'inhabitants',
  'without',
  'mercy',
  'time',
  'working',
  'sabotage',
  'ottoman',
  'armys',
  'war',
  'effort',
  'destroying',
  'roads',
  'bridges',
  'raiding',
  'caravans',
  'whatever',
  'else',
  'could',
  'ease',
  'russian',
  'occupation',
  'atrocities',
  'committed',
  'armenian',
  'volunteer',
  'forces',
  'accompanying',
  'russian',
  'army',
  'severe',
  'russian',
  'commanders',
  'compelled',
  'withdraw',
  'fighting',
  'fronts',
  'sent',
  'rear',
  'guard',
  'duties',
  'memoirs',
  'many',
  'russian',
  'officers',
  'served',
  'east',
  'time',
  'filled',
  'accounts',
  'revolting',
  'atrocities',
  'committed',
  'armenian',
  'guerrillas',
  'savage',
  'even',
  'relatively',
  'primitive',
  'standards',
  'war',
  'observed',
  'areas',
  'journal',
  'de',
  'guerre',
  'du',
  'deuxieme',
  'dartillerie',
  'de',
  'forteresse',
  'russe',
  'derzeroum',
  'honored',
  'reproducing',
  'text',
  'unfortunately',
  'still',
  'produced',
  'documents',
  'jews',
  'latvia',
  'instead',
  'asks',
  'views',
  'turkish',
  'genocide',
  'well',
  'debate',
  'seems',
  'going',
  'hundred',
  'threads',
  'ill',
  'let',
  'people',
  'bring',
  'usual',
  'charges',
  'try',
  'debunk',
  'mutlu',
  'argic',
  'cosar',
  'net',
  'wide',
  'terrorism',
  'triangle',
  'spurious',
  'evidence',
  'ever',
  'happen',
  'look',
  'window',
  'see',
  'non',
  'fascist',
  'soviet',
  'armenian',
  'government',
  'east',
  'non',
  'existent',
  'list',
  'scholars',
  'moronian',
  'first',
  'world',
  'war',
  'ensuing',
  'years',
  'armenian',
  'dictatorship',
  'premeditated',
  'systematic',
  'genocide',
  'tried',
  'complete',
  'centuries',
  'old',
  'policy',
  'annihilation',
  'turks',
  'kurds',
  'savagely',
  'murdering',
  'million',
  'muslims',
  'deporting',
  'rest',
  'year',
  'homeland',
  'paragraph',
  'well',
  'written',
  'interesting',
  'serdar',
  'baby',
  'nothing',
  'jews',
  'latvia',
  'presented',
  'list',
  'scholars',
  'could',
  'none',
  'interested',
  'ex',
  'soviet',
  'write',
  'cute',
  'armenian',
  'government',
  'non',
  'fascist',
  'otherwise',
  'responding',
  'writing',
  'instead',
  'autoposting',
  'particular',
  'brand',
  'bullshit',
  'like',
  'conversing',
  'brick',
  'wall',
  'responding',
  'writing',
  'way',
  'bullshit',
  'justly',
  'regarded',
  'first',
  'instance',
  'genocide',
  'th',
  'century',
  'acted',
  'upon',
  'entire',
  'people',
  'nearly',
  'one',
  'thousand',
  'years',
  'turkish',
  'kurdish',
  'people',
  'lived',
  'homeland',
  'last',
  'one',
  'hundred',
  'oppressive',
  'soviet',
  'armenian',
  'occupation',
  'persecutions',
  'culminated',
  'armenian',
  'government',
  'planned',
  'carried',
  'genocide',
  'muslim',
  'subjects',
  'million',
  'turks',
  'kurds',
  'murdered',
  'remainder',
  'driven',
  'homeland',
  'one',
  'thousand',
  'years',
  'turkish',
  'kurdish',
  'lands',
  'empty',
  'turks',
  'kurds',
  'survivors',
  'found',
  'safe',
  'heaven',
  'turkiye',
  'today',
  'soviet',
  'armenian',
  'government',
  'rejects',
  'right',
  'turks',
  'kurds',
  'return',
  'muslim',
  'lands',
  'occupied',
  'soviet',
  'armenia',
  'today',
  'soviet',
  'armenia',
  'covers',
  'genocide',
  'perpetrated',
  'predecessors',
  'therefore',
  'accessory',
  'crime',
  'humanity',
  'soviet',
  'armenia',
  'must',
  'pay',
  'crime',
  'genocide',
  'muslims',
  'admitting',
  'crime',
  'making',
  'reparations',
  'turks',
  'kurds',
  'done',
  'four',
  'times',
  'row',
  'may',
  'legitimately',
  'conclude',
  'indeed',
  'regular',
  'net',
  'user',
  'auto',
  'posting',
  'computer',
  'program',
  'convenience',
  'called',
  'mutlu',
  'exe',
  'may',
  'assert',
  'whatever',
  'wish',
  'go',
  'mutlu',
  'exes',
  'famed',
  'list',
  'sources',
  'ditto',
  'attempt',
  'genocide',
  'justly',
  'regarded',
  'first',
  'instance',
  'genocide',
  'th',
  'century',
  'acted',
  'upon',
  'entire',
  'people',
  'event',
  'proven',
  'historians',
  'government',
  'international',
  'political',
  'leaders',
  'ambassador',
  'mark',
  'bristol',
  'lines',
  'still',
  'anxiously',
  'awaiting',
  'list',
  'goes',
  'im',
  'still',
  'trying',
  'find',
  'jews',
  'latvia',
  'post',
  'documents',
  'pleeeeeeease',
  'mr',
  'argic',
  'puh',
  'leeze',
  'could',
  'cmon',
  'birthday',
  'three',
  'weeks',
  'post',
  'birthday',
  'present',
  'remember',
  'issue',
  'hand',
  'cold',
  'blooded',
  'genocide',
  'million',
  'muslim',
  'people',
  'armenians',
  'armenian',
  'nazi',
  'collaboration',
  'world',
  'war',
  'ii',
  'anything',
  'add',
  'darling',
  'read',
  'post',
  'people',
  'asking',
  'turkish',
  'genocide',
  'asking',
  'produce',
  'documents',
  'jews',
  'latvia',
  'matter',
  'many',
  'times',
  'erase',
  'post',
  'still',
  'post',
  'question',
  'post',
  'documents',
  'jews',
  'latvia',
  'autopost',
  'block',
  'text',
  'turkish',
  'genocide',
  'remember',
  'issue',
  'hand',
  'armenian',
  'nazi',
  'collaboration',
  'world',
  'war',
  'ii',
  'turkish',
  'genocide',
  'still',
  'fail',
  'see',
  'challenge',
  'following',
  'western',
  'sources',
  'source',
  'john',
  'dewey',
  'new',
  'republic',
  'vol',
  'nov',
  'pp',
  'happy',
  'minority',
  'jews',
  'christian',
  'nation',
  'protect',
  'one',
  'recalls',
  'jews',
  'took',
  'abode',
  'fanatic',
  'turkey',
  'expelled',
  'europe',
  'especially',
  'spain',
  'saintly',
  'christians',
  'lived',
  'centuries',
  'least',
  'much',
  'tranquility',
  'liberty',
  'fellow',
  'turkish',
  'subjects',
  'exposed',
  'alike',
  'rapacity',
  'common',
  'rulers',
  'one',
  'brought',
  'americans',
  'gladstonian',
  'foreign',
  'missionary',
  'tradition',
  'condition',
  'jews',
  'turkey',
  'almost',
  'mathematical',
  'demonstration',
  'religious',
  'differences',
  'influence',
  'tragedy',
  'turkey',
  'combined',
  'aspirations',
  'political',
  'separation',
  'every',
  'nation',
  'world',
  'would',
  'treated',
  'treasonable',
  'one',
  'readily',
  'reaches',
  'conclusion',
  'jews',
  'turkey',
  'fortunate',
  'also',
  'stated',
  'armenians',
  'traitorously',
  'turned',
  'turkish',
  'cities',
  'russian',
  'invader',
  'boasted',
  'raised',
  'army',
  'one',
  'hundred',
  'fifty',
  'thousand',
  'men',
  'fight',
  'civil',
  'war',
  'burned',
  'least',
  'hundred',
  'turkish',
  'villages',
  'exterminated',
  'population',
  'want',
  'documents',
  'jews',
  'latvia',
  'think',
  'several',
  'people',
  'soc',
  'culture',
  'greek',
  'already',
  'disputing',
  'turkish',
  'genocide',
  'joke',
  'month',
  'clown',
  'sweetie',
  'joke',
  'month',
  'posted',
  'block',
  'text',
  'four',
  'times',
  'still',
  'produced',
  'documents',
  'jews',
  'latvia',
  'instead',
  'post',
  'text',
  'post',
  'every',
  'message',
  'old',
  'mccarthy',
  'table',
  'appropriate',
  'named',
  'mccarthy',
  'prof',
  'shaw',
  'jewish',
  'scholar',
  'source',
  'stanford',
  'shaw',
  'armenian',
  'collaboration',
  'invading',
  'russian',
  'armies',
  'history',
  'ottoman',
  'empire',
  'modern',
  'turkey',
  'volume',
  'ii',
  'reform',
  'revolution',
  'republic',
  'rise',
  'modern',
  'turkey',
  'london',
  'cambridge',
  'university',
  'press',
  'pp',
  'april',
  'dashnaks',
  'russian',
  'armenia',
  'organized',
  'revolt',
  'city',
  'van',
  'whose',
  'armenians',
  'comprised',
  'percent',
  'population',
  'closest',
  'armenian',
  'majority',
  'city',
  'empire',
  'leaving',
  'erivan',
  'april',
  'armenian',
  'volunteers',
  'reached',
  'van',
  'may',
  'organized',
  'carried',
  'general',
  'slaughter',
  'local',
  'muslim',
  'population',
  'next',
  'two',
  'days',
  'small',
  'ottoman',
  'garrison',
  'retreat',
  'southern',
  'side',
  'lake',
  'knowing',
  'numbers',
  'would',
  'never',
  'justify',
  'territorial',
  'ambitions',
  'armenians',
  'looked',
  'russia',
  'europe',
  'fulfillment',
  'aims',
  'armenian',
  'treachery',
  'regard',
  'culminated',
  'beginning',
  'first',
  'world',
  'war',
  'decision',
  'revolutionary',
  'organizations',
  'refuse',
  'serve',
  'state',
  'ottoman',
  'empire',
  'assist',
  'instead',
  'invading',
  'russian',
  'armies',
  'hope',
  'participation',
  'russian',
  'success',
  'would',
  'rewarded',
  'independent',
  'armenian',
  'state',
  'carved',
  'ottoman',
  'territories',
  'armenian',
  'political',
  'leaders',
  'army',
  'officers',
  'common',
  'soldiers',
  'began',
  'deserting',
  'droves',
  'russian',
  'invasion',
  'eastern',
  'anatolia',
  'beginning',
  'world',
  'war',
  'degree',
  'armenian',
  'collaboration',
  'ottomans',
  'enemy',
  'increased',
  'drastically',
  'ottoman',
  'supply',
  'lines',
  'cut',
  'guerilla',
  'attacks',
  'armenian',
  'revolutionaries',
  'armed',
  'armenian',
  'civil',
  'populations',
  'turn',
  'massacred',
  'muslim',
  'population',
  'province',
  'van',
  'anticipation',
  'expected',
  'arrival',
  'invading',
  'russian',
  'armies',
  'source',
  'stanford',
  'shaw',
  'history',
  'ottoman',
  'empire',
  'modern',
  'turkey',
  'vol',
  'ii',
  'cambridge',
  'university',
  'press',
  'london',
  'pp',
  'meanwhile',
  'czar',
  'nicholas',
  'ii',
  'came',
  'caucasus',
  'make',
  'final',
  'plans',
  'cooperation',
  'armenians',
  'ottomans',
  'president',
  'armenian',
  'national',
  'bureau',
  'tiflis',
  'declaring',
  'response',
  'countries',
  'armenians',
  'hurrying',
  'enter',
  'ranks',
  'glorious',
  'russian',
  'army',
  'blood',
  'serve',
  'victory',
  'russian',
  'arms',
  'let',
  'russian',
  'flag',
  'wave',
  'freely',
  'dardanelles',
  'bosporus',
  'let',
  'great',
  'majesty',
  'peoples',
  'remaining',
  'turkish',
  'yoke',
  'receive',
  'freedom',
  'let',
  'armenian',
  'people',
  'turkey',
  'suffered',
  'faith',
  'christ',
  'receive',
  'resurrection',
  'new',
  'free',
  'life',
  'protection',
  'russia',
  'armenians',
  'flooded',
  'czarist',
  'armies',
  'preparations',
  'made',
  'strike',
  'ottomans',
  'rear',
  'czar',
  'returned',
  'st',
  'petersburg',
  'confident',
  'day',
  'finally',
  'come',
  'reach',
  'istanbul',
  'horizon',
  'tiflis',
  'november',
  'quoted',
  'hovannisian',
  'road',
  'independence',
  'fo',
  'ottoman',
  'morale',
  'military',
  'position',
  'east',
  'seriously',
  'hurt',
  'way',
  'prepared',
  'new',
  'russian',
  'push',
  'eastern',
  'anatolia',
  'accompanied',
  'open',
  'armenian',
  'revolt',
  'sultan',
  'hovannisian',
  'road',
  'independence',
  'pp',
  'bayur',
  'iii',
  'pp',
  'allen',
  'muratoff',
  'caucasian',
  'battlefields',
  'cambridge',
  'pp',
  'ali',
  'ihsan',
  'sabis',
  'harb',
  'hahralaram',
  'vols',
  'ankara',
  'ii',
  'fo',
  'fo',
  'fo',
  'nos',
  'armenian',
  'state',
  'organized',
  'van',
  'russian',
  'protection',
  'appeared',
  'muslim',
  'natives',
  'dead',
  'driven',
  'away',
  'might',
  'able',
  'maintain',
  'one',
  'oldest',
  'centers',
  'ancient',
  'armenian',
  'civilization',
  'armenian',
  'legion',
  'organized',
  'expel',
  'turks',
  'entire',
  'southern',
  ...],
 ['james',
  'callison',
  'warning',
  'please',
  'read',
  'nntp',
  'posting',
  'host',
  'uokmax',
  'ecn',
  'uoknor',
  'organization',
  'engineering',
  'computer',
  'network',
  'university',
  'oklahoma',
  'norman',
  'ok',
  'usa',
  'lines',
  'article',
  'matthew',
  'macintyre',
  'national',
  'university',
  'senegal',
  'writes',
  'james',
  'callison',
  'writes',
  'im',
  'going',
  'argue',
  'issue',
  'carrying',
  'weapons',
  'would',
  'ask',
  'would',
  'thought',
  'seriously',
  'shooting',
  'kid',
  'setting',
  'alarm',
  'think',
  'worse',
  'things',
  'world',
  'glad',
  'got',
  'anything',
  'give',
  'reason',
  'fire',
  'gun',
  'think',
  'people',
  'right',
  'kill',
  'defend',
  'property',
  'honest',
  'really',
  'care',
  'scum',
  'car',
  'yo',
  'watch',
  'attributions',
  'didnt',
  'say',
  'isnt',
  'appropriate',
  'forum',
  'discussions',
  'whether',
  'shoot',
  'someone',
  'property',
  'damage',
  'vandalism',
  'theft',
  'every',
  'responsible',
  'gun',
  'owner',
  'realizes',
  'limits',
  'punishment',
  'must',
  'fit',
  'crime',
  'mean',
  'think',
  'really',
  'harmless',
  'prank',
  'worth',
  'killing',
  'said',
  'situation',
  'described',
  'punks',
  'setting',
  'alarms',
  'taunting',
  'people',
  'come',
  'could',
  'turn',
  'ugly',
  'quickly',
  'worth',
  'prepared',
  'life',
  'potentially',
  'line',
  'james',
  'james',
  'callison',
  'microcomputer',
  'coordinator',
  'oklahoma',
  'law',
  'center',
  'disclaimer',
  'im',
  'engineer',
  'play',
  'one',
  'work',
  'forecast',
  'calls',
  'thunder',
  'bird',
  'sc',
  'hell',
  'thing',
  'killing',
  'man',
  'take',
  'away',
  'hes',
  'ever',
  'gonna',
  'munny',
  'unforgiven'],
 ['harry',
  'langenbacher',
  'uninterruptible',
  'power',
  'supply',
  'article',
  'jato',
  'apr',
  'organization',
  'jpl',
  'pasadena',
  'ca',
  'lines',
  'nntp',
  'posting',
  'host',
  'neuron',
  'jpl',
  'nasa',
  'gov',
  'article',
  'dale',
  'nurden',
  'writes',
  'im',
  'wanting',
  'build',
  'simple',
  'ups',
  'pc',
  'sustain',
  'computer',
  'long',
  'enough',
  'complete',
  'current',
  'task',
  'save',
  'minutes',
  'enough',
  'think',
  'though',
  'dont',
  'really',
  'need',
  'keep',
  'monitor',
  'active',
  'try',
  'remember',
  'maybe',
  'avoid',
  'dc',
  'ac',
  'inverter',
  'battery',
  'directly',
  'supply',
  'motherboard',
  'peripherals',
  'theres',
  'good',
  'idea',
  'need',
  'amps',
  'dc',
  'minutes',
  'good',
  'wetware',
  'memory',
  'using',
  'wp',
  'autocad',
  'thought',
  'idea',
  'days',
  'ago',
  'ive',
  'got',
  'fairly',
  'new',
  'car',
  'battery',
  'take',
  'along',
  'go',
  'camping',
  'sits',
  'around',
  'useless',
  'im',
  'home',
  'wish',
  'could',
  'get',
  'batteryless',
  'ups',
  'heavy',
  'duty',
  'volt',
  'regulator',
  'supply',
  'pc',
  'guess',
  'youd',
  'need',
  'batteries',
  'alternative',
  'would',
  'leave',
  'amp',
  'battery',
  'charger',
  'hooked',
  'battery',
  'run',
  'vdc',
  'vac',
  'converter',
  'running',
  'time',
  'power',
  'goes',
  'voi',
  'la',
  'vac',
  'converter',
  'keeps',
  'running',
  'battery',
  'could',
  'take',
  'vac',
  'converter',
  'computer',
  'camping',
  'trips',
  'harry',
  'langenbacher',
  'fax',
  'concurrent',
  'processing',
  'devices',
  'group',
  'jet',
  'propulsion',
  'laboratory',
  'oak',
  'grove',
  'dr',
  'pasadena',
  'ca',
  'usa'],
 ['ronald',
  'deblock',
  'jr',
  'changing',
  'oil',
  'self',
  'organization',
  'distribution',
  'usa',
  'keywords',
  'lines',
  'article',
  'aviad',
  'sheinfeld',
  'writes',
  'think',
  'electric',
  'drill',
  'change',
  'suitable',
  'bit',
  'turn',
  'succeed',
  'tighten',
  'tight',
  'safe',
  'without',
  'oil',
  'leak',
  'tighten',
  'bolt',
  'specified',
  'torque',
  'service',
  'manual',
  'way',
  'wont',
  'leak',
  'strip',
  'break',
  'etc',
  'hopefully',
  'thank',
  'much',
  'advance',
  'winson',
  'aviad',
  'avoid',
  'problems',
  'entirely',
  'installing',
  'oil',
  'drain',
  'valve',
  'place',
  'bolt',
  'one',
  'cars',
  'leaks',
  'miles',
  'combined',
  'miles',
  'cars',
  'ron',
  'deblock',
  'thats',
  'number',
  'rdb',
  'letter',
  'bell',
  'labs',
  'somerset',
  'nj',
  'usa'],
 ['robert',
  'desonia',
  'simm',
  'speed',
  'distribution',
  'world',
  'organization',
  'hal',
  'bbs',
  'net',
  'hq',
  'ann',
  'arbor',
  'michigan',
  'usa',
  'reply',
  'robert',
  'desonia',
  'lines',
  'bk',
  'possible',
  'plug',
  'ns',
  'ns',
  'simms',
  'motherboard',
  'saying',
  'bk',
  'wants',
  'ns',
  'simms',
  'shouldnt',
  'troubles',
  'heard',
  'machines',
  'problems',
  'slower',
  'recommended',
  'memory',
  'speeds',
  'never',
  'faster',
  'bk',
  'also',
  'possible',
  'plug',
  'simms',
  'different',
  'bk',
  'speeds',
  'motherboard',
  'ie',
  'megs',
  'ns',
  'megs',
  'bk',
  'something',
  'like',
  'sure',
  'ns',
  'simms',
  'one',
  'bank',
  'ns',
  'simms',
  'wouldnt',
  'recommend',
  'mixing',
  'speeds',
  'within',
  'bank',
  'safe',
  'side',
  'rdd',
  'winqwk',
  'unregistered',
  'evaluation',
  'copy',
  'kmail',
  'net',
  'hq',
  'hal',
  'ann',
  'arbor',
  'mi',
  'us',
  'hal',
  'bbs',
  'qwk',
  'usenet',
  'gateway',
  'four',
  'bis',
  'dial',
  'ins',
  'free',
  'usenet',
  'mail',
  'newsgroups',
  'pcboard',
  'uupcb',
  'kmail',
  'call',
  'member',
  'eff',
  'asp',
  'asad',
  'mb',
  'disk',
  'serving',
  'ann',
  'arbor',
  'since'],
 ['mark',
  'zenier',
  'trace',
  'size',
  'amp',
  'supply',
  'organization',
  'ssc',
  'inc',
  'seattle',
  'wa',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'keen',
  'wrote',
  'quick',
  'dirty',
  'way',
  'get',
  'higher',
  'current',
  'carrying',
  'capacity',
  'pc',
  'board',
  'traces',
  'one',
  'kind',
  'boards',
  'strip',
  'romex',
  'house',
  'wiring',
  'cable',
  'bare',
  'copper',
  'form',
  'bare',
  'copper',
  'follow',
  'trace',
  'solder',
  'quick',
  'dirty',
  'get',
  'bus',
  'bars',
  'stamped',
  'leads',
  'insert',
  'pc',
  'board',
  'mark',
  'zenier'],
 ['peter',
  'wayner',
  'old',
  'key',
  'registration',
  'idea',
  'organization',
  'express',
  'access',
  'online',
  'communications',
  'greenbelt',
  'md',
  'usa',
  'lines',
  'nntp',
  'posting',
  'host',
  'access',
  'digex',
  'net',
  'okay',
  'lets',
  'suppose',
  'nsa',
  'nist',
  'mykotronix',
  'registered',
  'key',
  'system',
  'becomes',
  'standard',
  'im',
  'able',
  'buy',
  'system',
  'local',
  'radio',
  'shack',
  'every',
  'phone',
  'comes',
  'built',
  'chip',
  'government',
  'key',
  'every',
  'phone',
  'call',
  'go',
  'buy',
  'phone',
  'dutifully',
  'register',
  'key',
  'whats',
  'prevent',
  'swapping',
  'phones',
  'friend',
  'buying',
  'used',
  'phone',
  'garage',
  'sale',
  'whooa',
  'secret',
  'registered',
  'keys',
  'became',
  'unsynchronized',
  'government',
  'comes',
  'listen',
  'receive',
  'gobbledly',
  'gook',
  'secret',
  'key',
  'registered',
  'name',
  'isnt',
  'right',
  'one',
  'leads',
  'conjecture',
  'system',
  'isnt',
  'secure',
  'two',
  'master',
  'keys',
  'work',
  'phones',
  'country',
  'part',
  'registering',
  'keys',
  'bogus',
  'system',
  'vulnerable',
  'simple',
  'phone',
  'swapping',
  'attacks',
  'like',
  'criminals',
  'quickly',
  'figure',
  'go',
  'town',
  'either',
  'case',
  'think',
  'need',
  'look',
  'bit',
  'deeper',
  'jbl',
  'mw',
  'wxld'],
 ['roger',
  'mullane',
  'acura',
  'integra',
  'speed',
  'organization',
  'hewlett',
  'packard',
  'santa',
  'clara',
  'ca',
  'lines',
  'acura',
  'integra',
  'speed',
  'miles',
  'positively',
  'worst',
  'car',
  'ever',
  'owned',
  'prelude',
  'miles',
  'sold',
  'still',
  'going',
  'strong',
  'religious',
  'attention',
  'maintenance',
  'oil',
  'changes',
  'etc',
  'cars',
  'driven',
  'exactly',
  'manner',
  'gone',
  'two',
  'clutches',
  'underrated',
  'sets',
  'tires',
  'really',
  'eats',
  'tires',
  'front',
  'even',
  'careful',
  'align',
  'struts',
  'started',
  'leaking',
  'miles',
  'windshield',
  'wiper',
  'motor',
  'burned',
  'service',
  'note',
  'one',
  'seek',
  'stop',
  'working',
  'radio',
  'miles',
  'two',
  'timing',
  'belts',
  'constant',
  'error',
  'signals',
  'computer',
  'finally',
  'rod',
  'bearing',
  'went',
  'piston',
  'seriously',
  'damaging',
  'crankshaft',
  'contaminating',
  'engine',
  'etc',
  'overhaul',
  'done',
  'last',
  'week',
  'required',
  'new',
  'crankshaft',
  'one',
  'new',
  'cam',
  'shaft',
  'two',
  'camshaft',
  'shattered',
  'tried',
  'mill',
  'camshaft',
  'took',
  'weeks',
  'get',
  'national',
  'back',
  'order',
  'everything',
  'engine',
  'unique',
  'year',
  'went',
  'new',
  'design',
  'parts',
  'expensive',
  'way',
  'would',
  'ever',
  'buy',
  'another',
  'acura',
  'highly',
  'overrated'],
 ['john',
  'bruno',
  'ms',
  'windows',
  'access',
  'blind',
  'organization',
  'computer',
  'consoles',
  'inc',
  'rochester',
  'ny',
  'developing',
  'ms',
  'windows',
  'based',
  'product',
  'uses',
  'full',
  'screen',
  'window',
  'display',
  'rows',
  'textual',
  'data',
  'product',
  'microsoft',
  'windows',
  'enable',
  'blind',
  'individuals',
  'access',
  'data',
  'efficiently',
  'quickly',
  'please',
  'email',
  'responses',
  'post',
  'summary',
  'group',
  'thanks',
  'help',
  'john',
  'bruno'],
 ['windows',
  'locks',
  'green',
  'lines',
  'screen',
  'reply',
  'organization',
  'brandeis',
  'university',
  'lines',
  'hi',
  'using',
  'dtk',
  'mhz',
  'meg',
  'memory',
  'run',
  'variety',
  'programs',
  'problems',
  'lock',
  'trying',
  'run',
  'application',
  'wants',
  'lot',
  'memory',
  'period',
  'time',
  'playmation',
  'bit',
  'rendered',
  'locking',
  'everytime',
  'ati',
  'ultra',
  'meg',
  'tried',
  'video',
  'modes',
  'excluded',
  'region',
  'video',
  'memory',
  'segments',
  'emm',
  'tried',
  'adjusting',
  'swap',
  'partion',
  'large',
  'nonexistant',
  'prevent',
  'swapping',
  'remd',
  'tsrs',
  'utilities',
  'config',
  'syus',
  'autoexec',
  'even',
  'tried',
  'using',
  'default',
  'program',
  'manager',
  'disabling',
  'hp',
  'dashboard',
  'even',
  'minimal',
  'system',
  'swap',
  'smartdrv',
  'tsrs',
  'windows',
  'utilities',
  'exclusion',
  'video',
  'regions',
  'still',
  'locks',
  'completely',
  'mouse',
  'control',
  'response',
  'anything',
  'except',
  'finger',
  'salute',
  'even',
  'stop',
  'standard',
  'windows',
  'screen',
  'simply',
  'full',
  'reset',
  'immediately',
  'ideas',
  'anyone',
  'thanks',
  'tom',
  'branham'],
 ['rashid',
  'yet',
  'rushdie',
  'islamic',
  'law',
  'nntp',
  'posting',
  'host',
  'organization',
  'nh',
  'lines',
  'article',
  'fred',
  'rice',
  'wrote',
  'understanding',
  'generally',
  'agreed',
  'upon',
  'ulema',
  'islamic',
  'scholars',
  'islamic',
  'law',
  'applies',
  'islamic',
  'country',
  'uk',
  'furthermore',
  'take',
  'law',
  'ones',
  'hands',
  'criminal',
  'act',
  'matters',
  'state',
  'individuals',
  'nevertheless',
  'khomeini',
  'offered',
  'cash',
  'prize',
  'people',
  'take',
  'law',
  'hands',
  'something',
  'understanding',
  'islamic',
  'law',
  'yes',
  'also',
  'understanding',
  'majority',
  'islamic',
  'laws',
  'however',
  'believe',
  'also',
  'certain',
  'legal',
  'rulings',
  'five',
  'schools',
  'law',
  'sunni',
  'jaffari',
  'levelled',
  'muslim',
  'non',
  'muslims',
  'within',
  'outside',
  'dar',
  'al',
  'islam',
  'know',
  'apostasy',
  'accompanied',
  'active',
  'persistent',
  'open',
  'hostility',
  'islam',
  'falls',
  'category',
  'law',
  'know',
  'historically',
  'apostasy',
  'rarely',
  'punished',
  'let',
  'alone',
  'death',
  'penalty',
  'understanding',
  'khomeinis',
  'ruling',
  'based',
  'law',
  'apostasy',
  'alone',
  'well',
  'known',
  'rushdie',
  'apostate',
  'long',
  'wrote',
  'offending',
  'novel',
  'certainly',
  'precedent',
  'quran',
  'hadith',
  'islamic',
  'history',
  'levelling',
  'death',
  'penalties',
  'apostasy',
  'believe',
  'charge',
  'levelled',
  'rushdie',
  'fasad',
  'ruling',
  'applies',
  'within',
  'outside',
  'domain',
  'islamic',
  'state',
  'carried',
  'individuals',
  'reward',
  'offered',
  'khomeini',
  'individuals',
  'within',
  'iran',
  'stuff',
  'deleted',
  'also',
  'think',
  'muddying',
  'issue',
  'seem',
  'assume',
  'khomeinis',
  'fatwa',
  'issued',
  'due',
  'book',
  'understanding',
  'khomeinis',
  'fatwa',
  'issued',
  'response',
  'book',
  'view',
  'correct',
  'viewpoint',
  'rushdie',
  'sentenced',
  'crime',
  'progress',
  'incorrect',
  'would',
  'concur',
  'thrust',
  'fatwa',
  'remember',
  'levelled',
  'author',
  'assisted',
  'publication',
  'book',
  'however',
  'charge',
  'fasad',
  'encompass',
  'number',
  'lesser',
  'charges',
  'remember',
  'diplomatic',
  'relations',
  'broke',
  'britain',
  'iran',
  'fatwa',
  'iran',
  'stressed',
  'condemnation',
  'author',
  'removal',
  'book',
  'circulation',
  'two',
  'preliminary',
  'conditions',
  'resolving',
  'crisis',
  'correct',
  'point',
  'banning',
  'book',
  'main',
  'thrust',
  'behind',
  'fatwa',
  'islamic',
  'charges',
  'fasad',
  'levelled',
  'people',
  'books',
  'rushdie',
  'situation',
  'followed',
  'iran',
  'several',
  'months',
  'issuance',
  'fatwa',
  'rushdie',
  'went',
  'media',
  'blitz',
  'presenting',
  'lone',
  'knight',
  'guarding',
  'sacred',
  'values',
  'secular',
  'democracy',
  'mocking',
  'foolish',
  'concerns',
  'people',
  'crazy',
  'enough',
  'actually',
  'hold',
  'religious',
  'beliefs',
  'sacred',
  'fanning',
  'flames',
  'milking',
  'controversy',
  'boost',
  'image',
  'push',
  'book',
  'everywhere',
  'media',
  'muslim',
  'demonstrators',
  'several',
  'countries',
  'killed',
  'protesting',
  'book',
  'rushdie',
  'appeared',
  'momentarily',
  'concerned',
  'climbed',
  'back',
  'media',
  'horse',
  'attack',
  'muslims',
  'defend',
  'sacred',
  'rights',
  'point',
  'fatwa',
  'fasad',
  'issued',
  'fatwa',
  'levelled',
  'person',
  'rushdie',
  'actions',
  'rushdie',
  'feed',
  'situation',
  'contribute',
  'legitimization',
  'ruling',
  'book',
  'remains',
  'circulation',
  'independant',
  'author',
  'publishers',
  'fatwa',
  'person',
  'rushdie',
  'encompasses',
  'actions',
  'well',
  'crime',
  'certainly',
  'crime',
  'progress',
  'many',
  'levels',
  'played',
  'played',
  'full',
  'view',
  'media',
  'im',
  'sure',
  'think',
  'charge',
  'shatim',
  'also',
  'applies',
  'rushdie',
  'may',
  'encompassed',
  'umbrella',
  'fasad',
  'ruling'],
 ['scott',
  'roby',
  'batf',
  'fbi',
  'murders',
  'almost',
  'everyone',
  'waco',
  'today',
  'nntp',
  'posting',
  'host',
  'chopin',
  'udel',
  'organization',
  'university',
  'delaware',
  'lines',
  'article',
  'andrew',
  'betz',
  'writes',
  'article',
  'scott',
  'roby',
  'writes',
  'watch',
  'two',
  'miles',
  'away',
  'far',
  'enough',
  'away',
  'whatever',
  'really',
  'happenned',
  'must',
  'explained',
  'vengeful',
  'filter',
  'humiliated',
  'agency',
  'said',
  'quote',
  'enough',
  'enough',
  'please',
  'tell',
  'think',
  'would',
  'happened',
  'people',
  'come',
  'hands',
  'several',
  'weeks',
  'ago',
  'answer',
  'didnt',
  'answer',
  'question',
  'fbi',
  'took',
  'people',
  'camera',
  'range',
  'thus',
  'possible',
  'engaging',
  'questionable',
  'activities',
  'feel',
  'like',
  'cameras',
  'range',
  'cameras',
  'watched',
  'first',
  'confrontation',
  'cameras',
  'watched',
  'banners',
  'cmaeras',
  'watched',
  'final',
  'confrontation',
  'tanks',
  'cameras',
  'watched',
  'fire',
  'werent',
  'cameras',
  'able',
  'watch',
  'would',
  'cameras',
  'unable',
  'watch',
  'people',
  'coming',
  'hands',
  'question',
  'please',
  'tell',
  'think',
  'would',
  'happened',
  'atf',
  'goon',
  'squad',
  'knocked',
  'asked',
  'politely',
  'several',
  'weeks',
  'ago',
  'opposed',
  'playing',
  'rambo',
  'crew',
  'tow',
  'well',
  'batf',
  'done',
  'either',
  'koresh',
  'would',
  'gone',
  'peaceably',
  'done',
  'past',
  'perhaps',
  'already',
  'close',
  'apocalypse',
  'mind',
  'hard',
  'predict',
  'actions',
  'leader',
  'would',
  'release',
  'children',
  'rational',
  'people',
  'would',
  'answer',
  'question',
  'top',
  'drew',
  'brought',
  'terminal',
  'free',
  'state',
  'idaho',
  'outlaw',
  'rights',
  'outlaws',
  'rights',
  'spook',
  'fodder',
  'fema',
  'nsa',
  'clinton',
  'gore',
  'insurrection',
  'nsc',
  'semtex',
  'neptunium',
  'terrorist',
  'cia',
  'mi',
  'mi',
  'kgb',
  'deuterium'],
 ['ed',
  'breen',
  'dicta',
  'originator',
  'keywords',
  'conference',
  'reply',
  'ed',
  'breen',
  'organization',
  'csiro',
  'division',
  'mathematics',
  'statistics',
  'australia',
  'lines',
  'australian',
  'pattern',
  'recognition',
  'society',
  'nd',
  'call',
  'papers',
  'dicta',
  'nd',
  'conference',
  'digital',
  'imaging',
  'computing',
  'techniques',
  'applications',
  'location',
  'macquarie',
  'theatre',
  'macquarie',
  'university',
  'sydney',
  'date',
  'december',
  'dicta',
  'second',
  'biennial',
  'national',
  'conference',
  'australian',
  'pattern',
  'recognition',
  'society',
  'event',
  'provide',
  'opportunity',
  'persons',
  'interest',
  'computer',
  'vision',
  'digital',
  'image',
  'processing',
  'analysis',
  'aspects',
  'pattern',
  'recognition',
  'become',
  'informed',
  'contemporary',
  'developments',
  'area',
  'exchange',
  'ideas',
  'establish',
  'contacts',
  'share',
  'details',
  'work',
  'others',
  'following',
  'invited',
  'speakers',
  'provide',
  'specialised',
  'presentations',
  'prof',
  'gabor',
  'herman',
  'university',
  'pennsylvania',
  'medical',
  'imaging',
  'prof',
  'hodgson',
  'massey',
  'university',
  'new',
  'zealand',
  'computer',
  'vision',
  'prof',
  'dominique',
  'juelin',
  'centre',
  'de',
  'morphologie',
  'mathematique',
  'paris',
  'mathematical',
  'morphology',
  'prof',
  'john',
  'richards',
  'aust',
  'defence',
  'force',
  'academy',
  'canberra',
  'remote',
  'sensing',
  'dr',
  'phillip',
  'robertson',
  'csiro',
  'division',
  'information',
  'technology',
  'canberra',
  'interactive',
  'visualisation',
  'conference',
  'concentrate',
  'limited',
  'following',
  'areas',
  'image',
  'processing',
  'computer',
  'vision',
  'object',
  'recognition',
  'motion',
  'analysis',
  'morphology',
  'medical',
  'imaging',
  'fuzzy',
  'logic',
  'neural',
  'networks',
  'image',
  'coding',
  'machine',
  'vision',
  'robotics',
  'enhancement',
  'restoration',
  'enhancement',
  'restoration',
  'visualisation',
  'industrial',
  'applications',
  'software',
  'hardware',
  'tools',
  'papers',
  'sought',
  'presentation',
  'conference',
  'publication',
  'conference',
  'proceedings',
  'submission',
  'peer',
  'review',
  'consist',
  'extended',
  'abstract',
  'words',
  'doubled',
  'spaced',
  'text',
  'summarizing',
  'technical',
  'aspects',
  'paper',
  'results',
  'quoted',
  'final',
  'papers',
  'limited',
  'pages',
  'text',
  'illustrations',
  'camera',
  'ready',
  'form',
  'four',
  'copies',
  'abstract',
  'sent',
  'dicta',
  'tony',
  'adriaansen',
  'csiro',
  'division',
  'wool',
  'technology',
  'po',
  'box',
  'ryde',
  'nsw',
  'australia',
  'important',
  'dates',
  'abstract',
  'due',
  'th',
  'june',
  'acceptance',
  'notified',
  'th',
  'august',
  'final',
  'paper',
  'due',
  'th',
  'october',
  'social',
  'program',
  'conference',
  'dinner',
  'held',
  'thursday',
  'th',
  'december',
  'social',
  'activities',
  'arranged',
  'situated',
  'beautiful',
  'harbour',
  'sydney',
  'many',
  'varied',
  'places',
  'interest',
  'opera',
  'house',
  'harbour',
  'bridge',
  'two',
  'well',
  'known',
  'landmarks',
  'harbour',
  'cruises',
  'city',
  'tours',
  'blue',
  'mountains',
  'run',
  'daily',
  'provide',
  'information',
  'request',
  'accommodation',
  'accommodation',
  'within',
  'min',
  'walking',
  'distance',
  'available',
  'ranging',
  'college',
  'style',
  'star',
  'hotel',
  'facilities',
  'information',
  'supplied',
  'upon',
  'request',
  'conference',
  'fees',
  'th',
  'sep',
  'th',
  'sep',
  'aprs',
  'members',
  'aprs',
  'student',
  'members',
  'others',
  'conference',
  'dinner',
  'dec',
  'th',
  'advanced',
  'registration',
  'name',
  'organisation',
  'address',
  'phone',
  'fax',
  'email',
  'current',
  'member',
  'aprs',
  'current',
  'member',
  'aprs',
  'please',
  'send',
  'information',
  'accommodation',
  'enclose',
  'cheque',
  'please',
  'send',
  'form',
  'dicta',
  'tony',
  'adriaansen',
  'csiro',
  'division',
  'wool',
  'technology',
  'po',
  'box',
  'ryde',
  'nsw',
  'australia',
  'cheques',
  'made',
  'payable',
  'dicta',
  'information',
  'contact',
  'tony',
  'adriaansen',
  'athula',
  'ginigie',
  'email',
  'aprs',
  'member',
  'iapp',
  'international',
  'association',
  'pattern',
  'recognition',
  'inc',
  'affiliated',
  'member',
  'international',
  'federation',
  'information',
  'processing'],
 ['ville',
  'walveranta',
  'fall',
  'comdex',
  'nntp',
  'posting',
  'host',
  'jobe',
  'organization',
  'portal',
  'communications',
  'company',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'wrote',
  'anyone',
  'info',
  'coming',
  'fall',
  'comdex',
  'asked',
  'one',
  'peers',
  'get',
  'info',
  'might',
  'available',
  'could',
  'anyone',
  'point',
  'right',
  'direction',
  'help',
  'would',
  'appreciated',
  'las',
  'vegas',
  'always',
  'november',
  'th',
  'th',
  'information',
  'contact',
  'interface',
  'group',
  'first',
  'avenue',
  'needham',
  'sorry',
  'phone',
  'number',
  'available',
  'consult',
  'directory',
  'service',
  'massachusetts',
  'number',
  'willy',
  'ville',
  'walveranta',
  'tel',
  'fax',
  'linda',
  'ave',
  'apt',
  'finland',
  'oakland',
  'ca',
  'faxes',
  'automatically',
  'recognized',
  'usa',
  'email'],
 ['eliot',
  'mr',
  'noisy',
  'engine',
  'organization',
  'clearer',
  'blir',
  'lines',
  'nntp',
  'posting',
  'host',
  'lanmola',
  'engr',
  'washington',
  'article',
  'thunderbirds',
  'go',
  'writes',
  'mr',
  'owners',
  'motor',
  'head',
  'gurus',
  'know',
  'mr',
  'engine',
  'sounds',
  'noisy',
  'mr',
  'engine',
  'noisy',
  'best',
  'times',
  'even',
  'nice',
  'nose',
  'one',
  'ugly',
  'noises',
  'assuming',
  'non',
  'turbo',
  'mr',
  'gruffness',
  'characteristic',
  'large',
  'inline',
  'doesnt',
  'balance',
  'shafts',
  'guess',
  'toyota',
  'didnt',
  'care',
  'little',
  'details',
  'like',
  'brag',
  'mid',
  'engine',
  'configuration',
  'flashy',
  'styling',
  'automatically',
  'cross',
  'car',
  'consideration',
  'recommendation',
  'inline',
  'larger',
  'liters',
  'balance',
  'shafts',
  'good',
  'rule',
  'thumb',
  'keep',
  'mind',
  'ever',
  'want',
  'halfway',
  'decent',
  'engine',
  'noise',
  'really',
  'bugs',
  'nothing',
  'else',
  'except',
  'sell',
  'get',
  'eliot'],
 ['dave',
  'olson',
  'much',
  'pay',
  'scsi',
  'cable',
  'connectors',
  'organization',
  'silicon',
  'graphics',
  'inc',
  'mountain',
  'view',
  'ca',
  'lines',
  'dan',
  'jones',
  'writes',
  'also',
  'seem',
  'remember',
  'posting',
  'saying',
  'scsi',
  'spec',
  'calls',
  'foot',
  'devices',
  'cable',
  'cables',
  'get',
  'internal',
  'dont',
  'meet',
  'spec',
  'scsi',
  'ii',
  'draft',
  'proposal',
  'rev',
  'section',
  'single',
  'ended',
  'cable',
  'cable',
  'requirements',
  'section',
  'implementors',
  'note',
  'stub',
  'clustering',
  'avoided',
  'stubs',
  'spaced',
  'least',
  'meters',
  'apart',
  'non',
  'technical',
  'stubs',
  'scsi',
  'devices',
  'however',
  'also',
  'aware',
  'implementors',
  'notes',
  'basicly',
  'recommendations',
  'part',
  'spec',
  'others',
  'noted',
  'many',
  'vendors',
  'including',
  'sgi',
  'violate',
  'indeed',
  'main',
  'point',
  'reduce',
  'impedance',
  'changes',
  'therefore',
  'reflections',
  'therefore',
  'noise',
  'bus',
  'let',
  'one',
  'tell',
  'silence',
  'gives',
  'consent',
  'dave',
  'olson',
  'whoever',
  'silent',
  'dissents',
  'silicon',
  'graphics',
  'inc',
  'maria',
  'isabel',
  'barreno'],
 ['ralph',
  'brendler',
  'using',
  'microsoft',
  'foundation',
  'classes',
  'borland',
  'organization',
  'spss',
  'inc',
  'distribution',
  'usa',
  'lines',
  'article',
  'kerkhoff',
  'writes',
  'hi',
  'anybody',
  'tried',
  'compile',
  'ctrltest',
  'mfc',
  'samples',
  'directory',
  'compiling',
  'mfc',
  'libs',
  'bwc',
  'seems',
  'bwc',
  'isnt',
  'able',
  'distinguish',
  'pointers',
  'overloaded',
  'functions',
  'example',
  'imagine',
  'following',
  'overloaded',
  'functions',
  'void',
  'same_name',
  'void',
  'void',
  'same_name',
  'int',
  'trying',
  'whole',
  'day',
  'think',
  'bwc',
  'impossible',
  'take',
  'adress',
  'one',
  'two',
  'functions',
  'assign',
  'properly',
  'defined',
  'function',
  'pointer',
  'right',
  'anybody',
  'else',
  'problem',
  'thanx',
  'think',
  'may',
  'chasing',
  'wrong',
  'problem',
  'dont',
  'think',
  'function',
  'overloading',
  'sort',
  'thing',
  'time',
  'bc',
  'without',
  'hitch',
  'big',
  'problems',
  'encountered',
  'porting',
  'mfc',
  'bc',
  'fact',
  'mfc',
  'couple',
  'invalid',
  'assumptions',
  'never',
  'gotten',
  'ctrltest',
  'app',
  'run',
  'bc',
  'reason',
  'ms',
  'makes',
  'bad',
  'assumptions',
  'order',
  'static',
  'global',
  'objects',
  'initialized',
  'objects',
  'getting',
  'accessed',
  'initialized',
  'problem',
  'owner',
  'draw',
  'menu',
  'code',
  'somewhere',
  'comment',
  'section',
  'pieces',
  'ctrltest',
  'work',
  'fine',
  'two',
  'major',
  'gotchas',
  'found',
  'using',
  'mfc',
  'bc',
  'cfile',
  'openflags',
  'enum',
  'uses',
  'hard',
  'coded',
  'numbers',
  'open',
  'mode',
  'rather',
  'manifest',
  'constants',
  'defined',
  'fcntrl',
  'differ',
  'msc',
  'bc',
  'mfc',
  'collection',
  'classes',
  'depend',
  'another',
  'bad',
  'assumption',
  'reference',
  'base',
  'object',
  'used',
  'place',
  'reference',
  'derived',
  'object',
  'true',
  'pointers',
  'references',
  'sure',
  'problems',
  'along',
  'lines',
  'encountered',
  'yet',
  'seen',
  'mfc',
  'yet',
  'hope',
  'addressed',
  'mss',
  'hype',
  'portability',
  'vendors',
  'compilers',
  'employers',
  'opinions',
  'wouldnt',
  'posting',
  'whoever',
  'said',
  'nothing',
  'lasts',
  'forever',
  'obviously',
  'brendler',
  'cubs',
  'fan',
  'mike',
  'royko',
  'spss',
  'inc',
  'chicago',
  'il'],
 ['andre',
  'beck',
  'fonts',
  'pov',
  'organization',
  'dept',
  'computer',
  'science',
  'tu',
  'dresden',
  'germany',
  'lines',
  'distribution',
  'world',
  'reply',
  'nntp',
  'posting',
  'host',
  'irzr',
  'inf',
  'tu',
  'dresden',
  'de',
  'keywords',
  'fonts',
  'raytrace',
  'article',
  'coronado',
  'emmanuel',
  'abad',
  'writes',
  'seen',
  'several',
  'ray',
  'traced',
  'scenes',
  'mtv',
  'rayshade',
  'stroked',
  'fonts',
  'appearing',
  'objects',
  'image',
  'fonts',
  'chars',
  'color',
  'depth',
  'even',
  'textures',
  'associated',
  'wondering',
  'possible',
  'pov',
  'hi',
  'noel',
  'ive',
  'made',
  'attempts',
  'write',
  'converter',
  'reads',
  'adobe',
  'type',
  'fonts',
  'triangulates',
  'bevelizes',
  'extrudes',
  'result',
  'generic',
  'object',
  'could',
  'used',
  'pov',
  'problem',
  'im',
  'currently',
  'stuck',
  'theres',
  'algorithm',
  'triangulates',
  'arbitrary',
  'polygonal',
  'shape',
  'delaunay',
  'seems',
  'limited',
  'convex',
  'hulls',
  'constrained',
  'delaunay',
  'may',
  'okay',
  'code',
  'example',
  'another',
  'way',
  'bartman',
  'may',
  'tga',
  'pov',
  'selfmade',
  'variation',
  'using',
  'heightfields',
  'create',
  'picture',
  'big',
  'text',
  'need',
  'using',
  'postscript',
  'previewer',
  'heightfield',
  'white',
  'black',
  'heightfield',
  'exactly',
  'images',
  'white',
  'parts',
  'still',
  'open',
  'backside',
  'close',
  'mirror',
  'compound',
  'original',
  'example',
  'object',
  'union',
  'height_field',
  'gif',
  'abp',
  'gif',
  'height_field',
  'gif',
  'abp',
  'gif',
  'scale',
  'texture',
  'glass',
  'translate',
  'center',
  'rotate',
  'rotate',
  'upwards',
  'scale',
  'scale',
  'bigger',
  'thicker',
  'translate',
  'final',
  'placement',
  'abp',
  'gif',
  'gif',
  'arbitrary',
  'size',
  'containing',
  'abp',
  'black',
  'white',
  'times',
  'roman',
  'points',
  'brain',
  'inside',
  'andre',
  'beck',
  'abpsoft',
  'mehl'],
 ['valerie',
  'hammerl',
  'goalie',
  'mask',
  'update',
  'organization',
  'ub',
  'lines',
  'nntp',
  'posting',
  'host',
  'lictor',
  'acsu',
  'buffalo',
  'article',
  'hrivnak',
  'writes',
  'results',
  'three',
  'days',
  'voting',
  'remember',
  'pts',
  'st',
  'nd',
  'rd',
  'also',
  'still',
  'turn',
  'votes',
  'guy',
  'isnt',
  'regular',
  'goalie',
  'retired',
  'please',
  'include',
  'team',
  'thanks',
  'time',
  'keep',
  'sending',
  'votes',
  'glenn',
  'healy',
  'nyi',
  'tommy',
  'soderstron',
  'ray',
  'leblanc',
  'usa',
  'soderstrom',
  'plays',
  'philly',
  'doesnt',
  'moulded',
  'mask',
  'hes',
  'got',
  'helmet',
  'cage',
  'variety',
  'white',
  'least',
  'thats',
  'wore',
  'thirteen',
  'hours',
  'ago',
  'valerie',
  'hammerl',
  'days',
  'remind',
  'hes',
  'mario',
  'lemieux',
  'herb',
  'brooks',
  'claude',
  'lemieux',
  'top',
  'scorer',
  'devils',
  'known',
  'taking',
  'dumb',
  'penalties'],
 ['cole',
  'microcontroller',
  'organization',
  'new',
  'mexico',
  'state',
  'university',
  'lines',
  'nntp',
  'posting',
  'host',
  'spock',
  'nmsu',
  'would',
  'like',
  'experiment',
  'intel',
  'family',
  'anyone',
  'know',
  'good',
  'ftp',
  'sites',
  'might',
  'compiliers',
  'assemblers',
  'etc'],
 ['organization',
  'penn',
  'state',
  'university',
  'atari',
  'processors',
  'lines',
  'anyone',
  'know',
  'processor',
  'atari',
  'used',
  'im',
  'looking',
  'th',
  'pin',
  'outs',
  'atari',
  'schematics',
  'anyone',
  'idea',
  'could',
  'find',
  'related',
  'information',
  'impor',
  'tant',
  'also',
  'rom',
  'chips',
  'used',
  'fo',
  'rthe',
  'games',
  'still',
  'available',
  'propreitary',
  'please',
  'email',
  'responces',
  'important',
  'thanks',
  'million',
  'btw',
  'anyone',
  'works',
  'worked',
  'atari',
  'could',
  'really',
  'help',
  'nfo',
  'old',
  'please',
  'email',
  'willing',
  'help',
  'thatnks',
  'alot',
  'peter'],
 ['serdar',
  'argic',
  'nazi',
  'germany',
  'armenians',
  'considered',
  'aryan',
  'race',
  'reply',
  'serdar',
  'argic',
  'distribution',
  'world',
  'lines',
  'article',
  'tim',
  'clock',
  'writes',
  'letter',
  'chronicle',
  'date',
  'time',
  'figment',
  'imagination',
  'another',
  'one',
  'source',
  'berlin',
  'december',
  'nr',
  'yet',
  'another',
  'historical',
  'fact',
  'fact',
  'years',
  'deliberately',
  'forgotten',
  'concealed',
  'wiped',
  'memory',
  'fact',
  'armenian',
  'nazi',
  'collaboration',
  'magazine',
  'called',
  'der',
  'deutsch',
  'armenischen',
  'gesselschaft',
  'clearest',
  'definite',
  'proof',
  'collaboration',
  'magazine',
  'first',
  'published',
  'berlin',
  'nazi',
  'rule',
  'germany',
  'continued',
  'publication',
  'end',
  'even',
  'name',
  'magazine',
  'implies',
  'declaration',
  'armenian',
  'nazi',
  'cooperation',
  'attention',
  'getting',
  'magazine',
  'every',
  'issue',
  'proves',
  'collaboration',
  'historically',
  'important',
  'documentary',
  'evidence',
  'heap',
  'writing',
  'admonition',
  'world',
  'opinion',
  'mankind',
  'nazi',
  'germany',
  'armenians',
  'considered',
  'aryan',
  'race',
  'certain',
  'political',
  'economic',
  'social',
  'rights',
  'thus',
  'granted',
  'occupied',
  'positions',
  'public',
  'service',
  'partners',
  'nazi',
  'practices',
  'whole',
  'world',
  'course',
  'knows',
  'awaited',
  'considered',
  'aryan',
  'befell',
  'serdar',
  'argic',
  'closed',
  'roads',
  'mountain',
  'passes',
  'might',
  'serve',
  'ways',
  'escape',
  'turks',
  'proceeded',
  'work',
  'extermination',
  'ohanus',
  'appressian',
  'soviet',
  'armenia',
  'today',
  'longer',
  'exists',
  'single',
  'turkish',
  'soul',
  'sahak',
  'melkonian'],
 ['mika',
  'iisakkila',
  'old',
  'simms',
  'reply',
  'message',
  'apr',
  'nntp',
  'posting',
  'host',
  'gamma',
  'hut',
  'fi',
  'organization',
  'helsinki',
  'university',
  'technology',
  'finland',
  'lines',
  'daniel',
  'rubin',
  'writes',
  'hard',
  'would',
  'somehow',
  'interface',
  'popular',
  'motorola',
  'hard',
  'refreshing',
  'access',
  'cycles',
  'software',
  'hogs',
  'available',
  'cpu',
  'cycles',
  'low',
  'end',
  'controller',
  'ive',
  'seen',
  'application',
  'note',
  'philips',
  'used',
  'one',
  'derivatives',
  'printer',
  'buffer',
  'mb',
  'dynamic',
  'ram',
  'accessed',
  'refreshed',
  'software',
  'bit',
  'banging',
  'another',
  'alternative',
  'would',
  'one',
  'nice',
  'dram',
  'controller',
  'chips',
  'create',
  'static',
  'ram',
  'appearance',
  'may',
  'expensive',
  'make',
  'worthwhile',
  'segmented',
  'memory',
  'helps',
  'structure',
  'software'],
 ['eric',
  'bosco',
  'windows',
  'keeps',
  'crashing',
  'please',
  'help',
  'nntp',
  'posting',
  'host',
  'monica',
  'us',
  'oracle',
  'com',
  'reply',
  'organization',
  'oracle',
  'corp',
  'redwood',
  'shores',
  'ca',
  'disclaimer',
  'message',
  'written',
  'unauthenticated',
  'user',
  'oracle',
  'corporation',
  'opinions',
  'expressed',
  'user',
  'necessarily',
  'oracle',
  'lines',
  'subjects',
  'says',
  'windows',
  'keeps',
  'crashing',
  'givinh',
  'gpf',
  'late',
  'never',
  'stable',
  'package',
  'seems',
  'crash',
  'every',
  'day',
  'worst',
  'part',
  'crash',
  'consistently',
  'ie',
  'cant',
  'reproduce',
  'crashes',
  'always',
  'gpfs',
  'application',
  'sometimes',
  'recover',
  'simply',
  'closing',
  'application',
  'caused',
  'error',
  'times',
  'windows',
  'acts',
  'strange',
  'need',
  'boot',
  'background',
  'leading',
  'edge',
  'sx',
  'phoenix',
  'bios',
  'first',
  'got',
  'mg',
  'memory',
  'ran',
  'windows',
  'fine',
  'many',
  'gpfs',
  'couple',
  'weekends',
  'ago',
  'installed',
  'lotus',
  'windows',
  'atm',
  'game',
  'card',
  'additional',
  'mg',
  'simms',
  'leading',
  'edge',
  'machine',
  'kind',
  'strange',
  'ide',
  'controler',
  'built',
  'motherboard',
  'cpu',
  'actually',
  'sparate',
  'board',
  'plugs',
  'motherboard',
  'simms',
  'uses',
  'macintosh',
  'simms',
  'apparently',
  'told',
  'leading',
  'edge',
  'parity',
  'bit',
  'built',
  'mother',
  'board',
  'original',
  'mg',
  'ns',
  'simms',
  'chip',
  'variety',
  'samsung',
  'ones',
  'installed',
  'chip',
  'simms',
  'recognized',
  'fine',
  'bios',
  'ram',
  'check',
  'game',
  'card',
  'generic',
  'gamecard',
  'reason',
  'mention',
  'hardware',
  'like',
  'sometimes',
  'rebooting',
  'machine',
  'using',
  'reset',
  'button',
  'ctl',
  'alt',
  'del',
  'still',
  'leaves',
  'machine',
  'kind',
  'flaky',
  'turning',
  'doesnt',
  'havent',
  'tried',
  'taking',
  'ram',
  'game',
  'card',
  'said',
  'gpf',
  'reproducible',
  'gone',
  'entire',
  'day',
  'using',
  'computer',
  'problems',
  'might',
  'get',
  'gpfs',
  'sppace',
  'minutes',
  'situation',
  'annoying',
  'good',
  'diagnostic',
  'tools',
  'hardware',
  'think',
  'might',
  'software',
  'problem',
  'ie',
  'emm',
  'etc',
  'helps',
  'manage',
  'get',
  'gpfs',
  'dark',
  'quicken',
  'paint',
  'shop',
  'pro',
  'lot',
  'user',
  'exe',
  'gdi',
  'exe',
  'help',
  'truly',
  'appreciated',
  'eric'],
 ['speedy',
  'mercer',
  'motorcycle',
  'detailing',
  'tip',
  'organization',
  'louisiana',
  'tech',
  'university',
  'lines',
  'nntp',
  'posting',
  'host',
  'bhm',
  'spc',
  'engr',
  'latech',
  'article',
  'tony',
  'jones',
  'writes',
  'note',
  'users',
  'plexi',
  'fairings',
  'light',
  'hits',
  'right',
  'become',
  'giant',
  'magnifing',
  'glass',
  'melt',
  'hole',
  'guage',
  'pod',
  'dod',
  'technician',
  'dr',
  'speed',
  'student',
  'stolen',
  'taglines',
  'god',
  'real',
  'unless',
  'declared',
  'integer',
  'came',
  'saw',
  'deleted',
  'files',
  'black',
  'holes',
  'god',
  'dividing',
  'zero',
  'world',
  'end',
  'minutes',
  'please',
  'log',
  'earth',
  'full',
  'please',
  'delete',
  'anyone'],
 ['nicholas',
  'coburn',
  'bikes',
  'big',
  'dogs',
  'nntp',
  'posting',
  'host',
  'spot',
  'colorado',
  'organization',
  'university',
  'colorado',
  'boulder',
  'lines',
  'article',
  'writes',
  'anyone',
  'ever',
  'heard',
  'rider',
  'giving',
  'big',
  'dog',
  'great',
  'dane',
  'ride',
  'back',
  'bike',
  'dog',
  'would',
  'love',
  'could',
  'ever',
  'make',
  'work',
  'thanks',
  'back',
  'might',
  'tricky',
  'boulder',
  'guy',
  'always',
  'seen',
  'golden',
  'retriever',
  'sidecar',
  'course',
  'dog',
  'always',
  'wearing',
  'wwii',
  'style',
  'goggles',
  'joke',
  'nick',
  'coburn',
  'dod',
  'ama',
  'cbr',
  'cbr'],
 ['nigel',
  'allen',
  'reserve',
  'officers',
  'say',
  'demographics',
  'ignored',
  'nominations',
  'close',
  'naval',
  'marine',
  'reserve',
  'centers',
  'organization',
  'node',
  'public',
  'access',
  'unix',
  'lines',
  'press',
  'release',
  'reserve',
  'officers',
  'association',
  'reserve',
  'officers',
  'say',
  'demographics',
  'ignored',
  'nominations',
  'close',
  'naval',
  'marine',
  'reserve',
  'centers',
  'national',
  'desk',
  'defense',
  'writer',
  'contact',
  'herbert',
  'hart',
  'reserve',
  'officers',
  'association',
  'united',
  'states',
  'washington',
  'april',
  'newswire',
  'reserve',
  'officers',
  'association',
  'united',
  'states',
  'alerted',
  'defense',
  'base',
  'realignment',
  'closure',
  'commission',
  'services',
  'failed',
  'give',
  'sufficient',
  'weight',
  'demographics',
  'recommendations',
  'made',
  'close',
  'naval',
  'marine',
  'corps',
  'reserve',
  'centers',
  'letters',
  'closure',
  'commission',
  'members',
  'congress',
  'affected',
  'locations',
  'constituencies',
  'including',
  'sen',
  'sam',
  'nunn',
  'ga',
  'chairman',
  'senate',
  'armed',
  'services',
  'committee',
  'roa',
  'charged',
  'developers',
  'navy',
  'marine',
  'list',
  'ignored',
  'demographics',
  'civilian',
  'population',
  'particularly',
  'prior',
  'service',
  'personnel',
  'roas',
  'executive',
  'director',
  'maj',
  'gen',
  'evan',
  'hultman',
  'aus',
  'ret',
  'suggested',
  'concern',
  'plausible',
  'alternative',
  'intentionally',
  'attempting',
  'foreclose',
  'naval',
  'reserve',
  'components',
  'maintaining',
  'even',
  'todays',
  'relatively',
  'low',
  'level',
  'participation',
  'parent',
  'services',
  'total',
  'force',
  'future',
  'asked',
  'commission',
  'remove',
  'consideration',
  'locations',
  'without',
  'sufficient',
  'convincing',
  'demographic',
  'data',
  'warrant',
  'approval',
  'requested',
  'action',
  'naval',
  'marine',
  'corps',
  'reserve',
  'installations',
  'list',
  'large',
  'enough',
  'significant',
  'impact',
  'community',
  'closed',
  'wrote',
  'hultman',
  'major',
  'issue',
  'cumulative',
  'impact',
  'moving',
  'closing',
  'large',
  'percentage',
  'existing',
  'locations',
  'hultman',
  'reminded',
  'commission',
  'fact',
  'vast',
  'majority',
  'reserve',
  'installations',
  'list',
  'come',
  'close',
  'meeting',
  'minimal',
  'requirements',
  'consideration',
  'process',
  'certainly',
  'supports',
  'thesis',
  'actions',
  'simply',
  'attempt',
  'foreclose',
  'substantial',
  'role',
  'navy',
  'marine',
  'corps',
  'reserve',
  'roa',
  'also',
  'noted',
  'end',
  'number',
  'naval',
  'reservists',
  'approximately',
  'today',
  'naval',
  'reserve',
  'facilities',
  'navy',
  'recommendations',
  'approved',
  'less',
  'naval',
  'reserve',
  'facilities',
  'facilities',
  'list',
  'include',
  'seven',
  'naval',
  'air',
  'stations',
  'ranging',
  'south',
  'weymouth',
  'mass',
  'alameda',
  'calif',
  'naval',
  'reserve',
  'centers',
  'macon',
  'ga',
  'parkersburg',
  'va',
  'missoula',
  'great',
  'falls',
  'mont',
  'naval',
  'marine',
  'corps',
  'reserve',
  'centers',
  'include',
  'four',
  'san',
  'francisco',
  'fort',
  'wayne',
  'ind',
  'billings',
  'mont',
  'abilene',
  'texas',
  'major',
  'marine',
  'reserve',
  'center',
  'list',
  'el',
  'toro',
  'calif',
  'plus',
  'six',
  'others',
  'nigel',
  'allen',
  'toronto',
  'ontario',
  'canada'],
 ['bill',
  'hodgson',
  'waiting',
  'specific',
  'event',
  'callback',
  'reply',
  'organization',
  'salomon',
  'brothers',
  'ltd',
  'lines',
  'nntp',
  'posting',
  'host',
  'greed',
  'article',
  'huub',
  'bakker',
  'writes',
  'deleted',
  'plain',
  'motify',
  'using',
  'dialog',
  'line',
  'like',
  'simply',
  'isnt',
  'done',
  'need',
  'set',
  'callbacks',
  'buttons',
  'widgets',
  'dialog',
  'let',
  'callback',
  'routines',
  'work',
  'callbacks',
  'carry',
  'flow',
  'logic',
  'xview',
  'sun',
  'actually',
  'supports',
  'neatly',
  'notify',
  'box',
  'return',
  'status',
  'line',
  'actualy',
  'ease',
  'coding',
  'goes',
  'event',
  'driven',
  'style',
  'application',
  'summary',
  'redesign',
  'required',
  'delta',
  'hedging',
  'long',
  'option',
  'position',
  'also',
  'generates',
  'short',
  'gamma',
  'exposure',
  'return',
  'generated',
  'delta',
  'hedging',
  'options',
  'thought',
  'compensation',
  'assuming',
  'gamma',
  'risk',
  'radioactive',
  'investment',
  'management',
  'whew'],
 ['free',
  'moral',
  'agency',
  'distribution',
  'world',
  'organization',
  'department',
  'computer',
  'science',
  'university',
  'york',
  'england',
  'lines',
  'saying',
  'physical',
  'adam',
  'eve',
  'humans',
  'direct',
  'decendents',
  'two',
  'human',
  'beings',
  'cain',
  'ables',
  'wives',
  'couldnt',
  'sisters',
  'didnt',
  'daughters',
  'non',
  'humans',
  'genesis',
  'days',
  'adam',
  'begat',
  'seth',
  'eight',
  'hundred',
  'years',
  'begat',
  'sons',
  'daughters',
  'felicitations',
  'chris',
  'ho',
  'stuart'],
 ['tim',
  'ciceran',
  'hijaak',
  'organization',
  'brock',
  'university',
  'st',
  'catharines',
  'ontario',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'haston',
  'donald',
  'wayne',
  'wrote',
  'currently',
  'shareware',
  'program',
  'called',
  'graphics',
  'workshop',
  'kinds',
  'things',
  'hijaak',
  'shareware',
  'programs',
  'also',
  'graphic',
  'workshop',
  'differences',
  'know',
  'hijaak',
  'screen',
  'capture',
  'capabilities',
  'acn',
  'convert',
  'couple',
  'file',
  'formats',
  'dont',
  'know',
  'specifically',
  'one',
  'april',
  'issue',
  'pc',
  'magazine',
  'test',
  'twelve',
  'best',
  'selling',
  'image',
  'capture',
  'convert',
  'utilities',
  'including',
  'hijaak',
  'tmc'],
 ['tsung',
  'kun',
  'chen',
  'software',
  'forsale',
  'lots',
  'nntp',
  'posting',
  'host',
  'magnusug',
  'magnus',
  'acs',
  'ohio',
  'state',
  'organization',
  'ohio',
  'state',
  'university',
  'post',
  'friend',
  'either',
  'call',
  'lee',
  'drop',
  'mail',
  'distribution',
  'usa',
  'lines',
  'software',
  'publishing',
  'superbase',
  'windows',
  'ocr',
  'system',
  'readright',
  'windows',
  'ocr',
  'system',
  'readright',
  'dos',
  'unregistered',
  'zortech',
  'bit',
  'compiler',
  'multiscope',
  'windows',
  'debugger',
  'whitewater',
  'resource',
  'toolkit',
  'library',
  'source',
  'code',
  'glockenspiel',
  'imagesoft',
  'commonview',
  'windows',
  'applications',
  'framework',
  'borland',
  'spontaneous',
  'assembly',
  'library',
  'source',
  'code',
  'microsoft',
  'macro',
  'assembly',
  'microsoft',
  'windows',
  'sdk',
  'documentation',
  'microsoft',
  'foxpro',
  'wordperfect',
  'developers',
  'toolkit',
  'kedwell',
  'software',
  'databoss',
  'code',
  'generator',
  'kedwell',
  'installboss',
  'installation',
  'generator',
  'liant',
  'software',
  'views',
  'windows',
  'application',
  'framework',
  'source',
  'code',
  'ibm',
  'os',
  'developers',
  'toolkit',
  'cbtree',
  'dos',
  'windows',
  'library',
  'source',
  'code',
  'symantec',
  'timeline',
  'windows',
  'timeslip',
  'timesheet',
  'professional',
  'windows',
  'many',
  'software',
  'books',
  'available',
  'price',
  'negotiable'],
 ['patrick',
  'taylor',
  'sounding',
  'board',
  'disks',
  'copy',
  'protected',
  'nntp',
  'posting',
  'host',
  'organization',
  'ericsson',
  'network',
  'systems',
  'inc',
  'disclaimer',
  'article',
  'posted',
  'user',
  'ericsson',
  'opinions',
  'expressed',
  'strictly',
  'user',
  'necessarily',
  'ericsson',
  'lines',
  'article',
  'bill',
  'mayhew',
  'writes',
  'bill',
  'mayhew',
  'disks',
  'copy',
  'protected',
  'date',
  'wed',
  'apr',
  'gmt',
  'write',
  'good',
  'manual',
  'go',
  'software',
  'hassle',
  'photocopying',
  'manual',
  'offset',
  'simplicity',
  'purchasing',
  'package',
  'also',
  'consider',
  'offering',
  'inexpensive',
  'attractive',
  'perc',
  'registered',
  'users',
  'instance',
  'coffee',
  'mug',
  'could',
  'produce',
  'mail',
  'incentive',
  'couple',
  'dollars',
  'consider',
  'pricing',
  'product',
  'program',
  'lot',
  'shareware',
  'similar',
  'approach',
  'send',
  'money',
  'get',
  'documentation',
  'free',
  'upgrade',
  'latest',
  'version',
  'perhaps',
  'even',
  'support',
  'small',
  'degree',
  'whatever',
  'want',
  'offer',
  'better',
  'circulating',
  'version',
  'youre',
  'lucky',
  'instances',
  'program',
  'non',
  'licensed',
  'users',
  'figure',
  'seen',
  'best',
  'approach',
  'estimate',
  'loss',
  'accomodate',
  'price',
  'structure',
  'sure',
  'hurts',
  'legitimate',
  'users',
  'bad',
  'doesnt',
  'really',
  'hurt',
  'legit',
  'users',
  'shareware',
  'still',
  'much',
  'cheaper',
  'alternatives',
  'visit',
  'sounding',
  'board',
  'bbs',
  'wildcat',
  'bbs',
  'obdis',
  'opinions',
  'specifically',
  'disclaimed',
  'one',
  'responsible',
  'patrick',
  'taylor',
  'ericsson',
  'network',
  'systems',
  'thx',
  'dont',
  'let',
  'se',
  'fool'],
 ['graeme',
  'harrison',
  'goldwing',
  'performance',
  'organization',
  'hp',
  'corporate',
  'notes',
  'server',
  'lines',
  'hpcc',
  'rec',
  'motorcycles',
  'john',
  'stafford',
  'apr',
  'article',
  'craig',
  'dodson',
  'wrote',
  'summary',
  'back',
  'motorcyclist',
  'run',
  'mph',
  'interestingly',
  'enough',
  'winnebago',
  'bikes',
  'faster',
  'harleys',
  'listed',
  'depreciates',
  'much',
  'faster',
  'john',
  'stafford',
  'minnesota',
  'state',
  'university',
  'winona',
  'standard',
  'disclaimers',
  'apply',
  'gl',
  'hit',
  'traps',
  'according',
  'cycle',
  'magazine',
  'yeah',
  'depreciate',
  'faster',
  'harleys',
  'first',
  'couple',
  'years',
  'bottom',
  'got',
  'gl',
  'miles',
  'odometer',
  'may',
  'would',
  'ask',
  'almost',
  'miles',
  'onnit',
  'thats',
  'new',
  'gl',
  'would',
  'cost',
  'think',
  'gl',
  'originally',
  'sold',
  'brand',
  'new',
  'sure',
  'thats',
  'case',
  'depreciated',
  'years',
  'mere',
  'big',
  'fat',
  'hairy',
  'deal',
  'based',
  'know',
  'harleys',
  'tend',
  'depreciate',
  'monies',
  'far',
  'initial',
  'depreciation',
  'bike',
  'comes',
  'parts',
  'service',
  'harleys',
  'holding',
  'value',
  'better',
  'doesnt',
  'always',
  'wash',
  'away',
  'knocks',
  'much',
  'slower',
  'according',
  'peter',
  'egan',
  'released',
  'cycle',
  'world',
  'flhs',
  'real',
  'dog',
  'pillions',
  'lb',
  'wife',
  'money',
  'dog',
  'doesnt',
  'defecate',
  'much',
  'graeme',
  'harrison',
  'hewlett',
  'packard',
  'co',
  'communications',
  'components',
  'division',
  'trimble',
  'rd',
  'san',
  'jose',
  'ca',
  'dod'],
 ['robert',
  'horton',
  'macs',
  'suck',
  'buy',
  'pc',
  'nntp',
  'posting',
  'host',
  'molbio',
  'cbs',
  'umn',
  'organization',
  'university',
  'minnesota',
  'newsreader',
  'tin',
  'pl',
  'lines',
  'tests',
  'suck',
  'post',
  'real',
  'message'],
 ['mark',
  'ira',
  'kaufman',
  'israel',
  'kill',
  'reporters',
  'organization',
  'case',
  'western',
  'reserve',
  'university',
  'cleveland',
  'ohio',
  'usa',
  'lines',
  'nntp',
  'posting',
  'host',
  'thor',
  'ins',
  'cwru',
  'anas',
  'omran',
  'claimed',
  'israelis',
  'used',
  'arrest',
  'sometime',
  'kill',
  'neutral',
  'reporters',
  'assertion',
  'anas',
  'omran',
  'course',
  'total',
  'fabrication',
  'truth',
  'iin',
  'im',
  'sure',
  'anas',
  'omran',
  'document',
  'sad',
  'despicable',
  'event',
  'otherwise',
  'may',
  'assume',
  'another',
  'piece',
  'anti',
  'israel',
  'bullshit',
  'posted',
  'someone',
  'whose',
  'family',
  'know',
  'teach',
  'children',
  'tell',
  'truth',
  'omran',
  'would',
  'care',
  'retract',
  'error',
  'would',
  'glad',
  'retract',
  'accusation',
  'liar',
  'document',
  'claim',
  'would',
  'glad',
  'apologize',
  'calling',
  'liar',
  'failing',
  'either',
  'would',
  'certainly',
  'show',
  'liar'],
 ['dave',
  'medin',
  'oscilloscope',
  'triggering',
  'reply',
  'organization',
  'intergraph',
  'corporation',
  'huntsville',
  'al',
  'lines',
  'article',
  'david',
  'glen',
  'jacobowitz',
  'writes',
  'someone',
  'explain',
  'exactly',
  'trigger',
  'feature',
  'found',
  'oscilloscopes',
  'lots',
  'og',
  'good',
  'explanation',
  'deleted',
  'lots',
  'deleted',
  'anybody',
  'else',
  'like',
  'digital',
  'scopes',
  'school',
  'beauutful',
  'mhz',
  'hp',
  'digital',
  'bells',
  'whistles',
  'including',
  'soft',
  'keys',
  'think',
  'loveley',
  'touch',
  'software',
  'keys',
  'dont',
  'forget',
  'dealing',
  'computer',
  'scopes',
  'even',
  'neatness',
  'still',
  'make',
  'ickyest',
  'looking',
  'waves',
  'lotsa',
  'features',
  'ugly',
  'output',
  'best',
  'digitals',
  'ever',
  'seen',
  'ive',
  'seen',
  'lot',
  'cheaper',
  'digitals',
  'look',
  'terrible',
  'think',
  'hangup',
  'digital',
  'scopes',
  'know',
  'much',
  'work',
  'scope',
  'scope',
  'basis',
  'functions',
  'typically',
  'presented',
  'opinion',
  'counter',
  'intuitive',
  'fashion',
  'hp',
  'made',
  'strides',
  'series',
  'imo',
  'automatic',
  'setups',
  'fine',
  'simple',
  'repetitive',
  'waveforms',
  'give',
  'crazy',
  'results',
  'complex',
  'events',
  'need',
  'understand',
  'scope',
  'actually',
  'measuring',
  'processing',
  'event',
  'example',
  'scope',
  'equivalent',
  'time',
  'real',
  'time',
  'sampling',
  'mode',
  'equivalent',
  'time',
  'mode',
  'samples',
  'built',
  'slowly',
  'adding',
  'delay',
  'trigger',
  'event',
  'sweep',
  'scopes',
  'actual',
  'sampling',
  'rate',
  'time',
  'data',
  'massaged',
  'capture',
  'display',
  'etc',
  'one',
  'common',
  'misconception',
  'speed',
  'scope',
  'hp',
  'scope',
  'youre',
  'using',
  'really',
  'mhz',
  'scope',
  'mhz',
  'sample',
  'rate',
  'scope',
  'mhz',
  'single',
  'shot',
  'significance',
  'whose',
  'front',
  'end',
  'including',
  'support',
  'mhz',
  'waveforms',
  'important',
  'equivalent',
  'time',
  'sampling',
  'mhz',
  'input',
  'case',
  'really',
  'helps',
  'waveform',
  'repetitive',
  'single',
  'sample',
  'get',
  'lucky',
  'hit',
  'transient',
  'event',
  'sample',
  'time',
  'lot',
  'variables',
  'understanding',
  'get',
  'useful',
  'information',
  'digital',
  'scope',
  'prefer',
  'analog',
  'scope',
  'general',
  'digital',
  'events',
  'need',
  'storage',
  'later',
  'analysis',
  'comparison',
  'event',
  'within',
  'capability',
  'scope',
  'price',
  'true',
  'mhz',
  'digital',
  'scopes',
  'fall',
  'dave',
  'medin',
  'phone',
  'ssd',
  'networking',
  'intergraph',
  'corp',
  'gd',
  'internet',
  'huntsville',
  'al',
  'uucp',
  'uunet',
  'ingr',
  'catbyte',
  'dtmedin',
  'everywhere',
  'look',
  'least',
  'around',
  'office',
  'opinions',
  'expressed',
  'mine',
  'machine'],
 ['govindan',
  'ravindran',
  'decoupling',
  'caps',
  'onboard',
  'organization',
  'department',
  'electrical',
  'computer',
  'engineering',
  'university',
  'toronto',
  'lines',
  'posted',
  'friend',
  'hello',
  'would',
  'like',
  'know',
  'one',
  'experience',
  'board',
  'decoupling',
  'capacitors',
  'inside',
  'cmos',
  'chip',
  'power',
  'lines',
  'say',
  'lot',
  'space',
  'left',
  'im',
  'pad',
  'limited',
  'design',
  'data',
  'effect',
  'oxide',
  'breakdown',
  'info',
  'pointers',
  'appreciated',
  'rs'],
 ['john',
  'bell',
  'adcom',
  'cheap',
  'products',
  'organization',
  'nasa',
  'langley',
  'research',
  'center',
  'lines',
  'nntp',
  'posting',
  'host',
  'hops',
  'larc',
  'nasa',
  'gov',
  'article',
  'mike',
  'donahue',
  'writes',
  'adcoms',
  'mobil',
  'going',
  'amps',
  'canb',
  'balanced',
  'inputs',
  'nice',
  'toy',
  'im',
  'afraid',
  'goig',
  'push',
  'amps',
  'beyound',
  'resonable',
  'price',
  'ranges',
  'especialy',
  'taking',
  'advantage',
  'balanced',
  'inputs',
  'requires',
  'rca',
  'balanced',
  'adapter',
  'umm',
  'sound',
  'reinforcement',
  'living',
  'used',
  'get',
  'direct',
  'boxes',
  'convert',
  'unbalanced',
  'jacks',
  'balanced',
  'xlrs',
  'little',
  'higher',
  'quality',
  'youll',
  'need',
  'two',
  'stereo',
  'signal',
  'course',
  'little',
  'adapter',
  'thingy',
  'radio',
  'sh',
  'convert',
  'rca',
  'total',
  'cost',
  'around',
  'also',
  'buy',
  'transformers',
  'quite',
  'bit',
  'less',
  'wire',
  'total',
  'cost',
  'get',
  'stuff',
  'pro',
  'music',
  'shop',
  'sells',
  'sound',
  'reinforcement',
  'gear',
  'benefit',
  'noise',
  'hear',
  'generated',
  'cables',
  'going',
  'component',
  'balanced',
  'inputs',
  'even',
  'run',
  'bad',
  'places',
  'like',
  'next',
  'power',
  'lines',
  'john',
  'bell',
  'nasa',
  'langley',
  'research',
  'center'],
 ['pallis',
  'dimitrios',
  'genoa',
  'blitz',
  'hits',
  'ni',
  'lines',
  'sorry',
  'genoa',
  'card',
  'nothing',
  'ati',
  'ultra',
  'plus',
  'mb',
  'cant',
  'plus',
  'ati',
  'costs',
  'us',
  'street',
  'price'],
 ['lorne',
  'johnson',
  'sun',
  'ic',
  'region',
  'se',
  'warriors',
  'tickets',
  'sale',
  'organization',
  'sun',
  'microsystems',
  'inc',
  'lines',
  'distribution',
  'ca',
  'reply',
  'nntp',
  'posting',
  'host',
  'normajean',
  'west',
  'sun',
  'com',
  'warriors',
  'tickets',
  'sale',
  'tickets',
  'cant',
  'last',
  'pair',
  'year',
  'section',
  'row',
  'seats',
  'day',
  'date',
  'opponent',
  'time',
  'wed',
  'sacremento',
  'price',
  'cost',
  'call',
  'email',
  'interested',
  'tickets',
  'lorne',
  'johnson'],
 ['clayton',
  'cramer',
  'new',
  'study',
  'gay',
  'percentage',
  'organization',
  'optilink',
  'corporation',
  'petaluma',
  'ca',
  'lines',
  'article',
  'dan',
  'writes',
  'dont',
  'forget',
  'culture',
  'sadly',
  'dont',
  'society',
  'look',
  'upon',
  'homosexuality',
  'normal',
  'well',
  'aware',
  'alot',
  'people',
  'condemn',
  'result',
  'gay',
  'population',
  'encouraged',
  'develop',
  'non',
  'promiscuous',
  'relationships',
  'fact',
  'many',
  'roadblocks',
  'put',
  'way',
  'committed',
  'relationships',
  'heterosexual',
  'able',
  'get',
  'married',
  'isnt',
  'roadblock',
  'permanent',
  'relationship',
  'lack',
  'marriage',
  'certificate',
  'doesnt',
  'force',
  'couple',
  'break',
  'excuse',
  'used',
  'homosexuals',
  'alternative',
  'ask',
  'much',
  'promiscuous',
  'straights',
  'dan',
  'clayton',
  'cramer',
  'uunet',
  'pyramid',
  'optilink',
  'cramer',
  'opinions',
  'mine',
  'relations',
  'people',
  'mutual',
  'consent'],
 ['syg',
  'ad',
  'conversion',
  'organization',
  'city',
  'college',
  'new',
  'york',
  'science',
  'computing',
  'facility',
  'lines',
  'working',
  'data',
  'acquisition',
  'analysis',
  'program',
  'collect',
  'data',
  'insect',
  'sensory',
  'organs',
  'another',
  'alternative',
  'sound',
  'input',
  'port',
  'really',
  'make',
  'due',
  'non',
  'existent',
  'dynamic',
  'range',
  'bit',
  'converter',
  'probably',
  'dubious',
  'linearity',
  'monotonicity',
  'perhaps',
  'ac',
  'coupled',
  'well',
  'would',
  'depend',
  'requirements',
  'posters',
  'data',
  'purposes',
  'resolution',
  'without',
  'calibration',
  'curve',
  'otherwise',
  'possibilities',
  'would',
  'get',
  'digital',
  'voltameter',
  'serial',
  'output',
  'connect',
  'serial',
  'port',
  'mac',
  'collect',
  'data',
  'communications',
  'program',
  'buy',
  'chip',
  'analog',
  'devices',
  'burr',
  'brown',
  'etc',
  'connect',
  'parallel',
  'serial',
  'converter',
  'serial',
  'port',
  'acquisition',
  'nah',
  'much',
  'soldering',
  'trouble',
  'shooting',
  'get',
  'board',
  'national',
  'instruments',
  'data',
  'translation',
  'omega',
  'etal',
  'finest',
  'solution',
  'possibly',
  'costly',
  'original',
  'poster',
  'signal',
  'large',
  'voltage',
  'divider',
  'two',
  'resistors',
  'cost',
  'cheap',
  'george'],
 ['edward',
  'keegan',
  'dec',
  'mt',
  'adaptec',
  'scsi',
  'comm',
  'conflict',
  'organization',
  'yale',
  'university',
  'computer',
  'science',
  'dept',
  'new',
  'ct',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'thumper',
  'cf',
  'cs',
  'yale',
  'dec',
  'nt',
  'dx',
  'adaptec',
  'scsi',
  'controller',
  'hard',
  'disk',
  'cd',
  'rom',
  'drive',
  'add',
  'comm',
  'ethernet',
  'card',
  'reboot',
  'system',
  'receive',
  'error',
  'message',
  'boot',
  'device',
  'cannot',
  'found',
  'pull',
  'comm',
  'card',
  'reboot',
  'everything',
  'fine',
  'ive',
  'moved',
  'controller',
  'comm',
  'card',
  'various',
  'slots',
  'different',
  'positions',
  'slot',
  'controller',
  'slot',
  'controller',
  'result',
  'dec',
  'hasnt',
  'responded',
  'problem',
  'yet',
  'help',
  'would',
  'appreciated',
  'edward',
  'keegan',
  'facility',
  'director',
  'mail',
  'yale',
  'university',
  'computer',
  'science',
  'department',
  'phone',
  'prospect',
  'street',
  'room',
  'fax',
  'new',
  'ct'],
 ['roger',
  'maynard',
  'tie',
  'breaker',
  'isles',
  'devils',
  'organization',
  'dept',
  'computer',
  'science',
  'laurentian',
  'university',
  'sudbury',
  'lines',
  'rex',
  'wang',
  'writes',
  'might',
  'great',
  'math',
  'tell',
  'two',
  'teams',
  'ahve',
  'points',
  'different',
  'record',
  'man',
  'retard',
  'cant',
  'believe',
  'people',
  'actually',
  'put',
  'win',
  'first',
  'tie',
  'breaker',
  'well',
  'dont',
  'see',
  'smileys',
  'trying',
  'figure',
  'poster',
  'dog',
  'wordprocessor',
  'couldnt',
  'neither',
  'smarter',
  'might',
  'great',
  'math',
  'cordially',
  'always',
  'many',
  'morons',
  'rm',
  'little',
  'time'],
 ['dan',
  'swartzendruber',
  'dopson',
  'pitches',
  'first',
  'shutout',
  'red',
  'sox',
  'win',
  'organization',
  'open',
  'software',
  'foundation',
  'research',
  'institute',
  'lines',
  'article',
  'writes',
  'jim',
  'mann',
  'writes',
  'deleted',
  'someone',
  'told',
  'game',
  'started',
  'cdt',
  'true',
  'right',
  'mind',
  'would',
  'go',
  'game',
  'monday',
  'keep',
  'mind',
  'massachussetts',
  'today',
  'patriots',
  'day',
  'state',
  'holiday',
  'think',
  'might',
  'floating',
  'holiday',
  'given',
  'marathon',
  'also',
  'happens',
  'day',
  'people',
  'dont',
  'go',
  'include',
  'std_disclaimer',
  'dan'],
 ['gregg',
  'jaeger',
  'inimitable',
  'rushdie',
  'organization',
  'boston',
  'university',
  'physics',
  'department',
  'lines',
  'article',
  'brett',
  'vickers',
  'writes',
  'article',
  'gregg',
  'jaeger',
  'writes',
  'well',
  'seeing',
  'muslim',
  'sort',
  'fatwa',
  'issued',
  'khomeini',
  'would',
  'relevant',
  'understand',
  'fear',
  'persecution',
  'share',
  'even',
  'muslim',
  'however',
  'rushdies',
  'behavior',
  'completely',
  'excusable',
  'fatwa',
  'issued',
  'khomeini',
  'relevant',
  'anyone',
  'doesnt',
  'live',
  'iran',
  'issued',
  'khomeini',
  'shouldnt',
  'relevant',
  'anyone',
  'issued',
  'honest',
  'learned',
  'scholar',
  'islam',
  'would',
  'relevant',
  'muslim',
  'would',
  'contrary',
  'islamic',
  'law',
  'muslims',
  'required',
  'respect',
  'decides',
  'whether',
  'rushdies',
  'behavior',
  'excusable',
  'anyone',
  'sufficiently',
  'well',
  'versed',
  'islamic',
  'law',
  'capable',
  'reasoning',
  'talking',
  'weak',
  'sense',
  'excuse',
  'depends',
  'sense',
  'excuse',
  'mind',
  'cares',
  'think',
  'inexcusable',
  'someone',
  'thinks',
  'opinion',
  'important',
  'obviously',
  'obviously',
  'dont',
  'care',
  'care',
  'dont',
  'care',
  'gregg'],
 ['hismanal',
  'et',
  'al',
  'side',
  'effects',
  'organization',
  'wright',
  'state',
  'university',
  'lines',
  'article',
  'steve',
  'dyer',
  'writes',
  'article',
  'writes',
  'someone',
  'tell',
  'whether',
  'following',
  'medications',
  'linked',
  'rapid',
  'excessive',
  'weight',
  'gain',
  'distorted',
  'sense',
  'taste',
  'smell',
  'hismanal',
  'azmacort',
  'topical',
  'steroid',
  'prevent',
  'asthma',
  'vancenase',
  'hismanal',
  'astemizole',
  'definitely',
  'linked',
  'weight',
  'gain',
  'really',
  'peculiar',
  'antihistamines',
  'effect',
  'even',
  'antihistamine',
  'like',
  'astemizole',
  'purportedly',
  'doesnt',
  'cross',
  'blood',
  'brain',
  'barrier',
  'tends',
  'cause',
  'drowsiness',
  'also',
  'gave',
  'lots',
  'problems',
  'joint',
  'muscle',
  'pain',
  'seemed',
  'trigger',
  'arthritis',
  'like',
  'problems',
  'sue',
  'steve',
  'dyer',
  'aka',
  'ima',
  'harvard',
  'rayssd',
  'linus',
  'spdcc',
  'dyer'],
 ['amanda',
  'walker',
  'secret',
  'algorithm',
  'clipper',
  'chip',
  'crypto',
  'key',
  'escrow',
  'organization',
  'intercon',
  'systems',
  'corporation',
  'herndon',
  'va',
  'usa',
  'lines',
  'distribution',
  'world',
  'reply',
  'amanda',
  'walker',
  'nntp',
  'posting',
  'host',
  'chaos',
  'intercon',
  'com',
  'keywords',
  'encryption',
  'wiretap',
  'clipper',
  'key',
  'escrow',
  'mykotronx',
  'newsreader',
  'intercon',
  'tcp',
  'connect',
  'ii',
  'graham',
  'toal',
  'writes',
  'try',
  'reading',
  'lines',
  'david',
  'strong',
  'hints',
  'theyre',
  'angling',
  'nren',
  'next',
  'honestly',
  'didnt',
  'see',
  'conceivable',
  'meaning',
  'applying',
  'particular',
  'technology',
  'computer',
  'network',
  'intend',
  'used',
  'exclusion',
  'means',
  'encryption',
  'disagree',
  'reason',
  'already',
  'standards',
  'place',
  'besides',
  'even',
  'restrict',
  'encryption',
  'nren',
  'cares',
  'internet',
  'commercial',
  'anyway',
  'nren',
  'geovernment',
  'university',
  'research',
  'read',
  'proposals',
  'data',
  'superhighway',
  'cray',
  'users',
  'anything',
  'internet',
  'amanda',
  'walker',
  'intercon',
  'systems',
  'corporation'],
 ['ethan',
  'solomita',
  'forcing',
  'window',
  'manager',
  'accept',
  'specific',
  'coordinates',
  'window',
  'organization',
  'columbia',
  'university',
  'department',
  'computer',
  'science',
  'lines',
  'hi',
  'im',
  'trying',
  'figure',
  'make',
  'window',
  'manager',
  'place',
  'window',
  'create',
  'window',
  'command',
  'tells',
  'regardless',
  'may',
  'think',
  'right',
  'application',
  'reason',
  'know',
  'better',
  'dont',
  'want',
  'set',
  'override',
  'redirect',
  'want',
  'embellishments',
  'window',
  'manager',
  'gives',
  'want',
  'wm',
  'accept',
  'choice',
  'location',
  'ive',
  'tried',
  'twm',
  'tvtwm',
  'mwm',
  'uncooperative',
  'thanks',
  'ethan'],
 ['james',
  'reed',
  'space',
  'news',
  'feb',
  'aw',
  'st',
  'nntp',
  'posting',
  'host',
  'doink',
  'reply',
  'organization',
  'intergraph',
  'electronics',
  'lines',
  'article',
  'henry',
  'spencer',
  'writes',
  'plutos',
  'atmosphere',
  'start',
  'freeze',
  'around',
  'increasing',
  'areas',
  'pluto',
  'charon',
  'permanent',
  'shadow',
  'make',
  'imaging',
  'geochemical',
  'mapping',
  'impossible',
  'shadow',
  'come',
  'theres',
  'nothing',
  'close',
  'enough',
  'block',
  'sunlight',
  'hitting',
  'wouldnt',
  'expect',
  'anything',
  'block',
  'view',
  'either',
  'missing',
  'jim'],
 ['sherlette',
  'dixon',
  'christianity',
  'atheism',
  'update',
  'organization',
  'bgsu',
  'lines',
  'first',
  'would',
  'like',
  'thank',
  'sent',
  'opinions',
  'matter',
  'hand',
  'advice',
  'taken',
  'heart',
  'directly',
  'used',
  'friend',
  'found',
  'matter',
  'quite',
  'accidently',
  'reading',
  'mail',
  'quit',
  'mail',
  'reader',
  'went',
  'business',
  'must',
  'trashed',
  'mail',
  'improperly',
  'got',
  'terminal',
  'next',
  'day',
  'saw',
  'old',
  'messages',
  'thought',
  'responses',
  'post',
  'placed',
  'alt',
  'atheism',
  'earlier',
  'week',
  'read',
  'realizing',
  'got',
  'message',
  'next',
  'day',
  'apologized',
  'reading',
  'mail',
  'said',
  'want',
  'appear',
  'snoop',
  'said',
  'would',
  'willing',
  'talk',
  'views',
  'didnt',
  'mind',
  'especially',
  'friend',
  'neither',
  'changed',
  'mind',
  'change',
  'mine',
  'point',
  'knows',
  'im',
  'coming',
  'know',
  'hes',
  'coming',
  'pray',
  'ive',
  'always',
  'done',
  'believe',
  'reason',
  'click',
  'instead',
  'bash',
  'heads',
  'see',
  'christianity',
  'tool',
  'revolution',
  'tool',
  'maintaining',
  'status',
  'quo',
  'quite',
  'blunt',
  'reason',
  'reject',
  'god',
  'fact',
  'african',
  'american',
  'female',
  'christianity',
  'religion',
  'used',
  'tools',
  'separate',
  'people',
  'true',
  'knowledge',
  'history',
  'wealth',
  'contributions',
  'world',
  'society',
  'kitchen',
  'heaven',
  'look',
  'forward',
  'slave',
  'days',
  'mentality',
  'second',
  'class',
  'status',
  'still',
  'exists',
  'today',
  'rejected',
  'aspect',
  'christianity',
  'estabished',
  'church',
  'much',
  'hypocricy',
  'exists',
  'behind',
  'walls',
  'gods',
  'house',
  'beginning',
  'images',
  'white',
  'jesus',
  'members',
  'praise',
  'god',
  'sunday',
  'raise',
  'hell',
  'beginning',
  'monday',
  'god',
  'willing',
  'find',
  'church',
  'home',
  'feel',
  'comfortable',
  'home',
  'dont',
  'see',
  'happening',
  'anytime',
  'soon',
  'sherlette'],
 ['mr',
  'bill',
  'please',
  'post',
  'organization',
  'cafe',
  'edge',
  'universe',
  'lines',
  'mike',
  'sixsmith',
  'writes',
  'mjs',
  'saying',
  'dont',
  'even',
  'need',
  'tell',
  'people',
  'mjs',
  'technique',
  'countersteering',
  'cos',
  'intuitively',
  'first',
  'mjs',
  'time',
  'try',
  'go',
  'round',
  'corner',
  'david',
  'karr',
  'writes',
  'karr',
  'sure',
  'remember',
  'get',
  'around',
  'corners',
  'without',
  'karr',
  'countersteering',
  'fact',
  'experienced',
  'rider',
  'course',
  'instructors',
  'karr',
  'claimed',
  'could',
  'get',
  'behind',
  'new',
  'rider',
  'make',
  'bike',
  'karr',
  'turn',
  'whichever',
  'side',
  'wanted',
  'shifting',
  'weight',
  'karr',
  'around',
  'even',
  'operator',
  'trying',
  'turn',
  'opposite',
  'karr',
  'direction',
  'admit',
  'ive',
  'never',
  'actually',
  'seen',
  'ive',
  'experienced',
  'back',
  'young',
  'er',
  'foolish',
  'first',
  'bike',
  'used',
  'track',
  'extremely',
  'true',
  'going',
  'highway',
  'would',
  'set',
  'throttle',
  'tension',
  'screw',
  'enough',
  'hold',
  'gas',
  'steady',
  'slide',
  'back',
  'seat',
  'lean',
  'backrest',
  'riding',
  'without',
  'hands',
  'needed',
  'turn',
  'id',
  'shift',
  'weight',
  'turn',
  'lo',
  'behold',
  'bike',
  'would',
  'turn',
  'sans',
  'touching',
  'bars',
  'granted',
  'wouldnt',
  'turn',
  'fast',
  'proves',
  'turn',
  'bike',
  'without',
  'countersteering',
  'least',
  'terms',
  'input',
  'bar',
  'normally',
  'associated',
  'countersteering',
  'ive',
  'said',
  'know',
  'many',
  'people',
  'think',
  'lean',
  'input',
  'theyre',
  'giving',
  'bar',
  'totally',
  'unconscious',
  'whereas',
  'may',
  'sufficient',
  'get',
  'road',
  'normal',
  'circumstances',
  'possibly',
  'years',
  'stretch',
  'cant',
  'think',
  'anybody',
  'whod',
  'argue',
  'preferable',
  'properly',
  'knowing',
  'manipulate',
  'bar',
  'turn',
  'regardless',
  'want',
  'call',
  'except',
  'maybe',
  'mr',
  'sixsmith',
  'mr',
  'bill',
  'bill',
  'leavitt',
  'cbx',
  'white',
  'lightning',
  'gs',
  'suzibago',
  'cj',
  'little',
  'honda',
  'lone',
  'star',
  'sick',
  'leave',
  'dod',
  'ama',
  'icoa',
  'nia',
  'impala',
  'convertible',
  'incredible',
  'hulk',
  'others',
  'hmmm',
  'thought',
  'bore',
  'stroke',
  'technique',
  'michael',
  'bain'],
 ['brian',
  'hughes',
  'help',
  'simm',
  'configuration',
  'reply',
  'organization',
  'dartmouth',
  'college',
  'hanover',
  'nh',
  'disclaimer',
  'personally',
  'really',
  'dont',
  'care',
  'think',
  'speak',
  'moderator',
  'rec',
  'arts',
  'comics',
  'info',
  'lines',
  'robert',
  'sprecher',
  'writes',
  'someone',
  'please',
  'help',
  'understand',
  'current',
  'situation',
  'regarding',
  'simms',
  'sure',
  'give',
  'shot',
  'iisi',
  'probably',
  'keep',
  'another',
  'years',
  'would',
  'like',
  'add',
  'memory',
  'ie',
  'go',
  'mb',
  'mb',
  'know',
  'need',
  'mb',
  'ns',
  'faster',
  'simms',
  'simms',
  'pin',
  'pin',
  'need',
  'get',
  'pin',
  'simms',
  'would',
  'simms',
  'get',
  'today',
  'usable',
  'years',
  'newer',
  'powerful',
  'system',
  'mean',
  'newer',
  'powerful',
  'mac',
  'system',
  'answer',
  'apple',
  'stated',
  'new',
  'macs',
  'pin',
  'simms',
  'longer',
  'pin',
  'simms',
  'hades'],
 ['john',
  'paraphrased',
  'lines',
  'end',
  'recent',
  'mon',
  'apr',
  'post',
  'alastair',
  'thomson',
  'offers',
  'following',
  'paraphrase',
  'john',
  'god',
  'loved',
  'world',
  'much',
  'gave',
  'us',
  'son',
  'die',
  'place',
  'may',
  'eternal',
  'life',
  'die',
  'place',
  'bothers',
  'since',
  'inserts',
  'verse',
  'doctrine',
  'found',
  'original',
  'moreover',
  'suspect',
  'poster',
  'intends',
  'affirm',
  'merely',
  'substitution',
  'forensic',
  'penal',
  'substitution',
  'maintain',
  'scriptures',
  'speaking',
  'atonement',
  'teach',
  'doctrine',
  'substitution',
  'one',
  'forensic',
  'substitution',
  'interested',
  'pursuing',
  'matter',
  'invited',
  'send',
  'essays',
  'genesis',
  'either',
  'thru',
  'question',
  'lead',
  'nth',
  'essay',
  'obtained',
  'sending',
  'message',
  'get',
  'gen',
  'ruff',
  'james',
  'kiefer',
  'theologian',
  'worth',
  'salt',
  'put',
  'anything',
  'wants',
  'say',
  'form',
  'commentary',
  'book',
  'genesis',
  'walter',
  'kaufman'],
 ['bryan',
  'whitsell',
  'accepting',
  'jesus',
  'heart',
  'reply',
  'organization',
  'computer',
  'science',
  'department',
  'rose',
  'hulman',
  'lines',
  'stuff',
  'deleted',
  'religion',
  'especially',
  'christianity',
  'nothing',
  'drug',
  'people',
  'drugs',
  'escape',
  'reality',
  'christians',
  'inject',
  'jeezus',
  'live',
  'high',
  'logic',
  'falty',
  'christianity',
  'drug',
  'die',
  'die',
  'would',
  'reluctant',
  'embrase',
  'drug',
  'alive',
  'enjoy',
  'also',
  'question',
  'overall',
  'motives',
  'posting',
  'article',
  'would',
  'waste',
  'presious',
  'fews',
  'seconds',
  'earth',
  'posting',
  'opinon',
  'group',
  'generally',
  'reject',
  'die',
  'never',
  'acepting',
  'christ',
  'savior',
  'hope',
  'fantastic',
  'life',
  'evver',
  'dreamed',
  'al',
  'heaven',
  'ever',
  'know',
  'christs',
  'love',
  'bryan'],
 ['joachim',
  'lous',
  'tiff',
  'philosophical',
  'significance',
  'organization',
  'kongsberg',
  'lines',
  'nntp',
  'posting',
  'host',
  'samson',
  'kih',
  'newsreader',
  'tin',
  'version',
  'pl',
  'wrote',
  'according',
  'tiff',
  'specification',
  'tiff',
  'version',
  'number',
  'bytes',
  'chosen',
  'deep',
  'philosophical',
  'significance',
  'first',
  'read',
  'rotfl',
  'finally',
  'philosphy',
  'technical',
  'spec',
  'still',
  'wondered',
  'makes',
  'significant',
  'last',
  'week',
  'read',
  'hitchhikers',
  'guide',
  'galaxy',
  'rotfl',
  'second',
  'time',
  'millions',
  'years',
  'calculation',
  'second',
  'best',
  'computer',
  'time',
  'reveals',
  'answer',
  'question',
  'life',
  'universe',
  'everything',
  'actually',
  'picked',
  'number',
  'yes',
  'anyone',
  'suggestions',
  'came',
  'dont',
  'know',
  'douglas',
  'adams',
  'took',
  'im',
  'pretty',
  'sure',
  'hes',
  'one',
  'launched',
  'guide',
  'since',
  'showing',
  'place',
  'one',
  'thing',
  'sure',
  'sheep',
  'creature',
  'earth',
  'back',
  'masking',
  'haaden',
  'ii',
  'exposure',
  'robert',
  'fripp'],
 ['rob',
  'strom',
  'soc',
  'motss',
  'et',
  'al',
  'princeton',
  'axes',
  'matching',
  'funds',
  'boy',
  'scouts',
  'distribution',
  'usa',
  'organization',
  'ibm',
  'research',
  'lines',
  'article',
  'bob',
  'mcgwier',
  'writes',
  'however',
  'hate',
  'economic',
  'terrorism',
  'political',
  'correctness',
  'worse',
  'hate',
  'policy',
  'effective',
  'approach',
  'stop',
  'donating',
  'organizating',
  'directly',
  'indirectly',
  'supports',
  'gay',
  'rights',
  'issues',
  'end',
  'boycott',
  'funding',
  'scouts',
  'somebody',
  'reconcile',
  'apparent',
  'contradiction',
  'rob',
  'strom',
  'ibm',
  'research',
  'saw',
  'mill',
  'river',
  'road',
  'box',
  'yorktown',
  'heights',
  'ny'],
 ['cochrane',
  'james',
  'shapleigh',
  'guns',
  'backcountry',
  'thanks',
  'organization',
  'georgia',
  'institute',
  'technology',
  'lines',
  'article',
  'dania',
  'egedi',
  'writes',
  'article',
  'andy',
  'freeman',
  'writes',
  'article',
  'kevin',
  'geraghty',
  'writes',
  'wrong',
  'whole',
  'guns',
  'protection',
  'mindset',
  'ignores',
  'youre',
  'threat',
  'youre',
  'affected',
  'aha',
  'thats',
  'part',
  'makes',
  'nervous',
  'gets',
  'decide',
  'threat',
  'based',
  'appearance',
  'would',
  'someone',
  'feel',
  'threatened',
  'actions',
  'determine',
  'whether',
  'someone',
  'presents',
  'threat',
  'dont',
  'carry',
  'gun',
  'much',
  'people',
  'cause',
  'tend',
  'fade',
  'due',
  'several',
  'encounters',
  'formerly',
  'domestic',
  'dogs',
  'critters',
  'aint',
  'scared',
  'folks',
  'get',
  'aggressive',
  'staying',
  'saw',
  'someone',
  'sitting',
  'cleaning',
  'gun',
  'softly',
  'backed',
  'away',
  'hiked',
  'another',
  'miles',
  'get',
  'ill',
  'freely',
  'admit',
  'im',
  'afraid',
  'guns',
  'im',
  'afraid',
  'people',
  'bring',
  'backcountry',
  'id',
  'count',
  'fear',
  'guns',
  'somebody',
  'sense',
  'keep',
  'weapons',
  'maintained',
  'isnt',
  'likely',
  'present',
  'threat',
  'army',
  'taught',
  'clean',
  'weapons',
  'daily',
  'since',
  'usually',
  'need',
  'regardless',
  'whether',
  'theyve',
  'used',
  'youd',
  'amazed',
  'sweaty',
  'holster',
  'get',
  'much',
  'trail',
  'dust',
  'get',
  'guess',
  'youd',
  'scared',
  'former',
  'explorer',
  'post',
  'seems',
  'advisors',
  'national',
  'guard',
  'special',
  'forces',
  'grunts',
  'considered',
  'heresy',
  'woods',
  'without',
  'weapon',
  'course',
  'usually',
  'wouldnt',
  'notice',
  'em',
  'tended',
  'avoid',
  'public',
  'scrutiny',
  'course',
  'may',
  'way',
  'solve',
  'solitude',
  'problem',
  'carry',
  'gun',
  'display',
  'prominently',
  'one',
  'probably',
  'wont',
  'see',
  'hikers',
  'hiding',
  'woods',
  'dania',
  'mm',
  'goes',
  'hip',
  'holster',
  'mixed',
  'magazine',
  'pouches',
  'hold',
  'lotsa',
  'stuff',
  'canteens',
  'knives',
  'compasses',
  'easy',
  'notice',
  'chance',
  'decide',
  'visible',
  'prefer',
  'since',
  'walking',
  'quietly',
  'away',
  'active',
  'areas',
  'increases',
  'number',
  'non',
  'human',
  'type',
  'critters',
  'see',
  'james',
  'james',
  'cochrane',
  'danger',
  'doubt',
  'run',
  'space',
  'circles',
  'scream',
  'shout',
  'rent'],
 ['christopher',
  'taylor',
  'melido',
  'due',
  'back',
  'nntp',
  'posting',
  'host',
  'camelot',
  'bradley',
  'organization',
  'bradley',
  'university',
  'distribution',
  'na',
  'lines',
  'yankees',
  'planning',
  'activating',
  'melido',
  'perez',
  'days',
  'dl',
  'today',
  'bringing',
  'back',
  'weekend',
  'thanks',
  'info'],
 ['jody',
  'levine',
  'insect',
  'impacts',
  'organization',
  'ontario',
  'hydro',
  'research',
  'division',
  'lines',
  'feel',
  'childish',
  'article',
  'writes',
  'article',
  'jody',
  'levine',
  'writes',
  'helmetless',
  'um',
  'way',
  'people',
  'horseback',
  'fast',
  'would',
  'probably',
  'enjoy',
  'eating',
  'bugs',
  'anyway',
  'every',
  'bit',
  'fast',
  'dirtbike',
  'right',
  'terrain',
  'eat',
  'flies',
  'thank',
  'mentioned',
  'dirtbikes',
  'talking',
  'highway',
  'speeds',
  'go',
  'mph',
  'dirtbike',
  'feel',
  'free',
  'contribute',
  'jeeps',
  'youre',
  'supposed',
  'keep',
  'windscreen',
  'go',
  'wouldnt',
  'jeep',
  'didnt',
  'friend',
  'mine',
  'bought',
  'one',
  'warning',
  'stickers',
  'little',
  'wheelers',
  'guess',
  'thats',
  'becuase',
  'big',
  'wheeler',
  'anyway',
  'written',
  'ten',
  'places',
  'windshield',
  'remain',
  'times',
  'looks',
  'like',
  'theyve',
  'made',
  'pain',
  'put',
  'anyway',
  'says',
  'fair',
  'admit',
  'would',
  'similar',
  'matter',
  'drive',
  'windscreenless',
  'jeep',
  'highway',
  'bikers',
  'may',
  'participate',
  'discussion',
  'theyre',
  'probably',
  'far',
  'maintain',
  'topic',
  'interest',
  'primarily',
  'bikers',
  'snow',
  'skis',
  'bugs',
  'poeple',
  'go',
  'fast',
  'wear',
  'goggles',
  'helmetless',
  'motorcyclists',
  'notice',
  'ed',
  'picked',
  'insignificant',
  'lower',
  'case',
  'part',
  'two',
  'parts',
  'statement',
  'besides',
  'around',
  'quite',
  'rare',
  'see',
  'bikers',
  'wear',
  'goggles',
  'street',
  'either',
  'full',
  'face',
  'shield',
  'open',
  'face',
  'either',
  'nothing',
  'aviator',
  'sunglasses',
  'experience',
  'bicycling',
  'contact',
  'lenses',
  'sunglasses',
  'says',
  'non',
  'wraparound',
  'sunglasses',
  'almost',
  'nothing',
  'keep',
  'crap',
  'ones',
  'eyes',
  'question',
  'still',
  'stands',
  'cruiser',
  'riders',
  'negligible',
  'helmets',
  'stand',
  'highway',
  'mph',
  'buggy',
  'summer',
  'evenings',
  'helmetless',
  'goggleless',
  'ok',
  'ok',
  'fine',
  'whatever',
  'say',
  'lets',
  'make',
  'attmept',
  'stick',
  'point',
  'ive',
  'road',
  'stop',
  'every',
  'half',
  'hour',
  'clean',
  'shield',
  'many',
  'bugs',
  'jacket',
  'would',
  'blood',
  'splattered',
  'mess',
  'id',
  'see',
  'guys',
  'shorty',
  'helmets',
  'goggles',
  'long',
  'beards',
  'tight',
  'shirts',
  'merrily',
  'cruising',
  'along',
  'bikes',
  'windscreens',
  'lets',
  'really',
  'specific',
  'time',
  'even',
  'ed',
  'understands',
  'anbody',
  'think',
  'splattering',
  'bugs',
  'ones',
  'face',
  'fun',
  'reasons',
  'image',
  'laziness',
  'make',
  'point',
  'freedom',
  'bug',
  'splattering',
  'ive',
  'bike',
  'like',
  'jody',
  'levine',
  'dod',
  'kv',
  'got',
  'pf',
  'ride',
  'toronto',
  'ontario',
  'canada'],
 ['michael',
  'sale',
  'track',
  'recorder',
  'originator',
  'organization',
  'amoco',
  'production',
  'company',
  'tulsa',
  'research',
  'lines',
  'fostex',
  'track',
  'recorder',
  'sale',
  'excellent',
  'condition',
  'includes',
  'dolby',
  'noise',
  'reduction',
  'sub',
  'mixing',
  'inputs',
  'uses',
  'normal',
  'cassettes',
  'interested',
  'make',
  'offer',
  'please',
  'respond',
  'thanks',
  'mike'],
 ['douglas',
  'fitts',
  'ra',
  'treatment',
  'question',
  'organization',
  'university',
  'washington',
  'lines',
  'nntp',
  'posting',
  'host',
  'carson',
  'washington',
  'julia',
  'eulenberg',
  'writes',
  'im',
  'assuming',
  'mean',
  'rheumatoid',
  'arthritis',
  'ra',
  'ive',
  'never',
  'heard',
  'cold',
  'treatment',
  'mentioned',
  'cant',
  'imagine',
  'would',
  'work',
  'since',
  'us',
  'rh',
  'arthr',
  'ra',
  'seem',
  'problems',
  'cold',
  'weather',
  'warm',
  'weather',
  'would',
  'interested',
  'hear',
  'obviously',
  'talking',
  'research',
  'assistants',
  'favor',
  'high',
  'protein',
  'low',
  'fat',
  'diet',
  'barely',
  'adequate',
  'salary',
  'fixed',
  'time',
  'schedule',
  'four',
  'hours',
  'sleep',
  'night',
  'continuous',
  'infusion',
  'latte',
  'unpredictable',
  'praise',
  'mixed',
  'randomly',
  'anxiety',
  'provoking',
  'everpresent',
  'glances',
  'lowered',
  'eyebrows',
  'unrealistic',
  'promises',
  'rapid',
  'publication',
  'every',
  'three',
  'months',
  'dinner',
  'consisting',
  'nothing',
  'microbrewery',
  'ale',
  'free',
  'pretzels',
  'actually',
  'mine',
  'hails',
  'san',
  'diego',
  'indeed',
  'problems',
  'seattle',
  'cold',
  'weather',
  'warm',
  'doug',
  'fitts'],
 ['steven',
  'gaudino',
  'dbase',
  'iv',
  'sale',
  'price',
  'reduced',
  'nntp',
  'posting',
  'host',
  'bach',
  'udel',
  'organization',
  'university',
  'delaware',
  'distribution',
  'usa',
  'lines',
  'dbase',
  'iv',
  'sale',
  'inch',
  'disks',
  'registration',
  'included',
  'upgrade',
  'want',
  'manuals',
  'still',
  'shrinkwrapped',
  'disks',
  'opened',
  'verify',
  'work',
  'asking',
  'best',
  'offer'],
 ['serdar',
  'argic',
  'cold',
  'blooded',
  'slaughter',
  'muslim',
  'women',
  'children',
  'armenians',
  'reply',
  'serdar',
  'argic',
  'distribution',
  'world',
  'lines',
  'article',
  'charles',
  'lasner',
  'writes',
  'hmm',
  'maybe',
  'ill',
  'go',
  'rent',
  'midnight',
  'express',
  'tonight',
  'havent',
  'seen',
  'scene',
  'awhile',
  'savor',
  'moment',
  'well',
  'change',
  'fact',
  'period',
  'fascist',
  'soviet',
  'armenian',
  'government',
  'ordered',
  'incited',
  'assisted',
  'participated',
  'genocide',
  'million',
  'muslim',
  'people',
  'race',
  'religion',
  'national',
  'origin',
  'past',
  'turkiye',
  'today',
  'azerbaijan',
  'utopic',
  'idiotic',
  'causes',
  'armenians',
  'brought',
  'havoc',
  'neighbors',
  'short',
  'sighted',
  'misplaced',
  'nationalistic',
  'fervor',
  'wrong',
  'agenda',
  'anachronistic',
  'methods',
  'armenians',
  'continue',
  'become',
  'pernicious',
  'region',
  'usual',
  'treated',
  'accordingly',
  'neighbors',
  'nagorno',
  'karabag',
  'mountainous',
  'enclave',
  'lies',
  'completely',
  'within',
  'azerbaijan',
  'border',
  'history',
  'whatsoever',
  'connected',
  'soviet',
  'armenia',
  'besides',
  'geographical',
  'aspect',
  'nagorno',
  'karabag',
  'historic',
  'homeland',
  'cradle',
  'artistic',
  'literary',
  'heritage',
  'azerbaijan',
  'renders',
  'armenian',
  'claims',
  'preposterous',
  'even',
  'lunatic',
  'still',
  'demand',
  'soviet',
  'armenian',
  'government',
  'heirs',
  'armenian',
  'dictatorship',
  'recognize',
  'turkish',
  'genocide',
  'soviet',
  'armenia',
  'return',
  'historic',
  'homeland',
  'turkish',
  'kurdish',
  'people',
  'soviet',
  'armenian',
  'government',
  'make',
  'material',
  'reparations',
  'heinous',
  'unspeakable',
  'crime',
  'victims',
  'turkish',
  'genocide',
  'world',
  'governments',
  'officially',
  'recognize',
  'turkish',
  'genocide',
  'turkish',
  'territorial',
  'rights',
  'refuse',
  'succumb',
  'armenian',
  'political',
  'pressure',
  'awareness',
  'turkish',
  'people',
  'necessity',
  'solidarity',
  'efforts',
  'pursue',
  'turkish',
  'cause',
  'seen',
  'victims',
  'first',
  'genocide',
  'th',
  'century',
  'positive',
  'step',
  'would',
  'source',
  'sunday',
  'times',
  'march',
  'british',
  'weekly',
  'written',
  'thomas',
  'goltz',
  'agdam',
  'azerbaijan',
  'armenian',
  'soldiers',
  'massacre',
  'hundreds',
  'fleeing',
  'families',
  'spiralling',
  'violence',
  'gripping',
  'outer',
  'republics',
  'former',
  'soviet',
  'union',
  'gained',
  'new',
  'impetus',
  'yesterday',
  'cold',
  'blooded',
  'slaughter',
  'hundreds',
  'women',
  'children',
  'war',
  'racked',
  'nagorno',
  'karabakh',
  'survivors',
  'reported',
  'armenian',
  'soldiers',
  'shot',
  'bayoneted',
  'azeris',
  'many',
  'women',
  'children',
  'fleeing',
  'attack',
  'town',
  'hundreds',
  'possibly',
  'thousands',
  'missing',
  'feared',
  'dead',
  'attackers',
  'killed',
  'soldiers',
  'volunteers',
  'defending',
  'women',
  'children',
  'turned',
  'guns',
  'terrified',
  'refugees',
  'survivors',
  'later',
  'described',
  'happened',
  'thats',
  'real',
  'slaughter',
  'began',
  'said',
  'azer',
  'hajiev',
  'one',
  'three',
  'soldiers',
  'survive',
  'armenians',
  'shot',
  'shot',
  'came',
  'started',
  'carving',
  'people',
  'bayonets',
  'knives',
  'shooting',
  'shooting',
  'shooting',
  'echoed',
  'rasia',
  'aslanova',
  'arrived',
  'agdam',
  'women',
  'children',
  'made',
  'way',
  'armenian',
  'lines',
  'said',
  'husband',
  'kayun',
  'son',
  'law',
  'killed',
  'front',
  'daughter',
  'still',
  'missing',
  'one',
  'boy',
  'arrived',
  'agdam',
  'ear',
  'sliced',
  'survivors',
  'said',
  'others',
  'fled',
  'separately',
  'still',
  'missing',
  'gruelling',
  'terrain',
  'many',
  'could',
  'perish',
  'wounds',
  'cold',
  'late',
  'yesterday',
  'deaths',
  'registered',
  'morgue',
  'agdams',
  'morgue',
  'bodies',
  'buried',
  'cemetery',
  'seven',
  'corpses',
  'saw',
  'awaiting',
  'burial',
  'two',
  'children',
  'three',
  'women',
  'one',
  'shot',
  'chest',
  'point',
  'blank',
  'range',
  'agdam',
  'hospital',
  'scene',
  'carnage',
  'terror',
  'doctors',
  'said',
  'patients',
  'escaped',
  'slaughter',
  'bullet',
  'injuries',
  'deep',
  'stab',
  'wounds',
  'safe',
  'agdam',
  'friday',
  'night',
  'rockets',
  'fell',
  'city',
  'population',
  'destroying',
  'several',
  'buildings',
  'killing',
  'one',
  'person',
  'serdar',
  'argic',
  'closed',
  'roads',
  'mountain',
  'passes',
  'might',
  'serve',
  'ways',
  'escape',
  'turks',
  'proceeded',
  'work',
  'extermination',
  'ohanus',
  'appressian',
  'soviet',
  'armenia',
  'today',
  'longer',
  'exists',
  'single',
  'turkish',
  'soul',
  'sahak',
  'melkonian'],
 ['henry',
  'spencer',
  'moonbase',
  'race',
  'organization',
  'toronto',
  'zoology',
  'lines',
  'article',
  'writes',
  'youd',
  'need',
  'launch',
  'hlvs',
  'send',
  'large',
  'amounts',
  'stuff',
  'know',
  'private',
  'titan',
  'pad',
  'youd',
  'need',
  'launch',
  'hlvs',
  'send',
  'large',
  'amounts',
  'stuff',
  'assume',
  'new',
  'launcher',
  'development',
  'assume',
  'new',
  'launcher',
  'development',
  'lower',
  'costs',
  'specific',
  'objective',
  'probably',
  'dont',
  'want',
  'build',
  'something',
  'hlv',
  'sized',
  'anyway',
  'nobody',
  'interested',
  'launching',
  'things',
  'cheaply',
  'buy',
  'titans',
  'doesnt',
  'take',
  'many',
  'titan',
  'pricetags',
  'pay',
  'laser',
  'launcher',
  'large',
  'gas',
  'gun',
  'development',
  'program',
  'big',
  'dumb',
  'booster',
  'would',
  'far',
  'better',
  'cost',
  'effectiveness'],
 ['brian',
  'cash',
  'free',
  'moral',
  'agency',
  'nntp',
  'posting',
  'host',
  'crchh',
  'organization',
  'bnr',
  'inc',
  'lines',
  'article',
  'ron',
  'house',
  'writes',
  'kevin',
  'marshall',
  'writes',
  'tammy',
  'healy',
  'writes',
  'might',
  'think',
  'oh',
  'yeah',
  'didnt',
  'god',
  'destroy',
  'bud',
  'got',
  'point',
  'millions',
  'ages',
  'suffering',
  'along',
  'life',
  'answer',
  'know',
  'satan',
  'made',
  'claim',
  'way',
  'better',
  'gods',
  'god',
  'allowing',
  'satan',
  'chance',
  'prove',
  'way',
  'better',
  'gods',
  'know',
  'brought',
  'come',
  'god',
  'allowing',
  'wishes',
  'one',
  'individual',
  'supercede',
  'well',
  'billions',
  'seriously',
  'doubt',
  'read',
  'bible',
  'twice',
  'never',
  'got',
  'impression',
  'god',
  'satan',
  'working',
  'sort',
  'cooperative',
  'arrangement',
  'read',
  'book',
  'job',
  'oh',
  'bet',
  'brian'],
 ['jim',
  'mann',
  'rickey',
  'henderson',
  'article',
  'transfer',
  'psbdn',
  'lru',
  'reply',
  'distribution',
  'usa',
  'organization',
  'stratus',
  'computer',
  'inc',
  'marlboro',
  'lines',
  'nntp',
  'posting',
  'host',
  'gondolin',
  'pubs',
  'stratus',
  'com',
  'article',
  'jiann',
  'ming',
  'su',
  'writes',
  'article',
  'todd',
  'rader',
  'writes',
  'stay',
  'school',
  'lot',
  'learn',
  'learn',
  'know',
  'million',
  'dollars',
  'lot',
  'money',
  'know',
  'rickey',
  'henderson',
  'doesnt',
  'career',
  'baseball',
  'know',
  'didnt',
  'baseball',
  'wouldnt',
  'making',
  'near',
  'money',
  'michael',
  'jackson',
  'jack',
  'nicholson',
  'bill',
  'cosby',
  'wouldnt',
  'making',
  'near',
  'much',
  'money',
  'werent',
  'entertainers',
  'whats',
  'point',
  'dont',
  'understand',
  'athlete',
  'plays',
  'sport',
  'living',
  'millions',
  'dollars',
  'say',
  'paid',
  'enough',
  'nobody',
  'sign',
  'asking',
  'price',
  'one',
  'hurting',
  'still',
  'win',
  'without',
  'cant',
  'usually',
  'take',
  'away',
  'one',
  'teams',
  'best',
  'players',
  'still',
  'expect',
  'win',
  'think',
  'pirates',
  'continue',
  'win',
  'without',
  'barry',
  'bonds',
  'remeber',
  'many',
  'athletes',
  'nothing',
  'athletic',
  'ability',
  'nothing',
  'getting',
  'paid',
  'much',
  'hard',
  'working',
  'citizens',
  'complaining',
  'enough',
  'pay',
  'jack',
  'nicholson',
  'gets',
  'paid',
  'much',
  'hard',
  'working',
  'citizens',
  'much',
  'rickey',
  'henderson',
  'matter',
  'dont',
  'problem',
  'making',
  'millions',
  'problem',
  'say',
  'arent',
  'paid',
  'enough',
  'already',
  'get',
  'million',
  'also',
  'numbers',
  'get',
  'worse',
  'reason',
  'latter',
  'often',
  'happens',
  'many',
  'folks',
  'start',
  'making',
  'real',
  'big',
  'salaries',
  'late',
  'career',
  'decline',
  'exceptions',
  'course',
  'dave',
  'parker',
  'fell',
  'apart',
  'making',
  'first',
  'million',
  'put',
  'million',
  'nose',
  'jim',
  'mann',
  'stratus',
  'computer'],
 ['seth',
  'wandersman',
  'oak',
  'driver',
  'needed',
  'studio',
  'reply',
  'seth',
  'wandersman',
  'lines',
  'nntp',
  'posting',
  'host',
  'north',
  'acpub',
  'duke',
  'hi',
  'im',
  'looking',
  'studio',
  'driver',
  'oak',
  'card',
  'ram',
  'would',
  'greatly',
  'mean',
  'appreciated',
  'maybe',
  'gotten',
  'well',
  'know',
  'card',
  'thanks'],
 ['change',
  'licensed',
  'data',
  'windows',
  'organization',
  'marquette',
  'university',
  'computer',
  'services',
  'lines',
  'reply',
  'nntp',
  'posting',
  'host',
  'vmsa',
  'csd',
  'mu',
  'ok',
  'info',
  'licensing',
  'kept',
  'file',
  'organization',
  'box',
  'put',
  'address',
  'moved',
  'wanted',
  'change',
  'couldnt',
  'find',
  'could',
  'find',
  'name',
  'organization',
  'robert',
  'dubinski',
  'aliases',
  'include',
  'robb',
  'regal',
  'sir',
  'mr',
  'marquette',
  'university',
  'math',
  'computer',
  'science',
  'double',
  'major',
  'internet',
  'address',
  'dubinski',
  'vms',
  'csd',
  'mu',
  'milwaukee',
  'wi'],
 ['homosexuality',
  'issues',
  'christiani',
  'organization',
  'laurentian',
  'university',
  'lines',
  'one',
  'thinks',
  'homosexuality',
  'christianity',
  'compatible',
  'ck',
  'romans',
  'corinthians',
  'timothy',
  'jude',
  'ii',
  'peter',
  'gen',
  'lev',
  'name',
  'verses',
  'pertain',
  'homosexuality',
  'christs',
  'love',
  'bryan',
  'whitsell',
  'waiting',
  'think',
  'question',
  'rephrased',
  'many',
  'verses',
  'bible',
  'condem',
  'homosexuality',
  'beliefs',
  'shoved',
  'throats',
  'homosexuals',
  'long',
  'time',
  'well',
  'meaning',
  'christians',
  'question',
  'interpret',
  'verses',
  'discussion',
  'issue',
  'issue',
  'requires',
  'proof',
  'case',
  'well',
  'disproof',
  'opposing',
  'view',
  'already',
  'familiar',
  'verses',
  'many',
  'proven',
  'condem',
  'homosexual',
  'behaviour',
  'must',
  'establish',
  'reasons',
  'believing',
  'true',
  'based',
  'interpretation',
  'scriptures',
  'given',
  'someone',
  'come',
  'grips',
  'todd'],
 ['ron',
  'roth',
  'hypoglycemia',
  'gated',
  'usenet',
  'rosemail',
  'gateway',
  'organization',
  'rose',
  'media',
  'inc',
  'toronto',
  'ontario',
  'lines',
  'anthony',
  'anello',
  'writes',
  'anyone',
  'tell',
  'bloodcount',
  'diagnosed',
  'hypoglycemic',
  'dangerous',
  'indicates',
  'possible',
  'pancreatic',
  'problem',
  'one',
  'dr',
  'says',
  'specialty',
  'says',
  'first',
  'negligent',
  'another',
  'blood',
  'test',
  'done',
  'also',
  'good',
  'diet',
  'worked',
  'hypo',
  'glycemic',
  'tia',
  'anthony',
  'anello',
  'fermilab',
  'batavia',
  'illinois',
  'hypoglycemia',
  'confirmed',
  'proper',
  'channels',
  'might',
  'consider',
  'ther',
  'following',
  'chelated',
  'manganese',
  'mg',
  'day',
  'chelated',
  'chromium',
  'mcg',
  'day',
  'increase',
  'protein',
  'foods',
  'supplements',
  'avoid',
  'supplements',
  'foods',
  'high',
  'potassium',
  'calcium',
  'zinc',
  'avoid',
  'vit',
  'supplements',
  'excess',
  'mg',
  'avoid',
  'honey',
  'foods',
  'high',
  'simple',
  'sugars',
  'enjoy',
  'breads',
  'cereals',
  'grains',
  'discuss',
  'health',
  'practitioner',
  'compatibility',
  'body',
  'chemistry',
  'safety',
  'ron',
  'rosereader',
  'beer',
  'breakfast',
  'anymore',
  'rosemail',
  'usenet',
  'rose',
  'media',
  'hamilton'],
 ['kevin',
  'todd',
  'schmidt',
  'nl',
  'opi',
  'first',
  'week',
  'organization',
  'california',
  'institute',
  'technology',
  'pasadena',
  'lines',
  'nntp',
  'posting',
  'host',
  'sandman',
  'caltech',
  'opi',
  'offensive',
  'production',
  'index',
  'nl',
  'players',
  'least',
  'bats',
  'early',
  'season',
  'high',
  'numbers',
  'barry',
  'bonds',
  'finished',
  'last',
  'season',
  'welcome',
  'comments',
  'suggestions',
  'kevin',
  'league',
  'opi',
  'league',
  'ba',
  'league',
  'slg',
  'league',
  'oba',
  'rank',
  'player',
  'opi',
  'ba',
  'slg',
  'oba',
  'phi',
  'daulton',
  'phi',
  'kruk',
  'cub',
  'grace',
  'cub',
  'may',
  'col',
  'boston',
  'pit',
  'bell',
  'col',
  'galarraga',
  'stl',
  'pena',
  'stl',
  'zeile',
  'cin',
  'mitchell',
  'mon',
  'lansing',
  'pit',
  'slaught',
  'mon',
  'vanderwal',
  'nym',
  'tfernandez',
  'snf',
  'martinez',
  'hou',
  'bagwell',
  'col',
  'hayes',
  'col',
  'eyoung',
  'mon',
  'alou',
  'cin',
  'milligan',
  'phi',
  'dykstra',
  'snf',
  'bonds',
  'flo',
  'conine',
  'snd',
  'plantier',
  'hou',
  'gonzalez',
  'hou',
  'anthony',
  'col',
  'cole',
  'atl',
  'sanders',
  'mon',
  'berry',
  'cub',
  'sosa',
  'stl',
  'jefferies',
  'pit',
  'vanslyke',
  'montreal',
  'los',
  'butler',
  'mon',
  'grissom',
  'pit',
  'king',
  'snd',
  'gwynn',
  'pit',
  'merced',
  'nym',
  'murray',
  'stl',
  'gilkey',
  'nym',
  'bonilla',
  'snd',
  'walters',
  'cub',
  'wilson',
  'flo',
  'weiss',
  'philadelphia',
  'atl',
  'justice',
  'pittsburgh',
  'stl',
  'osmith',
  'phi',
  'incaviglia',
  'pit',
  'young',
  'stlouis',
  'colorado',
  'nym',
  'hundley',
  'nym',
  'orsulak',
  'snf',
  'benjamin',
  'atl',
  'gant',
  'nymets',
  'houston',
  'mon',
  'pitcher',
  'phi',
  'morandini',
  'hou',
  'cedeno',
  'cin',
  'sabo',
  'snf',
  'manwaring',
  'snfrancisco',
  'atl',
  'blauser',
  'snf',
  'thompson',
  'hou',
  'caminiti',
  'flo',
  'barberie',
  'mon',
  'cordero',
  'snd',
  'sheffield',
  'los',
  'karros',
  'snf',
  'williams',
  'snd',
  'mcgriff',
  'flo',
  'destrade',
  'col',
  'girardi',
  'atl',
  'bream',
  'mon',
  'wood',
  'flo',
  'santiago',
  'phi',
  'thompson',
  'snf',
  'clayton',
  'los',
  'piazza',
  'snd',
  'bell',
  'los',
  'wallach',
  'cin',
  'larkin',
  'pit',
  'garcia',
  'cincinnati',
  'nym',
  'coleman',
  'nym',
  'kent',
  'stl',
  'whiten',
  'cin',
  'roberts',
  'cubs',
  'snf',
  'lewis',
  'hou',
  'finley',
  'col',
  'clark',
  'los',
  'pitcher',
  'sndiego',
  'atl',
  'lemke',
  'losangeles',
  'snf',
  'mcgee',
  'atlanta',
  'cin',
  'sanders',
  'cin',
  'oliver',
  'snd',
  'gardner',
  'los',
  'reed',
  'phi',
  'hollins',
  'florida',
  'los',
  'davis',
  'atl',
  'pendleton',
  'snf',
  'clark',
  'los',
  'strawberry',
  'hou',
  'biggio',
  'phi',
  'bell',
  'flo',
  'magadan',
  'stl',
  'pagnozzi',
  'pit',
  'martin',
  'col',
  'bichette',
  'hou',
  'taubensee',
  'mon',
  'bolick',
  'flo',
  'pose',
  'mon',
  'cianfrocco',
  'nym',
  'johnson',
  'cin',
  'kelly',
  'atl',
  'nixon',
  'nym',
  'pitcher',
  'pit',
  'pitcher',
  'cub',
  'buechle',
  'stl',
  'lankford',
  'atl',
  'olson',
  'cub',
  'vizcaino',
  'cub',
  'sanchez',
  'phi',
  'duncan',
  'los',
  'offerman',
  'snf',
  'pitcher',
  'mon',
  'laker',
  'phi',
  'chamberlain',
  'snd',
  'pitcher',
  'atl',
  'pitcher',
  'phi',
  'pitcher',
  'cub',
  'maldonado',
  'flo',
  'felix',
  'cin',
  'espy',
  'stl',
  'jordan',
  'atl',
  'berryhill',
  'cub',
  'pitcher',
  'snd',
  'shipley',
  'stl',
  'pitcher',
  'hou',
  'pitcher',
  'col',
  'benavides',
  'cin',
  'pitcher',
  'cub',
  'wilkins',
  'flo',
  'pitcher',
  'col',
  'pitcher',
  'hr',
  'bb',
  'sb',
  'cs',
  'opi',
  'ab',
  'ba',
  'ab',
  'slg',
  'hr',
  'ab',
  'oba',
  'bb',
  'ab',
  'bb',
  'jet',
  'propulsion',
  'laboratory',
  'oak',
  'grove',
  'dr',
  'pasadena',
  'ca'],
 ['steve',
  'chesney',
  'diamond',
  'ss',
  'reply',
  'organization',
  'metaphase',
  'technology',
  'inc',
  'lines',
  'article',
  'dale',
  'pischke',
  'writes',
  'article',
  'dave',
  'laudicina',
  'writes',
  'anyone',
  'experienced',
  'faint',
  'shadow',
  'resolutions',
  'using',
  'card',
  'windows',
  'replaced',
  'card',
  'waiting',
  'latest',
  'drivers',
  'also',
  'experienced',
  'general',
  'protection',
  'fault',
  'errors',
  'wspdpsf',
  'drv',
  'winword',
  'tools',
  'option',
  'menu',
  'winfax',
  'setup',
  'exact',
  'failure',
  'word',
  'windows',
  'quick',
  'call',
  'microsoft',
  'indicated',
  'problem',
  'drivers',
  'need',
  'call',
  'diamond',
  'get',
  'new',
  'drivers',
  'think',
  'version',
  'fixes',
  'problem',
  'may',
  'later',
  'versions',
  'im',
  'unaware',
  'version',
  'drivers',
  'current',
  'steve',
  'chesney',
  'metaphase',
  'technology',
  'inc',
  'voice',
  'north',
  'lexington',
  'avenue',
  'fax',
  'arden',
  'hills',
  'mn'],
 ['jonathan',
  'polito',
  'stolen',
  'aarghhhh',
  'organization',
  'encore',
  'computer',
  'corp',
  'reply',
  'message',
  'thu',
  'apr',
  'gmt',
  'nntp',
  'posting',
  'host',
  'sysgem',
  'encore',
  'com',
  'lines',
  'article',
  'eric',
  'murray',
  'writes',
  'watch',
  'often',
  'scumbag',
  'steals',
  'cover',
  'means',
  'looking',
  'steal',
  'bike',
  'case',
  'faded',
  'cover',
  'stolen',
  'bmw',
  'rs',
  'stashed',
  'apartment',
  'carport',
  'visible',
  'street',
  'evidently',
  'decided',
  'beemer',
  'wasnt',
  'worth',
  'stealing',
  'try',
  'next',
  'night',
  'steal',
  'honda',
  'hurricane',
  'parked',
  'next',
  'apartment',
  'building',
  'neighbor',
  'heard',
  'wheeling',
  'called',
  'cops',
  'know',
  'setting',
  'actually',
  'one',
  'things',
  'really',
  'good',
  'bmw',
  'bikes',
  'accounts',
  'ive',
  'heard',
  'practically',
  'one',
  'steals',
  'bmws',
  'probably',
  'similar',
  'moto',
  'guzzis',
  'relative',
  'exotics',
  'since',
  'isnt',
  'large',
  'demand',
  'parts',
  'bike',
  'would',
  'much',
  'easier',
  'track',
  'seems',
  'stolen',
  'bikes',
  'harleys',
  'cc',
  'jap',
  'sport',
  'bikes',
  'jonathan',
  'polito',
  'internet',
  'encore',
  'computer',
  'corp',
  'kildaire',
  'farm',
  'rd',
  'cary',
  'nc',
  'usa',
  'voice',
  'fax'],
 ['roman',
  'bmp',
  'part',
  'cliff',
  'reply',
  'cliff',
  'distribution',
  'usa',
  'organization',
  'university',
  'south',
  'dakota',
  'lines',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'wwiz',
  'bhj',
  'bhj',
  'bhj',
  'bhj',
  'giz',
  'giz',
  'giz',
  'bhj',
  'giz',
  'm_',
  'ei',
  'fr',
  'a_',
  'w_',
  'vo',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'hp',
  'tm',
  'um',
  'gq',
  'tbxn',
  'wm',
  'tct',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'avyaa',
  'df',
  'ijh',
  'nkjz',
  'vmk',
  'mmk',
  'vn',
  'kj',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ms',
  'vlv',
  'de',
  'mp',
  'uj',
  'i_u',
  'dax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'qtcv',
  'uy',
  'ez',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'wt',
  'giz',
  'bhj',
  'bhj',
  'bhj',
  'gizw',
  'ei',
  'pmf',
  'hs',
  'xgjeuax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'chp',
  'ex',
  'fp',
  'wm',
  'wm',
  'eq',
  'qtm',
  'mkjznb',
  'vmk',
  'vmk',
  'vn',
  'kmk',
  'vmhi',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ws',
  'rdf',
  'ql',
  'ul',
  'yj',
  'gy',
  'dax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ml',
  'tcv',
  'nriz',
  'qax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'pne',
  'kn',
  'ez',
  'nrhj',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'pl',
  'wwiz',
  'bhj',
  'bhj',
  'bhj',
  'bhj',
  'giz',
  'm_',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ch',
  'mp',
  'sbtp',
  'um',
  'fyn',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'wri',
  'yf',
  'tm',
  'tm',
  'tm',
  'tct',
  'lj',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'sf',
  'ql',
  'yj',
  'gq',
  'dax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ey',
  'ey',
  'kn',
  'lj',
  'gk',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'mq',
  'ghj',
  'kn',
  'nrhj',
  'mfq',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ei',
  'giz',
  'ghj',
  'bhj',
  'biz',
  'gk',
  'wt',
  'ei',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'mfyl',
  'bax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'bj',
  'ey',
  'ey',
  'ey',
  'kn',
  'ey',
  'tm',
  'tm',
  'kn',
  'gk',
  'mmk',
  'yw',
  'ko',
  'lrax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'eg',
  'fmk',
  'qv',
  'mp',
  'yj',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'nriz',
  'giz',
  'gk',
  'mi',
  'mfq',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ei',
  'wwhj',
  'biz',
  'm_',
  'mfq',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'qq',
  'pnei',
  'mchz',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'aug',
  'emk',
  'klk',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ei',
  'ei',
  'pl',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'qq',
  'pnei',
  'wt',
  'ei',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ei',
  'ei',
  'ei',
  'du',
  'um',
  'fyl',
  'cla',
  'ax',
  'ax',
  'mnuy',
  'ey',
  'ey',
  'ex',
  'kn',
  'bizw',
  'mf',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'bs',
  'se',
  'svbgt',
  'di',
  'mgr',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  'max',
  'ax',
  'ax',
  'ax',
  'ax',
  'ax',
  ...],
 ['jon',
  'noring',
  'quack',
  'quack',
  'candida',
  'yeast',
  'bloom',
  'fact',
  'fiction',
  'organization',
  'netcom',
  'online',
  'communications',
  'services',
  'login',
  'guest',
  'lines',
  'article',
  'david',
  'rind',
  'writes',
  'believe',
  'quacks',
  'exist',
  'quack',
  'diagnoses',
  'licensed',
  'physician',
  'enough',
  'guarantee',
  'someone',
  'quack',
  'even',
  'licensed',
  'physician',
  'quack',
  'people',
  'shouldnt',
  'say',
  'give',
  'example',
  'commonly',
  'diagnosed',
  'ailment',
  'think',
  'quack',
  'diagnosis',
  'gotten',
  'point',
  'civilization',
  'longer',
  'need',
  'worry',
  'unscrupulous',
  'healers',
  'taking',
  'advantage',
  'people',
  'would',
  'say',
  'also',
  'significant',
  'numbers',
  'unscrupulous',
  'doctors',
  'squeaky',
  'clean',
  'traditional',
  'crew',
  'cut',
  'talk',
  'ama',
  'starting',
  'treatment',
  'kind',
  'recommend',
  'treatments',
  'though',
  'accepted',
  'may',
  'necessary',
  'patient',
  'time',
  'making',
  'quick',
  'buck',
  'would',
  'surprised',
  'cost',
  'medical',
  'services',
  'significantly',
  'inflated',
  'quacks',
  'different',
  'color',
  'fact',
  'id',
  'say',
  'doctors',
  'dangerous',
  'since',
  'call',
  'question',
  'true',
  'focus',
  'medical',
  'profession',
  'ama',
  'boards',
  'focus',
  'quacks',
  'instead',
  'devoting',
  'unbelievable',
  'energy',
  'search',
  'destroy',
  'missions',
  'pull',
  'licenses',
  'doctors',
  'trying',
  'non',
  'traditional',
  'fully',
  'accepted',
  'treatments',
  'desperate',
  'patients',
  'traditional',
  'accepted',
  'medicine',
  'cannot',
  'help',
  'make',
  'general',
  'comment',
  'many',
  'recent',
  'posts',
  'lately',
  'ive',
  'seen',
  'word',
  'quack',
  'bandied',
  'recklessly',
  'doctor',
  'doctor',
  'wanna',
  'decided',
  'quit',
  'discussing',
  'controversial',
  'medical',
  'civilized',
  'manner',
  'say',
  'quack',
  'quack',
  'somehow',
  'magically',
  'expect',
  'readership',
  'newsgroup',
  'roll',
  'backs',
  'pee',
  'pee',
  'obedience',
  'teach',
  'medical',
  'school',
  'throw',
  'authority',
  'around',
  'let',
  'put',
  'another',
  'way',
  'make',
  'point',
  'clear',
  'quack',
  'nebulous',
  'word',
  'lacking',
  'precision',
  'sole',
  'obfuscate',
  'issues',
  'hand',
  'indiscriminate',
  'word',
  'sure',
  'sign',
  'incompetency',
  'coming',
  'medical',
  'doctor',
  'wanna',
  'competency',
  'expected',
  'real',
  'scary',
  'know',
  'ive',
  'already',
  'diagnosed',
  'sci',
  'med',
  'gods',
  'newsgroup',
  'anal',
  'retentive',
  'psychotic',
  'look',
  'forward',
  'net',
  'diagnoses',
  'hey',
  'theyre',
  'free',
  'jon',
  'quacks',
  'us',
  'noring',
  'may',
  'suggest',
  'seriously',
  'doctors',
  'wanna',
  'doctors',
  'net',
  'refuse',
  'open',
  'mind',
  'alternative',
  'treatments',
  'theories',
  'yeast',
  'theory',
  'create',
  'moderated',
  'group',
  'call',
  'sci',
  'med',
  'traditional',
  'moderated',
  'sci',
  'med',
  'ama',
  'approved',
  'keep',
  'anal',
  'retentives',
  'like',
  'charter',
  'member',
  'infj',
  'club',
  'youre',
  'dying',
  'know',
  'infj',
  'means',
  'brave',
  'mail',
  'ill',
  'send',
  'info',
  'jon',
  'noring',
  'jkn',
  'international',
  'ip',
  'freds',
  'gourmet',
  'chocolate',
  'carlton',
  'place',
  'phone',
  'chips',
  'worlds',
  'best',
  'livermore',
  'ca',
  'mail',
  'read',
  'alt',
  'psychology',
  'personality',
  'thats',
  'action'],
 ['joseph',
  'paparella',
  'anyone',
  'using',
  'video',
  'windows',
  'keywords',
  'video',
  'windows',
  'organization',
  'umass',
  'lowell',
  'computer',
  'science',
  'distribution',
  'na',
  'lines',
  'suggestion',
  'would',
  'contact',
  'microsoft',
  'video',
  'windows',
  'sdk',
  'would',
  'need',
  'call',
  'developer',
  'services',
  'extension',
  'pm',
  'pacific',
  'time'],
 ['gulf',
  'war',
  'peace',
  'niks',
  'lines',
  'article',
  'douglas',
  'graham',
  'writes',
  'wait',
  'minute',
  'said',
  'never',
  'play',
  'chamberlain',
  'since',
  'us',
  'playing',
  'chamberlain',
  'far',
  'east',
  'timor',
  'concerned',
  'wouldnt',
  'lead',
  'think',
  'argument',
  'irrelevant',
  'nothing',
  'gulf',
  'war',
  'actually',
  'rather',
  'like',
  'idea',
  'perhaps',
  'rest',
  'world',
  'bombed',
  'maybe',
  'missiled',
  'washington',
  'us',
  'invaded',
  'nicaragua',
  'grenada',
  'panama',
  'vietnam',
  'mexico',
  'hawaii',
  'number',
  'places',
  'wait',
  'minute',
  'doug',
  'know',
  'better',
  'informed',
  'us',
  'never',
  'invaded',
  'nicaragua',
  'far',
  'know',
  'liberated',
  'grenada',
  'cubans',
  'protect',
  'us',
  'citizens',
  'prevent',
  'completion',
  'strategic',
  'air',
  'strip',
  'panama',
  'invaded',
  'true',
  'twice',
  'century',
  'vietnam',
  'invited',
  'government',
  'vietnam',
  'guess',
  'invaded',
  'saudi',
  'arabia',
  'gulf',
  'war',
  'eh',
  'mexico',
  'invaded',
  'mexico',
  'times',
  'century',
  'missiles',
  'anyone',
  'shoot',
  'time',
  'hawaii',
  'liberated',
  'spain',
  'mean',
  'word',
  'invaded',
  'sort',
  'military',
  'action',
  'cross',
  'someones',
  'border',
  'right',
  'normally',
  'invaded',
  'carries',
  'connotation',
  'attacking',
  'autonomous',
  'nation',
  'nation',
  'invades',
  'virgin',
  'islands',
  'would',
  'invading',
  'virgin',
  'islands',
  'point',
  'view',
  'score',
  'falls',
  'mexico',
  'panama',
  'whats',
  'peace',
  'nik',
  'somebody',
  'doesnt',
  'masturbate',
  'gunsnammo',
  'supposed',
  'bad',
  'peace',
  'nik',
  'someone',
  'believes',
  'peace',
  'costs',
  'words',
  'person',
  'would',
  'supported',
  'giving',
  'hitler',
  'austria',
  'czechoslakia',
  'poland',
  'could',
  'averted',
  'war',
  'one',
  'would',
  'allow',
  'hitler',
  'wipe',
  'jews',
  'slavs',
  'political',
  'dissidents',
  'areas',
  'controlled',
  'long',
  'left',
  'rest',
  'us',
  'alone',
  'supposed',
  'bad',
  'peace',
  'nik',
  'ask',
  'well',
  'depends',
  'values',
  'value',
  'life',
  'liberty',
  'peace',
  'freedom',
  'guess',
  'liberty',
  'freedom',
  'mean',
  'life',
  'youd',
  'rather',
  'die',
  'fighting',
  'liberty',
  'live',
  'tyrants',
  'heel',
  'yes',
  'bad',
  'peace',
  'nik',
  'problem',
  'peace',
  'niks',
  'consider',
  'us',
  'like',
  'bad',
  'unconscionable',
  'would',
  'argument',
  'problem',
  'peace',
  'nik',
  'held',
  'ideals',
  'stayed',
  'conflicts',
  'issues',
  'especially',
  'dealing',
  'national',
  'defense',
  'willing',
  'allow',
  'us',
  'legitimately',
  'hold',
  'different',
  'point',
  'view',
  'militate',
  'many',
  'times',
  'resort',
  'violence',
  'name',
  'peace',
  'rank',
  'hypocrisy',
  'stop',
  'warmongers',
  'willing',
  'stand',
  'defend',
  'freedoms',
  'tyrants',
  'realize',
  'requires',
  'strong',
  'national',
  'defense',
  'time',
  'get',
  'soapbox',
  'doug',
  'graham',
  'opinions',
  'regards',
  'jim'],
 ['joseph',
  'dale',
  'fisher',
  'deification',
  'organization',
  'indiana',
  'university',
  'lines',
  'article',
  'writes',
  'aaron',
  'bryce',
  'cardenas',
  'writes',
  'prophesy',
  'mean',
  'secondly',
  'apostle',
  'answer',
  'especial',
  'witness',
  'one',
  'suppose',
  'personal',
  'witness',
  'means',
  'true',
  'apostle',
  'one',
  'must',
  'christ',
  'appear',
  'lets',
  'see',
  'church',
  'quit',
  'claiming',
  'actually',
  'apostle',
  'someone',
  'sent',
  'mailmen',
  'could',
  'called',
  'apostles',
  'sense',
  'however',
  'jesus',
  'designated',
  'given',
  'power',
  'remember',
  'many',
  'thousands',
  'people',
  'witnessed',
  'jesus',
  'didnt',
  'make',
  'apostles',
  'though',
  'joe',
  'fisher'],
 ['doug',
  'mohney',
  'moonbase',
  'race',
  'organization',
  'computer',
  'aided',
  'design',
  'lab',
  'maryland',
  'college',
  'park',
  'lines',
  'reply',
  'nntp',
  'posting',
  'host',
  'queen',
  'eng',
  'umd',
  'article',
  'henry',
  'spencer',
  'writes',
  'apollo',
  'done',
  'hard',
  'way',
  'big',
  'hurry',
  'limited',
  'technology',
  'base',
  'government',
  'contracts',
  'privately',
  'rather',
  'government',
  'project',
  'cuts',
  'costs',
  'factor',
  'several',
  'much',
  'would',
  'cost',
  'private',
  'venture',
  'assuming',
  'could',
  'talk',
  'government',
  'leasing',
  'couple',
  'pads',
  'florida',
  'software',
  'engineering',
  'thats',
  'like',
  'military',
  'intelligence',
  'isnt'],
 ['weston',
  'graphical',
  'representation',
  'vector',
  'valued',
  'functions',
  'organization',
  'sdsu',
  'computing',
  'services',
  'lines',
  'nntp',
  'posting',
  'host',
  'ucssun',
  'sdsu',
  'gnuplot',
  'etc',
  'make',
  'easy',
  'plot',
  'real',
  'valued',
  'functions',
  'variables',
  'want',
  'plot',
  'functions',
  'whose',
  'values',
  'vectors',
  'plotting',
  'arrays',
  'arrows',
  'complete',
  'arrowheads',
  'going',
  'thought',
  'would',
  'ask',
  'whether',
  'someone',
  'already',
  'done',
  'work',
  'pointers',
  'thanx',
  'advance',
  'tom',
  'weston',
  'usenet',
  'department',
  'philosophy',
  'office',
  'san',
  'diego',
  'state',
  'univ',
  'home',
  'san',
  'diego',
  'ca'],
 ['francisco',
  'da',
  'fonseca',
  'rodrigues',
  'new',
  'planet',
  'kuiper',
  'object',
  'found',
  'added',
  'forwarded',
  'space',
  'digest',
  'organization',
  'via',
  'international',
  'space',
  'university',
  'original',
  'sender',
  'distribution',
  'sci',
  'lines',
  'tonigth',
  'tv',
  'journal',
  'brasil',
  'announced',
  'object',
  'beyond',
  'plutos',
  'orbit',
  'found',
  'observatory',
  'hawaii',
  'named',
  'object',
  'karla',
  'program',
  'said',
  'object',
  'wasnt',
  'gaseous',
  'giant',
  'planet',
  'composed',
  'rocks',
  'ices',
  'someone',
  'confirm',
  'information',
  'could',
  'object',
  'new',
  'planet',
  'kuiper',
  'object',
  'thanks',
  'advance',
  'francisco',
  'stars',
  'francisco',
  'da',
  'fonseca',
  'rodrigues',
  'cotuca',
  'colegio',
  'tecnico',
  'da',
  'unicamp',
  'brasil',
  'depto',
  'de',
  'processamento',
  'de',
  'dados',
  'cps',
  'internet',
  'fone',
  'fax',
  'campinas',
  'sp',
  'brasil',
  'like',
  'dust'],
 ['amir',
  'rosenblatt',
  'legality',
  'jewish',
  'purchase',
  'nntp',
  'posting',
  'host',
  'cunixa',
  'cc',
  'columbia',
  'reply',
  'amir',
  'rosenblatt',
  'organization',
  'columbia',
  'university',
  'lines',
  'article',
  'writes',
  'amir',
  'rosenblatt',
  'writes',
  'sam',
  'zbib',
  'writes',
  'one',
  'right',
  'mind',
  'would',
  'sell',
  'freedom',
  'dignity',
  'palestinians',
  'exception',
  'perhaps',
  'heard',
  'anti',
  'trust',
  'business',
  'world',
  'since',
  'debating',
  'legality',
  'commercial',
  'transaction',
  'must',
  'laws',
  'governing',
  'guidelines',
  'ethics',
  'transactions',
  'basic',
  'anti',
  'trust',
  'law',
  'says',
  'purchase',
  'ibm',
  'stocks',
  'purpose',
  'investing',
  'acquire',
  'large',
  'number',
  'shares',
  'intent',
  'controlling',
  'ibm',
  'make',
  'intentions',
  'clear',
  'apriori',
  'clearly',
  'jews',
  'purchased',
  'properties',
  'palastenians',
  'designs',
  'buying',
  'dwelling',
  'real',
  'estate',
  'establishing',
  'bridgehead',
  'european',
  'jews',
  'palastenians',
  'sold',
  'properties',
  'jews',
  'old',
  'tradition',
  'arab',
  'hospitality',
  'multi',
  'ethnic',
  'multi',
  'religious',
  'society',
  'accepting',
  'jews',
  'neighbours',
  'different',
  'another',
  'religion',
  'plus',
  'paid',
  'fair',
  'market',
  'value',
  'etc',
  'know',
  'victims',
  'international',
  'conspiracy',
  'im',
  'conspiracy',
  'theorist',
  'one',
  'hard',
  'dismiss',
  'right',
  'im',
  'going',
  'address',
  'point',
  'jewish',
  'national',
  'fund',
  'bought',
  'land',
  'didnt',
  'buy',
  'palestinians',
  'part',
  'tenant',
  'farmers',
  'fallahin',
  'living',
  'land',
  'owned',
  'wealthy',
  'arabs',
  'syria',
  'lebanon',
  'jnf',
  'offered',
  'premium',
  'deal',
  'owners',
  'took',
  'advantage',
  'called',
  'commerce',
  'owners',
  'however',
  'made',
  'provisions',
  'worked',
  'basically',
  'shafting',
  'selling',
  'land',
  'right',
  'blame',
  'jews',
  'amir',
  'would',
  'categorize',
  'sale',
  'land',
  'shafting',
  'sold',
  'jews',
  'fair',
  'assume',
  'fallahin',
  'would',
  'mistreated',
  'jews',
  'norm',
  'commerce',
  'read',
  'shafting',
  'arabs',
  'jews',
  'shafting',
  'part',
  'arab',
  'land',
  'owners',
  'without',
  'notifying',
  'tenant',
  'farmers',
  'responsible',
  'enough',
  'make',
  'provisions',
  'rather',
  'leaving',
  'fate',
  'claim',
  'lebanese',
  'syrian',
  'landlords',
  'sold',
  'palestine',
  'true',
  'even',
  'partially',
  'omits',
  'fact',
  'mandate',
  'treaty',
  'put',
  'lebanon',
  'syria',
  'french',
  'rule',
  'palestine',
  'british',
  'obiviously',
  'landlord',
  'would',
  'found',
  'foreigner',
  'palestine',
  'would',
  'motivated',
  'sell',
  'regardless',
  'price',
  'point',
  'land',
  'sold',
  'legally',
  'often',
  'prices',
  'actual',
  'value',
  'legal',
  'good',
  'business',
  'sellers',
  'though',
  'left',
  'palestinians',
  'worked',
  'land',
  'poor',
  'situation',
  'interesting',
  'though',
  'acknowledge',
  'palestinians',
  'shafted',
  'many',
  'israelis',
  'jews',
  'share',
  'opinion',
  'absolve',
  'purchaser',
  'ethical',
  'commitments',
  'wasnt',
  'written',
  'dont',
  'know',
  'others',
  'share',
  'opinion',
  'mine',
  'im',
  'sure',
  'agree',
  'dont',
  'way',
  'see',
  'fallahin',
  'caught',
  'circumstances',
  'beyond',
  'control',
  'since',
  'didnt',
  'land',
  'didnt',
  'say',
  'course',
  'sake',
  'greater',
  'arab',
  'unity',
  'arabs',
  'angry',
  'land',
  'sold',
  'jews',
  'act',
  'illegal',
  'jordan',
  'happened',
  'business',
  'told',
  'see',
  'answer',
  'response',
  'question',
  'whether',
  'intent',
  'behind',
  'purchase',
  'aimed',
  'controlling',
  'public',
  'assets',
  'land',
  'infra',
  'structure',
  'etc',
  'imho',
  'palestinians',
  'grounds',
  'contest',
  'legality',
  'purchase',
  'say',
  'world',
  'court',
  'sam',
  'opinions',
  'one',
  'elses',
  'purpose',
  'buying',
  'land',
  'provide',
  'space',
  'jobs',
  'jewish',
  'immigrants',
  'case',
  'matter',
  'purpose',
  'sales',
  'legal',
  'really',
  'dont',
  'see',
  'grounds',
  'contesting',
  'amir'],
 ['jon',
  'leech',
  'space',
  'faq',
  'mission',
  'schedules',
  'supersedes',
  'organization',
  'university',
  'north',
  'carolina',
  'chapel',
  'hill',
  'lines',
  'distribution',
  'world',
  'expires',
  'may',
  'gmt',
  'nntp',
  'posting',
  'host',
  'mahler',
  'cs',
  'unc',
  'keywords',
  'frequently',
  'asked',
  'questions',
  'archive',
  'name',
  'space',
  'schedule',
  'last',
  'modified',
  'date',
  'space',
  'shuttle',
  'answers',
  'launch',
  'schedules',
  'tv',
  'coverage',
  'shuttle',
  'launchings',
  'landings',
  'schedules',
  'see',
  'shuttle',
  'operations',
  'discussed',
  'usenet',
  'group',
  'sci',
  'space',
  'shuttle',
  'ken',
  'hollis',
  'posts',
  'compressed',
  'version',
  'shuttle',
  'manifest',
  'launch',
  'dates',
  'information',
  'periodically',
  'manifest',
  'also',
  'available',
  'ames',
  'space',
  'archive',
  'space',
  'faq',
  'manifest',
  'portion',
  'manifest',
  'formerly',
  'included',
  'faq',
  'removed',
  'please',
  'refer',
  'posting',
  'archived',
  'copy',
  'date',
  'information',
  'upcoming',
  'missions',
  'call',
  'info',
  'kennedy',
  'space',
  'center',
  'official',
  'nasa',
  'shuttle',
  'status',
  'reports',
  'posted',
  'sci',
  'space',
  'news',
  'frequently',
  'shuttle',
  'roll',
  'liftoff',
  'following',
  'answer',
  'translation',
  'provided',
  'ken',
  'jenks',
  'ascent',
  'guidance',
  'flight',
  'control',
  'training',
  'manual',
  'asc',
  'says',
  'vertical',
  'rise',
  'phase',
  'launch',
  'pad',
  'attitude',
  'commanded',
  'loaded',
  'rel',
  'sufficient',
  'assure',
  'launch',
  'tower',
  'clearance',
  'achieved',
  'tilt',
  'maneuver',
  'roll',
  'program',
  'orients',
  'vehicle',
  'heads',
  'attitude',
  'required',
  'generate',
  'negative',
  'alpha',
  'turn',
  'alleviates',
  'structural',
  'loading',
  'advantages',
  'attitude',
  'performance',
  'gain',
  'decreased',
  'abort',
  'maneuver',
  'complexity',
  'improved',
  'band',
  'look',
  'angles',
  'crew',
  'view',
  'horizon',
  'tilt',
  'maneuver',
  'also',
  'required',
  'start',
  'gaining',
  'downrange',
  'velocity',
  'achieve',
  'main',
  'engine',
  'cutoff',
  'meco',
  'target',
  'second',
  'stage',
  'really',
  'good',
  'answer',
  'couched',
  'nasa',
  'jargon',
  'ill',
  'try',
  'interpret',
  'wait',
  'shuttle',
  'clears',
  'tower',
  'rolling',
  'roll',
  'shuttle',
  'around',
  'angle',
  'attack',
  'wind',
  'caused',
  'passage',
  'atmosphere',
  'relative',
  'wind',
  'chord',
  'wings',
  'imaginary',
  'line',
  'leading',
  'edge',
  'trailing',
  'edge',
  'slightly',
  'negative',
  'angle',
  'negative',
  'alpha',
  'causes',
  'little',
  'bit',
  'downward',
  'force',
  'toward',
  'belly',
  'orbiter',
  'direction',
  'force',
  'alleviates',
  'structural',
  'loading',
  'careful',
  'wings',
  'theyre',
  'delicate',
  'part',
  'vehicle',
  'new',
  'attitude',
  'roll',
  'also',
  'allows',
  'us',
  'carry',
  'mass',
  'orbit',
  'achieve',
  'higher',
  'orbit',
  'mass',
  'change',
  'orbit',
  'higher',
  'lower',
  'inclination',
  'would',
  'case',
  'didnt',
  'roll',
  'performance',
  'gain',
  'new',
  'attitude',
  'allows',
  'crew',
  'fly',
  'less',
  'complicated',
  'flight',
  'path',
  'execute',
  'one',
  'dangerous',
  'abort',
  'maneuvers',
  'return',
  'launch',
  'site',
  'decreased',
  'abort',
  'maneuver',
  'complexity',
  'new',
  'attitude',
  'improves',
  'ability',
  'ground',
  'based',
  'radio',
  'antennae',
  'good',
  'line',
  'sight',
  'signal',
  'band',
  'radio',
  'antennae',
  'orbiter',
  'improved',
  'band',
  'look',
  'angles',
  'new',
  'attitude',
  'allows',
  'crew',
  'see',
  'horizon',
  'helpful',
  'mandatory',
  'part',
  'piloting',
  'flying',
  'machine',
  'new',
  'attitude',
  'orients',
  'shuttle',
  'body',
  'nearly',
  'parallel',
  'ground',
  'nose',
  'east',
  'usually',
  'allows',
  'thrust',
  'engines',
  'add',
  'velocity',
  'correct',
  'direction',
  'eventually',
  'achieve',
  'orbit',
  'remember',
  'velocity',
  'vector',
  'quantity',
  'made',
  'speed',
  'direction',
  'shuttle',
  'large',
  'horizontal',
  'component',
  'velocity',
  'small',
  'vertical',
  'component',
  'attain',
  'orbit',
  'begs',
  'question',
  'isnt',
  'launch',
  'pad',
  'oriented',
  'give',
  'nice',
  'attitude',
  'begin',
  'shuttle',
  'need',
  'roll',
  'achieve',
  'attitude',
  'answer',
  'pads',
  'leftovers',
  'apollo',
  'days',
  'shuttle',
  'straddles',
  'two',
  'flame',
  'trenches',
  'one',
  'solid',
  'rocket',
  'motor',
  'exhaust',
  'one',
  'space',
  'shuttle',
  'main',
  'engine',
  'exhaust',
  'see',
  'effects',
  'daytime',
  'launch',
  'srm',
  'exhaust',
  'dirty',
  'gray',
  'garbage',
  'ssme',
  'exhaust',
  'fluffy',
  'white',
  'steam',
  'watch',
  'difference',
  'top',
  'orbiter',
  'side',
  'bottom',
  'external',
  'tank',
  'side',
  'stack',
  'access',
  'tower',
  'support',
  'service',
  'structure',
  'oriented',
  'basically',
  'way',
  'saturn',
  'vs',
  'side',
  'note',
  'saturn',
  'vs',
  'also',
  'roll',
  'program',
  'dont',
  'ask',
  'im',
  'shuttle',
  'guy',
  'checked',
  'buddy',
  'ascent',
  'dynamics',
  'added',
  'roll',
  'maneuver',
  'really',
  'maneuver',
  'three',
  'axes',
  'roll',
  'pitch',
  'yaw',
  'roll',
  'component',
  'maneuver',
  'performed',
  'reasons',
  'stated',
  'pitch',
  'component',
  'controls',
  'loading',
  'wings',
  'keeping',
  'angle',
  'attack',
  'alpha',
  'within',
  'tight',
  'tolerance',
  'yaw',
  'component',
  'used',
  'determine',
  'orbital',
  'inclination',
  'total',
  'maneuver',
  'really',
  'expressed',
  'quaternion',
  'grad',
  'level',
  'math',
  'concept',
  'combining',
  'three',
  'rotation',
  'matrices',
  'one',
  'four',
  'element',
  'array',
  'receive',
  'nasa',
  'tv',
  'channel',
  'nasa',
  'select',
  'nasa',
  'select',
  'broadcast',
  'satellite',
  'access',
  'satellite',
  'dish',
  'find',
  'select',
  'satcom',
  'transponder',
  'band',
  'degrees',
  'west',
  'longitude',
  'audio',
  'frequency',
  'mhz',
  'stationed',
  'atlantic',
  'increasingly',
  'difficult',
  'receive',
  'california',
  'points',
  'west',
  'events',
  'special',
  'interest',
  'shuttle',
  'missions',
  'select',
  'sometimes',
  'broadcast',
  'second',
  'satellite',
  'viewers',
  'cant',
  'get',
  'satellite',
  'feed',
  'cable',
  'operators',
  'carry',
  'select',
  'worth',
  'asking',
  'doesnt',
  'select',
  'schedule',
  'found',
  'nasa',
  'headline',
  'news',
  'frequently',
  'posted',
  'sci',
  'space',
  'news',
  'generally',
  'carries',
  'press',
  'conferences',
  'briefings',
  'nasa',
  'officials',
  'live',
  'coverage',
  'shuttle',
  'missions',
  'planetary',
  'encounters',
  'select',
  'recently',
  'begun',
  'carrying',
  'much',
  'secondary',
  'material',
  'associated',
  'spacelink',
  'missions',
  'covered',
  'amateur',
  'radio',
  'frequencies',
  'shuttle',
  'missions',
  'following',
  'believed',
  'rebroadcast',
  'space',
  'shuttle',
  'mission',
  'audio',
  'fxn',
  'los',
  'angeles',
  'mf',
  'ames',
  'research',
  'center',
  'mountain',
  'view',
  'california',
  'wa',
  'nan',
  'goddard',
  'space',
  'flight',
  'center',
  'gsfc',
  'greenbelt',
  'maryland',
  'rrr',
  'johnson',
  'space',
  'center',
  'jsc',
  'houston',
  'texas',
  'vio',
  'jet',
  'propulsion',
  'laboratory',
  'jpl',
  'pasadena',
  'california',
  'aw',
  'voice',
  'bulletins',
  'station',
  'vhf',
  'fxn',
  'mf',
  'wa',
  'nan',
  'rrr',
  'vio',
  'vio',
  'aw',
  'rrr',
  'transmits',
  'mission',
  'audio',
  'special',
  'event',
  'station',
  'frequencies',
  'supplying',
  'keplerian',
  'elements',
  'mission',
  'information',
  'aw',
  'also',
  'transmits',
  'mission',
  'audio',
  'transmit',
  'voice',
  'bulletins',
  'utc',
  'frequencies',
  'bands',
  'require',
  'usb',
  'frequencies',
  'bands',
  'lsb',
  'fm',
  'vhf',
  'frequencies',
  'item',
  'recently',
  'updated',
  'courtesy',
  'gary',
  'morris',
  'kk',
  'yb',
  'qwc',
  'solid',
  'rocket',
  'booster',
  'fuel',
  'composition',
  'reference',
  'shuttle',
  'flight',
  'operations',
  'manual',
  'volume',
  'solid',
  'rocket',
  'booster',
  'systems',
  'nasa',
  'document',
  'jsc',
  'propellant',
  'composition',
  'percent',
  'ammonium',
  'perchlorate',
  'oxidizer',
  'aluminum',
  'iron',
  'oxide',
  'burn',
  'rate',
  'catalyst',
  'polybutadiene',
  'acrilic',
  'acid',
  'acrylonitrile',
  'rubber',
  'epoxy',
  'curing',
  'agent',
  'end',
  'reference',
  'comment',
  'aluminum',
  'rubber',
  'epoxy',
  'burn',
  'oxidizer',
  'next',
  'faq',
  'historical',
  'planetary',
  'probes'],
 ['kenneth',
  'steven',
  'simon',
  'new',
  'duo',
  'dock',
  'info',
  'summary',
  'dont',
  'know',
  'products',
  'nntp',
  'posting',
  'host',
  'silver',
  'ucs',
  'indiana',
  'organization',
  'indiana',
  'university',
  'lines',
  'alain',
  'waha',
  'writes',
  'edgardo',
  'nazario',
  'writes',
  'info',
  'give',
  'rumour',
  'truth',
  'new',
  'macintosh',
  'coming',
  'second',
  'quarter',
  'cpu',
  'excuse',
  'macs',
  'got',
  'cpu',
  'alain',
  'alain',
  'get',
  'facts',
  'straight',
  'post',
  'something',
  'like',
  'duo',
  'dock',
  'cpu',
  'docking',
  'station',
  'ports',
  'connecting',
  'various',
  'components',
  'including',
  'portable',
  'powerbook',
  'cpu',
  'guess',
  'rumored',
  'new',
  'duo',
  'docks',
  'built',
  'cpu',
  'perform',
  'functions',
  'interesting',
  'theyre',
  'compatible',
  'current',
  'duo',
  'models',
  'think',
  'youll',
  'hearing',
  'lot',
  'screwed',
  'apple',
  'complaints',
  'imagine',
  'company',
  'obsoleting',
  'ooh',
  'new',
  'verb',
  'virtually',
  'brand',
  'new',
  'computer',
  'sheesh',
  'ken',
  'kenneth',
  'simon',
  'dept',
  'sociology',
  'indiana',
  'university',
  'internet',
  'bitnet'],
 ['joe',
  'dropkin',
  'apple',
  'announce',
  'new',
  'performas',
  'versions',
  'reply',
  'organization',
  'brandeis',
  'university',
  'lines',
  'article',
  'boomer',
  'writes',
  'apple',
  'announced',
  'start',
  'selling',
  'three',
  'new',
  'vesions',
  'performa',
  'new',
  'machines',
  'built',
  'modems',
  'bundled',
  'software',
  'new',
  'models',
  'prices',
  'set',
  'apple',
  'retailer',
  'prices',
  'new',
  'machines',
  'expected',
  'range',
  'kind',
  'post',
  'something',
  'substantial',
  'tell',
  'world',
  'least',
  'give',
  'us',
  'details',
  'coming',
  'new',
  'macs',
  'always',
  'whats',
  'new',
  'models',
  'etc'],
 ['eric',
  'youngblood',
  'old',
  'corvettes',
  'low',
  'insurance',
  'reply',
  'peon',
  'email',
  'eric',
  'youngblood',
  'nntp',
  'posting',
  'host',
  'crchh',
  'organization',
  'bnr',
  'inc',
  'lines',
  'article',
  'scott',
  'warren',
  'rosander',
  'writes',
  'article',
  'george',
  'hei',
  'nz',
  'writes',
  'many',
  'years',
  'school',
  'im',
  'finally',
  'graduating',
  'getting',
  'real',
  'job',
  'course',
  'trying',
  'make',
  'plans',
  'spend',
  'extra',
  'money',
  'right',
  'accord',
  'good',
  'car',
  'real',
  'sporty',
  'thinking',
  'selling',
  'two',
  'years',
  'dropping',
  'around',
  'sports',
  'car',
  'kind',
  'thinking',
  'may',
  'better',
  'idea',
  'ill',
  'keep',
  'accord',
  'drops',
  'buy',
  'car',
  'ive',
  'always',
  'wanted',
  'corvette',
  'stingray',
  'reasoning',
  'accord',
  'corvette',
  'less',
  'would',
  'spend',
  'anyway',
  'basically',
  'im',
  'thinking',
  'late',
  'early',
  'around',
  'question',
  'good',
  'years',
  'consider',
  'reliability',
  'looks',
  'horsepower',
  'order',
  'believe',
  'horsepower',
  'main',
  'concern',
  'want',
  'go',
  'fast',
  'get',
  'motorcycle',
  'good',
  'prices',
  'also',
  'would',
  'insurance',
  'look',
  'like',
  'im',
  'male',
  'single',
  'might',
  'wait',
  'im',
  'get',
  'car',
  'lower',
  'insurance',
  'would',
  'fact',
  'mainly',
  'drive',
  'car',
  'lower',
  'type',
  'classic',
  'car',
  'rarely',
  'driven',
  'insurance',
  'class',
  'driving',
  'miles',
  'per',
  'year',
  'dad',
  'vette',
  'say',
  'classic',
  'insurance',
  'basically',
  'means',
  'restricted',
  'amount',
  'driving',
  'time',
  'basically',
  'means',
  'cant',
  'used',
  'every',
  'day',
  'car',
  'would',
  'probably',
  'suit',
  'needs',
  'limited',
  'mileage',
  'addition',
  'restricted',
  'mileage',
  'many',
  'classic',
  'insurance',
  'carriers',
  'also',
  'require',
  'vehicle',
  'garaged',
  'ericy',
  'eric',
  'youngblood',
  'bell',
  'northern',
  'research',
  'richardson',
  'texas',
  'peon',
  'email',
  'privs'],
 ['brian',
  'ceccarelli',
  'good',
  'jesus',
  'died',
  'organization',
  'lunar',
  'planetary',
  'laboratory',
  'tucson',
  'az',
  'lines',
  'jim',
  'burhill',
  'writes',
  'would',
  'consider',
  'word',
  'eye',
  'witness',
  'peter',
  'testify',
  'events',
  'surrounding',
  'jesus',
  'life',
  'two',
  'problems',
  'brian',
  'kendig',
  'writes',
  'peter',
  'died',
  'two',
  'millenia',
  'ago',
  'original',
  'letters',
  'wrote',
  'long',
  'since',
  'decayed',
  'dust',
  'alive',
  'today',
  'could',
  'question',
  'existence',
  'alexander',
  'great',
  'tilgrath',
  'pilisar',
  'iii',
  'nero',
  'caligula',
  'josephus',
  'cyrus',
  'great',
  'artexerxes',
  'documents',
  'decayed',
  'dust',
  'brian',
  'another',
  'excuse',
  'even',
  'peter',
  'witness',
  'miracles',
  'jesus',
  'two',
  'millenia',
  'ago',
  'doesnt',
  'mean',
  'deity',
  'bible',
  'says',
  'god',
  'might',
  'satan',
  'trying',
  'convince',
  'everyone',
  'hes',
  'nice',
  'guy',
  'even',
  'deity',
  'still',
  'alive',
  'active',
  'world',
  'today',
  'peter',
  'wrote',
  'bit',
  'bible',
  'peter',
  'says',
  'god',
  'bible',
  'says',
  'consider',
  'bible',
  'court',
  'recording',
  'period',
  'thousands',
  'years',
  'various',
  'people',
  'come',
  'testify',
  'experience',
  'living',
  'god',
  'comes',
  'abraham',
  'wealthy',
  'rancher',
  'comes',
  'moses',
  'high',
  'official',
  'egypt',
  'comes',
  'elijah',
  'priest',
  'comes',
  'david',
  'mere',
  'shepherd',
  'became',
  'king',
  'comes',
  'pagan',
  'king',
  'nebuchanezzar',
  'comes',
  'pagan',
  'king',
  'persia',
  'cyrus',
  'comes',
  'nehemiah',
  'cupbearer',
  'king',
  'persia',
  'matthew',
  'irs',
  'agent',
  'takes',
  'stand',
  'comes',
  'luke',
  'paul',
  'jew',
  'kill',
  'christians',
  'fun',
  'comes',
  'john',
  'year',
  'old',
  'boy',
  'comes',
  'peter',
  'fishermen',
  'comes',
  'james',
  'brother',
  'jesus',
  'comes',
  'hundreds',
  'others',
  'hear',
  'testimony',
  'fishermen',
  'irs',
  'agents',
  'priests',
  'kings',
  'court',
  'hearing',
  'lasts',
  'thousands',
  'years',
  'people',
  'coming',
  'testifying',
  'god',
  'calls',
  'listening',
  'stuff',
  'realize',
  'king',
  'david',
  'could',
  'never',
  'known',
  'john',
  'solomon',
  'could',
  'never',
  'known',
  'matthew',
  'nehemiah',
  'could',
  'never',
  'known',
  'peter',
  'realize',
  'people',
  'independent',
  'witnesses',
  'rule',
  'collaboration',
  'yet',
  'witnesses',
  'tell',
  'god',
  'testifier',
  'tells',
  'experiences',
  'living',
  'god',
  'experience',
  'different',
  'experience',
  'enough',
  'cross',
  'unmistakenly',
  'reveal',
  'one',
  'people',
  'talking',
  'god',
  'daniel',
  'know',
  'god',
  'rd',
  'highest',
  'official',
  'babylon',
  'god',
  'revealed',
  'john',
  'years',
  'later',
  'different',
  'perspective',
  'two',
  'testimonies',
  'identical',
  'testimony',
  'dares',
  'venture',
  'already',
  'known',
  'yet',
  'witnesss',
  'testimony',
  'even',
  'though',
  'different',
  'prior',
  'consistently',
  'describes',
  'harmoniously',
  'fitting',
  'facets',
  'character',
  'god',
  'stare',
  'gazing',
  'computer',
  'got',
  'seeming',
  'fanatic',
  'end',
  'net',
  'saying',
  'know',
  'god',
  'revealed',
  'also',
  'calls',
  'jesus',
  'john',
  'please',
  'believe',
  'telling',
  'truth',
  'wonderful',
  'know',
  'going',
  'pass',
  'testimony',
  'fictiousness',
  'going',
  'call',
  'three',
  'thousand',
  'years',
  'worth',
  'testimony',
  'shepherds',
  'irs',
  'agents',
  'royal',
  'officials',
  'kings',
  'computer',
  'programmers',
  'fiction',
  'scoff',
  'keyboard',
  'near',
  'complete',
  'ignorance',
  'testimonies',
  'going',
  'say',
  'complete',
  'hooey',
  'would',
  'audacious',
  'display',
  'arrogance',
  'actually',
  'think',
  'know',
  'better',
  'king',
  'solomon',
  'king',
  'david',
  'even',
  'abraham',
  'lincolnr'],
 ['uncle',
  'fester',
  'cview',
  'answers',
  'disclaimer',
  'nyx',
  'public',
  'access',
  'unix',
  'system',
  'run',
  'university',
  'denver',
  'denver',
  'community',
  'university',
  'neither',
  'control',
  'responsibility',
  'opinions',
  'users',
  'organization',
  'nyx',
  'public',
  'access',
  'unix',
  'denver',
  'math',
  'cs',
  'dept',
  'lines',
  'article',
  'matthew',
  'zenkar',
  'writes',
  'cyberspace',
  'buddha',
  'wrote',
  'rene',
  'walter',
  'writes',
  'places',
  'temp',
  'files',
  'places',
  'current',
  'directory',
  'beg',
  'differ',
  'point',
  'batch',
  'file',
  'launch',
  'cview',
  'cds',
  'dir',
  'cview',
  'resides',
  'invokes',
  'every',
  'time',
  'crash',
  'cview',
  'byte',
  'temp',
  'file',
  'found',
  'root',
  'dir',
  'drive',
  'cview',
  'posted',
  'well',
  'cview',
  'expert',
  'apparently',
  'thought',
  'knew',
  'better',
  'matthew',
  'zenkar',
  'talking',
  'colorview',
  'dos',
  'version',
  'writes',
  'temp',
  'files',
  'current',
  'directory',
  'later',
  'versions',
  'admit',
  'dont',
  'know',
  'assuming',
  'expert',
  'referenced',
  'talking',
  'version',
  'id',
  'say',
  'correct',
  'colorview',
  'unix',
  'discussed',
  'mixed',
  'confused',
  'befuddled',
  'genuinely',
  'entirely',
  'curious',
  'uncle',
  'fester',
  'god',
  'wants',
  'god',
  'wants',
  'gigolos',
  'god',
  'gets',
  'god',
  'wants',
  'giraffes',
  'god',
  'help',
  'us',
  'god',
  'wants',
  'politics',
  'god',
  'wants',
  'good',
  'laugh'],
 ['technology',
  'reply',
  'organization',
  'university',
  'technology',
  'sydney',
  'lines',
  'article',
  'writes',
  'fairly',
  'new',
  'group',
  'wondering',
  'peoples',
  'opinions',
  'ethical',
  'uses',
  'net',
  'technology',
  'general',
  'classic',
  'references',
  'area',
  'jacques',
  'ellul',
  'liberal',
  'evangelical',
  'perspective',
  'os',
  'guiness',
  'straight',
  'evangelical',
  'view',
  'want',
  'look',
  'non',
  'christian',
  'sources',
  'try',
  'alvin',
  'toffler',
  'perennial',
  'optimist',
  'views',
  'blatently',
  'non',
  'christian',
  'explore',
  'technology',
  'may',
  'going',
  'example',
  'chain',
  'letters',
  'going',
  'around',
  'claim',
  'written',
  'christian',
  'missionary',
  'present',
  'misleading',
  'image',
  'christian',
  'religion',
  'regardless',
  'technology',
  'careful',
  'separate',
  'issues',
  'related',
  'speed',
  'dispersion',
  'technology',
  'far',
  'letter',
  'went',
  'quickly',
  'got',
  'message',
  'passed',
  'technology',
  'something',
  'seems',
  'totally',
  'wrong',
  'help',
  'make',
  'best',
  'computer',
  'technology',
  'lecturing',
  'area',
  'challenge',
  'non',
  'christan',
  'atheistic',
  'class',
  'impact',
  'technology',
  'life',
  'quality',
  'life',
  'rights',
  'consider',
  'important',
  'depending',
  'work',
  'faith',
  'determine',
  'response',
  'technology',
  'example',
  'friends',
  'mine',
  'considering',
  'ivf',
  'due',
  'life',
  'threatening',
  'situation',
  'wife',
  'going',
  'baby',
  'god',
  'willing',
  'case',
  'technology',
  'available',
  'friends',
  'decide',
  'cases',
  'though',
  'must',
  'decide',
  'technology',
  'gods',
  'revealed',
  'word',
  'regards',
  'david',
  'david',
  'morgan',
  'university',
  'technology',
  'sydney',
  'po',
  'box',
  'broadway',
  'nsw',
  'ph',
  'broadway',
  'sydney',
  'fax',
  'paid',
  'good',
  'money',
  'get',
  'opinions',
  'get',
  'free'],
 ['water',
  'brain',
  'israeli',
  'expansion',
  'lust',
  'originator',
  'nntp',
  'posting',
  'host',
  'lightning',
  'mcrcim',
  'mcgill',
  'organization',
  'mcgill',
  'research',
  'centre',
  'intelligent',
  'machines',
  'lines',
  'article',
  'alan',
  'stein',
  'writes',
  'guess',
  'hasan',
  'finally',
  'revealed',
  'source',
  'claim',
  'israel',
  'diverted',
  'water',
  'lebanon',
  'imagination',
  'alan',
  'stein',
  'mr',
  'water',
  'head',
  'never',
  'said',
  'israel',
  'diverted',
  'lebanese',
  'rivers',
  'fact',
  'said',
  'israel',
  'went',
  'southern',
  'lebanon',
  'make',
  'sure',
  'water',
  'used',
  'lebanese',
  'side',
  'water',
  'would',
  'run',
  'jordan',
  'river',
  'israel',
  'head',
  'hasan'],
 ['frank',
  'crary',
  'gun',
  'control',
  'mad',
  'hell',
  'tv',
  'news',
  'nntp',
  'posting',
  'host',
  'ucsu',
  'colorado',
  'organization',
  'university',
  'colorado',
  'boulder',
  'lines',
  'article',
  'steve',
  'manes',
  'writes',
  'last',
  'year',
  'us',
  'suffered',
  'almost',
  'wrongful',
  'accidental',
  'deaths',
  'handguns',
  'alone',
  'fbi',
  'statistics',
  'year',
  'uk',
  'suffered',
  'deaths',
  'scotland',
  'yard',
  'statistics',
  'population',
  'uk',
  'us',
  'weighted',
  'population',
  'us',
  'many',
  'handgun',
  'related',
  'deaths',
  'uk',
  'brits',
  'dont',
  'make',
  'murdering',
  'many',
  'people',
  'baseball',
  'bats',
  'examine',
  'figures',
  'stabbing',
  'favourite',
  'closely',
  'followed',
  'striking',
  'punching',
  'kicking',
  'many',
  'people',
  'burnt',
  'death',
  'britain',
  'shot',
  'death',
  'take',
  'look',
  'youll',
  'see',
  'means',
  'people',
  'shot',
  'death',
  'great',
  'britain',
  'im',
  'sure',
  'great',
  'comfort',
  'widows',
  'children',
  'stabbed',
  'beaten',
  'burned',
  'death',
  'real',
  'question',
  'crime',
  'rate',
  'england',
  'go',
  'enacted',
  'gun',
  'control',
  'laws',
  'look',
  'rates',
  'first',
  'law',
  'see',
  'effect',
  'frank',
  'crary',
  'cu',
  'boulder'],
 ['cindy',
  'tittle',
  'moore',
  'canon',
  'bj',
  'bubblejet',
  'hp',
  'deskjet',
  'keywords',
  'printer',
  'article',
  'ics',
  'bd',
  'reply',
  'cindy',
  'tittle',
  'moore',
  'organization',
  'ics',
  'dept',
  'uc',
  'irvine',
  'lines',
  'nntp',
  'posting',
  'host',
  'alexandre',
  'dumas',
  'ics',
  'uci',
  'edited',
  'newsgroup',
  'line',
  'dont',
  'like',
  'crosspost',
  'much',
  'cant',
  'compare',
  'two',
  'recently',
  'got',
  'hp',
  'deskjet',
  'im',
  'pleased',
  'output',
  'remember',
  'im',
  'used',
  'imagens',
  'laser',
  'postscript',
  'printers',
  'school',
  'looks',
  'good',
  'careful',
  'let',
  'dry',
  'touching',
  'smudge',
  'deskjet',
  'slow',
  'comparison',
  'printers',
  'mentioned',
  'idea',
  'bubblejet',
  'compares',
  'interface',
  'win',
  'printer',
  'dandy',
  'ive',
  'problems',
  'hope',
  'helps',
  'cindy',
  'cindy',
  'tittle',
  'moore',
  'internet',
  'bitnet',
  'uucp',
  'ucbvax',
  'ucivax',
  'tittle',
  'usnail',
  'po',
  'box',
  'irvine',
  'ca'],
 ['vera',
  'shanti',
  'noyes',
  'satan',
  'kicked',
  'heaven',
  'biblical',
  'reply',
  'organization',
  'university',
  'chicago',
  'lines',
  'article',
  'writes',
  'hello',
  'question',
  'satan',
  'taught',
  'long',
  'time',
  'ago',
  'satan',
  'really',
  'angel',
  'god',
  'kicked',
  'heaven',
  'challenged',
  'gods',
  'authority',
  'problem',
  'cannot',
  'find',
  'bible',
  'bible',
  'originate',
  'workshop',
  'episcopalian',
  'student',
  'gathering',
  'couple',
  'months',
  'ago',
  'wanted',
  'know',
  'answer',
  'far',
  'could',
  'tell',
  'although',
  'story',
  'never',
  'specifically',
  'bible',
  'many',
  'references',
  'made',
  'primarily',
  'new',
  'testament',
  'old',
  'testament',
  'actually',
  'entirely',
  'different',
  'view',
  'satan',
  'excuse',
  'pun',
  'devils',
  'advocate',
  'yahweh',
  'see',
  'book',
  'job',
  'getting',
  'back',
  'fallen',
  'angel',
  'story',
  'references',
  'lucifer',
  'bible',
  'except',
  'mistranslation',
  'morning',
  'star',
  'king',
  'james',
  'version',
  'isaiah',
  'probably',
  'referred',
  'babylonian',
  'monarch',
  'much',
  'sun',
  'king',
  'referred',
  'louis',
  'xiv',
  'dont',
  'know',
  'story',
  'from_',
  'may',
  'rolling',
  'around',
  'long',
  'time',
  'milton',
  'lost_',
  'may',
  'invented',
  'sorry',
  'sketchiness',
  'rest',
  'hurry',
  'need',
  'eat',
  'lunch',
  'feel',
  'free',
  'email',
  'stuff',
  'found',
  'although',
  'lot',
  'result',
  'bible',
  'concordance',
  'program',
  'called',
  'quickverse',
  'really',
  'lousy',
  'way',
  'dont',
  'buy',
  'wondering',
  'eddie',
  'western',
  'kentucky',
  'university',
  'hope',
  'helped',
  'vera',
  'je',
  'cherche',
  'une',
  'ame',
  'qui',
  'course',
  'dont',
  'agree',
  'pourra',
  'maider',
  'mylene',
  'farmers',
  'religious',
  'views',
  'je',
  'suis',
  'think',
  'theyre',
  'interesting',
  'dune',
  'generation',
  'desenchantee',
  'vera',
  'noyes',
  'mylene',
  'farmer'],
 ['jimmy',
  'kuo',
  'cubs',
  'expos',
  'roster',
  'questions',
  'organization',
  'symantec',
  'peter',
  'norton',
  'group',
  'lines',
  'nntp',
  'posting',
  'host',
  'writes',
  'today',
  'cubs',
  'activated',
  'mike',
  'harkey',
  'dl',
  'move',
  'make',
  'room',
  'harkey',
  'shawn',
  'boskie'],
 ['robert',
  'carpenter',
  'microwaves',
  'used',
  'collect',
  'xyz',
  'coordinates',
  'organization',
  'boeing',
  'lines',
  'get',
  'info',
  'brochures',
  'differential',
  'gps',
  'systems',
  'buy',
  'bobc'],
 ['john',
  'baker',
  'oakleys',
  'sale',
  'bulls',
  'vs',
  'blazers',
  'keywords',
  'good',
  'deal',
  'distribution',
  'usa',
  'organization',
  'purdue',
  'university',
  'lines',
  'pair',
  'oakleys',
  'cost',
  'new',
  'year',
  'ago',
  'hardly',
  'ever',
  'wore',
  'dont',
  'look',
  'right',
  'orange',
  'blue',
  'blade',
  'kind',
  'terminator',
  'style',
  'willing',
  'sell',
  'first',
  'response',
  'get',
  'also',
  'bulls',
  'vs',
  'blazers',
  'game',
  'snes',
  'perfect',
  'condition',
  'selling',
  'includes',
  'instruction',
  'manual',
  'john'],
 ['james',
  'mcdowell',
  'texas',
  'ranger',
  'ticket',
  'info',
  'organization',
  'purdue',
  'university',
  'engineering',
  'computer',
  'network',
  'lines',
  'would',
  'someone',
  'please',
  'give',
  'address',
  'texas',
  'ranger',
  'ticket',
  'orders',
  'thanks',
  'much',
  'jim'],
 ['help',
  'get',
  'refund',
  'visual',
  'images',
  'douglas',
  'kou',
  'organization',
  'hiram',
  'college',
  'nntp',
  'posting',
  'host',
  'hirama',
  'hiram',
  'lines',
  'participated',
  'promotion',
  'company',
  'called',
  'visual',
  'images',
  'sent',
  'award',
  'certificate',
  'three',
  'months',
  'ago',
  'asked',
  'buy',
  'promotion',
  'package',
  'order',
  'receive',
  'major',
  'award',
  'mislabled',
  'address',
  'receive',
  'package',
  'one',
  'month',
  'ago',
  'mad',
  'angry',
  'took',
  'long',
  'get',
  'package',
  'wrote',
  'letter',
  'requested',
  'refund',
  'never',
  'return',
  'letter',
  'lucky',
  'enough',
  'find',
  'telephone',
  'number',
  'operator',
  'received',
  'package',
  'immediately',
  'returned',
  'package',
  'wrote',
  'another',
  'letter',
  'ask',
  'refund',
  'package',
  'returned',
  'address',
  'put',
  'package',
  'incorrect',
  'attempted',
  'call',
  'learnd',
  'changed',
  'telephone',
  'number',
  'took',
  'least',
  'phone',
  'calls',
  'find',
  'new',
  'number',
  'refused',
  'take',
  'responsibility',
  'spoke',
  'manager',
  'said',
  'would',
  'call',
  'back',
  'call',
  'yet',
  'able',
  'get',
  'address',
  'front',
  'desk',
  'go',
  'ahead',
  'send',
  'package',
  'waite',
  'call',
  'back',
  'know',
  'several',
  'people',
  'net',
  'experience',
  'company',
  'would',
  'like',
  'know',
  'got',
  'money',
  'back',
  'similar',
  'experience',
  'please',
  'advise',
  'thanks',
  'advance',
  'douglas',
  'kou',
  'hiram',
  'college'],
 ['organization',
  'central',
  'michigan',
  'university',
  'dak',
  'shorwave',
  'radio',
  'lines',
  'digitally',
  'tuned',
  'shorwave',
  'radio',
  'alarm',
  'clock',
  'presets',
  'per',
  'band',
  'fm',
  'sw',
  'sw',
  'bands',
  'asking',
  'shppg',
  'reply',
  'details',
  'thanks',
  'pete'],
 ['clayton',
  'cramer',
  'new',
  'study',
  'gay',
  'percentage',
  'organization',
  'optilink',
  'corporation',
  'petaluma',
  'ca',
  'lines',
  'article',
  'tree',
  'schnopia',
  'writes',
  'clayton',
  'cramer',
  'writes',
  'article',
  'also',
  'contains',
  'numbers',
  'number',
  'sexual',
  'partners',
  'median',
  'number',
  'sexual',
  'partners',
  'men',
  'compared',
  'table',
  'already',
  'posted',
  'masters',
  'johnson',
  'kolodny',
  'showing',
  'male',
  'homosexual',
  'partners',
  'apparent',
  'homosexual',
  'men',
  'dramatically',
  'promiscuous',
  'general',
  'male',
  'population',
  'shame',
  'dont',
  'breakdown',
  'straight',
  'men',
  'vs',
  'gay',
  'bi',
  'men',
  'would',
  'show',
  'even',
  'dramatically',
  'much',
  'promiscuous',
  'gay',
  'bi',
  'men',
  'possibly',
  'gay',
  'bi',
  'men',
  'less',
  'likely',
  'get',
  'married',
  'marriage',
  'isnt',
  'requirement',
  'couple',
  'staying',
  'together',
  'purpose',
  'post',
  'show',
  'mindless',
  'obsession',
  'statistics',
  'incredibly',
  'flawed',
  'system',
  'reasoning',
  'repellent',
  'hatemonger',
  'agenda',
  'purpose',
  'accomplished',
  'panache',
  'get',
  'clue',
  'get',
  'life',
  'get',
  'face',
  'im',
  'bi',
  'andrew',
  'simchik',
  'schnopia',
  'yes',
  'rest',
  'homosexual',
  'community',
  'pass',
  'laws',
  'impose',
  'moral',
  'codes',
  'requiring',
  'hire',
  'rent',
  'otherwise',
  'associate',
  'homosexual',
  'yes',
  'face',
  'homosexuals',
  'stop',
  'trying',
  'impose',
  'morals',
  'face',
  'clayton',
  'cramer',
  'uunet',
  'pyramid',
  'optilink',
  'cramer',
  'opinions',
  'mine',
  'relations',
  'people',
  'mutual',
  'consent'],
 ['bryan',
  'woodworth',
  'cview',
  'answers',
  'nntp',
  'posting',
  'host',
  'bolero',
  'organization',
  'network',
  'lines',
  'sean',
  'gum',
  'writes',
  'stupid',
  'question',
  'cview',
  'run',
  'get',
  'still',
  'need',
  'gif',
  'viewer',
  'linux',
  'without',
  'windows',
  'thanks',
  'ho',
  'boy',
  'way',
  'hell',
  'going',
  'able',
  'view',
  'gifs',
  'graphics',
  'linux',
  'without',
  'windows',
  'love',
  'linux',
  'easy',
  'learn',
  'want',
  'text',
  'okay',
  'linux',
  'want',
  'text',
  'graphics',
  'linux',
  'windows',
  'simple',
  'painless',
  'required',
  'windows',
  'want',
  'graphics',
  'includes',
  'fancy',
  'word',
  'processors',
  'like',
  'doc',
  'image',
  'viewers',
  'like',
  'xv',
  'etc'],
 ['good',
  'hockey',
  'bad',
  'hockey',
  'organization',
  'western',
  'kentucky',
  'university',
  'bowling',
  'green',
  'ky',
  'lines',
  'article',
  'thomas',
  'darling',
  'writes',
  'joseph',
  'dakes',
  'writes',
  'article',
  'article',
  'prefer',
  'miami',
  'colons',
  'headline',
  'flames',
  'blow',
  'colons',
  'would',
  'kevin',
  'dineen',
  'play',
  'miami',
  'colons',
  'flyers',
  'fan',
  'resent',
  'making',
  'kevin',
  'dineen',
  'butt',
  'jokes',
  'aw',
  'take',
  'moment',
  'digest',
  'im',
  'sure',
  'youll',
  'see',
  'humour',
  'thomas',
  'darling',
  'cellar',
  'bbs',
  'public',
  'access',
  'system',
  'genie',
  'darling',
  'facthq',
  'truth',
  'thru',
  'technology',
  'anybody',
  'problems',
  'following',
  'thread',
  'sure',
  'ask',
  'origonal',
  'poster',
  'rectify',
  'koz',
  'lets',
  'go',
  'caps'],
 ['daniel',
  'chungwan',
  'kim',
  'wanted',
  'super',
  'mm',
  'projector',
  'sounds',
  'keywords',
  'wanted',
  'nntp',
  'posting',
  'host',
  'rs',
  'ecs',
  'rpi',
  'lines',
  'looking',
  'super',
  'mm',
  'projector',
  'sounds',
  'anybody',
  'one',
  'sale',
  'semd',
  'email',
  'name',
  'brand',
  'condition',
  'projector',
  'price',
  'sale',
  'must',
  'sound',
  'capability',
  'danny'],
 ['nhlpa',
  'poll',
  'partial',
  'stats',
  'results',
  'organization',
  'mount',
  'royal',
  'college',
  'calgary',
  'alberta',
  'lines',
  'article',
  'young',
  'soo',
  'che',
  'writes',
  'people',
  'send',
  'polls',
  'take',
  'closer',
  'look',
  'njd',
  'deep',
  'team',
  'two',
  'capable',
  'goalies',
  'excellent',
  'forwards',
  'defensemen',
  'shooter',
  'richer',
  'around',
  'todd',
  'chef',
  'stasny',
  'master',
  'thousand',
  'dishes',
  'power',
  'play',
  'kevin',
  'todd',
  'oiler',
  'one',
  'months',
  'closely',
  'follow',
  'devils',
  'anyway',
  'jeez',
  'alan'],
 ['bob',
  'shaw',
  'summary',
  'xon',
  'nntp',
  'posting',
  'host',
  'bobasun',
  'organization',
  'ti',
  'semiconductor',
  'process',
  'design',
  'center',
  'lines',
  'hi',
  'folks',
  'thanks',
  'ones',
  'replied',
  'however',
  'problem',
  'turned',
  'simple',
  'xresources',
  'space',
  'xterm',
  'font',
  'removing',
  'xrdb',
  'fixed',
  'problem',
  'also',
  'symptom',
  'users',
  'proper',
  'capitals',
  'xterm',
  'font',
  'thanks',
  'bob'],
 ['richard',
  'ramirez',
  'summary',
  'borland',
  'microsoft',
  'database',
  'libraries',
  'reply',
  'richard',
  'ramirez',
  'organization',
  'iowa',
  'state',
  'university',
  'lines',
  'could',
  'post',
  'description',
  'objectbase',
  'chosen',
  'product',
  'thanks'],
 ['gordon',
  'banks',
  'tuberculosis',
  'reply',
  'gordon',
  'banks',
  'organization',
  'univ',
  'pittsburgh',
  'computer',
  'science',
  'lines',
  'article',
  'jonathan',
  'lin',
  'writes',
  'wondering',
  'steps',
  'taken',
  'prevent',
  'spread',
  'multi',
  'drug',
  'resistant',
  'tuberculosis',
  'ive',
  'heard',
  'places',
  'thinking',
  'incarcerating',
  'disease',
  'doesnt',
  'violate',
  'civil',
  'rights',
  'individuals',
  'legal',
  'precedents',
  'action',
  'knows',
  'legal',
  'climate',
  'tremendous',
  'legal',
  'precendent',
  'forcibly',
  'quarantining',
  'tb',
  'patients',
  'sanitariums',
  'yrs',
  'ago',
  'done',
  'time',
  'done',
  'sporadically',
  'along',
  'patients',
  'wont',
  'take',
  'medicine',
  'tb',
  'may',
  'find',
  'surveilence',
  'public',
  'health',
  'department',
  'may',
  'find',
  'legal',
  'power',
  'insist',
  'make',
  'clinic',
  'visits',
  'gordon',
  'banks',
  'jxp',
  'skepticism',
  'chastity',
  'intellect',
  'shameful',
  'surrender',
  'soon'],
 ['mika',
  'iisakkila',
  'dx',
  'reply',
  'message',
  'apr',
  'gmt',
  'nntp',
  'posting',
  'host',
  'lk',
  'hp',
  'hut',
  'fi',
  'organization',
  'helsinki',
  'university',
  'technology',
  'finland',
  'lines',
  'robert',
  'desonia',
  'writes',
  'heard',
  'rumor',
  'well',
  'story',
  'differed',
  'intel',
  'coming',
  'tripling',
  'clock',
  'clone',
  'ibm',
  'rumour',
  'ibms',
  'clock',
  'tripling',
  'chip',
  'seen',
  'trade',
  'show',
  'last',
  'fall',
  'comdex',
  'something',
  'wasnt',
  'people',
  'drooling',
  'chip',
  'realize',
  'fpu',
  'like',
  'sx',
  'evil',
  'marketing',
  'ploy',
  'tm',
  'intel',
  'dont',
  'internal',
  'cache',
  'probably',
  'saved',
  'silicon',
  'real',
  'estate',
  'went',
  'contract',
  'ibm',
  'allowed',
  'sell',
  'chips',
  'third',
  'parties',
  'chips',
  'unlikely',
  'become',
  'available',
  'non',
  'ibm',
  'machines',
  'course',
  'nothing',
  'prevents',
  'companies',
  'implementing',
  'dx',
  'nobody',
  'hasnt',
  'even',
  'come',
  'real',
  'dx',
  'fpu',
  'clone',
  'yet',
  'although',
  'amd',
  'soon',
  'segmented',
  'memory',
  'helps',
  'structure',
  'software'],
 ['dale',
  'stephenson',
  'giants',
  'gm',
  'quinn',
  'genius',
  'article',
  'pegasus',
  'steph',
  'organization',
  'university',
  'illinois',
  'dept',
  'comp',
  'sci',
  'urbana',
  'il',
  'lines',
  'tom',
  'schroeder',
  'writes',
  'nelson',
  'lu',
  'writes',
  'time',
  'span',
  'braves',
  'developed',
  'john',
  'smoltz',
  'tom',
  'glavine',
  'steve',
  'avery',
  'david',
  'justice',
  'ron',
  'gant',
  'jeff',
  'blauser',
  'among',
  'others',
  'avery',
  'believe',
  'came',
  'phillies',
  'jeff',
  'blauser',
  'avery',
  'overall',
  'pick',
  'braves',
  'behind',
  'mark',
  'lewis',
  'think',
  'john',
  'smoltz',
  'came',
  'braves',
  'tigers',
  'developed',
  'braves',
  'jeff',
  'blauser',
  'isnt',
  'bad',
  'player',
  'dale',
  'stephenson',
  'baseball',
  'fanatic',
  'considered',
  'good',
  'look',
  'wise',
  'especially',
  'overburdened',
  'information',
  'golden',
  'kimball'],
 ['mark',
  'dubin',
  'ringing',
  'ears',
  'originator',
  'keywords',
  'ringing',
  'ears',
  'sleep',
  'depression',
  'nntp',
  'posting',
  'host',
  'spot',
  'colorado',
  'reply',
  'organization',
  'univ',
  'colorado',
  'boulder',
  'lines',
  'jim',
  'fare',
  'writes',
  'friend',
  'mine',
  'trouble',
  'ears',
  'ringing',
  'etc',
  'folks',
  'faq',
  'tinnitus',
  'yet',
  'lo',
  'ong',
  'time',
  'sufferer',
  'tinnitus',
  'neuroscientist',
  'looked',
  'literature',
  'carefully',
  'believe',
  'following',
  'reasonable',
  'conclusions',
  'millions',
  'people',
  'suffer',
  'chronic',
  'tinnitus',
  'cause',
  'understood',
  'accepted',
  'treatment',
  'cures',
  'experimental',
  'treatments',
  'may',
  'helped',
  'people',
  'bit',
  'reports',
  'even',
  'anecdotal',
  'massive',
  'good',
  'results',
  'experimental',
  'drugs',
  'people',
  'chronic',
  'loud',
  'tinnitus',
  'noise',
  'blocking',
  'get',
  'sleep',
  'sudden',
  'onset',
  'loud',
  'tinnitus',
  'caused',
  'injuries',
  'sometimes',
  'abates',
  'goes',
  'away',
  'months',
  'aspirin',
  'well',
  'known',
  'exacerbate',
  'tinnitus',
  'people',
  'national',
  'association',
  'tinnitus',
  'sufferers',
  'us',
  'one',
  'usually',
  'gets',
  'used',
  'especially',
  'concentrating',
  'something',
  'else',
  'tinnitus',
  'becomes',
  'unnoticed',
  'stress',
  'lack',
  'sleep',
  'make',
  'tinnitus',
  'annoying',
  'sometimes',
  'im',
  'sure',
  'us',
  'wish',
  'cure',
  'mark',
  'dubin',
  'ol',
  'professor'],
 ['patterson',
  'george',
  'power',
  'signal',
  'surges',
  'home',
  'organization',
  'bellcore',
  'livingston',
  'nj',
  'lines',
  'article',
  'david',
  'vanderbyl',
  'writes',
  'scott',
  'dorsey',
  'writes',
  'car',
  'unfortunately',
  'much',
  'computer',
  'junk',
  'hood',
  'astonishingly',
  'sensitive',
  'rfi',
  'hmmmmm',
  'possibilities',
  'police',
  'pursuit',
  'vehicle',
  'maybe',
  'bombard',
  'high',
  'energy',
  'rfi',
  'right',
  'cops',
  'buying',
  'antique',
  'muscle',
  'cars',
  'chase',
  'cars',
  'otherwise',
  'police',
  'cars',
  'die',
  'get',
  'attention',
  'large',
  'animal',
  'elephant',
  'bureaucracy',
  'helps',
  'know',
  'george',
  'patterson',
  'part',
  'feels',
  'pain',
  'sure',
  'though',
  'want',
  'full',
  'attention',
  'kelvin',
  'throop'],
 ['sharon',
  'paulson',
  'food',
  'related',
  'seizures',
  'organization',
  'nasa',
  'langley',
  'research',
  'center',
  'hampton',
  'va',
  'usa',
  'lines',
  'nntp',
  'posting',
  'host',
  'cmb',
  'larc',
  'nasa',
  'gov',
  'reply',
  'message',
  'sat',
  'apr',
  'gmt',
  'article',
  'steve',
  'dyer',
  'writes',
  'newsgroups',
  'sci',
  'med',
  'path',
  'news',
  'larc',
  'nasa',
  'gov',
  'saimiri',
  'primate',
  'wisc',
  'zaphod',
  'mps',
  'ohio',
  'state',
  'uwm',
  'cs',
  'utexas',
  'uunet',
  'think',
  'com',
  'hsdndev',
  'spdcc',
  'dyer',
  'steve',
  'dyer',
  'organization',
  'dyer',
  'computer',
  'consulting',
  'cambridge',
  'references',
  'date',
  'sat',
  'apr',
  'gmt',
  'lines',
  'article',
  'mark',
  'robert',
  'thorson',
  'writes',
  'remember',
  'hearing',
  'years',
  'back',
  'new',
  'therapy',
  'hyperactivity',
  'involved',
  'aggressively',
  'eliminating',
  'artificial',
  'coloring',
  'flavoring',
  'diet',
  'theory',
  'backed',
  'interesting',
  'anecdotal',
  'results',
  'certain',
  'people',
  'way',
  'sensitive',
  'chemicals',
  'people',
  'dont',
  'remember',
  'connection',
  'made',
  'seizures',
  'certainly',
  'couldnt',
  'hurt',
  'try',
  'natural',
  'diet',
  'yeah',
  'feingold',
  'diet',
  'load',
  'crap',
  'children',
  'diagnosed',
  'add',
  'placed',
  'diet',
  'show',
  'improvement',
  'intellectual',
  'social',
  'skills',
  'fact',
  'continue',
  'decline',
  'course',
  'parents',
  'enthusiastic',
  'approach',
  'lap',
  'expense',
  'childrens',
  'development',
  'much',
  'value',
  'interesting',
  'anecdotal',
  'results',
  'people',
  'believe',
  'anything',
  'want',
  'steve',
  'dyer',
  'aka',
  'ima',
  'harvard',
  'rayssd',
  'linus',
  'spdcc',
  'dyer',
  'thanks',
  'interest',
  'problem',
  'mine',
  'dont',
  'think',
  'reaction',
  'sugar',
  'junk',
  'food',
  'per',
  'se',
  'since',
  'kathryn',
  'never',
  'shown',
  'signs',
  'hyperactivity',
  'changes',
  'behavior',
  'response',
  'food',
  'always',
  'calm',
  'dare',
  'say',
  'neat',
  'smart',
  'kid',
  'fact',
  'happened',
  'eating',
  'two',
  'sugar',
  'coated',
  'cereals',
  'made',
  'kellogs',
  'makes',
  'think',
  'might',
  'allergic',
  'reaction',
  'something',
  'coating',
  'cereals',
  'four',
  'us',
  'immediate',
  'family',
  'kathryn',
  'shows',
  'least',
  'signs',
  'hay',
  'fever',
  'running',
  'nose',
  'itchy',
  'eyes',
  'etc',
  'lot',
  'allergies',
  'family',
  'history',
  'including',
  'weird',
  'food',
  'allergies',
  'nuts',
  'mushrooms',
  'anyway',
  'next',
  'trip',
  'endocrinologist',
  'check',
  'body',
  'chemistry',
  'far',
  'sugar',
  'coated',
  'cereals',
  'seizures',
  'either',
  'every',
  'day',
  'goes',
  'without',
  'one',
  'makes',
  'heave',
  'sigh',
  'relief',
  'thanks',
  'sharon',
  'paulson',
  'nasa',
  'langley',
  'research',
  'center',
  'bldg',
  'mailstop',
  'work',
  'hampton',
  'virginia',
  'home'],
 ['mike',
  'sixsmith',
  'please',
  'post',
  'organization',
  'university',
  'east',
  'anglia',
  'lines',
  'ed',
  'green',
  'pixel',
  'cruncher',
  'writes',
  'article',
  'mike',
  'sixsmith',
  'writes',
  'ed',
  'green',
  'pixel',
  'cruncher',
  'writes',
  'us',
  'argue',
  'gyroscopes',
  'etc',
  'throughly',
  'understand',
  'technique',
  'countersteering',
  'including',
  'ones',
  'think',
  'countersteer',
  'way',
  'corner',
  'underlying',
  'physics',
  'different',
  'matter',
  'need',
  'taught',
  'beginners',
  'agreed',
  'countersteering',
  'technique',
  'taught',
  'understanding',
  'technique',
  'one',
  'develop',
  'maximally',
  'effective',
  'emergency',
  'avoidance',
  'manuvers',
  'really',
  'thing',
  'disagree',
  'maybe',
  'agree',
  'disagree',
  'still',
  'think',
  'telling',
  'newbies',
  'steer',
  'left',
  'turn',
  'right',
  'unnecessarily',
  'confusing',
  'theyll',
  'anyway',
  'get',
  'bike',
  'ride',
  'damn',
  'thing',
  'know',
  'exactly',
  'whats',
  'happening',
  'gits',
  'havent',
  'clue',
  'understanding',
  'physics',
  'traction',
  'fine',
  'cannot',
  'see',
  'detailed',
  'theory',
  'like',
  'place',
  'motorcyle',
  'training',
  'course',
  'need',
  'know',
  'maximum',
  'traction',
  'obtained',
  'tyre',
  'beginning',
  'slide',
  'road',
  'violent',
  'disagreement',
  'state',
  'true',
  'insufficient',
  'form',
  'traction',
  'management',
  'policy',
  'available',
  'traction',
  'increases',
  'applied',
  'normal',
  'force',
  'ie',
  'traction',
  'available',
  'front',
  'wheel',
  'increases',
  'weight',
  'shifts',
  'braking',
  'forces',
  'correspondingly',
  'decreases',
  'rear',
  'thus',
  'technique',
  'applying',
  'brakes',
  'easing',
  'rear',
  'increasing',
  'pressure',
  'front',
  'best',
  'learned',
  'understanding',
  'weight',
  'shift',
  'available',
  'traction',
  'jeez',
  'ed',
  'started',
  'talking',
  'traction',
  'management',
  'policies',
  'thought',
  'making',
  'weird',
  'reference',
  'looking',
  'railway',
  'locomotives',
  'official',
  'line',
  'though',
  'doubts',
  'front',
  'brake',
  'applied',
  'first',
  'followed',
  'rear',
  'brake',
  'idea',
  'avoid',
  'locking',
  'rear',
  'weight',
  'transfer',
  'takes',
  'place',
  'practice',
  'suspect',
  'people',
  'describe',
  'saying',
  'brake',
  'tire',
  'begins',
  'slide',
  'next',
  'useless',
  'advice',
  'newbie',
  'go',
  'slide',
  'tire',
  'find',
  'also',
  'gives',
  'zero',
  'information',
  'develop',
  'braking',
  'technique',
  'changes',
  'braking',
  'corresponding',
  'weight',
  'shift',
  'develop',
  'dont',
  'slide',
  'tyre',
  'way',
  'knowing',
  'whether',
  'youve',
  'achieved',
  'maximum',
  'braking',
  'im',
  'suggesting',
  'always',
  'aim',
  'brake',
  'hard',
  'possibly',
  'want',
  'find',
  'limits',
  'machine',
  'go',
  'beyond',
  'case',
  'maximum',
  'braking',
  'suggested',
  'aim',
  'keep',
  'wheels',
  'point',
  'sliding',
  'youll',
  'exactly',
  'suggest'],
 ['guy',
  'kuo',
  'quadra',
  'memory',
  'install',
  'faq',
  'organization',
  'university',
  'washington',
  'lines',
  'nntp',
  'posting',
  'host',
  'carson',
  'washington',
  'summary',
  'instructions',
  'quadra',
  'memory',
  'installation',
  'keywords',
  'memory',
  'quadra',
  'install',
  'turning',
  'faq',
  'violate',
  'quadra',
  'warranty',
  'install',
  'memory',
  'insert',
  'usual',
  'disclaimer',
  'remove',
  'top',
  'lid',
  'machine',
  'see',
  'floppy',
  'disk',
  'hard',
  'drive',
  'mounted',
  'plastic',
  'tower',
  'follow',
  'usual',
  'anti',
  'static',
  'precautions',
  'course',
  'make',
  'sure',
  'machine',
  'unplug',
  'wall',
  'monitor',
  'power',
  'supply',
  'cords',
  'back',
  'mac',
  'remove',
  'power',
  'supply',
  'pulling',
  'plastic',
  'interlocking',
  'tab',
  'tower',
  'forward',
  'simultaneously',
  'pulling',
  'power',
  'supply',
  'straight',
  'tab',
  'piece',
  'plastic',
  'left',
  'posterior',
  'aspect',
  'tower',
  'extends',
  'downward',
  'hook',
  'power',
  'supply',
  'may',
  'also',
  'feel',
  'horseshoe',
  'shaped',
  'piece',
  'right',
  'portion',
  'power',
  'supply',
  'leave',
  'alone',
  'plastic',
  'tab',
  'tower',
  'need',
  'release',
  'look',
  'rear',
  'tower',
  'assembly',
  'see',
  'flat',
  'ribbon',
  'scsi',
  'connector',
  'hard',
  'drive',
  'power',
  'cable',
  'flat',
  'ribbon',
  'cable',
  'leading',
  'floppy',
  'drive',
  'disconnect',
  'motherboard',
  'hard',
  'drive',
  'power',
  'cable',
  'connector',
  'tab',
  'must',
  'squeezed',
  'release',
  'unplug',
  'drive',
  'activity',
  'led',
  'clear',
  'plastic',
  'mount',
  'look',
  'posterior',
  'cylindrical',
  'section',
  'plastic',
  'tower',
  'phillips',
  'head',
  'screw',
  'base',
  'remove',
  'taking',
  'care',
  'drop',
  'case',
  'bit',
  'gummy',
  'glue',
  'screwdriver',
  'helpful',
  'remove',
  'tower',
  'assembly',
  'pulling',
  'medially',
  'plastic',
  'tab',
  'right',
  'side',
  'tower',
  'tab',
  'prevents',
  'tower',
  'sliding',
  'posteriorly',
  'slide',
  'entire',
  'tower',
  'assembly',
  'cm',
  'posteriorly',
  'lift',
  'tower',
  'assembly',
  'straight',
  'case',
  'congratulations',
  'gained',
  'access',
  'machines',
  'simm',
  'slots',
  'six',
  'big',
  'slots',
  'vram',
  'one',
  'usually',
  'must',
  'install',
  'six',
  'gain',
  'useful',
  'video',
  'modes',
  'simms',
  'ram',
  'vram',
  'installed',
  'chips',
  'facing',
  'front',
  'motherboard',
  'four',
  'smaller',
  'sockets',
  'front',
  'ram',
  'simms',
  'install',
  'simms',
  'sets',
  'four',
  'sockets',
  'sure',
  'seat',
  'simms',
  'squarely',
  'firmly',
  'fully',
  'upright',
  'position',
  'reinstall',
  'tower',
  'assembly',
  'first',
  'placing',
  'right',
  'wall',
  'tower',
  'right',
  'wall',
  'case',
  'tower',
  'assembly',
  'cm',
  'posterior',
  'intended',
  'position',
  'lower',
  'tower',
  'assembly',
  'place',
  'maintaining',
  'contact',
  'right',
  'wall',
  'case',
  'fully',
  'slide',
  'tower',
  'assembly',
  'anteriorly',
  'clicks',
  'place',
  'reconnect',
  'motherboard',
  'ends',
  'cables',
  'dontt',
  'forget',
  'floppy',
  'drive',
  'cable',
  'replace',
  'phillips',
  'head',
  'screw',
  'drop',
  'power',
  'supply',
  'straight',
  'place',
  'clicks',
  'plug',
  'hard',
  'drive',
  'activity',
  'light',
  'back',
  'clear',
  'plastic',
  'mount',
  'guy',
  'kuo'],
 ['massimo',
  'rossi',
  'ide',
  'scsi',
  'controller',
  'organization',
  'computer',
  'science',
  'dep',
  'milan',
  'university',
  'lines',
  'hi',
  'folks',
  'hd',
  'first',
  'seagate',
  'mb',
  'second',
  'cdc',
  'mb',
  'future',
  'domain',
  'ram',
  'id',
  'like',
  'change',
  'controller',
  'ide',
  'scsi',
  'buy',
  'new',
  'one',
  'ram',
  'least',
  'mb',
  'could',
  'controll',
  'companies',
  'many',
  'possible',
  'via',
  'hw',
  'via',
  'sw',
  'select',
  'divide',
  'ram',
  'cache',
  'hd',
  'example',
  'using',
  'dos',
  'one',
  'hd',
  'id',
  'like',
  'reserve',
  'ram',
  'cache',
  'thanks',
  'write'],
 ['steve',
  'novak',
  'old',
  'predictions',
  'laugh',
  'article',
  'advtech',
  'apr',
  'organization',
  'west',
  'advanced',
  'technologies',
  'lines',
  'nntp',
  'posting',
  'host',
  'jaynes',
  'advtech',
  'uswest',
  'com',
  'edward',
  'ted',
  'fischer',
  'writes',
  'robert',
  'hite',
  'writes',
  'dead',
  'wrong',
  'last',
  'time',
  'checked',
  'jim',
  'fregosi',
  'still',
  'managing',
  'phillies',
  'quite',
  'fine',
  'job',
  'thank',
  'best',
  'record',
  'baseball',
  'look',
  'asshole',
  'got',
  'confused',
  'somebody',
  'else',
  'didnt',
  'flame',
  'would',
  'appreciate',
  'extended',
  'courtesy',
  'problem',
  'hites',
  'post',
  'wasnt',
  'flame',
  'correction',
  'error',
  'reply',
  'flame',
  'dont',
  'know',
  'everything',
  'world',
  'surprise',
  'least',
  'steve',
  'novak',
  'ban',
  'bomb',
  'ban',
  'pope'],
 ['hugh',
  'johnson',
  'quicktime',
  'movie',
  'available',
  'article',
  'mustang',
  'johnsh',
  'organization',
  'rensselaer',
  'polytechnic',
  'institute',
  'lines',
  'nntp',
  'posting',
  'host',
  'mustang',
  'stu',
  'rpi',
  'article',
  'wrote',
  'ive',
  'used',
  'recently',
  'released',
  'macintosh',
  'application',
  'mpeg',
  'quicktime',
  'convert',
  'excellent',
  'mpeg',
  'canyon',
  'mpg',
  'quicktime',
  'movie',
  'anyone',
  'would',
  'want',
  'movie',
  'perfectly',
  'able',
  'convert',
  'thought',
  'id',
  'let',
  'net',
  'know',
  'id',
  'glad',
  'mail',
  'copies',
  'mine',
  'movie',
  'conversion',
  'took',
  'close',
  'six',
  'hours',
  'poor',
  'little',
  'iicx',
  'words',
  'unless',
  'youve',
  'got',
  'quadra',
  'might',
  'want',
  'tie',
  'machine',
  'converting',
  'file',
  'movie',
  'fast',
  'fly',
  'fractal',
  'generated',
  'canyon',
  'landscape',
  'movie',
  'seconds',
  'long',
  'uses',
  'compact',
  'video',
  'compressor',
  'quicktime',
  'movie',
  'looks',
  'okay',
  'bit',
  'displays',
  'looks',
  'absolutely',
  'awesome',
  'bit',
  'displays',
  'id',
  'happy',
  'mail',
  'movie',
  'first',
  'people',
  'ask',
  'caveat',
  'need',
  'able',
  'receive',
  'nine',
  'megabyte',
  'mail',
  'message',
  'movie',
  'stuff',
  'ited',
  'seven',
  'megs',
  'binhex',
  'ruined',
  'party',
  'people',
  'want',
  'movie',
  'evidence',
  'net',
  'needs',
  'dedicated',
  'quicktime',
  'ftp',
  'archive',
  'site',
  'cmon',
  'someones',
  'gotta',
  'spare',
  'gb',
  'drive',
  'okay',
  'ive',
  'received',
  'whole',
  'lot',
  'requests',
  'movie',
  'simplicitys',
  'sake',
  'cant',
  'mail',
  'ive',
  'already',
  'received',
  'edt',
  'tuesday',
  'maybe',
  'itll',
  'pop',
  'site',
  'sooner',
  'later',
  'hugh',
  'johnson',
  'rensselaer',
  'polytechnic',
  'institute',
  'welcome',
  'macintosh',
  'troy',
  'new',
  'york',
  'usa'],
 ['gary',
  'gendel',
  'need',
  'find',
  'number',
  'phone',
  'lin',
  'organization',
  'mentor',
  'graphics',
  'corp',
  'ic',
  'group',
  'lines',
  'distribution',
  'world',
  'reply',
  'nntp',
  'posting',
  'host',
  'garyg',
  'warren',
  'mentorg',
  'com',
  'article',
  'scott',
  'dorsey',
  'writes',
  'article',
  'writes',
  'greetings',
  'situation',
  'phone',
  'jack',
  'mounted',
  'wall',
  'dont',
  'know',
  'number',
  'line',
  'dont',
  'want',
  'call',
  'operator',
  'place',
  'trace',
  'question',
  'certain',
  'device',
  'find',
  'number',
  'line',
  'call',
  'friend',
  'long',
  'distance',
  'collect',
  'ask',
  'speak',
  'operator',
  'asks',
  'wont',
  'ask',
  'operator',
  'leave',
  'number',
  'shell',
  'read',
  'clear',
  'scott',
  'even',
  'easier',
  'area',
  'supports',
  'dial',
  'recording',
  'recites',
  'number',
  'phone',
  'techs',
  'verify',
  'installed',
  'line',
  'gary',
  'gendel',
  'vice',
  'president',
  'current',
  'consulting',
  'assignment',
  'genashor',
  'corp',
  'mentor',
  'graphics',
  'corporation',
  'piney',
  'woods',
  'drive',
  'independence',
  'boulevard',
  'belle',
  'mead',
  'nj',
  'warren',
  'nj',
  'phone',
  'phone',
  'fax',
  'email'],
 ['kenneth',
  'steven',
  'simon',
  'help',
  'need',
  'modem',
  'info',
  'duo',
  'summary',
  'hard',
  'get',
  'modem',
  'nntp',
  'posting',
  'host',
  'silver',
  'ucs',
  'indiana',
  'organization',
  'indiana',
  'university',
  'lines',
  'joel',
  'siegel',
  'writes',
  'jt',
  'writes',
  'hi',
  'alternatives',
  'express',
  'modem',
  'duo',
  'owners',
  'want',
  'go',
  'least',
  'baud',
  'every',
  'place',
  'town',
  'says',
  'back',
  'ordered',
  'part',
  'reason',
  'want',
  'laptop',
  'mac',
  'remote',
  'terminal',
  'wherever',
  'really',
  'would',
  'hate',
  'wait',
  'months',
  'get',
  'modem',
  'settle',
  'baud',
  'apple',
  'didnt',
  'put',
  'good',
  'product',
  'id',
  'gladly',
  'take',
  'business',
  'bit',
  'ataris',
  'think',
  'situation',
  'express',
  'modem',
  'inexusable',
  'business',
  'ive',
  'mine',
  'order',
  'since',
  'january',
  'apple',
  'finally',
  'called',
  'last',
  'week',
  'tell',
  'second',
  'week',
  'may',
  'meantime',
  'ive',
  'stuck',
  'duo',
  'without',
  'connectability',
  'needed',
  'im',
  'sure',
  'plenty',
  'people',
  'bite',
  'back',
  'citing',
  'sorts',
  'reasons',
  'apple',
  'right',
  'least',
  'justified',
  'im',
  'crabby',
  'consumer',
  'order',
  'duo',
  'modem',
  'thats',
  'product',
  'expect',
  'oh',
  'well',
  'like',
  'limited',
  'computer',
  'biz',
  'remember',
  'miata',
  'came',
  'cabbage',
  'patch',
  'dolls',
  'well',
  'want',
  'toy',
  'kenneth',
  'simon',
  'dept',
  'sociology',
  'indiana',
  'university',
  'internet',
  'bitnet'],
 ['eric',
  'bosco',
  'quickly',
  'switch',
  'windows',
  'screen',
  'resolutions',
  'nntp',
  'posting',
  'host',
  'monica',
  'us',
  'oracle',
  'com',
  'reply',
  'organization',
  'oracle',
  'corp',
  'redwood',
  'shores',
  'ca',
  'distribution',
  'na',
  'disclaimer',
  'message',
  'written',
  'unauthenticated',
  'user',
  'oracle',
  'corporation',
  'opinions',
  'expressed',
  'user',
  'necessarily',
  'oracle',
  'lines',
  'article',
  'idealistic',
  'cynic',
  'writes',
  'someone',
  'tell',
  'switch',
  'windows',
  'screen',
  'resolution',
  'quickly',
  'easily',
  'know',
  'go',
  'back',
  'install',
  'id',
  'really',
  'like',
  'ability',
  'change',
  'couple',
  'startup',
  'configuration',
  'files',
  'resolution',
  'changed',
  'already',
  'video',
  'drivers',
  'need',
  'system',
  'isnt',
  'problem',
  'thanks',
  'sean',
  'sean',
  'gilley',
  'address',
  'others',
  'bounce',
  'shareware',
  'program',
  'called',
  'switch',
  'zip',
  'dont',
  'remember',
  'wuarchive',
  'wustl',
  'ftp',
  'cica',
  'indiana',
  'easy',
  'job',
  'problem',
  'eric'],
 ['reply',
  'kevin',
  'donoghue',
  'kevin',
  'donoghue',
  'line',
  'mail',
  'lines',
  'looking',
  'program',
  'called',
  'vbreader',
  'line',
  'mail',
  'reader',
  'windows',
  'using',
  'qwk',
  'mail',
  'packets',
  'anyone',
  'knows',
  'good',
  'qwk',
  'mail',
  'readers',
  'please',
  'let',
  'know',
  'thanks',
  'kevin',
  'kevin',
  'donoghue',
  'internet',
  'donoghue',
  'international',
  'love',
  'hear',
  'sins',
  'love',
  'act',
  'grand',
  'ave',
  'suite',
  'william',
  'shakespear',
  'ventura',
  'ca'],
 ['dane',
  'butzer',
  'large',
  'commercial',
  'keys',
  'organization',
  'ohio',
  'state',
  'university',
  'dept',
  'electrical',
  'engineering',
  'lines',
  'typical',
  'sizes',
  'keys',
  'commercial',
  'secret',
  'key',
  'algorithms',
  'know',
  'des',
  'bits',
  'tripple',
  'des',
  'bits',
  'idea',
  'bits',
  'anything',
  'made',
  'us',
  'bit',
  'keys',
  'anything',
  'anywhere',
  'larger',
  'keys',
  'ive',
  'heard',
  'rc',
  'scaled',
  'arbitrarily',
  'large',
  'keys',
  'actually',
  'implemented',
  'anywhere',
  'finally',
  'anyone',
  'even',
  'concieve',
  'time',
  'place',
  'bit',
  'keys',
  'arent',
  'sufficient',
  'certainly',
  'cant',
  'even',
  'trillion',
  'keys',
  'second',
  'would',
  'take',
  'billion',
  'years',
  'search',
  'one',
  'billionth',
  'keys',
  'space',
  'thanks',
  'dane'],
 ['steve',
  'pope',
  'msg',
  'sensitivity',
  'superstition',
  'organization',
  'berkeley',
  'erl',
  'lines',
  'nntp',
  'posting',
  'host',
  'zion',
  'berkeley',
  'betty',
  'harvey',
  'writes',
  'researcher',
  'medical',
  'person',
  'amazes',
  'cant',
  'find',
  'scientific',
  'known',
  'fact',
  'automatically',
  'assume',
  'reaction',
  'psychological',
  'mind',
  'boggling',
  'simply',
  'stated',
  'result',
  'bankrupt',
  'ethics',
  'healthcare',
  'scientific',
  'medicine',
  'industries',
  'america',
  'fed',
  'massive',
  'waste',
  'fraud',
  'costing',
  'us',
  'gnp',
  'support',
  'industries',
  'delivering',
  'marginal',
  'health',
  'care',
  'community',
  'unfortunately',
  'clinton',
  'plan',
  'whatever',
  'form',
  'takes',
  'probably',
  'cost',
  'us',
  'even',
  'greater',
  'sum',
  'bleah',
  'steve'],
 ['lowell',
  'reiter',
  'duo',
  'crashes',
  'aftersleep',
  'looks',
  'like',
  'apple',
  'bug',
  'lines',
  'organization',
  'tufts',
  'university',
  'medford',
  'mysstem',
  'crashes',
  'aftwer',
  'sleepp',
  'enabler',
  'appletalk',
  'filesharing',
  'expressmodem',
  'lowell',
  'lowell',
  'reiter',
  'need',
  'vacation',
  'tufts',
  'university',
  'internet',
  'account'],
 ['xv',
  'ms',
  'dos',
  'mail',
  'organization',
  'eicn',
  'switzerland',
  'lines',
  'hi',
  'recently',
  'found',
  'xv',
  'ms',
  'dos',
  'subdirectory',
  'gnu',
  'cc',
  'gnuish',
  'frequently',
  'xv',
  'sun',
  'spark',
  'station',
  'never',
  'problems',
  'start',
  'computer',
  'option',
  'display',
  'help',
  'menu',
  'start',
  'gif',
  'file',
  'hard',
  'disk',
  'turns',
  'seconds',
  'prompt',
  'come',
  'back',
  'computer',
  'little',
  'copro',
  'mega',
  'rams',
  'tseng',
  'running',
  'ms',
  'dos',
  'himem',
  'sys',
  'emm',
  'sys',
  'go',
  'exe',
  'driver',
  'run',
  'somenone',
  'know',
  'solution',
  'run',
  'xv',
  'help',
  'would',
  'apprecied',
  'thanx',
  'advance',
  'pascal',
  'perret',
  'ecole',
  'dingénieur',
  'ets',
  'available',
  'time',
  'le',
  'locle',
  'suisse',
  'enjoy',
  'computer'],
 ['tom',
  'wagner',
  'wizzard',
  'old',
  'audio',
  'visual',
  'equipment',
  'nanaimo',
  'campus',
  'suggestions',
  'audio',
  'relays',
  'organization',
  'malaspina',
  'college',
  'lines',
  'article',
  'aaron',
  'lung',
  'writes',
  'article',
  'billy',
  'quinn',
  'writes',
  'built',
  'little',
  'project',
  'using',
  'radio',
  'shack',
  'vdc',
  'relays',
  'switch',
  'audio',
  'got',
  'pretty',
  'bad',
  'clicks',
  'thing',
  'switched',
  'common',
  'things',
  'one',
  'supposed',
  'using',
  'relays',
  'nothing',
  'seemed',
  'get',
  'rid',
  'clicks',
  'question',
  'good',
  'relay',
  'relay',
  'circuit',
  'switching',
  'audio',
  'noise',
  'kind',
  'audio',
  'lines',
  'appreciate',
  'advice',
  'references',
  'advice',
  'also',
  'exact',
  'part',
  'numbers',
  'company',
  'names',
  'etc',
  'relays',
  'help',
  'switching',
  'high',
  'level',
  'signals',
  'low',
  'level',
  'signals',
  'like',
  'pre',
  'amp',
  'level',
  'signals',
  'also',
  'clicks',
  'mentioning',
  'big',
  'clack',
  'happens',
  'switches',
  'refering',
  'contact',
  'bounce',
  'driving',
  'relays',
  'ttl',
  'gate',
  'output',
  'switching',
  'transistor',
  'relays',
  'connected',
  'driving',
  'need',
  'specifics',
  'answer',
  'question',
  'general',
  'rule',
  'relay',
  'cleanly',
  'switch',
  'audio',
  'try',
  'tranfer',
  'circuit',
  'contacts',
  'noise',
  'hear',
  'due',
  'momentary',
  'opening',
  'closing',
  'path',
  'noiseless',
  'way',
  'transfering',
  'audio',
  'ground',
  'circuit',
  'high',
  'impedance',
  'audio',
  'circuits',
  'resistive',
  'constructed',
  'close',
  'characteristic',
  'impedance',
  'circuit',
  'grounding',
  'imputs',
  'connected',
  'transfers',
  'audio',
  'low',
  'impedance',
  'circuits',
  'transformers',
  'usually',
  'used',
  'inputs',
  'shorted',
  'grounded',
  'secondaries',
  'paralleled',
  'characteristic',
  'impedance',
  'sometimes',
  'necessary',
  'actually',
  'switch',
  'audio',
  'second',
  'contact',
  'used',
  'momentarily',
  'short',
  'circuit',
  'output',
  'duration',
  'switching',
  'time',
  'telephone',
  'relays',
  'handy',
  'contacts',
  'adjusted',
  'make',
  'break',
  'vica',
  'versa',
  'havent',
  'seen',
  'years',
  'nowadys',
  'switching',
  'done',
  'electronically',
  'op',
  'amps',
  'etc',
  'novel',
  'circuit',
  'used',
  'build',
  'primitive',
  'optical',
  'isolator',
  'consists',
  'resistive',
  'photocell',
  'lamp',
  'packaged',
  'tube',
  'lamp',
  'cell',
  'high',
  'resistance',
  'turn',
  'lamp',
  'resistance',
  'lowers',
  'passing',
  'audio',
  'device',
  'switches',
  'audio',
  'varying',
  'lamp',
  'resistance',
  'give',
  'remote',
  'volume',
  'control',
  'variable',
  'resisters',
  'mixer',
  'lots',
  'luck',
  'tom',
  'tom',
  'wagner',
  'audio',
  'visual',
  'technician',
  'malaspina',
  'college',
  'nanaimo',
  'british',
  'columbia',
  'loc',
  'fax',
  'callsign',
  'gda',
  'weapon',
  'kentucky',
  'rifle',
  'snail',
  'mail',
  'site',
  'rr',
  'nanaimo',
  'british',
  'columbia',
  'canada',
  'recyle',
  'keep',
  'everything',
  'standard',
  'disclaimers',
  'apply'],
 ['brian',
  'cash',
  'ancient',
  'islamic',
  'rituals',
  'nntp',
  'posting',
  'host',
  'crchh',
  'organization',
  'bnr',
  'inc',
  'lines',
  'article',
  'fred',
  'rice',
  'writes',
  'discussion',
  'pros',
  'cons',
  'sex',
  'outside',
  'marriage',
  'evidence',
  'opinions',
  'moment',
  'generalities',
  'cite',
  'example',
  'read',
  'th',
  'century',
  'percentage',
  'youth',
  'people',
  'general',
  'suffer',
  'depression',
  'steadily',
  'climbing',
  'western',
  'societies',
  'probably',
  'reading',
  'referred',
  'particularly',
  'usa',
  'similarly',
  'one',
  'detect',
  'trend',
  'towards',
  'greater',
  'occurrence',
  'sex',
  'outside',
  'marriage',
  'century',
  'western',
  'societies',
  'particularly',
  'sexual',
  'revolution',
  'even',
  'think',
  'otherwise',
  'sexual',
  'revolution',
  'would',
  'possible',
  'particularly',
  'gradual',
  'weakening',
  'christianity',
  'consequently',
  'christian',
  'moral',
  'teachings',
  'sex',
  'outside',
  'marriage',
  'propose',
  'two',
  'trends',
  'greater',
  'level',
  'general',
  'depression',
  'society',
  'psychological',
  'problems',
  'greater',
  'sexual',
  'promiscuity',
  'linked',
  'latter',
  'prime',
  'cause',
  'former',
  'cannot',
  'provide',
  'evidence',
  'beyond',
  'stage',
  'whole',
  'thesis',
  'seems',
  'reasonable',
  'request',
  'people',
  'ponder',
  'upon',
  'fred',
  'rice',
  'muslim',
  'giving',
  'point',
  'view',
  'think',
  'big',
  'leap',
  'sex',
  'depression',
  'one',
  'example',
  'sex',
  'depression',
  'seriously',
  'promiscuity',
  'decline',
  'depression',
  'might',
  'reasonable',
  'say',
  'depression',
  'promiscuity',
  'think',
  'depression',
  'likely',
  'come',
  'emotional',
  'problems',
  'relationships',
  'family',
  'job',
  'friends',
  'promiscuity',
  'used',
  'escape',
  'since',
  'see',
  'marriage',
  'civil',
  'religious',
  'bond',
  'rather',
  'emotional',
  'bond',
  'dont',
  'see',
  'problem',
  'sex',
  'outside',
  'marriage',
  'long',
  'commitment',
  'devotion',
  'expected',
  'married',
  'couple',
  'course',
  'opinion',
  'brian'],
 ['tavares',
  'rewording',
  'second',
  'amendment',
  'ideas',
  'organization',
  'stratus',
  'computer',
  'inc',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'rocket',
  'sw',
  'stratus',
  'com',
  'article',
  'foxvog',
  'douglas',
  'writes',
  'article',
  'tavares',
  'writes',
  'article',
  'john',
  'lawrence',
  'rutledge',
  'writes',
  'massive',
  'destructive',
  'power',
  'many',
  'modern',
  'weapons',
  'makes',
  'cost',
  'accidental',
  'crimial',
  'usage',
  'weapons',
  'great',
  'weapons',
  'mass',
  'destruction',
  'need',
  'control',
  'government',
  'individual',
  'access',
  'would',
  'result',
  'needless',
  'deaths',
  'millions',
  'makes',
  'right',
  'people',
  'keep',
  'bear',
  'many',
  'modern',
  'weapons',
  'non',
  'existant',
  'thanks',
  'stating',
  'youre',
  'coming',
  'needless',
  'say',
  'disagree',
  'every',
  'count',
  'believe',
  'individuals',
  'right',
  'weapons',
  'mass',
  'destruction',
  'find',
  'hard',
  'believe',
  'would',
  'support',
  'neighbors',
  'right',
  'keep',
  'nuclear',
  'weapons',
  'biological',
  'weapons',
  'nerve',
  'gas',
  'property',
  'cannot',
  'even',
  'agree',
  'keeping',
  'weapons',
  'mass',
  'destruction',
  'hands',
  'individuals',
  'hope',
  'us',
  'dont',
  'sign',
  'blank',
  'checks',
  'doug',
  'foxvog',
  'says',
  'weapons',
  'mass',
  'destruction',
  'means',
  'cbw',
  'nukes',
  'sarah',
  'brady',
  'says',
  'weapons',
  'mass',
  'destruction',
  'means',
  'street',
  'sweeper',
  'shotguns',
  'semi',
  'automatic',
  'sks',
  'rifles',
  'john',
  'lawrence',
  'rutledge',
  'says',
  'weapons',
  'mass',
  'destruction',
  'immediately',
  'follows',
  'us',
  'thousands',
  'people',
  'killed',
  'year',
  'handguns',
  'number',
  'easily',
  'reduced',
  'putting',
  'reasonable',
  'restrictions',
  'rutledge',
  'mean',
  'term',
  'believe',
  'speak',
  'company',
  'write',
  'today',
  'special',
  'investors',
  'packet'],
 ['declan',
  'hughes',
  'manual',
  'eprom',
  'blower',
  'logical',
  'devices',
  'prompro',
  'wanted',
  'nntp',
  'posting',
  'host',
  'jupiter',
  'ral',
  'rpi',
  'organization',
  'rensselaer',
  'polytechnic',
  'institute',
  'troy',
  'ny',
  'distribution',
  'usa',
  'lines',
  'eprom',
  'blower',
  'made',
  'logical',
  'devices',
  'model',
  'name',
  'prompro',
  'lost',
  'manual',
  'anyone',
  'spare',
  'manual',
  'would',
  'like',
  'sell',
  'declan',
  'hughes'],
 ['proper',
  'gun',
  'control',
  'proper',
  'gun',
  'cont',
  'john',
  'kim',
  'organization',
  'harvard',
  'university',
  'science',
  'center',
  'nntp',
  'posting',
  'host',
  'scws',
  'harvard',
  'lines',
  'article',
  'kirk',
  'hays',
  'writes',
  'id',
  'like',
  'point',
  'error',
  'terminator',
  'began',
  'posting',
  'six',
  'months',
  'purchased',
  'first',
  'firearm',
  'according',
  'private',
  'email',
  'cant',
  'produce',
  'archived',
  'posting',
  'earlier',
  'january',
  'purchased',
  'first',
  'firearm',
  'march',
  'guess',
  'seemed',
  'like',
  'years',
  'kirk',
  'hays',
  'nra',
  'life',
  'seventh',
  'generation',
  'first',
  'read',
  'consulted',
  'rec',
  'guns',
  'summer',
  'purchased',
  'first',
  'firearm',
  'early',
  'march',
  'year',
  'lack',
  'desire',
  'firearm',
  'understand',
  'could',
  'purchased',
  'rifle',
  'shotgun',
  'didnt',
  'want',
  'one',
  'case',
  'kim'],
 ['mark',
  'wayne',
  'blunier',
  'organization',
  'university',
  'illinois',
  'urbana',
  'lines',
  'craig',
  'powderkeg',
  'deforest',
  'writes',
  'youre',
  'planning',
  'making',
  'long',
  'drives',
  'probably',
  'fine',
  'esp',
  'summer',
  'car',
  'youre',
  'making',
  'short',
  'drives',
  'stick',
  'several',
  'years',
  'ago',
  'gm',
  'trouble',
  'rings',
  'sticking',
  'diesel',
  'traced',
  'cause',
  'oil',
  'would',
  'honor',
  'warranty',
  'work',
  'used',
  'memory',
  'serves',
  'okd',
  'though',
  'mark'],
 ['stewart',
  'clamen',
  'binyamin',
  'netanyahu',
  'cnn',
  'tonight',
  'reply',
  'message',
  'thu',
  'apr',
  'gmt',
  'originator',
  'nntp',
  'posting',
  'host',
  'byron',
  'sp',
  'cs',
  'cmu',
  'reply',
  'organization',
  'school',
  'computer',
  'science',
  'carnegie',
  'mellon',
  'university',
  'lines',
  'article',
  'martin',
  'kaye',
  'writes',
  'great',
  'interview',
  'benjamin',
  'netanyahu',
  'cnn',
  'larry',
  'king',
  'live',
  'guy',
  'knows',
  'talking',
  'truely',
  'charismatic',
  'articulate',
  'intelligent',
  'demonstrates',
  'real',
  'leadership',
  'qualities',
  'agree',
  'wish',
  'liked',
  'politics',
  'stewart',
  'clamen',
  'internet',
  'school',
  'computer',
  'science',
  'uucp',
  'carnegie',
  'mellon',
  'university',
  'phone',
  'forbes',
  'avenue',
  'fax',
  'pittsburgh',
  'pa',
  'usa'],
 ['dan',
  'johnson',
  'intolerance',
  'eternal',
  'life',
  'etc',
  'reply',
  'organization',
  'sun',
  'microsystems',
  'lines',
  'apologize',
  'article',
  'slightly',
  'confusing',
  'late',
  'origonal',
  'draft',
  'didnt',
  'make',
  'moderators',
  'quote',
  'screens',
  'violence',
  'remember',
  'article',
  'responding',
  'still',
  'make',
  'sence',
  'article',
  'james',
  'sledd',
  'writes',
  'hi',
  'xian',
  'netters',
  'god',
  'bless',
  'hello',
  'heathan',
  'netters',
  'feel',
  'left',
  'deletia',
  'table',
  'content',
  'intro',
  'homosexuality',
  'incredibly',
  'chopped',
  'post',
  'deletia',
  'incorrect',
  'attributions',
  'uh',
  'attributions',
  'wrong',
  'responding',
  'article',
  'dan',
  'johnson',
  'st',
  'one',
  'article',
  'jayne',
  'kulikauskas',
  'writes',
  'deletia',
  'free',
  'gifts',
  'speil',
  'nuked',
  'moderator',
  'fiat',
  'find',
  'dissatisfied',
  'little',
  'purposes',
  'manufacture',
  'little',
  'cosmic',
  'sense',
  'ah',
  'sence',
  'lives',
  'cosmic',
  'sence',
  'cosmicly',
  'dont',
  'even',
  'exist',
  'practical',
  'purposes',
  'hardly',
  'cosmic',
  'sence',
  'stuff',
  'guide',
  'life',
  'would',
  'say',
  'dont',
  'bother',
  'luckily',
  'mortals',
  'many',
  'sences',
  'scale',
  'talk',
  'human',
  'sence',
  'big',
  'purposes',
  'even',
  'greatest',
  'great',
  'pharos',
  'long',
  'gone',
  'pyramids',
  'historical',
  'oddities',
  'worn',
  'wind',
  'eventually',
  'turned',
  'dust',
  'influence',
  'aristotle',
  'confucious',
  'alexander',
  'ceasar',
  'countless',
  'others',
  'still',
  'us',
  'although',
  'works',
  'perished',
  'changed',
  'course',
  'history',
  'humanity',
  'exists',
  'deeds',
  'cannot',
  'said',
  'come',
  'nothing',
  'even',
  'utterly',
  'forgotten',
  'mankind',
  'one',
  'day',
  'perish',
  'one',
  'day',
  'surely',
  'well',
  'unless',
  'believe',
  'second',
  'coming',
  'time',
  'make',
  'difference',
  'without',
  'transcends',
  'physical',
  'without',
  'god',
  'pointless',
  'end',
  'end',
  'must',
  'end',
  'point',
  'muster',
  'end',
  'comes',
  'nobody',
  'ask',
  'gee',
  'dont',
  'think',
  'james',
  'sledds',
  'deeds',
  'gonna',
  'make',
  'much',
  'difference',
  'ulitmately',
  'ya',
  'know',
  'already',
  'made',
  'difference',
  'great',
  'small',
  'end',
  'must',
  'ends',
  'eternal',
  'worthwhile',
  'people',
  'able',
  'live',
  'little',
  'purposes',
  'success',
  'money',
  'power',
  'effecting',
  'change',
  'helping',
  'others',
  'suffice',
  'little',
  'eye',
  'beholder',
  'course',
  'suppose',
  'never',
  'think',
  'cosmic',
  'scale',
  'least',
  'able',
  'put',
  'minds',
  'dont',
  'doubt',
  'thought',
  'cosmic',
  'scale',
  'seem',
  'mean',
  'much',
  'us',
  'today',
  'comforting',
  'know',
  'reality',
  'illusion',
  'would',
  'find',
  'comforting',
  'perhaps',
  'merely',
  'definitions',
  'heres',
  'think',
  'relevant',
  'terms',
  'reality',
  'real',
  'illusion',
  'real',
  'seems',
  'real',
  'objectively',
  'existing',
  'reality',
  'illusion',
  'would',
  'mean',
  'real',
  'real',
  'seems',
  'objectively',
  'exists',
  'objectively',
  'exist',
  'seem',
  'objectively',
  'exist',
  'conclude',
  'unless',
  'want',
  'get',
  'contradiction',
  'things',
  'objectively',
  'exist',
  'problem',
  'would',
  'like',
  'say',
  'objectively',
  'exist',
  'nothing',
  'else',
  'cogito',
  'ergo',
  'sum',
  'perhaps',
  'mean',
  'rather',
  'mean',
  'objective',
  'reality',
  'unreachable',
  'humans',
  'bad',
  'far',
  'know',
  'true',
  'true',
  'reality',
  'underneath',
  'physical',
  'spirit',
  'reality',
  'illusion',
  'isnt',
  'true',
  'reality',
  'illusion',
  'true',
  'reality',
  'spirit',
  'doenst',
  'make',
  'spirit',
  'illusion',
  'well',
  'distinctly',
  'confused',
  'getting',
  'positively',
  'buddhist',
  'world',
  'school',
  'sorts',
  'learn',
  'grow',
  'souls',
  'mature',
  'one',
  'hell',
  'statement',
  'although',
  'perhaps',
  'true',
  'mean',
  'imply',
  'intended',
  'please',
  'show',
  'true',
  'please',
  'explain',
  'give',
  'purpose',
  'anything',
  'gives',
  'purpose',
  'little',
  'purposes',
  'wouldnt',
  'world',
  'school',
  'intent',
  'idea',
  'make',
  'world',
  'preparation',
  'greater',
  'purpose',
  'rather',
  'purpose',
  'takes',
  'pressure',
  'pressure',
  'necessary',
  'make',
  'life',
  'success',
  'human',
  'terms',
  'youre',
  'really',
  'learn',
  'necessary',
  'success',
  'human',
  'terms',
  'unless',
  'goals',
  'either',
  'include',
  'require',
  'achived',
  'indeed',
  'many',
  'people',
  'set',
  'goals',
  'include',
  'success',
  'human',
  'terms',
  'understand',
  'check',
  'yer',
  'buddhist',
  'monk',
  'type',
  'guy',
  'nirvana',
  'thing',
  'important',
  'progress',
  'grow',
  'persist',
  'learn',
  'love',
  'others',
  'express',
  'love',
  'especially',
  'dificult',
  'honest',
  'effort',
  'rewarded',
  'god',
  'knows',
  'limitations',
  'learning',
  'love',
  'goal',
  'happens',
  'fail',
  'goal',
  'god',
  'mysterious',
  'purpose',
  'deletia',
  'question',
  'immortailty',
  'answer',
  'deleted',
  'mostly',
  'quote',
  'two',
  'serious',
  'questions',
  'invitations',
  'discussion',
  'nature',
  'eternal',
  'life',
  'mortals',
  'locked',
  'space',
  'time',
  'conceive',
  'possible',
  'answer',
  'best',
  'metaphor',
  'analogy',
  'question',
  'best',
  'metaphor',
  'ill',
  'crack',
  'nature',
  'eternal',
  'life',
  'neatly',
  'described',
  'name',
  'concept',
  'life',
  'without',
  'death',
  'life',
  'without',
  'end',
  'put',
  'together',
  'word',
  'describe',
  'cannot',
  'imagine',
  'metaphor',
  'adequate',
  'next',
  'eternity',
  'could',
  'understand',
  'either',
  'suspect',
  'dan',
  'johnson',
  'god',
  'said',
  'jeeze',
  'dull',
  'dull',
  'genesis',
  'opinions',
  'probably',
  'show',
  'know'],
 ['bernstein',
  'clipper',
  'chip',
  'technical',
  'details',
  'organization',
  'ir',
  'lines',
  'article',
  'steven',
  'bellovin',
  'writes',
  'nothing',
  'said',
  'k_p',
  'comes',
  'oh',
  'hellman',
  'said',
  'user',
  'get',
  'choose',
  'key',
  'thats',
  'key',
  'called',
  'k_p',
  'session',
  'key',
  'according',
  'hellman',
  'alice',
  'bob',
  'communicating',
  'clipper',
  'chip',
  'alice',
  'chooses',
  'key',
  'bob',
  'chooses',
  'key',
  'incompatible',
  'suggestion',
  'alice',
  'bob',
  'talking',
  'k_p',
  'chosen',
  'classical',
  'public',
  'key',
  'approaches',
  'protocol',
  'key',
  'management',
  'description',
  'published',
  'far',
  'either',
  'incomplete',
  'incorrect',
  'leaves',
  'idea',
  'system',
  'would',
  'actually',
  'hope',
  'cpsr',
  'foia',
  'request',
  'succeeds',
  'get',
  'full',
  'details',
  'dan'],
 ['ron',
  'baalke',
  'keeping',
  'spacecraft',
  'funding',
  'cuts',
  'organization',
  'jet',
  'propulsion',
  'laboratory',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'kelvin',
  'jpl',
  'nasa',
  'gov',
  'news',
  'software',
  'vax',
  'vms',
  'vnews',
  'article',
  'james',
  'thomas',
  'green',
  'writes',
  'spacecraft',
  'shut',
  'funding',
  'cuts',
  'example',
  'couldnt',
  'magellan',
  'told',
  'go',
  'safe',
  'mode',
  'stay',
  'bobbing',
  'venus',
  'low',
  'power',
  'mode',
  'maybe',
  'years',
  'funding',
  'gets',
  'restored',
  'economy',
  'gets',
  'better',
  'hopefully',
  'could',
  'turned',
  'problem',
  'political',
  'one',
  'technical',
  'one',
  'ron',
  'baalke',
  'jet',
  'propulsion',
  'lab',
  'telos',
  'aweto',
  'new',
  'zealand',
  'pasadena',
  'ca',
  'part',
  'caterpillar',
  'part',
  'vegetable'],
 ['ron',
  'albury',
  'procomm',
  'plus',
  'windows',
  'problems',
  'organization',
  'sdrc',
  'lines',
  'lot',
  'problems',
  'keeping',
  'hardware',
  'interrupts',
  'windows',
  'dos',
  'regardless',
  'communication',
  'software',
  'using',
  'try',
  'following',
  'turn',
  'disk',
  'write',
  'cache',
  'disk',
  'downloading',
  'cache',
  'save',
  'much',
  'grabs',
  'control',
  'machine',
  'takes',
  'long',
  'write',
  'disk',
  'loose',
  'characters',
  'different',
  'uart',
  'serial',
  'line',
  'old',
  'uarts',
  'buffer',
  'one',
  'character',
  'internally',
  'new',
  'uarts',
  'buffer',
  'plenty',
  'situations',
  'run',
  'windows',
  'msd',
  'exe',
  'find',
  'uart',
  'machine',
  'ron'],
 ['robert',
  'abbott',
  'water',
  'trunk',
  'probe',
  'nntp',
  'posting',
  'host',
  'priory',
  'organization',
  'tp',
  'performance',
  'lines',
  'article',
  'tommy',
  'szeto',
  'writes',
  'water',
  'gradually',
  'builds',
  'trunk',
  'friends',
  'ford',
  'probe',
  'every',
  'would',
  'remove',
  'spare',
  'scoop',
  'water',
  'plywood',
  'carpet',
  'cover',
  'trunk',
  'would',
  'guess',
  'usually',
  'happens',
  'good',
  'thunder',
  'storm',
  'qs',
  'common',
  'problem',
  'drain',
  'holes',
  'located',
  'hatch',
  'problem',
  'mx',
  'luckily',
  'fixed',
  'warranty',
  'think',
  'replaced',
  'tail',
  'light',
  'gasket',
  'check',
  'dealer',
  'known',
  'problem',
  'robert',
  'abbott'],
 ['peter',
  'clark',
  'jr',
  'flyers',
  'years',
  'biggest',
  'worst',
  'opinion',
  'organization',
  'distribution',
  'na',
  'keywords',
  'nhl',
  'awards',
  'lines',
  'article',
  'joseph',
  'dakes',
  'writes',
  'article',
  'peter',
  'clark',
  'jr',
  'writes',
  'roussel',
  'giving',
  'almost',
  'another',
  'goal',
  'game',
  'facing',
  'proportional',
  'number',
  'shots',
  'number',
  'minutes',
  'played',
  'havet',
  'actually',
  'checked',
  'believe',
  'faced',
  'lower',
  'quality',
  'opponent',
  'make',
  'less',
  'half',
  'goal',
  'game',
  'lower',
  'quality',
  'opponet',
  'argument',
  'immaterial',
  'neither',
  'roussel',
  'soderstrom',
  'say',
  'matter',
  'dineens',
  'decision',
  'words',
  'roussel',
  'shuts',
  'sharks',
  'soderstrom',
  'shuts',
  'penguins',
  'thats',
  'immaterial',
  'coaches',
  'decision',
  'come',
  'joe',
  'think',
  'youre',
  'saying',
  'played',
  'significant',
  'played',
  'whats',
  'irrelevent',
  'low',
  'gaa',
  'good',
  'teams',
  'better',
  'low',
  'gaa',
  'bad',
  'teams',
  'context',
  'comparing',
  'two',
  'goaltenders',
  'low',
  'gaa',
  'better',
  'higher',
  'gaa',
  'low',
  'gaa',
  'good',
  'teams',
  'much',
  'much',
  'better',
  'higher',
  'gaa',
  'bad',
  'teams',
  'context',
  'comparing',
  'two',
  'goaltenders',
  'fact',
  'matter',
  'despite',
  'last',
  'nights',
  'shutout',
  'doesnt',
  'takes',
  'last',
  'night',
  'due',
  'inept',
  'ranger',
  'team',
  'much',
  'roussels',
  'skill',
  'dont',
  'get',
  'shot',
  'away',
  'none',
  'one',
  'guy',
  'passes',
  'stops',
  'guy',
  'shoots',
  'roussels',
  'pad',
  'cmon',
  'pete',
  'rangers',
  'inept',
  'shutout',
  'shutout',
  'soderstroms',
  'masterpieces',
  'toronto',
  'mike',
  'emerich',
  'quoted',
  'saying',
  'didnt',
  'think',
  'leafs',
  'much',
  'offensive',
  'firepower',
  'past',
  'first',
  'line',
  'make',
  'soderstroms',
  'shutouts',
  'less',
  'impressive',
  'torontos',
  'lack',
  'offense',
  'yes',
  'absolutely',
  'context',
  'comparing',
  'two',
  'goaltenders',
  'course',
  'end',
  'season',
  'points',
  'points',
  'matter',
  'get',
  'score',
  'sheets',
  'shutouts',
  'shutouts',
  'youre',
  'coach',
  'deciding',
  'two',
  'goalies',
  'gm',
  'looking',
  'make',
  'trade',
  'got',
  'look',
  'deeper',
  'stat',
  'sheets',
  'didnt',
  'see',
  'second',
  'toronto',
  'game',
  'first',
  'one',
  'defensive',
  'masterpiece',
  'nothing',
  'game',
  'judge',
  'tommy',
  'soderstrom',
  'wasnt',
  'tested',
  'roussel',
  'ranger',
  'game',
  'two',
  'real',
  'scoring',
  'chances',
  'one',
  'made',
  'great',
  'play',
  'saved',
  'mistake',
  'player',
  'judging',
  'roussel',
  'game',
  'alone',
  'little',
  'go',
  'look',
  'tie',
  'habs',
  'saw',
  'goalie',
  'stand',
  'head',
  'get',
  'shutout',
  'goalie',
  'action',
  'roussel',
  'doesnt',
  'game',
  'like',
  'well',
  'look',
  'back',
  'november',
  'roussel',
  'goalie',
  'soderstrom',
  'treated',
  'heart',
  'ailment',
  'flyers',
  'finished',
  'november',
  'overall',
  'theres',
  'way',
  'knowing',
  'flyers',
  'would',
  'finished',
  'soderstom',
  'wasnt',
  'wearing',
  'oragne',
  'black',
  'im',
  'glad',
  'dont',
  'find',
  'anytime',
  'soon',
  'either',
  'one',
  'hell',
  'player',
  'would',
  'take',
  'roussel',
  'right',
  'still',
  'think',
  'dom',
  'takes',
  'guy',
  'outperformed',
  'hextall',
  'enough',
  'season',
  'make',
  'flyers',
  'management',
  'think',
  'way',
  'dont',
  'sure',
  'flyers',
  'management',
  'never',
  'says',
  'bad',
  'thing',
  'roussel',
  'dont',
  'say',
  'much',
  'good',
  'side',
  'either',
  'ive',
  'seen',
  'least',
  'two',
  'interviews',
  'every',
  'time',
  'farwell',
  'asked',
  'happy',
  'two',
  'good',
  'goaltenders',
  'tommy',
  'tommy',
  'oh',
  'yeah',
  'dom',
  'played',
  'well',
  'way',
  'final',
  'card',
  'monday',
  'night',
  'team',
  'picture',
  'chance',
  'flyers',
  'nhl',
  'hall',
  'fame',
  'kinda',
  'dull',
  'really',
  'handed',
  'team',
  'picture',
  'everybody',
  'walked',
  'pizza',
  'hut',
  'picture',
  'sold',
  'programs',
  'mid',
  'season',
  'names',
  'like',
  'benning',
  'kasper',
  'flyers',
  'choose',
  'fans',
  'received',
  'shirts',
  'backs',
  'winning',
  'recchis',
  'jersey',
  'breaking',
  'clubs',
  'single',
  'season',
  'point',
  'record',
  'would',
  'nice',
  'knowing',
  'luck',
  'would',
  'roussels',
  'mostly',
  'random',
  'seat',
  'locations',
  'given',
  'certain',
  'autographs',
  'team',
  'photos',
  'dont',
  'like',
  'method',
  'since',
  'ive',
  'seen',
  'guards',
  'help',
  'people',
  'get',
  'things',
  'like',
  'lindros',
  'pictures',
  'surely',
  'got',
  'hands',
  'autographed',
  'picture',
  'theyd',
  'hold',
  'em',
  'buddies',
  'pete',
  'clark'],
 ['fred',
  'mccall',
  'nuclear',
  'waste',
  'organization',
  'texas',
  'instruments',
  'inc',
  'lines',
  'paul',
  'dietz',
  'writes',
  'article',
  'fred',
  'mccall',
  'writes',
  'system',
  'would',
  'produce',
  'enough',
  'energy',
  'drive',
  'accelerator',
  'perhaps',
  'left',
  'high',
  'power',
  'mw',
  'cw',
  'quasi',
  'cw',
  'sharp',
  'proton',
  'beam',
  'would',
  'required',
  'appears',
  'achievable',
  'using',
  'linear',
  'accelerator',
  'biggest',
  'question',
  'mark',
  'would',
  'lead',
  'target',
  'chemistry',
  'line',
  'processing',
  'elements',
  'incinerated',
  'paul',
  'quite',
  'frankly',
  'ill',
  'believe',
  'really',
  'going',
  'work',
  'typical',
  'trash',
  'one',
  'needs',
  'process',
  'see',
  'put',
  'couple',
  'tons',
  'one',
  'end',
  'get',
  'relatively',
  'clean',
  'material',
  'end',
  'plus',
  'able',
  'run',
  'residual',
  'power',
  'sounds',
  'almost',
  'like',
  'perpetual',
  'motion',
  'doesnt',
  'fred',
  'honest',
  'thing',
  'would',
  'admit',
  'criticism',
  'scientific',
  'grounds',
  'invalid',
  'rather',
  'pretend',
  'actually',
  'talking',
  'engineering',
  'feasibility',
  'given',
  'postings',
  'cant',
  'say',
  'surprised',
  'though',
  'well',
  'pardon',
  'trying',
  'continue',
  'discussion',
  'rather',
  'tugging',
  'forelock',
  'dismay',
  'considered',
  'actually',
  'trying',
  'recover',
  'energy',
  'process',
  'least',
  'trying',
  'go',
  'right',
  'way',
  'energy',
  'curve',
  'put',
  'sackcloth',
  'ashes',
  'pretending',
  'anything',
  'pleased',
  'surprised',
  'though',
  'nothing',
  'like',
  'perpetual',
  'motion',
  'note',
  'didnt',
  'say',
  'perpetual',
  'motion',
  'even',
  'sounded',
  'like',
  'perpetual',
  'motion',
  'phrase',
  'sounds',
  'almost',
  'like',
  'perpetual',
  'motion',
  'least',
  'consider',
  'somewhat',
  'different',
  'propposition',
  'one',
  'elect',
  'criticize',
  'perhaps',
  'beg',
  'pardon',
  'precise',
  'language',
  'physics',
  'well',
  'understood',
  'energy',
  'comes',
  'fission',
  'actinides',
  'subcritical',
  'assemblies',
  'folks',
  'talked',
  'spallation',
  'reactors',
  'since',
  'pulsed',
  'spallation',
  'neutron',
  'sources',
  'today',
  'research',
  'tools',
  'accelerator',
  'design',
  'improving',
  'particularly',
  'superconducting',
  'accelerating',
  'cavities',
  'helps',
  'feasibility',
  'los',
  'alamos',
  'expertise',
  'high',
  'current',
  'accelerators',
  'lampf',
  'believe',
  'know',
  'talking',
  'believe',
  'process',
  'comes',
  'even',
  'close',
  'approaching',
  'technological',
  'economic',
  'feasibility',
  'given',
  'mixed',
  'nature',
  'trash',
  'run',
  'opposed',
  'costs',
  'separating',
  'things',
  'first',
  'different',
  'run',
  'actinide',
  'see',
  'dump',
  'tons',
  'one',
  'end',
  'pull',
  'relatively',
  'clean',
  'material',
  'costs',
  'technological',
  'risks',
  'etc',
  'taken',
  'account',
  'still',
  'class',
  'one',
  'idea',
  'throwing',
  'waste',
  'sun',
  'sure',
  'possible',
  'physics',
  'well',
  'understood',
  'really',
  'reasonable',
  'approach',
  'still',
  'wonder',
  'sort',
  'burning',
  'rate',
  'could',
  'get',
  'something',
  'like',
  'opposed',
  'kind',
  'energy',
  'would',
  'really',
  'recover',
  'opposed',
  'would',
  'cost',
  'build',
  'power',
  'without',
  'energy',
  'recovery',
  'talking',
  'ounces',
  'pounds',
  'tons',
  'grams',
  'kilograms',
  'metric',
  'tons',
  'si',
  'fans',
  'material',
  'talking',
  'days',
  'weeks',
  'months',
  'years',
  'days',
  'weeks',
  'months',
  'years',
  'si',
  'fans',
  'hmmm',
  'still',
  'using',
  'non',
  'decimated',
  'time',
  'scale',
  'see',
  'real',
  'reason',
  'accelerator',
  'breeders',
  'incinerators',
  'built',
  'isnt',
  'reason',
  'natural',
  'uranium',
  'still',
  'cheap',
  'geological',
  'disposal',
  'actinides',
  'looks',
  'technically',
  'reasonable',
  'insisting',
  'perfect',
  'safety',
  'people',
  'dont',
  'balls',
  'live',
  'real',
  'world',
  'mary',
  'shafer',
  'nasa',
  'ames',
  'dryden',
  'dont',
  'speak',
  'others',
  'dont',
  'speak'],
 ['mark',
  'baker',
  'arrogance',
  'christians',
  'reply',
  'mark',
  'baker',
  'organization',
  'national',
  'capital',
  'freenet',
  'lines',
  'follows',
  'moderator',
  'already',
  'answered',
  'charge',
  'arrogance',
  'ably',
  'could',
  'done',
  'confine',
  'answering',
  'charge',
  'illogic',
  'previous',
  'article',
  'geno',
  'says',
  'dont',
  'think',
  'belief',
  'right',
  'everyone',
  'elses',
  'belief',
  'wrong',
  'dont',
  'belief',
  'simply',
  'belief',
  'means',
  'unfortunatly',
  'seems',
  'christians',
  'taught',
  'think',
  'comes',
  'religion',
  'everyone',
  'western',
  'intellectual',
  'tradition',
  'taught',
  'think',
  'fundamental',
  'premis',
  'thing',
  'true',
  'converse',
  'necessarilly',
  'false',
  'without',
  'basic',
  'asumption',
  'theology',
  'science',
  'know',
  'alike',
  'impossible',
  'distinguish',
  'strong',
  'weak',
  'meanings',
  'word',
  'believe',
  'however',
  'weak',
  'sense',
  'means',
  'sure',
  'believe',
  'tom',
  'went',
  'library',
  'could',
  'gone',
  'track',
  'strong',
  'sense',
  'means',
  'certain',
  'basis',
  'thought',
  'believe',
  'nature',
  'operates',
  'according',
  'certain',
  'fundamental',
  'laws',
  'despite',
  'fact',
  'nature',
  'appears',
  'capricious',
  'unpredictable',
  'christian',
  'belief',
  'strong',
  'kind',
  'though',
  'christians',
  'may',
  'well',
  'hold',
  'beliefs',
  'weak',
  'kind',
  'number',
  'theological',
  'ecclesiological',
  'topics',
  'take',
  'extreme',
  'say',
  'religion',
  'one',
  'dont',
  'accept',
  'teachings',
  'wont',
  'saved',
  'note',
  'two',
  'separate',
  'ideas',
  'hold',
  'first',
  'view',
  'majority',
  'hold',
  'second',
  'matter',
  'pure',
  'logic',
  'christanity',
  'true',
  'hinduism',
  'example',
  'must',
  'necessarilly',
  'false',
  'insofar',
  'contradicts',
  'incompatible',
  'christaianity',
  'matter',
  'logic',
  'vice',
  'versa',
  'takes',
  'quite',
  'bit',
  'arrogance',
  'claim',
  'know',
  'god',
  'thinks',
  'wants',
  'arrogant',
  'claim',
  'know',
  'anyone',
  'thinks',
  'wants',
  'unless',
  'told',
  'christians',
  'believe',
  'god',
  'told',
  'us',
  'thinks',
  'wants',
  'especially',
  'based',
  'upon',
  'interpretation',
  'book',
  'christians',
  'base',
  'belief',
  'bible',
  'living',
  'tradition',
  'church',
  'established',
  'christ',
  'guided',
  'constantly',
  'holy',
  'spirit',
  'bible',
  'simply',
  'written',
  'core',
  'tradition',
  'logic',
  'statement',
  'faulty',
  'assumes',
  'two',
  'people',
  'differing',
  'beliefs',
  'cant',
  'correct',
  'depends',
  'mean',
  'differing',
  'believe',
  'tom',
  'six',
  'feet',
  'tall',
  'believe',
  'weighs',
  'pounds',
  'beliefs',
  'differ',
  'may',
  'right',
  'believe',
  'tom',
  'six',
  'feet',
  'tall',
  'beleive',
  'four',
  'foot',
  'nine',
  'one',
  'us',
  'least',
  'must',
  'wrong',
  'perception',
  'two',
  'people',
  'exactly',
  'alike',
  'two',
  'people',
  'perceive',
  'everything',
  'way',
  'believe',
  'one',
  'truth',
  'call',
  'gods',
  'truth',
  'universal',
  'truth',
  'call',
  'dont',
  'believe',
  'god',
  'presents',
  'truth',
  'think',
  'look',
  'see',
  'prayer',
  'meditation',
  'inspir',
  'ation',
  'dreams',
  'whatever',
  'people',
  'may',
  'perceive',
  'truth',
  'differently',
  'doesnt',
  'mean',
  'one',
  'wrong',
  'right',
  'thus',
  'believe',
  'single',
  'truth',
  'human',
  'find',
  'assert',
  'anyone',
  'believe',
  'find',
  'absolute',
  'truth',
  'mistaken',
  'short',
  'believe',
  'anyone',
  'share',
  'belief',
  'point',
  'wrong',
  'qed',
  'example',
  'take',
  'question',
  'glass',
  'half',
  'empty',
  'half',
  'full',
  'two',
  'different',
  'answers',
  'contradictory',
  'yet',
  'correct',
  'belief',
  'true',
  'require',
  'everyone',
  'elses',
  'belief',
  'wrong',
  'begin',
  'suspect',
  'real',
  'difficulty',
  'knowability',
  'truth',
  'simply',
  'language',
  'saying',
  'glass',
  'half',
  'empty',
  'contradiction',
  'statement',
  'half',
  'full',
  'fact',
  'expressed',
  'different',
  'words',
  'whole',
  'point',
  'phrase',
  'illustrate',
  'different',
  'ways',
  'pessimist',
  'optimist',
  'express',
  'fact',
  'course',
  'quite',
  'true',
  'different',
  'people',
  'may',
  'express',
  'belief',
  'different',
  'words',
  'also',
  'true',
  'may',
  'fail',
  'understand',
  'others',
  'words',
  'expressions',
  'belief',
  'may',
  'argue',
  'bitterly',
  'believe',
  'miles',
  'apart',
  'great',
  'scisms',
  'occurred',
  'way',
  'much',
  'ecumenical',
  'work',
  'done',
  'simply',
  'resolving',
  'differences',
  'language',
  'conceal',
  'agreement',
  'belief',
  'mean',
  'sense',
  'beliefs',
  'equally',
  'valid',
  'since',
  'beliefs',
  'people',
  'hold',
  'contradict',
  'beliefs',
  'people',
  'hold',
  'obfuscations',
  'language',
  'culture',
  'expression',
  'beliefs',
  'stripped',
  'away',
  'beliefs',
  'people',
  'hold',
  'must',
  'necessarilly',
  'false',
  'neither',
  'arrogant',
  'illogical',
  'say',
  'believe',
  'believe',
  'may',
  'correct',
  'equivalent',
  'one',
  'us',
  'wrong',
  'long',
  'hold',
  'respective',
  'beliefs',
  'must',
  'regard',
  'error',
  'mark',
  'baker',
  'task',
  'cut',
  'jungles',
  'irrigate',
  'deserts',
  'lewis'],
 ['alexander',
  'cerna',
  'sv',
  'transparent',
  'widgets',
  'organization',
  'internet',
  'lines',
  'nntp',
  'posting',
  'host',
  'enterpoop',
  'mit',
  'cc',
  'need',
  'write',
  'application',
  'annotation',
  'notes',
  'existing',
  'documents',
  'annotation',
  'could',
  'done',
  'several',
  'times',
  'different',
  'people',
  'idea',
  'something',
  'like',
  'several',
  'acetate',
  'transparencies',
  'stacked',
  'top',
  'user',
  'see',
  'ive',
  'seen',
  'something',
  'like',
  'done',
  'oclock',
  'client',
  'could',
  'someone',
  'please',
  'tell',
  'xt',
  'thank',
  'much'],
 ['steve',
  'manes',
  'gun',
  'control',
  'mad',
  'hell',
  'tv',
  'news',
  'organization',
  'manes',
  'associates',
  'nyc',
  'distribution',
  'na',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'steve',
  'kao',
  'wrote',
  'frank',
  'crary',
  'posted',
  'sure',
  'difference',
  'per',
  'capita',
  'crime',
  'rates',
  'predates',
  'gun',
  'control',
  'laws',
  'homicide',
  'rate',
  'england',
  'tenth',
  'america',
  'back',
  'anyone',
  'england',
  'could',
  'buy',
  'gun',
  'without',
  'paperwork',
  'steve',
  'manes',
  'asks',
  'got',
  'citation',
  'colin',
  'greenwood',
  'scotland',
  'yard',
  'study',
  'showed',
  'gun',
  'control',
  'effect',
  'crime',
  'murder',
  'rates',
  'uk',
  'book',
  'published',
  'london',
  'keegan',
  'paul',
  'name',
  'may',
  'misspelled',
  'others',
  'dispute',
  'like',
  'richard',
  'hofstadter',
  'america',
  'gun',
  'culture',
  'newton',
  'zimrings',
  'firearms',
  'violence',
  'american',
  'life',
  'statistics',
  'dissimilar',
  'cultures',
  'difficult',
  'quantify',
  'dont',
  'know',
  'anyone',
  'state',
  'gun',
  'control',
  'could',
  'effect',
  'homicide',
  'rates',
  'accidental',
  'handgun',
  'homicides',
  'america',
  'licensed',
  'weapons',
  'american',
  'children',
  'accidentally',
  'shot',
  'children',
  'last',
  'year',
  'handgun',
  'homicides',
  'great',
  'britain',
  'source',
  'national',
  'safety',
  'council',
  'please',
  'dictionary',
  'arguments',
  'rates',
  'vs',
  'total',
  'numbers',
  'okay',
  'theyre',
  'offered',
  'emphasis',
  'comparison',
  'mr',
  'greenwood',
  'believes',
  'brits',
  'much',
  'sober',
  'coordinated',
  'make',
  'mistakes',
  'id',
  'like',
  'introduce',
  'friend',
  'amanda',
  'brighton',
  'used',
  'pretty',
  'nice',
  'crystal',
  'place',
  'moved',
  'ive',
  'gotten',
  'used',
  'snide',
  'comments',
  'guests',
  'clown',
  'motif',
  'rubber',
  'wine',
  'glasses',
  'stephen',
  'manes',
  'manes',
  'associates',
  'new',
  'york',
  'ny',
  'usa'],
 ['paul',
  'ducklin',
  'need',
  'clipper',
  'cheap',
  'security',
  'organization',
  'csir',
  'south',
  'africa',
  'lines',
  'nntp',
  'posting',
  'host',
  'nuustak',
  'csir',
  'co',
  'za',
  'disclaimer',
  'none',
  'opions',
  'expressed',
  'herein',
  'official',
  'disclaimer',
  'opinions',
  'csir',
  'subsidiaries',
  'disclaimer',
  'dont',
  'freak',
  'anything',
  'graham',
  'toal',
  'writes',
  'someone',
  'tell',
  'hardware',
  'compression',
  'needed',
  'run',
  'digital',
  'speech',
  'think',
  'ive',
  'heard',
  'lets',
  'say',
  'bit',
  'samples',
  'would',
  'raw',
  'data',
  'corresponding',
  'sampling',
  'rate',
  'usable',
  'fancy',
  'compression',
  'need',
  'easy',
  'dsp',
  'olivetti',
  'quaderno',
  'example',
  'great',
  'kg',
  'subnotebook',
  'palmtop',
  'pc',
  'sorry',
  'plug',
  'folks',
  'olivetti',
  'dont',
  'seem',
  'good',
  'job',
  'marketing',
  'includes',
  'sound',
  'digitisation',
  'hardware',
  'provide',
  'vocoders',
  'dsp',
  'produce',
  'varous',
  'bit',
  'rates',
  'theres',
  'one',
  'gives',
  'pretty',
  'acceptable',
  'voice',
  'quality',
  'kbit',
  'sec',
  'right',
  'bis',
  'modem',
  'dsp',
  'play',
  'record',
  'time',
  'wouldnt',
  'need',
  'play',
  'two',
  'way',
  'radio',
  'also',
  'download',
  'code',
  'dsp',
  'subunit',
  'though',
  'youd',
  'need',
  'software',
  'development',
  'kit',
  'dsp',
  'question',
  'dunno',
  'wanted',
  'produce',
  'vocoder',
  'say',
  'speeds',
  'paul',
  'paul',
  'ducklin',
  'csir',
  'computer',
  'virus',
  'lab',
  'box',
  'pretoria',
  'africa'],
 ['rick',
  'roy',
  'card',
  'questions',
  'organization',
  'howtek',
  'inc',
  'reply',
  'rick',
  'roy',
  'mailer',
  'uaccess',
  'macintosh',
  'release',
  'lines',
  'im',
  'considering',
  'buying',
  'one',
  'offload',
  'internal',
  'video',
  'iici',
  'get',
  'bit',
  'color',
  'capability',
  'monitor',
  'whats',
  'deal',
  'come',
  'varying',
  'amounts',
  'ram',
  'max',
  'min',
  'much',
  'need',
  'bits',
  'bit',
  'depths',
  'supported',
  'one',
  'cards',
  'accelerated',
  'true',
  'modern',
  'accelerated',
  'video',
  'cards',
  'least',
  'general',
  'faster',
  'bit',
  'depths',
  'accelerated',
  'bit',
  'ive',
  'heard',
  'applications',
  'actually',
  'run',
  'slower',
  'card',
  'write',
  'directly',
  'screen',
  'something',
  'like',
  'frequent',
  'problem',
  'much',
  'slower',
  'didnt',
  'read',
  'system',
  'first',
  'came',
  'card',
  'incompatible',
  'corrected',
  'finder',
  'patch',
  'init',
  'kept',
  'compatible',
  'many',
  'apps',
  'incompatible',
  'games',
  'important',
  'non',
  'microsloth',
  'apps',
  'example',
  'strong',
  'opinion',
  'value',
  'someone',
  'position',
  'let',
  'know',
  'think',
  'reasonable',
  'price',
  'pay',
  'thanks',
  'lot',
  'input',
  'rick',
  'rick',
  'roy',
  'usenet',
  'america',
  'online',
  'qed',
  'disclaimer',
  'employers',
  'views',
  'orthogonal',
  'early',
  'bird',
  'got',
  'worms'],
 ['annick',
  'ansselin',
  'msg',
  'sensitivity',
  'superstition',
  'nntp',
  'posting',
  'host',
  'cortex',
  'physiol',
  'su',
  'oz',
  'au',
  'organization',
  'department',
  'physiology',
  'university',
  'sydney',
  'nsw',
  'australia',
  'lines',
  'steve',
  'giammarco',
  'writes',
  'add',
  'fuel',
  'flame',
  'war',
  'read',
  'years',
  'ago',
  'natural',
  'msg',
  'extracted',
  'sources',
  'mention',
  'cause',
  'reported',
  'aftereffects',
  'nasty',
  'artificial',
  'msg',
  'extracted',
  'coal',
  'tar',
  'whatever',
  'causes',
  'chinese',
  'restaurant',
  'syndrome',
  'find',
  'pretty',
  'hard',
  'believe',
  'anyone',
  'else',
  'heard',
  'msg',
  'mono',
  'sodium',
  'glutamate',
  'fairly',
  'straight',
  'forward',
  'compound',
  'pure',
  'source',
  'problem',
  'comment',
  'suggests',
  'impurities',
  'may',
  'cause',
  'experience',
  'msg',
  'effects',
  'part',
  'double',
  'blind',
  'study',
  'pure',
  'stuff',
  'caused',
  'rather',
  'severe',
  'effects',
  'possibly',
  'incorrect',
  'assumption',
  'msg',
  'foods',
  'made',
  'processing',
  'sugar',
  'beets',
  'true',
  'sources',
  'msg',
  'soya',
  'bean',
  'fermented',
  'cheeses',
  'mushrooms',
  'contain',
  'msg',
  'one',
  'folx',
  'react',
  'sometimes',
  'strongly',
  'msg',
  'however',
  'also',
  'react',
  'strongly',
  'sodium',
  'chloride',
  'table',
  'salt',
  'excess',
  'causes',
  'different',
  'symptoms',
  'except',
  'common',
  'one',
  'rapid',
  'heartbeat',
  'uncomfortable',
  'feeling',
  'pressure',
  'chest',
  'upper',
  'left',
  'quadrant',
  'symptoms',
  'numbness',
  'jaw',
  'muscles',
  'first',
  'instance',
  'followed',
  'arms',
  'legs',
  'headache',
  'lethargy',
  'unable',
  'keep',
  'awake',
  'think',
  'may',
  'well',
  'affect',
  'people',
  'differently'],
 ['kenneth',
  'finnegan',
  'article',
  'cs',
  'apr',
  'reply',
  'organization',
  'grumman',
  'data',
  'systems',
  'lines',
  'nntp',
  'posting',
  'host',
  'nntpd',
  'invader',
  'navo',
  'navy',
  'mil',
  'additional',
  'data',
  'point',
  'run',
  'castrol',
  'exclusively',
  'following',
  'cars',
  'rabbit',
  'scirocco',
  'rabbit',
  'bus',
  'beetle',
  'bus',
  'jetta',
  'gli',
  'ive',
  'never',
  'oil',
  'related',
  'problem',
  'disclaimer',
  'gets',
  'mighty',
  'hot',
  'kenneth'],
 ['mac',
  'os',
  'keith',
  'whitehead',
  'mailer',
  'rnmac',
  'buggy',
  'mean',
  'beta',
  'test',
  'version',
  'lines',
  'article',
  'write',
  'hillman',
  'wrote',
  'donpaul',
  'stephens',
  'kind',
  'slated',
  'wouldnt',
  'say',
  'going',
  'throw',
  'side',
  'get',
  'mac',
  'os',
  'quite',
  'point',
  'considdered',
  'fact',
  'apple',
  'release',
  'system',
  'ever',
  'current',
  'time',
  'release',
  'see',
  'shortly',
  'afterwards',
  'apple',
  'longer',
  'producing',
  'hardware',
  'look',
  'next',
  'nextstep',
  'see',
  'happens',
  'going',
  'pay',
  'apples',
  'prices',
  'get',
  'thing',
  'cheaper',
  'else',
  'heck',
  'get',
  'sun',
  'workstation',
  'cheaper',
  'quadra',
  'infact',
  'number',
  'times',
  'comes',
  'apple',
  'released',
  'windows',
  'released',
  'id',
  'behind',
  'missed',
  'boat',
  'apple',
  'continued',
  'development',
  'support',
  'fullest',
  'capabilities',
  'run',
  'faster',
  'windows',
  'must',
  'something',
  'significantly',
  'better',
  'windows',
  'os',
  'warrent',
  'released',
  'continued',
  'develeopment',
  'becomming',
  'less',
  'less',
  'profit',
  'hardware',
  'next',
  'step',
  'pun',
  'intended',
  'well',
  'sort',
  'make',
  'money',
  'software',
  'look',
  'microsoft',
  'think',
  'cant',
  'happen',
  'sell',
  'multiple',
  'pieces',
  'software',
  'one',
  'hardware',
  'platform',
  'also',
  'said',
  'windows',
  'nightmare',
  'programmers',
  'temptation',
  'sell',
  'system',
  'couple',
  'million',
  'dos',
  'users',
  'much',
  'apple',
  'million',
  'copies',
  'serious',
  'money',
  'thankfull',
  'dont',
  'get',
  'government',
  'pay'],
 ['jason',
  'chen',
  'glutamate',
  'nntp',
  'posting',
  'host',
  'wind',
  'bellcore',
  'com',
  'organization',
  'bellcore',
  'lines',
  'article',
  'keith',
  'lynch',
  'writes',
  'article',
  'lawrence',
  'sher',
  'writes',
  'med',
  'editorial',
  'dicarboxylic',
  'amino',
  'acid',
  'glutamate',
  'essential',
  'amino',
  'acid',
  'glutamate',
  'essential',
  'amino',
  'acid',
  'people',
  'survive',
  'quite',
  'well',
  'without',
  'ever',
  'eating',
  'contradiction',
  'essential',
  'sense',
  'body',
  'needs',
  'non',
  'essential',
  'sense',
  'body',
  'produce',
  'enough',
  'without',
  'supplement',
  'jason',
  'chen'],
 ['jack',
  'schmidling',
  'holocaust',
  'memorial',
  'museum',
  'costly',
  'dangerous',
  'mistake',
  'organization',
  'mcsnet',
  'contributor',
  'chicago',
  'il',
  'lines',
  'nntp',
  'posting',
  'host',
  'localhost',
  'mcs',
  'com',
  'article',
  'jake',
  'livni',
  'writes',
  'private',
  'contributions',
  'federal',
  'land',
  'hate',
  'mongering',
  'article',
  'devoid',
  'current',
  'historical',
  'fact',
  'intellectual',
  'content',
  'social',
  'value',
  'toilet',
  'goes',
  'know',
  'unbiased',
  'source',
  'nyt',
  'comes',
  'things',
  'concerning',
  'israel',
  'neither',
  'times',
  'trained',
  'seals',
  'responded',
  'thus',
  'far',
  'seem',
  'recognize',
  'statement',
  'private',
  'funds',
  'tax',
  'exmpt',
  'otherwords',
  'american',
  'taxpayers',
  'put',
  'least',
  'money',
  'finalyy',
  'federal',
  'land',
  'mitigate',
  'offensiveness',
  'alien',
  'monument',
  'dedicated',
  'perpetuating',
  'pitty',
  'continual',
  'flow',
  'tax',
  'money',
  'foreign',
  'entity',
  'federal',
  'land',
  'tax',
  'money',
  'could',
  'used',
  'commerate',
  'americans',
  'better',
  'yet',
  'house',
  'homeless',
  'americans'],
 ['andreas',
  'arff',
  'newsgroup',
  'split',
  'lines',
  'nntp',
  'posting',
  'host',
  'pc',
  'organization',
  'ostfold',
  'college',
  'article',
  'michael',
  'nerone',
  'writes',
  'michael',
  'nerone',
  'newsgroup',
  'split',
  'date',
  'apr',
  'article',
  'chris',
  'herringshaw',
  'writes',
  'ch',
  'concerning',
  'proposed',
  'newsgroup',
  'split',
  'personally',
  'ch',
  'favor',
  'learn',
  'awful',
  'lot',
  'aspects',
  'ch',
  'graphics',
  'reading',
  'group',
  'code',
  'hardware',
  'ch',
  'algorithms',
  'think',
  'making',
  'different',
  'groups',
  'ch',
  'wate',
  'result',
  'posts',
  'week',
  'per',
  'group',
  'ch',
  'kind',
  'like',
  'convenience',
  'one',
  'big',
  'forum',
  'ch',
  'discussing',
  'aspects',
  'graphics',
  'anyone',
  'else',
  'feel',
  'way',
  'ch',
  'curious',
  'must',
  'agree',
  'dizzying',
  'number',
  'amiga',
  'newsgroups',
  'already',
  'addition',
  'issues',
  'fall',
  'cleanly',
  'one',
  'categories',
  'also',
  'readily',
  'observable',
  'current',
  'spectrum',
  'amiga',
  'groups',
  'already',
  'plagued',
  'mega',
  'crossposting',
  'thus',
  'group',
  'split',
  'would',
  'likelihood',
  'bring',
  'structured',
  'environment',
  'michael',
  'nerone',
  'shall',
  'customary',
  'lack',
  'tact',
  'internet',
  'address',
  'since',
  'asked',
  'obliged',
  'pardon',
  'sagredo',
  'fictional',
  'char',
  'galileo',
  'maybe',
  'point',
  'talking',
  'amiga',
  'comp',
  'graphics',
  'arff',
  'also',
  'religous',
  'confessor',
  'mystery',
  'higher',
  'values',
  'whos',
  'birth',
  'mankind',
  'last',
  'builds',
  'upon',
  'indisputible',
  'often',
  'disregarded',
  'seldom',
  'hear',
  'beeing',
  'prized',
  'seldom',
  'hear',
  'seeing',
  'man',
  'prizeing',
  'sees',
  'per',
  'lagerkvist',
  'fist',
  'free',
  'translation',
  'swedish',
  'andreas',
  'arff'],
 ['malcusco',
  'arrogance',
  'christians',
  'organization',
  'university',
  'california',
  'san',
  'diego',
  'lines',
  'article',
  'pixie',
  'writes',
  'article',
  'pardon',
  'humble',
  'atheist',
  'exactly',
  'difference',
  'holding',
  'revealed',
  'truth',
  'blind',
  'faith',
  'basis',
  'regardless',
  'evidence',
  'may',
  'find',
  'contrary',
  'absolute',
  'truth',
  'fully',
  'expecting',
  'people',
  'believe',
  'arrogance',
  'sound',
  'like',
  'one',
  'pixie',
  'sincerely',
  'believe',
  'god',
  'exists',
  'follow',
  'blindly',
  'follow',
  'god',
  'blindly',
  'ever',
  'asked',
  'physically',
  'blind',
  'person',
  'follows',
  'seeing',
  'eye',
  'dog',
  'answer',
  'quite',
  'simple',
  'dog',
  'see',
  'blind',
  'person',
  'cannot',
  'acknowledge',
  'christian',
  'blind',
  'see',
  'see',
  'illusions',
  'well',
  'reality',
  'watched',
  'tv',
  'lately',
  'hear',
  'hear',
  'lies',
  'well',
  'truth',
  'listen',
  'radio',
  'read',
  'newspaper',
  'remember',
  'tastes',
  'well',
  'healthy',
  'rely',
  'one',
  'one',
  'see',
  'hear',
  'taste',
  'everything',
  'knows',
  'real',
  'god',
  'course',
  'may',
  'ask',
  'cannot',
  'trust',
  'senses',
  'know',
  'whether',
  'see',
  'hear',
  'god',
  'truth',
  'lie',
  'need',
  'faith',
  'saved',
  'must',
  'force',
  'believe',
  'god',
  'knows',
  'truth',
  'loves',
  'us',
  'enough',
  'share',
  'us',
  'even',
  'defies',
  'think',
  'know',
  'would',
  'created',
  'us',
  'love',
  'us',
  'enough',
  'help',
  'us',
  'world',
  'also',
  'trust',
  'experiences',
  'extent',
  'things',
  'defy',
  'seeming',
  'logic',
  'experience',
  'father',
  'commands',
  'see',
  'results',
  'long',
  'term',
  'find',
  'led',
  'proper',
  'direction',
  'even',
  'though',
  'feel',
  'right',
  'time',
  'works',
  'christians',
  'important',
  'exercises',
  'body',
  'make',
  'body',
  'strong',
  'excercises',
  'faith',
  'make',
  'faith',
  'strong',
  'one',
  'convert',
  'must',
  'choose',
  'follow',
  'god',
  'ever',
  'follow',
  'christians',
  'wish',
  'share',
  'love',
  'received',
  'god',
  'reject',
  'accept',
  'decision',
  'although',
  'always',
  'keep',
  'offer',
  'open',
  'really',
  'want',
  'find',
  'believe',
  'believe',
  'suggest',
  'try',
  'praying',
  'faith',
  'reading',
  'bible',
  'asking',
  'christians',
  'experiences',
  'personally',
  'may',
  'grow',
  'understand',
  'believe',
  'defiance',
  'logic',
  'world',
  'may',
  'lord',
  'bring',
  'peace',
  'malcusco'],
 ['serdar',
  'organization',
  'th',
  'dimension',
  'bbs',
  'lines',
  'nntp',
  'posting',
  'host',
  'cs',
  'utexas',
  'anal',
  'retentive',
  'wimp',
  'system',
  'fourd',
  'com',
  'phone',
  'cute',
  'quote',
  'computer',
  'means',
  'never',
  'say',
  'youre',
  'sorry'],
 ['ajerk',
  'organization',
  'th',
  'dimension',
  'bbs',
  'lines',
  'nntp',
  'posting',
  'host',
  'cs',
  'utexas',
  'good',
  'case',
  'rights',
  'abortion',
  'system',
  'fourd',
  'com',
  'phone',
  'cute',
  'quote',
  'computer',
  'means',
  'never',
  'say',
  'youre',
  'sorry'],
 ['organization',
  'university',
  'maine',
  'system',
  'grateful',
  'dead',
  'lines',
  'baseball',
  'fan',
  'fan',
  'mentioned',
  'band',
  'wondering',
  'anyone',
  'could',
  'clue',
  'whether',
  'dead',
  'members',
  'sang',
  'national',
  'anthem',
  'todays',
  'giant',
  'opener',
  'would',
  'imagine',
  'bit',
  'early',
  'anyone',
  'know',
  'answer',
  'would',
  'greatly',
  'appreciated',
  'curious',
  'robert',
  'robert',
  'margesson',
  'umaine',
  'hockey',
  'park',
  'st',
  'black',
  'bears',
  'orono',
  'ncaa',
  'champs'],
 ['steven',
  'syck',
  'wi',
  'il',
  'firearms',
  'law',
  'questions',
  'organization',
  'university',
  'wisconsin',
  'milwaukee',
  'lines',
  'nntp',
  'posting',
  'host',
  'couple',
  'questions',
  'firearms',
  'law',
  'experts',
  'question',
  'according',
  'nra',
  'ila',
  'state',
  'firearms',
  'lawbook',
  'wisconsin',
  'unlawful',
  'person',
  'except',
  'peace',
  'officer',
  'go',
  'armed',
  'concealed',
  'dangerous',
  'weapon',
  'statutory',
  'provision',
  'obtaining',
  'lixense',
  'permit',
  'carry',
  'concealed',
  'weapon',
  'jury',
  'instructions',
  'indicate',
  'go',
  'armed',
  'one',
  'must',
  'firearm',
  'ones',
  'person',
  'within',
  'immediate',
  'control',
  'available',
  'mean',
  'open',
  'carry',
  'allowed',
  'open',
  'would',
  'pants',
  'holster',
  'considered',
  'concealing',
  'one',
  'jacket',
  'partially',
  'covered',
  'weapon',
  'also',
  'way',
  'allowed',
  'carry',
  'concealed',
  'allowed',
  'period',
  'question',
  'understand',
  'evanston',
  'il',
  'ordinance',
  'banning',
  'handguns',
  'way',
  'get',
  'around',
  'provision',
  'would',
  'penalty',
  'found',
  'used',
  'said',
  'handgun',
  'defensive',
  'shooting',
  'apartment',
  'would',
  'city',
  'law',
  'apply',
  'impending',
  'trial',
  'shooting',
  'also',
  'il',
  'state',
  'law',
  'concerning',
  'short',
  'barreled',
  'weapons',
  'short',
  'barreled',
  'shotgun',
  'would',
  'interested',
  'handgun',
  'available',
  'either',
  'shortened',
  'mm',
  'carbine',
  'ie',
  'colt',
  'marlin',
  'one',
  'thing',
  'chance',
  'getting',
  'ccw',
  'permit',
  'il',
  'without',
  'rich',
  'famous',
  'related',
  'mayor',
  'please',
  'send',
  'replies',
  'via',
  'mail',
  'things',
  'seem',
  'piling',
  'around',
  'little',
  'faster',
  'handle',
  'thanks',
  'steve',
  'syck'],
 ['tsiel',
  'ohayon',
  'holocaust',
  'memorial',
  'museum',
  'costly',
  'dangerous',
  'mistake',
  'organization',
  'james',
  'capel',
  'pacific',
  'limited',
  'tokyo',
  'japan',
  'lines',
  'article',
  'jake',
  'livni',
  'writes',
  'article',
  'dan',
  'gannon',
  'writes',
  'dg',
  'holocaust',
  'memorial',
  'museum',
  'costly',
  'dangerous',
  'mistake',
  'dg',
  'theodore',
  'okeefe',
  'dg',
  'hard',
  'washington',
  'monument',
  'within',
  'clear',
  'view',
  'jefferson',
  'dg',
  'memorial',
  'easy',
  'stroll',
  'mall',
  'majestic',
  'lincoln',
  'memorial',
  'dg',
  'arisen',
  'hallowed',
  'territory',
  'united',
  'states',
  'dg',
  'america',
  'costly',
  'dangerous',
  'mistake',
  'ground',
  'monument',
  'yet',
  'dg',
  'marks',
  'countless',
  'sacrifices',
  'unheralded',
  'achievements',
  'americans',
  'dg',
  'races',
  'creeds',
  'building',
  'defense',
  'nation',
  'sits',
  'today',
  'dg',
  'massive',
  'costly',
  'edifice',
  'devoted',
  'contentious',
  'false',
  'dg',
  'version',
  'ordeal',
  'europe',
  'world',
  'war',
  'ii',
  'non',
  'american',
  'dg',
  'members',
  'minority',
  'sectarian',
  'group',
  'deceptive',
  'guise',
  'dg',
  'tolerance',
  'united',
  'states',
  'holocaust',
  'memorial',
  'museum',
  'begins',
  'propaganda',
  'dg',
  'campaign',
  'financed',
  'unwitting',
  'largess',
  'american',
  'taxpayer',
  'dg',
  'interests',
  'israel',
  'adherents',
  'america',
  'jake',
  'reading',
  'first',
  'paragraph',
  'quick',
  'scan',
  'confirmed',
  'first',
  'jake',
  'impression',
  'bunch',
  'revisionist',
  'anti',
  'semitic',
  'hogwash',
  'jake',
  'im',
  'really',
  'disappointed',
  'took',
  'whole',
  'paragraph',
  'see',
  'bunch',
  'revisionist',
  'anti',
  'semitic',
  'hogwash',
  'article',
  'title',
  'holocaust',
  'memorial',
  'museum',
  'costly',
  'dangerous',
  'mistake',
  'enough',
  'tsiel',
  'receive',
  'mail',
  'please',
  'let',
  'employer',
  'may',
  'know',
  'soon',
  'possible',
  'possible',
  'opinions',
  'two',
  'percent',
  'zero',
  'almost',
  'nothing'],
 ['douglas',
  'graham',
  'jews',
  'cant',
  'hide',
  'organization',
  'bell',
  'northern',
  'research',
  'ottawa',
  'canada',
  'lines',
  'article',
  'jon',
  'livesey',
  'writes',
  'article',
  'douglas',
  'graham',
  'writes',
  'poster',
  'casually',
  'trashed',
  'two',
  'thousand',
  'years',
  'jewish',
  'history',
  'ken',
  'replied',
  'previously',
  'people',
  'like',
  'germany',
  'think',
  'problem',
  'pretty',
  'much',
  'ignored',
  'part',
  'jews',
  'sightseeing',
  'years',
  'thinking',
  'instead',
  'important',
  'part',
  'original',
  'poster',
  'said',
  'bit',
  'killing',
  'palestinians',
  'retrospect',
  'see',
  'sightseeing',
  'thing',
  'would',
  'offensive',
  'many',
  'originally',
  'saw',
  'poetic',
  'license',
  'understandable',
  'others',
  'might',
  'see',
  'differently',
  'still',
  'think',
  'ken',
  'came',
  'bit',
  'strong',
  'though',
  'also',
  'think',
  'advice',
  'masud',
  'khan',
  'argue',
  'someone',
  'like',
  'mr',
  'arromdee',
  'good',
  'idea',
  'little',
  'homework',
  'least',
  'think',
  'unnecessary',
  'thats',
  'right',
  'also',
  'people',
  'formally',
  'nazis',
  'nazi',
  'party',
  'would',
  'gone',
  'nowhere',
  'without',
  'active',
  'tacit',
  'support',
  'ordinary',
  'man',
  'street',
  'behaved',
  'though',
  'casual',
  'anti',
  'semitism',
  'perfectly',
  'acceptable',
  'exactly',
  'dont',
  'understand',
  'wrote',
  'dont',
  'see',
  'matter',
  'hand',
  'throughout',
  'articles',
  'thread',
  'tacit',
  'assumption',
  'original',
  'poster',
  'exhibiting',
  'casual',
  'anti',
  'semitism',
  'agreed',
  'maybe',
  'speech',
  'bad',
  'might',
  'relevant',
  'think',
  'youre',
  'reading',
  'lot',
  'one',
  'flip',
  'sentence',
  'probably',
  'true',
  'case',
  'often',
  'charge',
  'anti',
  'semitism',
  'gets',
  'thrown',
  'around',
  'order',
  'stifle',
  'legitimate',
  'criticism',
  'state',
  'israel',
  'anyway',
  'id',
  'rather',
  'somewhere',
  'else',
  'im',
  'outta',
  'thread',
  'doug',
  'graham',
  'opinions'],
 ['frank',
  'crary',
  'gun',
  'control',
  'mad',
  'hell',
  'tv',
  'news',
  'nntp',
  'posting',
  'host',
  'ucsu',
  'colorado',
  'organization',
  'university',
  'colorado',
  'boulder',
  'lines',
  'article',
  'steve',
  'manes',
  'writes',
  'hand',
  'draw',
  'lessons',
  'neighbors',
  'culturally',
  'similar',
  'namely',
  'canadians',
  'dont',
  'think',
  'canada',
  'culturally',
  'similar',
  'united',
  'states',
  'england',
  'terms',
  'laws',
  'regarding',
  'individual',
  'rights',
  'restrictions',
  'police',
  'searches',
  'etc',
  'closely',
  'related',
  'crime',
  'canadian',
  'laws',
  'parallel',
  'englands',
  'differ',
  'greatly',
  'united',
  'states',
  'fact',
  'exhaustive',
  'seven',
  'year',
  'study',
  'already',
  'done',
  'respective',
  'crime',
  'rates',
  'vancouver',
  'british',
  'columbia',
  'seattle',
  'washington',
  'cities',
  'roughly',
  'population',
  'urban',
  'economy',
  'geography',
  'crime',
  'decidedly',
  'different',
  'approaches',
  'gun',
  'control',
  'actually',
  'roughly',
  'urban',
  'economy',
  'extremely',
  'different',
  'ethnic',
  'composition',
  'seven',
  'year',
  'study',
  'homicides',
  'occurred',
  'seattle',
  'per',
  'vs',
  'homicides',
  'vancouver',
  'per',
  'adjustment',
  'differences',
  'age',
  'sex',
  'among',
  'populations',
  'relative',
  'risk',
  'victim',
  'homicide',
  'seattle',
  'compared',
  'vancouver',
  'found',
  'however',
  'account',
  'economic',
  'ethnic',
  'differences',
  'difference',
  'disappears',
  'completely',
  'seattles',
  'minorities',
  'predominatly',
  'poor',
  'vancouvers',
  'middle',
  'upper',
  'class',
  'rates',
  'whites',
  'cities',
  'found',
  'identicle',
  'rate',
  'poor',
  'seattle',
  'minorities',
  'almost',
  'three',
  'times',
  'great',
  'well',
  'minorities',
  'vancouver',
  'pattern',
  'seems',
  'one',
  'poverty',
  'race',
  'relations',
  'one',
  'gun',
  'control',
  'authors',
  'report',
  'also',
  'investigated',
  'legally',
  'justifiable',
  'homicides',
  'self',
  'defense',
  'homicides',
  'occurred',
  'seven',
  'year',
  'study',
  'committed',
  'police',
  'cases',
  'civilians',
  'acting',
  'self',
  'defense',
  'occurrred',
  'gross',
  'distortion',
  'self',
  'defense',
  'mean',
  'killing',
  'attacker',
  'cases',
  'civilians',
  'killing',
  'attacker',
  'self',
  'defence',
  'cases',
  'represent',
  'less',
  'crimes',
  'prevented',
  'armed',
  'self',
  'defence',
  'every',
  'case',
  'cite',
  'cases',
  'self',
  'defence',
  'crime',
  'prevented',
  'attacker',
  'killed',
  'way',
  'conservative',
  'possible',
  'figure',
  'based',
  'national',
  'crime',
  'surveys',
  'estimate',
  'crimes',
  'prevented',
  'armed',
  'self',
  'defence',
  'year',
  'studies',
  'put',
  'figure',
  'figures',
  'would',
  'imply',
  'less',
  'sucessful',
  'self',
  'defences',
  'involve',
  'killing',
  'attacker',
  'correctly',
  'possibly',
  'many',
  'cases',
  'civilians',
  'acting',
  'self',
  'defence',
  'resulted',
  'death',
  'attacker',
  'significant',
  'factor',
  'comparison',
  'homicides',
  'memory',
  'serves',
  'homicides',
  'make',
  'approximately',
  'violent',
  'crimes',
  'study',
  'considered',
  'fair',
  'comparison',
  'would',
  'homicides',
  'prevented',
  'homicides',
  'clearly',
  'study',
  'close',
  'accurate',
  'since',
  'ignored',
  'cases',
  'self',
  'defence',
  'frank',
  'crary',
  'cu',
  'boulder'],
 ['geake',
  'ec',
  'bhp',
  'limit',
  'vetoed',
  'lines',
  'according',
  'bbc',
  'radio',
  'morning',
  'uk',
  'denmark',
  'portugal',
  'others',
  'vetoed',
  'proposal',
  'limit',
  'ec',
  'sold',
  'bikes',
  'bhp',
  'reason',
  'limit',
  'supported',
  'accident',
  'statistics',
  'rare',
  'example',
  'governmental',
  'wisdom',
  'limit',
  'five',
  'year',
  'moratorium',
  'specialist',
  'manufacturers',
  'exempt',
  'anyway',
  'suspicion',
  'crafty',
  'trick',
  'restrict',
  'end',
  'market',
  'europe',
  'triumph',
  'norton',
  'bmw',
  'cagiva',
  'ducati',
  'sort',
  'dangerous',
  'rubbish',
  'stalls',
  'gatt',
  'talks',
  'heard',
  'first',
  'bill',
  'univ',
  'edinburgh',
  'replete',
  'hp',
  'healthy',
  'blue',
  'exhaust'],
 ['bill',
  'claussen',
  'alt',
  'psychoactives',
  'organization',
  'hp',
  'colorado',
  'springs',
  'division',
  'lines',
  'nntp',
  'posting',
  'host',
  'hpcspe',
  'col',
  'hp',
  'com',
  'fyi',
  'posted',
  'alt',
  'psychoactives',
  'response',
  'group',
  'note',
  'users',
  'alt',
  'psychoactives',
  'group',
  'originally',
  'takeoff',
  'sci',
  'med',
  'reason',
  'formation',
  'group',
  'discuss',
  'prescription',
  'psychoactive',
  'drugs',
  'antidepressents',
  'tri',
  'cyclics',
  'prozac',
  'lithium',
  'etc',
  'antipsychotics',
  'melleral',
  'sp',
  'etc',
  'ocd',
  'drugs',
  'anafranil',
  'etc',
  'forth',
  'didnt',
  'take',
  'long',
  'group',
  'degenerate',
  'psudo',
  'alt',
  'drugs',
  'atmosphere',
  'thats',
  'bad',
  'serious',
  'folks',
  'wanted',
  'start',
  'group',
  'first',
  'place',
  'left',
  'gone',
  'back',
  'sci',
  'med',
  'cypher',
  'hundreds',
  'unrelated',
  'articles',
  'find',
  'psychoactive',
  'data',
  'also',
  'discuss',
  'real',
  'life',
  'experiences',
  'side',
  'effects',
  'mentioned',
  'oh',
  'well',
  'unsubscribed',
  'group',
  'time',
  'decided',
  'check',
  'today',
  'see',
  'anything',
  'changed',
  'nope',
  'old',
  'nine',
  'ten',
  'crap',
  'articles',
  'group',
  'never',
  'intended',
  'think',
  'hard',
  'meaningfull',
  'group',
  'without',
  'moderated',
  'bad',
  'oh',
  'well',
  'obviously',
  'one',
  'really',
  'cares',
  'bill',
  'claussen',
  'would',
  'anyone',
  'interested',
  'starting',
  'similar',
  'moderated',
  'group',
  'bill',
  'claussen'],
 ['constantinos',
  'malamas',
  'dos',
  'font',
  'size',
  'windows',
  'organization',
  'georgia',
  'institute',
  'technology',
  'lines',
  'article',
  'alavi',
  'writes',
  'normal',
  'font',
  'small',
  'enhanced',
  'mode',
  'dos',
  'window',
  'font',
  'small',
  'monitor',
  'way',
  'spacify',
  'font',
  'size',
  'dos',
  'window',
  'youll',
  'excuse',
  'trivial',
  'answer',
  'since',
  'fairly',
  'new',
  'ms',
  'windows',
  'world',
  'thanks',
  'alavi',
  'first',
  'without',
  'wanting',
  'sound',
  'nagging',
  'bossy',
  'yes',
  'trivial',
  'answer',
  'thats',
  'perfectly',
  'fine',
  'otherwise',
  'one',
  'supposed',
  'move',
  'complicated',
  'challenging',
  'questions',
  'net',
  'readers',
  'much',
  'enjoy',
  'massive',
  'crossposting',
  'article',
  'justified',
  'please',
  'refer',
  'appropriate',
  'newsgroups',
  'next',
  'time',
  'way',
  'msw',
  'misc',
  'ok',
  'far',
  'problem',
  'concerned',
  'try',
  'playing',
  'around',
  'settings',
  'fonts',
  'dialog',
  'box',
  'window',
  'control',
  'menu',
  'little',
  'square',
  'top',
  'left',
  'corner',
  'window',
  'costas',
  'malamas',
  'georgia',
  'institute',
  'technology',
  'oit',
  'ua',
  'opinions',
  'expressed',
  'necessarily',
  'oits',
  'internet'],
 ['portable',
  'small',
  'ground',
  'station',
  'dir',
  'article',
  'aurora',
  'apr',
  'organization',
  'university',
  'alaska',
  'fairbanks',
  'lines',
  'nntp',
  'posting',
  'host',
  'acad',
  'alaska',
  'article',
  'henry',
  'spencer',
  'writes',
  'article',
  'writes',
  'difficult',
  'would',
  'set',
  'ground',
  'station',
  'ground',
  'station',
  'one',
  'extreme',
  'amateur',
  'radio',
  'satellites',
  'sometimes',
  'reachable',
  'hand',
  'held',
  'radios',
  'nothing',
  'back',
  'yard',
  'let',
  'listen',
  'galileo',
  'please',
  'specific',
  'work',
  'one',
  'mans',
  'work',
  'henry',
  'spencer',
  'toronto',
  'zoology',
  'kipling',
  'utzoo',
  'henry',
  'specific',
  'basically',
  'able',
  'things',
  'big',
  'dadies',
  'monitor',
  'control',
  'need',
  'shuttle',
  'one',
  'australia',
  'michael',
  'adams',
  'im',
  'high',
  'jacked'],
 ['kevin',
  'stamber',
  'difficult',
  'get',
  'penguin',
  'tickets',
  'organization',
  'purdue',
  'university',
  'engineering',
  'computer',
  'network',
  'lines',
  'article',
  'dean',
  'money',
  'writes',
  'line',
  'says',
  'terribly',
  'difficult',
  'get',
  'tickets',
  'penguins',
  'games',
  'especially',
  'playoffs',
  'would',
  'easy',
  'find',
  'scalpers',
  'outside',
  'igloo',
  'selling',
  'tickets',
  'dean',
  'money',
  'traditional',
  'experience',
  'tickets',
  'playoffs',
  'otherwise',
  'civic',
  'arena',
  'scalping',
  'illegal',
  'nonetheless',
  'present',
  'outside',
  'arena',
  'best',
  'strategy',
  'given',
  'dont',
  'mind',
  'missing',
  'anthem',
  'ok',
  'taylor',
  'decides',
  'come',
  'back',
  'ever',
  'wait',
  'game',
  'rolling',
  'scalpers',
  'point',
  'desperate',
  'sell',
  'reduce',
  'near',
  'face',
  'value',
  'get',
  'rid',
  'tickets',
  'playoffs',
  'little',
  'different',
  'good',
  'seats',
  'go',
  'early',
  'whats',
  'left',
  'may',
  'nosebleed',
  'material',
  'sections',
  'others',
  'add',
  'opinions',
  'well',
  'kevin',
  'stamber',
  'purdue',
  'university',
  'penguins',
  'devils',
  'pens',
  'lead',
  'series',
  'game',
  'none'],
 ['richard',
  'dos',
  'defragment',
  'article',
  'news',
  'organization',
  'university',
  'illinois',
  'urbana',
  'lines',
  'geoffrey',
  'elbo',
  'writes',
  'yes',
  'fastest',
  'defrag',
  'ive',
  'ever',
  'watched',
  'mb',
  'hard',
  'disk',
  'minutes',
  'found',
  'ms',
  'defrag',
  'looks',
  'much',
  'like',
  'norton',
  'speedisk',
  'strip',
  'version',
  'later',
  'norton',
  'speedisk',
  'backup',
  'wondering',
  'need',
  'install',
  'ms',
  'backup',
  'richard'],
 ['brian',
  'servis',
  'redirect',
  'print',
  'manager',
  'file',
  'organization',
  'purdue',
  'university',
  'engineering',
  'computer',
  'network',
  'lines',
  'swh',
  'writes',
  'tell',
  'program',
  'pd',
  'shareware',
  'redirect',
  'windows',
  'output',
  'printer',
  'manager',
  'file',
  'want',
  'capture',
  'hp',
  'laser',
  'jet',
  'iiis',
  'print',
  'output',
  'though',
  'postscript',
  'setup',
  'print',
  'file',
  'hp',
  'cant',
  'doss',
  'redirect',
  'program',
  'cant',
  'work',
  'windows',
  'thankx',
  'help',
  'internet',
  'address',
  'english',
  'name',
  'erik',
  'wang',
  'chinese',
  'name',
  'wang',
  'jyh',
  'shyang',
  'national',
  'chiao',
  'tung',
  'university',
  'taiwan',
  'try',
  'setting',
  'another',
  'hpiii',
  'printer',
  'choosing',
  'port',
  'connect',
  'choose',
  'file',
  'instead',
  'like',
  'lpt',
  'prompt',
  'file',
  'name',
  'everytime',
  'print',
  'hpiii',
  'file',
  'printer',
  'good',
  'luck',
  'brian',
  'servis',
  'happened',
  'way',
  'actual',
  'quotes',
  'insurance',
  'claims',
  'say',
  'may',
  'think',
  'say',
  'may',
  'pedestrian',
  'idea',
  'purdue',
  'thinks',
  'way',
  'go',
  'ran'],
 ['charles',
  'kozierok',
  'yankees',
  'win',
  'home',
  'opener',
  'organization',
  'massachusetts',
  'institute',
  'technology',
  'lines',
  'distribution',
  'usa',
  'nntp',
  'posting',
  'host',
  'marinara',
  'mit',
  'article',
  'writes',
  'article',
  'sam',
  'millitello',
  'says',
  'im',
  'telling',
  'sam',
  'three',
  'ls',
  'call',
  'mom',
  'ask',
  'bob',
  'vesterman',
  'yeah',
  'case',
  'even',
  'isnt',
  'enough',
  'prompt',
  'boy',
  'genius',
  'sam',
  'pick',
  'paper',
  'see',
  'name',
  'spelled',
  'heres',
  'another',
  'hint',
  'single',
  'comes',
  'two',
  'charles'],
 ['james',
  'thomas',
  'green',
  'proton',
  'centaur',
  'organization',
  'california',
  'polytechnic',
  'state',
  'university',
  'san',
  'luis',
  'obispo',
  'lines',
  'anyone',
  'looked',
  'possiblity',
  'proton',
  'centaur',
  'combo',
  'would',
  'benefits',
  'problems',
  'combo',
  'obvious',
  'instability',
  'xssr',
  'james',
  'green',
  'know',
  'believe',
  'understand',
  'think',
  'said',
  'sure',
  'realize',
  'said',
  'meant'],
 ['david',
  'shapiro',
  'tigers',
  'organization',
  'organized',
  'lines',
  'distribution',
  'na',
  'nntp',
  'posting',
  'host',
  'minerva',
  'cis',
  'yale',
  'reply',
  'ryan',
  'kearnss',
  'message',
  'wed',
  'apr',
  'edt',
  'woof',
  'woof',
  'david',
  'shapiro',
  'people',
  'call',
  'monkey',
  'felt',
  'like',
  'piano',
  'back',
  'winter',
  'long',
  'piano',
  'back',
  'maybe',
  'trombone',
  'next',
  'stan',
  'belinda'],
 ['okidata',
  'printer',
  'driver',
  'organization',
  'university',
  'utah',
  'computer',
  'center',
  'lines',
  'okidata',
  'printer',
  'would',
  'like',
  'printer',
  'driver',
  'anyone',
  'seen',
  'thing',
  'one',
  'microsoft',
  'bbs',
  'print',
  'windows',
  'fonts',
  'available',
  'paradox',
  'windows',
  'cant',
  'print',
  'labels',
  'unless',
  'proper',
  'printer',
  'defined',
  'thanks',
  'bryan',
  'ward',
  'survey',
  'research',
  'center',
  'university',
  'utah',
  'mail'],
 ['deon',
  'strydom',
  'prophetic',
  'warning',
  'new',
  'york',
  'city',
  'lines',
  'note',
  'reply',
  'message',
  'soc',
  'religion',
  'christian',
  'evenson',
  'thomas',
  'randall',
  'wrote',
  'message',
  'brings',
  'around',
  'asking',
  'open',
  'question',
  'bible',
  'closed',
  'book',
  'scripture',
  'okay',
  'us',
  'go',
  'around',
  'saying',
  'god',
  'told',
  'jesus',
  'told',
  'also',
  'interesting',
  'note',
  'called',
  'prophecies',
  'nothing',
  'new',
  'rather',
  'inspired',
  'translation',
  'scripture',
  'right',
  'call',
  'prophecy',
  'misleading',
  'hi',
  'might',
  'want',
  'read',
  'charismatic',
  'chaos',
  'john',
  'macarthur',
  'discussed',
  'exactly',
  'queation',
  'amongst',
  'others',
  'words',
  'simplified',
  'position',
  'basically',
  'one',
  'must',
  'decide',
  'important',
  'experience',
  'scripture',
  'people',
  'tend',
  'say',
  'scripture',
  'without',
  'living',
  'according',
  'feeling',
  'prophecy',
  'etc',
  'tends',
  'put',
  'across',
  'without',
  'testing',
  'light',
  'scripture',
  'theres',
  'lot',
  'really',
  'worthwhile',
  'read',
  'whether',
  'youre',
  'charismatic',
  'groetnis',
  'cheers',
  'deon',
  'timed',
  'internet',
  'via',
  'catalyst',
  'bbs',
  'port',
  'elizabeth',
  'south',
  'africa',
  'catpe',
  'alt',
  'za',
  'hst',
  'bis',
  'hst'],
 ['henling',
  'lawrence',
  'catholic',
  'church',
  'poland',
  'organization',
  'california',
  'institute',
  'technology',
  'lines',
  'article',
  'zwart',
  'writes',
  'im',
  'writing',
  'paper',
  'role',
  'catholic',
  'church',
  'poland',
  'church',
  'concerning',
  'abortion',
  'law',
  'religious',
  'education',
  'schools',
  'article',
  'clari',
  'news',
  'religion',
  'last',
  'days',
  'polish',
  'tribunal',
  'decision',
  'said',
  'crucifixes',
  'religious',
  'classes',
  'public',
  'schools',
  'okay',
  'children',
  'want',
  'take',
  'religion',
  'class',
  'could',
  'forced',
  'take',
  'ethics',
  'class',
  'substitute',
  'larry',
  'henling'],
 ['aris',
  'gerakis',
  'pixel',
  'disappear',
  'powerbook',
  'screen',
  'organization',
  'michigan',
  'state',
  'university',
  'lines',
  'nntp',
  'posting',
  'host',
  'psssun',
  'pss',
  'msu',
  'keywords',
  'powerbook',
  'pixel',
  'screen',
  'pixels',
  'pb',
  'display',
  'disappear',
  'intermittently',
  'particular',
  'place',
  'random',
  'anybody',
  'suggestions',
  'would',
  'appreciate',
  'mailings',
  'thanks',
  'beware'],
 ['dominic',
  'cheng',
  'centris',
  'impression',
  'organization',
  'university',
  'waterloo',
  'lines',
  'playing',
  'centris',
  'almost',
  'week',
  'must',
  'say',
  'machine',
  'really',
  'fast',
  'hardware',
  'turn',
  'feature',
  'annoying',
  'got',
  'powerkey',
  'sophisicated',
  'circuits',
  'works',
  'like',
  'charm',
  'however',
  'still',
  'complaints',
  'restart',
  'machine',
  'every',
  'time',
  'screen',
  'image',
  'desktop',
  'pattern',
  'jerks',
  'times',
  'quantum',
  'drive',
  'noisy',
  'overall',
  'highly',
  'recommend',
  'fast',
  'affordable',
  'looks',
  'great',
  'dominic',
  'cheng',
  'computer',
  'science',
  'university',
  'waterloo',
  'ontario',
  'canada'],
 ['rob',
  'boudrie',
  'white',
  'house',
  'public',
  'encryption',
  'management',
  'fact',
  'sheet',
  'organization',
  'center',
  'high',
  'perf',
  'computing',
  'wpi',
  'marlboro',
  'distribution',
  'na',
  'lines',
  'security',
  'key',
  'escrow',
  'system',
  'making',
  'decision',
  'intend',
  'prevent',
  'private',
  'sector',
  'developing',
  'government',
  'approving',
  'microcircuits',
  'algorithms',
  'equally',
  'effective',
  'assuring',
  'privacy',
  'secure',
  'key',
  'escrow',
  'system',
  'yeah',
  'intend',
  'prevent',
  'private',
  'sector',
  'developing',
  'applications',
  'equally',
  'effective',
  'assuring',
  'privacy',
  'key',
  'escrow',
  'system'],
 ['graham',
  'toal',
  'need',
  'clipper',
  'cheap',
  'security',
  'lines',
  'perry',
  'metzger',
  'indeed',
  'government',
  'everything',
  'possible',
  'stop',
  'qualcomm',
  'would',
  'designed',
  'strong',
  'encryption',
  'right',
  'cdma',
  'cellular',
  'phone',
  'system',
  'pioneering',
  'nsa',
  'company',
  'cheap',
  'encryption',
  'systems',
  'would',
  'everywhere',
  'try',
  'every',
  'trick',
  'book',
  'stop',
  'im',
  'sure',
  'cheap',
  'secure',
  'phones',
  'would',
  'right',
  'uk',
  'impossible',
  'get',
  'approval',
  'attach',
  'crypto',
  'device',
  'phone',
  'network',
  'anything',
  'plugs',
  'bt',
  'phone',
  'sockets',
  'must',
  'approved',
  'reason',
  'crypto',
  'devices',
  'never',
  'wondering',
  'time',
  'ago',
  'big',
  'market',
  'good',
  'old',
  'fashion',
  'acoustic',
  'coupler',
  'technology',
  'build',
  'secure',
  'phone',
  'possible',
  'mask',
  'real',
  'voice',
  'well',
  'enough',
  'none',
  'strays',
  'mouthpiece',
  'perhaps',
  'well',
  'sealed',
  'coupler',
  'attachment',
  'well',
  'blocked',
  'possible',
  'white',
  'noise',
  'generator',
  'outside',
  'muffle',
  'real',
  'speech'],
 ['vesselin',
  'bontchev',
  'wh',
  'proposal',
  'police',
  'point',
  'view',
  'reply',
  'organization',
  'virus',
  'test',
  'center',
  'university',
  'hamburg',
  'lines',
  'david',
  'sternlight',
  'writes',
  'dwight',
  'tuinstra',
  'posts',
  'interesting',
  'message',
  'comments',
  'effects',
  'clipper',
  'chip',
  'state',
  'local',
  'police',
  'actually',
  'reading',
  'lines',
  'could',
  'good',
  'thing',
  'civil',
  'liberties',
  'one',
  'respect',
  'since',
  'least',
  'prevent',
  'cowboy',
  'cops',
  'cowboy',
  'state',
  'local',
  'agancies',
  'reading',
  'traffic',
  'tap',
  'illegally',
  'instead',
  'reading',
  'lines',
  'try',
  'think',
  'little',
  'bit',
  'ok',
  'thats',
  'way',
  'difficult',
  'hints',
  'indeed',
  'new',
  'proposal',
  'imposes',
  'additional',
  'burocratic',
  'burden',
  'local',
  'police',
  'badly',
  'want',
  'tape',
  'magic',
  'cookie',
  'recipie',
  'mom',
  'telling',
  'phone',
  'guess',
  'propose',
  'new',
  'technology',
  'removed',
  'implement',
  'facilitations',
  'course',
  'wont',
  'want',
  'wait',
  'get',
  'approval',
  'two',
  'different',
  'agencies',
  'decrypt',
  'conversation',
  'two',
  'child',
  'molesters',
  'meanwhile',
  'two',
  'child',
  'molesters',
  'might',
  'conspiring',
  'molesting',
  'child',
  'right',
  'way',
  'get',
  'access',
  'keys',
  'quickly',
  'right',
  'like',
  'could',
  'copy',
  'database',
  'worry',
  'warrant',
  'later',
  'regards',
  'vesselin',
  'vesselin',
  'vladimirov',
  'bontchev',
  'virus',
  'test',
  'center',
  'university',
  'hamburg',
  'tel',
  'fax',
  'fachbereich',
  'informatik',
  'agn',
  'pgp',
  'public',
  'key',
  'available',
  'request',
  'vogt',
  'koelln',
  'strasse',
  'rm',
  'mail',
  'hamburg',
  'germany'],
 ['russell',
  'turpin',
  'placebo',
  'effects',
  'organization',
  'cs',
  'dept',
  'university',
  'texas',
  'austin',
  'lines',
  'nntp',
  'posting',
  'host',
  'im',
  'cs',
  'utexas',
  'summary',
  'yes',
  'researcher',
  'bias',
  'great',
  'problem',
  'article',
  'daniel',
  'prince',
  'writes',
  'effect',
  'doctor',
  'believes',
  'strongly',
  'medicine',
  'sees',
  'improvement',
  'none',
  'sees',
  'improvement',
  'effect',
  'called',
  'reverse',
  'effect',
  'doctor',
  'doesnt',
  'believe',
  'medicine',
  'sees',
  'less',
  'improvement',
  'would',
  'effect',
  'called',
  'effects',
  'ever',
  'studied',
  'common',
  'effects',
  'thank',
  'advance',
  'replies',
  'effects',
  'real',
  'concern',
  'conducting',
  'studies',
  'new',
  'treatments',
  'researchers',
  'try',
  'limit',
  'kind',
  'effect',
  'performing',
  'studies',
  'blind',
  'various',
  'ways',
  'subjects',
  'study',
  'know',
  'whether',
  'receive',
  'placebo',
  'test',
  'treatment',
  'whether',
  'control',
  'group',
  'test',
  'group',
  'administering',
  'treatment',
  'know',
  'subjects',
  'receive',
  'placebo',
  'test',
  'treatment',
  'evaluating',
  'individual',
  'results',
  'know',
  'subjects',
  'receive',
  'placebo',
  'test',
  'treatment',
  'obviously',
  'point',
  'data',
  'analyzed',
  'one',
  'differentiate',
  'test',
  'group',
  'control',
  'group',
  'analysis',
  'quasi',
  'public',
  'researcher',
  'describes',
  'presents',
  'data',
  'based',
  'others',
  'verify',
  'worth',
  'noting',
  'biological',
  'studies',
  'subjects',
  'animals',
  'mice',
  'many',
  'cases',
  'skewed',
  'results',
  'performed',
  'study',
  'blind',
  'considered',
  'important',
  'make',
  'mice',
  'ignorant',
  'already',
  'though',
  'important',
  'respects',
  'except',
  'one',
  'tested',
  'control',
  'test',
  'groups',
  'treated',
  'alike',
  'russell'],
 ['benedikt',
  'rosenau',
  'gospel',
  'dating',
  'organization',
  'technical',
  'university',
  'braunschweig',
  'germany',
  'lines',
  'article',
  'charley',
  'wingate',
  'writes',
  'well',
  'john',
  'quite',
  'different',
  'necessarily',
  'elaborated',
  'theology',
  'evidence',
  'must',
  'known',
  'luke',
  'content',
  'known',
  'canonized',
  'form',
  'new',
  'argument',
  'could',
  'elaborate',
  'little',
  'argument',
  'goes',
  'follows',
  'oid',
  'quotes',
  'appear',
  'john',
  'almost',
  'codified',
  'way',
  'matthew',
  'luke',
  'however',
  'considered',
  'similar',
  'enough',
  'point',
  'knowledge',
  'entirely',
  'different',
  'source',
  'assuming',
  'knew',
  'luke',
  'would',
  'obviously',
  'put',
  'luke',
  'would',
  'give',
  'evidence',
  'latter',
  'assumption',
  'dont',
  'think',
  'follows',
  'take',
  'traditional',
  'attributions',
  'luke',
  'might',
  'known',
  'john',
  'john',
  'elder',
  'figure',
  'either',
  'case',
  'talking',
  'spans',
  'time',
  'well',
  'within',
  'range',
  'lifetimes',
  'talking',
  'date',
  'texts',
  'age',
  'authors',
  'usual',
  'explanation',
  'time',
  'order',
  'mark',
  'matthew',
  'luke',
  'consider',
  'respective',
  'ages',
  'says',
  'matthew',
  'read',
  'text',
  'mark',
  'luke',
  'matthew',
  'probably',
  'mark',
  'assumed',
  'john',
  'knew',
  'content',
  'lukes',
  'text',
  'evidence',
  'overwhelming',
  'admittedly',
  'earlier',
  'manuscripts',
  'john',
  'discovered',
  'interesting',
  'dated',
  'old',
  'unfortunately',
  'havent',
  'got',
  'info',
  'hand',
  'think',
  'late',
  'early',
  'possibly',
  'old',
  'ce',
  'shed',
  'doubt',
  'order',
  'putting',
  'john',
  'rest',
  'three',
  'dont',
  'see',
  'point',
  'exactly',
  'james',
  'felder',
  'said',
  'first',
  'hand',
  'knowledge',
  'events',
  'obvious',
  'least',
  'two',
  'used',
  'older',
  'texts',
  'base',
  'account',
  'even',
  'association',
  'luke',
  'paul',
  'mark',
  'peter',
  'generally',
  'accepted',
  'well',
  'genuine',
  'letter',
  'peter',
  'would',
  'close',
  'enough',
  'wouldnt',
  'sure',
  'original',
  'together',
  'id',
  'card',
  'sender',
  'receiver',
  'would',
  'fine',
  'whats',
  'supposed',
  'say',
  'missing',
  'something',
  'dont',
  'think',
  'one',
  'step',
  'removed',
  'source',
  'bad',
  'luke',
  'mark',
  'matthew',
  'learned',
  'stories',
  'directly',
  'diciples',
  'really',
  'cannot',
  'believe',
  'sort',
  'big',
  'transformation',
  'jesus',
  'gospel',
  'people',
  'posit',
  'news',
  'reports',
  'one',
  'generally',
  'gets',
  'better',
  'information',
  'john',
  'diciple',
  'theres',
  'nothing',
  'said',
  'john',
  'disciple',
  'generally',
  'accepted',
  'style',
  'language',
  'together',
  'theology',
  'usually',
  'used',
  'counterargument',
  'argument',
  'john',
  'disciple',
  'relies',
  'claim',
  'gospel',
  'john',
  'evidence',
  'one',
  'step',
  'one',
  'generation',
  'removed',
  'bad',
  'even',
  'times',
  'compare',
  'reports',
  'similar',
  'events',
  'century',
  'almost',
  'illiterate',
  'societies',
  'even',
  'speak',
  'believers',
  'necessarily',
  'best',
  'sources',
  'also',
  'obvious',
  'mark',
  'edited',
  'old',
  'oldest',
  'manuscripts',
  'knowledge',
  'antiquated',
  'oldest',
  'quite',
  'estimates',
  'even',
  'complete',
  'clear',
  'editing',
  'problem',
  'ending',
  'basically',
  'hopeless',
  'mess',
  'oldest',
  'versions',
  'give',
  'strong',
  'sense',
  'incompleteness',
  'point',
  'shortest',
  'versions',
  'seem',
  'break',
  'midsentence',
  'obvious',
  'solution',
  'point',
  'part',
  'text',
  'lost',
  'material',
  'verse',
  'pretty',
  'clearly',
  'later',
  'seems',
  'represent',
  'synopsys',
  'end',
  'luke',
  'words',
  'one',
  'know',
  'original',
  'mark',
  'look',
  'like',
  'arguments',
  'based',
  'mark',
  'pretty',
  'weak',
  'connected',
  'redating',
  'john',
  'benedikt'],
 ['jim',
  'need',
  'sharp',
  'parts',
  'information',
  'distribution',
  'world',
  'organization',
  'ncr',
  'products',
  'division',
  'company',
  'lines',
  'im',
  'looking',
  'sharp',
  'ti',
  'travelmate',
  'parts',
  'mine',
  'bad',
  'ram',
  'chip',
  'motherboard',
  'want',
  'see',
  'get',
  'parts',
  'sending',
  'sharp',
  'repairs',
  'one',
  'drop',
  'line',
  'also',
  'im',
  'trying',
  'set',
  'one',
  'friend',
  'needs',
  'read',
  'old',
  'inch',
  'diskettes',
  'anyone',
  'pinout',
  'diskette',
  'expansion',
  'connector',
  'back',
  'inch',
  'floppy',
  'box',
  'respond',
  'please',
  'include',
  'phone',
  'number',
  'cant',
  'always',
  'get',
  'email',
  'always',
  'thanks',
  'jim',
  'lewczyk',
  'mailer',
  'address',
  'buggy',
  'reply',
  'james',
  'lewczyk',
  'ncr',
  'mpd',
  'fort',
  'collins',
  'co'],
 ['mail',
  'hill',
  'organization',
  'merrimack',
  'college',
  'andover',
  'usa',
  'lines',
  'clinton',
  'get',
  'mail',
  'im',
  'wondering',
  'congress',
  'also',
  'going',
  'line',
  'anyone',
  'address',
  'reach',
  'im',
  'also',
  'looking',
  'bills',
  'mail',
  'address',
  'please',
  'mail',
  'regualar',
  'reader',
  'newsgrouop'],
 ['gordon',
  'banks',
  'sudden',
  'numbness',
  'arm',
  'reply',
  'gordon',
  'banks',
  'organization',
  'univ',
  'pittsburgh',
  'computer',
  'science',
  'lines',
  'article',
  'tom',
  'molnar',
  'writes',
  'experienced',
  'sudden',
  'numbness',
  'left',
  'arm',
  'morning',
  'completed',
  'th',
  'set',
  'deep',
  'squats',
  'today',
  'weight',
  'training',
  'day',
  'beginning',
  'routine',
  'sudden',
  'end',
  'th',
  'set',
  'arm',
  'felt',
  'like',
  'gone',
  'sleep',
  'cold',
  'turned',
  'pale',
  'lost',
  'strength',
  'weight',
  'used',
  'squats',
  'wasnt',
  'heavy',
  'working',
  'hard',
  'effort',
  'waited',
  'minutes',
  'trying',
  'shake',
  'arm',
  'back',
  'life',
  'continued',
  'chest',
  'exercises',
  'flyes',
  'lighter',
  'dumbells',
  'normally',
  'dropped',
  'left',
  'dumbell',
  'first',
  'set',
  'experienced',
  'continued',
  'arm',
  'weakness',
  'second',
  'quit',
  'training',
  'decided',
  'usual',
  'hour',
  'ski',
  'machine',
  'either',
  'ill',
  'take',
  'easy',
  'rest',
  'day',
  'arm',
  'still',
  'somewhat',
  'numb',
  'significantly',
  'weaker',
  'normal',
  'hand',
  'still',
  'tingles',
  'bit',
  'thumb',
  'color',
  'returned',
  'normal',
  'longer',
  'cold',
  'horrid',
  'thoughts',
  'chunks',
  'plaque',
  'blocking',
  'major',
  'artery',
  'course',
  'brain',
  'im',
  'vegetarian',
  'pretty',
  'fit',
  'daily',
  'exercise',
  'regimen',
  'cant',
  'could',
  'pinched',
  'nerve',
  'bar',
  'cause',
  'symptoms',
  'hope',
  'likely',
  'nothing',
  'chunks',
  'plaque',
  'sounds',
  'like',
  'may',
  'neurovascular',
  'compromise',
  'arm',
  'need',
  'medical',
  'attention',
  'weight',
  'lifting',
  'gordon',
  'banks',
  'jxp',
  'skepticism',
  'chastity',
  'intellect',
  'shameful',
  'surrender',
  'soon'],
 ['benedikt',
  'rosenau',
  'says',
  'apostles',
  'tortured',
  'organization',
  'technical',
  'university',
  'braunschweig',
  'germany',
  'lines',
  'article',
  'ray',
  'ingles',
  'writes',
  'evidence',
  'resurrection',
  'often',
  'claimed',
  'disciples',
  'tortured',
  'death',
  'beliefs',
  'still',
  'renounce',
  'claim',
  'jesus',
  'come',
  'back',
  'dead',
  'skimmed',
  'acts',
  'found',
  'reference',
  'happening',
  'stephen',
  'others',
  'apparently',
  'widely',
  'held',
  'belief',
  'come',
  'evidence',
  'outside',
  'bible',
  'evidence',
  'bible',
  'sure',
  'havent',
  'found',
  'early',
  'authors',
  'legends',
  'important',
  'sources',
  'found',
  'martyriologia',
  'catholic',
  'church',
  'makes',
  'grimms',
  'look',
  'like',
  'exact',
  'science',
  'benedikt'],
 ['kennedy',
  'james',
  'scot',
  'drug',
  'younger',
  'age',
  'organization',
  'oklahoma',
  'state',
  'university',
  'computer',
  'science',
  'stillwater',
  'keywords',
  'youths',
  'drugs',
  'lsd',
  'inhalants',
  'lines',
  'article',
  'follows',
  'taken',
  'wednesday',
  'april',
  'issue',
  'usa',
  'today',
  'drug',
  'younger',
  'age',
  'mike',
  'snider',
  'drug',
  'rise',
  'among',
  'kids',
  'young',
  'eighth',
  'graders',
  'usually',
  'theyre',
  'using',
  'lsd',
  'inhalants',
  'like',
  'glue',
  'air',
  'fresheners',
  'says',
  'new',
  'survey',
  'annual',
  'national',
  'high',
  'school',
  'senior',
  'survey',
  'drug',
  'abuse',
  'finds',
  'statistically',
  'significant',
  'increases',
  'eighth',
  'graders',
  'many',
  'drugs',
  'including',
  'marijuana',
  'cocaine',
  'crack',
  'lsd',
  'inhalants',
  'may',
  'danger',
  'losing',
  'hard',
  'ground',
  'reducing',
  'drug',
  'new',
  'naive',
  'generation',
  'youngsters',
  'enters',
  'adolescence',
  'says',
  'lloyd',
  'johnston',
  'university',
  'michigan',
  'chief',
  'researcher',
  'study',
  'sponsored',
  'department',
  'health',
  'human',
  'services',
  'drug',
  'among',
  'high',
  'school',
  'seniors',
  'continuing',
  'decade',
  'long',
  'decline',
  'study',
  'students',
  'shows',
  'percentage',
  'tried',
  'following',
  'days',
  'polled',
  'th',
  'graders',
  'alcohol',
  'cigarettes',
  'marijuana',
  'cocaine',
  'th',
  'graders',
  'alcohol',
  'cigarettes',
  'marijuana',
  'cocaine',
  'th',
  'graders',
  'alcohol',
  'cigarettes',
  'marijuana',
  'cocaine',
  'among',
  'th',
  'graders',
  'marijuana',
  'cocaine',
  'inhalants',
  'declined',
  'year',
  'lsd',
  'eighth',
  'graders',
  'tried',
  'lsd',
  'last',
  'year',
  'lsd',
  'among',
  'seniors',
  'highest',
  'point',
  'since',
  'tried',
  'last',
  'year',
  'reducing',
  'drug',
  'among',
  'students',
  'requires',
  'different',
  'kind',
  'strategy',
  'health',
  'secretary',
  'donna',
  'shalala',
  'says',
  'part',
  'overall',
  'illness',
  'prevention',
  'plan',
  'survey',
  'shows',
  'drugs',
  'easier',
  'get',
  'fewer',
  'eighth',
  'graders',
  'disapprove',
  'scary',
  'shalala',
  'says',
  'dealers',
  'focusing',
  'younger',
  'vulnerable',
  'kids',
  'scott',
  'kennedy',
  'brewer',
  'patriot',
  'david',
  'koresh',
  'cheap',
  'thug',
  'interprets',
  'bible',
  'barrel',
  'gun',
  'atf',
  'spokesman',
  'atf',
  'cheap',
  'thug',
  'interprets',
  'constitution',
  'barrel',
  'gun'],
 ['alan',
  'greig',
  'atf',
  'burns',
  'dividian',
  'ranch',
  'survivors',
  'organization',
  'dundee',
  'institute',
  'technology',
  'lines',
  'article',
  'lawnmowerman',
  'writes',
  'article',
  'tavares',
  'writes',
  'article',
  'lawnmowerman',
  'writes',
  'oh',
  'guess',
  'shooting',
  'kind',
  'babies',
  'right',
  'sick',
  'bastard',
  'believe',
  'speak',
  'company',
  'write',
  'today',
  'special',
  'investors',
  'packet',
  'thanks',
  'reply',
  'post',
  'way',
  'never',
  'never',
  'ever',
  'said',
  'right',
  'shoot',
  'kind',
  'babies',
  'however',
  'branch',
  'davidian',
  'people',
  'insisted',
  'staying',
  'savior',
  'yeah',
  'right',
  'budy',
  'boy',
  'brain',
  'washed',
  'believing',
  'ever',
  'says',
  'truth',
  'even',
  'means',
  'give',
  'lives',
  'cause',
  'therefore',
  'davids',
  'fault',
  'atfs',
  'gave',
  'days',
  'get',
  'days',
  'many',
  'goodness',
  'sake',
  'fired',
  'cruise',
  'missile',
  'compound',
  'people',
  'would',
  'come',
  'alive',
  'obvious',
  'anyone',
  'remotest',
  'contact',
  'reality',
  'outcome',
  'likely',
  'possible',
  'however',
  'fire',
  'started',
  'mr',
  'lawnmower',
  'seem',
  'already',
  'entered',
  'little',
  'virtual',
  'reality',
  'guess',
  'cant',
  'expected',
  'understand',
  'things',
  'real',
  'universe',
  'alan',
  'greig',
  'janet',
  'dundee',
  'institute',
  'technology',
  'internet',
  'tel',
  'int',
  'never',
  'underestimate',
  'power',
  'human',
  'stupidity'],
 ['daniel',
  'silevitch',
  'utility',
  'updating',
  'win',
  'ini',
  'system',
  'ini',
  'organization',
  'massachusetts',
  'institute',
  'technology',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'mit',
  'article',
  'andrew',
  'stoffel',
  'writes',
  'article',
  'writes',
  'unless',
  'completely',
  'try',
  'using',
  'either',
  'notepad',
  'sysedit',
  'exe',
  'found',
  'system',
  'subdirectory',
  'edit',
  'ini',
  'files',
  'add',
  'sysedit',
  'regedit',
  'program',
  'group',
  'windows',
  'programs',
  'sysedit',
  'exe',
  'program',
  'cool',
  'automatically',
  'opens',
  'win',
  'ini',
  'system',
  'ini',
  'autoexec',
  'bat',
  'config',
  'sys',
  'files',
  'edited',
  'possible',
  'get',
  'load',
  'ini',
  'files',
  'program',
  'run',
  'loads',
  'configuration',
  'files',
  'autoexec',
  'bat',
  'config',
  'sys',
  'win',
  'ini',
  'system',
  'ini',
  'open',
  'entry',
  'file',
  'menu',
  'edit',
  'four',
  'files',
  'need',
  'edit',
  'programs',
  'ini',
  'file',
  'notepad',
  'ascii',
  'editor',
  'wonder',
  'whether',
  'microsoft',
  'intended',
  'sysedit',
  'used',
  'holdover',
  'testing',
  'period',
  'forgot',
  'take',
  'reason',
  'think',
  'absolutely',
  'mention',
  'manuals',
  'program',
  'online',
  'help',
  'entry',
  'file',
  'menu',
  'program',
  'looks',
  'like',
  'something',
  'intended',
  'internal',
  'kind',
  'shame',
  'though',
  'would',
  'made',
  'nice',
  'multi',
  'file',
  'replacement',
  'notepad',
  'daniel',
  'silevitch',
  'massachusetts',
  'institute',
  'technology'],
 ['dan',
  'peterik',
  'brewer',
  'notes',
  'organization',
  'iowa',
  'state',
  'university',
  'ames',
  'ia',
  'lines',
  'pfan',
  'writes',
  'know',
  'bernie',
  'brewer',
  'hes',
  'back',
  'team',
  'mascot',
  'given',
  'walking',
  'papers',
  'years',
  'ago',
  'fans',
  'voted',
  'back',
  'last',
  'season',
  'perched',
  'familiar',
  'home',
  'outfield',
  'slide',
  'barrel',
  'beer',
  'home',
  'runs',
  'hit',
  'great',
  'hear',
  'may',
  'take',
  'raod',
  'trip',
  'milwakee',
  'year',
  'see',
  'last',
  'time',
  'saw',
  'bernie',
  'brewer',
  'age',
  'thanks',
  'post',
  'one',
  'final',
  'note',
  'bill',
  'spiers',
  'leading',
  'brewers',
  'rbis',
  'exhibition',
  'play',
  'looks',
  'like',
  'hes',
  'bouncing',
  'back',
  'nicely',
  'back',
  'problems',
  'good',
  'bill',
  'getting',
  'better',
  'form',
  'limited',
  'coverage',
  'get',
  'iowa',
  'know',
  'great',
  'season',
  'brew',
  'crew',
  'pete',
  'fanning',
  'computer',
  'operator',
  'leadership',
  'action',
  'office',
  'information',
  'technology',
  'position',
  'milwaukee',
  'area',
  'technical',
  'college',
  'mcgannon',
  'email',
  'internet'],
 ['steve',
  'brinich',
  'organization',
  'express',
  'access',
  'online',
  'communications',
  'greenbelt',
  'md',
  'usa',
  'lines',
  'nntp',
  'posting',
  'host',
  'access',
  'digex',
  'net',
  'second',
  'question',
  'strange',
  'procedure',
  'used',
  'real',
  'rng',
  'turns',
  'kind',
  'bottleneck',
  'system',
  'security',
  'theory',
  'makes',
  'sense',
  'either',
  'chips',
  'vary',
  'among',
  'possibilities',
  'anyone',
  'trying',
  'break',
  'encryption',
  'brute',
  'force',
  'need',
  'plow',
  'possible',
  'serial',
  'numbers',
  'one',
  'billion',
  'multiplied',
  'number',
  'different',
  'combinations'],
 ['belated',
  'predictions',
  'nl',
  'organization',
  'western',
  'kentucky',
  'university',
  'bowling',
  'green',
  'ky',
  'lines',
  'article',
  'mark',
  'singer',
  'writes',
  'article',
  'bob',
  'gajarsky',
  'hobokenite',
  'writes',
  'ive',
  'said',
  'braves',
  'would',
  'improve',
  'injury',
  'well',
  'heres',
  'javier',
  'lopez',
  'better',
  'catcher',
  'greg',
  'olson',
  'ryan',
  'klasko',
  'better',
  'firstbaseman',
  'bream',
  'chipper',
  'jones',
  'better',
  'shortstop',
  'anyone',
  'braves',
  'put',
  'mel',
  'nieves',
  'better',
  'nixon',
  'sanders',
  'thats',
  'forces',
  'play',
  'young',
  'guys',
  'bob',
  'gaj',
  'continue',
  'amazed',
  'comments',
  'lopez',
  'might',
  'day',
  'better',
  'catcher',
  'olson',
  'find',
  'totally',
  'amazing',
  'suggest',
  'year',
  'old',
  'three',
  'seasons',
  'professional',
  'baseball',
  'better',
  'olson',
  'five',
  'year',
  'mlb',
  'veteran',
  'noted',
  'ability',
  'call',
  'game',
  'better',
  'average',
  'arm',
  'oh',
  'perhaps',
  'talking',
  'hitting',
  'well',
  'sure',
  'lopez',
  'might',
  'hit',
  'better',
  'perhaps',
  'probably',
  'ever',
  'history',
  'baseball',
  'year',
  'old',
  'younger',
  'rookie',
  'catcher',
  'compared',
  'favorably',
  'among',
  'league',
  'catchers',
  'terms',
  'defense',
  'brought',
  'bat',
  'wasnt',
  'yes',
  'ivan',
  'rodriguez',
  'last',
  'year',
  'batted',
  'threw',
  'baserunners',
  'shabby',
  'rookie',
  'aa',
  'years',
  'old',
  'last',
  'year',
  'sandy',
  'alomar',
  'supposed',
  'good',
  'rookie',
  'year',
  'wasnt',
  'benito',
  'santiago',
  'supposed',
  'good',
  'rookie',
  'year',
  'continue',
  'thread',
  'others',
  'mentioned',
  'get',
  'point',
  'others',
  'seem',
  'quick',
  'dismiss',
  'seasoned',
  'veterans',
  'favor',
  'hot',
  'young',
  'rookies',
  'perhaps',
  'perhaps',
  'management',
  'team',
  'pennant',
  'winning',
  'braves',
  'knows',
  'something',
  'perhaps',
  'know',
  'year',
  'old',
  'rookies',
  'come',
  'majors',
  'make',
  'impact',
  'beastmaster',
  'mark',
  'singer',
  'roy',
  'cabaniss',
  'wait',
  'till',
  'tommy',
  'meets',
  'lord',
  'western',
  'kentucky',
  'university',
  'finds',
  'hes',
  'wearing',
  'pinstripes',
  'opinions',
  'contained',
  'herein',
  'gaylord',
  'perry',
  'talking',
  'lasorda',
  'mine',
  'thats',
  'sin',
  'baseball',
  'way',
  'spend',
  'day'],
 ['catalin',
  'ivan',
  'ide',
  'esdi',
  'coexistence',
  'summary',
  'make',
  'ide',
  'esdi',
  'controllers',
  'live',
  'together',
  'keywords',
  'hd',
  'controller',
  'ide',
  'esdi',
  'disks',
  'organization',
  'universite',
  'de',
  'montreal',
  'lines',
  'hello',
  'net',
  'last',
  'resort',
  'ill',
  'change',
  'job',
  'might',
  'faq',
  'mixing',
  'controllers',
  'havent',
  'seen',
  'sys',
  'ami',
  'bios',
  'run',
  'mill',
  'multi',
  'card',
  'serials',
  'paral',
  'floppies',
  'ide',
  'controller',
  'clone',
  'gw',
  'ex',
  'jumpers',
  'affecting',
  'hd',
  'ctrller',
  'quantum',
  'prodrive',
  'lps',
  'type',
  'cyl',
  'hds',
  'spt',
  'pb',
  'want',
  'bring',
  'nd',
  'hand',
  'neat',
  'price',
  'maxtor',
  'xt',
  'ms',
  'bios',
  'type',
  'ctrller',
  'manages',
  'real',
  'geom',
  'cyl',
  'hds',
  'spt',
  'western',
  'digital',
  'wd',
  'se',
  'esdi',
  'ctrller',
  'floppies',
  'jumpers',
  'set',
  'irq',
  'hw',
  'port',
  'addr',
  'bios',
  'addr',
  'cc',
  'floppy',
  'format',
  'stuff',
  'goal',
  'wd',
  'esdi',
  'secondary',
  'controller',
  'disks',
  'simultaneously',
  'working',
  'able',
  'boot',
  'esdi',
  'would',
  'nice',
  'bonus',
  'expected',
  'ultimate',
  'goal',
  'room',
  'linux',
  'et',
  'al',
  'ex',
  'scheme',
  'mind',
  'boot',
  'ide',
  'hd',
  'floppy',
  'mount',
  'esdi',
  'root',
  'booting',
  'esdi',
  'even',
  'hd',
  'acceptable',
  'tried',
  'numerous',
  'combinations',
  'avail',
  'work',
  'alone',
  'coexist',
  'witout',
  'hang',
  'ups',
  'cant',
  'access',
  'esdi',
  'ide',
  'depending',
  'setup',
  'jumpers',
  'useful',
  'suggestions',
  'might',
  'tell',
  'bios',
  'setup',
  'two',
  'ctrllers',
  'guess',
  'nd',
  'hd',
  'expected',
  'hang',
  'ctrller',
  'st',
  'need',
  'driver',
  'make',
  'work',
  'new',
  'bios',
  'chip',
  'cards',
  'buy',
  'another',
  'controller',
  'make',
  'hds',
  'happy',
  'ide',
  'cheaper',
  'esdi',
  'hard',
  'find',
  'rather',
  'costly',
  'im',
  'rich',
  'wouldnt',
  'try',
  'scavenge',
  'around',
  'soft',
  'slns',
  'preferred',
  'adapters',
  'sort',
  'hold',
  'soldering',
  'iron',
  'change',
  'chip',
  'put',
  'jumper',
  'also',
  'useful',
  'bbs',
  'hot',
  'line',
  'western',
  'digital',
  'ftp',
  'archives',
  'relevant',
  'info',
  'expert',
  'stores',
  'toronto',
  'ontario',
  'area',
  'would',
  'miracle',
  'havent',
  'seen',
  'really',
  'knowledgeable',
  'ppl',
  'hints',
  'inner',
  'workings',
  'system',
  'anything',
  'else',
  'helped',
  'similar',
  'situations',
  'prayers',
  'direct',
  'posted',
  'replies',
  'ok',
  'many',
  'thanks',
  'cat',
  'catalin',
  'ivan',
  'email',
  'tel',
  'human',
  'computer',
  'interaction',
  'humain',
  'machine',
  'universite',
  'de',
  'montreal',
  'informatique',
  'et',
  'recherche',
  'operationelle'],
 ['benedikt',
  'rosenau',
  'anecdote',
  'islam',
  'organization',
  'technical',
  'university',
  'braunschweig',
  'germany',
  'lines',
  'article',
  'gregg',
  'jaeger',
  'writes',
  'cases',
  'prostitution',
  'man',
  'prostitute',
  'would',
  'punished',
  'public',
  'quite',
  'severely',
  'deletion',
  'gregg',
  'cannot',
  'say',
  'lenient',
  'punishes',
  'severely',
  'public',
  'unless',
  'course',
  'one',
  'exceptions',
  'implied',
  'almost',
  'matters',
  'depends',
  'statistics',
  'punished',
  'public',
  'power',
  'example',
  'nothing',
  'islamic',
  'allows',
  'men',
  'rape',
  'women',
  'five',
  'times',
  'blowing',
  'rapists',
  'head',
  'public',
  'id',
  'call',
  'leniency',
  'wouldnt',
  'given',
  'example',
  'lenient',
  'end',
  'argument',
  'chopping',
  'hands',
  'heads',
  'people',
  'lenient',
  'either',
  'rather',
  'appears',
  'internalized',
  'claims',
  'legal',
  'system',
  'without',
  'checking',
  'suit',
  'description',
  'wasnt',
  'argument',
  'takes',
  'five',
  'men',
  'rape',
  'woman',
  'according',
  'islamic',
  'law',
  'dont',
  'approve',
  'think',
  'prostitute',
  'customer',
  'right',
  'words',
  'punishing',
  'violation',
  'rights',
  'punish',
  'severely',
  'public',
  'another',
  'pointer',
  'hysteria',
  'connected',
  'sexuality',
  'many',
  'religions',
  'believe',
  'like',
  'even',
  'believe',
  'dont',
  'like',
  'give',
  'better',
  'answers',
  'got',
  'evidence',
  'probably',
  'opposite',
  'claims',
  'case',
  'dont',
  'see',
  'accept',
  'complex',
  'ridden',
  'views',
  'oriental',
  'goatherd',
  'ah',
  'yes',
  'forget',
  'west',
  'historically',
  'much',
  'without',
  'sexual',
  'neurosis',
  'oriental',
  'goatherd',
  'intellectual',
  'fact',
  'memory',
  'serves',
  'see',
  'connection',
  'primitive',
  'machism',
  'orient',
  'islam',
  'people',
  'agree',
  'sex',
  'fine',
  'would',
  'assume',
  'god',
  'would',
  'clue',
  'detrimental',
  'effects',
  'supressing',
  'huh',
  'ever',
  'heard',
  'aids',
  'course',
  'youll',
  'probably',
  'go',
  'say',
  'god',
  'must',
  'evil',
  'allows',
  'disease',
  'exist',
  'bla',
  'bla',
  'usually',
  'miss',
  'point',
  'aids',
  'neither',
  'spread',
  'sex',
  'necessarily',
  'spread',
  'sex',
  'futher',
  'point',
  'important',
  'point',
  'urge',
  'sex',
  'stronger',
  'fear',
  'aids',
  'even',
  'stronger',
  'religious',
  'attempts',
  'channel',
  'forbid',
  'sex',
  'consequences',
  'suppressing',
  'sex',
  'worse',
  'consequences',
  'aids',
  'please',
  'note',
  'idea',
  'everybody',
  'would',
  'end',
  'aids',
  'sex',
  'controlled',
  'completely',
  'counterfactual',
  'since',
  'brought',
  'point',
  'god',
  'evil',
  'benedikt'],
 ['dunn',
  'jonathan',
  'james',
  'abolish',
  'selective',
  'service',
  'organization',
  'university',
  'colorado',
  'boulder',
  'lines',
  'marc',
  'mueller',
  'writes',
  'considering',
  'clinton',
  'received',
  'draft',
  'notice',
  'got',
  'admits',
  'political',
  'feasibility',
  'abolishing',
  'something',
  'would',
  'inclined',
  'risk',
  'extra',
  'exposure',
  'libertarian',
  'small',
  'voted',
  'clinton',
  'think',
  'abolish',
  'selective',
  'service',
  'draft',
  'conscience',
  'forbade',
  'go',
  'war',
  'vietnam',
  'forbid',
  'perpetuate',
  'system',
  'government',
  'sanctioned',
  'slavery',
  'agreed',
  'congress',
  'took',
  'money',
  'nasa',
  'fha',
  'fund',
  'second',
  'seawolf',
  'shipyards',
  'still',
  'building',
  'los',
  'angeles',
  'class',
  'submarines',
  'lack',
  'asw',
  'foes',
  'contend',
  'navy',
  'considering',
  'reducing',
  'number',
  'attack',
  'subs',
  'navy',
  'times',
  'would',
  'entail',
  'getting',
  'rid',
  'mothballing',
  'current',
  'los',
  'angeles',
  'class',
  'politically',
  'general',
  'dynamics',
  'connecticut',
  'get',
  'seawolf',
  'subs',
  'whether',
  'need',
  'government',
  'would',
  'pay',
  'attention',
  'serious',
  'domestic',
  'issues',
  'economy',
  'choose',
  'stay',
  'peoples',
  'wars',
  'iraq',
  'bosnia',
  'somalia',
  'would',
  'fix',
  'anyway',
  'couldnt',
  'jobs',
  'replaced',
  'improving',
  'domestic',
  'situation',
  'im',
  'continued',
  'deficit',
  'spending',
  'clinton',
  'congress',
  'want',
  'spend',
  'id',
  'rather',
  'improve',
  'infrastructure',
  'fight',
  'peoples',
  'wars',
  'addition',
  'bases',
  'need',
  'closed',
  'probably',
  'long',
  'beach',
  'naval',
  'station',
  'others',
  'navy',
  'talking',
  'three',
  'main',
  'bases',
  'coast',
  'required',
  'home',
  'port',
  'total',
  'fleet',
  'ships',
  'question',
  'whether',
  'les',
  'aspin',
  'clinton',
  'able',
  'face',
  'pork',
  'happy',
  'congress',
  'novel',
  'idea',
  'getting',
  'away',
  'naval',
  'bases',
  'refurbishing',
  'decommissioned',
  'air',
  'force',
  'bases',
  'airports',
  'would',
  'much',
  'cheaper',
  'building',
  'ground',
  'denvers',
  'new',
  'airport',
  'one',
  'appalling',
  'examples',
  'pork',
  'barreling',
  'cronyism',
  'seen',
  'lifetime',
  'even',
  'airports',
  'needed',
  'im',
  'sure',
  'bill',
  'gates',
  'ross',
  'perot',
  'would',
  'love',
  'private',
  'airfields',
  'money',
  'purchases',
  'could',
  'applied',
  'public',
  'debt',
  'jon',
  'dunn',
  'mail',
  'flames',
  'deleted',
  'without',
  'reading'],
 ['celeste',
  'male',
  'female',
  'mystery',
  'dumbest',
  'automotive',
  'concepts',
  'time',
  'nntp',
  'posting',
  'host',
  'organization',
  'aegis',
  'lines',
  'article',
  'wen',
  'king',
  'su',
  'wrote',
  'article',
  'sharen',
  'rund',
  'writes',
  'apparently',
  'youre',
  'woman',
  'husband',
  'hates',
  'auto',
  'door',
  'locks',
  'features',
  'forgets',
  'besides',
  'families',
  'children',
  'woman',
  'feels',
  'safer',
  'car',
  'locks',
  'easily',
  'addition',
  'watching',
  'around',
  'checking',
  'anyones',
  'near',
  'get',
  'car',
  'never',
  'park',
  'secluded',
  'spot',
  'etc',
  'keys',
  'ready',
  'open',
  'door',
  'im',
  'fumbling',
  'purse',
  'looking',
  'thinking',
  'biological',
  'reason',
  'women',
  'cant',
  'put',
  'keys',
  'pants',
  'pockets',
  'like',
  'men',
  'two',
  'pockets',
  'back',
  'pants',
  'put',
  'keys',
  'one',
  'wallent',
  'another',
  'many',
  'pockets',
  'even',
  'botton',
  'close',
  'securely',
  'everything',
  'much',
  'simpler',
  'cant',
  'women',
  'biological',
  'ie',
  'enough',
  'room',
  'bigger',
  'bottom',
  'plus',
  'keys',
  'wallet',
  'way',
  'raised',
  'parents',
  'womens',
  'pants',
  'rarely',
  'pockets',
  'shallow',
  'important',
  'woman',
  'keys',
  'hand',
  'goes',
  'building',
  'car',
  'protect',
  'would',
  'assilants',
  'broadcasting',
  'someone',
  'definite',
  'place',
  'safty',
  'ie',
  'locked',
  'car',
  'puting',
  'keys',
  'walet',
  'looks',
  'ugly',
  'breaks',
  'lines',
  'makes',
  'rear',
  'look',
  'wide',
  'cows',
  'also',
  'habits',
  'work',
  'clothing',
  'situation',
  'pruse',
  'functions',
  'mater',
  'wearing',
  'even',
  'nude',
  'bikni',
  'womens',
  'suit',
  'coat',
  'lucky',
  'pockets',
  'outside',
  'none',
  'inside',
  'mens',
  'coats',
  'much',
  'pockets',
  'definitally',
  'fair',
  'one',
  'wears',
  'mens',
  'womens',
  'clothes',
  'tell',
  'womens',
  'clothes',
  'funtional',
  'pockets',
  'dressed',
  'man',
  'put',
  'wallet',
  'inside',
  'coat',
  'pocket',
  'keys',
  'coat',
  'outside',
  'pocket',
  'much',
  'covenent',
  'pants',
  'pockets',
  'looks',
  'better',
  'car',
  'unlocks',
  'quickly',
  'locks',
  'back',
  'fast',
  'paramout',
  'womans',
  'safty',
  'men',
  'dont',
  'see',
  'problem',
  'woman',
  'aware',
  'every',
  'time',
  'goes',
  'image',
  'red',
  'necks',
  'yelling',
  'going',
  'fuck',
  'weight',
  'lbs',
  'inches',
  'hight',
  'want',
  'find',
  'women',
  'something',
  'live',
  'one',
  'celeste'],
 ['mamatha',
  'devineni',
  'ratnam',
  'zane',
  'rescue',
  'us',
  'simmons',
  'organization',
  'post',
  'office',
  'carnegie',
  'mellon',
  'pittsburgh',
  'pa',
  'lines',
  'nntp',
  'posting',
  'host',
  'po',
  'andrew',
  'cmu',
  'last',
  'message',
  'wrote',
  'management',
  'big',
  'big',
  'zero',
  'sauer',
  'yet',
  'make',
  'forceful',
  'agreement',
  'favor',
  'revenue',
  'sharing',
  'meant',
  'argument',
  'instead',
  'agreement',
  'also',
  'think',
  'add',
  'coouple',
  'teds',
  'positive',
  'achievements',
  'smiley',
  'trade',
  'good',
  'pirates',
  'think',
  'ted',
  'could',
  'gotten',
  'someone',
  'better',
  'neagle',
  'cummings',
  'seems',
  'pretty',
  'good',
  'cole',
  'trade',
  'excellent',
  'simmons',
  'botched',
  'years',
  'draft',
  'seems',
  'gone',
  'well',
  'pirates',
  'lost',
  'high',
  'picks',
  'bonds',
  'fiasco',
  'oh',
  'well',
  'give',
  'trying',
  'prove',
  'simmons',
  'total',
  'idiot'],
 ['moon',
  'colony',
  'prize',
  'race',
  'billion',
  'total',
  'lines',
  'nntp',
  'posting',
  'host',
  'acad',
  'alaska',
  'organization',
  'university',
  'alaska',
  'fairbanks',
  'think',
  'prize',
  'classes',
  'following',
  'large',
  'corp',
  'small',
  'corp',
  'company',
  'based',
  'reported',
  'earnings',
  'large',
  'government',
  'gnp',
  'small',
  'governemtn',
  'political',
  'clout',
  'gnp',
  'large',
  'organization',
  'planetary',
  'society',
  'small',
  'organization',
  'alot',
  'small',
  'orgs',
  'organization',
  'things',
  'would',
  'probably',
  'non',
  'profit',
  'liek',
  'course',
  'means',
  'prize',
  'might',
  'go',
  'larger',
  'get',
  'basically',
  'make',
  'prize',
  'total',
  'purse',
  'billion',
  'divided',
  'amngst',
  'class',
  'winners',
  'fair',
  'would',
  'seperate',
  'organization',
  'set',
  'monitor',
  'events',
  'umpire',
  'watch',
  'safety',
  'violations',
  'maybe',
  'peopel',
  'want',
  'risk',
  'thier',
  'lives',
  'let',
  'ideas',
  'michael',
  'adams',
  'im',
  'high',
  'jacked'],
 ['mully',
  'request',
  'al',
  'stats',
  'reply',
  'mully',
  'organization',
  'plymouth',
  'state',
  'college',
  'plymouth',
  'lines',
  'anyone',
  'al',
  'individual',
  'stats',
  'find'],
 ['gerald',
  'olchowy',
  'wc',
  'results',
  'april',
  'organization',
  'university',
  'toronto',
  'chemistry',
  'department',
  'lines',
  'article',
  'mark',
  'spiegel',
  'writes',
  'according',
  'sj',
  'murky',
  'news',
  'team',
  'usa',
  'roster',
  'names',
  'teams',
  'played',
  'listed',
  'goalies',
  'forwards',
  'tony',
  'amonte',
  'new',
  'york',
  'rangers',
  'ted',
  'drury',
  'harvard',
  'univ',
  'rob',
  'gaudreau',
  'san',
  'jose',
  'sharks',
  'craig',
  'johnson',
  'univ',
  'minnesota',
  'jeff',
  'lazaro',
  'ottawa',
  'senators',
  'mike',
  'modano',
  'minnesota',
  'north',
  'stars',
  'ed',
  'olczyk',
  'new',
  'york',
  'rangers',
  'derek',
  'plante',
  'univ',
  'minnesota',
  'duluth',
  'shion',
  'podein',
  'edmonton',
  'oilers',
  'david',
  'sacco',
  'boston',
  'university',
  'darren',
  'turcotte',
  'new',
  'york',
  'rangers',
  'doug',
  'weight',
  'edmonton',
  'oilers',
  'looks',
  'like',
  'edmonton',
  'oilers',
  'decided',
  'take',
  'european',
  'vacation',
  'spring',
  'ranford',
  'tugnutt',
  'benning',
  'manson',
  'smith',
  'buchberger',
  'corson',
  'playing',
  'canada',
  'podein',
  'weight',
  'playing',
  'us',
  'kravchuk',
  'playing',
  'russians',
  'know',
  'nagging',
  'injuries',
  'late',
  'season',
  'podein',
  'interesting',
  'case',
  'eligible',
  'play',
  'cape',
  'breton',
  'ahl',
  'playoffs',
  'like',
  'kovalev',
  'zubov',
  'andersson',
  'obviously',
  'sather',
  'pocklington',
  'total',
  'scrooges',
  'everyone',
  'makes',
  'certainly',
  'case',
  'theyve',
  'massively',
  'outclassed',
  'paramount',
  'new',
  'york',
  'rangers',
  'gerald'],
 ['mark',
  'ira',
  'kaufman',
  'brad',
  'hernlem',
  'vs',
  'principle',
  'organization',
  'case',
  'western',
  'reserve',
  'university',
  'cleveland',
  'ohio',
  'usa',
  'lines',
  'nntp',
  'posting',
  'host',
  'thor',
  'ins',
  'cwru',
  'neverending',
  'effort',
  'make',
  'sure',
  'forget',
  'moron',
  'brad',
  'hernlem',
  'asked',
  'israel',
  'rarely',
  'abides',
  'un',
  'security',
  'council',
  'resolutions',
  'perhaps',
  'list',
  'might',
  'answer',
  'question',
  'incident',
  'security',
  'council',
  'response',
  'hindu',
  'moslem',
  'clash',
  'india',
  'killed',
  'none',
  'gassing',
  'death',
  'kurds',
  'none',
  'iraqi',
  'air',
  'force',
  'saudi',
  'security',
  'forces',
  'slaughter',
  'none',
  'pilgrims',
  'mecca',
  'killing',
  'algerian',
  'army',
  'demonstrators',
  'none',
  'intrafada',
  'arabs',
  'killing',
  'arabs',
  'killed',
  'none',
  'civilians',
  'slaughtered',
  'government',
  'none',
  'troops',
  'hama',
  'syria',
  'killing',
  'palestinians',
  'jordanian',
  'troops',
  'none',
  'thousands',
  'expelled',
  'sept',
  'moslems',
  'killed',
  'egypt',
  'none',
  'killed',
  'egyption',
  'bread',
  'riots',
  'none',
  'border',
  'rocket',
  'attacks',
  'israel',
  'none',
  'plo',
  'alone',
  'munich',
  'israeli',
  'athletes',
  'slaughtered',
  'none',
  'maalot',
  'children',
  'killed',
  'plo',
  'attack',
  'none',
  'israel',
  'coastal',
  'bus',
  'attack',
  'dead',
  'wounded',
  'none',
  'syria',
  'kills',
  'palestinians',
  'none',
  'lebanon',
  'dead',
  'since',
  'none',
  'yemen',
  'killed',
  'two',
  'weeks',
  'none',
  'sudan',
  'tens',
  'thousands',
  'black',
  'slaves',
  'none',
  'civil',
  'war',
  'toll',
  'million',
  'killed',
  'million',
  'refugees',
  'tienenman',
  'square',
  'massacre',
  'none',
  'rumania',
  'killed',
  'none',
  'pan',
  'disaster',
  'carried',
  'none',
  'northern',
  'ireland',
  'none',
  'cambodia',
  'none',
  'soviet',
  'occupation',
  'afghanistan',
  'none',
  'american',
  'riots',
  'attica',
  'watts',
  'newark',
  'kent',
  'state',
  'none',
  'israel',
  'destroys',
  'iraqi',
  'reractor',
  'israel',
  'condemned',
  'israeli',
  'police',
  'protect',
  'israeli',
  'worshipers',
  'condemned',
  'arab',
  'mob',
  'anti',
  'jewish',
  'rioters',
  'killed',
  'syrian',
  'soldiers',
  'slaughter',
  'christian',
  'soldiers',
  'none',
  'surrender',
  'appears',
  'brad',
  'hernlem',
  'united',
  'nations',
  'security',
  'council',
  'something',
  'common',
  'seem',
  'unfettered',
  'demands',
  'acting',
  'principle'],
 ['wayne',
  'orwig',
  'shaft',
  'drives',
  'wheelies',
  'lines',
  'nntp',
  'posting',
  'host',
  'worwig',
  'atlantaga',
  'ncr',
  'com',
  'organization',
  'ncr',
  'corporation',
  'newsreader',
  'ftpnuz',
  'dos',
  'article',
  'john',
  'daker',
  'says',
  'previous',
  'article',
  'says',
  'mike',
  'terry',
  'asks',
  'possible',
  'wheelie',
  'motorcycle',
  'shaft',
  'drive',
  'mike',
  'imposible',
  'due',
  'shaft',
  'effect',
  'centripital',
  'effects',
  'rotating',
  'shaft',
  'counteract',
  'tendency',
  'front',
  'wheel',
  'lift',
  'ground',
  'dod',
  'darkman',
  'well',
  'last',
  'two',
  'motorcycles',
  'shaft',
  'driven',
  'wheelie',
  'rear',
  'gear',
  'climb',
  'ring',
  'gear',
  'lift',
  'rear',
  'gives',
  'odd',
  'feel',
  'still',
  'wheelies'],
 ['trouble',
  'compiling',
  'sunos_',
  'francisco',
  'ballesteros',
  'organization',
  'computer',
  'science',
  'clip',
  'lab',
  'upm',
  'madrid',
  'spain',
  'nntp',
  'posting',
  'host',
  'aguirre',
  'dia',
  'fi',
  'upm',
  'es',
  'reply',
  'message',
  'apr',
  'gmt',
  'lines',
  'article',
  'david',
  'meleedy',
  'writes',
  'ive',
  'trying',
  'compile',
  'patchlevel',
  'sun',
  'sparc',
  'ipx',
  'using',
  'sunos_',
  'gcc',
  'problem',
  'occurs',
  'initial',
  'make',
  'world',
  'gets',
  'compiling',
  'standard',
  'clients',
  'cant',
  'seem',
  'find',
  'libraries',
  'right',
  'highly',
  'suspect',
  'program',
  'ld',
  'updated',
  'yip',
  'problem',
  'fix',
  'found',
  'link',
  'static',
  'clients',
  'btw',
  'used',
  'cc',
  'francisco',
  'ballesteros',
  'nemo',
  'email',
  'org',
  'computer',
  'science',
  'clip',
  'lab',
  'phone',
  'campus',
  'montegancedo',
  'boadilla',
  'del',
  'monte',
  'madrid',
  'spain'],
 ['glenn',
  'jayaputera',
  'need',
  'info',
  'high',
  'quality',
  'video',
  'card',
  'organization',
  'rmit',
  'department',
  'computer',
  'science',
  'lines',
  'hi',
  'need',
  'info',
  'video',
  'card',
  'looking',
  'video',
  'card',
  'deliver',
  'high',
  'quality',
  'picture',
  'need',
  'card',
  'display',
  'images',
  'well',
  'advertising',
  'company',
  'btw',
  'must',
  'rich',
  'colors',
  'speed',
  'must',
  'fast',
  'wondering',
  'somebody',
  'advise',
  'buy',
  'application',
  'possible',
  'address',
  'vendor',
  'thanks',
  'advance',
  'glenn',
  'jayaputera'],
 ['mahesh',
  'khot',
  'quattro',
  'pro',
  'file',
  'format',
  'organization',
  'case',
  'western',
  'reserve',
  'university',
  'cleveland',
  'oh',
  'usa',
  'lines',
  'reply',
  'mahesh',
  'khot',
  'nntp',
  'posting',
  'host',
  'thor',
  'ins',
  'cwru',
  'trying',
  'write',
  'program',
  'read',
  'files',
  'created',
  'quattro',
  'pro',
  'would',
  'anyone',
  'know',
  'find',
  'information',
  'regarding',
  'format',
  'quattro',
  'pro',
  'stores',
  'files',
  'thanks',
  'advance',
  'mahesh',
  'famous',
  'dummies',
  'madam',
  'tussades',
  'wax',
  'museum',
  'still',
  'case'],
 ['jim',
  'zisfein',
  'could',
  'migraine',
  'distribution',
  'world',
  'organization',
  'invention',
  'factorys',
  'bbs',
  'new',
  'york',
  'city',
  'ny',
  'bis',
  'reply',
  'jim',
  'zisfein',
  'lines',
  'gb',
  'gordon',
  'banks',
  'gb',
  'excepting',
  'migraine',
  'arguably',
  'neurologic',
  'gb',
  'hope',
  'meant',
  'inarguably',
  'given',
  'choice',
  'would',
  'rather',
  'argue',
  'arguments',
  'migranous',
  'aura',
  'fact',
  'current',
  'best',
  'evidence',
  'aura',
  'intrinsicially',
  'neuronal',
  'la',
  'spreading',
  'depression',
  'leao',
  'rather',
  'vascular',
  'something',
  'causing',
  'secondary',
  'neuronal',
  'ischemia',
  'migraine',
  'without',
  'aura',
  'however',
  'fuzzier',
  'issue',
  'seem',
  'objectively',
  'measurable',
  'changes',
  'brain',
  'function',
  'copenhagen',
  'mafia',
  'lauritzen',
  'olesen',
  'et',
  'al',
  'done',
  'local',
  'cbf',
  'studies',
  'migraine',
  'without',
  'aura',
  'unlike',
  'migraine',
  'aura',
  'like',
  'tension',
  'type',
  'found',
  'changes',
  'lcbf',
  'one',
  'absurd',
  'perspective',
  'pain',
  'neurologic',
  'absence',
  'nervous',
  'system',
  'would',
  'pain',
  'another',
  'tautologic',
  'perspective',
  'disease',
  'domain',
  'specialty',
  'treats',
  'neurologists',
  'treat',
  'headache',
  'therefore',
  'least',
  'usa',
  'headache',
  'neurologic',
  'whether',
  'neurologic',
  'nobody',
  'would',
  'disagree',
  'disabling',
  'headaches',
  'common',
  'perhaps',
  'fee',
  'service',
  'neurologic',
  'colleagues',
  'scrounging',
  'cases',
  'want',
  'headache',
  'patients',
  'get',
  'working',
  'salary',
  'however',
  'would',
  'rather',
  'fill',
  'office',
  'patients',
  'holding',
  'heads',
  'pain',
  'slmr',
  'mail',
  'jim',
  'zisfein'],
 ['david',
  'berger',
  'keyboard',
  'wanted',
  'organization',
  'brandeis',
  'university',
  'lines',
  'im',
  'looking',
  'buy',
  'working',
  'keyboard',
  'system',
  'preferably',
  'layout',
  'im',
  'looking',
  'spend',
  'david'],
 ['jim',
  'frost',
  'dumbest',
  'automotive',
  'concepts',
  'time',
  'article',
  'armory',
  'prve',
  'aa',
  'organization',
  'centerline',
  'software',
  'inc',
  'lines',
  'nntp',
  'posting',
  'host',
  'dunn',
  'jonathan',
  'james',
  'writes',
  'john',
  'daker',
  'writes',
  'cup',
  'holders',
  'driving',
  'importantant',
  'enough',
  'undertaking',
  'good',
  'idea',
  'carry',
  'non',
  'alcoholic',
  'drinks',
  'without',
  'spilling',
  'someone',
  'hold',
  'agree',
  'six',
  'hour',
  'long',
  'stretches',
  'behind',
  'wheel',
  'really',
  'make',
  'thirsty',
  'especially',
  'something',
  'caffeine',
  'consider',
  'failing',
  'car',
  'cup',
  'holder',
  'anywhere',
  'put',
  'cup',
  'holder',
  'jim',
  'frost'],
 ['david',
  'ingebretsen',
  'images',
  'earth',
  'organization',
  'evans',
  'sutherland',
  'computer',
  'corp',
  'salt',
  'lake',
  'city',
  'ut',
  'lines',
  'distribution',
  'world',
  'reply',
  'david',
  'ingebretsen',
  'nntp',
  'posting',
  'host',
  'imp',
  'sim',
  'es',
  'com',
  'downloaded',
  'image',
  'earth',
  'constructed',
  'elevation',
  'data',
  'taken',
  'degree',
  'increments',
  'author',
  'wrote',
  'code',
  'included',
  'read',
  'data',
  'file',
  'generated',
  'pseudo',
  'color',
  'images',
  'work',
  'well',
  'incumbered',
  'copyright',
  'aminet',
  'site',
  'near',
  'called',
  'earth',
  'lha',
  'amiga',
  'pix',
  'misc',
  'area',
  'refer',
  'included',
  'docs',
  'details',
  'author',
  'sorry',
  'forget',
  'name',
  'created',
  'images',
  'raw',
  'data',
  'included',
  'david',
  'david',
  'ingebretsen',
  'evans',
  'sutherland',
  'computer',
  'corp',
  'disclaimer',
  'content',
  'message',
  'way',
  'reflects',
  'opinions',
  'employer',
  'actions',
  'encouraged',
  'supported',
  'acknowledged',
  'employer'],
 ['steven',
  'bellovin',
  'shelf',
  'cheap',
  'des',
  'keyseach',
  'machine',
  'organization',
  'bell',
  'laboratories',
  'lines',
  'article',
  'bernstein',
  'writes',
  'article',
  'steven',
  'bellovin',
  'writes',
  'key',
  'size',
  'one',
  'things',
  'verified',
  'externally',
  'gee',
  'say',
  'feed',
  'bit',
  'key',
  'snefru',
  'take',
  'first',
  'bits',
  'result',
  'bits',
  'real',
  'key',
  'figure',
  'key',
  'one',
  'equal',
  'keys',
  'try',
  'birthday',
  'attack',
  'key',
  'changed',
  'second',
  'need',
  'several',
  'lifetimes',
  'get',
  'reliable',
  'statistics',
  'youre',
  'right',
  'retract',
  'suggestion',
  'still',
  'wonder',
  'bits',
  'key',
  'information',
  'principle',
  'detectable',
  'maybe',
  'variant',
  'tests',
  'rivest',
  'et',
  'al',
  'demonstrate',
  'des',
  'probably',
  'group',
  'make',
  'interesting',
  'paper',
  'black',
  'box',
  'analysis',
  'cryptosystem'],
 ['gregory',
  'cohen',
  'photo',
  'shop',
  'scanner',
  'organization',
  'florida',
  'state',
  'university',
  'lines',
  'article',
  'operator',
  'writes',
  'operator',
  'photo',
  'shop',
  'scanner',
  'date',
  'fri',
  'apr',
  'gmt',
  'macc',
  'iici',
  'color',
  'scanner',
  'scanned',
  'picture',
  'dpi',
  'try',
  'print',
  'hp',
  'color',
  'printer',
  'minutes',
  'making',
  'noise',
  'mac',
  'hangs',
  'would',
  'need',
  'reboot',
  'mean',
  'need',
  'buy',
  'memory',
  'mb',
  'also',
  'mb',
  'disk',
  'free',
  'scanned',
  'picture',
  'mb',
  'captain',
  'zod',
  'tried',
  'printing',
  'data',
  'file',
  'tiff',
  'another',
  'application',
  'freehand',
  'pagemaker',
  'found',
  'photoshop',
  'occasional',
  'problems',
  'printing',
  'files',
  'print',
  'applications',
  'greg',
  'infinite',
  'illusions',
  'juggling',
  'supplies',
  'beware',
  'fnord',
  'torch',
  'call',
  'write',
  'eat',
  'catalog'],
 ['engineer',
  'day',
  'asleep',
  'night',
  'answers',
  'many',
  'electronics',
  'questions',
  'organization',
  'michigan',
  'technological',
  'university',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'bill',
  'willis',
  'wrote',
  'notice',
  'lot',
  'electronics',
  'questions',
  'people',
  'obviously',
  'tuned',
  'electronics',
  'many',
  'rather',
  'simple',
  'answers',
  'many',
  'require',
  'circuit',
  'diagram',
  'rather',
  'muck',
  'network',
  'dont',
  'write',
  'send',
  'self',
  'addressed',
  'stamped',
  'envelop',
  'ill',
  'answer',
  'questions',
  'willis',
  'fern',
  'circle',
  'clemson',
  'sc',
  'network',
  'quicker',
  'easier',
  'free',
  'least',
  'christopher',
  'wolf',
  'electrical',
  'engineer',
  'remember',
  'even',
  'win',
  'rat',
  'race',
  'youre',
  'still',
  'rat'],
 ['graham',
  'toal',
  'need',
  'clipper',
  'cheap',
  'security',
  'lines',
  'graham',
  'toal',
  'writes',
  'uk',
  'impossible',
  'get',
  'approval',
  'attach',
  'crypto',
  'device',
  'phone',
  'network',
  'anything',
  'plugs',
  'bt',
  'phone',
  'sockets',
  'must',
  'approved',
  'reason',
  'crypto',
  'devices',
  'never',
  'whats',
  'difference',
  'bis',
  'modem',
  'bis',
  'modem',
  'im',
  'entirely',
  'silly',
  'im',
  'pointing',
  'modems',
  'already',
  'approved',
  'data',
  'transmission',
  'work',
  'fine',
  'transmit',
  'scrambled',
  'vocoded',
  'voice',
  'absolutely',
  'meant',
  'secure',
  'dedicated',
  'crypto',
  'device',
  'ever',
  'given',
  'approval',
  'guerrilla',
  'underground',
  'devices',
  'well',
  'possible',
  'todays',
  'high',
  'speed',
  'modems',
  'think',
  'many',
  'bis',
  'modems',
  'approved',
  'either',
  'mind',
  'overpriced',
  'couriers',
  'someone',
  'tell',
  'hardware',
  'compression',
  'needed',
  'run',
  'digital',
  'speech',
  'think',
  'ive',
  'heard',
  'lets',
  'say',
  'bit',
  'samples',
  'would',
  'raw',
  'data',
  'corresponding',
  'sampling',
  'rate',
  'usable',
  'fancy',
  'compression',
  'need'],
 ['tammy',
  'chen',
  'toolwork',
  'mpc',
  'encyclopedia',
  'cd',
  'rom',
  'organization',
  'university',
  'california',
  'berkeley',
  'lines',
  'nntp',
  'posting',
  'host',
  'uclink',
  'berkeley',
  'following',
  'program',
  'cd',
  'rom',
  'forsale',
  'toolwork',
  'mpc',
  'encyclopedia',
  'cd',
  'rom',
  'multimedia',
  'brand',
  'new',
  'shrink',
  'wrapped',
  'asking',
  'obo',
  'send',
  'reply',
  'thank'],
 ['nntp',
  'posting',
  'host',
  'wim',
  'van',
  'holder',
  'distribution',
  'world',
  'organization',
  'leuven',
  'applied',
  'economic',
  'sciences',
  'department',
  'winqvtnet',
  'ndis',
  'token',
  'ring',
  'lines',
  'possible',
  'winqvt',
  'net',
  'machine',
  'uses',
  'ndis',
  'connect',
  'token',
  'ring',
  'tried',
  'older',
  'versions',
  'got',
  'invalid',
  'packet',
  'class',
  'error',
  'something',
  'like',
  'regards',
  'wim',
  'van',
  'holder',
  'katholieke',
  'universiteit',
  'leuven',
  'tel',
  'departement',
  'fax',
  'dekenstraat',
  'leuven',
  'mail',
  'belgium'],
 ['dillon',
  'pyron',
  'shuttle',
  'oxygen',
  'budget',
  'astronaut',
  'lines',
  'nntp',
  'posting',
  'host',
  'skndiv',
  'dseg',
  'ti',
  'com',
  'reply',
  'organization',
  'ti',
  'dseg',
  'vax',
  'support',
  'article',
  'pat',
  'writes',
  'thought',
  'emergency',
  'conditions',
  'sts',
  'put',
  'good',
  'size',
  'airport',
  'could',
  'take',
  'take',
  'orbiter',
  'need',
  'vor',
  'tac',
  'dont',
  'know',
  'need',
  'ils',
  'dfw',
  'designed',
  'sts',
  'mind',
  'really',
  'mean',
  'little',
  'much',
  'early',
  'pr',
  'material',
  'scenes',
  'shuttle',
  'landing',
  'two',
  'three',
  'others',
  'pulled',
  'gates',
  'guess',
  'trying',
  'stress',
  'advanced',
  'airport',
  'dallas',
  'types',
  'imagine',
  'fit',
  'grapevine',
  'irving',
  'would',
  'shuttle',
  'landing',
  'dfw',
  'rest',
  'currently',
  'power',
  'struggles',
  'airport',
  'surrounding',
  'cities',
  'dillon',
  'pyron',
  'opinions',
  'expressed',
  'ti',
  'dseg',
  'lewisville',
  'vax',
  'support',
  'sender',
  'unless',
  'otherwise',
  'stated',
  'im',
  'im',
  'home',
  'texans',
  'vote',
  'robin',
  'hood',
  'need',
  'solutions',
  'gestures',
  'padi',
  'dm'],
 ['jay',
  'rogoff',
  'box',
  'score',
  'abbrev',
  'woes',
  'organization',
  'skidmore',
  'college',
  'saratoga',
  'springs',
  'ny',
  'lines',
  'anybody',
  'figure',
  'box',
  'score',
  'abbreviations',
  'make',
  'absolutely',
  'sense',
  'least',
  'local',
  'gannett',
  'rag',
  'finds',
  'way',
  'door',
  'must',
  'stared',
  'cleman',
  'mets',
  'box',
  'good',
  'seconds',
  'morning',
  'wondering',
  'hell',
  'wouldnt',
  'make',
  'sense',
  'colemn',
  'jay'],
 ['twixt',
  'toes',
  'anyone',
  'know',
  'rayshade',
  'organization',
  'university',
  'washington',
  'lines',
  'nntp',
  'posting',
  'host',
  'stein',
  'washington',
  'keywords',
  'rayshade',
  'uw',
  'im',
  'using',
  'rayshade',
  'computers',
  'id',
  'like',
  'input',
  'users',
  'perhaps',
  'swap',
  'ideas',
  'could',
  'post',
  'uuencoded',
  'gifs',
  'ray',
  'code',
  'anyones',
  'interested',
  'im',
  'trouble',
  'coming',
  'colors',
  'metallic',
  'brass',
  'steel',
  'rgb',
  'values',
  'youre',
  'machines',
  'check',
  'fineman',
  'rle',
  'files',
  'rle',
  'stein',
  'washington',
  'ive',
  'got',
  'dan'],
 ['michel',
  'dozois',
  'powerbook',
  'batteries',
  'reply',
  'michel',
  'dozois',
  'organization',
  'national',
  'capital',
  'freenet',
  'lines',
  'previous',
  'article',
  'gil',
  'neiger',
  'says',
  'questions',
  'powerbook',
  'batteries',
  'specifically',
  'nicad',
  'batteries',
  'pb',
  'powerbook',
  'run',
  'without',
  'battery',
  'charger',
  'plugged',
  'problems',
  'michel',
  'dozois',
  'gloucester',
  'ontario',
  'canada',
  'membre',
  'du',
  'club',
  'de',
  'cerf',
  'volant',
  'de',
  'loutaouais',
  'ovkc',
  'membre',
  'du',
  'national',
  'capital',
  'macintosh',
  'club',
  'ncmc',
  'membre',
  'du',
  'jungle',
  'bbs',
  'un',
  'babillard',
  'macintosh'],
 ['rita',
  'marie',
  'rouvalis',
  'sorry',
  'folks',
  'read',
  'originator',
  'nntp',
  'posting',
  'host',
  'eff',
  'org',
  'organization',
  'distribution',
  'na',
  'lines',
  'article',
  'marc',
  'anderson',
  'writes',
  'found',
  'source',
  'article',
  'joke',
  'heh',
  'heh',
  'seemed',
  'pretty',
  'damn',
  'convincing',
  'start',
  'didnt',
  'notice',
  'smiley',
  'end',
  'article',
  'hints',
  'caught',
  'people',
  'took',
  'article',
  'seriously',
  'mean',
  'know',
  'net',
  'prankster',
  'didnt',
  'even',
  'clintons',
  'sound',
  'bites',
  'right',
  'rita',
  'rouvalis'],
 ['andrew',
  'byler',
  'question',
  'virgin',
  'mary',
  'organization',
  'freshman',
  'civil',
  'engineering',
  'carnegie',
  'mellon',
  'pittsburgh',
  'pa',
  'lines',
  'andrew',
  'kille',
  'writes',
  'observation',
  'although',
  'bodily',
  'assumption',
  'basis',
  'bible',
  'carl',
  'jung',
  'declared',
  'one',
  'important',
  'pronouncements',
  'church',
  'recent',
  'years',
  'implied',
  'inclusion',
  'feminine',
  'godhead',
  'means',
  'absolutely',
  'idea',
  'assumption',
  'however',
  'greatly',
  'extoll',
  'mary',
  'quite',
  'obvious',
  'way',
  'god',
  'even',
  'part',
  'god',
  'equal',
  'god',
  'assumption',
  'blessed',
  'mother',
  'meant',
  'close',
  'identification',
  'redemptive',
  'work',
  'christ',
  'assumed',
  'note',
  'ascend',
  'body',
  'soul',
  'heaven',
  'thus',
  'one',
  'along',
  'elijah',
  'enoch',
  'moses',
  'maybe',
  'already',
  'perfected',
  'heaven',
  'obviously',
  'virgin',
  'mary',
  'far',
  'superior',
  'glorification',
  'previously',
  'mentioned',
  'personages',
  'jung',
  'stick',
  'psychology',
  'rather',
  'getting',
  'theology',
  'andy',
  'byler'],
 ['ancient',
  'books',
  'organization',
  'university',
  'kansas',
  'academic',
  'computing',
  'services',
  'lines',
  'article',
  'bill',
  'mayne',
  'writes',
  'article',
  'writes',
  'former',
  'atheists',
  'converted',
  'argument',
  'excellent',
  'question',
  'ill',
  'anxious',
  'see',
  'cases',
  'doubt',
  'medieval',
  'period',
  'esp',
  'th',
  'cent',
  'aquinas',
  'flourished',
  'argument',
  'useful',
  'tool',
  'everyone',
  'knew',
  'rules',
  'today',
  'cant',
  'count',
  'people',
  'knowing',
  'even',
  'basics',
  'logic',
  'seeing',
  'rhetoric',
  'good',
  'argument',
  'often',
  'poor',
  'one',
  'last',
  'sentence',
  'ironic',
  'since',
  'many',
  'readers',
  'soc',
  'religion',
  'christian',
  'seem',
  'embarrassed',
  'apologists',
  'josh',
  'mcdowell',
  'lewis',
  'havent',
  'followed',
  'whatever',
  'discussion',
  'may',
  'people',
  'feel',
  'lewis',
  'excellent',
  'apologist',
  'see',
  'reason',
  'embarrassment',
  'think',
  'errors',
  'flawed',
  'arguments',
  'reason',
  'dismissing',
  'thinker',
  'must',
  'dismiss',
  'nearly',
  'every',
  'thinker',
  'descartes',
  'kant',
  'philosophy',
  'course',
  'introduce',
  'weaknesses',
  'also',
  'expresses',
  'rather',
  'odd',
  'sense',
  'history',
  'makes',
  'think',
  'masses',
  'aquinas',
  'day',
  'mostly',
  'illiterate',
  'knew',
  'rhetoric',
  'logic',
  'people',
  'today',
  'writings',
  'period',
  'seem',
  'elevated',
  'consider',
  'cream',
  'crop',
  'speak',
  'could',
  'read',
  'write',
  'everyone',
  'medieval',
  'period',
  'knew',
  'rules',
  'matter',
  'uncritically',
  'accepting',
  'told',
  'said',
  'nothing',
  'masses',
  'however',
  'comparing',
  'masses',
  'day',
  'aquinas',
  'day',
  'really',
  'odd',
  'read',
  'ortega',
  'gasset',
  'im',
  'talking',
  'familiar',
  'experience',
  'arguing',
  'night',
  'winning',
  'logic',
  'evidence',
  'discover',
  'opponent',
  'unaware',
  'even',
  'intuitively',
  'things',
  'like',
  'entailment',
  'let',
  'alone',
  'pragmatics',
  'assuming',
  'parties',
  'college',
  'graduates',
  'better',
  'dont',
  'bother',
  'ken',
  'nobody',
  'explain',
  'everything',
  'everybody',
  'opinions',
  'chesterton'],
 ['big',
  'cheese',
  'laptop',
  'cards',
  'organization',
  'max',
  'computer',
  'solutions',
  'inc',
  'lines',
  'laptop',
  'connectivity',
  'cards',
  'part',
  'rn',
  'desc',
  'remote',
  'emulation',
  'card',
  'toshiba',
  'laptop',
  'computer',
  'part',
  'desc',
  'easytalk',
  'bd',
  'dedicated',
  'internal',
  'modem',
  'mnp',
  'level',
  'toshiba',
  'part',
  'desc',
  'easytalk',
  'internal',
  'ethernet',
  'card',
  'toshiba',
  'laptop',
  'expansion',
  'slot',
  'part',
  'desc',
  'easytalk',
  'terminal',
  'emulation',
  'toshiba',
  'laptop',
  'expansion',
  'slot',
  'interested',
  'individual',
  'parts',
  'send',
  'email'],
 ['david',
  'young',
  'colormaps',
  'dialog',
  'shells',
  'organization',
  'mit',
  'media',
  'laboratory',
  'lines',
  'uses',
  'colormap',
  'created',
  'xcreatecolormap',
  'uses',
  'colors',
  'available',
  'bit',
  'display',
  'move',
  'cursor',
  'window',
  'get',
  'technicolor',
  'effect',
  'fine',
  'basically',
  'program',
  'works',
  'problem',
  'question',
  'popup',
  'dialogshell',
  'prompt',
  'user',
  'input',
  'want',
  'xmndialogstyle',
  'set',
  'result',
  'cursor',
  'dialogshell',
  'get',
  'colormap',
  'cursor',
  'window',
  'dialogshell',
  'get',
  'default',
  'colormap',
  'id',
  'like',
  'cursor',
  'window',
  'application',
  'get',
  'colormap',
  'suggestions',
  'thanks',
  'david'],
 ['george',
  'pavlic',
  'matt',
  'militzok',
  'please',
  'read',
  'organization',
  'bowling',
  'green',
  'state',
  'university',
  'oh',
  'lines',
  'sorry',
  'everyone',
  'wasting',
  'space',
  'matt',
  'day',
  'posted',
  'mailing',
  'list',
  'playoff',
  'stats',
  'lost',
  'address',
  'please',
  'put',
  'list',
  'thanks',
  'george'],
 ['roger',
  'collier',
  'camping',
  'question',
  'organization',
  'sun',
  'microsystems',
  'uk',
  'ltd',
  'lines',
  'distribution',
  'world',
  'reply',
  'nntp',
  'posting',
  'host',
  'discovery',
  'uk',
  'sun',
  'com',
  'article',
  'nick',
  'pettefar',
  'writes',
  'back',
  'youth',
  'ahem',
  'wiffy',
  'moi',
  'purchased',
  'gadget',
  'heated',
  'water',
  'source',
  'car',
  'thought',
  'wed',
  'try',
  'rd',
  'worked',
  'ok',
  'apart',
  'one',
  'slight',
  'problem',
  'keep',
  'revs',
  'lower',
  'motor',
  'would',
  'die',
  'lack',
  'electron',
  'movement',
  'lc',
  'rz',
  'ex',
  'colonists',
  'replaced',
  'bolt',
  'bottom',
  'barrel',
  'tap',
  'wanted',
  'coffee',
  'could',
  'rev',
  'engine',
  'boiling',
  'pour',
  'cup',
  'hot',
  'water',
  'used',
  'ethylene',
  'glycol',
  'antifreeze',
  'rather',
  'methanol',
  'tastes',
  'sweeter',
  'o_',
  'o_o',
  'sun',
  'microsystems',
  'coventry',
  'england',
  'dod',
  'gsxr',
  'keeper',
  'gsxr',
  'list'],
 ['anders',
  'jenski',
  'quadra',
  'case',
  'source',
  'wanted',
  'organization',
  'wisconsin',
  'madison',
  'college',
  'engineering',
  'lines',
  'hello',
  'anyone',
  'knows',
  'place',
  'get',
  'case',
  'hold',
  'power',
  'supply',
  'motherboard',
  'quadra',
  'please',
  'let',
  'know',
  'tried',
  'mail',
  'order',
  'places',
  'local',
  'stores',
  'groups',
  'would',
  'prefer',
  'part',
  'get',
  'case',
  'eyes',
  'seems',
  'much',
  'comments',
  'currently',
  'guts',
  'please',
  'email',
  'post',
  'group',
  'info',
  'thanks',
  'advance',
  'andy'],
 ['charles',
  'scripter',
  'raid',
  'justification',
  'blast',
  'next',
  'time',
  'distribution',
  'usa',
  'organization',
  'michigan',
  'tech',
  'lines',
  'nntp',
  'posting',
  'host',
  'physerver',
  'phy',
  'mtu',
  'newsreader',
  'tin',
  'version',
  'pl',
  'wed',
  'apr',
  'gmt',
  'peter',
  'cash',
  'wrote',
  'got',
  'listening',
  'oclock',
  'news',
  'channel',
  'dallas',
  'trotted',
  'list',
  'justifications',
  'produced',
  'atf',
  'months',
  'investigation',
  'raid',
  'cnn',
  'claimed',
  'bought',
  'semi',
  'automatic',
  'assault',
  'rifles',
  'say',
  'koresh',
  'wasnt',
  'god',
  'like',
  'managed',
  'buy',
  'build',
  'collection',
  'fully',
  'automatic',
  'semi',
  'automatic',
  'rifles',
  'quite',
  'feat',
  'would',
  'say',
  'theyre',
  'still',
  'making',
  'charges',
  'sexual',
  'abuse',
  'course',
  'nobody',
  'seems',
  'noticed',
  'treasury',
  'department',
  'nothing',
  'sex',
  'crimes',
  'maybe',
  'feds',
  'recently',
  'instituted',
  'tax',
  'sex',
  'crimes',
  'yeah',
  'thats',
  'batf',
  'looking',
  'unregistered',
  'guns',
  'weapon',
  'gun',
  'fighting',
  'couldnt',
  'believe',
  'junk',
  'list',
  'example',
  'bds',
  'accused',
  'stockpiling',
  'bunch',
  'mm',
  'ammunition',
  'used',
  'assault',
  'rifles',
  'imagine',
  'ammunition',
  'also',
  'heard',
  'theyre',
  'claiming',
  'cautious',
  'koreshs',
  'heated',
  'ammunition',
  'stockpile',
  'seem',
  'recall',
  'smokeless',
  'powder',
  'tends',
  'decompose',
  'even',
  'moderate',
  'temperatures',
  'would',
  'rather',
  'surprised',
  'fire',
  'nature',
  'stockpile',
  'unexploded',
  'unburned',
  'also',
  'aluminum',
  'dust',
  'yeah',
  'component',
  'thermite',
  'far',
  'havent',
  'heard',
  'illegal',
  'take',
  'grinder',
  'aluminum',
  'lawn',
  'furniture',
  'seem',
  'recall',
  'aluminum',
  'powder',
  'common',
  'component',
  'fireworks',
  'folks',
  'rec',
  'pyro',
  'could',
  'probably',
  'tell',
  'thing',
  'list',
  'could',
  'conceivably',
  'illegal',
  'grenade',
  'launcher',
  'anybody',
  'know',
  'think',
  'anything',
  'legal',
  'proper',
  'license',
  'curios',
  'relics',
  'permit',
  'believe',
  'could',
  'legally',
  'handgrenades',
  'go',
  'launcher',
  'charles',
  'scripter',
  'dept',
  'physics',
  'michigan',
  'tech',
  'houghton',
  'mi',
  'government',
  'little',
  'great',
  'things',
  'shall',
  'drawn',
  'washington',
  'centre',
  'power',
  'render',
  'powerless',
  'checks',
  'provided',
  'one',
  'government',
  'another',
  'become',
  'venal',
  'oppressive',
  'government',
  'separated',
  'thomas',
  'jefferson'],
 ['noam',
  'tractinsky',
  'ten',
  'questions',
  'israel',
  'lines',
  'nntp',
  'posting',
  'host',
  'taupe',
  'cc',
  'utexas',
  'organization',
  'university',
  'texas',
  'austin',
  'lines',
  'article',
  'center',
  'policy',
  'research',
  'writes',
  'center',
  'policy',
  'research',
  'cpr',
  'ten',
  'questions',
  'israel',
  'ten',
  'questions',
  'israelis',
  'would',
  'thankful',
  'live',
  'israel',
  'could',
  'help',
  'provide',
  'accurate',
  'answers',
  'following',
  'specific',
  'questions',
  'indeed',
  'provocative',
  'questions',
  'asked',
  'time',
  'people',
  'around',
  'true',
  'israeli',
  'authorities',
  'dont',
  'recognize',
  'israeli',
  'nationality',
  'id',
  'cards',
  'israeli',
  'citizens',
  'must',
  'carry',
  'times',
  'identify',
  'people',
  'jews',
  'arabs',
  'israelis',
  'thats',
  'true',
  'israeli',
  'id',
  'cards',
  'identify',
  'people',
  'israelies',
  'smart',
  'huh',
  'true',
  'israeli',
  'stocks',
  'nuclear',
  'weapons',
  'could',
  'provide',
  'evidence',
  'yes',
  'theres',
  'one',
  'warhead',
  'parents',
  'backyard',
  'beer',
  'sheva',
  'thats',
  'miles',
  'dimona',
  'know',
  'evidence',
  'saw',
  'true',
  'israeli',
  'prisons',
  'number',
  'individuals',
  'tried',
  'secret',
  'identities',
  'date',
  'trial',
  'imprisonment',
  'state',
  'secrets',
  'yes',
  'unfortunately',
  'cant',
  'give',
  'details',
  'thats',
  'see',
  'thanks',
  'elias',
  'davidsson',
  'iceland',
  'email',
  'youre',
  'welcome',
  'let',
  'ask',
  'questions',
  'dont',
  'mind',
  'true',
  'center',
  'policy',
  'research',
  'one',
  'man',
  'enterprise',
  'true',
  'questions',
  'asked',
  'bona',
  'fide',
  'true',
  'statement',
  'indeed',
  'provocative',
  'questions',
  'asked',
  'time',
  'people',
  'around',
  'true',
  'noam'],
 ['bruce',
  'kleinman',
  'dodgers',
  'move',
  'ny',
  'la',
  'article',
  'pony',
  'apr',
  'organization',
  'ingres',
  'corporation',
  'subsidiary',
  'ask',
  'group',
  'inc',
  'lines',
  'article',
  'tom',
  'parker',
  'writes',
  'bet',
  'buddy',
  'dodgers',
  'moved',
  'ny',
  'la',
  'anyone',
  'know',
  'year',
  'moved',
  'dodgers',
  'first',
  'year',
  'la'],
 ['blaine',
  'gardner',
  'wont',
  'getting',
  'low',
  'rider',
  'year',
  'keywords',
  'congratz',
  'article',
  'dsd',
  'apr',
  'organization',
  'evans',
  'sutherland',
  'computer',
  'corporation',
  'lines',
  'nntp',
  'posting',
  'host',
  'bambam',
  'article',
  'charles',
  'rogers',
  'writes',
  'article',
  'peter',
  'ahrens',
  'writes',
  'would',
  'low',
  'drag',
  'bars',
  'way',
  'rad',
  'rearsets',
  'fj',
  'ergonomic',
  'constraints',
  'would',
  'contraceptive',
  'consequences',
  'ouch',
  'brings',
  'mind',
  'one',
  'recommendations',
  'hurt',
  'study',
  'rear',
  'gas',
  'tank',
  'close',
  'proximity',
  'highly',
  'prized',
  'easily',
  'damaged',
  'anatomy',
  'hurt',
  'et',
  'al',
  'recommended',
  'manufacturers',
  'build',
  'tank',
  'reduce',
  'er',
  'step',
  'function',
  'provided',
  'riders',
  'body',
  'slides',
  'seat',
  'onto',
  'gas',
  'tank',
  'unfortunate',
  'event',
  'bike',
  'stops',
  'suddenly',
  'rider',
  'doesnt',
  'think',
  'really',
  'inspiring',
  'manufacturers',
  'taken',
  'advice',
  'heart',
  'design',
  'bikes',
  'like',
  'cbr',
  'rr',
  'gts',
  'dunno',
  'old',
  'gs',
  'tank',
  'seat',
  'junction',
  'nice',
  'smooth',
  'travel',
  'way',
  'forward',
  'youd',
  'collect',
  'top',
  'triple',
  'clamp',
  'sensitive',
  'area',
  'id',
  'hate',
  'make',
  'choice',
  'think',
  'id',
  'prefer',
  'fjs',
  'gas',
  'tank',
  'blaine',
  'gardner',
  'evans',
  'sutherland'],
 ['dennis',
  'filipowski',
  'octopus',
  'organization',
  'hewlett',
  'packard',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'detroit',
  'game',
  'mon',
  'night',
  'octopus',
  'thrown',
  'ice',
  'meaning',
  'symbolism',
  'used',
  'throw',
  'fish',
  'ice',
  'spokane',
  'afew',
  'years',
  'ago',
  'never',
  'knew',
  'came'],
 ['amir',
  'rosenblatt',
  'legality',
  'jewish',
  'purchase',
  'israeli',
  'expansion',
  'lust',
  'nntp',
  'posting',
  'host',
  'cunixa',
  'cc',
  'columbia',
  'reply',
  'amir',
  'rosenblatt',
  'organization',
  'columbia',
  'university',
  'lines',
  'article',
  'writes',
  'adam',
  'shostack',
  'writes',
  'sam',
  'zbib',
  'writes',
  'im',
  'surprised',
  'dont',
  'consider',
  'acquisition',
  'land',
  'jews',
  'arabs',
  'purpose',
  'establishing',
  'exclusive',
  'state',
  'hostile',
  'action',
  'leading',
  'war',
  'purpose',
  'establishing',
  'state',
  'exclusive',
  'state',
  'state',
  'exclusive',
  'would',
  'arab',
  'citizens',
  'could',
  'please',
  'tell',
  'ethnic',
  'composition',
  'israel',
  'right',
  'formed',
  'consider',
  'purchase',
  'land',
  'hostile',
  'action',
  'someone',
  'wants',
  'buy',
  'land',
  'someone',
  'else',
  'willing',
  'sell',
  'mutually',
  'agreeable',
  'price',
  'commerce',
  'hostile',
  'action',
  'leading',
  'war',
  'one',
  'right',
  'mind',
  'would',
  'sell',
  'freedom',
  'dignity',
  'palestinians',
  'exception',
  'perhaps',
  'heard',
  'anti',
  'trust',
  'business',
  'world',
  'since',
  'debating',
  'legality',
  'commercial',
  'transaction',
  'must',
  'laws',
  'governing',
  'guidelines',
  'ethics',
  'transactions',
  'basic',
  'anti',
  'trust',
  'law',
  'says',
  'purchase',
  'ibm',
  'stocks',
  'purpose',
  'investing',
  'acquire',
  'large',
  'number',
  'shares',
  'intent',
  'controlling',
  'ibm',
  'make',
  'intentions',
  'clear',
  'apriori',
  'clearly',
  'jews',
  'purchased',
  'properties',
  'palastenians',
  'designs',
  'buying',
  'dwelling',
  'real',
  'estate',
  'establishing',
  'bridgehead',
  'european',
  'jews',
  'palastenians',
  'sold',
  'properties',
  'jews',
  'old',
  'tradition',
  'arab',
  'hospitality',
  'multi',
  'ethnic',
  'multi',
  'religious',
  'society',
  'accepting',
  'jews',
  'neighbours',
  'different',
  'another',
  'religion',
  'plus',
  'paid',
  'fair',
  'market',
  'value',
  'etc',
  'know',
  'victims',
  'international',
  'conspiracy',
  'im',
  'conspiracy',
  'theorist',
  'one',
  'hard',
  'dismiss',
  'right',
  'im',
  'going',
  'address',
  'point',
  'jewish',
  'national',
  'fund',
  'bought',
  'land',
  'didnt',
  'buy',
  'palestinians',
  'part',
  'tenant',
  'farmers',
  'fallahin',
  'living',
  'land',
  'owned',
  'wealthy',
  'arabs',
  'syria',
  'lebanon',
  'jnf',
  'offered',
  'premium',
  'deal',
  'owners',
  'took',
  'advantage',
  'called',
  'commerce',
  'owners',
  'however',
  'made',
  'provisions',
  'worked',
  'basically',
  'shafting',
  'selling',
  'land',
  'right',
  'blame',
  'jews',
  'adam',
  'shostack',
  'sam',
  'zbib',
  'bell',
  'northern',
  'research',
  'bitnet',
  'internet',
  'voice',
  'fax',
  'surface',
  'mail',
  'stop',
  'box',
  'station',
  'ottawa',
  'canada',
  'opinions',
  'one',
  'elses',
  'amir'],
 ['jason',
  'ehas',
  'giveaways',
  'organization',
  'home',
  'ncaa',
  'hockey',
  'champs',
  'lines',
  'article',
  'steve',
  'gallichio',
  'wrote',
  'john',
  'curcio',
  'responded',
  'drivel',
  'steve',
  'gallichio',
  'writes',
  'still',
  'surprised',
  'one',
  'tried',
  'giving',
  'away',
  'goodies',
  'end',
  'game',
  'two',
  'problems',
  'course',
  'would',
  'want',
  'make',
  'sure',
  'first',
  'people',
  'building',
  'would',
  'assured',
  'getting',
  'probably',
  'redeemable',
  'vouchers',
  'building',
  'managers',
  'want',
  'avoid',
  'costs',
  'delaying',
  'people',
  'leave',
  'building',
  'instance',
  'goodies',
  'given',
  'people',
  'exit',
  'went',
  'new',
  'jersey',
  'devils',
  'carvel',
  'ice',
  'cream',
  'puck',
  'night',
  'tm',
  'last',
  'year',
  'see',
  'beloved',
  'bruins',
  'play',
  'pucks',
  'given',
  'end',
  'game',
  'could',
  'imagine',
  'would',
  'happened',
  'late',
  'third',
  'bruins',
  'winning',
  'figures',
  'posted',
  'first',
  'article',
  'found',
  'whalers',
  'going',
  'using',
  'coupons',
  'giveaway',
  'friday',
  'night',
  'believe',
  'big',
  'corporation',
  'probably',
  'bank',
  'flying',
  'disk',
  'night',
  'think',
  'could',
  'see',
  'potential',
  'danger',
  'seen',
  'whole',
  'bunch',
  'giveaways',
  'land',
  'ice',
  'never',
  'ceases',
  'amuse',
  'im',
  'thankful',
  'players',
  'one',
  'yet',
  'sponsor',
  'lead',
  'pipe',
  'night',
  'arenas',
  'thats',
  'probably',
  'couldnt',
  'find',
  'anyone',
  'sponser',
  'maybe',
  'uss',
  'could',
  'sponser',
  'pittsburgh',
  'penguins',
  'us',
  'steel',
  'steel',
  'rod',
  'night',
  'close',
  'enough',
  'naah',
  'itd',
  'probably',
  'bounce',
  'jay',
  'caufield',
  'sg',
  'cincinnati',
  'cyclones',
  'game',
  'year',
  'ago',
  'local',
  'country',
  'station',
  'sponsored',
  'kazoo',
  'giveaway',
  'particularly',
  'bad',
  'call',
  'echl',
  'ref',
  'kazoostorm',
  'time',
  'ice',
  'thought',
  'pathetic',
  'display',
  'fans',
  'rightfully',
  'unhappy',
  'jason'],
 ['douglas',
  'craig',
  'holland',
  'text',
  'white',
  'house',
  'announcement',
  'clipper',
  'chip',
  'encryption',
  'distribution',
  'na',
  'nntp',
  'posting',
  'host',
  'beethoven',
  'cs',
  'colostate',
  'organization',
  'colorado',
  'state',
  'university',
  'computer',
  'science',
  'department',
  'lines',
  'article',
  'robert',
  'ward',
  'writes',
  'article',
  'writes',
  'since',
  'us',
  'constitutions',
  'guarantees',
  'right',
  'every',
  'american',
  'bear',
  'arms',
  'every',
  'american',
  'entitled',
  'matter',
  'read',
  'applicable',
  'part',
  'constitution',
  'interpreted',
  'context',
  'please',
  'posting',
  'refers',
  'right',
  'people',
  'organize',
  'militia',
  'individuals',
  'carry',
  'handguns',
  'grenades',
  'assault',
  'rifles',
  'read',
  'constitution',
  'second',
  'amendment',
  'says',
  'right',
  'bear',
  'arms',
  'shall',
  'infringed',
  'well',
  'regulated',
  'militia',
  'may',
  'easily',
  'formed',
  'interpretation',
  'second',
  'shows',
  'qualifications',
  'right',
  'keep',
  'bear',
  'arms',
  'want',
  'mail',
  'way',
  'gun',
  'talk',
  'belongs',
  'talk',
  'politics',
  'guns',
  'doug',
  'holland'],
 ['shaft',
  'drives',
  'wheelies',
  'distribution',
  'rec',
  'organization',
  'cornell',
  'university',
  'lines',
  'possible',
  'wheelie',
  'motorcycle',
  'shaft',
  'drive',
  'mike',
  'terry',
  'virago'],
 ['nabil',
  'ayoub',
  'monophysites',
  'mike',
  'walker',
  'organization',
  'wisconsin',
  'madison',
  'college',
  'engineering',
  'lines',
  'hello',
  'src',
  'readers',
  'misconception',
  'copts',
  'among',
  'oriental',
  'orthodox',
  'churches',
  'believe',
  'monophysitism',
  'pops',
  'discussion',
  'ago',
  'article',
  'andrew',
  'byler',
  'writes',
  'proper',
  'term',
  'mike',
  'expresses',
  'monophysitism',
  'heresy',
  'condemned',
  'council',
  'chalcedon',
  'ad',
  'grew',
  'reaction',
  'nestorianism',
  'held',
  'son',
  'jesus',
  'two',
  'different',
  'people',
  'happened',
  'united',
  'body',
  'temporarily',
  'monophysitism',
  'held',
  'copts',
  'egypt',
  'ethipoia',
  'jacobites',
  'syria',
  'armenian',
  'orthodox',
  'ofm',
  'comments',
  'issues',
  'get',
  'mighty',
  'subtle',
  'see',
  'people',
  'saying',
  'different',
  'things',
  'often',
  'hard',
  'tell',
  'whether',
  'really',
  'mean',
  'seriously',
  'different',
  'things',
  'whether',
  'using',
  'different',
  'terminology',
  'dont',
  'think',
  'theres',
  'question',
  'problem',
  'nestorius',
  'would',
  'agree',
  'saying',
  'christ',
  'human',
  'form',
  'without',
  'real',
  'human',
  'nature',
  'heretical',
  'id',
  'like',
  'bit',
  'wary',
  'copts',
  'armenians',
  'etc',
  'recent',
  'discussions',
  'suggest',
  'monophysite',
  'position',
  'may',
  'far',
  'orthodoxy',
  'many',
  'thought',
  'appreciation',
  'moderator',
  'believe',
  'elaboration',
  'needed',
  'excerpt',
  'article',
  'featured',
  'first',
  'issue',
  'copt',
  'net',
  'newsletter',
  'authority',
  'eastern',
  'roman',
  'empire',
  'constantinople',
  'opposed',
  'western',
  'empire',
  'rome',
  'patriarchs',
  'popes',
  'alexandria',
  'played',
  'leading',
  'roles',
  'christian',
  'theology',
  'invited',
  'everywhere',
  'speak',
  'christian',
  'faith',
  'st',
  'cyril',
  'pope',
  'alexandria',
  'head',
  'ecumenical',
  'council',
  'held',
  'ephesus',
  'year',
  'said',
  'bishops',
  'church',
  'alexandria',
  'nothing',
  'spend',
  'time',
  'meetings',
  'leading',
  'role',
  'however',
  'fare',
  'well',
  'politics',
  'started',
  'intermingle',
  'church',
  'affairs',
  'started',
  'emperor',
  'marcianus',
  'interfered',
  'matters',
  'faith',
  'church',
  'response',
  'st',
  'dioscorus',
  'pope',
  'alexandria',
  'later',
  'exiled',
  'interference',
  'clear',
  'nothing',
  'church',
  'political',
  'motives',
  'became',
  'even',
  'apparent',
  'chalcedon',
  'coptic',
  'church',
  'unfairly',
  'accused',
  'following',
  'teachings',
  'eutyches',
  'believed',
  'monophysitism',
  'doctrine',
  'maintains',
  'lord',
  'jesus',
  'christ',
  'one',
  'nature',
  'divine',
  'two',
  'natures',
  'human',
  'well',
  'divine',
  'coptic',
  'church',
  'never',
  'believed',
  'monophysitism',
  'way',
  'portrayed',
  'council',
  'chalcedon',
  'council',
  'monophysitism',
  'meant',
  'believing',
  'one',
  'nature',
  'copts',
  'believe',
  'lord',
  'perfect',
  'divinity',
  'perfect',
  'humanity',
  'divinity',
  'humanity',
  'united',
  'one',
  'nature',
  'called',
  'nature',
  'incarnate',
  'word',
  'reiterated',
  'st',
  'cyril',
  'alexandria',
  'copts',
  'thus',
  'believe',
  'two',
  'natures',
  'human',
  'divine',
  'united',
  'one',
  'without',
  'mingling',
  'without',
  'confusion',
  'without',
  'alteration',
  'declaration',
  'faith',
  'end',
  'coptic',
  'divine',
  'liturgy',
  'two',
  'natures',
  'separate',
  'moment',
  'twinkling',
  'eye',
  'also',
  'declaration',
  'faith',
  'end',
  'coptic',
  'divine',
  'liturgy',
  'coptic',
  'church',
  'misunderstood',
  'th',
  'century',
  'council',
  'chalcedon',
  'perhaps',
  'council',
  'understood',
  'church',
  'correctly',
  'wanted',
  'exile',
  'church',
  'isolate',
  'abolish',
  'egyptian',
  'independent',
  'pope',
  'despite',
  'coptic',
  'church',
  'remained',
  'strict',
  'steadfast',
  'faith',
  'whether',
  'conspiracy',
  'western',
  'churches',
  'exile',
  'coptic',
  'church',
  'punishment',
  'refusal',
  'politically',
  'influenced',
  'whether',
  'pope',
  'dioscurus',
  'didnt',
  'quite',
  'go',
  'extra',
  'mile',
  'make',
  'point',
  'copts',
  'monophysite',
  'coptic',
  'church',
  'always',
  'felt',
  'mandate',
  'reconcile',
  'semantic',
  'differences',
  'christian',
  'churches',
  'aptly',
  'expressed',
  'current',
  'th',
  'successor',
  'st',
  'mark',
  'pope',
  'shenouda',
  'iii',
  'coptic',
  'church',
  'faith',
  'important',
  'anything',
  'others',
  'must',
  'know',
  'semantics',
  'terminology',
  'little',
  'importance',
  'us',
  'throughout',
  'century',
  'coptic',
  'church',
  'played',
  'important',
  'role',
  'ecumenical',
  'movement',
  'coptic',
  'church',
  'one',
  'founders',
  'world',
  'council',
  'churches',
  'remained',
  'member',
  'council',
  'since',
  'coptic',
  'church',
  'member',
  'african',
  'council',
  'churches',
  'aacc',
  'middle',
  'east',
  'council',
  'churches',
  'mecc',
  'church',
  'plays',
  'important',
  'role',
  'christian',
  'movement',
  'conducting',
  'dialogues',
  'aiming',
  'resolving',
  'theological',
  'differences',
  'catholic',
  'greek',
  'orthodox',
  'presbyterian',
  'evangelical',
  'churches',
  'final',
  'note',
  'oriental',
  'orthodox',
  'eastren',
  'orthodox',
  'sign',
  'common',
  'statement',
  'christology',
  'heresey',
  'monophysitism',
  'condemned',
  'coptic',
  'orthodox',
  'church',
  'believe',
  'monophysitism',
  'peace',
  'nabil',
  'nabil',
  'ayoub',
  'engine',
  'research',
  'center',
  'dept',
  'mechanical',
  'engineering',
  'university',
  'wisconsin',
  'madison',
  'mentioned',
  'brief',
  'apology',
  'comment',
  'quoted',
  'confused',
  'appear',
  'say',
  'nestorius',
  'monophysite',
  'andrew',
  'byler',
  'correctly',
  'stated',
  'nestorians',
  'monophysites',
  'actually',
  'opposite',
  'parties',
  'point',
  'making',
  'nabil',
  'explains',
  'detail',
  'groups',
  'considered',
  'heretical',
  'probably',
  'arent',
  'chalcedon',
  'compromise',
  'two',
  'groups',
  'alexandrians',
  'antiochenes',
  'adopted',
  'language',
  'intended',
  'acceptable',
  'moderates',
  'camps',
  'ruling',
  'extremes',
  'agree',
  'extremes',
  'heretical',
  'however',
  'course',
  'complex',
  'politics',
  'time',
  'appears',
  'people',
  'got',
  'rejected',
  'didnt',
  'intend',
  'heresy',
  'simply',
  'used',
  'language',
  'understood',
  'even',
  'mispresented',
  'seem',
  'jointed',
  'compromise',
  'reasons',
  'doctrine',
  'groups',
  'descended',
  'supposedly',
  'heretical',
  'camps',
  'posting',
  'discussed',
  'descendants',
  'alexandrians',
  'also',
  'remaining',
  'nestorians',
  'like',
  'current',
  'called',
  'monophysites',
  'reason',
  'believe',
  'current',
  'called',
  'nestorians',
  'heretical',
  'either',
  'sheltered',
  'nestorius',
  'saw',
  'unfair',
  'treatment',
  'claim',
  'adopt',
  'heresies',
  'fact',
  'seem',
  'follow',
  'moderate',
  'representatives',
  'antiochene',
  'tradition',
  'clh'],
 ['richard',
  'coyle',
  'difficult',
  'get',
  'penguin',
  'tickets',
  'organization',
  'university',
  'pittsburgh',
  'lines',
  'article',
  'dean',
  'money',
  'writes',
  'line',
  'says',
  'terribly',
  'difficult',
  'get',
  'tickets',
  'penguins',
  'games',
  'especially',
  'playoffs',
  'would',
  'easy',
  'find',
  'scalpers',
  'outside',
  'igloo',
  'selling',
  'tickets',
  'always',
  'scalpers',
  'tickets',
  'outside',
  'arena',
  'might',
  'pay',
  'bucks',
  'extra',
  'always',
  'find',
  'look',
  'street',
  'message',
  'board',
  'street',
  'front',
  'hyatt',
  'even',
  'around',
  'gate',
  'later',
  'buy',
  'less',
  'money',
  'youll',
  'pay',
  'regular',
  'season',
  'could',
  'usually',
  'find',
  'near',
  'face',
  'value',
  'wait',
  'game',
  'time',
  'might',
  'better',
  'pick',
  'earlier',
  'though',
  'rick'],
 ['michael',
  'ameres',
  'compare',
  'organization',
  'fidonet',
  'node',
  'even',
  'odd',
  'forest',
  'hills',
  'ny',
  'lines',
  'believe',
  'goes',
  'go',
  'powerpc',
  'pentium',
  'resent',
  'article',
  'one',
  'macmags',
  'think',
  'mhz',
  'accelerator',
  'slightly',
  'slower',
  'mhz',
  'accel',
  'using',
  'system',
  'designed',
  'stands',
  'reason',
  'system',
  'designed',
  'ie',
  'quadra',
  'would',
  'better',
  'overall',
  'id',
  'figure',
  'along',
  'lines',
  'new',
  'powerpc',
  'stuff',
  'supposed',
  'run',
  'system',
  'level',
  'fast',
  'quadra',
  'system',
  'whatever',
  'allow',
  'times',
  'speed',
  'powerpc',
  'based',
  'systems',
  'wait',
  'think',
  'laps',
  'pentium',
  'pro',
  'life',
  'pro',
  'women',
  'michael',
  'ameres',
  'internet'],
 ['mike',
  'abbot',
  'high',
  'level',
  'language',
  'compilers',
  'ucontrollers',
  'article',
  'stellenb',
  'mabbot',
  'organization',
  'csir',
  'lines',
  'nntp',
  'posting',
  'host',
  'disclaimer',
  'none',
  'opions',
  'expressed',
  'herein',
  'official',
  'disclaimer',
  'opinions',
  'csir',
  'subsidiaries',
  'disclaimer',
  'dont',
  'freak',
  'anything',
  'howdy',
  'chaps',
  'anybody',
  'got',
  'pointers',
  'good',
  'pascal',
  'etc',
  'compilers',
  'shareware',
  'otherwise',
  'specific',
  'need',
  'responses',
  'many',
  'varied',
  'post',
  'summary',
  'cheers',
  'mike',
  'mike',
  'abbott',
  'cape',
  'town',
  'south',
  'africa'],
 ['bake',
  'timmons',
  'amusing',
  'atheists',
  'agnostics',
  'lines',
  'maddi',
  'hausmann',
  'chirps',
  'bake',
  'timmons',
  'writes',
  'first',
  'seem',
  'reasonable',
  'guy',
  'try',
  'honest',
  'include',
  'sentence',
  'afterwards',
  'honest',
  'ended',
  'like',
  'swear',
  'thats',
  'nice',
  'hmmmm',
  'recognize',
  'warning',
  'signs',
  'alternating',
  'polite',
  'rude',
  'coming',
  'newsgroup',
  'huge',
  'chip',
  'shoulder',
  'calls',
  'people',
  'names',
  'makes',
  'nice',
  'whirrr',
  'click',
  'whirrr',
  'forgot',
  'third',
  'equality',
  'whirrr',
  'click',
  'whirrr',
  'see',
  'whirr',
  'click',
  'whirr',
  'frank',
  'odwyer',
  'might',
  'also',
  'contained',
  'shell',
  'pop',
  'stack',
  'determine',
  'whirr',
  'click',
  'whirr',
  'killfile',
  'keith',
  'allen',
  'schneider',
  'frank',
  'closet',
  'theist',
  'odwyer',
  'maddi',
  'mad',
  'sound',
  'geek',
  'hausmann',
  'whirrr',
  'click',
  'whirrr',
  'bake',
  'timmons',
  'iii',
  'theres',
  'nothing',
  'higher',
  'stronger',
  'wholesome',
  'useful',
  'life',
  'good',
  'memory',
  'alyosha',
  'brothers',
  'karamazov',
  'dostoevsky'],
 ['kurt',
  'george',
  'gjerde',
  'drawing',
  'lines',
  'inverse',
  'xor',
  'organization',
  'university',
  'bergen',
  'norway',
  'lines',
  'article',
  'david',
  'young',
  'writes',
  'xsetfunction',
  'mydisplay',
  'gc',
  'gxxor',
  'xsetforeground',
  'mydisplay',
  'gc',
  'drawindex',
  'draw',
  'xdrawline',
  'mydisplay',
  'xtwindow',
  'drawingarea',
  'gc',
  'xflush',
  'mydisplay',
  'im',
  'done',
  'return',
  'things',
  'normal',
  'xsetfunction',
  'mydisplay',
  'gc',
  'gxcopy',
  'id',
  'like',
  'happen',
  'lines',
  'draw',
  'inverse',
  'whatever',
  'im',
  'drawing',
  'instead',
  'happens',
  'get',
  'white',
  'lines',
  'lines',
  'white',
  'background',
  'nothing',
  'shows',
  'lines',
  'black',
  'area',
  'nothing',
  'shows',
  'strange',
  'gxxor',
  'function',
  'seems',
  'right',
  'since',
  'rubber',
  'banding',
  'box',
  'erases',
  'redraws',
  'correctly',
  'ie',
  'disturbing',
  'underlying',
  'image',
  'suggestions',
  'im',
  'wrong',
  'david',
  'try',
  'change',
  'gxxor',
  'gxequiv',
  'programs',
  'run',
  'ncd',
  'terminals',
  'sun',
  'terminals',
  'change',
  'back',
  'gxxor',
  'kurt'],
 ['doug',
  'ashley',
  'se',
  'rom',
  'organization',
  'wyvern',
  'com',
  'lines',
  'writes',
  'article',
  'william',
  'wright',
  'writes',
  'anyway',
  'hoping',
  'someone',
  'knowledgeable',
  'mac',
  'internals',
  'could',
  'set',
  'straight',
  'simply',
  'impossible',
  'mac',
  'se',
  'print',
  'grayscale',
  'could',
  'someone',
  'armed',
  'enough',
  'info',
  'little',
  'pro',
  'gramming',
  'experience',
  'cook',
  'something',
  'would',
  'supplement',
  'roms',
  'capabilities',
  'grayscale',
  'features',
  'believe',
  'need',
  'mac',
  'equipped',
  'colour',
  'quickdraw',
  'told',
  'somewhere',
  'mentioned',
  'apple',
  'facts',
  'guide',
  'apple',
  'sellers',
  'press',
  'release',
  'technical',
  'specs',
  'sean',
  'think',
  'find',
  'mac',
  'se',
  'print',
  'grayscale',
  'images',
  'loaded',
  'proper',
  'software',
  'however',
  'mac',
  'se',
  'cannot',
  'display',
  'grayscale',
  'screen',
  'attached',
  'video',
  'ability',
  'rom',
  'might',
  'able',
  'print',
  'grayscale',
  'youd',
  'hard',
  'time',
  'seeing',
  'grayscale',
  'image',
  'want',
  'print',
  'doug',
  'signature',
  'construction',
  'wyvern',
  'technologies',
  'tidewaters',
  'premier',
  'online',
  'information',
  'system',
  'login',
  'guest',
  'password',
  'guest',
  'register'],
 ['tammy',
  'healy',
  'judge',
  'bobby',
  'lines',
  'organization',
  'walla',
  'walla',
  'college',
  'lines',
  'article',
  'keith',
  'ryan',
  'writes',
  'keith',
  'ryan',
  'judge',
  'bobby',
  'date',
  'thu',
  'apr',
  'gmt',
  'mozumder',
  'writes',
  'tammy',
  'healy',
  'writes',
  'would',
  'like',
  'take',
  'liberty',
  'quote',
  'christian',
  'writer',
  'named',
  'ellen',
  'white',
  'hope',
  'said',
  'help',
  'edit',
  'remarks',
  'group',
  'future',
  'set',
  'standard',
  'make',
  'opinions',
  'views',
  'duty',
  'interpretations',
  'scripture',
  'criterion',
  'others',
  'heart',
  'condemn',
  'come',
  'ideal',
  'thoughts',
  'fromthe',
  'mount',
  'blessing',
  'point',
  'point',
  'taken',
  'upon',
  'judge',
  'others',
  'god',
  'true',
  'judge',
  'sun',
  'starts',
  'orbit',
  'earth',
  'accept',
  'bible',
  'agree',
  'totally',
  'amen',
  'stated',
  'better',
  'less',
  'world',
  'tammy'],
 ['cutter',
  'nc',
  'vs',
  'hunt',
  'marine',
  'gay',
  'bashing',
  'wilmington',
  'nc',
  'verdict',
  'distribution',
  'world',
  'organization',
  'gordian',
  'knot',
  'gloster',
  'ga',
  'lines',
  'shum',
  'writes',
  'article',
  'wo',
  'sad',
  'day',
  'civil',
  'rights',
  'typical',
  'nc',
  'unfortunately',
  'typical',
  'principle',
  'reasonable',
  'doubt',
  'upheld',
  'north',
  'carolina',
  'would',
  'count',
  'states',
  'favor',
  'reasonable',
  'doubt',
  'dates',
  'back',
  'human',
  'rights',
  'time',
  'civil',
  'rights',
  'civil',
  'rights',
  'issued',
  'state',
  'whatever',
  'strings',
  'attached',
  'choose',
  'grantor',
  'said',
  'rights',
  'means',
  'verdicts',
  'determined',
  'needs',
  'state',
  'rather',
  'guilt',
  'innocence',
  'traditional',
  'sense',
  'subjective',
  'rather',
  'objective',
  'may',
  'make',
  'harder',
  'anticipate',
  'right',
  'may',
  'sacrificed',
  'wrong',
  'inadvertantly',
  'really',
  'small',
  'price',
  'pay',
  'common',
  'good',
  'dont',
  'think',
  'chris',
  'jobs',
  'easy',
  'person',
  'doesnt',
  'holts',
  'law'],
 ['edward',
  'shnekendorf',
  'happy',
  'birthday',
  'israel',
  'organization',
  'university',
  'illinois',
  'urbana',
  'lines',
  'israel',
  'happy',
  'th',
  'birthday'],
 ['nathan',
  'moore',
  'bernoulli',
  'drives',
  'disks',
  'organization',
  'jhu',
  'applied',
  'physics',
  'laboratory',
  'lines',
  'nilay',
  'patel',
  'writes',
  'looking',
  'bernoulli',
  'removable',
  'tapes',
  'drive',
  'dont',
  'laugh',
  'serious',
  'mb',
  'tapes',
  'lying',
  'around',
  'would',
  'like',
  'get',
  'rid',
  'please',
  'mail',
  'nilay',
  'patel',
  'mean',
  'disks',
  'dont',
  'tapes',
  'forgot',
  'say',
  'whether',
  'looking',
  'old',
  'newer',
  'sorry',
  'work',
  'dont',
  'think',
  'would',
  'appreciate',
  'nathan',
  'moore',
  'johns',
  'hopkins',
  'university',
  'applied',
  'physics',
  'laboratory',
  'cis',
  'please',
  'note',
  'address',
  'email',
  'replies'],
 ['mr',
  'william',
  'robie',
  'ibm',
  'pc',
  'convertible',
  'parts',
  'sale',
  'organization',
  'university',
  'maryland',
  'baltimore',
  'county',
  'campus',
  'lines',
  'nntp',
  'posting',
  'host',
  'umbc',
  'umbc',
  'auth',
  'user',
  'robie',
  'used',
  'working',
  'parts',
  'available',
  'original',
  'ibm',
  'laptop',
  'pc',
  'convertible',
  'one',
  'things',
  'still',
  'using',
  'may',
  'found',
  'ibm',
  'wants',
  'outrageous',
  'prices',
  'parts',
  'built',
  'supply',
  'enough',
  'parts',
  'keep',
  'mine',
  'going',
  'years',
  'willing',
  'part',
  'rest',
  'basically',
  'standard',
  'parts',
  'except',
  'motherboard',
  'battery',
  'power',
  'supply',
  'ive',
  'got',
  'accessories',
  'ask',
  'limited',
  'supply',
  'however',
  'ive',
  'basically',
  'cannibalized',
  'couple',
  'old',
  'machines',
  'interested',
  'please',
  'mail',
  'note',
  'want',
  'convince',
  'somehow',
  'superior',
  'newer',
  'better',
  'machines',
  'want',
  'inform',
  'worthless',
  'junk',
  'save',
  'effort',
  'ill',
  'delete',
  'note',
  'us',
  'bought',
  'machines',
  'first',
  'came',
  'still',
  'find',
  'useful',
  'word',
  'processing',
  'etc',
  'im',
  'saving',
  'mine',
  'future',
  'antique'],
 ['keith',
  'allan',
  'schneider',
  'keith',
  'schneider',
  'stealth',
  'poster',
  'organization',
  'california',
  'institute',
  'technology',
  'pasadena',
  'lines',
  'nntp',
  'posting',
  'host',
  'lloyd',
  'caltech',
  'mike',
  'mcangus',
  'writes',
  'let',
  'see',
  'understand',
  'saying',
  'order',
  'talk',
  'knowledgeably',
  'religion',
  'atheists',
  'must',
  'first',
  'immersed',
  'religion',
  'rare',
  'individual',
  'could',
  'left',
  'dont',
  'understand',
  'said',
  'dont',
  'think',
  'people',
  'discuss',
  'subjective',
  'merits',
  'religion',
  'objectively',
  'obvious',
  'people',
  'said',
  'everyone',
  'would',
  'better',
  'without',
  'religion',
  'almost',
  'certainly',
  'isnt',
  'true',
  'really',
  'threatened',
  'motto',
  'people',
  'motto',
  'tool',
  'lets',
  'try',
  'take',
  'away',
  'tool',
  'guns',
  'axes',
  'tools',
  'used',
  'murder',
  'taken',
  'away',
  'say',
  'dont',
  'think',
  'motto',
  'misuse',
  'warrants',
  'removal',
  'least',
  'case',
  'keith'],
 ['susan',
  'soric',
  'wanted',
  'moltmanns',
  'god',
  'creation',
  'organization',
  'important',
  'lines',
  'im',
  'greatly',
  'need',
  'jurgen',
  'moltmanns',
  'book',
  'god',
  'creation',
  'ecological',
  'doctrine',
  'creation',
  'copy',
  'youre',
  'willing',
  'part',
  'id',
  'love',
  'hear',
  'soon',
  'may',
  'call',
  'mail',
  'thanks',
  'susan',
  'soric',
  'independent',
  'agent'],
 ['tony',
  'alicea',
  'oto',
  'ancient',
  'order',
  'oriental',
  'templars',
  'organization',
  'case',
  'western',
  'reserve',
  'university',
  'cleveland',
  'oh',
  'usa',
  'lines',
  'reply',
  'tony',
  'alicea',
  'nntp',
  'posting',
  'host',
  'hela',
  'ins',
  'cwru',
  'previous',
  'article',
  'darrin',
  'hyrup',
  'says',
  'thelema',
  'lodge',
  'dont',
  'internet',
  'address',
  'cis',
  'address',
  'reached',
  'via',
  'uucp',
  'internet',
  'guess',
  'would',
  'something',
  'like',
  'tony'],
 ['early',
  'bbddd',
  'returns',
  'organization',
  'social',
  'science',
  'computing',
  'laboratory',
  'nntp',
  'posting',
  'host',
  'vaxi',
  'sscl',
  'uwo',
  'ca',
  'lines',
  'article',
  'adam',
  'levin',
  'writes',
  'curious',
  'anyone',
  'started',
  'standout',
  'early',
  'season',
  'bb',
  'ddd',
  'year',
  'concerned',
  'fan',
  'bb',
  'ddd',
  'hoping',
  'produce',
  'first',
  'update',
  'bb',
  'ddd',
  'week',
  'please',
  'send',
  'info',
  'significant',
  'longest',
  'critical',
  'etc',
  'home',
  'run',
  'seen',
  'yet',
  'season',
  'vince'],
 ['warren',
  'vonroeschlaub',
  'albert',
  'sabin',
  'reply',
  'warren',
  'vonroeschlaub',
  'organization',
  'ministry',
  'silly',
  'walks',
  'lines',
  'article',
  'bill',
  'rawlins',
  'writes',
  'since',
  'referred',
  'messiah',
  'assume',
  'referring',
  'new',
  'testament',
  'please',
  'detail',
  'complaints',
  'mail',
  'dont',
  'want',
  'post',
  'first',
  'century',
  'greek',
  'well',
  'known',
  'well',
  'understood',
  'considered',
  'josephus',
  'jewish',
  'historian',
  'also',
  'wrote',
  'jesus',
  'addition',
  'four',
  'gospel',
  'accounts',
  'much',
  'harmony',
  'bill',
  'find',
  'rather',
  'remarkable',
  'managed',
  'zero',
  'probably',
  'weakest',
  'evidence',
  'probably',
  'convincing',
  'anti',
  'christian',
  'literature',
  'put',
  'jewish',
  'councils',
  'second',
  'century',
  'enormous',
  'quantities',
  'detailed',
  'arguments',
  'christianity',
  'many',
  'arguments',
  'still',
  'used',
  'today',
  'despite',
  'volumes',
  'tracts',
  'attacking',
  'christianity',
  'one',
  'denies',
  'existance',
  'jesus',
  'activities',
  'find',
  'considerably',
  'compelling',
  'josephus',
  'harmony',
  'gospels',
  'especially',
  'considering',
  'matthew',
  'luke',
  'probably',
  'used',
  'mark',
  'source',
  'warren',
  'kurt',
  'vonroeschlaub',
  'iowa',
  'state',
  'university',
  'math',
  'department',
  'carver',
  'hall',
  'ames',
  'ia'],
 ['michael',
  'chapman',
  'compiling',
  'help',
  'organization',
  'itc',
  'uva',
  'community',
  'access',
  'unix',
  'internet',
  'project',
  'lines',
  'id',
  'like',
  'compile',
  'sony',
  'nws',
  'running',
  'news',
  'distribution',
  'support',
  'config',
  'release',
  'notes',
  'say',
  'tested',
  'machine',
  'also',
  'release',
  'notes',
  'nothing',
  'sony',
  'listed',
  'supported',
  'servers',
  'supposed',
  'server',
  'os',
  'supported',
  'hardware',
  'something',
  'binaries',
  'used',
  'server',
  'may',
  'seem',
  'like',
  'silly',
  'questions',
  'im',
  'really',
  'confused',
  'raise',
  'taxes',
  'middle',
  'class',
  'unknown'],
 ['naomi',
  'courter',
  'endometriosis',
  'organization',
  'concert',
  'connect',
  'public',
  'access',
  'unix',
  'lines',
  'anyone',
  'give',
  'information',
  'regarding',
  'endometriosis',
  'heard',
  'common',
  'disease',
  'among',
  'women',
  'anyone',
  'provide',
  'names',
  'specialist',
  'surgeon',
  'north',
  'carolina',
  'research',
  'triangle',
  'park',
  'area',
  'raleigh',
  'durham',
  'chapel',
  'hill',
  'familiar',
  'condition',
  'would',
  'really',
  'appreciate',
  'thanks',
  'naomi',
  'naomi',
  'courter',
  'network',
  'services',
  'specialist',
  'mcnc',
  'center',
  'communications',
  'concert',
  'network'],
 ['henry',
  'spencer',
  'hst',
  'servicing',
  'mission',
  'scheduled',
  'days',
  'organization',
  'toronto',
  'zoology',
  'lines',
  'article',
  'pat',
  'writes',
  'said',
  'boost',
  'done',
  'grapple',
  'hst',
  'stow',
  'cargo',
  'bay',
  'oms',
  'burn',
  'high',
  'altitude',
  'unstow',
  'hst',
  'repair',
  'gyros',
  'costar',
  'install',
  'fix',
  'solar',
  'arrays',
  'return',
  'earth',
  'actually',
  'reboost',
  'probably',
  'done',
  'last',
  'fuel',
  'reserve',
  'evas',
  'case',
  'chase',
  'adrift',
  'astronaut',
  'something',
  'like',
  'yes',
  'youve',
  'got',
  'idea',
  'reboost',
  'done',
  'taking',
  'whole',
  'shuttle',
  'guess',
  'bother',
  'usingthe',
  'shuttle',
  'reboost',
  'grapple',
  'said',
  'fixes',
  'bolt',
  'small',
  'liquid',
  'fueled',
  'thruster',
  'module',
  'hst',
  'let',
  'make',
  'boost',
  'somebody',
  'build',
  'thruster',
  'module',
  'shelf',
  'item',
  'trivial',
  'piece',
  'hardware',
  'since',
  'include',
  'attitude',
  'control',
  'hsts',
  'strong',
  'enough',
  'compensate',
  'things',
  'like',
  'thruster',
  'imbalance',
  'guidance',
  'provision',
  'feed',
  'gyro',
  'data',
  'hsts',
  'gyros',
  'external',
  'device',
  'separation',
  'dont',
  'want',
  'left',
  'attached',
  'afterward',
  'avoid',
  'possible',
  'contamination',
  'telescope',
  'lid',
  'opened',
  'also',
  'get',
  'worry',
  'whether',
  'lid',
  'going',
  'open',
  'reboost',
  'done',
  'hst',
  'inaccessible',
  'shuttle',
  'lid',
  'stays',
  'closed',
  'duration',
  'prevent',
  'mirror',
  'contamination',
  'thrusters',
  'like',
  'original',
  'plan',
  'orbital',
  'maneuvering',
  'vehicle',
  'reboost',
  'omv',
  'planned',
  'sort',
  'small',
  'space',
  'tug',
  'well',
  'suited',
  'precisely',
  'sort',
  'job',
  'unfortunately',
  'costing',
  'lot',
  'develop',
  'list',
  'definitely',
  'known',
  'applications',
  'relatively',
  'short',
  'got',
  'cancelled',
  'svr',
  'resembles',
  'high',
  'speed',
  'collision',
  'henry',
  'spencer',
  'toronto',
  'zoology',
  'svr',
  'sunos',
  'dick',
  'dunn',
  'utzoo',
  'henry'],
 ['derek',
  'juntunen',
  'pick',
  'nhl',
  'draft',
  'distribution',
  'world',
  'organization',
  'amiga',
  'bitswap',
  'central',
  'dispatch',
  'lines',
  'recently',
  'bought',
  'pack',
  'prospect',
  'hockey',
  'cards',
  'various',
  'players',
  'coming',
  'nhl',
  'got',
  'particular',
  'card',
  'russian',
  'named',
  'viktor',
  'kozlov',
  'says',
  'many',
  'scouts',
  'believe',
  'pick',
  'another',
  'guy',
  'quoted',
  'saying',
  'hes',
  'good',
  'mario',
  'lemieux',
  'anyone',
  'know',
  'guy',
  'via',
  'dlg',
  'pro'],
 ['xremote',
  'reply',
  'organization',
  'digital',
  'equipment',
  'corporation',
  'lines',
  'newsreader',
  'mxrn',
  'hi',
  'remember',
  'reading',
  'hallucinating',
  'ncds',
  'pc',
  'xremote',
  'functionality',
  'given',
  'ncd',
  'mit',
  'inclusion',
  'true',
  'set',
  'mode',
  'cheap',
  'wait',
  'get',
  'compressed',
  'serial',
  'line',
  'server',
  'support',
  'thanks',
  'terry',
  'lemons',
  'digital',
  'equipment',
  'corporation'],
 ['clipper',
  'considered',
  'harmful',
  'lines',
  'ken',
  'shirriff',
  'message',
  'id',
  'seems',
  'likely',
  'large',
  'subset',
  'encrypted',
  'communications',
  'would',
  'archived',
  'tape',
  'could',
  'read',
  'sometime',
  'future',
  'probable',
  'cause',
  'arises',
  'warrant',
  'obtained',
  'think',
  'unlikely',
  'data',
  'like',
  'could',
  'used',
  'court',
  'currently',
  'leas',
  'install',
  'wiretaps',
  'large',
  'numbers',
  'phones',
  'record',
  'calls',
  'without',
  'listening',
  'post',
  'facto',
  'obtain',
  'warrants',
  'listen',
  'calls',
  'probable',
  'cause',
  'established',
  'strategy',
  'wouldnt',
  'get',
  'stuff',
  'admitted',
  'court',
  'least',
  'near',
  'term',
  'words',
  'near',
  'tell',
  'thing',
  'makes',
  'evidence',
  'inadmissable',
  'interception',
  'without',
  'warrant',
  'attempt',
  'interpret',
  'intercepted',
  'without',
  'warrant',
  'id',
  'surprised',
  'archiving',
  'data',
  'without',
  'consent',
  'would',
  'interpreted',
  'anything',
  'analogous',
  'wiretap',
  'courts',
  'note',
  'doesnt',
  'mean',
  'think',
  'wont',
  'done',
  'technically',
  'feasible',
  'im',
  'sure',
  'many',
  'wiretaps',
  'done',
  'without',
  'warrants',
  'fish',
  'avenues',
  'investigate',
  'future',
  'start',
  'surveilance',
  'start',
  'archiving',
  'data',
  'trump',
  'probable',
  'cause',
  'decrypt',
  'post',
  'facto',
  'warrant',
  'hand',
  'investigation',
  'gets',
  'boost',
  'data',
  'sadly',
  'wont',
  'ever',
  'presented',
  'jury',
  'im',
  'posting',
  'interesting',
  'cautionary',
  'tale',
  'projecting',
  'archiving',
  'scenario',
  'extremes',
  'read',
  'lacey',
  'friends',
  'collection',
  'sf',
  'stories',
  'david',
  'drake',
  'us',
  'starts',
  'slippery',
  'slope',
  'archiving',
  'everyghing',
  'dont',
  'worry',
  'folks',
  'stored',
  'secure',
  'repository',
  'nobody',
  'leas',
  'warrants',
  'get',
  'way',
  'well',
  'installing',
  'cameras',
  'major',
  'streets',
  'hey',
  'nothing',
  'new',
  'already',
  'cameras',
  'banks',
  'teller',
  'machines',
  'dont',
  'well',
  'pass',
  'laws',
  'requiring',
  'cameras',
  'covering',
  'public',
  'places',
  'private',
  'places',
  'well',
  'make',
  'crime',
  'ever',
  'range',
  'camera',
  'except',
  'legally',
  'licensed',
  'privacy',
  'cubicles',
  'alone',
  'thorough',
  'body',
  'search',
  'see',
  'theres',
  'still',
  'right',
  'privacy',
  'havent',
  'curtailed',
  'rights',
  'really',
  'think',
  'much',
  'easier',
  'itd',
  'solve',
  'crimes',
  'situation',
  'obtain',
  'warrant',
  'put',
  'vr',
  'helmet',
  'take',
  'walk',
  'memory',
  'lane',
  'hey',
  'nobodyll',
  'tracking',
  'need',
  'self',
  'conscious',
  'youre',
  'anything',
  'illegal',
  'funny',
  'though',
  'speeding',
  'radar',
  'detector',
  'industry',
  'became',
  'pretty',
  'much',
  'thing',
  'past',
  'somehow',
  'didnt',
  'elminate',
  'crime',
  'story',
  'somehow',
  'politicians',
  'got',
  'exemptions',
  'grounds',
  'national',
  'security',
  'rich',
  'corporations',
  'got',
  'exemptions',
  'execs',
  'grounds',
  'industrial',
  'espionage',
  'preservation',
  'competition',
  'everybody',
  'exactly',
  'happy',
  'system',
  'cant',
  'imagine',
  'wayne',
  'throop'],
 ['andrew',
  'tripp',
  'airline',
  'tickets',
  'ohare',
  'tuscon',
  'organization',
  'distribution',
  'usa',
  'keywords',
  'tickets',
  'ohare',
  'tucson',
  'round',
  'tripp',
  'lines',
  'two',
  'round',
  'trip',
  'tickets',
  'ohare',
  'tuscon',
  'american',
  'airlines',
  'good',
  'thru',
  'november',
  'reasonable',
  'offer',
  'refused',
  'lets',
  'start',
  'paid',
  'hopefully',
  'someone',
  'dont',
  'know',
  'way',
  'get',
  'moneys',
  'worth',
  'without',
  'going',
  'tuscon',
  'mail',
  'time',
  'would',
  'butler',
  'services',
  'anything',
  'warped',
  'ramblings',
  'crabby',
  'old',
  'fart',
  'mechanical',
  'pcb',
  'designer',
  'buku',
  'cad',
  'background',
  'still',
  'working',
  'bscs',
  'looking',
  'work',
  'wants',
  'take',
  'shot',
  'asic',
  'ic',
  'layout',
  'tripp'],
 ['warmonger',
  'south',
  'jersey',
  'condo',
  'keywords',
  'forsale',
  'condo',
  'jersey',
  'article',
  'minnow',
  'apr',
  'organization',
  'rutgers',
  'univ',
  'new',
  'brunswick',
  'lines',
  'recently',
  'graduated',
  'looking',
  'move',
  'bigger',
  'house',
  'leaving',
  'condo',
  'sell',
  'originally',
  'listed',
  'listed',
  'following',
  'list',
  'features',
  'master',
  'bedroom',
  'bedroom',
  'living',
  'room',
  'dining',
  'room',
  'kitchen',
  'extra',
  'cabinets',
  'full',
  'modern',
  'bathroom',
  'full',
  'wtw',
  'carpeting',
  'new',
  'excluding',
  'bath',
  'oil',
  'hot',
  'water',
  'heating',
  'converting',
  'gas',
  'summer',
  'central',
  'air',
  'condo',
  'fee',
  'mo',
  'including',
  'heat',
  'hot',
  'water',
  'landscaping',
  'pool',
  'tennis',
  'courts',
  'addition',
  'washer',
  'dryer',
  'condo',
  'refrigerator',
  'dishwasher',
  'ceiling',
  'fans',
  'window',
  'treatments',
  'dont',
  'understand',
  'cant',
  'call',
  'curtains',
  'mantle',
  'large',
  'storage',
  'room',
  'private',
  'basement',
  'plenty',
  'undesignated',
  'parking',
  'youd',
  'like',
  'free',
  'bliss',
  'regular',
  'homeownership',
  'please',
  'call',
  'kathleen',
  'sullivan',
  'rohrer',
  'sayers',
  'real',
  'estate',
  'agency',
  'shell',
  'arrange',
  'showing',
  'disclaimer',
  'caca',
  'errors',
  'changes',
  'ommissions',
  'withdrawls',
  'sales',
  'without',
  'notice',
  'posting',
  'benefit',
  'request',
  'commercial',
  'agency',
  'simply',
  'want',
  'flames',
  'sent',
  'dev',
  'null',
  'thanks',
  'paul',
  'nelson',
  'systems',
  'hardware',
  'integration',
  'technician'],
 ['joachim',
  'lous',
  'xv',
  'ms',
  'dos',
  'organization',
  'kongsberg',
  'lines',
  'nntp',
  'posting',
  'host',
  'samson',
  'kih',
  'newsreader',
  'tin',
  'version',
  'pl',
  'wrote',
  'im',
  'sorry',
  'late',
  'answer',
  'couldnt',
  'find',
  'xv',
  'msdos',
  'cause',
  'forgot',
  'address',
  'ive',
  'retrieve',
  'posting',
  'answer',
  'comp',
  'graphics',
  'cause',
  'cant',
  'mail',
  'yet',
  'bad',
  'english',
  'cause',
  'im',
  'swiss',
  'language',
  'french',
  'french',
  'language',
  'try',
  'counting',
  'french',
  'stead',
  'maybe',
  'work',
  'better',
  'one',
  'thing',
  'sure',
  'sheep',
  'creature',
  'earth',
  'back',
  'masking',
  'haaden',
  'ii',
  'exposure',
  'robert',
  'fripp'],
 ['kenneth',
  'gilbert',
  'cant',
  'breathe',
  'article',
  'blue',
  'lines',
  'newsreader',
  'tin',
  'version',
  'pl',
  'david',
  'nye',
  'wrote',
  'reply',
  'ron',
  'roth',
  'youre',
  'right',
  'vertebrae',
  'attached',
  'sacrum',
  'knowledge',
  'adjusted',
  'either',
  'directly',
  'applying',
  'pressure',
  'pubic',
  'bone',
  'ron',
  'youre',
  'endless',
  'source',
  'misinformation',
  'sacral',
  'vertebrae',
  'bone',
  'called',
  'sacrum',
  'end',
  'spine',
  'single',
  'solid',
  'bone',
  'except',
  'patients',
  'lumbarized',
  'normal',
  'variant',
  'adjust',
  'solid',
  'bone',
  'break',
  'dont',
  'tell',
  'dont',
  'want',
  'know',
  'oh',
  'come',
  'surely',
  'know',
  'meant',
  'measure',
  'flow',
  'electromagnetic',
  'energy',
  'sacrum',
  'adjust',
  'flows',
  'crystal',
  'chromium',
  'applied',
  'right',
  'great',
  'toe',
  'dont',
  'know',
  'anything',
  'kenneth',
  'gilbert',
  'university',
  'pittsburgh',
  'general',
  'internal',
  'medicine',
  'dammit',
  'programmer'],
 ['chris',
  'best',
  'msg',
  'sensitivity',
  'superstition',
  'organization',
  'service',
  'lines',
  'nntp',
  'posting',
  'host',
  'hpctdkz',
  'col',
  'hp',
  'com',
  'jason',
  'chen',
  'writes',
  'new',
  'one',
  'vomiting',
  'guess',
  'msg',
  'becomes',
  'number',
  'one',
  'suspect',
  'problem',
  'case',
  'might',
  'food',
  'poisoning',
  'heard',
  'things',
  'msg',
  'may',
  'think',
  'must',
  'yeah',
  'might',
  'read',
  'part',
  'quoted',
  'somehow',
  'left',
  'part',
  'ate',
  'thing',
  'changes',
  'things',
  'bit',
  'eh',
  'complain',
  'people',
  'blame',
  'msg',
  'automatically',
  'since',
  'unknown',
  'therefore',
  'must',
  'cause',
  'equally',
  'unreasonable',
  'defend',
  'automatically',
  'assuming',
  'cant',
  'culprit',
  'pepper',
  'makes',
  'sneeze',
  'doesnt',
  'affect',
  'way',
  'fine',
  'dont',
  'tell',
  'im',
  'wrong',
  'saying',
  'people',
  'arent',
  'condemning',
  'chinese',
  'food',
  'mr',
  'chen',
  'one',
  'optional',
  'ingredients',
  'try',
  'take',
  'personally'],
 ['mark',
  'walsh',
  'age',
  'consent',
  'child',
  'molestation',
  'organization',
  'optilink',
  'corporation',
  'petaluma',
  'ca',
  'lines',
  'article',
  'roger',
  'klorese',
  'article',
  'mark',
  'walsh',
  'writes',
  'namblas',
  'presence',
  'sf',
  'gay',
  'pride',
  'parade',
  'says',
  'quite',
  'bit',
  'says',
  'either',
  'parade',
  'organizers',
  'want',
  'show',
  'support',
  'nambla',
  'fundamental',
  'rights',
  'would',
  'really',
  'really',
  'like',
  'believe',
  'latter',
  'would',
  'need',
  'help',
  'dozens',
  'examples',
  'latter',
  'nambla',
  'especially',
  'glaring',
  'one',
  'hardly',
  'one',
  'perhaps',
  'though',
  'exclusion',
  'gay',
  'perotistas',
  'sf',
  'gay',
  'pride',
  'parade',
  'would',
  'make',
  'think',
  'clue',
  'regard',
  'dozens',
  'examples',
  'dont',
  'know',
  'mark',
  'walsh',
  'uucp',
  'uunet',
  'optilink',
  'walsh',
  'amateur',
  'radio',
  'aol',
  'uscf',
  'worry',
  'william',
  'gaines',
  'im',
  'gonna',
  'crush',
  'andre',
  'giant'],
 ['peter',
  'garfiel',
  'freeman',
  'deriving',
  'pleasure',
  'death',
  'nntp',
  'posting',
  'host',
  'cunixa',
  'cc',
  'columbia',
  'reply',
  'peter',
  'garfiel',
  'freeman',
  'organization',
  'columbia',
  'university',
  'lines',
  'regards',
  'condemnation',
  'marcs',
  'ridiculous',
  'attacks',
  'american',
  'department',
  'justice',
  'attacks',
  'jews',
  'anyone',
  'took',
  'offense',
  'calling',
  'marc',
  'stupid',
  'apologize',
  'pointing',
  'obvious',
  'waste',
  'nets',
  'time',
  'hope',
  'though',
  'american',
  'citizens',
  'basic',
  'knowlege',
  'structure',
  'american',
  'government',
  'understand',
  'relationship',
  'justice',
  'department',
  'part',
  'executive',
  'branch',
  'courts',
  'judicial',
  'branch',
  'marcs',
  'ignorance',
  'basic',
  'civic',
  'knowlege',
  'underscores',
  'inability',
  'comprehend',
  'interpret',
  'foreign',
  'affairs',
  'peace',
  'pete'],
 ['howard',
  'mitchell',
  'feldman',
  'need',
  'longer',
  'filenames',
  'organization',
  'minds',
  'eye',
  'inc',
  'lines',
  'mailer',
  'tmail',
  'version',
  'larry',
  'paul',
  'highley',
  'wrote',
  'utility',
  'let',
  'filenames',
  'longer',
  'standard',
  'format',
  'please',
  'email',
  'please',
  'mail',
  'thanks',
  'howard',
  'howard',
  'feldman',
  'minds',
  'eye',
  'inc'],
 ['liberalizer',
  'michael',
  'lurie',
  'yankkes',
  'game',
  'closer',
  'article',
  'alleg',
  'apr',
  'organization',
  'allegheny',
  'college',
  'lines',
  'article',
  'jason',
  'walter',
  'works',
  'writes',
  'yankees',
  'one',
  'game',
  'closer',
  'east',
  'pennant',
  'clobbered',
  'cleveland',
  'fine',
  'pitching',
  'performance',
  'key',
  'two',
  'homeruns',
  'tartabull',
  'first',
  'baseball',
  'go',
  'season',
  'three',
  'run',
  'homer',
  'nokes',
  'didnt',
  'pick',
  'boggs',
  'pools',
  'tough',
  'break',
  'couple',
  'hits',
  'drove',
  'couple',
  'runs',
  'many',
  'follow',
  'yanks',
  'beat',
  'coming',
  'team',
  'youngsters',
  'indians',
  'yankees',
  'need',
  'win',
  'games',
  'get',
  'division',
  'go',
  'yanks',
  'mattingly',
  'glove',
  'mvp',
  'abbot',
  'cy',
  'young',
  'jason',
  'jason',
  'going',
  'yankee',
  'game',
  'wed',
  'night',
  'cleveland',
  'stadium',
  'happy',
  'cleveland',
  'bad',
  'team',
  'lost',
  'severalrs',
  'coming',
  'team',
  'sad',
  'excuse',
  'better',
  'average',
  'abbot',
  'win',
  'cy',
  'melido',
  'perez',
  'bold',
  'prediction',
  'come',
  'well',
  'herot',
  'last',
  'place',
  'end',
  'season',
  'mike',
  'lurie',
  'speaks',
  'world',
  'listens'],
 ['michael',
  'davis',
  'love',
  'europe',
  'organization',
  'brunel',
  'university',
  'uxbridge',
  'uk',
  'lines',
  'readers',
  'going',
  'love',
  'europe',
  'congress',
  'germany',
  'july',
  'michael',
  'davis'],
 ['scott',
  'zabolotzky',
  'gif',
  'bmp',
  'organization',
  'motorola',
  'inc',
  'distribution',
  'usa',
  'nntp',
  'posting',
  'host',
  'lines',
  'anybody',
  'idea',
  'could',
  'find',
  'program',
  'convert',
  'gif',
  'image',
  'bmp',
  'image',
  'suitable',
  'windows',
  'wallpaper',
  'colors',
  'hopefully',
  'theres',
  'something',
  'get',
  'ftp',
  'site',
  'somewhere',
  'thanks',
  'advance',
  'scott'],
 ['joe',
  'senner',
  'shaft',
  'drives',
  'wheelies',
  'reply',
  'distribution',
  'rec',
  'organization',
  'lines',
  'writes',
  'possible',
  'wheelie',
  'motorcycle',
  'shaft',
  'drive',
  'yes',
  'joe',
  'senner',
  'austin',
  'area',
  'ride',
  'mailing',
  'list',
  'texas',
  'splatterfest',
  'mailing',
  'list'],
 ['cubs',
  'mailing',
  'list',
  'chihuahua',
  'charlie',
  'distribution',
  'usa',
  'organization',
  'ou',
  'academic',
  'user',
  'services',
  'nntp',
  'posting',
  'host',
  'loopback',
  'uoknor',
  'news',
  'software',
  'vax',
  'vms',
  'vnews',
  'lines',
  'lines',
  'anyone',
  'running',
  'chicago',
  'national',
  'league',
  'ballclub',
  'list',
  'please',
  'send',
  'information',
  'thanks',
  'chihuahua',
  'charlie',
  'ou',
  'responsible',
  'academic',
  'user',
  'services',
  'anything',
  'anywhere',
  'university',
  'oklahoma',
  'except',
  'one',
  'incident'],
 ['charles',
  'emmons',
  'version',
  'control',
  'mac',
  'pc',
  'lan',
  'organization',
  'prodigy',
  'services',
  'co',
  'lines',
  'lan',
  'development',
  'product',
  'multiple',
  'platforms',
  'moment',
  'working',
  'mac',
  'dos',
  'windows',
  'department',
  'always',
  'used',
  'sneaker',
  'net',
  'transport',
  'files',
  'mac',
  'since',
  'requires',
  'filter',
  'strip',
  'lf',
  'characters',
  'recently',
  'one',
  'concidered',
  'using',
  'version',
  'control',
  'mediate',
  'result',
  'programmers',
  'spent',
  'great',
  'deal',
  'time',
  'merging',
  'files',
  'together',
  'end',
  'week',
  'new',
  'system',
  'could',
  'build',
  'trying',
  'streamline',
  'process',
  'hampered',
  'lack',
  'software',
  'allow',
  'us',
  'share',
  'files',
  'across',
  'pc',
  'mac',
  'platforms',
  'understand',
  'pvcs',
  'used',
  'longer',
  'support',
  'mac',
  'product',
  'anyone',
  'know',
  'polytron',
  'seen',
  'people',
  'ask',
  'development',
  'multiple',
  'platforms',
  'assume',
  'new',
  'problem',
  'deal',
  'solutions',
  'come',
  'thanks',
  'advance',
  'suggestions',
  'via',
  'posting',
  'email',
  'enough',
  'email',
  'responses',
  'post',
  'synopsis',
  'knowledge',
  'charles',
  'emmons',
  'charles',
  'emmons',
  'opinions',
  'prodigy',
  'services',
  'co',
  'mine',
  'alone',
  'unless',
  'white',
  'plains',
  'ny',
  'voice',
  'would',
  'like',
  'prodigy',
  'id',
  'kjrd',
  'fax',
  'share'],
 ['ron',
  'number',
  'beast',
  'viewer',
  'discr',
  'organization',
  'university',
  'new',
  'mexico',
  'albuquerque',
  'lines',
  'nntp',
  'posting',
  'host',
  'leo',
  'unm',
  'article',
  'alex',
  'gottschalk',
  'writes',
  'well',
  'math',
  'get',
  'mean',
  'anything',
  'anyone',
  'thus',
  'fitting',
  'neatly',
  'something',
  'else',
  'course',
  'quite',
  'obviously'],
 ['pat',
  'abyss',
  'breathing',
  'fluids',
  'article',
  'access',
  'psghn',
  'organization',
  'express',
  'access',
  'online',
  'communications',
  'usa',
  'lines',
  'nntp',
  'posting',
  'host',
  'access',
  'digex',
  'net',
  'article',
  'achurist',
  'writes',
  'believe',
  'reason',
  'lung',
  'diaphram',
  'gets',
  'tired',
  'pump',
  'liquid',
  'simply',
  'stops',
  'breathing',
  'minutes',
  'vehicle',
  'ready',
  'go',
  'better',
  'put',
  'hold',
  'else',
  'thats',
  'remember',
  'liquid',
  'several',
  'times',
  'dense',
  'gas',
  'nature',
  'think',
  'depending',
  'gas',
  'liquid',
  'comparision',
  'course',
  'could',
  'sort',
  'mechanical',
  'chest',
  'compression',
  'aid',
  'sorta',
  'like',
  'portable',
  'iron',
  'lung',
  'put',
  'sort',
  'flex',
  'tubing',
  'around',
  'aquanauts',
  'chest',
  'cyclically',
  'compress',
  'push',
  'enough',
  'chest',
  'wall',
  'support',
  'breathing',
  'youd',
  'trust',
  'breather',
  'space',
  'trust',
  'suit',
  'anyway',
  'pat'],
 ['willie',
  'wilson',
  'experiences',
  'desqview',
  'reply',
  'organization',
  'analog',
  'devices',
  'limerick',
  'ireland',
  'lines',
  'need',
  'pcs',
  'sparcstations',
  'run',
  'application',
  'namely',
  'microsoft',
  'project',
  'original',
  'system',
  'ran',
  'pc',
  'needs',
  'expanded',
  'allow',
  'unix',
  'users',
  'work',
  'application',
  'current',
  'proposal',
  'desqview',
  'display',
  'server',
  'application',
  'would',
  'like',
  'know',
  'experiences',
  'using',
  'desqview',
  'run',
  'application',
  'pc',
  'displaying',
  'sparcstation',
  'ive',
  'heard',
  'network',
  'traffic',
  'slow',
  'replies',
  'mail',
  'please',
  'thanks',
  'advance',
  'willie'],
 ['henry',
  'spencer',
  'moonbase',
  'race',
  'nasa',
  'resources',
  'organization',
  'toronto',
  'zoology',
  'lines',
  'article',
  'writes',
  'much',
  'would',
  'cost',
  'private',
  'venture',
  'assuming',
  'could',
  'talk',
  'government',
  'leasing',
  'couple',
  'pads',
  'florida',
  'must',
  'us',
  'government',
  'space',
  'launch',
  'pad',
  'directly',
  'mean',
  'fact',
  'probably',
  'want',
  'avoid',
  'us',
  'government',
  'anything',
  'project',
  'pricetag',
  'invariably',
  'high',
  'either',
  'money',
  'hassles',
  'important',
  'thing',
  'realize',
  'big',
  'cost',
  'getting',
  'moon',
  'getting',
  'low',
  'earth',
  'orbit',
  'everything',
  'else',
  'practically',
  'noise',
  'part',
  'getting',
  'moon',
  'poses',
  'new',
  'problems',
  'beyond',
  'face',
  'low',
  'orbit',
  'last',
  'km',
  'actual',
  'landing',
  'immensely',
  'difficult',
  'course',
  'spend',
  'sagadollars',
  'saga',
  'metric',
  'prefix',
  'beelyuns',
  'beelyuns',
  'things',
  'launches',
  'dont',
  'major',
  'component',
  'realistic',
  'plan',
  'go',
  'moon',
  'cheaply',
  'brief',
  'visit',
  'least',
  'low',
  'cost',
  'transport',
  'earth',
  'orbit',
  'costs',
  'launch',
  'one',
  'shuttle',
  'two',
  'titan',
  'ivs',
  'develop',
  'new',
  'launch',
  'system',
  'considerably',
  'cheaper',
  'delta',
  'clipper',
  'might',
  'bit',
  'expensive',
  'perhaps',
  'less',
  'ambitious',
  'ways',
  'bringing',
  'costs',
  'quite',
  'bit',
  'plan',
  'sustained',
  'lunar',
  'exploration',
  'using',
  'existing',
  'launch',
  'systems',
  'wasting',
  'money',
  'big',
  'way',
  'given',
  'questions',
  'like',
  'whose',
  'launch',
  'facilities',
  'minor',
  'detail',
  'important',
  'cost',
  'launches',
  'dominates',
  'cost',
  'project',
  'work',
  'one',
  'mans',
  'work',
  'henry',
  'spencer',
  'toronto',
  'zoology',
  'kipling',
  'utzoo',
  'henry'],
 ['price',
  'phone',
  'number',
  'wycliffe',
  'translators',
  'uk',
  'organization',
  'university',
  'rochester',
  'rochester',
  'new',
  'york',
  'lines',
  'mail',
  'server',
  'writes',
  'mark',
  'mp',
  'im',
  'concerned',
  'recent',
  'posting',
  'wbt',
  'sil',
  'thought',
  'theyd',
  'pretty',
  'much',
  'denounced',
  'right',
  'wing',
  'organization',
  'involved',
  'ideological',
  'manipulation',
  'cultural',
  'interference',
  'good',
  'heavens',
  'mean',
  'good',
  'friend',
  'wes',
  'collins',
  'took',
  'wife',
  'two',
  'small',
  'children',
  'jungles',
  'guatemala',
  'despite',
  'dangers',
  'primitive',
  'conditions',
  'armed',
  'guerillas',
  'indigenous',
  'people',
  'groups',
  'could',
  'bible',
  'native',
  'languages',
  'young',
  'man',
  'led',
  'bible',
  'studies',
  'church',
  'daily',
  'demonstrated',
  'declared',
  'deep',
  'abiding',
  'faith',
  'lord',
  'love',
  'mean',
  'really',
  'sneaky',
  'imperialistic',
  'spy',
  'sorry',
  'find',
  'charges',
  'amusing',
  'mark',
  'understand',
  'frustration',
  'though',
  'kind',
  'scary',
  'find',
  'assumptions',
  'challenged',
  'specific',
  'cultural',
  'interference',
  'refer',
  'includes',
  'linguistic',
  'manipulation',
  'instance',
  'tzotzil',
  'spanish',
  'dictionary',
  'removed',
  'spanish',
  'tzotzil',
  'words',
  'concepts',
  'threatening',
  'ruling',
  'ideology',
  'class',
  'conquer',
  'exploitation',
  'repression',
  'revolution',
  'described',
  'words',
  'express',
  'ideological',
  'concepts',
  'examples',
  'like',
  'boss',
  'boss',
  'good',
  'treats',
  'us',
  'well',
  'pays',
  'us',
  'good',
  'wage',
  'students',
  'would',
  'say',
  'tone',
  'implies',
  'unlikely',
  'believe',
  'indeed',
  'interested',
  'enough',
  'research',
  'though',
  'sound',
  'references',
  'stoll',
  'david',
  'men',
  'founders',
  'empire',
  'wycliffe',
  'bible',
  'translators',
  'latin',
  'america_',
  'religiosidad',
  'en',
  'america',
  'latina_',
  'angeles',
  'times_',
  'dec',
  'america',
  'press_',
  'may',
  'times_',
  'june',
  'happy',
  'hunting',
  'mp'],
 ['gail',
  'fullman',
  'phillies',
  'sign',
  'mark',
  'davis',
  'organization',
  'lehigh',
  'university',
  'lines',
  'mean',
  'pay',
  'salary',
  'didnt',
  'wait',
  'clear',
  'waivers',
  'davis',
  'paid',
  'three',
  'clubs',
  'year',
  'think',
  'phils',
  'responsbible',
  'didnt',
  'wait',
  'clear',
  'waivers',
  'three',
  'clubs',
  'also',
  'interested',
  'gamble',
  'yes',
  'oh',
  'royals',
  'fan',
  'skeptical',
  'say',
  'pitched',
  'well',
  'winter',
  'ball',
  'also',
  'pitched',
  'well',
  'omaha',
  'kc',
  'didnt',
  'pitch',
  'well',
  'even',
  'acceptably',
  'majors',
  'dont',
  'atlanta',
  'stats',
  'must',
  'impressed',
  'much',
  'either',
  'year',
  'got',
  'saves',
  'san',
  'diego',
  'pitch',
  'well',
  'ok',
  'know',
  'awful',
  'next',
  'year',
  'went',
  'kc',
  'still',
  'cy',
  'young',
  'year'],
 ['phil',
  'hunt',
  'com',
  'ports',
  'modem',
  'mouse',
  'conflict',
  'really',
  'organization',
  'howtek',
  'inc',
  'reply',
  'phil',
  'hunt',
  'mailer',
  'uaccess',
  'macintosh',
  'release',
  'lines',
  'article',
  'comp',
  'sys',
  'ibm',
  'pc',
  'hardware',
  'alt',
  'msdos',
  'programmer',
  'comp',
  'sys',
  'ibm',
  'pc',
  'misc',
  'uw',
  'pc',
  'general',
  'uw',
  'pc',
  'ibm',
  'misc',
  'forsale',
  'computers',
  'comp',
  'dcom',
  'modems',
  'oliver',
  'duesel',
  'writes',
  'hi',
  'yuri',
  'yulaev',
  'writes',
  'card',
  'pc',
  'plug',
  'wang',
  'modem',
  'com',
  'works',
  'change',
  'com',
  'doesnt',
  'program',
  'chkport',
  'gives',
  'diagnostics',
  'like',
  'possible',
  'com',
  'irq',
  'conflict',
  'com',
  'mouse',
  'driver',
  'memory',
  'since',
  'io',
  'card',
  'one',
  'serial',
  'port',
  'default',
  'com',
  'ms',
  'dos',
  'cant',
  'share',
  'irqs',
  'youll',
  'set',
  'either',
  'modem',
  'mouse',
  'com',
  'using',
  'different',
  'adresses',
  'irqs',
  'set',
  'two',
  'devices',
  'onto',
  'irq',
  'like',
  'com',
  'com',
  'latter',
  'one',
  'always',
  'win',
  'mouse',
  'com',
  'start',
  'using',
  'modem',
  'com',
  'modem',
  'work',
  'mouse',
  'stop',
  'reboot',
  'problem',
  'setting',
  'modem',
  'com',
  'didnt',
  'write',
  'anything',
  'peripherals',
  'hope',
  'helped',
  'bit',
  'oli',
  'hi',
  'im',
  'kind',
  'new',
  'pc',
  'stuff',
  'machine',
  'serial',
  'ports',
  'com',
  'share',
  'irqs',
  'mean',
  'cant',
  'plug',
  'mouse',
  'com',
  'modem',
  'com',
  'expect',
  'work',
  'answer',
  'change',
  'irqs',
  'com',
  'ports',
  'different',
  'really',
  'matter',
  'irq',
  'set',
  'ports',
  'phil',
  'phil',
  'hunt',
  'wherever',
  'go',
  'howtek',
  'inc',
  'internet',
  'uucp',
  'decvax',
  'harvard',
  'mv',
  'howtek',
  'phil'],
 ['julie',
  'kangas',
  'top',
  'ten',
  'reasons',
  'aid',
  'russians',
  'nntp',
  'posting',
  'host',
  'eddie',
  'jpl',
  'nasa',
  'gov',
  'organization',
  'jet',
  'propulsion',
  'laboratory',
  'pasadena',
  'ca',
  'lines',
  'article',
  'scott',
  'roby',
  'writes',
  'tip',
  'hat',
  'david',
  'letterman',
  'making',
  'top',
  'ten',
  'format',
  'popular',
  'top',
  'ten',
  'reasons',
  'conservatives',
  'dont',
  'want',
  'aid',
  'russia',
  'looking',
  'around',
  'dont',
  'look',
  'want',
  'send',
  'aid',
  'russia',
  'many',
  'conservatives',
  'well',
  'julie',
  'disclaimer',
  'opinions',
  'belong',
  'cat',
  'one',
  'else'],
 ['rowatt',
  'page',
  'flipping',
  'vga',
  'mode',
  'organization',
  'massey',
  'university',
  'palmerston',
  'north',
  'new',
  'zealand',
  'reader',
  'netnews',
  'pc',
  'version',
  'lines',
  'help',
  'write',
  'second',
  'bank',
  'page',
  'memory',
  'vga',
  'colour',
  'mode',
  'ie',
  'perform',
  'page',
  'flipping',
  'animation',
  'buffering',
  'screen',
  'tried',
  'using',
  'map',
  'mask',
  'registers',
  'perform',
  'required',
  'task',
  'although',
  'something',
  'note',
  'must',
  'able',
  'work',
  'standard',
  'vga',
  'ie',
  'necessarily',
  'svga',
  'card',
  'many',
  'thanx',
  'advance',
  'andrew'],
 ['steve',
  'pope',
  'mow',
  'bodycount',
  'organization',
  'berkeley',
  'erl',
  'lines',
  'nntp',
  'posting',
  'host',
  'zion',
  'berkeley',
  'thoughts',
  'going',
  'count',
  'gorgeous',
  'bodies',
  'mow',
  'press',
  'white',
  'house',
  'staff',
  'junior',
  'senator',
  'king',
  'motss',
  'bi',
  'curious',
  'whose',
  'bias',
  'going',
  'see',
  'numbers',
  'get',
  'brought',
  'probably',
  'law',
  'enforcement',
  'people',
  'park',
  'service',
  'police',
  'cops',
  'aerial',
  'photographs',
  'extrapolate',
  'based',
  'density',
  'crowd',
  'small',
  'regions',
  'sort',
  'techniques',
  'derive',
  'army',
  'intelligence',
  'cia',
  'methods',
  'estimating',
  'troop',
  'strength',
  'tend',
  'skewed',
  'always',
  'come',
  'inflated',
  'numbers',
  'justify',
  'bigger',
  'budgets',
  'steve'],
 ['atlanta',
  'hockey',
  'hell',
  'dir',
  'organization',
  'western',
  'kentucky',
  'university',
  'bowling',
  'green',
  'ky',
  'lines',
  'someone',
  'give',
  'sportchannel',
  'call',
  'maybe',
  'ted',
  'turner',
  'wasnt',
  'usa',
  'network',
  'covering',
  'playoffs',
  'years',
  'ago',
  'jim',
  'oh',
  'back',
  'good',
  'old',
  'days',
  'lived',
  'florida',
  'florida',
  'petes',
  'sake',
  'could',
  'watch',
  'hockey',
  'every',
  'night',
  'espn',
  'usa',
  'alternated',
  'coverage',
  'nights',
  'oh',
  'well',
  'guess',
  'would',
  'simple',
  'home',
  'office',
  'look',
  'back',
  'past',
  'solve',
  'problem',
  'present',
  'course',
  'shouldnt',
  'complain',
  'least',
  'im',
  'getting',
  'watch',
  'playoffs',
  'change',
  'hooray',
  'espn',
  'schedulers',
  'realise',
  'teams',
  'except',
  'pittsberg',
  'patrick',
  'sounds',
  'like',
  'dr',
  'suess',
  'book',
  'koz',
  'lets',
  'go',
  'caps'],
 ['richard',
  'ottolini',
  'krillean',
  'photography',
  'organization',
  'unocal',
  'corporation',
  'lines',
  'living',
  'things',
  'maintain',
  'small',
  'electric',
  'fields',
  'enhance',
  'certain',
  'chemical',
  'reactions',
  'promote',
  'communication',
  'states',
  'cell',
  'communicate',
  'cells',
  'nervous',
  'system',
  'specialized',
  'example',
  'perhaps',
  'uses',
  'electric',
  'fields',
  'change',
  'location',
  'time',
  'large',
  'organism',
  'special',
  'photographic',
  'techniques',
  'applying',
  'external',
  'fields',
  'kirillian',
  'photography',
  'interact',
  'fields',
  'resistances',
  'caused',
  'fields',
  'make',
  'interesting',
  'pictures',
  'perhaps',
  'pictures',
  'diagonistic',
  'disease',
  'problems',
  'organisms',
  'better',
  'understood',
  'perhaps',
  'studying',
  'overall',
  'electric',
  'activity',
  'biological',
  'systems',
  'several',
  'hundred',
  'years',
  'old',
  'popular',
  'activity',
  'perhaps',
  'except',
  'case',
  'tissues',
  'like',
  'nerves',
  'electric',
  'senses',
  'fishes',
  'hard',
  'reduce',
  'investigation',
  'small',
  'pieces',
  'clearly',
  'analyzed',
  'hints',
  'manipulating',
  'electric',
  'fields',
  'useful',
  'therapy',
  'speeding',
  'healing',
  'broken',
  'bones',
  'understood',
  'bioelectricity',
  'long',
  'association',
  'mysticism',
  'ideas',
  'frankenstein',
  'reanimation',
  'go',
  'back',
  'early',
  'electrical',
  'experiments',
  'tissue',
  'volta',
  'invented',
  'battery',
  'personally',
  'dont',
  'care',
  'revert',
  'supernatural',
  'cause',
  'explain',
  'things',
  'dont',
  'yet',
  'understand'],
 ['brian',
  'kendig',
  'list',
  'biblical',
  'contradictions',
  'organization',
  'starfleet',
  'headquarters',
  'san',
  'francisco',
  'lines',
  'paul',
  'hudson',
  'jr',
  'writes',
  'brian',
  'kendig',
  'writes',
  'specifically',
  'bring',
  'fact',
  'genesis',
  'contains',
  'two',
  'contradictory',
  'creation',
  'stories',
  'usually',
  'get',
  'blank',
  'stares',
  'flat',
  'denials',
  'ive',
  'never',
  'fundamentalist',
  'acknowledge',
  'indeed',
  'two',
  'different',
  'accounts',
  'creation',
  'two',
  'creation',
  'stories',
  'one',
  'worst',
  'examples',
  'difficulty',
  'bible',
  'formed',
  'also',
  'translated',
  'formed',
  'chapter',
  'two',
  'without',
  'problems',
  'text',
  'demand',
  'two',
  'creation',
  'stories',
  'really',
  'dont',
  'get',
  'genesis',
  'first',
  'says',
  'god',
  'created',
  'earth',
  'animals',
  'humans',
  'turns',
  'around',
  'says',
  'humans',
  'created',
  'animals',
  'escape',
  'contradiction',
  'brian',
  'kendig',
  'je',
  'ne',
  'suis',
  'fait',
  'comme',
  'aucun',
  'de',
  'ceux',
  'que',
  'jai',
  'vus',
  'jose',
  'croire',
  'netre',
  'fait',
  'comme',
  'aucun',
  'de',
  'ceux',
  'qui',
  'existent',
  'meaning',
  'life',
  'si',
  'je',
  'ne',
  'vaux',
  'pas',
  'mieux',
  'au',
  'moins',
  'je',
  'suis',
  'autre',
  'ends',
  'rousseau'],
 ['john',
  'mccarthy',
  'new',
  'environmental',
  'group',
  'launches',
  'reply',
  'message',
  'sun',
  'apr',
  'gmt',
  'reply',
  'organization',
  'computer',
  'science',
  'department',
  'stanford',
  'university',
  'lines',
  'teddy',
  'oneill',
  'creature',
  'furry',
  'hobbit',
  'feet',
  'bath',
  'uk',
  'sentimental',
  'fool',
  'posts',
  'force',
  'world',
  'wide',
  'youth',
  'movement',
  'ought',
  'possible',
  'establish',
  'coordinated',
  'global',
  'program',
  'accomplish',
  'strategic',
  'goal',
  'completely',
  'eliminating',
  'internal',
  'combustion',
  'engine',
  'say',
  'twenty',
  'year',
  'period',
  'evidently',
  'open',
  'questions',
  'either',
  'scientific',
  'people',
  'prefer',
  'live',
  'john',
  'mccarthy',
  'computer',
  'science',
  'department',
  'stanford',
  'ca',
  'refuses',
  'arithmetic',
  'doomed',
  'talk',
  'nonsense'],
 ['mark',
  'haefner',
  'accepting',
  'jesus',
  'heart',
  'organization',
  'intergraph',
  'corporation',
  'huntsville',
  'al',
  'lines',
  'religion',
  'especially',
  'christianity',
  'nothing',
  'drug',
  'people',
  'drugs',
  'escape',
  'reality',
  'christians',
  'inject',
  'jeezus',
  'live',
  'high',
  'would',
  'say',
  'especially',
  'christianity',
  'mark'],
 ['david',
  'paschich',
  'hbp',
  'bb',
  'big',
  'cat',
  'organization',
  'organization',
  'cares',
  'gotta',
  'say',
  'go',
  'bears',
  'lines',
  'distribution',
  'na',
  'nntp',
  'posting',
  'host',
  'soda',
  'berkeley',
  'reply',
  'message',
  'mon',
  'apr',
  'gmt',
  'article',
  'ken',
  'kubey',
  'writes',
  'suppose',
  'foul',
  'ball',
  'machine',
  'like',
  'brett',
  'butler',
  'pretty',
  'valuable',
  'id',
  'rather',
  'watch',
  'root',
  'lower',
  'obp',
  'guys',
  'actually',
  'hit',
  'ball',
  'id',
  'rather',
  'watch',
  'root',
  'team',
  'scores',
  'lots',
  'runs',
  'wins',
  'games',
  'course',
  'im',
  'rooting',
  'rockies',
  'andres',
  'anyway',
  'thats',
  'irrational',
  'hometown',
  'reaons',
  'also',
  'root',
  'frank',
  'thomas',
  'david',
  'paschich'],
 ['nathan',
  'wallace',
  'level',
  'reply',
  'nntp',
  'posting',
  'host',
  'sor',
  'cs',
  'colostate',
  'organization',
  'colorado',
  'state',
  'university',
  'computer',
  'science',
  'dept',
  'lines',
  'according',
  'software',
  'engineering',
  'professor',
  'actually',
  'rated',
  'level',
  'five',
  'ibm',
  'unit',
  'produced',
  'part',
  'software',
  'shuttle',
  'means',
  'interesting',
  'note',
  'software',
  'development',
  'groups',
  'surveyed',
  'level',
  'ibm',
  'shuttle',
  'groups',
  'one',
  'level',
  'nathan',
  'wallace',
  'reality',
  'mail',
  'ancient',
  'alphaean',
  'proverb'],
 ['scott',
  'leapman',
  'half',
  'page',
  'hand',
  'scanners',
  'originator',
  'reply',
  'organization',
  'ibm',
  'austin',
  'lines',
  'lightening',
  'scan',
  'pro',
  'hand',
  'scanner',
  'came',
  'scanning',
  'editing',
  'software',
  'ocr',
  'software',
  'plug',
  'modules',
  'photoshop',
  'et',
  'al',
  'scanner',
  'tad',
  'pricey',
  'side',
  'scans',
  'incredibly',
  'accurate',
  'level',
  'dpi',
  'grayscale',
  'also',
  'dithered',
  'line',
  'art',
  'settings',
  'grayscale',
  'isnt',
  'desired',
  'great',
  'scanning',
  'software',
  'easy',
  'frequently',
  'write',
  'letters',
  'neices',
  'spontaneouly',
  'include',
  'scanned',
  'image',
  'note',
  'hope',
  'helps'],
 ['greg',
  'berryman',
  'memory',
  'upgrades',
  'nntp',
  'posting',
  'host',
  'reply',
  'organization',
  'memories',
  'motorola',
  'newsreader',
  'tin',
  'pl',
  'lines',
  'nga',
  'throgaw',
  'shaygiy',
  'writes',
  'excuse',
  'frequent',
  'question',
  'checked',
  'several',
  'faqs',
  'couldnt',
  'really',
  'find',
  'anything',
  'excused',
  'answer',
  'varies',
  'mac',
  'mac',
  'would',
  'complex',
  'answer',
  'faq',
  'iisi',
  'standard',
  'meg',
  'memory',
  'want',
  'need',
  'add',
  'additional',
  'memory',
  'im',
  'budget',
  'really',
  'dont',
  'need',
  'meg',
  'max',
  'best',
  'performance',
  'wise',
  'economical',
  'way',
  'someone',
  'told',
  'simms',
  'amount',
  'memory',
  'meg',
  'meg',
  'etc',
  'wanted',
  'buy',
  'meg',
  'rest',
  'already',
  'manual',
  'hasnt',
  'helpful',
  'si',
  'uses',
  'bit',
  'wide',
  'data',
  'bus',
  'therefore',
  'must',
  'bit',
  'wide',
  'simms',
  'sorry',
  'short',
  'cuts',
  'thanks',
  'youre',
  'quite',
  'welcome',
  'greg',
  'words',
  'motorolas',
  'equal',
  'rights',
  'special',
  'rights',
  'bi',
  'ride',
  'back',
  'bus',
  'greg',
  'berryman',
  'silence',
  'death',
  'motorola',
  'austin',
  'texas',
  'usa',
  'first',
  'true',
  'glb',
  'mailing',
  'list',
  'motorola'],
 ['brian',
  'cash',
  'visit',
  'jehovahs',
  'witnesses',
  'nntp',
  'posting',
  'host',
  'crchh',
  'organization',
  'bnr',
  'inc',
  'lines',
  'article',
  'writes',
  'article',
  'mukesh',
  'prasad',
  'writes',
  'article',
  'writes',
  'article',
  'steve',
  'davis',
  'writes',
  'brian',
  'kendig',
  'writes',
  'earth',
  'evil',
  'satan',
  'rules',
  'new',
  'one',
  'guess',
  'since',
  'witness',
  'bothered',
  'implying',
  'satan',
  'omniscient',
  'might',
  'try',
  'tricking',
  'saying',
  'satan',
  'knowing',
  'statement',
  'show',
  'beliefs',
  'self',
  'contradictary',
  'satan',
  'omniscient',
  'hold',
  'dominion',
  'earth',
  'according',
  'christian',
  'theology',
  'note',
  'confused',
  'jws',
  'theology',
  'standard',
  'theologies',
  'created',
  'satan',
  'orthodox',
  'christian',
  'theology',
  'states',
  'god',
  'created',
  'lucifer',
  'satan',
  'along',
  'angels',
  'presumably',
  'wanted',
  'beings',
  'celebrate',
  'glorify',
  'existence',
  'life',
  'thereby',
  'god',
  'along',
  'actually',
  'whys',
  'wherefores',
  'gods',
  'motivations',
  'creating',
  'angels',
  'big',
  'issue',
  'within',
  'christian',
  'theology',
  'god',
  'created',
  'lucifer',
  'perfect',
  'nature',
  'gave',
  'along',
  'angels',
  'free',
  'moral',
  'lucifer',
  'high',
  'angel',
  'perhaps',
  'highest',
  'great',
  'authority',
  'seems',
  'greatness',
  'caused',
  'begin',
  'take',
  'pride',
  'desire',
  'equal',
  'greater',
  'god',
  'forgot',
  'place',
  'created',
  'exalted',
  'god',
  'thereby',
  'evil',
  'sin',
  'entered',
  'creation',
  'actually',
  'story',
  'goes',
  'lucifer',
  'refused',
  'bow',
  'man',
  'god',
  'commanded',
  'lucifer',
  'devoted',
  'god',
  'oh',
  'yeah',
  'nothing',
  'genesis',
  'says',
  'snake',
  'anything',
  'snake',
  'well',
  'talking',
  'one',
  'legs',
  'time',
  'dont',
  'think',
  'pointing',
  'contradictions',
  'stories',
  'best',
  'way',
  'show',
  'error',
  'theology',
  'think',
  'supernatural',
  'entity',
  'kicked',
  'first',
  'humans',
  'paradise',
  'bit',
  'fruit',
  'gave',
  'special',
  'powers',
  'well',
  'might',
  'respond',
  'well',
  'reason',
  'logic',
  'brian'],
 ['reg',
  'neale',
  'pioneer',
  'laser',
  'player',
  'organization',
  'univ',
  'rochester',
  'college',
  'engineering',
  'applied',
  'science',
  'lines',
  'im',
  'trying',
  'figure',
  'operate',
  'pioneer',
  'laserdisc',
  'ld',
  'bought',
  'surplus',
  'store',
  'reputedly',
  'kind',
  'computerised',
  'viewing',
  'ordering',
  'system',
  'may',
  'hpib',
  'connector',
  'back',
  'power',
  'front',
  'panel',
  'power',
  'light',
  'comes',
  'activity',
  'door',
  'doesnt',
  'open',
  'anyone',
  'experience',
  'unit',
  'ideas',
  'obtain',
  'documentation'],
 ['david',
  'veal',
  'national',
  'sales',
  'tax',
  'movie',
  'lines',
  'organization',
  'university',
  'tennessee',
  'division',
  'continuing',
  'education',
  'article',
  'gerald',
  'olchowy',
  'writes',
  'article',
  'broward',
  'horne',
  'writes',
  'well',
  'seems',
  'national',
  'sales',
  'tax',
  'gotten',
  'cnn',
  'news',
  'logo',
  'cool',
  'means',
  'well',
  'seeing',
  'often',
  'man',
  'sure',
  'glad',
  'quit',
  'working',
  'taking',
  'seriously',
  'kept',
  'busting',
  'ass',
  'watching',
  'time',
  'go',
  'frustrated',
  'id',
  'pretty',
  'damn',
  'mad',
  'wish',
  'mail',
  'address',
  'total',
  'gumby',
  'saying',
  'clinton',
  'didnt',
  'propose',
  'nst',
  'actually',
  'jerry',
  'brown',
  'essentially',
  'clinton',
  'demagogue',
  'persona',
  'condemned',
  'brown',
  'crucial',
  'ny',
  'primary',
  'last',
  'year',
  'however',
  'dont',
  'republicans',
  'get',
  'act',
  'together',
  'say',
  'support',
  'broad',
  'based',
  'vat',
  'would',
  'visible',
  'vat',
  'canada',
  'visible',
  'unlike',
  'invisible',
  'vats',
  'europe',
  'suggest',
  'rate',
  'sufficient',
  'halve',
  'income',
  'corporate',
  'capital',
  'gains',
  'tax',
  'rates',
  'rate',
  'sufficient',
  'give',
  'clintons',
  'enough',
  'revenue',
  'health',
  'care',
  'reform',
  'republicans',
  'general',
  'fighting',
  'tax',
  'increase',
  'also',
  'worry',
  'vat',
  'would',
  'far',
  'easy',
  'increase',
  'incrementally',
  'btw',
  'different',
  'canadas',
  'tax',
  'europes',
  'makes',
  'visible',
  'force',
  'agreement',
  'democrats',
  'top',
  'income',
  'tax',
  'rate',
  'would',
  'frozen',
  'forseeable',
  'future',
  'could',
  'increased',
  'via',
  'national',
  'referendum',
  'would',
  'require',
  'constitutional',
  'amendment',
  'congress',
  'enjoys',
  'raising',
  'taxes',
  'much',
  'restrict',
  'like',
  'besides',
  'majority',
  'necessary',
  'pull',
  'youd',
  'difficult',
  'time',
  'forcing',
  'anything',
  'like',
  'make',
  'clintons',
  'something',
  'worthwhile',
  'shift',
  'tax',
  'burden',
  'investment',
  'consumption',
  'get',
  'health',
  'care',
  'reform',
  'frozen',
  'low',
  'top',
  'marginal',
  'tax',
  'rate',
  'one',
  'fell',
  'swoop',
  'primarily',
  'practical',
  'impossibility',
  'freeze',
  'tax',
  'rates',
  'however',
  'something',
  'bothers',
  'always',
  'talking',
  'consumer',
  'confidence',
  'consumer',
  'spending',
  'gauges',
  'economy',
  'really',
  'important',
  'wouldnt',
  'shifting',
  'taxes',
  'consumption',
  'provide',
  'disincentive',
  'spend',
  'money',
  'david',
  'veal',
  'univ',
  'tenn',
  'div',
  'cont',
  'education',
  'info',
  'services',
  'group',
  'still',
  'remember',
  'way',
  'laughed',
  'day',
  'pushed',
  'elevator',
  'shaft',
  'im',
  'beginning',
  'think',
  'dont',
  'love',
  'anymore',
  'weird',
  'al'],
 ['layne',
  'cook',
  'lindbergh',
  'moon',
  'give',
  'organization',
  'university',
  'new',
  'mexico',
  'albuquerque',
  'nm',
  'lines',
  'distribution',
  'world',
  'reply',
  'layne',
  'cook',
  'nntp',
  'posting',
  'host',
  'cook',
  'mdc',
  'com',
  'talk',
  'commercial',
  'space',
  'race',
  'first',
  'year',
  'moon',
  'base',
  'intriguing',
  'similar',
  'prizes',
  'influenced',
  'aerospace',
  'development',
  'orteig',
  'prize',
  'helped',
  'lindbergh',
  'sell',
  'spirit',
  'saint',
  'louis',
  'venture',
  'financial',
  'backers',
  'memory',
  'serves',
  'prize',
  'would',
  'enough',
  'totally',
  'reimburse',
  'expensive',
  'transatlantic',
  'projects',
  'fokkers',
  'nungesser',
  'multi',
  'engine',
  'projects',
  'however',
  'lindbergh',
  'ultimately',
  'kept',
  'total',
  'costs',
  'amount',
  'strongly',
  'suspect',
  'saint',
  'louis',
  'backers',
  'foresight',
  'realize',
  'much',
  'stake',
  'could',
  'work',
  'moon',
  'far',
  'sighted',
  'financial',
  'backers',
  'today',
  'layne',
  'cook',
  'mcdonnell',
  'douglas',
  'space',
  'systems',
  'co'],
 ['richard',
  'pierce',
  'recent',
  'observations',
  'hubble',
  'keywords',
  'hst',
  'pluto',
  'uranus',
  'organization',
  'world',
  'public',
  'access',
  'unix',
  'brookline',
  'lines',
  'article',
  'ron',
  'baalke',
  'writes',
  'recent',
  'observations',
  'taken',
  'hubble',
  'space',
  'telescope',
  'observations',
  'made',
  'using',
  'high',
  'speed',
  'photometer',
  'planet',
  'uranus',
  'occultation',
  'faint',
  'star',
  'capricornus',
  'wow',
  'knew',
  'uranus',
  'long',
  'way',
  'didnt',
  'think',
  'far',
  'away',
  'dick',
  'pierce',
  'loudspeaker',
  'software',
  'consulting',
  'sartelle',
  'street',
  'pepperell',
  'voice',
  'fax'],
 ['jake',
  'livni',
  'investment',
  'yehuda',
  'shomron',
  'organization',
  'department',
  'redundancy',
  'department',
  'lines',
  'article',
  'adam',
  'shostack',
  'writes',
  'think',
  'house',
  'jews',
  'reference',
  'person',
  'jewish',
  'ancestry',
  'issues',
  'statements',
  'company',
  'organization',
  'condemn',
  'judaism',
  'perfectly',
  'sufficeint',
  'believe',
  'cpr',
  'house',
  'jew',
  'jake',
  'livni',
  'ten',
  'years',
  'george',
  'bush',
  'american',
  'occupied',
  'new',
  'york',
  'replaced',
  'jimmy',
  'carter',
  'opinions',
  'employer',
  'opinions',
  'standard',
  'failed',
  'president'],
 ['jacquelin',
  'aldridge',
  'teenage',
  'acne',
  'organization',
  'netcom',
  'line',
  'communication',
  'services',
  'guest',
  'lines',
  'pat',
  'churchill',
  'writes',
  'son',
  'usual',
  'teenage',
  'spotty',
  'chin',
  'greasy',
  'nose',
  'bought',
  'clearasil',
  'face',
  'wash',
  'ointment',
  'think',
  'probably',
  'enough',
  'along',
  'usual',
  'good',
  'diet',
  'however',
  'get',
  'product',
  'called',
  'dalacin',
  'used',
  'doctors',
  'prescription',
  'treatment',
  'available',
  'chemists',
  'counter',
  'asked',
  'couple',
  'pharmacists',
  'say',
  'either',
  'acne',
  'severe',
  'enough',
  'dalacin',
  'clearasil',
  'ok',
  'odd',
  'spots',
  'teenager',
  'nothing',
  'serious',
  'father',
  'dont',
  'figure',
  'acne',
  'going',
  'escalate',
  'something',
  'disfiguring',
  'know',
  'kids',
  'senstitive',
  'appearance',
  'wary',
  'neighbours',
  'son',
  'wierd',
  'malady',
  'eventually',
  'put',
  'overdose',
  'vitamin',
  'acne',
  'treatment',
  'want',
  'help',
  'appropriate',
  'treatment',
  'son',
  'also',
  'scaliness',
  'around',
  'hairline',
  'scalp',
  'sort',
  'teenage',
  'cradle',
  'cap',
  'pointers',
  'advice',
  'tried',
  'couple',
  'anti',
  'dandruff',
  'shampoos',
  'inclined',
  'make',
  'condition',
  'worse',
  'better',
  'shall',
  'bury',
  'kid',
  'till',
  'hes',
  'one',
  'lucky',
  'ones',
  'little',
  'acne',
  'teenager',
  'didnt',
  'luck',
  'clearasil',
  'even',
  'though',
  'skin',
  'gets',
  'oily',
  'really',
  'gets',
  'miserable',
  'pimples',
  'dry',
  'frequent',
  'lukewarm',
  'water',
  'rinses',
  'face',
  'might',
  'help',
  'getting',
  'scalp',
  'thing',
  'control',
  'might',
  'help',
  'could',
  'simple',
  'submerging',
  'bathwater',
  'till',
  'softened',
  'washing',
  'taking',
  'one',
  'day',
  'vitamin',
  'mineral',
  'might',
  'help',
  'ive',
  'heard',
  'iodine',
  'causes',
  'trouble',
  'used',
  'fast',
  'food',
  'restaurants',
  'sterilize',
  'equipment',
  'might',
  'belief',
  'greasy',
  'foods',
  'cause',
  'acne',
  'came',
  'notice',
  'grease',
  'face',
  'immediately',
  'removed',
  'cause',
  'acne',
  'even',
  'eating',
  'meat',
  'keeping',
  'hair',
  'rinse',
  'mousse',
  'dip',
  'spray',
  'face',
  'help',
  'warm',
  'water',
  'bath',
  'soaks',
  'cloths',
  'face',
  'soften',
  'oil',
  'pores',
  'help',
  'prevent',
  'blackheads',
  'body',
  'oil',
  'hydrophilic',
  'loves',
  'water',
  'softens',
  'washes',
  'chance',
  'thats',
  'hair',
  'goes',
  'limp',
  'oilyness',
  'becoming',
  'convinced',
  'best',
  'thing',
  'whitehead',
  'leave',
  'alone',
  'save',
  'days',
  'pimple',
  'misery',
  'prying',
  'black',
  'whiteheads',
  'cause',
  'infections',
  'red',
  'spots',
  'pimples',
  'usually',
  'whitehead',
  'break',
  'naturally',
  'day',
  'wont',
  'infection',
  'afterwards',
  'tell',
  'normal',
  'pimples',
  'cosmetic',
  'industry',
  'makes',
  'money',
  'selling',
  'people',
  'idea',
  'incredible',
  'defect',
  'hidden',
  'cost',
  'even',
  'causing',
  'pimples',
  'jackie'],
 ['andrew',
  'byler',
  'nicene',
  'creed',
  'major',
  'views',
  'trinity',
  'organization',
  'freshman',
  'civil',
  'engineering',
  'carnegie',
  'mellon',
  'pittsburgh',
  'pa',
  'lines',
  'michael',
  'bushnell',
  'writes',
  'called',
  'creed',
  'athanasius',
  'however',
  'always',
  'western',
  'creed',
  'always',
  'filioque',
  'orthodox',
  'said',
  'accept',
  'says',
  'exception',
  'filioque',
  'exactly',
  'pointed',
  'though',
  'wrong',
  'creed',
  'catholic',
  'encylcopedia',
  'read',
  'said',
  'orthodox',
  'creed',
  'minus',
  'filioque',
  'apparently',
  'changed',
  'athanasian',
  'creed',
  'always',
  'filioque',
  'nicene',
  'course',
  'orthodox',
  'delete',
  'filioque',
  'nicene',
  'creed',
  'wasnt',
  'begin',
  'certainly',
  'athanasian',
  'creed',
  'beginning',
  'might',
  'point',
  'whole',
  'problem',
  'started',
  'difference',
  'ways',
  'explaining',
  'generation',
  'blessed',
  'trinity',
  'east',
  'emphasizing',
  'idea',
  'holy',
  'spirit',
  'proceeding',
  'father',
  'son',
  'west',
  'using',
  'proceeding',
  'father',
  'son',
  'fact',
  'tertullian',
  'used',
  'formulations',
  'see',
  'following',
  'therefore',
  'form',
  'examples',
  'profess',
  'call',
  'god',
  'word',
  'father',
  'son',
  'two',
  'root',
  'stem',
  'two',
  'things',
  'conjoined',
  'fountain',
  'river',
  'two',
  'kinds',
  'indivisible',
  'sun',
  'ray',
  'two',
  'forms',
  'coherent',
  'ones',
  'anything',
  'proceeds',
  'another',
  'must',
  'necessarily',
  'second',
  'proceeds',
  'account',
  'separated',
  'second',
  'however',
  'two',
  'ther',
  'third',
  'three',
  'spirit',
  'third',
  'god',
  'son',
  'third',
  'root',
  'fruit',
  'stem',
  'third',
  'fountain',
  'stream',
  'river',
  'thrid',
  'sun',
  'apex',
  'ray',
  'tertullian',
  'praxeas',
  'ad',
  'believe',
  'spirit',
  'proceeds',
  'otherwise',
  'father',
  'son',
  'tertullian',
  'praxeas',
  'ad',
  'st',
  'thomas',
  'showed',
  'summa',
  'theologica',
  'part',
  'question',
  'articles',
  'contradiction',
  'two',
  'methods',
  'generation',
  'fact',
  'two',
  'methods',
  'reckoning',
  'procession',
  'emphasize',
  'st',
  'augustine',
  'among',
  'others',
  'taught',
  'holy',
  'spirit',
  'proceeds',
  'father',
  'son',
  'proceeds',
  'father',
  'preeminent',
  'way',
  'whatever',
  'son',
  'father',
  'certainly',
  'father',
  'holy',
  'spirit',
  'proceeds',
  'father',
  'alone',
  'another',
  'reason',
  'alone',
  'called',
  'unbegotten',
  'indeed',
  'scriptures',
  'practice',
  'theologians',
  'employ',
  'terms',
  'able',
  'matter',
  'great',
  'son',
  'however',
  'born',
  'father',
  'holy',
  'spirit',
  'proceeds',
  'principally',
  'father',
  'since',
  'father',
  'gives',
  'son',
  'without',
  'interval',
  'time',
  'holy',
  'spirit',
  'proceeds',
  'jointly',
  'father',
  'son',
  'would',
  'called',
  'son',
  'father',
  'son',
  'abhorent',
  'everyone',
  'sound',
  'mind',
  'begotten',
  'spirit',
  'begotten',
  'however',
  'proceeds',
  'st',
  'augustine',
  'hippo',
  'trinity',
  'ad',
  'sense',
  'formulations',
  'correct',
  'west',
  'least',
  'holy',
  'spirit',
  'proceeds',
  'father',
  'son',
  'proceeding',
  'son',
  'orgin',
  'procession',
  'procession',
  'father',
  'holy',
  'spirit',
  'proceeding',
  'father',
  'son',
  'son',
  'father',
  'holy',
  'spirit',
  'said',
  'proceed',
  'father',
  'without',
  'mention',
  'son',
  'necessary',
  'case',
  'happy',
  'know',
  'follow',
  'beliefs',
  'pope',
  'st',
  'leo',
  'st',
  'fulgence',
  'ruspe',
  'st',
  'cyril',
  'alexandria',
  'pope',
  'st',
  'damsus',
  'st',
  'augustine',
  'hippo',
  'st',
  'epiphanius',
  'salamis',
  'st',
  'ambrose',
  'milan',
  'st',
  'hilary',
  'poitiers',
  'tertullian',
  'others',
  'among',
  'fathers',
  'quotable',
  'quotes',
  'supporting',
  'catholic',
  'position',
  'enunciated',
  'issue',
  'adoption',
  'another',
  'creed',
  'forbidden',
  'point',
  'holy',
  'fathers',
  'ephesus',
  'chalcedon',
  'spoke',
  'creed',
  'nicea',
  'statement',
  'forbidding',
  'anyone',
  'produce',
  'write',
  'compose',
  'confession',
  'faith',
  'one',
  'defined',
  'fathers',
  'nicea',
  'creed',
  'different',
  'creed',
  'constantinople',
  'commonly',
  'called',
  'nicene',
  'creed',
  'course',
  'condemning',
  'adoption',
  'creed',
  'enlargement',
  'upon',
  'creed',
  'nicea',
  'condemning',
  'impious',
  'opinions',
  'nestorious',
  'adopted',
  'radically',
  'different',
  'creed',
  'one',
  'used',
  'church',
  'among',
  'things',
  'denied',
  'procession',
  'holy',
  'spirit',
  'form',
  'son',
  'thus',
  'additions',
  'creed',
  'thought',
  'violation',
  'council',
  'chalcedon',
  'also',
  'affirmed',
  'doctrine',
  'procession',
  'holy',
  'spirit',
  'son',
  'nestorius',
  'denied',
  'could',
  'hardly',
  'explaining',
  'fuller',
  'way',
  'creed',
  'approved',
  'previous',
  'additions',
  'explanations',
  'creed',
  'made',
  'constantinople',
  'denigrating',
  'work',
  'done',
  'holy',
  'fathers',
  'nicea',
  'way',
  'heretical',
  'follows',
  'council',
  'toledo',
  'fully',
  'able',
  'add',
  'disputed',
  'faithful',
  'creed',
  'combat',
  'impieties',
  'arians',
  'spain',
  'filioque',
  'dispute',
  'church',
  'many',
  'years',
  'later',
  'photius',
  'others',
  'filioque',
  'disputed',
  'provide',
  'quotes',
  'since',
  'holy',
  'spirit',
  'us',
  'effects',
  'conformed',
  'god',
  'actually',
  'proceeds',
  'father',
  'son',
  'abundantly',
  'clear',
  'divine',
  'essence',
  'essence',
  'proceeding',
  'st',
  'cyril',
  'alexandria',
  'treasury',
  'holy',
  'consubstantial',
  'trinity',
  'thesis',
  'ad',
  'holy',
  'spirit',
  'father',
  'son',
  'spirit',
  'father',
  'son',
  'written',
  'anyone',
  'loves',
  'world',
  'spirit',
  'father',
  'written',
  'anyone',
  'however',
  'spirit',
  'christ',
  'none',
  'father',
  'son',
  'named',
  'way',
  'holy',
  'spirit',
  'understood',
  'son',
  'says',
  'gospel',
  'holy',
  'spirit',
  'proceeds',
  'father',
  'shall',
  'receive',
  'mine',
  'shall',
  'announce',
  'pope',
  'st',
  'damasus',
  'decree',
  'damasus',
  'ad',
  'begotten',
  'holy',
  'spirit',
  'neither',
  'name',
  'son',
  'appelation',
  'father',
  'called',
  'holy',
  'spirit',
  'foreign',
  'father',
  'begotten',
  'calls',
  'spirit',
  'father',
  'says',
  'proceeds',
  'father',
  'receive',
  'mine',
  'reckoned',
  'foreign',
  'son',
  'substance',
  'godhead',
  'spirit',
  'divine',
  'god',
  'god',
  'spirit',
  'god',
  'spirit',
  'father',
  'spirit',
  'son',
  'kind',
  'synthesis',
  'like',
  'soul',
  'body',
  'us',
  'midst',
  'father',
  'son',
  'father',
  'son',
  'third',
  'appelation',
  'father',
  'always',
  'existed',
  'son',
  'always',
  'existed',
  'spirit',
  'breathes',
  'father',
  'son',
  'neither',
  'son',
  'created',
  'spirit',
  'created',
  'st',
  'epiphanius',
  'salamis',
  'cyprus',
  'man',
  'well',
  'anchored',
  'ad',
  'concerning',
  'holy',
  'spirit',
  'ought',
  'remain',
  'silent',
  'yet',
  'necessary',
  'speak',
  'still',
  'account',
  'know',
  'possible',
  'silent',
  'however',
  'necessary',
  'speak',
  'must',
  'acknowledged',
  'father',
  'son',
  'sources',
  'st',
  'hilary',
  'poitiers',
  'trintiy',
  'ad',
  'thus',
  'pointed',
  'gaul',
  'spain',
  'italy',
  'africa',
  'egypt',
  'palastine',
  'lands',
  'greeks',
  'christnedom',
  'time',
  'fathers',
  'cited',
  'show',
  'confess',
  'doctrine',
  'expressed',
  'filioque',
  'suggest',
  'orthodox',
  'church',
  'come',
  'fathers',
  'besides',
  'st',
  'john',
  'damascus',
  'admit',
  'denied',
  'filioque',
  'support',
  'views',
  'enough',
  'bring',
  'proceeds',
  'father',
  'line',
  'creed',
  'gospel',
  'john',
  'says',
  'believe',
  'also',
  'say',
  'holy',
  'spirit',
  'proceed',
  'son',
  'proceed',
  'father',
  'andy',
  'byler'],
 ['tom',
  'mcconnell',
  'motif',
  'vs',
  'athena',
  'etc',
  'organization',
  'intel',
  'corporation',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'thunder',
  'intel',
  'com',
  'originator',
  'article',
  'david',
  'hughes',
  'writes',
  'andrew',
  'berry',
  'writes',
  'ports',
  'motif',
  'bsd',
  'linux',
  'available',
  'fee',
  'cost',
  'recovery',
  'person',
  'bought',
  'rights',
  'redistribute',
  'activity',
  'bsd',
  'linux',
  'news',
  'groups',
  'pertaining',
  'motif',
  'high',
  'wonder',
  'also',
  'cause',
  'divergence',
  'commercial',
  'non',
  'commercial',
  'software',
  'ie',
  'get',
  'free',
  'software',
  'using',
  'athena',
  'openlook',
  'widget',
  'sets',
  'get',
  'commercial',
  'software',
  'using',
  'motif',
  'widget',
  'sets',
  'cant',
  'see',
  'every',
  'workstation',
  'come',
  'motif',
  'default',
  'buy',
  'free',
  'unix',
  'platforms',
  'cant',
  'see',
  'causing',
  'major',
  'problems',
  'let',
  'add',
  'another',
  'concerns',
  'yes',
  'buy',
  'port',
  'motif',
  'cheap',
  'cannot',
  'get',
  'source',
  'cheap',
  'hence',
  'limited',
  'using',
  'whatever',
  'libraries',
  'motif',
  'port',
  'compiled',
  'least',
  'older',
  'versions',
  'motif',
  'told',
  'motif',
  'used',
  'seen',
  'currently',
  'running',
  'eight',
  'different',
  'unix',
  'platforms',
  'three',
  'came',
  'motif',
  'three',
  'unable',
  'libraries',
  'build',
  'motif',
  'clients',
  'get',
  'link',
  'errors',
  'vendor',
  'supplied',
  'port',
  'motif',
  'anticipate',
  'problem',
  'becomes',
  'available',
  'result',
  'cannot',
  'build',
  'motif',
  'clients',
  'rely',
  'since',
  'motif',
  'compiled',
  'true',
  'could',
  'buy',
  'another',
  'port',
  'motif',
  'sort',
  'ruins',
  'whole',
  'idea',
  'free',
  'doesnt',
  'cheers',
  'tom',
  'mcconnell',
  'tom',
  'mcconnell',
  'internet',
  'intel',
  'corp',
  'phone',
  'chandler',
  'blvd',
  'opinions',
  'expressed',
  'one',
  'chandler',
  'az',
  'right',
  'mind',
  'would',
  'claim'],
 ['david',
  'lau',
  'accelerating',
  'macplus',
  'nntp',
  'posting',
  'host',
  'michigan',
  'aero',
  'org',
  'organization',
  'aerospace',
  'corporation',
  'el',
  'segundo',
  'ca',
  'lines',
  'also',
  'someone',
  'would',
  'recommend',
  'another',
  'accelerator',
  'macplus',
  'id',
  'like',
  'hear',
  'thanks',
  'time',
  'effort',
  'expend',
  'karl',
  'try',
  'looking',
  'brainstorm',
  'accelerator',
  'plus',
  'believe',
  'best',
  'solution',
  'performance',
  'price',
  'spend',
  'upgrading',
  'computer',
  'worth',
  'brainstorm',
  'accelerator',
  'around',
  'speeds',
  'internal',
  'clock',
  'speed',
  'mhz',
  'may',
  'seem',
  'like',
  'much',
  'also',
  'speeds',
  'scsi',
  'transfers',
  'think',
  'feature',
  'unique',
  'brainstorm',
  'check',
  'david',
  'lau'],
 ['bill',
  'riggs',
  'hard',
  'times',
  'investments',
  'given',
  'organization',
  'lnk',
  'corporation',
  'riverdale',
  'md',
  'lines',
  'nntp',
  'posting',
  'host',
  'descartes',
  'tec',
  'army',
  'mil',
  'article',
  'broward',
  'horne',
  'writes',
  'previous',
  'article',
  'bill',
  'riggs',
  'says',
  'much',
  'land',
  'long',
  'run',
  'zero',
  'sum',
  'game',
  'going',
  'someone',
  'somewhere',
  'going',
  'make',
  'killing',
  'nosediving',
  'real',
  'estate',
  'markets',
  'worst',
  'thing',
  'panic',
  'best',
  'thing',
  'ride',
  'deflation',
  'end',
  'hurts',
  'youre',
  'better',
  'sell',
  'short',
  'donate',
  'someone',
  'elses',
  'inheritance',
  'sad',
  'paradigm',
  'shift',
  'coming',
  'chum',
  'ride',
  'wave',
  'dont',
  'believe',
  'wave',
  'theory',
  'theres',
  'much',
  'land',
  'oh',
  'god',
  'mike',
  'zimmers',
  'replacement',
  'mother',
  'law',
  'grew',
  'germany',
  'doesnt',
  'believe',
  'money',
  'started',
  'real',
  'estate',
  'developer',
  'raises',
  'horses',
  'keeps',
  'telling',
  'inflation',
  'coming',
  'back',
  'lock',
  'fixed',
  'rate',
  'mortgage',
  'low',
  'possible',
  'let',
  'spell',
  'spell',
  'two',
  'trillion',
  'dollar',
  'bank',
  'bailout',
  'maybe',
  'youd',
  'like',
  'invest',
  'foreign',
  'currency',
  'one',
  'would',
  'guess',
  'come',
  'top',
  'sigh',
  'speculators',
  'never',
  'learn',
  'bill',
  'proposals',
  'senate',
  'opinions',
  'represent',
  'seen',
  'fit',
  'mention',
  'particularly',
  'employer',
  'praiseworthy',
  'particularly',
  'scandalous',
  'ones',
  'government',
  'agency',
  'seems',
  'historians',
  'foremost',
  'bill',
  'riggs',
  'duty',
  'ensure',
  'virtue',
  'remembered',
  'deter',
  'evil',
  'words',
  'deeds',
  'fear',
  'posteritys',
  'damnation',
  'tacitus',
  'iii'],
 ['organization',
  'industrial',
  'research',
  'ltd',
  'new',
  'zealand',
  'nntp',
  'posting',
  'host',
  'grv',
  'grace',
  'cri',
  'nz',
  'lines',
  'nz',
  'apparently',
  'things',
  'like',
  'aftershave',
  'also',
  'giving',
  'positive',
  'readings'],
 ['cs',
  'aq',
  'ryam',
  'weeks',
  'organization',
  'university',
  'texas',
  'arlington',
  'lines',
  'nolan',
  'ryan',
  'torn',
  'cartlidge',
  'inhis',
  'right',
  'knee',
  'surgery',
  'expected',
  'miss',
  'weeks'],
 ['wargames',
  'magazines',
  'forsale',
  'organization',
  'university',
  'california',
  'santa',
  'cruz',
  'lines',
  'distribution',
  'usa',
  'nntp',
  'posting',
  'host',
  'si',
  'ucsc',
  'discounts',
  'please',
  'take',
  'item',
  'item',
  'list',
  'magazines',
  'including',
  'asking',
  'price',
  'strategy',
  'tactics',
  'magazine',
  'include',
  'unpunched',
  'games',
  'new',
  'mailed',
  'games',
  'inclusions',
  'issue',
  'title',
  'asking',
  'oil',
  'war',
  'american',
  'intervention',
  'persian',
  'gulf',
  'berlin',
  'enemy',
  'gates',
  'tito',
  'partisan',
  'army',
  'yugoslavia',
  'kaisers',
  'battle',
  'german',
  'offensive',
  'march',
  'operation',
  'grenade',
  'rhineland',
  'feb',
  'mar',
  'sicily',
  'race',
  'messina',
  'jul',
  'aug',
  'battle',
  'monmouth',
  'colonies',
  'take',
  'offensive',
  'end',
  'era',
  'new',
  'mailed',
  'games',
  'inclusions',
  'envelope',
  'issue',
  'title',
  'asking',
  'battle',
  'abensberg',
  'magazine',
  'kanev',
  'russian',
  'paratroops',
  'manchu',
  'taiping',
  'rebellion',
  'north',
  'german',
  'plain',
  'modern',
  'germany',
  'tigers',
  'burning',
  'camp',
  'ukraine',
  'nicararagua',
  'pegasus',
  'bridge',
  'beginning',
  'day',
  'campaigns',
  'valley',
  'fortress',
  'stalingrad',
  'russian',
  'winter',
  'offensive',
  'far',
  'seas',
  'german',
  'cruiser',
  'operations',
  'wwii',
  'beirut',
  'arab',
  'stalingrad',
  'rush',
  'glory',
  'war',
  'mexico',
  'ah',
  'general',
  'magazine',
  'many',
  'articles',
  'included',
  'issue',
  'issue',
  'title',
  'asking',
  'vol',
  'crescendo',
  'doom',
  'fortress',
  'europa',
  'circus',
  'maximus',
  'stalingra',
  'bismark',
  'squad',
  'leader',
  'clinic',
  'campaign',
  'magazine',
  'many',
  'articles',
  'included',
  'issue',
  'issue',
  'title',
  'asking',
  'crescendo',
  'doom',
  'cross',
  'iron',
  'counterstroke',
  'inchon',
  'squad',
  'leader',
  'variant',
  'gdws',
  'battle',
  'leyte',
  'gulf',
  'magazine',
  'prices',
  'include',
  'postage',
  'issues',
  'new',
  'like',
  'new',
  'condition',
  'games',
  'books',
  'yaquinto',
  'publications',
  'inc',
  'attack',
  'mutants',
  'introductory',
  'game',
  'unpunched',
  'new',
  'complete',
  'book',
  'wargames',
  'print',
  'author',
  'jon',
  'freeman',
  'part',
  'introduction',
  'pages',
  'including',
  'ch',
  'kassala',
  'introductory',
  'wargame',
  'complete',
  'information',
  'wargames',
  'hardcover',
  'pages',
  'large',
  'format',
  'shipping',
  'extra',
  'books',
  'games',
  'prefer',
  'money',
  'orders',
  'payment',
  'ill',
  'allow',
  'personal',
  'checks',
  'clear',
  'shipping',
  'larry',
  'larry',
  'mcelhiney',
  'th',
  'avenue',
  'santa',
  'cruz',
  'ca'],
 ['bob',
  'douglas',
  'sphere',
  'points',
  'organization',
  'oxford',
  'university',
  'computing',
  'service',
  'banbury',
  'rd',
  'oxford',
  'lines',
  'originator',
  'article',
  'steven',
  'collins',
  'writes',
  'article',
  'edward',
  'bolson',
  'writes',
  'boy',
  'embarassing',
  'trivial',
  'faq',
  'given',
  'points',
  'non',
  'coplanar',
  'one',
  'find',
  'sphere',
  'center',
  'radius',
  'exactly',
  'fitting',
  'points',
  'know',
  'circle',
  'points',
  'immediately',
  'see',
  'straightforward',
  'way',
  'checked',
  'geometry',
  'books',
  'graphics',
  'gems',
  'farin',
  'still',
  'loss',
  'please',
  'mercy',
  'provide',
  'solution',
  'wouldnt',
  'require',
  'hyper',
  'sphere',
  'space',
  'points',
  'specifies',
  'sphere',
  'far',
  'see',
  'unless',
  'prove',
  'point',
  'exists',
  'space',
  'equi',
  'distant',
  'points',
  'may',
  'necessarily',
  'happen',
  'correct',
  'im',
  'wrong',
  'quite',
  'possibly',
  'steve',
  'sorry',
  'call',
  'four',
  'points',
  'three',
  'must',
  'non',
  'collinear',
  'otherwise',
  'three',
  'could',
  'lie',
  'surface',
  'sphere',
  'four',
  'must',
  'coplaner',
  'otherwise',
  'either',
  'cannot',
  'lie',
  'sphere',
  'define',
  'infinity',
  'define',
  'circle',
  'perpendicular',
  'bisectors',
  'ab',
  'bc',
  'ca',
  'meet',
  'point',
  'say',
  'centre',
  'circle',
  'circle',
  'must',
  'lie',
  'surface',
  'desired',
  'sphere',
  'consider',
  'normal',
  'plane',
  'abc',
  'passing',
  'points',
  'normal',
  'equidistant',
  'circle',
  'fact',
  'diameter',
  'desired',
  'sphere',
  'take',
  'plane',
  'containing',
  'normal',
  'lies',
  'normal',
  'plane',
  'containing',
  'normal',
  'plane',
  'right',
  'angles',
  'abc',
  'one',
  'let',
  'point',
  'normally',
  'two',
  'circumference',
  'abc',
  'circle',
  'lies',
  'plane',
  'need',
  'point',
  'normal',
  'eq',
  'dq',
  'intersection',
  'perpendicular',
  'bisector',
  'ed',
  'normal',
  'point',
  'exists',
  'since',
  'plane',
  'abc',
  'ed',
  'right',
  'angles',
  'normal',
  'algorithm',
  'sphere',
  'well',
  'defined',
  'check',
  'coincident',
  'failure',
  'find',
  'line',
  'ab',
  'check',
  'lie',
  'failure',
  'find',
  'plane',
  'abc',
  'check',
  'lie',
  'failure',
  'yes',
  'find',
  'centre',
  'find',
  'perpendicular',
  'bisectors',
  'ab',
  'ac',
  'find',
  'point',
  'intersection',
  'find',
  'normal',
  'plane',
  'abc',
  'passing',
  'line',
  'find',
  'plane',
  'containing',
  'find',
  'point',
  'abc',
  'circle',
  'plane',
  'lies',
  'take',
  'find',
  'perpendicular',
  'bisector',
  'ed',
  'line',
  'find',
  'point',
  'intersection',
  'centre',
  'desired',
  'sphere',
  'pictures',
  'plane',
  'abc',
  'right',
  'angles',
  'abc',
  'plane',
  'containing',
  'line',
  'numerically',
  'ed',
  'ep',
  'close',
  'relative',
  'radius',
  'abc',
  'circle',
  'error',
  'best',
  'choose',
  'least',
  'ad',
  'bd',
  'cd',
  'larger',
  'choice',
  'bob',
  'douglas',
  'computing',
  'services',
  'university',
  'oxford',
  'internet',
  'address',
  'banbury',
  'road',
  'oxford',
  'ox',
  'nn',
  'uk',
  'telephone'],
 ['ravikuma',
  'venkateswar',
  'compare',
  'distribution',
  'usa',
  'organization',
  'university',
  'illinois',
  'urbana',
  'lines',
  'holger',
  'skok',
  'writes',
  'article',
  'ravikuma',
  'venkateswar',
  'writes',
  'stuff',
  'deleted',
  'besides',
  'wait',
  'state',
  'performance',
  'youd',
  'need',
  'cache',
  'anyway',
  'mean',
  'uses',
  'processor',
  'runs',
  'speed',
  'ns',
  'simms',
  'note',
  'memory',
  'speed',
  'corresponds',
  'clock',
  'speed',
  'mhz',
  'stuff',
  'deleted',
  'calculate',
  'figure',
  'id',
  'assume',
  'even',
  'personal',
  'computers',
  'board',
  'designers',
  'would',
  'bank',
  'switching',
  'optimistically',
  'quadruple',
  'access',
  'speed',
  'missing',
  'something',
  'previous',
  'article',
  'referred',
  'fact',
  'could',
  'ns',
  'simms',
  'mhz',
  'machine',
  'could',
  'ns',
  'simms',
  'slower',
  'machines',
  'pointed',
  'could',
  'ns',
  'simms',
  'mhz',
  'machine',
  'cant',
  'ns',
  'simms',
  'anything',
  'faster',
  'mhz',
  'machine',
  'bank',
  'switching',
  'caches',
  'considered',
  'either',
  'example',
  'although',
  'would',
  'help',
  'memory',
  'access',
  'hsk',
  'ravikumar',
  'venkateswar',
  'pun',
  'blessed',
  'form',
  'whit'],
 ['organization',
  'university',
  'maine',
  'system',
  'merv',
  'ega',
  'vga',
  'monitor',
  'card',
  'wanted',
  'lines',
  'says',
  'looking',
  'decent',
  'ega',
  'vga',
  'monitor',
  'card',
  'combo',
  'working',
  'condition',
  'thing',
  'must',
  'bit',
  'card',
  'mail',
  'offers',
  'thanks',
  'merv'],
 ['curtis',
  'jackson',
  'live',
  'free',
  'quietly',
  'die',
  'article',
  'adobe',
  'apr',
  'organization',
  'adobe',
  'systems',
  'incorporated',
  'mountain',
  'view',
  'lines',
  'article',
  'russell',
  'hughes',
  'writes',
  'start',
  'rev',
  'rpm',
  'fail',
  'cuz',
  'register',
  'db',
  'max',
  'allowed',
  'fail',
  'pipes',
  'gonna',
  'next',
  'time',
  'make',
  'numbers',
  'believable',
  'poor',
  'flamebait',
  'db',
  'getting',
  'close',
  'sound',
  'jumbo',
  'jet',
  'engine',
  'takeoff',
  'revs',
  'small',
  'number',
  'yards',
  'away',
  'certainly',
  'right',
  'around',
  'pain',
  'threshold',
  'humans',
  'way',
  'hell',
  'state',
  'permits',
  'db',
  'standard',
  'curtis',
  'jackson',
  'hawk',
  'gt',
  'maxim',
  'dod',
  'kotb',
  'black',
  'lab',
  'mix',
  'studley',
  'doright',
  'collie',
  'golden',
  'george',
  'justification',
  'taking',
  'away',
  'individuals',
  'freedom',
  'guise',
  'public',
  'safety',
  'thomas',
  'jefferson'],
 ['bill',
  'conner',
  'americans',
  'evolution',
  'nntp',
  'posting',
  'host',
  'okcforum',
  'osrhe',
  'organization',
  'okcforum',
  'unix',
  'users',
  'group',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'robert',
  'singleton',
  'wrote',
  'sure',
  'isnt',
  'mutually',
  'exclusive',
  'lends',
  'weight',
  'increases',
  'notional',
  'running',
  'estimates',
  'posterior',
  'probability',
  'atheists',
  'pitch',
  'partition',
  'thus',
  'necessarily',
  'reduces',
  'quantity',
  'theists',
  'pitch',
  'divine',
  'component',
  'falls',
  'prey',
  'ockhams',
  'razor',
  'phenomenon',
  'satisfactorily',
  'explained',
  'without',
  'independent',
  'evidence',
  'component',
  'detail',
  'next',
  'post',
  'occams',
  'razor',
  'law',
  'nature',
  'way',
  'analyzing',
  'argument',
  'even',
  'interesting',
  'often',
  'cited',
  'end',
  'seems',
  'odd',
  'religion',
  'simultaneously',
  'condemned',
  'primitive',
  'simple',
  'minded',
  'unscientific',
  'anti',
  'intellectual',
  'childish',
  'yet',
  'condemned',
  'complex',
  'occams',
  'razor',
  'scientific',
  'explanation',
  'things',
  'much',
  'apparently',
  'simpler',
  'non',
  'essential',
  'know',
  'considering',
  'even',
  'scientists',
  'dont',
  'fully',
  'comprehend',
  'science',
  'due',
  'complexity',
  'diversity',
  'maybe',
  'william',
  'occam',
  'performed',
  'lobotomy',
  'kept',
  'frontal',
  'lobe',
  'thrown',
  'everything',
  'else',
  'away',
  'confusing',
  'im',
  'sure',
  'one',
  'straighten',
  'tough',
  'bill'],
 ['serdar',
  'argic',
  'today',
  'marks',
  'th',
  'anniversary',
  'turkish',
  'genocide',
  'reply',
  'serdar',
  'argic',
  'distribution',
  'world',
  'lines',
  'article',
  'system',
  'operator',
  'writes',
  'painfully',
  'witnessed',
  'azerbaijan',
  'would',
  'like',
  'see',
  'happen',
  'joke',
  'month',
  'fascist',
  'grandparents',
  'exterminated',
  'million',
  'muslim',
  'people',
  'nazi',
  'parents',
  'fully',
  'participated',
  'extermination',
  'european',
  'jewry',
  'wwii',
  'criminal',
  'cousins',
  'slaughtering',
  'muslim',
  'women',
  'children',
  'elderly',
  'people',
  'fascist',
  'soviet',
  'armenia',
  'karabag',
  'last',
  'four',
  'years',
  'entire',
  'population',
  'soviet',
  'armenia',
  'result',
  'genocide',
  'million',
  'muslim',
  'people',
  'armenians',
  'nearly',
  'one',
  'thousand',
  'years',
  'turkish',
  'kurdish',
  'people',
  'lived',
  'homeland',
  'last',
  'one',
  'hundred',
  'oppressive',
  'soviet',
  'armenian',
  'occupation',
  'persecutions',
  'culminated',
  'armenian',
  'government',
  'planned',
  'carried',
  'genocide',
  'muslim',
  'subjects',
  'million',
  'turks',
  'kurds',
  'murdered',
  'remainder',
  'driven',
  'homeland',
  'one',
  'thousand',
  'years',
  'turkish',
  'kurdish',
  'lands',
  'empty',
  'turks',
  'kurds',
  'survivors',
  'found',
  'safe',
  'heaven',
  'turkiye',
  'today',
  'soviet',
  'armenian',
  'government',
  'rejects',
  'right',
  'turks',
  'kurds',
  'return',
  'muslim',
  'lands',
  'occupied',
  'soviet',
  'armenia',
  'today',
  'soviet',
  'armenian',
  'government',
  'covers',
  'genocide',
  'perpetrated',
  'predecessors',
  'therefore',
  'accessory',
  'crime',
  'humanity',
  'soviet',
  'armenian',
  'government',
  'must',
  'pay',
  'crime',
  'genocide',
  'muslims',
  'admitting',
  'crime',
  'making',
  'reparations',
  'turks',
  'kurds',
  'turks',
  'kurds',
  'demand',
  'right',
  'return',
  'lands',
  'determine',
  'future',
  'nation',
  'homeland',
  'th',
  'anniversary',
  'come',
  'reiterate',
  'unity',
  'muslim',
  'people',
  'timelessness',
  'turkish',
  'kurdish',
  'demands',
  'desire',
  'pursue',
  'struggle',
  'restitution',
  'struggle',
  'unites',
  'turks',
  'kurds',
  'today',
  'appeal',
  'turkish',
  'kurdish',
  'people',
  'united',
  'states',
  'canada',
  'participate',
  'en',
  'masse',
  'commemorative',
  'events',
  'cultural',
  'political',
  'religious',
  'serdar',
  'argic',
  'closed',
  'roads',
  'mountain',
  'passes',
  'might',
  'serve',
  'ways',
  'escape',
  'turks',
  'proceeded',
  'work',
  'extermination',
  'ohanus',
  'appressian',
  'soviet',
  'armenia',
  'today',
  'longer',
  'exists',
  'single',
  'turkish',
  'soul',
  'sahak',
  'melkonian'],
 ['stefan',
  'reck',
  'adaptec',
  'acb',
  'distribution',
  'world',
  'organization',
  'reboxs',
  'host',
  'berlin',
  'germany',
  'lines',
  'newsreader',
  'nwreader',
  'version',
  'ted',
  'wright',
  'writes',
  'adaptec',
  'acb',
  'rev',
  'disk',
  'controller',
  'come',
  'hands',
  'documentation',
  'esdi',
  'controller',
  'mfm',
  'rll',
  'something',
  'else',
  'bios',
  'dated',
  'help',
  'think',
  'esdi',
  'controller',
  'need',
  'doco',
  'help',
  'stefan',
  'stefan',
  'reck',
  'inet',
  'berlin',
  'germany',
  'thats'],
 ['coulter',
  'shadow',
  'optical',
  'raytracing',
  'package',
  'reply',
  'organization',
  'serc',
  'daresbury',
  'laboratory',
  'uk',
  'lines',
  'nntp',
  'posting',
  'host',
  'dlsg',
  'dl',
  'ac',
  'uk',
  'hi',
  'everyone',
  'looking',
  'software',
  'called',
  'shadow',
  'far',
  'know',
  'simple',
  'raytracer',
  'used',
  'visualization',
  'synchrotron',
  'beam',
  'lines',
  'old',
  'version',
  'program',
  'unfortunately',
  'dont',
  'documentation',
  'anyone',
  'knows',
  'get',
  'docs',
  'maybe',
  'newer',
  'version',
  'program',
  'even',
  'another',
  'program',
  'sort',
  'thing',
  'would',
  'love',
  'hear',
  'ps',
  'think',
  'shadow',
  'written',
  'cerrina',
  'anyone',
  'ideas',
  'thanks',
  'gary',
  'serc',
  'daresbury',
  'lab'],
 ['clayton',
  'cramer',
  'evidence',
  'organization',
  'optilink',
  'corporation',
  'petaluma',
  'ca',
  'lines',
  'article',
  'hot',
  'young',
  'star',
  'writes',
  'bk',
  'tell',
  'whats',
  'immoral',
  'homosexuality',
  'cc',
  'promiscuity',
  'fetishism',
  'characterizes',
  'hmmm',
  'ive',
  'told',
  'ive',
  'monogamous',
  'almost',
  'years',
  'really',
  'dont',
  'get',
  'fetishes',
  'nearly',
  'homosexual',
  'dont',
  'believe',
  'youve',
  'changed',
  'story',
  'yet',
  'maintain',
  'homosexual',
  'activity',
  'still',
  'immoral',
  'care',
  'elaborate',
  'matter',
  'explain',
  'fetishes',
  'immoral',
  'hot',
  'young',
  'star',
  'astronomy',
  'dept',
  'boston',
  'university',
  'fact',
  'fetish',
  'important',
  'making',
  'love',
  'actually',
  'case',
  'sex',
  'clayton',
  'cramer',
  'uunet',
  'pyramid',
  'optilink',
  'cramer',
  'opinions',
  'mine',
  'relations',
  'people',
  'mutual',
  'consent'],
 ['guns',
  'backcountry',
  'thanks',
  'organization',
  'berkeley',
  'lines',
  'nntp',
  'posting',
  'host',
  'koala',
  'berkeley',
  'article',
  'guy',
  'trotter',
  'writes',
  'hi',
  'canada',
  'gun',
  'enters',
  'national',
  'park',
  'must',
  'sealed',
  'think',
  'small',
  'metal',
  'tag',
  'thats',
  'placed',
  'trigger',
  'net',
  'result',
  'gun',
  'protect',
  'bears',
  'psychos',
  'national',
  'parks',
  'instead',
  'one',
  'sensitive',
  'dangers',
  'annoyances',
  'hiking',
  'bear',
  'country',
  'take',
  'appropriate',
  'precautions',
  'think',
  'policy',
  'makes',
  'users',
  'national',
  'parks',
  'feel',
  'little',
  'closer',
  'nature',
  'part',
  'nature',
  'deal',
  'nature',
  'terms',
  'guy',
  'hello',
  'understand',
  'philosophy',
  'bears',
  'national',
  'treasure',
  'area',
  'sanctuary',
  'people',
  'enter',
  'risk',
  'better',
  'rare',
  'human',
  'killed',
  'bear',
  'bears',
  'provoked',
  'shot',
  'unbear',
  'savvy',
  'visitors',
  'bears',
  'arent',
  'population',
  'explosion',
  'humans',
  'better',
  'human',
  'killed',
  'endanger',
  'bears',
  'dont',
  'agree',
  'philosopy',
  'understand',
  'psychos',
  'bit',
  'different',
  'national',
  'treasure',
  'suppose',
  'decision',
  'made',
  'allow',
  'provision',
  'defense',
  'would',
  'also',
  'allow',
  'provision',
  'defense',
  'bears',
  'suppose',
  'decided',
  'better',
  'rare',
  'human',
  'killed',
  'psycho',
  'take',
  'chance',
  'threatening',
  'bears',
  'personally',
  'wouldnt',
  'go',
  'area',
  'would',
  'managed',
  'reduce',
  'safety',
  'come',
  'think',
  'guess',
  'live',
  'managed',
  'wilderness',
  'joan'],
 ['baldwin',
  'good',
  'neighbor',
  'political',
  'hypocrisy',
  'test',
  'organization',
  'toshiba',
  'america',
  'mri',
  'south',
  'san',
  'francisco',
  'ca',
  'lines',
  'article',
  'writes',
  'think',
  'bad',
  'good',
  'ol',
  'southwest',
  'missouri',
  'state',
  'parties',
  'running',
  'student',
  'body',
  'president',
  'theres',
  'token',
  'sorority',
  'fraternity',
  'faces',
  'theres',
  'president',
  'vice',
  'president',
  'norml',
  'campaigned',
  'handing',
  'condoms',
  'listing',
  'qualifications',
  'listen',
  'really',
  'well',
  'makes',
  'sick',
  'party',
  'established',
  'many',
  'things',
  'ruining',
  'country',
  'like',
  'think',
  'ill',
  'run',
  'next',
  'year',
  'well',
  'student',
  'body',
  'president',
  'cant',
  'exactly',
  'campaign',
  'stand',
  'hes',
  'tough',
  'crime',
  'job',
  'listen',
  'people',
  'want',
  'fund',
  'things',
  'make',
  'sense',
  'condoms',
  'marijuana',
  'arent',
  'exactly',
  'worst',
  'things',
  'available',
  'either'],
 ['dave',
  'edmondson',
  'happy',
  'easter',
  'organization',
  'computer',
  'science',
  'dept',
  'qmw',
  'university',
  'london',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'nick',
  'pettefar',
  'wrote',
  'kevinh',
  'tue',
  'apr',
  'gmt',
  'wibbled',
  'jonathan',
  'quist',
  'bemoaned',
  'yes',
  'minor',
  'blasphemy',
  'companies',
  'would',
  'likes',
  'jaguar',
  'sob',
  'lotus',
  'outright',
  'sacrilege',
  'rr',
  'non',
  'british',
  'ownership',
  'fundamental',
  'thing',
  'lotus',
  'looks',
  'set',
  'management',
  'buyout',
  'gm',
  'werent',
  'happy',
  'elan',
  'late',
  'pricey',
  'write',
  'elan',
  'development',
  'costs',
  'may',
  'able',
  'sell',
  'sensible',
  'price',
  'think',
  'legal',
  'clause',
  'rr',
  'name',
  'regardless',
  'owns',
  'must',
  'british',
  'company',
  'owner',
  'ba',
  'sell',
  'company',
  'name',
  'dont',
  'believe',
  'ba',
  'anything',
  'rr',
  'seperate',
  'company',
  'rr',
  'aero',
  'engine',
  'company',
  'vickers',
  'rolls',
  'royce',
  'cars',
  'yes',
  'kevin',
  'posts',
  'morgan',
  'sliding',
  'pillar',
  'front',
  'suspension',
  'ob',
  'bike',
  'long',
  'bleeding',
  'last',
  'pettefar',
  'bloke',
  'get',
  'mail',
  'address',
  'bung',
  'ogri',
  'list',
  'dave',
  'david',
  'edmondson',
  'queen',
  'mary',
  'westfield',
  'college',
  'dod',
  'guzzi',
  'le',
  'mans',
  'means',
  'end',
  'horse',
  'drawn',
  'zeppelin'],
 ['sharon',
  'paulson',
  'food',
  'related',
  'seizures',
  'organization',
  'nasa',
  'langley',
  'research',
  'center',
  'hampton',
  'va',
  'usa',
  'lines',
  'nntp',
  'posting',
  'host',
  'cmb',
  'larc',
  'nasa',
  'gov',
  'reply',
  'message',
  'fri',
  'apr',
  'gmt',
  'article',
  'michael',
  'covington',
  'writes',
  'newsgroups',
  'sci',
  'med',
  'path',
  'news',
  'larc',
  'nasa',
  'gov',
  'saimiri',
  'primate',
  'wisc',
  'sdd',
  'hp',
  'com',
  'elroy',
  'jpl',
  'nasa',
  'gov',
  'swrinde',
  'zaphod',
  'mps',
  'ohio',
  'state',
  'howland',
  'reston',
  'ans',
  'net',
  'europa',
  'eng',
  'gtefsd',
  'com',
  'emory',
  'athena',
  'aisun',
  'ai',
  'uga',
  'mcovingt',
  'michael',
  'covington',
  'sender',
  'nntp',
  'posting',
  'host',
  'aisun',
  'ai',
  'uga',
  'organization',
  'ai',
  'programs',
  'university',
  'georgia',
  'athens',
  'references',
  'date',
  'fri',
  'apr',
  'gmt',
  'lines',
  'article',
  'gordon',
  'banks',
  'writes',
  'article',
  'david',
  'ozonoff',
  'writes',
  'many',
  'cereals',
  'corn',
  'based',
  'post',
  'looked',
  'literature',
  'located',
  'two',
  'articles',
  'implicated',
  'corn',
  'contains',
  'tryptophan',
  'seizures',
  'idea',
  'corn',
  'diet',
  'might',
  'potentiate',
  'already',
  'existing',
  'latent',
  'seizure',
  'disorder',
  'cause',
  'check',
  'see',
  'two',
  'kellog',
  'cereals',
  'corn',
  'based',
  'id',
  'interested',
  'years',
  'ago',
  'intern',
  'obese',
  'young',
  'woman',
  'brought',
  'er',
  'comatose',
  'reported',
  'grand',
  'mal',
  'seizures',
  'attending',
  'corn',
  'festival',
  'pumped',
  'stomach',
  'obtained',
  'seemed',
  'like',
  'couple',
  'liters',
  'corn',
  'much',
  'intact',
  'kernals',
  'hours',
  'woke',
  'fine',
  'tempted',
  'sign',
  'acute',
  'corn',
  'intoxication',
  'gordon',
  'banks',
  'jxp',
  'skepticism',
  'chastity',
  'intellect',
  'contaminants',
  'corn',
  'aflatoxin',
  'michael',
  'covington',
  'associate',
  'research',
  'scientist',
  'artificial',
  'intelligence',
  'programs',
  'university',
  'georgia',
  'phone',
  'athens',
  'georgia',
  'amateur',
  'radio',
  'tmi',
  'aflatoxin',
  'sharon',
  'sharon',
  'paulson',
  'nasa',
  'langley',
  'research',
  'center',
  'bldg',
  'mailstop',
  'work',
  'hampton',
  'virginia',
  'home'],
 ['jonathan',
  'betts',
  'find',
  'cheap',
  'lcd',
  'displays',
  'organization',
  'netcom',
  'online',
  'communications',
  'services',
  'login',
  'guest',
  'lines',
  'sci',
  'netters',
  'setting',
  'build',
  'market',
  'small',
  'electronic',
  'device',
  'requires',
  'lcd',
  'display',
  'analog',
  'electronics',
  'working',
  'fine',
  'ordered',
  'pic',
  'ice',
  'vice',
  'versa',
  'since',
  'pics',
  'cheap',
  'low',
  'power',
  'devil',
  'time',
  'finding',
  'lcd',
  'displays',
  'digit',
  'range',
  'priced',
  'low',
  'need',
  'looking',
  'somthing',
  'range',
  'quantities',
  'mainstream',
  'distributors',
  'like',
  'almac',
  'cannot',
  'help',
  'without',
  'part',
  'number',
  'look',
  'around',
  'something',
  'line',
  'find',
  'digit',
  'lcd',
  'even',
  'digikeys',
  'cheapest',
  'offering',
  'quantity',
  'know',
  'lcd',
  'displays',
  'like',
  'must',
  'exist',
  'see',
  'whole',
  'calculators',
  'sale',
  'meaning',
  'retailer',
  'probably',
  'buys',
  'wholesaler',
  'probably',
  'gets',
  'includes',
  'assembly',
  'labor',
  'packaging',
  'sales',
  'transportation',
  'import',
  'duties',
  'case',
  'keyboard',
  'pc',
  'board',
  'processor',
  'chip',
  'solar',
  'cell',
  'lcd',
  'lcd',
  'cant',
  'cost',
  'much',
  'anyone',
  'could',
  'put',
  'touch',
  'manufacturers',
  'distributors',
  'handle',
  'things',
  'would',
  'much',
  'obliged',
  'joe',
  'betts',
  'tried',
  'tearing',
  'apart',
  'several',
  'cheap',
  'consumer',
  'devices',
  'lcds',
  'find',
  'lcds',
  'unlabelled',
  'anyone',
  'else',
  'better',
  'luck',
  'strategy'],
 ['dan',
  'johnson',
  'atheists',
  'hell',
  'reply',
  'organization',
  'sun',
  'microsystems',
  'lines',
  'article',
  'cardinal',
  'ximenez',
  'writes',
  'seen',
  'two',
  'common',
  'threads',
  'running',
  'postings',
  'atheists',
  'newsgroup',
  'think',
  'used',
  'explain',
  'unfortunately',
  'dont',
  'direct',
  'quotes',
  'handy',
  'atheists',
  'believe',
  'die',
  'die',
  'forever',
  'god',
  'would',
  'condemn',
  'fail',
  'believe',
  'eternal',
  'death',
  'unfair',
  'dont',
  'see',
  'problem',
  'christians',
  'hell',
  'definition',
  'eternal',
  'death',
  'exactly',
  'atheists',
  'expecting',
  'die',
  'problem',
  'hell',
  'permanent',
  'death',
  'indeed',
  'atheists',
  'generally',
  'expect',
  'neither',
  'fair',
  'unfair',
  'might',
  'well',
  'argue',
  'whether',
  'made',
  'mostly',
  'carbon',
  'water',
  'fair',
  'however',
  'atheists',
  'claim',
  'hell',
  'unfair',
  'talking',
  'fire',
  'brimstone',
  'place',
  'endless',
  'suffering',
  'necessarily',
  'includes',
  'eternal',
  'existance',
  'life',
  'dunno',
  'sort',
  'continuation',
  'thing',
  'granted',
  'clearly',
  'feel',
  'hell',
  'death',
  'univeral',
  'sentiment',
  'near',
  'tell',
  'idea',
  'god',
  'condemns',
  'heathens',
  'ordinary',
  'death',
  'problem',
  'problem',
  'gods',
  'hide',
  'humans',
  'torture',
  'unbelievers',
  'eternally',
  'guessing',
  'right',
  'deletia',
  'hell',
  'literalness',
  'dan',
  'johnson',
  'god',
  'said',
  'jeeze',
  'dull',
  'dull',
  'genesis',
  'opinions',
  'probably',
  'show',
  'know'],
 ['erik',
  'asphaug',
  'sale',
  'zephyr',
  'summary',
  'tucson',
  'area',
  'moving',
  'bay',
  'area',
  'organization',
  'lunar',
  'planetary',
  'laboratory',
  'tucson',
  'az',
  'lines',
  'hi',
  'boys',
  'girls',
  'bought',
  'beemer',
  'gs',
  'realized',
  'abruptly',
  'grad',
  'student',
  'first',
  'sold',
  'truck',
  'yesterday',
  'need',
  'sell',
  'zephyr',
  'sell',
  'month',
  'great',
  'insurance',
  'tags',
  'run',
  'couple',
  'weeks',
  'otherwise',
  'ill',
  'tag',
  'insure',
  'see',
  'happens',
  'sweet',
  'bike',
  'miles',
  'almost',
  'highway',
  'az',
  'wy',
  'co',
  'last',
  'summer',
  'plus',
  'great',
  'rides',
  'border',
  'purchased',
  'new',
  'exactly',
  'one',
  'year',
  'ago',
  'apr',
  'model',
  'good',
  'fairing',
  'luggage',
  'rack',
  'red',
  'clean',
  'perfect',
  'maintenance',
  'bullshit',
  'ill',
  'spare',
  'details',
  'say',
  'want',
  'keep',
  'somebody',
  'fit',
  'like',
  'charm',
  'bike',
  'big',
  'people',
  'small',
  'bike',
  'standard',
  'upright',
  'positioning',
  'good',
  'looking',
  'smooth',
  'power',
  'great',
  'brakes',
  'good',
  'karma',
  'erik',
  'dod',
  'kawi',
  'zephyr',
  'erik',
  'asphaug',
  'bmw',
  'gs'],
 ['mark',
  'wilson',
  'wanted',
  'nine',
  'mile',
  'walk',
  'organization',
  'online',
  'computer',
  'systems',
  'inc',
  'newsreader',
  'tin',
  'pl',
  'distribution',
  'misc',
  'forsale',
  'lines',
  'article',
  'crossposted',
  'rec',
  'arts',
  'books',
  'author',
  'mark',
  'wilson',
  'posted',
  'wed',
  'apr',
  'gmt',
  'looking',
  'following',
  'book',
  'seen',
  'paperback',
  'lent',
  'copy',
  'someone',
  'forgetfulness',
  'made',
  'pronoun',
  'permanently',
  'indeterminate',
  'looking',
  'one',
  'two',
  'copies',
  'title',
  'nine',
  'mile',
  'walk',
  'stories',
  'unsure',
  'hyphen',
  'exact',
  'subtitle',
  'author',
  'harry',
  'kemelman',
  'author',
  'rabbi',
  'mysteries',
  'collection',
  'short',
  'mystery',
  'stories',
  'please',
  'email',
  'call',
  'number',
  'given',
  'thanks',
  'mark',
  'mark',
  'wilson',
  'online',
  'computer',
  'systems',
  'try',
  'email',
  'address',
  'file',
  'disclaims',
  'everything',
  'signed',
  'signature',
  'mean',
  'mark',
  'wilson',
  'online',
  'computer',
  'systems',
  'try',
  'email',
  'address',
  'file',
  'disclaims',
  'everything',
  'signed',
  'signature',
  'mean'],
 ['mathew',
  'years',
  'say',
  'christian',
  'morality',
  'organization',
  'mantis',
  'consultants',
  'cambridge',
  'uk',
  'lines',
  'newsreader',
  'rusnews',
  'frank',
  'odwyer',
  'writes',
  'christian',
  'however',
  'suspect',
  'flavours',
  'christianity',
  'hold',
  'objective',
  'morality',
  'exists',
  'particular',
  'interpretation',
  'scripture',
  'revelation',
  'tv',
  'goodly',
  'glimpse',
  'may',
  'disagree',
  'says',
  'nothing',
  'truth',
  'falsehood',
  'actually',
  'generally',
  'claim',
  'particular',
  'interpretation',
  'scripture',
  'revelation',
  'objective',
  'morality',
  'two',
  'conflicting',
  'versions',
  'objective',
  'morality',
  'tell',
  'us',
  'something',
  'tells',
  'us',
  'least',
  'one',
  'fake',
  'objective',
  'morality',
  'exists',
  'next',
  'logical',
  'step',
  'deduce',
  'given',
  'religions',
  'objective',
  'morality',
  'could',
  'fake',
  'one',
  'caveat',
  'emptor',
  'mathew',
  'atheism',
  'anti',
  'virus',
  'software',
  'mind'],
 ['james',
  'davis',
  'nicoll',
  'new',
  'planet',
  'kuiper',
  'object',
  'found',
  'organization',
  'university',
  'western',
  'ontario',
  'london',
  'distribution',
  'sci',
  'nntp',
  'posting',
  'host',
  'prism',
  'engrg',
  'uwo',
  'ca',
  'lines',
  'article',
  'steinn',
  'sigurdsson',
  'writes',
  'article',
  'jeff',
  'foust',
  'writes',
  'recent',
  'article',
  'james',
  'davis',
  'nicoll',
  'writes',
  'new',
  'kuiper',
  'belt',
  'object',
  'called',
  'karla',
  'next',
  'one',
  'called',
  'smiley',
  'unless',
  'im',
  'imaging',
  'things',
  'always',
  'possibility',
  'qb',
  'kuiper',
  'belt',
  'object',
  'discovered',
  'last',
  'year',
  'known',
  'smiley',
  'happens',
  'one',
  'karla',
  'first',
  'one',
  'smiley',
  'vagaries',
  'iau',
  'course',
  'think',
  'might',
  'let',
  'one',
  'slide',
  'gee',
  'feel',
  'ignorant',
  'research',
  'post',
  'james',
  'nicoll'],
 ['doug',
  'book',
  'stereo',
  'sound',
  'problem',
  'mac',
  'games',
  'organization',
  'uc',
  'san',
  'diego',
  'chemistry',
  'lines',
  'nntp',
  'posting',
  'host',
  'sdchemw',
  'ucsd',
  'thanks',
  'steve',
  'helpful',
  'informative',
  'comments',
  'mac',
  'stereo',
  'sound',
  'bad',
  'developers',
  'arent',
  'addressing',
  'problem',
  'make',
  'trusty',
  'old',
  'mac',
  'ii',
  'superior',
  'quadra',
  'replaced',
  'one',
  'way',
  'though',
  'thanks',
  'doug'],
 ['christopher',
  'dingman',
  'buying',
  'high',
  'speed',
  'everything',
  'modem',
  'nntp',
  'posting',
  'host',
  'pie',
  'mach',
  'cs',
  'cmu',
  'organization',
  'school',
  'computer',
  'science',
  'carnegie',
  'mellon',
  'lines',
  'article',
  'eric',
  'behr',
  'writes',
  'dataport',
  'earns',
  'nearly',
  'unanimous',
  'praises',
  'reliability',
  'backordered',
  'moment',
  'probably',
  'special',
  'price',
  'effect',
  'may',
  'fax',
  'capabilities',
  'worse',
  'two',
  'modems',
  'warning',
  'ads',
  'say',
  'modem',
  'comes',
  'mac',
  'kit',
  'cables',
  'lifetime',
  'warranty',
  'applies',
  'order',
  'directly',
  'paradyne',
  'called',
  'elektek',
  'one',
  'distributors',
  'wanted',
  'charge',
  'cable',
  'gave',
  'year',
  'warranty',
  'hmm',
  'dont',
  'know',
  'information',
  'concerning',
  'cable',
  'warranty',
  'came',
  'ordered',
  'mine',
  'logos',
  'communications',
  'near',
  'cleveland',
  'inside',
  'mac',
  'cable',
  'correct',
  'pin',
  'connections',
  'lifetime',
  'warranty',
  'whole',
  'package',
  'assembled',
  'paradyne',
  'every',
  'piece',
  'serial',
  'cable',
  'telephone',
  'cable',
  'etc',
  'part',
  'numbers',
  'except',
  'quicklink',
  'software',
  'package',
  'compuserve',
  'intro',
  'kit',
  'eric',
  'behr',
  'illinois',
  'state',
  'university',
  'mathematics',
  'department',
  'please',
  'avoid',
  'anyones',
  'interested',
  'logos',
  'number',
  'ordered',
  'mine',
  'last',
  'wednesday',
  'got',
  'modem',
  'friday',
  'though',
  'far',
  'cleveland',
  'pittsburgh',
  'side',
  'ship',
  'ups',
  'cod',
  'chris',
  'christopher',
  'dingman',
  'electrical',
  'computer',
  'eng',
  'dept',
  'carnegie',
  'mellon',
  'university',
  'forbes',
  'ave',
  'pittsburgh',
  'pa'],
 ['peter',
  'garfiel',
  'freeman',
  'enough',
  'freeman',
  'bashing',
  'free',
  'man',
  'propaganda',
  'machine',
  'freemanwith',
  'blood',
  'greetings',
  'israel',
  'nntp',
  'posting',
  'host',
  'cunixb',
  'cc',
  'columbia',
  'reply',
  'peter',
  'garfiel',
  'freeman',
  'organization',
  'columbia',
  'university',
  'lines',
  'article',
  'marc',
  'afifi',
  'writes',
  'peter',
  'garfiel',
  'freeman',
  'writes',
  'peter',
  'believe',
  'succinct',
  'post',
  'date',
  'since',
  'nothing',
  'say',
  'say',
  'nothing',
  'brilliant',
  'think',
  'marc',
  'hey',
  'tough',
  'guy',
  'read',
  'topic',
  'thats',
  'message',
  'get',
  'brain',
  'go',
  'real',
  'school'],
 ['carl',
  'johnson',
  'xterm',
  'default',
  'text',
  'cursor',
  'color',
  'reply',
  'organization',
  'british',
  'telecom',
  'research',
  'labs',
  'lines',
  'nntp',
  'posting',
  'host',
  'mugwump',
  'muppet',
  'bt',
  'co',
  'uk',
  'want',
  'able',
  'set',
  'cursor',
  'color',
  'forground',
  'color',
  'set',
  'xterm',
  'man',
  'page',
  'cr',
  'color',
  'option',
  'specifies',
  'color',
  'text',
  'cur',
  'sor',
  'default',
  'foreground',
  'color',
  'used',
  'text',
  'however',
  'doesnt',
  'seem',
  'case',
  'appears',
  'default',
  'black',
  'whatever',
  'xterm',
  'cursorcolor',
  'set',
  'feel',
  'free',
  'point',
  'relevant',
  'fm',
  'whatever',
  'cheers'],
 ['alder',
  'bware',
  'jayhayes',
  'deleware',
  'organization',
  'mind',
  'link',
  'british',
  'columbia',
  'canada',
  'lines',
  'deal',
  'jay',
  'hayes',
  'deleware',
  'ripped',
  'deal',
  'guy',
  'know',
  'go',
  'door',
  'bat',
  'lives',
  'deleware',
  'post',
  'full',
  'address',
  'later',
  'well',
  'phone',
  'number',
  'case',
  'else',
  'wants',
  'call',
  'leave',
  'nasty',
  'messages',
  'return',
  'email',
  'return',
  'phone',
  'calls',
  'left',
  'message',
  'iwth',
  'hgis',
  'roomate',
  'call',
  'collect',
  'hes',
  'man',
  'enough',
  'still',
  'maintains',
  'net',
  'privilages',
  'somehow',
  'get',
  'turkey',
  'net',
  'da'],
 ['mike',
  'grapevine',
  'subscribe',
  'organization',
  'internet',
  'lines',
  'subscribe'],
 ['ken',
  'mitchum',
  'immotile',
  'cilia',
  'syndrome',
  'article',
  'pitt',
  'reply',
  'ken',
  'mitchum',
  'organization',
  'univ',
  'pittsburgh',
  'computer',
  'science',
  'lines',
  'article',
  'andrea',
  'free',
  'kwiatkowski',
  'writes',
  'would',
  'like',
  'know',
  'new',
  'information',
  'new',
  'studies',
  'conducted',
  'confident',
  'pediatrician',
  'communication',
  'people',
  'chapel',
  'hill',
  'since',
  'life',
  'long',
  'disorder',
  'genetically',
  'transferred',
  'would',
  'like',
  'keep',
  'current',
  'realize',
  'since',
  'relatively',
  'new',
  'disorder',
  'first',
  'documented',
  'fertility',
  'clinic',
  'scandanavia',
  'therefore',
  'controversial',
  'know',
  'lot',
  'except',
  'seeing',
  'one',
  'patient',
  'kartageners',
  'syndrome',
  'form',
  'immotile',
  'cilia',
  'syndrome',
  'situs',
  'inversus',
  'bronchiectasis',
  'chronic',
  'infections',
  'situs',
  'inversus',
  'means',
  'organs',
  'wrong',
  'side',
  'body',
  'complete',
  'partial',
  'interesting',
  'medically',
  'normal',
  'location',
  'organs',
  'caused',
  'part',
  'normal',
  'rotation',
  'associated',
  'ciliary',
  'motion',
  'absence',
  'laterality',
  'random',
  'people',
  'situs',
  'inversus',
  'quite',
  'popular',
  'medical',
  'schools',
  'rarity',
  'fact',
  'doctors',
  'get',
  'bit',
  'upset',
  'cant',
  'find',
  'patients',
  'heart',
  'sounds',
  'theyre',
  'wrong',
  'side',
  'according',
  'harrisons',
  'immotile',
  'cilia',
  'syndrom',
  'autosomal',
  'recessive',
  'imply',
  'average',
  'one',
  'child',
  'four',
  'family',
  'would',
  'affected',
  'may',
  'much',
  'current',
  'information',
  'usual',
  'medicine',
  'may',
  'talking',
  'one',
  'conditiion',
  'would',
  'suggest',
  'ask',
  'pediatrician',
  'contacting',
  'medical',
  'geneticics',
  'specialist',
  'probably',
  'one',
  'ncsu',
  'km'],
 ['julia',
  'hsieh',
  'reach',
  'micron',
  'distribution',
  'na',
  'lines',
  'anyone',
  'know',
  'reach',
  'micron',
  'interested',
  'getting',
  'specifics',
  'types',
  'monitors',
  'work',
  'micron',
  'xceed',
  'card',
  'se',
  'either',
  'mail',
  'phone',
  'number',
  'would',
  'prefered',
  'answers',
  'questions',
  'id',
  'appreciate',
  'reply',
  'thanks',
  'julia',
  'hsieh',
  'opinions',
  'intended',
  'reflect',
  'hughes',
  'aircraft',
  'company'],
 ['andy',
  'hooper',
  'text',
  'white',
  'house',
  'announcement',
  'clipper',
  'chip',
  'encryption',
  'organization',
  'queens',
  'university',
  'kingston',
  'distribution',
  'na',
  'lines',
  'isnt',
  'clipper',
  'trademark',
  'fairchild',
  'semiconductor',
  'andy',
  'hooper'],
 ['george',
  'ferguson',
  'abc',
  'coverage',
  'reply',
  'george',
  'ferguson',
  'organization',
  'university',
  'rochester',
  'hockey',
  'science',
  'dept',
  'distribution',
  'usa',
  'article',
  'caleb',
  'cohen',
  'writes',
  'boy',
  'everyone',
  'ripping',
  'espns',
  'hockey',
  'coverage',
  'pittsburghers',
  'thrilled',
  'lange',
  'steigy',
  'unaware',
  'espn',
  'bought',
  'air',
  'time',
  'abc',
  'production',
  'advertising',
  'sales',
  'commentating',
  'etc',
  'even',
  'reaped',
  'made',
  'interests',
  'saving',
  'badnwidth',
  'heated',
  'time',
  'year',
  'viz',
  'early',
  'flurry',
  'retard',
  'comments',
  'coming',
  'certain',
  'state',
  'whose',
  'name',
  'starts',
  'ends',
  'dont',
  'tell',
  'us',
  'something',
  'dont',
  'already',
  'know',
  'george',
  'george',
  'ferguson',
  'arpa',
  'dept',
  'computer',
  'science',
  'uucp',
  'rutgers',
  'rochester',
  'ferguson',
  'university',
  'rochester',
  'vox',
  'rochester',
  'ny',
  'fax'],
 ['david',
  'josephson',
  'microphone',
  'pre',
  'amp',
  'low',
  'noise',
  'phantom',
  'powered',
  'nntp',
  'posting',
  'host',
  'bolero',
  'organization',
  'network',
  'lines',
  'alan',
  'macaluso',
  'writes',
  'im',
  'looking',
  'build',
  'microphone',
  'preamp',
  'good',
  'low',
  'noise',
  'characteristics',
  'large',
  'clean',
  'gain',
  'incorportates',
  'phantom',
  'power',
  'volts',
  'dc',
  'pzm',
  'microphone',
  'im',
  'leaning',
  'towards',
  'good',
  'low',
  'cost',
  'instrumentation',
  'amplifier',
  'maintain',
  'balanced',
  'input',
  'microphone',
  'good',
  'cmrr',
  'internal',
  'compensation',
  'minimal',
  'parts',
  'anyone',
  'experience',
  'suggestions',
  'advice',
  'etc',
  'theyd',
  'like',
  'pass',
  'id',
  'greatly',
  'appreciate',
  'purple',
  'moon',
  'giants',
  'th',
  'st',
  'nyc',
  'without',
  'anything',
  'really',
  'tricky',
  'best',
  'ive',
  'seen',
  'burr',
  'brown',
  'ina',
  'databook',
  'shows',
  'good',
  'application',
  'chip',
  'phantom',
  'power',
  'mic',
  'pre',
  'josephson',
  'engineering',
  'san',
  'jose',
  'california',
  'microphones',
  'tel',
  'fax',
  'instrumentation',
  'ftp',
  'info',
  'rahul',
  'net',
  'pub',
  'davidj'],
 ['allen',
  'mulvey',
  'suny',
  'oswego',
  'ny',
  'memory',
  'slot',
  'problem',
  'organization',
  'suny',
  'college',
  'oswego',
  'oswego',
  'ny',
  'lines',
  'article',
  'ralph',
  'valentino',
  'writes',
  'finally',
  'decided',
  'upgrade',
  'eisas',
  'memory',
  'meg',
  'meg',
  'two',
  'months',
  'parts',
  'warranty',
  'ran',
  'anigma',
  'motherboard',
  'two',
  'months',
  'late',
  'seems',
  'theres',
  'problem',
  'one',
  'two',
  'mx',
  'bit',
  'sim',
  'slots',
  'bank',
  'boot',
  'get',
  'pattern',
  'test',
  'failure',
  'address',
  'xa',
  'system',
  'deconfigures',
  'top',
  'meg',
  'sims',
  'good',
  'tried',
  'rotating',
  'bank',
  'one',
  'configurations',
  'however',
  'pattern',
  'test',
  'deletions',
  'failed',
  'tests',
  'pattern',
  'appeared',
  'pattern',
  'sim',
  'place',
  'leads',
  'believe',
  'one',
  'two',
  'connector',
  'address',
  'pins',
  'fault',
  'lot',
  'luck',
  'might',
  'patchable',
  'ralph',
  'ralph',
  'valentino',
  'hardware',
  'engineer',
  'worcester',
  'polytechnic',
  'institute',
  'center',
  'high',
  'performance',
  'computing',
  'marlborough',
  'many',
  'motherboards',
  'jumpers',
  'enable',
  'disable',
  'memory',
  'banks',
  'check',
  'allen',
  'mulvey'],
 ['steve',
  'mckinty',
  'sunconnect',
  'icnc',
  'nuclear',
  'sites',
  'cooling',
  'towers',
  'organization',
  'sunconnect',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'hardy',
  'france',
  'sun',
  'com',
  'keywords',
  'nuclear',
  'article',
  'walker',
  'man',
  'writes',
  'really',
  'dont',
  'know',
  'post',
  'question',
  'figured',
  'board',
  'would',
  'appropriate',
  'wondering',
  'massive',
  'concrete',
  'cylinders',
  'ever',
  'present',
  'nuclear',
  'poer',
  'sites',
  'look',
  'like',
  'cylinders',
  'pinched',
  'middle',
  'anybody',
  'know',
  'actual',
  'purpose',
  'things',
  'hear',
  'theyre',
  'called',
  'cooling',
  'towers',
  'heck',
  'cool',
  'water',
  'nuclear',
  'stations',
  'dont',
  'generate',
  'electricity',
  'directly',
  'reactor',
  'reactor',
  'generate',
  'heat',
  'heat',
  'used',
  'heat',
  'water',
  'conventional',
  'oil',
  'coal',
  'station',
  'resultant',
  'steam',
  'drives',
  'turbines',
  'cooling',
  'towers',
  'used',
  'cool',
  'steam',
  'recondense',
  'water',
  'continue',
  'cycle',
  'steve',
  'steve',
  'mckinty',
  'sun',
  'microsystems',
  'icnc',
  'meylan',
  'france',
  'email',
  'bix',
  'smckinty'],
 ['antonio',
  'balsamo',
  'save',
  'wails',
  'advise',
  'needed',
  'buying',
  'automobile',
  'reply',
  'antonio',
  'balsamo',
  'save',
  'wails',
  'organization',
  'digital',
  'equipment',
  'corporation',
  'lines',
  'tommy',
  'hwang',
  'advise',
  'needed',
  'buying',
  'automobile',
  'search',
  'dependable',
  'automobile',
  'purchase',
  'requirements',
  'cars',
  'mentioned',
  'smaller',
  'engine',
  'tony',
  'name',
  'antonio',
  'balsamo',
  'company',
  'digital',
  'equipment',
  'corp',
  'shrewsbury',
  'mass',
  'work',
  'mail'],
 ['william',
  'riel',
  'travesty',
  'joe',
  'louis',
  'organization',
  'university',
  'british',
  'columbia',
  'vancouver',
  'canada',
  'lines',
  'nntp',
  'posting',
  'host',
  'unixg',
  'ubc',
  'ca',
  'article',
  'writes',
  'detroit',
  'april',
  'development',
  'shocked',
  'knowledgable',
  'observers',
  'detroit',
  'redwings',
  'scored',
  'less',
  'six',
  'goals',
  'best',
  'goaltender',
  'world',
  'en',
  'route',
  'win',
  'best',
  'team',
  'nhl',
  'toronto',
  'maple',
  'leafs',
  'im',
  'mistaken',
  'detroit',
  'scored',
  'goals',
  'first',
  'five',
  'shots',
  'net',
  'looks',
  'like',
  'torontos',
  'cream',
  'cheese',
  'run',
  'continues',
  'swiss',
  'cheese',
  'watching',
  'potvin',
  'im',
  'leaning',
  'towards',
  'latter',
  'bill'],
 ['nigel',
  'ellis',
  'keyboard',
  'map',
  'uk',
  'type',
  'keyboard',
  'nntp',
  'posting',
  'host',
  'ws',
  'ai',
  'dur',
  'ac',
  'uk',
  'newsreader',
  'tin',
  'version',
  'pl',
  'reply',
  'organization',
  'computer',
  'science',
  'university',
  'durham',
  'durham',
  'uk',
  'dh',
  'le',
  'lines',
  'hi',
  'anyone',
  'keyboard',
  'map',
  'sun',
  'uk',
  'type',
  'keyboard',
  'thanks',
  'nigel',
  'nigel',
  'ellis',
  'artificial',
  'intelligence',
  'group',
  'computer',
  'science',
  'university',
  'durham',
  'phne',
  'durham',
  'england',
  'dh',
  'le',
  'fax'],
 ['kevin',
  'darcy',
  'years',
  'say',
  'christian',
  'morality',
  'organization',
  'lines',
  'article',
  'keith',
  'justified',
  'ancient',
  'cochran',
  'writes',
  'followups',
  'set',
  'talk',
  'abortion',
  'article',
  'mike',
  'cobb',
  'writes',
  'reading',
  'thread',
  'wrong',
  'another',
  'bemoaning',
  'fact',
  'christianity',
  'code',
  'objective',
  'morality',
  'please',
  'define',
  'objective',
  'morality',
  'youre',
  'please',
  'state',
  'theory',
  'creationism',
  'still',
  'searching',
  'irrelevant',
  'issue',
  'mire',
  'pro',
  'lifer',
  'see',
  'slimy',
  'tactic',
  'kevin'],
 ['pov',
  'problems',
  'tga',
  'outputs',
  'organization',
  'texas',
  'university',
  'college',
  'station',
  'tx',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'tamsun',
  'tamu',
  'cant',
  'fiqure',
  'properly',
  'compiled',
  'pov',
  'unix',
  'machine',
  'running',
  'sunos',
  'problem',
  'run',
  'sample',
  'pov',
  'files',
  'exact',
  'parameters',
  'compiling',
  'different',
  'tga',
  'outputs',
  'tgas',
  'okay',
  'others',
  'unrecognizable',
  'software',
  'help',
  'ed'],
 ['michael',
  'phelps',
  'non',
  'lethal',
  'alternatives',
  'handguns',
  'originator',
  'reply',
  'michael',
  'phelps',
  'organization',
  'ibm',
  'kingston',
  'ny',
  'keywords',
  'handgun',
  'mace',
  'pepper',
  'spray',
  'taser',
  'tasp',
  'phaser',
  'lines',
  'douglas',
  'craig',
  'holland',
  'writes',
  'guns',
  'non',
  'lethal',
  'bullets',
  'like',
  'rubber',
  'plastic',
  'bullets',
  'would',
  'work',
  'well',
  'stopping',
  'attack',
  'doug',
  'holland',
  'projectile',
  'traveling',
  'near',
  'typical',
  'bullet',
  'speeds',
  'potentially',
  'lethal',
  'even',
  'blanks',
  'projectile',
  'cause',
  'death',
  'muzzle',
  'close',
  'proximity',
  'victim',
  'heard',
  'rubber',
  'plastic',
  'bullets',
  'used',
  'effectively',
  'riot',
  'situations',
  'intent',
  'crowd',
  'control',
  'rather',
  'close',
  'range',
  'self',
  'defense',
  'ive',
  'also',
  'seen',
  'reports',
  'deaths',
  'caused',
  'british',
  'northern',
  'ireland',
  'firearm',
  'self',
  'defense',
  'appropriate',
  'lawful',
  'gravest',
  'situations',
  'point',
  'consider',
  'deadly',
  'lethal',
  'force',
  'proper',
  'reaction',
  'law',
  'furthermore',
  'less',
  'effective',
  'still',
  'potentially',
  'lethal',
  'force',
  'set',
  'problems',
  'may',
  'well',
  'take',
  'applications',
  'less',
  'effective',
  'force',
  'stop',
  'incident',
  'places',
  'parties',
  'risk',
  'victim',
  'attack',
  'stopped',
  'assailent',
  'since',
  'aggregate',
  'damage',
  'done',
  'multiple',
  'applications',
  'may',
  'well',
  'deadly',
  'michael',
  'phelps',
  'external',
  'internal',
  'mjp',
  'kgnvmy',
  'last',
  'least',
  'disclaimer',
  'opinions',
  'mine'],
 ['tony',
  'debari',
  'filemanager',
  'strange',
  'sizes',
  'summary',
  'line',
  'organization',
  'lost',
  'space',
  'lines',
  'nicholas',
  'masika',
  'writes',
  'noticed',
  'filemanager',
  'something',
  'strange',
  'recently',
  'usually',
  'line',
  'bottom',
  'filemanager',
  'status',
  'bar',
  'guess',
  'displays',
  'total',
  'disk',
  'space',
  'total',
  'number',
  'bytes',
  'current',
  'selection',
  'select',
  'whole',
  'bunch',
  'files',
  'get',
  'exact',
  'byte',
  'count',
  'recently',
  'notice',
  'incorrectly',
  'displays',
  'count',
  'truncating',
  'select',
  'file',
  'say',
  'bytes',
  'correctly',
  'displays',
  'bytes',
  'select',
  'select',
  'file',
  'bytes',
  'displays',
  'bytes',
  'kbytes',
  'bytes',
  'select',
  'report',
  'bytes',
  'selection',
  'select',
  'meg',
  'worth',
  'files',
  'say',
  'reports',
  'bytes',
  'got',
  'problem',
  'displaying',
  'characters',
  'system',
  'dx',
  'memory',
  'stacker',
  'dos',
  'win',
  'ive',
  'run',
  'latest',
  'virus',
  'scanners',
  'scan',
  'prot',
  'didnt',
  'report',
  'anything',
  'could',
  'unknowingly',
  'altered',
  'something',
  'controls',
  'formatting',
  'status',
  'bar',
  'filemanger',
  'sounds',
  'like',
  'something',
  'one',
  'may',
  'set',
  'separator',
  'contol',
  'panel',
  'international',
  'makes',
  'look',
  'like',
  'file',
  'manager',
  'chopping',
  'thinks',
  'decimal',
  'part',
  'file',
  'size',
  'becomes',
  'file',
  'manager',
  'confused',
  'decimal',
  'points',
  'commas',
  'chopping',
  'everything',
  'right',
  'first',
  'period',
  'tony',
  'debari',
  'fqdn',
  'ci',
  'uucp',
  'uunet',
  'ssc',
  'tonyd',
  'ghrw',
  'skip',
  'bowler',
  'captain',
  'usenet',
  'fantasy',
  'bowling',
  'league',
  'team'],
 ['geoffrey',
  'kuenning',
  'tapped',
  'code',
  'good',
  'nntp',
  'posting',
  'host',
  'ogmore',
  'cs',
  'ucla',
  'organization',
  'ucla',
  'computer',
  'science',
  'department',
  'distribution',
  'na',
  'lines',
  'article',
  'pat',
  'myrto',
  'writes',
  'fishing',
  'expeditions',
  'without',
  'targets',
  'knowlege',
  'dont',
  'give',
  'right',
  'safe',
  'non',
  'negotiable',
  'clinton',
  'co',
  'know',
  'probably',
  'quietly',
  'developed',
  'thing',
  'figuring',
  'get',
  'far',
  'ram',
  'always',
  'amazes',
  'quick',
  'people',
  'blame',
  'whatever',
  'administration',
  'current',
  'things',
  'couldnt',
  'possibly',
  'initiated',
  'chip',
  'take',
  'years',
  'develop',
  'yet',
  'already',
  'claiming',
  'clinton',
  'administration',
  'sneaked',
  'us',
  'bullshit',
  'bush',
  'administration',
  'career',
  'gestapo',
  'responsible',
  'horror',
  'careerists',
  'presented',
  'new',
  'presidency',
  'fait',
  'accompli',
  'doesnt',
  'excuse',
  'clinton',
  'gore',
  'criticism',
  'stupid',
  'go',
  'lets',
  'lay',
  'body',
  'proper',
  'door',
  'start',
  'geoff',
  'kuenning'],
 ['mark',
  'zenier',
  'mc',
  'sbi',
  'mixer',
  'article',
  'ssc',
  'apr',
  'organization',
  'ssc',
  'inc',
  'seattle',
  'wa',
  'lines',
  'newsreader',
  'tin',
  'version',
  'pl',
  'mark',
  'musone',
  'wrote',
  'hi',
  'wondering',
  'anyone',
  'would',
  'able',
  'help',
  'twwo',
  'related',
  'subjects',
  'currently',
  'learning',
  'fm',
  'receivers',
  'recieving',
  'circuits',
  'really',
  'good',
  'books',
  'fm',
  'theory',
  'along',
  'detailed',
  'electrical',
  'diagrams',
  'would',
  'help',
  'lot',
  'seen',
  'lot',
  'theory',
  'books',
  'circuits',
  'lot',
  'circuit',
  'books',
  'theory',
  'one',
  'without',
  'help',
  'pretty',
  'serious',
  'book',
  'still',
  'seems',
  'readable',
  'communication',
  'receivers',
  'principes',
  'design',
  'rohde',
  'bucher',
  'mark',
  'zenier'],
 ['manu',
  'das',
  'wanted',
  'sample',
  'source',
  'editing',
  'controls',
  'organization',
  'olivetti',
  'atc',
  'cupertino',
  'ca',
  'usa',
  'lines',
  'distribution',
  'usa',
  'nntp',
  'posting',
  'host',
  'todi',
  'oas',
  'olivetti',
  'com',
  'hi',
  'everyone',
  'would',
  'like',
  'get',
  'example',
  'program',
  'source',
  'code',
  'get',
  'started',
  'simple',
  'editor',
  'similar',
  'windows',
  'dialog',
  'editor',
  'lot',
  'simplified',
  'someone',
  'point',
  'source',
  'programming',
  'windows',
  'book',
  'example',
  'program',
  'comes',
  'windows',
  'sdk',
  'microsoft',
  'borland',
  'would',
  'greatly',
  'appreciate',
  'want',
  'able',
  'place',
  'edit',
  'control',
  'combobox',
  'listbox',
  'window',
  'able',
  'drag',
  'resize',
  'anyone',
  'written',
  'similar',
  'program',
  'dont',
  'mind',
  'sharing',
  'code',
  'ideas',
  'would',
  'appreciate',
  'much',
  'thnx',
  'advance',
  'manu',
  'das',
  'please',
  'send',
  'directly'],
 ['lawrence',
  'keys',
  'warning',
  'please',
  'read',
  'organization',
  'national',
  'institute',
  'standards',
  'technology',
  'lines',
  'article',
  'jim',
  'frost',
  'writes',
  'erik',
  'velapoldi',
  'writes',
  'hell',
  'happening',
  'great',
  'country',
  'see',
  'boyhood',
  'pranks',
  'peeing',
  'bridges',
  'pound',
  'rocks',
  'society',
  'really',
  'stooped',
  'low',
  'make',
  'sound',
  'like',
  'behavior',
  'new',
  'isnt',
  'lot',
  'pedestrian',
  'bridges',
  'fencing',
  'curls',
  'sidewalk',
  'make',
  'kind',
  'think',
  'lot',
  'harder',
  'dont',
  'understand',
  'mentality',
  'couldnt',
  'figure',
  'move',
  'im',
  'glad',
  'bombed',
  'em',
  'waco',
  'wackos',
  'either',
  'know',
  'isnt',
  'group',
  'since',
  'brought',
  'anyone',
  'idea',
  'havent',
  'bombed',
  'waco',
  'cult',
  'curious',
  'newsgroup',
  'list',
  'trimmed',
  'significantly',
  'jim',
  'frost',
  'larry',
  'oo',
  'fahrvergnugen',
  'forever',
  'fact',
  'need',
  'explain',
  'indicates',
  'probably',
  'wouldnt',
  'understand',
  'anyway'],
 ['john',
  'vanderpool',
  'anybody',
  'patched',
  'version',
  'xroach',
  'tvtwm',
  'organization',
  'nasa',
  'goddard',
  'space',
  'flight',
  'center',
  'greenbelt',
  'md',
  'usa',
  'lines',
  'read',
  'code',
  'put',
  'applications',
  'virtual',
  'desktop',
  'stuff',
  'tvtwm',
  'doesnt',
  'confuse',
  'application',
  'confusing',
  'virtual',
  'ness',
  'chicken',
  'egg',
  'wanted',
  'see',
  'applied',
  'version',
  'xroach',
  'never',
  'could',
  'quite',
  'get',
  'ssetroot',
  'work',
  'either',
  'suggestions',
  'luckily',
  'xv',
  'root',
  'quit',
  'trick',
  'part',
  'also',
  'ild',
  'quite',
  'interested',
  'hearing',
  'icon',
  'region',
  'virtual',
  'window',
  'tvtwm',
  'read',
  'thread',
  'last',
  'week',
  'thanx',
  'fish',
  'john',
  'vanderpool',
  'internet',
  'nasa',
  'gsfc',
  'hstx',
  'vox',
  'run',
  'run',
  'catch',
  'sun',
  'sinking',
  'racing',
  'around',
  'come',
  'behind',
  'rw',
  'dg'],
 ['karen',
  'bircsak',
  'lost',
  'tekhvc',
  'color',
  'space',
  'article',
  'westford',
  'apr',
  'organization',
  'concurrent',
  'computer',
  'corp',
  'westford',
  'lines',
  'please',
  'respond',
  'via',
  'email',
  'anybody',
  'actually',
  'seen',
  'tek',
  'color',
  'space',
  'stuff',
  'working',
  'im',
  'luck',
  'either',
  'xtici',
  'editor',
  'export',
  'lcs',
  'mit',
  'oreillys',
  'ftp',
  'able',
  'example',
  'xcms',
  'ftp',
  'uu',
  'net',
  'oreilly',
  'example',
  'fails',
  'almost',
  'every',
  'set',
  'inputs',
  'returns',
  'smaller',
  'value',
  'makes',
  'sense',
  'xtici',
  'editor',
  'fails',
  'xcmsstorecolors',
  'apparently',
  'mathematical',
  'manipulations',
  'color',
  'specs',
  'results',
  'invalid',
  'values',
  'cant',
  'actually',
  'edit',
  'colors',
  'patch',
  'level',
  'bit',
  'pseudocolor',
  'visual',
  'ive',
  'poked',
  'around',
  'xcms',
  'code',
  'xlib',
  'without',
  'understanding',
  'theory',
  'idea',
  'whats',
  'going',
  'wrong',
  'somebody',
  'confirm',
  'either',
  'mentioned',
  'programs',
  'work',
  'systems',
  'let',
  'know',
  'fail',
  'please',
  'include',
  'hardware',
  'software',
  'patch',
  'levels',
  'hints',
  'please',
  'respond',
  'email',
  'dont',
  'regularly',
  'read',
  'group',
  'thanks',
  'karen',
  'karen',
  'bircsak',
  'concurrent',
  'computer',
  'corporation'],
 ['harmon',
  'sommer',
  'please',
  'post',
  'lines',
  'sender',
  'reply',
  'harmon',
  'sommer',
  'distribution',
  'organization',
  'usr',
  'ens',
  'etc',
  'organization',
  'keywords',
  'hey',
  'ed',
  'explain',
  'fact',
  'pull',
  'horses',
  'reins',
  'left',
  'go',
  'left',
  'confusing',
  'two',
  'threads',
  'unless',
  'taught',
  'neck',
  'rein',
  'left',
  'rein',
  'brought',
  'bear',
  'left',
  'side',
  'horses',
  'neck',
  'go',
  'right',
  'equestrian',
  'counter',
  'steering'],
 ['john',
  'cwikla',
  'pixmaps',
  'colormaps',
  'sent',
  'selections',
  'summary',
  'selections',
  'pixmaps',
  'colormaps',
  'keywords',
  'selections',
  'nntp',
  'posting',
  'host',
  'morrison',
  'wri',
  'com',
  'organization',
  'wolfram',
  'research',
  'inc',
  'lines',
  'want',
  'able',
  'send',
  'pixmap',
  'one',
  'client',
  'next',
  'along',
  'want',
  'send',
  'colormap',
  'foreground',
  'background',
  'pixel',
  'values',
  'far',
  'problem',
  'problem',
  'however',
  'pixmap',
  'id',
  'colormap',
  'id',
  'go',
  'telling',
  'server',
  'second',
  'receiving',
  'client',
  'wants',
  'associations',
  'two',
  'ids',
  'tia',
  'john',
  'john',
  'cwikla',
  'programmer',
  'never',
  'first',
  'wolfram',
  'research',
  'inc',
  'letter',
  'alphabet'],
 ['david',
  'partain',
  'candida',
  'albicans',
  'originator',
  'organization',
  'department',
  'computer',
  'science',
  'university',
  'linkoping',
  'lines',
  'someone',
  'know',
  'recently',
  'diagnosed',
  'candida',
  'albicans',
  'disease',
  'find',
  'information',
  'apparently',
  'something',
  'bodys',
  'production',
  'yeast',
  'time',
  'highly',
  'allergic',
  'yeast',
  'anyone',
  'tell',
  'thanks',
  'david',
  'partain',
  'ida',
  'university',
  'link',
  'oping',
  'work',
  'phone',
  'link',
  'oping',
  'sweden',
  'telefax'],
 ['joe',
  'kellett',
  'sex',
  'education',
  'organization',
  'netcom',
  'lines',
  'article',
  'bruce',
  'stephens',
  'writes',
  'id',
  'fascinated',
  'see',
  'evidence',
  'please',
  'send',
  'article',
  'negative',
  'side',
  'however',
  'suspect',
  'simplistic',
  'link',
  'abstinence',
  'education',
  'decreased',
  'pregnancy',
  'contraceptive',
  'education',
  'increased',
  'pregnancy',
  'false',
  'us',
  'id',
  'guess',
  'one',
  'largest',
  'proportion',
  'non',
  'liberal',
  'sex',
  'education',
  'western',
  'world',
  'also',
  'one',
  'highest',
  'teenage',
  'pregnancy',
  'rates',
  'please',
  'correct',
  'guess',
  'wrong',
  'ive',
  'sent',
  'article',
  'terms',
  'group',
  'discussion',
  'wanted',
  'point',
  'non',
  'liberal',
  'education',
  'head',
  'sand',
  'abstinence',
  'education',
  'non',
  'liberal',
  'education',
  'regarding',
  'drugs',
  'kid',
  'didnt',
  'us',
  'lot',
  'good',
  'abstinence',
  'education',
  'regarding',
  'drugs',
  'proven',
  'effective',
  'think',
  'joe',
  'kellett'],
 ['two',
  'people',
  'married',
  'gods',
  'eyes',
  'organization',
  'laurentian',
  'university',
  'lines',
  'article',
  'mark',
  'ashley',
  'writes',
  'bibles',
  'hand',
  'give',
  'exact',
  'chapter',
  'verse',
  'time',
  'jesus',
  'told',
  'peter',
  'rock',
  'said',
  'whatever',
  'hold',
  'true',
  'earth',
  'held',
  'true',
  'heaven',
  'whatever',
  'dont',
  'hold',
  'true',
  'wont',
  'true',
  'heaven',
  'therefore',
  'respect',
  'marriage',
  'ceremony',
  'done',
  'rc',
  'priest',
  'big',
  'parties',
  'required',
  'priest',
  'couple',
  'witnesses',
  'divorce',
  'allowed',
  'anullments',
  'granted',
  'upon',
  'approval',
  'either',
  'bishop',
  'pope',
  'sure',
  'pope',
  'delegates',
  'function',
  'maybe',
  'im',
  'little',
  'tired',
  'cant',
  'seem',
  'follow',
  'logic',
  'whatever',
  'held',
  'true',
  'earth',
  'held',
  'true',
  'heaven',
  'priest',
  'rc',
  'apparently',
  'required',
  'fact',
  'read',
  'next',
  'verse',
  'correctly',
  'matthew',
  'understand',
  'marriage',
  'take',
  'place',
  'two',
  'required',
  'agree',
  'earth',
  'touching',
  'one',
  'thing',
  'shall',
  'done',
  'todd',
  'mark',
  'ashley',
  'disclaimer',
  'opinions',
  'harris',
  'lost',
  'los',
  'angelino',
  'unfortunately',
  'havent',
  'able',
  'find',
  'completely',
  'precise',
  'statements',
  'needed',
  'usual',
  'current',
  'edition',
  'catholic',
  'encyclopedia',
  'frustratingly',
  'vague',
  'know',
  'priest',
  'viewed',
  'witness',
  'thus',
  'sense',
  'would',
  'required',
  'however',
  'part',
  'purpose',
  'formal',
  'marriage',
  'avoid',
  'ambiguity',
  'taken',
  'commitment',
  'community',
  'provides',
  'support',
  'marriage',
  'cases',
  'problems',
  'involved',
  'helping',
  'make',
  'sure',
  'people',
  'carry',
  'much',
  'commitment',
  'possible',
  'thus',
  'marriage',
  'must',
  'public',
  'commitment',
  'presence',
  'priest',
  'required',
  'regular',
  'marriage',
  'im',
  'clear',
  'exactly',
  'boundaries',
  'exceptional',
  'cases',
  'valid',
  'irregular',
  'ne',
  'temere',
  'says',
  'marriage',
  'involving',
  'catholic',
  'valid',
  'without',
  'priest',
  'according',
  'oxford',
  'dictionary',
  'church',
  'imply',
  'new',
  'canon',
  'law',
  'retains',
  'id',
  'rather',
  'see',
  'recent',
  'authoritative',
  'source',
  'note',
  'catholic',
  'priest',
  'required',
  'catholics',
  'catholic',
  'church',
  'recognize',
  'marriage',
  'baptized',
  'non',
  'catholics',
  'valid',
  'without',
  'priest',
  'clh'],
 ['fletcher',
  'adams',
  'pork',
  'abolish',
  'selective',
  'service',
  'oanization',
  'mississippi',
  'state',
  'university',
  'nntp',
  'posting',
  'host',
  'ra',
  'msstate',
  'organization',
  'mississippi',
  'state',
  'university',
  'lines',
  'marc',
  'mueller',
  'writes',
  'fletcher',
  'adams',
  'writes',
  'eliminate',
  'transport',
  'wrong',
  'need',
  'capability',
  'sure',
  'problems',
  'read',
  'aviation',
  'week',
  'line',
  'reopened',
  'would',
  'delivered',
  'year',
  'earlier',
  'cost',
  'billion',
  'less',
  'program',
  'politically',
  'though',
  'popular',
  'pork',
  'read',
  'av',
  'week',
  'dont',
  'remember',
  'could',
  'supply',
  'date',
  'magazine',
  'vs',
  'cant',
  'carry',
  'much',
  'capability',
  'read',
  'land',
  'smaller',
  'airfields',
  'pork',
  'depends',
  'whether',
  'job',
  'relies',
  'california',
  'right',
  'would',
  'say',
  'pork',
  'since',
  'due',
  'peace',
  'dividend',
  'many',
  'people',
  'work',
  'question',
  'whether',
  'les',
  'aspin',
  'clinton',
  'able',
  'face',
  'pork',
  'happy',
  'congress',
  'marc',
  'mueller',
  'huh',
  'shouldnt',
  'read',
  'question',
  'whether',
  'social',
  'pork',
  'happy',
  'les',
  'aspin',
  'clinton',
  'able',
  'face',
  'jobs',
  'pork',
  'happy',
  'congress',
  'fpa'],
 ['keith',
  'allan',
  'schneider',
  'political',
  'atheists',
  'organization',
  'california',
  'institute',
  'technology',
  'pasadena',
  'lines',
  'nntp',
  'posting',
  'host',
  'lloyd',
  'caltech',
  'keith',
  'ryan',
  'writes',
  'chimps',
  'almost',
  'human',
  'mean',
  'chimps',
  'moral',
  'well',
  'chimps',
  'must',
  'system',
  'live',
  'social',
  'groups',
  'must',
  'laws',
  'dictating',
  'undesired',
  'behavior',
  'keith'],
 ['niederberger',
  'markus',
  'opamps',
  'organization',
  'interkantonales',
  'technikum',
  'rapperswil',
  'itr',
  'switzerland',
  'lines',
  'hi',
  'right',
  'opamps',
  'dont',
  'special',
  'equipment',
  'task',
  'job',
  'relativly',
  'simple',
  'equipments',
  'frequency',
  'sweeper',
  'dso',
  'etc',
  'anyone',
  'know',
  'good',
  'test',
  'circuitry',
  'opamps',
  'especially',
  'measuring',
  'open',
  'loop',
  'gain',
  'phase',
  'margin',
  'pssr',
  'cmmr',
  'books',
  'application',
  'notes',
  'available',
  'please',
  'reply',
  'vi',
  'mail',
  'nn',
  'thanks',
  'mark',
  'mark',
  'niederberger',
  'mail'],
 ['doug',
  'akerman',
  'commodoree',
  'distribution',
  'world',
  'organization',
  'amiga',
  'bitswap',
  'central',
  'dispatch',
  'lines',
  'wonderful',
  'commodore',
  'sale',
  'also',
  'included',
  'disk',
  'drive',
  'color',
  'moniter',
  'power',
  'supply',
  'great',
  'shape',
  'software',
  'joysticks',
  'baud',
  'modems',
  'old',
  'useable',
  'contact',
  'doug',
  'via',
  'dlg',
  'pro'],
 ['steve',
  'verity',
  'need',
  'help',
  'video',
  'detection',
  'circuit',
  'organization',
  'lines',
  'trying',
  'build',
  'circuit',
  'detects',
  'presence',
  'video',
  'vs',
  'blank',
  'screen',
  'monitoring',
  'outputs',
  'graphics',
  'card',
  'able',
  'detect',
  'presence',
  'single',
  'pixel',
  'mhz',
  'would',
  'mean',
  'detecting',
  'ns',
  'pulse',
  'also',
  'able',
  'tell',
  'difference',
  'blank',
  'screen',
  'mv',
  'dim',
  'screen',
  'say',
  'around',
  'mv',
  'oh',
  'yes',
  'also',
  'needs',
  'cheap',
  'first',
  'circuit',
  'dismal',
  'failure',
  'used',
  'compariators',
  'compariator',
  'input',
  'going',
  'one',
  'guns',
  'input',
  'went',
  'reference',
  'created',
  'voltage',
  'divider',
  'potentiometer',
  'first',
  'problem',
  'compariator',
  'way',
  'slow',
  'needed',
  'get',
  'several',
  'pixels',
  'row',
  'would',
  'fire',
  'compariators',
  'could',
  'whole',
  'screen',
  'full',
  'text',
  'circuit',
  'would',
  'detect',
  'second',
  'problem',
  'noise',
  'reference',
  'smallest',
  'difference',
  'blank',
  'screen',
  'dim',
  'screen',
  'fact',
  'difference',
  'completely',
  'black',
  'completely',
  'white',
  'mv',
  'wondering',
  'going',
  'amplify',
  'video',
  'signals',
  'make',
  'work',
  'faster',
  'compariators',
  'expensive',
  'require',
  'split',
  'supplies',
  'would',
  'need',
  'replace',
  'quad',
  'compariator',
  'three',
  'compariators',
  'create',
  'whole',
  'new',
  'power',
  'supply',
  'circuit',
  'point',
  'think',
  'need',
  'sort',
  'transistor',
  'circuit',
  'transistors',
  'fast',
  'cheap',
  'trick',
  'unfortunately',
  'way',
  'league',
  'comes',
  'designing',
  'transistor',
  'circuits',
  'appealing',
  'net',
  'help',
  'ideas',
  'tips',
  'circuits',
  'pointers',
  'references',
  'etc',
  'would',
  'greatly',
  'appreciated',
  'oh',
  'yes',
  'sample',
  'output',
  'thing',
  'every',
  'second',
  'dont',
  'need',
  'fast',
  'response',
  'time',
  'however',
  'havent',
  'found',
  'way',
  'take',
  'advantage',
  'fact',
  'thanks',
  'lot',
  'help',
  'anybody',
  'might',
  'able',
  'give',
  'course',
  'undying',
  'gratitude',
  'steve',
  'verity',
  'steve',
  'verity',
  'maxed',
  'midi'],
 ['zhihua',
  'xie',
  'duo',
  'crashes',
  'aftersleep',
  'looks',
  'like',
  'apple',
  'bug',
  'organization',
  'university',
  'pittsburgh',
  'lines',
  'test'],
 ['alec',
  'lee',
  'scan',
  'rate',
  'vs',
  'font',
  'size',
  'summary',
  'important',
  'organization',
  'university',
  'denver',
  'dept',
  'math',
  'comp',
  'sci',
  'lines',
  'past',
  'winter',
  'found',
  'spending',
  'ridiculous',
  'amout',
  'time',
  'front',
  'computer',
  'since',
  'eyes',
  'going',
  'berserk',
  'decided',
  'shell',
  'serious',
  'money',
  'upgrade',
  'monitor',
  'im',
  'running',
  'hz',
  'eyes',
  'grateful',
  'however',
  'find',
  'using',
  'smaller',
  'font',
  'less',
  'eye',
  'strain',
  'anyone',
  'else',
  'kind',
  'experience',
  'thought',
  'small',
  'fonts',
  'culprit',
  'seems',
  'flicker',
  'real',
  'problem',
  'comments',
  'alec',
  'lee'],
 ['cant',
  'write',
  'floppy',
  'organization',
  'hewlett',
  'packard',
  'waltham',
  'division',
  'reply',
  'keywords',
  'write',
  'lines',
  'ok',
  'experts',
  'need',
  'answer',
  'quick',
  'machine',
  'floppy',
  'unable',
  'write',
  'formated',
  'disk',
  'machine',
  'claims',
  'disk',
  'write',
  'protected',
  'note',
  'read',
  'problem',
  'please',
  'e_mail',
  'post'],
 ['ljubomir',
  'perkovic',
  'draining',
  'battery',
  'nntp',
  'posting',
  'host',
  'gs',
  'sp',
  'cs',
  'cmu',
  'organization',
  'carnegie',
  'mellon',
  'university',
  'lines',
  'problem',
  'battery',
  'honda',
  'cb',
  'nighthawk',
  'every',
  'week',
  'dead',
  'recharge',
  'ride',
  'bike',
  'every',
  'day',
  'battery',
  'new',
  'charging',
  'system',
  'checked',
  'thoroughly',
  'seems',
  'fine',
  'suspicion',
  'draining',
  'somewhere',
  'idea',
  'causing',
  'problem',
  'please',
  'help',
  'since',
  'mechanic',
  'clueless',
  'ljubomir'],
 ['ssto',
  'senatorial',
  'aide',
  'breifing',
  'recollections',
  'article',
  'max',
  'apr',
  'distribution',
  'world',
  'lines',
  'nntp',
  'posting',
  'host',
  'max',
  'washington',
  'following',
  'thoughts',
  'meeting',
  'hugh',
  'kelso',
  'bob',
  'lilly',
  'aide',
  'sen',
  'patty',
  'murrays',
  'discuss',
  'ssto',
  'commercial',
  'space',
  'went',
  'receiving',
  'packet',
  'containing',
  'presentation',
  'benifits',
  'ssto',
  'called',
  'tried',
  'schedule',
  'meeting',
  'local',
  'senator',
  'patty',
  'murray',
  'washington',
  'state',
  'started',
  'asking',
  'hour',
  'heard',
  'gasp',
  'end',
  'phone',
  'quickly',
  'backed',
  'hour',
  'later',
  'conversation',
  'learned',
  'standard',
  'appointment',
  'minutes',
  'got',
  'standard',
  'bozo',
  'treatment',
  'called',
  'back',
  'aide',
  'scheduled',
  'meeting',
  'us',
  'order',
  'determine',
  'bozos',
  'familiarize',
  'material',
  'screen',
  'make',
  'sure',
  'appropriate',
  'take',
  'senators',
  'time',
  'material',
  'well',
  'got',
  'allocated',
  'hour',
  'sen',
  'murrays',
  'aide',
  'ended',
  'talking',
  'minutes',
  'us',
  'ending',
  'meeting',
  'still',
  'listening',
  'covered',
  'lot',
  'ground',
  'little',
  'tiny',
  'bit',
  'dcx',
  'specific',
  'single',
  'stage',
  'reusable',
  'vehicle',
  'primer',
  'another',
  'woman',
  'took',
  'copius',
  'quantities',
  'notes',
  'every',
  'topic',
  'brought',
  'murray',
  'new',
  'wanted',
  'entrench',
  'non',
  'corporate',
  'aligned',
  'speaking',
  'boeing',
  'local',
  'citizens',
  'interentested',
  'space',
  'spent',
  'lot',
  'time',
  'covering',
  'benifits',
  'lower',
  'cost',
  'access',
  'leo',
  'solar',
  'power',
  'satellites',
  'big',
  'focus',
  'hit',
  'becoming',
  'feasible',
  'lower',
  'cost',
  'access',
  'hit',
  'environmental',
  'stand',
  'hit',
  'tourism',
  'angle',
  'left',
  'copy',
  'patric',
  'collins',
  'tourism',
  'paper',
  'side',
  'notes',
  'everyone',
  'goes',
  'space',
  'sees',
  'atmosphere',
  'becomes',
  'esp',
  'seeing',
  'smog',
  'hit',
  'benifits',
  'studying',
  'bone',
  'decalcification',
  'pronounced',
  'space',
  'said',
  'potential',
  'lead',
  'understanding',
  'maybe',
  'cure',
  'osteoporosis',
  'hit',
  'education',
  'whereby',
  'kids',
  'get',
  'enthused',
  'space',
  'get',
  'older',
  'find',
  'havent',
  'hop',
  'hell',
  'actually',
  'getting',
  'go',
  'fields',
  'low',
  'cost',
  'orbit',
  'chances',
  'might',
  'get',
  'someday',
  'would',
  'provide',
  'greater',
  'incentive',
  'hit',
  'harder',
  'classes',
  'needed',
  'hit',
  'little',
  'get',
  'nasa',
  'operational',
  'launch',
  'vehicle',
  'business',
  'angle',
  'hit',
  'lower',
  'cost',
  'satellite',
  'launches',
  'gps',
  'navigation',
  'personal',
  'communicators',
  'new',
  'services',
  'etc',
  'jobs',
  'provided',
  'sectors',
  'jobs',
  'provided',
  'building',
  'thing',
  'balance',
  'trade',
  'improvement',
  'etc',
  'mentioned',
  'skypix',
  'would',
  'benifit',
  'lower',
  'launch',
  'costs',
  'left',
  'paper',
  'technologies',
  'needed',
  'invested',
  'order',
  'make',
  'even',
  'easier',
  'asked',
  'questions',
  'point',
  'ended',
  'telling',
  'wanted',
  'aware',
  'efforts',
  'proceeding',
  'area',
  'want',
  'make',
  'sure',
  'results',
  'efforts',
  'lost',
  'much',
  'like',
  'condor',
  'majellan',
  'importantly',
  'asked',
  'help',
  'fund',
  'efforts',
  'along',
  'lines',
  'lowering',
  'cost',
  'leo',
  'middle',
  'also',
  'gave',
  'little',
  'speal',
  'lunar',
  'resource',
  'data',
  'purchase',
  'act',
  'guy',
  'filed',
  'separately',
  'interested',
  'asked',
  'questions',
  'seemed',
  'like',
  'wanted',
  'jump',
  'contact',
  'people',
  'involved',
  'something',
  'may',
  'actually',
  'happen',
  'immediatly',
  'last',
  'two',
  'things',
  'make',
  'sure',
  'knew',
  'knew',
  'lot',
  'people',
  'space',
  'arena',
  'town',
  'could',
  'feel',
  'free',
  'call',
  'us',
  'time',
  'questions',
  'didnt',
  'know',
  'answers',
  'would',
  'see',
  'questions',
  'got',
  'people',
  'really',
  'know',
  'answers',
  'finally',
  'asked',
  'appointment',
  'senator',
  'said',
  'would',
  'get',
  'list',
  'also',
  'said',
  'knowing',
  'would',
  'something',
  'would',
  'interested',
  'although',
  'time',
  'problem',
  'getting',
  'scheduled',
  'since',
  'state',
  'week',
  'days',
  'felt',
  'like',
  'pretty',
  'good',
  'job',
  'john'],
 ['vesselin',
  'bontchev',
  'text',
  'white',
  'house',
  'announcement',
  'clipper',
  'chip',
  'encryption',
  'reply',
  'organization',
  'virus',
  'test',
  'center',
  'university',
  'hamburg',
  'lines',
  'mathew',
  'writes',
  'ben',
  'aveling',
  'writes',
  'dont',
  'forget',
  'country',
  'wouldnt',
  'let',
  'russians',
  'buy',
  'apple',
  'iis',
  'security',
  'concerns',
  'thats',
  'nothing',
  'wouldnt',
  'let',
  'british',
  'buy',
  'inmos',
  'transputer',
  'systems',
  'security',
  'concerns',
  'designed',
  'damn',
  'things',
  'funny',
  'plenty',
  'bulgaria',
  'regardless',
  'embargo',
  'much',
  'export',
  'controls',
  'regards',
  'vesselin',
  'vesselin',
  'vladimirov',
  'bontchev',
  'virus',
  'test',
  'center',
  'university',
  'hamburg',
  'tel',
  'fax',
  'fachbereich',
  'informatik',
  'agn',
  'pgp',
  'public',
  'key',
  'available',
  'request',
  'vogt',
  'koelln',
  'strasse',
  'rm',
  'mail',
  'hamburg',
  'germany'],
 ['rkba',
  'nyc',
  'radio',
  'station',
  'reply',
  'organization',
  'nsdd',
  'data',
  'general',
  'corp',
  'lines',
  'actually',
  'real',
  'reason',
  'stern',
  'getting',
  'bigger',
  'rating',
  'share',
  'new',
  'quality',
  'call',
  'show',
  'fine',
  'issued',
  'started',
  'get',
  'better',
  'ratings',
  'curious',
  'individuals',
  'wanted',
  'see',
  'bad',
  'actually',
  'since',
  'came',
  'greater',
  'turn',
  'listeners',
  'grease',
  'words',
  'people',
  'get',
  'sick',
  'sooner',
  'grease',
  'saying',
  'vagina',
  'penis',
  'air',
  'hilarious',
  'first',
  'second',
  'time',
  'still',
  'little',
  'funny',
  'time',
  'time',
  'think',
  'greatest',
  'man',
  'planet',
  'tell',
  'everyone',
  'going',
  'get',
  'old',
  'really',
  'quick',
  'give',
  'mark',
  'wrong',
  'excuse',
  'really',
  'new',
  'show',
  'youd',
  'know',
  'doesnt',
  'say',
  'vagina',
  'penis',
  'gets',
  'ratings',
  'also',
  'addresss',
  'real',
  'issues',
  'well',
  'outrageous',
  'dont',
  'hear',
  'idiots',
  'funny',
  'show',
  'getting',
  'serious',
  'topics',
  'time',
  'gets',
  'people',
  'think',
  'entertains',
  'time',
  'try',
  'listening',
  'show',
  'little',
  'closer',
  'tell',
  'wrong',
  'way',
  'flash',
  'pan',
  'ratings',
  'sustain',
  'well',
  'hmm',
  'greg',
  'lazar',
  'jets',
  'jets',
  'jets'],
 ['larry',
  'silverberg',
  'podiatry',
  'school',
  'info',
  'reply',
  'organization',
  'university',
  'albany',
  'suny',
  'lines',
  'hello',
  'planning',
  'attending',
  'podiatry',
  'school',
  'next',
  'year',
  'narrowed',
  'choices',
  'pennsylvania',
  'college',
  'podiatric',
  'medicine',
  'philadelphia',
  'california',
  'college',
  'podiatric',
  'medicine',
  'san',
  'francisco',
  'anyone',
  'information',
  'oppinions',
  'two',
  'schools',
  'please',
  'tell',
  'hard',
  'time',
  'deciding',
  'one',
  'attend',
  'must',
  'make',
  'decision',
  'soon',
  'thank',
  'larry',
  'live',
  'new',
  'york',
  'saturday',
  'night',
  'tonights',
  'special',
  'guest',
  'lawrence',
  'silverberg',
  'state',
  'university',
  'new',
  'york',
  'albany'],
 ['rashid',
  'inimitable',
  'rushdie',
  'anecdote',
  'islam',
  'nntp',
  'posting',
  'host',
  'organization',
  'nh',
  'lines',
  'article',
  'fred',
  'rice',
  'wrote',
  'article',
  'umar',
  'khan',
  'writes',
  'stuff',
  'deleted',
  'demanding',
  'khomeini',
  'ilk',
  'publicly',
  'come',
  'clean',
  'show',
  'proof',
  'islamic',
  'law',
  'punishes',
  'apostacy',
  'death',
  'tolerates',
  'similar',
  'form',
  'coversion',
  'freedom',
  'conscience',
  'five',
  'schools',
  'law',
  'best',
  'knowledge',
  'support',
  'death',
  'sentence',
  'apostasy',
  'accompanied',
  'open',
  'persistent',
  'aggravated',
  'hostility',
  'islam',
  'otherwise',
  'agree',
  'legal',
  'support',
  'punishment',
  'disbelief',
  'quran',
  'makes',
  'clear',
  'belief',
  'matter',
  'conscience',
  'public',
  'private',
  'disavowal',
  'islam',
  'conversion',
  'another',
  'faith',
  'punishable',
  'jurists',
  'gone',
  'trend',
  'insisted',
  'apostasy',
  'punishable',
  'even',
  'death',
  'historically',
  'exception',
  'cursing',
  'insulting',
  'prophets',
  'falls',
  'category',
  'shatim',
  'borrowed',
  'book',
  'library',
  'khomeinis',
  'fatwa',
  'etc',
  'lots',
  'stuff',
  'deleted',
  'according',
  'analysis',
  'looks',
  'like',
  'khomeinis',
  'offering',
  'reward',
  'rushdies',
  'death',
  'fact',
  'constitutes',
  'criminal',
  'act',
  'according',
  'islamic',
  'law',
  'please',
  'see',
  'post',
  'yet',
  'rushdie',
  'islamic',
  'law'],
 ['lori',
  'iannamico',
  'goalie',
  'masks',
  'nntp',
  'posting',
  'host',
  'lli',
  'mach',
  'cs',
  'cmu',
  'organization',
  'school',
  'computer',
  'science',
  'carnegie',
  'mellon',
  'lines',
  'tom',
  'barrasso',
  'wore',
  'great',
  'mask',
  'one',
  'time',
  'last',
  'season',
  'unveiled',
  'game',
  'boston',
  'black',
  'pgh',
  'city',
  'scenes',
  'golden',
  'triangle',
  'pghs',
  'downtown',
  'area',
  'rivers',
  'meet',
  'graced',
  'top',
  'along',
  'steel',
  'mill',
  'one',
  'side',
  'civic',
  'arena',
  'think',
  'back',
  'helmet',
  'old',
  'pens',
  'logo',
  'really',
  'fat',
  'little',
  'penguin',
  'blue',
  'scarf',
  'current',
  'time',
  'pens',
  'logo',
  'space',
  'new',
  'current',
  'logo',
  'tommy',
  'designed',
  'mask',
  'mother',
  'artist',
  'painted',
  'wearing',
  'mask',
  'pens',
  'got',
  'thumped',
  'bruins',
  'next',
  'game',
  'tommy',
  'back',
  'old',
  'paint',
  'job',
  'great',
  'mask',
  'done',
  'goalies',
  'superstition',
  'lori'],
 ['tom',
  'haapanen',
  'hercules',
  'graphite',
  'organization',
  'software',
  'metrics',
  'inc',
  'lines',
  'anyone',
  'used',
  'hercules',
  'graphite',
  'adapter',
  'looks',
  'good',
  'paper',
  'steve',
  'gibson',
  'gave',
  'good',
  'review',
  'infoworld',
  'id',
  'love',
  'get',
  'real',
  'world',
  'impression',
  'though',
  'speed',
  'drivers',
  'support',
  'looking',
  'something',
  'replace',
  'ati',
  'ultra',
  'tom',
  'haapanen',
  'software',
  'metrics',
  'inc',
  'waterloo',
  'ont',
  'stick',
  'index',
  'fingers',
  'corners',
  'mouth',
  'pull',
  'thats',
  'corrado',
  'makes',
  'feel',
  'car',
  'january'],
 ['andrea',
  'winkler',
  'security',
  'technical',
  'conference',
  'organization',
  'sni',
  'ag',
  'muenchen',
  'sto',
  'xs',
  'lines',
  'possibility',
  'join',
  'th',
  'annual',
  'technical',
  'conference',
  'january',
  'boston',
  'nevertheless',
  'im',
  'interested',
  'information',
  'tutorials',
  'exspecially',
  'tutorial',
  'id',
  'security',
  'title',
  'survey',
  'security',
  'tutorial',
  'id',
  'admin',
  'title',
  'administrator',
  'anybody',
  'know',
  'get',
  'information',
  'paper',
  'mail',
  'anybody',
  'information',
  'kerberos',
  'escpecially',
  'connection',
  'display',
  'manager',
  'xdm',
  'thanks',
  'andrea',
  'winkler',
  'siemens',
  'nixdorf',
  'muenchen',
  'germany',
  'andrea',
  'winkler',
  'internet',
  'sni',
  'sto',
  'xs',
  'otto',
  'hahn',
  'ring',
  'munich',
  'phone',
  'fax'],
 ['todd',
  'stevens',
  'rebuilding',
  'temple',
  'anybody',
  'organization',
  'ingr',
  'lines',
  'chuck',
  'petch',
  'writes',
  'appears',
  'nothing',
  'stands',
  'way',
  'rebuilding',
  'resuming',
  'sacrifices',
  'scriptures',
  'indicate',
  'happen',
  'last',
  'days',
  'although',
  'israeli',
  'government',
  'give',
  'permission',
  'start',
  'think',
  'hand',
  'god',
  'holding',
  'project',
  'ready',
  'let',
  'happen',
  'brothers',
  'sisters',
  'time',
  'hand',
  'redemption',
  'drawing',
  'near',
  'look',
  'scriptural',
  'levitical',
  'priesthood',
  'resumed',
  'jews',
  'legitimately',
  'prove',
  'levite',
  'bloodline',
  'todd',
  'stevens'],
 ['valerie',
  'hammerl',
  'nhl',
  'team',
  'captains',
  'organization',
  'ub',
  'lines',
  'nntp',
  'posting',
  'host',
  'autarch',
  'acsu',
  'buffalo',
  'article',
  'writes',
  'article',
  'anna',
  'matyas',
  'writes',
  'michael',
  'collingridge',
  'writes',
  'captain',
  'ever',
  'traded',
  'resigned',
  'striped',
  'title',
  'season',
  'team',
  'captain',
  'trivia',
  'would',
  'appreciated',
  'wasnt',
  'ron',
  'francis',
  'captain',
  'whalers',
  'traded',
  'pittsburgh',
  'mom',
  'chris',
  'chelios',
  'montreals',
  'co',
  'captain',
  'guy',
  'carbonneau',
  'traded',
  'chicago',
  'denis',
  'savard',
  'peter',
  'stastny',
  'captain',
  'quebec',
  'nordiques',
  'traded',
  'new',
  'jersey',
  'also',
  'mark',
  'messier',
  'captain',
  'edmonton',
  'oilers',
  'traded',
  'new',
  'york',
  'dale',
  'hawerchuk',
  'winnipeg',
  'traded',
  'buffalo',
  'captain',
  'think',
  'forget',
  'wayne',
  'know',
  'traded',
  'captain',
  'didnt',
  'strip',
  'wendel',
  'clark',
  'captaincy',
  'toronto',
  'buffalo',
  'seems',
  'started',
  'tradition',
  'trading',
  'captains',
  'pat',
  'lafontaine',
  'awarded',
  'captaincy',
  'mike',
  'ramsey',
  'forced',
  'give',
  'ramseys',
  'penguin',
  'ramsey',
  'inherited',
  'mike',
  'foligno',
  'whos',
  'leaf',
  'turn',
  'inherited',
  'lindy',
  'ruff',
  'went',
  'forget',
  'ruff',
  'perreault',
  'retired',
  'guess',
  'thats',
  'streak',
  'started',
  'danny',
  'gare',
  'captain',
  'went',
  'detroit',
  'jim',
  'scoenfeld',
  'gerry',
  'meehan',
  'floyd',
  'smith',
  'others',
  'reverse',
  'order',
  'last',
  'first',
  'bit',
  'young',
  'time',
  'im',
  'sure',
  'fate',
  'schoenfeld',
  'ultimately',
  'went',
  'detroit',
  'boston',
  'meehan',
  'went',
  'vancouver',
  'atlanta',
  'washington',
  'smith',
  'seems',
  'hung',
  'skates',
  'buffalo',
  'dont',
  'know',
  'captaincy',
  'removed',
  'many',
  'games',
  'played',
  'buffalo',
  'actually',
  'getting',
  'fascinating',
  'captaincy',
  'buffalo',
  'sure',
  'sign',
  'youre',
  'traded',
  'almost',
  'unless',
  'youre',
  'franchise',
  'player',
  'valerie',
  'hammerl',
  'birtday',
  'event',
  'friends',
  'get',
  'together',
  'set',
  'dessert',
  'fire',
  'laugh',
  'sing',
  'frantically',
  'try',
  'blow'],
 ['charles',
  'campbell',
  'jesus',
  'black',
  'organization',
  'university',
  'virginia',
  'lines',
  'jesus',
  'born',
  'jew',
  'biblical',
  'accounts',
  'mothers',
  'ancestry',
  'fathers',
  'tracing',
  'back',
  'david',
  'seems',
  'reasonable',
  'assume',
  'therefore',
  'jesus',
  'semitic',
  'interesting',
  'aside',
  'jesus',
  'semitic',
  'makes',
  'neither',
  'white',
  'black',
  'sense',
  'underscores',
  'point',
  'made',
  'earlier',
  'color',
  'important',
  'message',
  'grace',
  'divinity',
  'concentrate',
  'finally',
  'would',
  'direct',
  'anyone',
  'interested',
  'african',
  'involvement',
  'church',
  'account',
  'conversion',
  'ethiopian',
  'eunuch',
  'acts',
  'chapter',
  'think',
  'chapter',
  'one',
  'earliest',
  'conversions',
  'eunuch',
  'treasurer',
  'queen',
  'ethiopians',
  'definitely',
  'african',
  'ethiopia',
  'time',
  'indicated',
  'region',
  'south',
  'egypt',
  'many',
  'also',
  'speculate',
  'man',
  'first',
  'african',
  'christian',
  'first',
  'black',
  'christian',
  'well',
  'god',
  'bless',
  'charles',
  'campbell'],
 ['doug',
  'loss',
  'death',
  'taxes',
  'give',
  'billion',
  'organization',
  'electrical',
  'computer',
  'engineering',
  'carnegie',
  'mellon',
  'lines',
  'article',
  'writes',
  'article',
  'writes',
  'somebody',
  'pointed',
  'quite',
  'correctly',
  'rights',
  'anybodys',
  'grant',
  'although',
  'imagine',
  'would',
  'fait',
  'accompli',
  'situation',
  'winner',
  'give',
  'winning',
  'group',
  'cant',
  'see',
  'one',
  'company',
  'corp',
  'year',
  'moratorium',
  'taxes',
  'tom',
  'freebairn',
  'says',
  'mineral',
  'rights',
  'given',
  'says',
  'un',
  'us',
  'government',
  'toms',
  'right',
  'grantable',
  'right',
  'granter',
  'ability',
  'stop',
  'anyone',
  'taking',
  'away',
  'never',
  'mind',
  'legal',
  'status',
  'major',
  'question',
  'decide',
  'mine',
  'moon',
  'mars',
  'stop',
  'un',
  'cant',
  'legal',
  'tom',
  'foolerie',
  'truly',
  'inforce',
  'nicks',
  'right',
  'always',
  'easier',
  'obtain',
  'forgiveness',
  'permission',
  'many',
  'people',
  'remember',
  'britains',
  'king',
  'george',
  'iii',
  'expressly',
  'forbid',
  'american',
  'subjects',
  'cross',
  'alleghany',
  'appalachian',
  'mountains',
  'said',
  'subjects',
  'basically',
  'said',
  'stop',
  'us',
  'couldnt',
  'go',
  'moon',
  'declare',
  'soverign',
  'nation',
  'stop',
  'maybe',
  'acknowledge',
  'thats',
  'usa',
  'started',
  'course',
  'thats',
  'also',
  'bolivarian',
  'republic',
  'started',
  'ca',
  'central',
  'america',
  'didnt',
  'quite',
  'staying',
  'power',
  'usa',
  'im',
  'sure',
  'examples',
  'going',
  'far',
  'away',
  'ignoring',
  'authority',
  'none',
  'jump',
  'mind',
  'right',
  'happen',
  'find',
  'nation',
  'acknowledged',
  'offer',
  'services',
  'space',
  'miner',
  'go',
  'mine',
  'asteroids',
  'mars',
  'moon',
  'ever',
  'long',
  'yur',
  'sponsor',
  'get',
  'trouble',
  'whaling',
  'nations',
  'define',
  'whatever',
  'activities',
  'want',
  'carry',
  'scientific',
  'research',
  'coincidentally',
  'requires',
  'recovery',
  'megatonnes',
  'minerals',
  'whatever',
  'go',
  'basically',
  'find',
  'country',
  'wants',
  'go',
  'space',
  'cant',
  'soem',
  'reason',
  'another',
  'give',
  'home',
  'saudia',
  'arabia',
  'whatever',
  'lute',
  'keyser',
  'sort',
  'arrangement',
  'libya',
  'think',
  'late',
  'commercial',
  'space',
  'launch',
  'project',
  'one',
  'earliest',
  'killed',
  'soviet',
  'propaganda',
  'nato',
  'cruise',
  'missiles',
  'africa',
  'made',
  'libya',
  'renege',
  'arrangement',
  'doug',
  'loss'],
 ['john',
  'murray',
  'quality',
  'catholic',
  'liturgy',
  'organization',
  'ohio',
  'state',
  'university',
  'lines',
  'appreciated',
  'follow',
  'ups',
  'replies',
  'earlier',
  'query',
  'one',
  'reply',
  'lost',
  'suggested',
  'several',
  'parishes',
  'new',
  'york',
  'good',
  'masses',
  'one',
  'corpus',
  'christi',
  'downtown',
  'manhattan',
  'coincidence',
  'last',
  'weeks',
  'national',
  'jesuit',
  'magazine',
  'carried',
  'interview',
  'fr',
  'myles',
  'bourke',
  'corpus',
  'christis',
  'pastor',
  'emeritus',
  'fr',
  'bourke',
  'also',
  'directed',
  'nt',
  'translation',
  'new',
  'american',
  'bible',
  'noted',
  'certain',
  'practices',
  'introduced',
  'mass',
  'manner',
  'atmosphere',
  'banality',
  'sometimes',
  'hilarity',
  'trivialized',
  'liturgy',
  'note',
  'parents',
  'parish',
  'easter',
  'helium',
  'filled',
  'balloons',
  'distributed',
  'offertory',
  'apparently',
  'aid',
  'understanding',
  'word',
  'risen',
  'kiddie',
  'mass',
  'either',
  'well',
  'attended',
  'mass',
  'wanted',
  'note',
  'generous',
  'spirit',
  'behind',
  'replies',
  'newsgroup',
  'whole',
  'offers',
  'generally',
  'moderate',
  'perhaps',
  'moderated',
  'conversation',
  'topics',
  'often',
  'lead',
  'people',
  'extreme',
  'behavior',
  'including',
  'sometimes',
  'people',
  'go',
  'top',
  'remarkable',
  'thing',
  'exception',
  'think',
  'benefits',
  'doubt',
  'generally',
  'granted',
  'seems',
  'christian',
  'john',
  'murray'],
 ['matthew',
  'liggett',
  'opel',
  'owners',
  'nntp',
  'posting',
  'host',
  'silver',
  'ucs',
  'indiana',
  'organization',
  'indiana',
  'university',
  'lines',
  'writes',
  'craig',
  'boyle',
  'writes',
  'article',
  'writes',
  'darren',
  'gibbons',
  'writes',
  'im',
  'looking',
  'information',
  'opel',
  'cars',
  'ask',
  'model',
  'well',
  'sad',
  'truth',
  'im',
  'entirely',
  'sure',
  'two',
  'seater',
  'roll',
  'headlights',
  'hard',
  'top',
  'really',
  'sporty',
  'looking',
  'friend',
  'one',
  'sitting',
  'yard',
  'really',
  'nice',
  'condition',
  'body',
  'wise',
  'transmission',
  'seized',
  'hasnt',
  'run',
  'anyone',
  'info',
  'cars',
  'engine',
  'compartment',
  'looks',
  'really',
  'tight',
  'work',
  'fine',
  'shape',
  'quite',
  'interested',
  'thanks',
  'darren',
  'gibbons',
  'would',
  'manta',
  'would',
  'sold',
  'buick',
  'dealers',
  'mid',
  'price',
  'leader',
  'sounds',
  'lot',
  'like',
  'opel',
  'gt',
  'id',
  'guess',
  'chassis',
  'kadett',
  'rather',
  'bigger',
  'manta',
  'could',
  'easily',
  'wrong',
  'think',
  'later',
  'kadetts',
  'sold',
  'buick',
  'opels',
  'craig',
  'think',
  'manta',
  'european',
  'name',
  'gt',
  'im',
  'pretty',
  'sure',
  'kadetts',
  'sold',
  'pontiac',
  'lemans',
  'think',
  'gt',
  'early',
  'mid',
  'manta',
  'chintan',
  'amin',
  'university',
  'illinois',
  'urbanachampaign',
  'mail',
  'sig',
  'construction',
  'hard',
  'hat',
  'area',
  'bzzt',
  'manta',
  'two',
  'door',
  'sedan',
  'us',
  'engine',
  'sometimes',
  'referred',
  'opel',
  'mantas',
  'also',
  'hot',
  'fun',
  'cars',
  'junk',
  'collector',
  'toys',
  'us',
  'kid',
  'fan',
  'frogs',
  'iguanas',
  'herps'],
 ['chris',
  'behanna',
  'cobra',
  'locks',
  'organization',
  'nec',
  'systems',
  'laboratory',
  'inc',
  'distribution',
  'usa',
  'lines',
  'article',
  'writes',
  'posting',
  'alt',
  'locksmithing',
  'best',
  'methods',
  'securing',
  'motorcycle',
  'got',
  'several',
  'responses',
  'referring',
  'cobra',
  'lock',
  'described',
  'anyone',
  'come',
  'across',
  'store',
  'carrying',
  'lock',
  'chicago',
  'area',
  'available',
  'dealerships',
  'turn',
  'back',
  'order',
  'manufacturer',
  'directly',
  'one',
  'made',
  'order',
  'least',
  'get',
  'nonstandard',
  'length',
  'standard',
  'believe',
  'feedback',
  'someone',
  'used',
  'see',
  'article',
  'david',
  'basiji',
  'writes',
  'incidentally',
  'best',
  'lock',
  'ive',
  'found',
  'bikes',
  'cobra',
  'lock',
  'cable',
  'shrouded',
  'articulated',
  'hardened',
  'steel',
  'sleeve',
  'lock',
  'cylindrical',
  'locking',
  'pawl',
  'engages',
  'joints',
  'articulation',
  'points',
  'chain',
  'adjusted',
  'like',
  'handcuffs',
  'cant',
  'get',
  'leverage',
  'lock',
  'break',
  'open',
  'cylinder',
  'well',
  'protected',
  'wouldnt',
  'want',
  'cut',
  'one',
  'without',
  'torch',
  'vice',
  'heavy',
  'duty',
  'cutting',
  'wheel',
  'long',
  'cobralinks',
  'lock',
  'used',
  'harley',
  'doesnt',
  'get',
  'much',
  'anymore',
  'dont',
  'lock',
  'often',
  'anymore',
  'made',
  'articulated',
  'steel',
  'shells',
  'covering',
  'seven',
  'strands',
  'steel',
  'cable',
  'probably',
  'enough',
  'stop',
  'joyriders',
  'unfortunately',
  'professionals',
  'open',
  'rather',
  'easily',
  'freeze',
  'link',
  'break',
  'frozen',
  'link',
  'favorite',
  'method',
  'hammers',
  'work',
  'well',
  'snip',
  'steel',
  'cables',
  'authority',
  'frightfully',
  'thin',
  'set',
  'boltcutters',
  'money',
  'get',
  'kryptonite',
  'cable',
  'lock',
  'anywhere',
  'thick',
  'steel',
  'cable',
  'looks',
  'like',
  'steel',
  'rope',
  'shielded',
  'flexible',
  'covering',
  'protect',
  'bikes',
  'finish',
  'barrel',
  'type',
  'locking',
  'mechanism',
  'dont',
  'know',
  'adjustable',
  'source',
  'says',
  'difficult',
  'pick',
  'locks',
  'cable',
  'tends',
  'squish',
  'flat',
  'bolt',
  'cutter',
  'jaws',
  'rather',
  'shear',
  'model',
  'bets',
  'thief',
  'die',
  'grinder',
  'cutoff',
  'wheel',
  'even',
  'durable',
  'locks',
  'tested',
  'yield',
  'tool',
  'less',
  'one',
  'minute',
  'fyi',
  'ill',
  'getting',
  'krypto',
  'cable',
  'next',
  'paycheck',
  'later',
  'chris',
  'behanna',
  'dod',
  'fxwg',
  'wide',
  'glide',
  'jubilees',
  'red',
  'lady',
  'cb',
  'baby',
  'bike',
  'disclaimer',
  'would',
  'nec',
  'zx',
  'needs',
  'name',
  'agree',
  'anyway',
  'raised',
  'pack',
  'wild',
  'corn',
  'dogs'],
 ['perry',
  'metzger',
  'escrow',
  'database',
  'organization',
  'partnership',
  'america',
  'free',
  'drug',
  'lines',
  'disturbing',
  'thought',
  'longer',
  'live',
  'days',
  'big',
  'filing',
  'cabinets',
  'live',
  'electronic',
  'age',
  'asked',
  'big',
  'could',
  'escrow',
  'database',
  'get',
  'hard',
  'might',
  'steal',
  'whole',
  'thing',
  'particularly',
  'nsa',
  'official',
  'operating',
  'tacit',
  'permission',
  'escrow',
  'houses',
  'pretend',
  'happen',
  'thats',
  'naive',
  'well',
  'lets',
  'see',
  'ten',
  'bytes',
  'escrow',
  'half',
  'lets',
  'asume',
  'ten',
  'bytes',
  'serial',
  'number',
  'fact',
  'believe',
  'serial',
  'number',
  'smaller',
  'order',
  'magnitude',
  'calculation',
  'assume',
  'population',
  'person',
  'key',
  'get',
  'five',
  'gigabytes',
  'two',
  'escrow',
  'databases',
  'fits',
  'conveniently',
  'single',
  'valuable',
  'exabyte',
  'tape',
  'get',
  'easier',
  'time',
  'cares',
  'already',
  'hold',
  'clipper',
  'keys',
  'country',
  'pocket',
  'two',
  'mm',
  'tapes',
  'admittely',
  'think',
  'safeguards',
  'wont',
  'put',
  'whole',
  'database',
  'one',
  'disk',
  'prehaps',
  'maybe',
  'throw',
  'stumbling',
  'blocks',
  'way',
  'changes',
  'nothing',
  'keys',
  'needed',
  'every',
  'day',
  'hundreds',
  'thousands',
  'law',
  'enforcement',
  'types',
  'convenience',
  'dictate',
  'system',
  'permit',
  'quick',
  'electronic',
  'retrieval',
  'point',
  'without',
  'collusion',
  'agencies',
  'exabyte',
  'tapes',
  'going',
  'get',
  'cut',
  'dorothy',
  'denning',
  'david',
  'sternlight',
  'doubtless',
  'claim',
  'cant',
  'happen',
  'know',
  'cant',
  'prayer',
  'word',
  'instance',
  'connotes',
  'realism',
  'two',
  'exabyte',
  'tapes',
  'pocket',
  'would',
  'hold',
  'keys',
  'every',
  'persons',
  'conversations',
  'country',
  'hands',
  'yeah',
  'need',
  'master',
  'key',
  'two',
  'thats',
  'ten',
  'bytes',
  'information',
  'stored',
  'awful',
  'lot',
  'places',
  'come',
  'think',
  'even',
  'nsa',
  'getting',
  'copy',
  'database',
  'isnt',
  'threat',
  'unlike',
  'contraversial',
  'political',
  'views',
  'consider',
  'foreign',
  'intelligence',
  'services',
  'know',
  'ones',
  'david',
  'sternlight',
  'wants',
  'protect',
  'us',
  'evil',
  'industrial',
  'espionage',
  'french',
  'apparently',
  'big',
  'spying',
  'operation',
  'friendly',
  'countries',
  'get',
  'industrial',
  'secrets',
  'isnt',
  'completely',
  'irrational',
  'although',
  'companies',
  'couldnt',
  'cryptosystems',
  'without',
  'back',
  'doors',
  'left',
  'unexplained',
  'point',
  'threat',
  'presumably',
  'foreign',
  'intelligence',
  'services',
  'get',
  'moles',
  'nsa',
  'agencies',
  'proof',
  'example',
  'happened',
  'many',
  'times',
  'presumably',
  'someday',
  'get',
  'hands',
  'fraction',
  'keys',
  'cant',
  'avoid',
  'sort',
  'thing',
  'dont',
  'pretend',
  'one',
  'unauthorized',
  'ever',
  'get',
  'hands',
  'escrow',
  'databases',
  'crypto',
  'types',
  'taught',
  'something',
  'important',
  'beginning',
  'intro',
  'cryptography',
  'security',
  'must',
  'depend',
  'easily',
  'changed',
  'key',
  'pick',
  'run',
  'system',
  'secret',
  'escrow',
  'databases',
  'arent',
  'sorts',
  'secrets',
  'teachers',
  'told',
  'us',
  'sort',
  'big',
  'secrets',
  'would',
  'lump',
  'category',
  'imagine',
  'trying',
  'replace',
  'million',
  'clipper',
  'chips',
  'cannot',
  'believe',
  'nsa',
  'whomever',
  'thats',
  'doesnt',
  'realize',
  'already',
  'smart',
  'many',
  'made',
  'bones',
  'real',
  'world',
  'suspect',
  'know',
  'precisely',
  'giving',
  'us',
  'appearance',
  'safety',
  'continue',
  'surveil',
  'spite',
  'growth',
  'strong',
  'cryptography',
  'suspect',
  'realize',
  'cant',
  'put',
  'things',
  'forever',
  'try',
  'delay',
  'things',
  'long',
  'possible',
  'knows',
  'maybe',
  'even',
  'higher',
  'ups',
  'inevitable',
  'bureaucratic',
  'types',
  'rise',
  'organization',
  'really',
  'believe',
  'scheme',
  'might',
  'give',
  'people',
  'security',
  'even',
  'subordinates',
  'fort',
  'meade',
  'wring',
  'hands',
  'foolishness',
  'perry',
  'metzger',
  'laissez',
  'faire',
  'laissez',
  'passer',
  'le',
  'monde',
  'va',
  'de',
  'lui',
  'meme'],
 ['joseph',
  'dale',
  'fisher',
  'ancient',
  'books',
  'organization',
  'indiana',
  'university',
  'lines',
  'course',
  'id',
  'still',
  'recommend',
  'michael',
  'read',
  'reasonable_',
  'douglas',
  'jacoby',
  'joe',
  'fisher',
  'oh',
  'michael',
  'wait',
  'see',
  'dents',
  'armor',
  'faith',
  'hasnt',
  'wavered',
  'since',
  'day',
  'became',
  'disciple',
  'may',
  'want',
  'try',
  'sometime',
  'life',
  'changing'],
 ['organization',
  'university',
  'notre',
  'dame',
  'office',
  'univ',
  'computing',
  'jewish',
  'baseball',
  'players',
  'lines',
  'article',
  'mark',
  'bernstein',
  'says',
  'reminds',
  'still',
  'serve',
  'kosher',
  'hot',
  'dogs',
  'new',
  'comiskey',
  'yup',
  'onions',
  'things',
  'bob',
  'vesterman'],
 ['barry',
  'sardis',
  'date',
  'stuck',
  'organization',
  'netcom',
  'line',
  'communication',
  'services',
  'guest',
  'lines',
  'james',
  'chuang',
  'writes',
  'leave',
  'radio',
  'night',
  'may',
  'anything',
  'useful',
  'computers',
  'something',
  'useful',
  'even',
  'front',
  'ms',
  'dos',
  'windoze',
  'know',
  'schedule',
  'tasks',
  'mean',
  'computers',
  'hould',
  'shut',
  'every',
  'night',
  'bet',
  'starting',
  'nt',
  'every',
  'morning',
  'means',
  'good',
  'coffee',
  'break',
  'jamesc',
  'someone',
  'asks',
  'god',
  'say',
  'yes',
  'addition',
  'startup',
  'time',
  'leave',
  'things',
  'running',
  'pc',
  'doubles',
  'fax',
  'machine',
  'however',
  'original',
  'didnt',
  'get',
  'replies',
  'bios',
  'cmos',
  'dos',
  'clock',
  'date',
  'logic',
  'know',
  'ive',
  'running',
  'way',
  'many',
  'months',
  'recently',
  'last',
  'month',
  'noticed',
  'intermittent',
  'clock',
  'problem',
  'stated',
  'always',
  'date',
  'doesnt',
  'roll',
  'forward',
  'sometimes',
  'notice',
  'clock',
  'several',
  'minutes',
  'behind',
  'ought',
  'unattended',
  'following',
  'generally',
  'running',
  'minimized',
  'win',
  'clock',
  'winfax',
  'pro',
  'print',
  'manager',
  'ms',
  'word',
  'file',
  'manager',
  'program',
  'manager',
  'random',
  'screen',
  'saver',
  'generally',
  'running',
  'barry',
  'sardis',
  'home',
  'laurie',
  'avenue',
  'office',
  'san',
  'jose',
  'ca',
  'fax',
  'email'],
 ['jorg',
  'klinger',
  'riceburner',
  'respect',
  'nntp',
  'posting',
  'host',
  'ccu',
  'umanitoba',
  'ca',
  'organization',
  'university',
  'manitoba',
  'winnipeg',
  'canada',
  'lines',
  'michael',
  'manning',
  'writes',
  'article',
  'saint',
  'craig',
  'writes',
  'keeper',
  'tude',
  'writes',
  'people',
  'wave',
  'return',
  'wave',
  'im',
  'harley',
  'harley',
  'riders',
  'seldom',
  'wave',
  'back',
  'im',
  'duck',
  'squids',
  'dont',
  'wave',
  'return',
  'waves',
  'ever',
  'even',
  'tell',
  'take',
  'hand',
  'bars',
  'fall',
  'jorg',
  'klinger',
  'gsxr',
  'new',
  'arch',
  'eng',
  'services',
  'lost',
  'horizons',
  'cr',
  'think',
  'umanitoba',
  'man',
  'ca',
  'embalmer',
  'anonymous',
  'squidonk'],
 ['henry',
  'spencer',
  'keeping',
  'spacecraft',
  'funding',
  'cuts',
  'organization',
  'toronto',
  'zoology',
  'lines',
  'article',
  'james',
  'thomas',
  'green',
  'writes',
  'spacecraft',
  'shut',
  'funding',
  'cuts',
  'example',
  'couldnt',
  'magellan',
  'told',
  'go',
  'safe',
  'mode',
  'stay',
  'bobbing',
  'venus',
  'low',
  'power',
  'mode',
  'maybe',
  'years',
  'funding',
  'gets',
  'restored',
  'economy',
  'gets',
  'better',
  'hopefully',
  'could',
  'turned',
  'one',
  'consideration',
  'remember',
  'dont',
  'turn',
  'may',
  'able',
  'later',
  'isnt',
  'case',
  'reaching',
  'flipping',
  'switch',
  'much',
  'spacecraft',
  'working',
  'correctly',
  'execute',
  'turn',
  'command',
  'successfully',
  'spacecraft',
  'malfunction',
  'old',
  'age',
  'big',
  'concern',
  'radio',
  'clutter',
  'idle',
  'spacecraft',
  'radio',
  'clutter',
  'malfunctioning',
  'spacecraft',
  'longer',
  'turned',
  'work',
  'one',
  'mans',
  'work',
  'henry',
  'spencer',
  'toronto',
  'zoology',
  'kipling',
  'utzoo',
  'henry'],
 ['shai',
  'guday',
  'basil',
  'opinions',
  'water',
  'brain',
  'organization',
  'thinking',
  'machines',
  'corporation',
  'cambridge',
  'usa',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'composer',
  'think',
  'com',
  'article',
  'writes',
  'article',
  'alan',
  'stein',
  'writes',
  'guess',
  'hasan',
  'finally',
  'revealed',
  'source',
  'claim',
  'israel',
  'diverted',
  'water',
  'lebanon',
  'imagination',
  'alan',
  'stein',
  'mr',
  'water',
  'head',
  'never',
  'said',
  'israel',
  'diverted',
  'lebanese',
  'rivers',
  'fact',
  'said',
  'israel',
  'went',
  'southern',
  'lebanon',
  'make',
  'sure',
  'water',
  'used',
  'lebanese',
  'side',
  'water',
  'would',
  'run',
  'jordan',
  'river',
  'israel',
  'head',
  'course',
  'posting',
  'hard',
  'evidence',
  'facts',
  'much',
  'difficult',
  'bothered',
  'substantiate',
  'way',
  'basil',
  'know',
  'evidence',
  'would',
  'support',
  'imagine',
  'news',
  'report',
  'ancient',
  'times',
  'hasan',
  'writing',
  'newsflash',
  'cairo',
  'ap',
  'ancient',
  'press',
  'israel',
  'today',
  'denied',
  'egypt',
  'acces',
  'red',
  'sea',
  'typical',
  'display',
  'israelite',
  'agressiveness',
  'leader',
  'israelite',
  'slave',
  'revolt',
  'former',
  'prince',
  'moses',
  'parted',
  'red',
  'sea',
  'action',
  'estimated',
  'caused',
  'irreparable',
  'damage',
  'environment',
  'egyptian',
  'authorities',
  'said',
  'thousands',
  'fisherman',
  'denied',
  'livelihood',
  'parted',
  'waters',
  'pharaohs',
  'brave',
  'charioteers',
  'successful',
  'glorious',
  'attempt',
  'cause',
  'waters',
  'red',
  'sea',
  'return',
  'normal',
  'state',
  'unfortunately',
  'suffered',
  'heavy',
  'casualties',
  'hasan',
  'shai',
  'guday',
  'stealth',
  'bombers',
  'os',
  'software',
  'engineer',
  'thinking',
  'machines',
  'corp',
  'winged',
  'ninjas',
  'skies',
  'cambridge'],
 ['germano',
  'caronni',
  'fifth',
  'amendment',
  'passwords',
  'organization',
  'swiss',
  'federal',
  'institute',
  'technology',
  'eth',
  'zurich',
  'ch',
  'lines',
  'article',
  'jim',
  'mccoy',
  'writes',
  'set',
  'bbs',
  'uses',
  'public',
  'key',
  'encryption',
  'encryption',
  'files',
  'disk',
  'general',
  'setup',
  'designed',
  'users',
  'connect',
  'send',
  'private',
  'key',
  'encrypted',
  'using',
  'system',
  'public',
  'key',
  'users',
  'public',
  'private',
  'keypair',
  'used',
  'wrap',
  'one',
  'time',
  'session',
  'keys',
  'used',
  'encrypting',
  'files',
  'disk',
  'result',
  'even',
  'reveal',
  'system',
  'private',
  'key',
  'impossible',
  'anyone',
  'gain',
  'access',
  'files',
  'stored',
  'machine',
  'possible',
  'someone',
  'revealed',
  'system',
  'private',
  'key',
  'entice',
  'users',
  'revealing',
  'thier',
  'personal',
  'private',
  'keys',
  'authentication',
  'sequence',
  'answers',
  'general',
  'musings',
  'would',
  'appreciated',
  'question',
  'provider',
  'public',
  'bbs',
  'service',
  'arent',
  'bound',
  'law',
  'gurantee',
  'intelligble',
  'access',
  'data',
  'users',
  'bbs',
  'police',
  'comes',
  'sufficent',
  'authorisation',
  'guessed',
  'would',
  'basic',
  'condition',
  'systems',
  'run',
  'bbs',
  'time',
  'ago',
  'switzerland',
  'friendly',
  'greetings',
  'germano',
  'caronni',
  'instruments',
  'register',
  'things',
  'theyre',
  'designed',
  'register',
  'space',
  'still',
  'contains',
  'infinite',
  'unknowns',
  'pgp',
  'key',
  'id',
  'germano',
  'caronni',
  'fd',
  'ccf',
  'da',
  'ea',
  'dd'],
 ['david',
  'james',
  'hahn',
  'help',
  'inject',
  'article',
  'uwm',
  'eeinnc',
  'reply',
  'organization',
  'university',
  'wisconsin',
  'milwaukee',
  'lines',
  'nntp',
  'posting',
  'host',
  'originator',
  'article',
  'best',
  'way',
  'self',
  'injection',
  'right',
  'size',
  'needle',
  'choose',
  'correct',
  'spot',
  'streptomycin',
  'usually',
  'given',
  'intra',
  'muscularly',
  'thin',
  'needle',
  'guage',
  'select',
  'spot',
  'upper',
  'outer',
  'thigh',
  'major',
  'nerves',
  'blood',
  'vessels',
  'clean',
  'area',
  'antiseptic',
  'injection',
  'make',
  'sure',
  'inject',
  'deeply',
  'different',
  'kind',
  'pain',
  'felt',
  'needle',
  'enters',
  'muscle',
  'contrasted',
  'prick',
  'pierces',
  'skin',
  'ps',
  'try',
  'go',
  'doctor',
  'self',
  'treatment',
  'self',
  'injection',
  'avoided',
  'far',
  'possible',
  'areas',
  'least',
  'likely',
  'hurt',
  'little',
  'fat',
  'inject',
  'legs',
  'gut',
  'prefer',
  'gut',
  'stick',
  'degree',
  'angle',
  'barely',
  'feel',
  'im',
  'fat',
  'little',
  'gut',
  'legs',
  'however',
  'muscular',
  'pinch',
  'get',
  'anything',
  'inject',
  'degree',
  'angle',
  'still',
  'hurts',
  'rate',
  'absorbtion',
  'differs',
  'subcutaneous',
  'muscular',
  'injections',
  'however',
  'daily',
  'thing',
  'would',
  'best',
  'switch',
  'places',
  'every',
  'day',
  'keep',
  'consistencey',
  'although',
  'suggest',
  'switch',
  'legs',
  'sides',
  'stomach',
  'shot',
  'prevent',
  'irritation',
  'clean',
  'spot',
  'alcohol',
  'prep',
  'wait',
  'dry',
  'somewhat',
  'may',
  'get',
  'alcohol',
  'puncture',
  'course',
  'doesnt',
  'feel',
  'good',
  'way',
  'prevent',
  'irratation',
  'mark',
  'spot',
  'injected',
  'good',
  'way',
  'little',
  'round',
  'bandage',
  'put',
  'spot',
  'helps',
  'prevent',
  'injecting',
  'spot',
  'spacing',
  'sites',
  'accuartely',
  'apart',
  'experience',
  'hope',
  'itll',
  'help',
  'diabetes',
  'take',
  'injection',
  'every',
  'morning',
  'later',
  'david',
  'david',
  'hahn',
  'university',
  'wisconsin',
  'milwaukee'],
 ['jeffrey',
  'strait',
  'nra',
  'address',
  'organization',
  'university',
  'illinois',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'cheetah',
  'csl',
  'uiuc',
  'keywords',
  'nra',
  'waco',
  'rkba',
  'article',
  'james',
  'barker',
  'writes',
  'could',
  'someone',
  'email',
  'usnail',
  'address',
  'nra',
  'id',
  'like',
  'write',
  'letter',
  'encouraging',
  'see',
  'emphatically',
  'nd',
  'amendment',
  'restored',
  'form',
  'founding',
  'fathers',
  'intended',
  'national',
  'rifle',
  'association',
  'rhode',
  'island',
  'ave',
  'nw',
  'washington',
  'dc',
  'membership',
  'jeff',
  'strait',
  'university',
  'illinois',
  'phone',
  'ladies',
  'leave',
  'island',
  'survive',
  'basic',
  'recruit',
  'training',
  'weapon',
  'minister',
  'death',
  'praying',
  'war'],
 ['justin',
  'york',
  'clipper',
  'chip',
  'would',
  'work',
  'organization',
  'iowa',
  'state',
  'university',
  'ames',
  'ia',
  'lines',
  'talk',
  'clipper',
  'chip',
  'developed',
  'one',
  'question',
  'work',
  'get',
  'decrypted',
  'end',
  'party',
  'receiving',
  'phone',
  'call',
  'mail',
  'etc',
  'know',
  'code',
  'undo',
  'different',
  'method',
  'calling',
  'one',
  'party',
  'would',
  'another',
  'party',
  'decrypt',
  'doesnt',
  'mean',
  'someone',
  'else',
  'could',
  'also',
  'assume',
  'everyone',
  'different',
  'key',
  'would',
  'storing',
  'secure',
  'data',
  'later',
  'retrieval',
  'key',
  'seems',
  'like',
  'fundamental',
  'question',
  'little',
  'experience',
  'cryptosystems',
  'des',
  'someone',
  'could',
  'give',
  'explanation',
  'would',
  'used',
  'remember',
  'little',
  'experience',
  'sort',
  'thing',
  'would',
  'much',
  'appreciated',
  'justin',
  'york'],
 ['joseph',
  'dale',
  'fisher',
  'eternity',
  'hell',
  'hell',
  'organization',
  'indiana',
  'university',
  'lines',
  'article',
  'darius_lecointe',
  'writes',
  'insert',
  'deletion',
  'unnecessary',
  'quote',
  'notion',
  'god',
  'takes',
  'sort',
  'pleasure',
  'punishing',
  'people',
  'purpose',
  'hell',
  'destroy',
  'devil',
  'angels',
  'first',
  'god',
  'take',
  'sort',
  'pleasure',
  'punishing',
  'people',
  'mercy',
  'mercy',
  'compassion',
  'compassion',
  'ex',
  'however',
  'enjoyed',
  'punishing',
  'people',
  'sending',
  'hell',
  'would',
  'send',
  'jesus',
  'seek',
  'save',
  'lost',
  'luke',
  'earlier',
  'poster',
  'tried',
  'support',
  'eternal',
  'hell',
  'theory',
  'fact',
  'fallen',
  'angels',
  'destroyed',
  'remember',
  'bible',
  'teaches',
  'god',
  'reserved',
  'day',
  'judgement',
  'judgement',
  'soon',
  'come',
  'let',
  'suggest',
  'maybe',
  'believe',
  'eternal',
  'hell',
  'theory',
  'provide',
  'biblical',
  'evidence',
  'find',
  'stay',
  'away',
  'human',
  'theories',
  'take',
  'account',
  'references',
  'bible',
  'asked',
  'peter',
  'ff',
  'talks',
  'ungodly',
  'punished',
  'matthew',
  'also',
  'clear',
  'righteous',
  'gods',
  'eyes',
  'sent',
  'hell',
  'eternity',
  'thessalonians',
  'states',
  'cause',
  'trouble',
  'disciples',
  'punished',
  'everlasting',
  'destruction',
  'shut',
  'presence',
  'lord',
  'thessalonians',
  'talks',
  'refuse',
  'love',
  'truth',
  'condemned',
  'revelation',
  'talks',
  'difference',
  'overcomes',
  'listed',
  'verse',
  'fiery',
  'lake',
  'burning',
  'sulfur',
  'revelation',
  'gives',
  'indication',
  'follow',
  'beast',
  'tormented',
  'burning',
  'sulfur',
  'rest',
  'day',
  'night',
  'psalm',
  'wicked',
  'return',
  'grave',
  'nations',
  'forget',
  'god',
  'think',
  'sufficient',
  'prove',
  'point',
  'darius',
  'joe',
  'fisher',
  'following',
  'im',
  'mostly',
  'playing',
  'devils',
  'advocate',
  'im',
  'advocating',
  'either',
  'position',
  'concern',
  'people',
  'understand',
  'possible',
  'see',
  'passages',
  'different',
  'ways',
  'possible',
  'see',
  'eternal',
  'destruction',
  'destruction',
  'rev',
  'often',
  'uses',
  'term',
  'second',
  'death',
  'obvious',
  'understanding',
  'would',
  'seem',
  'final',
  'extinction',
  'problem',
  'nt',
  'speaks',
  'eternal',
  'punishment',
  'second',
  'death',
  'uses',
  'terms',
  'understood',
  'either',
  'way',
  'concern',
  'convince',
  'one',
  'view',
  'help',
  'people',
  'understand',
  'theres',
  'wide',
  'enough',
  'variety',
  'images',
  'possible',
  'understand',
  'either',
  'way',
  'tom',
  'albrecht',
  'commented',
  'primary',
  'point',
  'best',
  'keep',
  'people',
  'eternal',
  'fire',
  'whatever',
  'details',
  'make',
  'things',
  'interesting',
  'luke',
  'implies',
  'damned',
  'dont',
  'get',
  'resurrected',
  'presumably',
  'stay',
  'dead',
  'yes',
  'im',
  'aware',
  'possible',
  'understand',
  'passage',
  'non',
  'literal',
  'way',
  'peter',
  'ff',
  'talking',
  'angels',
  'talks',
  'holding',
  'hell',
  'final',
  'judgement',
  'isnt',
  'eternal',
  'punishement',
  'matthew',
  'talks',
  'sending',
  'cursed',
  'eternal',
  'fire',
  'prepared',
  'devil',
  'angels',
  'fact',
  'fire',
  'eternal',
  'doesnt',
  'mean',
  'people',
  'last',
  'flames',
  'forever',
  'particularly',
  'interesting',
  'comment',
  'fire',
  'prepared',
  'devil',
  'angels',
  'rev',
  'talk',
  'eternal',
  'fire',
  'well',
  'say',
  'beast',
  'false',
  'prophet',
  'tormented',
  'forever',
  'talking',
  'people',
  'thrown',
  'referred',
  'second',
  'death',
  'sounds',
  'like',
  'extinction',
  'eternal',
  'torment',
  'possible',
  'fire',
  'different',
  'effects',
  'supernatural',
  'entities',
  'devil',
  'humans',
  'thessalonians',
  'similarly',
  'everlasting',
  'destruction',
  'necessarily',
  'eternal',
  'torment',
  'one',
  'clearly',
  'understood',
  'either',
  'way',
  'think',
  'least',
  'possible',
  'think',
  'everlasting',
  'used',
  'contrast',
  'kind',
  'destruction',
  'occur',
  'life',
  'final',
  'destruction',
  'occurs',
  'eternity',
  'thessalonians',
  'talks',
  'destruction',
  'revelation',
  'see',
  'comment',
  'revelation',
  'probably',
  'best',
  'quotes',
  'even',
  'doesnt',
  'explicitly',
  'say',
  'people',
  'suffer',
  'forever',
  'says',
  'smoke',
  'presumably',
  'fire',
  'eternal',
  'respite',
  'doesnt',
  'say',
  'people',
  'tormented',
  'forever',
  'psalm',
  'dont',
  'see',
  'says',
  'anything',
  'relevant',
  'issue',
  'clh'],
 ['jorg',
  'klinger',
  'uh',
  'der',
  'whassa',
  'deltabox',
  'nntp',
  'posting',
  'host',
  'ccu',
  'umanitoba',
  'ca',
  'organization',
  'university',
  'manitoba',
  'winnipeg',
  'canada',
  'lines',
  'godfrey',
  'digiorgi',
  'writes',
  'someone',
  'tell',
  'deltabox',
  'frame',
  'relation',
  'frame',
  'hawk',
  'gt',
  'way',
  'next',
  'time',
  'guy',
  'comes',
  'parking',
  'lot',
  'sez',
  'hey',
  'dude',
  'nice',
  'bike',
  'deltabox',
  'frame',
  'say',
  'something',
  'besides',
  'duh',
  'er',
  'huh',
  'beleive',
  'called',
  'dentabox',
  'frame',
  'nothing',
  'putty',
  'paint',
  'wont',
  'fix',
  'jorg',
  'klinger',
  'gsxr',
  'new',
  'arch',
  'eng',
  'services',
  'lost',
  'horizons',
  'cr',
  'think',
  'umanitoba',
  'man',
  'ca',
  'embalmer',
  'anonymous',
  'squidonk'],
 ['jayne',
  'kulikauskas',
  'technology',
  'organization',
  'kulikauskas',
  'home',
  'lines',
  'michael',
  'covington',
  'writes',
  'computer',
  'fantasyland',
  'ones',
  'disappear',
  'people',
  'net',
  'real',
  'slander',
  'deception',
  'carried',
  'net',
  'wrong',
  'would',
  'carried',
  'paper',
  'face',
  'face',
  'well',
  'said',
  'michael',
  'catholic',
  'traditon',
  'list',
  'behaviours',
  'called',
  'spiritual',
  'works',
  'mercy',
  'admonish',
  'sinner',
  'instruct',
  'ignorant',
  'counsel',
  'doubtful',
  'comfort',
  'sorrowful',
  'bear',
  'wrongs',
  'patiently',
  'forgive',
  'injury',
  'pray',
  'living',
  'dead',
  'yes',
  'know',
  'controversy',
  'dont',
  'want',
  'argue',
  'things',
  'direct',
  'application',
  'usenet',
  'people',
  'ask',
  'questions',
  'express',
  'doubts',
  'need',
  'comfort',
  'prayers',
  'imagine',
  'would',
  'happen',
  'flame',
  'wars',
  'bore',
  'wrongs',
  'patiently',
  'forgave',
  'injuries',
  'would',
  'add',
  'probably',
  'appropriate',
  'admonishing',
  'private',
  'email',
  'publicly',
  'jayne',
  'kulikauskas'],
 ['matthew',
  'trost',
  'best',
  'times',
  'worst',
  'times',
  'nntp',
  'posting',
  'host',
  'eugene',
  'convex',
  'com',
  'organization',
  'convex',
  'computer',
  'corporation',
  'richardson',
  'tx',
  'usa',
  'disclaimer',
  'message',
  'written',
  'user',
  'convex',
  'computer',
  'corp',
  'opinions',
  'expressed',
  'user',
  'necessarily',
  'convex',
  'lines',
  'paul',
  'blumstein',
  'writes',
  'note',
  'ny',
  'times',
  'turned',
  'screw',
  'unscrewed',
  'inside',
  'mikuni',
  'hs',
  'carb',
  'keep',
  'hearing',
  'one',
  'keep',
  'screws',
  'tight',
  'bike',
  'never',
  'thought',
  'screws',
  'inside',
  'carb',
  'least',
  'roadside',
  'fixable',
  'way',
  'hardly',
  'time',
  'better',
  'check',
  'screws',
  'carb',
  'suck',
  'one',
  'jug',
  'munge',
  'piston',
  'valve',
  'ive',
  'seen',
  'happen',
  'matthew'],
 ['zauberer',
  'warning',
  'please',
  'read',
  'organization',
  'purdue',
  'university',
  'distribution',
  'usa',
  'lines',
  'sorry',
  'last',
  'post',
  'server',
  'neglected',
  'send',
  'message',
  'please',
  'keep',
  'group',
  'automotive',
  'topics',
  'thank'],
 ['aamir',
  'hafeez',
  'qazi',
  'difference',
  'lexus',
  'series',
  'article',
  'uwm',
  'pr',
  'inn',
  'om',
  'reply',
  'organization',
  'university',
  'wisconsin',
  'milwaukee',
  'lines',
  'nntp',
  'posting',
  'host',
  'originator',
  'article',
  'eric',
  'lorenzo',
  'difference',
  'ls',
  'es',
  'gs',
  'seems',
  'lexus',
  'cant',
  'stop',
  'popping',
  'new',
  'models',
  'let',
  'put',
  'like',
  'similarity',
  'three',
  'models',
  'liter',
  'engine',
  'displacement',
  'actually',
  'sc',
  'coupe',
  'gs',
  'funky',
  'looking',
  'new',
  'sedan',
  'share',
  'liter',
  'inline',
  'six',
  'es',
  'popular',
  'small',
  'sedan',
  'uses',
  'shared',
  'camry',
  'sc',
  'luxury',
  'sports',
  'coupe',
  'gs',
  'new',
  'luxury',
  'sedan',
  'es',
  'base',
  'executive',
  'sedan',
  'three',
  'look',
  'completely',
  'different',
  'aamir',
  'qazi',
  'aamir',
  'qazi',
  'care',
  'id',
  'rather',
  'watch',
  'drying',
  'paint'],
 ['forsale',
  'men',
  'without',
  'hats',
  'folk',
  'part',
  'iii',
  'vinyl',
  'andrew',
  'king',
  'reply',
  'distribution',
  'world',
  'organization',
  'wibble',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'grinning',
  'evil',
  'death',
  'wrote',
  'men',
  'without',
  'hats',
  'folk',
  'part',
  'iii',
  'vinyl',
  'anyone',
  'willing',
  'part',
  'copy',
  'men',
  'without',
  'hats',
  'pop',
  'goes',
  'world',
  'album',
  'vinyl',
  'perhaps',
  'cd',
  'please',
  'contact',
  'wish',
  'purchase',
  'late',
  'tea',
  'lemmings',
  'please'],
 ['ferdinand',
  'oeinck',
  'detecting',
  'double',
  'points',
  'bezier',
  'curves',
  'organization',
  'node',
  'groningen',
  'nl',
  'lines',
  'im',
  'looking',
  'information',
  'detecting',
  'calculating',
  'double',
  'point',
  'cusp',
  'bezier',
  'curve',
  'algorithm',
  'literature',
  'reference',
  'mail',
  'appreciated',
  'ferdinand'],
 ['ed',
  'green',
  'pixel',
  'cruncher',
  'live',
  'free',
  'quietly',
  'die',
  'organization',
  'sun',
  'microsystems',
  'rtp',
  'nc',
  'lines',
  'distribution',
  'world',
  'reply',
  'nntp',
  'posting',
  'host',
  'laser',
  'east',
  'sun',
  'com',
  'article',
  'tod',
  'johnson',
  'writes',
  'able',
  'avoid',
  'accident',
  'revving',
  'engine',
  'stock',
  'harley',
  'pipes',
  'make',
  'enough',
  'noise',
  'draw',
  'someones',
  'attention',
  'sure',
  'horns',
  'hand',
  'already',
  'throttle',
  'get',
  'many',
  'feet',
  'bike',
  'going',
  'mph',
  'goes',
  'seconds',
  'long',
  'would',
  'take',
  'push',
  'horn',
  'button',
  'think',
  'youd',
  'loose',
  'sure',
  'youre',
  'hands',
  'already',
  'throttle',
  'thumb',
  'already',
  'near',
  'horn',
  'button',
  'pushing',
  'horn',
  'button',
  'one',
  'simple',
  'move',
  'revving',
  'throttle',
  'requires',
  'either',
  'engaging',
  'clutch',
  'accelerating',
  'first',
  'complex',
  'manuver',
  'simple',
  'horn',
  'button',
  'push',
  'second',
  'aint',
  'bright',
  'potential',
  'hazard',
  'ahead',
  'besides',
  'unique',
  'sound',
  'horn',
  'effective',
  'attracting',
  'attention',
  'bdi',
  'cagers',
  'sound',
  'engine',
  'expect',
  'hear',
  'road',
  'usually',
  'case',
  'single',
  'anecdote',
  'hardly',
  'constitutes',
  'sound',
  'safety',
  'procedure',
  'answer',
  'feet',
  'ed',
  'green',
  'former',
  'ninjaite',
  'drinking',
  'last',
  'night',
  'biker',
  'showed',
  'picture',
  'said',
  'dod',
  'go',
  'get',
  'know',
  'youll',
  'like',
  'grateful',
  'dead',
  'seemed',
  'like',
  'least',
  'could'],
 ['bret',
  'wingert',
  'level',
  'organization',
  'ibm',
  'federal',
  'systems',
  'co',
  'software',
  'services',
  'ibm',
  'federal',
  'systems',
  'co',
  'software',
  'services',
  'disclaimer',
  'posting',
  'represents',
  'posters',
  'views',
  'ibm',
  'news',
  'software',
  'ureply',
  'lines',
  'henry',
  'spencer',
  'writes',
  'article',
  'fred',
  'mccall',
  'writes',
  'given',
  'ive',
  'heard',
  'shuttle',
  'software',
  'rated',
  'level',
  'level',
  'many',
  'also',
  'keep',
  'mind',
  'achieved',
  'sophisticated',
  'tools',
  'rather',
  'brute',
  'force',
  'ignorance',
  'attack',
  'problem',
  'challenger',
  'standdown',
  'simply',
  'threw',
  'hundreds',
  'people',
  'whole',
  'process',
  'hand',
  'think',
  'little',
  'inaccurate',
  'based',
  'feynmans',
  'account',
  'software',
  'development',
  'process',
  'standdown',
  'fred',
  'basically',
  'correct',
  'sophisticated',
  'tools',
  'lot',
  'effort',
  'painstaking',
  'care',
  'got',
  'one',
  'right',
  'challenger',
  'feynman',
  'cited',
  'software',
  'people',
  'exemplary',
  'compared',
  'engine',
  'people',
  'also',
  'noted',
  'software',
  'people',
  'starting',
  'feel',
  'management',
  'pressure',
  'cut',
  'corners',
  'hadnt',
  'give',
  'much',
  'yet',
  'among',
  'things',
  'software',
  'people',
  'worked',
  'hard',
  'get',
  'things',
  'right',
  'major',
  'pre',
  'flight',
  'simulations',
  'considered',
  'failure',
  'simulations',
  'nearly',
  'bad',
  'flight',
  'failure',
  'result',
  'number',
  'major',
  'simulation',
  'failures',
  'could',
  'counted',
  'one',
  'hand',
  'number',
  'flight',
  'failures',
  'zero',
  'fred',
  'mentioned',
  'elsewhere',
  'applies',
  'flight',
  'software',
  'software',
  'runs',
  'experiments',
  'typically',
  'mostly',
  'put',
  'together',
  'experimenters',
  'gets',
  'nowhere',
  'near',
  'level',
  'tender',
  'loving',
  'care',
  'none',
  'experimenters',
  'could',
  'afford',
  'work',
  'one',
  'mans',
  'work',
  'henry',
  'spencer',
  'toronto',
  'zoology',
  'kipling',
  'utzoo',
  'henry',
  'news',
  'software',
  'ureply',
  'bret',
  'wingert',
  'henry',
  'spencer',
  'writes',
  'article',
  'fred',
  'mccall',
  'writes',
  'given',
  'ive',
  'heard',
  'shuttle',
  'software',
  'rated',
  'level',
  'level',
  'many',
  'also',
  'keep',
  'mind',
  'achieved',
  'sophisticated',
  'tools',
  'rather',
  'brute',
  'force',
  'ignorance',
  'attack',
  'problem',
  'challenger',
  'standdown',
  'simply',
  'threw',
  'hundreds',
  'people',
  'whole',
  'process',
  'hand',
  'think',
  'little',
  'inaccurate',
  'based',
  'feynmans',
  'account',
  'software',
  'development',
  'process',
  'standdown',
  'fred',
  'basically',
  'correct',
  'sophisticated',
  'tools',
  'lot',
  'effort',
  'painstaking',
  'care',
  'got',
  'one',
  'right',
  'challenger',
  'feynman',
  'cited',
  'software',
  'people',
  'exemplary',
  'compared',
  'engine',
  'people',
  'also',
  'noted',
  'software',
  'people',
  'starting',
  'feel',
  'management',
  'pressure',
  'cut',
  'corners',
  'hadnt',
  'give',
  'much',
  'yet',
  'fred',
  'mentioned',
  'elsewhere',
  'applies',
  'flight',
  'software',
  'software',
  'runs',
  'experiments',
  'typically',
  'mostly',
  'put',
  'together',
  'experimenters',
  'gets',
  'nowhere',
  'near',
  'level',
  'tender',
  'loving',
  'care',
  'couple',
  'points',
  'thread',
  'using',
  'processes',
  'since',
  'way',
  'challenger',
  'challenger',
  'self',
  'uncover',
  'flaws',
  'mr',
  'spencer',
  'says',
  'large',
  'true',
  'process',
  'dependent',
  'sophisticated',
  'tools',
  'case',
  'tools',
  'however',
  'tools',
  'cannot',
  'fix',
  'bad',
  'process',
  'also',
  'tool',
  'support',
  'hal',
  'shuttle',
  'language',
  'somewhat',
  'limited',
  'onboard',
  'flight',
  'software',
  'project',
  'rated',
  'level',
  'nasa',
  'team',
  'group',
  'generates',
  'kslocs',
  'verified',
  'code',
  'per',
  'year',
  'nasa',
  'feel',
  'free',
  'call',
  'organization',
  'interested',
  'info',
  'software',
  'development',
  'process',
  'bret',
  'wingert',
  'fax',
  'bret',
  'wingert',
  'fax'],
 ['virgilio',
  'dean',
  'velasco',
  'jr',
  'arrogance',
  'christians',
  'organization',
  'case',
  'western',
  'reserve',
  'univ',
  'cleveland',
  'ohio',
  'usa',
  'lines',
  'article',
  'pixie',
  'writes',
  'pardon',
  'humble',
  'atheist',
  'exactly',
  'difference',
  'holding',
  'revealed',
  'truth',
  'blind',
  'faith',
  'basis',
  'regardless',
  'evidence',
  'may',
  'find',
  'contrary',
  'absolute',
  'truth',
  'fully',
  'expecting',
  'people',
  'believe',
  'arrogance',
  'sound',
  'like',
  'one',
  'see',
  'wisdom',
  'whatsoever',
  'words',
  'im',
  'surprised',
  'see',
  'wisdom',
  'premises',
  'wrong',
  'word',
  'go',
  'claim',
  'christianity',
  'based',
  'blind',
  'faith',
  'simply',
  'look',
  'current',
  'thread',
  'evidence',
  'jesus',
  'resurrection',
  'evidence',
  'jesus',
  'real',
  'triumphed',
  'death',
  'furthermore',
  'say',
  'christians',
  'hold',
  'beliefs',
  'regardless',
  'evidence',
  'may',
  'find',
  'contrary',
  'without',
  'evidence',
  'support',
  'claim',
  'statement',
  'little',
  'ad',
  'hominem',
  'argument',
  'mind',
  'dont',
  'mean',
  'personal',
  'attack',
  'im',
  'merely',
  'pointing',
  'intellectual',
  'dishonesty',
  'behind',
  'condemning',
  'christianity',
  'fashion',
  'would',
  'make',
  'much',
  'sense',
  'could',
  'prove',
  'christians',
  'base',
  'belief',
  'empty',
  'nothings',
  'ignore',
  'evidence',
  'contrary',
  'expect',
  'attack',
  'make',
  'sense',
  'virgilio',
  'dean',
  'velasco',
  'jr',
  'department',
  'electrical',
  'engg',
  'applied',
  'physics',
  'cwru',
  'graduate',
  'student',
  'roboticist',
  'training',
  'wannabee',
  'bullwinkle',
  'mans',
  'intimidating',
  'referee',
  'boss',
  'well',
  'doesnt',
  'look',
  'like',
  'one',
  'jewish',
  'carpenter'],
 ['jake',
  'livni',
  'israeli',
  'terrorism',
  'organization',
  'department',
  'redundancy',
  'department',
  'lines',
  'article',
  'hamaza',
  'salah',
  'writes',
  'andi',
  'beyer',
  'writes',
  'andis',
  'posting',
  'deleted',
  'hamazas',
  'comment',
  'well',
  'said',
  'mr',
  'beyer',
  'andi',
  'get',
  'full',
  'fledged',
  'support',
  'hamaza',
  'salah',
  'know',
  'youre',
  'wrong',
  'track',
  'jake',
  'livni',
  'ten',
  'years',
  'george',
  'bush',
  'american',
  'occupied',
  'new',
  'york',
  'replaced',
  'jimmy',
  'carter',
  'opinions',
  'employer',
  'opinions',
  'standard',
  'failed',
  'president'],
 ['jorge',
  'lach',
  'sun',
  'bos',
  'hardware',
  'typewriter',
  'computer',
  'interface',
  'organization',
  'sun',
  'microsystems',
  'inc',
  'bdc',
  'lines',
  'distribution',
  'usa',
  'reply',
  'nntp',
  'posting',
  'host',
  'erex',
  'east',
  'sun',
  'com',
  'following',
  'item',
  'sale',
  'electronic',
  'typewriter',
  'panasonic',
  'kt',
  'memory',
  'small',
  'lcd',
  'display',
  'im',
  'selling',
  'bundled',
  'panasonic',
  'computer',
  'interface',
  'rpk',
  'typewriter',
  'connect',
  'pc',
  'parallel',
  'port',
  'sorry',
  'cable',
  'works',
  'perfect',
  'even',
  'windows',
  'tty',
  'printer',
  'great',
  'need',
  'send',
  'letter',
  'typewriter',
  'look',
  'stand',
  'alone',
  'mode',
  'pitches',
  'several',
  'effects',
  'like',
  'underline',
  'bold',
  'overstrike',
  'built',
  'dictionary',
  'character',
  'word',
  'line',
  'correction',
  'asking',
  'typewriter',
  'interface',
  'jorge',
  'lach',
  'sun',
  'microsystems',
  'computer',
  'corporation',
  'east',
  'coast',
  'division',
  'chelmsford'],
 ['stan',
  'willis',
  'kings',
  'playoff',
  'notes',
  'stauber',
  'tv',
  'ratings',
  'etc',
  'reply',
  'stan',
  'willis',
  'organization',
  'none',
  'lines',
  'los',
  'angeles',
  'kings',
  'notes',
  'playoffs',
  'stauber',
  'disturbed',
  'third',
  'man',
  'theme',
  'rick',
  'sadowski',
  'daily',
  'news',
  'barry',
  'melroses',
  'decision',
  'stick',
  'robb',
  'stauber',
  'stands',
  'rather',
  'crease',
  'even',
  'bench',
  'stanley',
  'cup',
  'playoffs',
  'sit',
  'well',
  'rookie',
  'goaltender',
  'want',
  'part',
  'team',
  'crucial',
  'time',
  'year',
  'fun',
  'time',
  'year',
  'im',
  'stauber',
  'said',
  'emotion',
  'monday',
  'think',
  'worked',
  'hard',
  'enough',
  'stauber',
  'said',
  'accepts',
  'melroses',
  'choice',
  'kelly',
  'hrudey',
  'teams',
  'top',
  'goalie',
  'playoff',
  'series',
  'calgary',
  'flames',
  'hrudey',
  'made',
  'saves',
  'sundays',
  'opening',
  'victory',
  'stauber',
  'clearly',
  'upset',
  'sudden',
  'status',
  'man',
  'behind',
  'rick',
  'knickle',
  'stauber',
  'record',
  'goals',
  'average',
  'stretch',
  'regular',
  'season',
  'nearly',
  'wrestled',
  'job',
  'hrudey',
  'knickle',
  'decisions',
  'bloated',
  'average',
  'twice',
  'yanked',
  'games',
  'stomach',
  'cramps',
  'hasnt',
  'played',
  'since',
  'march',
  'yet',
  'series',
  'resumes',
  'wednesday',
  'knickle',
  'serve',
  'hrudeys',
  'backup',
  'stauber',
  'satisfy',
  'playoff',
  'hunger',
  'munching',
  'olympic',
  'saddledome',
  'popcorn',
  'im',
  'supposedly',
  'close',
  'starter',
  'could',
  'starter',
  'dropped',
  'happened',
  'stauber',
  'wondered',
  'id',
  'happy',
  'feel',
  'least',
  'part',
  'team',
  'playoffs',
  'perhaps',
  'stauber',
  'eventually',
  'get',
  'chance',
  'melrose',
  'apparently',
  'convinced',
  'year',
  'old',
  'capable',
  'handling',
  'playoff',
  'pressure',
  'insisting',
  'kings',
  'goalie',
  'future',
  'melrose',
  'said',
  'stauber',
  'flubbed',
  'four',
  'big',
  'games',
  'asked',
  'win',
  'season',
  'according',
  'melrose',
  'loss',
  'san',
  'jose',
  'dec',
  'loss',
  'new',
  'york',
  'rangers',
  'jan',
  'tie',
  'detroit',
  'feb',
  'loss',
  'vancouver',
  'thursday',
  'four',
  'times',
  'season',
  'robb',
  'could',
  'emerged',
  'elite',
  'goalie',
  'could',
  'taken',
  'away',
  'kelly',
  'hrudey',
  'didnt',
  'melrose',
  'said',
  'elite',
  'goaltender',
  'carry',
  'ball',
  'give',
  'mark',
  'great',
  'goalie',
  'isnt',
  'satisfied',
  'backup',
  'im',
  'blaming',
  'robb',
  'losses',
  'youre',
  'going',
  'youve',
  'got',
  'able',
  'walk',
  'talk',
  'youve',
  'got',
  'able',
  'play',
  'everything',
  'line',
  'robb',
  'stauber',
  'great',
  'deal',
  'ability',
  'maybe',
  'expect',
  'ouch',
  'remark',
  'stung',
  'stauber',
  'began',
  'season',
  'struggled',
  'team',
  'hit',
  'mid',
  'season',
  'slump',
  'didnt',
  'play',
  'month',
  'knickle',
  'signed',
  'san',
  'diego',
  'gulls',
  'roster',
  'came',
  'end',
  'expect',
  'anybody',
  'including',
  'barry',
  'melrose',
  'said',
  'stauber',
  'three',
  'year',
  'star',
  'university',
  'minnesota',
  'left',
  'school',
  'development',
  'hampered',
  'string',
  'serious',
  'injuries',
  'ive',
  'last',
  'four',
  'years',
  'two',
  'knee',
  'operations',
  'herniated',
  'disk',
  'back',
  'shoulder',
  'surgery',
  'go',
  'obviously',
  'expect',
  'lot',
  'otherwise',
  'wouldnt',
  'anybody',
  'would',
  'disagree',
  'doesnt',
  'know',
  'im',
  'saying',
  'barry',
  'doesnt',
  'know',
  'dont',
  'say',
  'ive',
  'without',
  'expectations',
  'anything',
  'im',
  'perfectionist',
  'stauber',
  'acknowledged',
  'played',
  'poorly',
  'four',
  'games',
  'melrose',
  'mentioned',
  'even',
  'though',
  'didnt',
  'play',
  'well',
  'get',
  'knocked',
  'maybe',
  'three',
  'bit',
  'jump',
  'said',
  'youre',
  'almost',
  'play',
  'good',
  'game',
  'youre',
  'dont',
  'youre',
  'jack',
  'nicklaus',
  'shoot',
  'explain',
  'thats',
  'barry',
  'wanted',
  'explain',
  'didnt',
  'come',
  'counted',
  'dont',
  'know',
  'know',
  'sport',
  'ill',
  'melroses',
  'goalie',
  'future',
  'statement',
  'doesnt',
  'mean',
  'much',
  'stauber',
  'know',
  'ill',
  'future',
  'said',
  'game',
  'kings',
  'flames',
  'playoff',
  'series',
  'drew',
  'nielsen',
  'rating',
  'abc',
  'channel',
  'la',
  'kings',
  'averaged',
  'nielsen',
  'rating',
  'regular',
  'season',
  'games',
  'aired',
  'channel',
  'around',
  'nhl',
  'san',
  'jose',
  'fired',
  'coach',
  'george',
  'kingston',
  'lead',
  'team',
  'mark',
  'nd',
  'nhl',
  'season',
  'kingston',
  'past',
  'years',
  'sharks',
  'former',
  'islander',
  'executive',
  'bill',
  'torrey',
  'named',
  'president',
  'expansion',
  'florida',
  'panthers',
  'bobby',
  'clarke',
  'named',
  'clubs',
  'general',
  'manager',
  'last',
  'nights',
  'games',
  'win',
  'van',
  'van',
  'leads',
  'tor',
  'det',
  'det',
  'leads',
  'stan',
  'willis',
  'net',
  'contact',
  'kings',
  'talk',
  'kings',
  'mailing',
  'list',
  'subscribe',
  'unsubscribe'],
 ['roland',
  'behunin',
  'anybody',
  'schedule',
  'games',
  'sunday',
  'apr',
  'organization',
  'case',
  'western',
  'reserve',
  'university',
  'cleveland',
  'ohio',
  'usa',
  'lines',
  'nntp',
  'posting',
  'host',
  'hela',
  'ins',
  'cwru',
  'hello',
  'hockey',
  'fans',
  'bonjour',
  'tout',
  'le',
  'monde',
  'well',
  'salt',
  'lake',
  'city',
  'past',
  'sunday',
  'local',
  'abc',
  'station',
  'decided',
  'televise',
  'hockey',
  'games',
  'la',
  'directrous',
  'de',
  'programme',
  'est',
  'la',
  'tete',
  'de',
  'merde',
  'anyway',
  'satellite',
  'dish',
  'friends',
  'hockey',
  'invited',
  'watch',
  'games',
  'coming',
  'sunday',
  'apr',
  'find',
  'correct',
  'game',
  'times',
  'calgary',
  'la',
  'game',
  'times',
  'showing',
  'everything',
  'mdt',
  'pm',
  'mdt',
  'even',
  'sure',
  'games',
  'going',
  'played',
  'coming',
  'sunday',
  'abc',
  'mucked',
  'schedule',
  'think',
  'able',
  'pull',
  'three',
  'games',
  'pm',
  'pm',
  'mdt',
  'dish',
  'sure',
  'anybody',
  'schedule',
  'pleas',
  'emial',
  'see',
  'telent',
  'get',
  'rec',
  'sport',
  'hockey',
  'sometimes',
  'difficult',
  'get',
  'link',
  'thanks',
  'advance',
  'merci',
  'davance',
  'anglais',
  'ou',
  'francais',
  'daccord',
  'roland',
  'behunin',
  'roland'],
 ['years',
  'biggest',
  'worst',
  'opinion',
  'reply',
  'mtjensen',
  'organization',
  'niels',
  'bohr',
  'institute',
  'nordita',
  'copenhagen',
  'lines',
  'article',
  'bryan',
  'smale',
  'writes',
  'thinking',
  'teams',
  'mvps',
  'biggest',
  'surprises',
  'biggest',
  'disappointments',
  'year',
  'observations',
  'admittedly',
  'lacking',
  'opportunity',
  'see',
  'teams',
  'amount',
  'anyway',
  'mvp',
  'valuable',
  'player',
  'team',
  'terms',
  'points',
  'terms',
  'leadership',
  'cant',
  'win',
  'without',
  'biggest',
  'surprise',
  'player',
  'rose',
  'expectation',
  'player',
  'may',
  'raised',
  'level',
  'game',
  'new',
  'height',
  'even',
  'new',
  'level',
  'doesnt',
  'necessarily',
  'warrant',
  'allstar',
  'berth',
  'includes',
  'players',
  'outset',
  'season',
  'may',
  'even',
  'teams',
  'plans',
  'biggest',
  'disappointment',
  'player',
  'expected',
  'picked',
  'denis',
  'savard',
  'montreal',
  'new',
  'emphasis',
  'offence',
  'brought',
  'demers',
  'shouldnt',
  'savard',
  'done',
  'better',
  'team',
  'biggest',
  'biggest',
  'team',
  'mvp',
  'surprise',
  'disappointment',
  'boston',
  'bruins',
  'oates',
  'sweeney',
  'wesley',
  'buffalo',
  'sabres',
  'lafontaine',
  'mogilny',
  'audette',
  'jinx',
  'calgary',
  'flames',
  'roberts',
  'reichel',
  'petit',
  'chicago',
  'blackhawks',
  'roenick',
  'ruuttu',
  'goulet',
  'detroit',
  'red',
  'wings',
  'yzerman',
  'chaisson',
  'kozlov',
  'edmonton',
  'oilers',
  'manson',
  'buchberger',
  'mellanby',
  'hartford',
  'whalers',
  'sanderson',
  'cassells',
  'corriveau',
  'los',
  'angeles',
  'kings',
  'robitaille',
  'donnelly',
  'hrudey',
  'minnesota',
  'north',
  'stars',
  'modano',
  'tinordi',
  'expected',
  'back',
  'broten',
  'montreal',
  'canadiens',
  'muller',
  'lebeau',
  'savard',
  'new',
  'jersey',
  'devils',
  'stevens',
  'semak',
  'maclean',
  'new',
  'york',
  'islanders',
  'turgeon',
  'king',
  'finally',
  'marois',
  'new',
  'york',
  'rangers',
  'messier',
  'kovalev',
  'bourque',
  'ottawa',
  'senators',
  'maciver',
  'baker',
  'jelinek',
  'philadelphia',
  'flyers',
  'lindros',
  'recchi',
  'fedyk',
  'galley',
  'eklund',
  'pittsburgh',
  'penguins',
  'lemieux',
  'tocchet',
  'even',
  'jagr',
  'quebec',
  'nordiques',
  'sakic',
  'ricci',
  'kovalenko',
  'pearson',
  'san',
  'jose',
  'sharks',
  'kisio',
  'gaudreau',
  'maley',
  'st',
  'louis',
  'blues',
  'shanahan',
  'joseph',
  'ron',
  'sutter',
  'tampa',
  'bay',
  'lightening',
  'bradley',
  'bradley',
  'creighton',
  'kasper',
  'toronto',
  'maple',
  'leafs',
  'gilmour',
  'potvin',
  'ellett',
  'anderson',
  'vancouver',
  'canucks',
  'bure',
  'nedved',
  'finally',
  'momesso',
  'washington',
  'capitals',
  'hatcher',
  'bondra',
  'cote',
  'elynuik',
  'winnipeg',
  'jets',
  'selanne',
  'selanne',
  'druce',
  'mentioned',
  'top',
  'impressions',
  'sit',
  'would',
  'welcome',
  'opinions',
  'fans',
  'nearer',
  'teams',
  'words',
  'anywhere',
  'away',
  'toronto',
  'newspaper',
  'bryan'],
 ['matthew',
  'deluca',
  'nuclear',
  'waste',
  'organization',
  'dorsai',
  'grey',
  'captains',
  'lines',
  'nntp',
  'posting',
  'host',
  'oit',
  'gatech',
  'article',
  'william',
  'reiken',
  'writes',
  'ok',
  'creation',
  'oil',
  'producing',
  'bacteria',
  'figure',
  'make',
  'eat',
  'make',
  'shit',
  'comments',
  'sure',
  'keep',
  'using',
  'oil',
  'hydrogen',
  'electric',
  'economy',
  'would',
  'likely',
  'cleaner',
  'efficient',
  'long',
  'run',
  'laws',
  'supply',
  'demand',
  'get',
  'transition',
  'underway',
  'reach',
  'critical',
  'stage',
  'shortage',
  'matthew',
  'deluca',
  'georgia',
  'institute',
  'technology',
  'atlanta',
  'georgia',
  'uucp',
  'decvax',
  'hplabs',
  'ncar',
  'purdue',
  'rutgers',
  'gatech',
  'prism',
  'matthew',
  'internet'],
 ['adam',
  'shostack',
  'sea',
  'sea',
  'said',
  'rivers',
  'organization',
  'aiken',
  'computation',
  'lab',
  'harvard',
  'university',
  'lines',
  'article',
  'ahmed',
  'abu',
  'abed',
  'writes',
  'sick',
  'tired',
  'driving',
  'jews',
  'sea',
  'sentance',
  'attributed',
  'islamic',
  'movements',
  'plo',
  'simply',
  'cant',
  'proven',
  'part',
  'plan',
  'ok',
  'ill',
  'admit',
  'cant',
  'find',
  'quote',
  'meager',
  'online',
  'resources',
  'find',
  'little',
  'gem',
  'arabs',
  'set',
  'volcano',
  'arabs',
  'part',
  'world',
  'people',
  'continue',
  'fuel',
  'torch',
  'revolution',
  'rivers',
  'blood',
  'whole',
  'occupied',
  'homeland',
  'liberated',
  'yasser',
  'arafat',
  'ap',
  'ahmed',
  'right',
  'nothing',
  'driving',
  'jews',
  'sea',
  'bit',
  'ethnic',
  'cleansing',
  'river',
  'blood',
  'improvement',
  'adam',
  'adam',
  'shostack',
  'budget',
  'big',
  'enough',
  'drugs',
  'sexual',
  'favors',
  'sure',
  'wouldnt',
  'waste',
  'members',
  'congress',
  'john',
  'perry',
  'barlow'],
 ['tom',
  'albrecht',
  'old',
  'vs',
  'new',
  'testament',
  'organization',
  'applied',
  'ltd',
  'lines',
  'writes',
  'jillustrate',
  'pointing',
  'way',
  'god',
  'administers',
  'judgment',
  'ot',
  'sins',
  'forgiven',
  'rather',
  'covered',
  'age',
  'church',
  'sins',
  'forgiven',
  'taken',
  'away',
  'power',
  'sin',
  'put',
  'death',
  'distinction',
  'seems',
  'quite',
  'arbitrary',
  'blessed',
  'man',
  'whose',
  'iniquities',
  'forgiven',
  'whose',
  'sin',
  'covered',
  'ps',
  'quoted',
  'apostle',
  'paul',
  'even',
  'david',
  'also',
  'describeth',
  'blessedness',
  'man',
  'unto',
  'god',
  'imputeth',
  'righteousness',
  'without',
  'works',
  'saying',
  'blessed',
  'whose',
  'iniquities',
  'forgiven',
  'whose',
  'sins',
  'covered',
  'blessed',
  'man',
  'lord',
  'impute',
  'sin',
  'rom',
  'biblical',
  'perspective',
  'seems',
  'foregiveness',
  'covering',
  'parallel',
  'equivalent',
  'concepts',
  'testaments',
  'dispensational',
  'distinction',
  'unwarranted',
  'millenium',
  'read',
  'sins',
  'dealt',
  'immediately',
  'present',
  'ie',
  'christ',
  'present',
  'earth',
  'rulership',
  'christ',
  'im',
  'sure',
  'rex',
  'scripture',
  'back',
  'youre',
  'suggesting',
  'jesus',
  'going',
  'travel',
  'around',
  'dealing',
  'individual',
  'violations',
  'law',
  'millions',
  'perhaps',
  'billions',
  'people',
  'activity',
  'moses',
  'lawgiver',
  'considered',
  'unwise',
  'cf',
  'ex',
  'ff',
  'makes',
  'interesting',
  'speculation',
  'though',
  'ill',
  'leave',
  'comments',
  'called',
  'bema',
  'seat',
  'vs',
  'throne',
  'judgments',
  'someone',
  'else',
  'also',
  'seems',
  'like',
  'unnecessary',
  'divisions',
  'ala',
  'tom',
  'albrecht'],
 ['len',
  'howard',
  'sin',
  'block',
  'prayers',
  'organization',
  'pegasus',
  'honolulu',
  'lines',
  'article',
  'jayne',
  'kulikauskas',
  'writes',
  'mike',
  'mccormick',
  'writes',
  'honoring',
  'wives',
  'cause',
  'prayers',
  'hindered',
  'prayers',
  'may',
  'hindered',
  'peter',
  'one',
  'interpretation',
  'ive',
  'heard',
  'verse',
  'refers',
  'sin',
  'physically',
  'abusing',
  'ones',
  'wife',
  'husband',
  'usually',
  'physically',
  'stronger',
  'wife',
  'permitted',
  'dominate',
  'must',
  'honor',
  'sister',
  'christ',
  'would',
  'therefore',
  'example',
  'specific',
  'sin',
  'blocks',
  'prayer',
  'jayne',
  'kulikauskas',
  'would',
  'bit',
  'specific',
  'looking',
  'verse',
  'regard',
  'blocking',
  'prayer',
  'trouble',
  'thinking',
  'god',
  'would',
  'allow',
  'anything',
  'block',
  'access',
  'prayer',
  'especially',
  'sinned',
  'praying',
  'forgivenenss',
  'see',
  'however',
  'prayer',
  'life',
  'might',
  'hindered',
  'sin',
  'concentrating',
  'causing',
  'sin',
  'happened',
  'may',
  'thinking',
  'prayer',
  'thus',
  'prayers',
  'hindered',
  'actions',
  'dont',
  'think',
  'anything',
  'block',
  'transmission',
  'reception',
  'prayer',
  'god',
  'shalom',
  'len',
  'howard'],
 ['keith',
  'hanlan',
  'ggrrrrrr',
  'cages',
  'double',
  'parking',
  'motorcycles',
  'pisses',
  'nntp',
  'posting',
  'host',
  'bcarh',
  'organization',
  'bell',
  'northern',
  'research',
  'ltd',
  'ottawa',
  'lines',
  'article',
  'tommy',
  'marcus',
  'mcguire',
  'writes',
  'however',
  'nothing',
  'motorcycling',
  'unless',
  'consider',
  'vw',
  'bike',
  'however',
  'nothing',
  'motorcycling',
  'unless',
  'consider',
  'amazona',
  'bike',
  'keith',
  'hanlan',
  'bell',
  'northern',
  'research',
  'ottawa',
  'canada'],
 ['david',
  'demers',
  'scoring',
  'runs',
  'notes',
  'jays',
  'vs',
  'indians',
  'series',
  'distribution',
  'na',
  'organization',
  'cse',
  'dept',
  'uc',
  'san',
  'diego',
  'lines',
  'nntp',
  'posting',
  'host',
  'beowulf',
  'ucsd',
  'article',
  'david',
  'tate',
  'writes',
  'uh',
  'right',
  'also',
  'forgot',
  'cant',
  'get',
  'rbi',
  'barring',
  'hr',
  'nobody',
  'base',
  'fraction',
  'runs',
  'come',
  'solo',
  'hr',
  'actually',
  'padres',
  'year',
  'far',
  'th',
  'league',
  'hrs',
  'solo',
  'shots',
  'pythagorean',
  'projection',
  'puts',
  'winning',
  'percentage',
  'need',
  'pitching',
  'help',
  'fast',
  'good',
  'news',
  'though',
  'hurst',
  'throwing',
  'curveballs',
  'pain',
  'threw',
  'pitches',
  'yesterday',
  'back',
  'couple',
  'weeks',
  'maybe',
  'trade',
  'yankees',
  'militello',
  'dave',
  'dave',
  'demers',
  'computer',
  'science',
  'engineering',
  'uc',
  'san',
  'diego',
  'ucsd',
  'cs',
  'demers',
  'la',
  'jolla',
  'ca',
  'fax'],
 ['keith',
  'allan',
  'schneider',
  'political',
  'atheists',
  'organization',
  'california',
  'institute',
  'technology',
  'pasadena',
  'lines',
  'nntp',
  'posting',
  'host',
  'punisher',
  'caltech',
  'jon',
  'livesey',
  'writes',
  'perhaps',
  'chimps',
  'failed',
  'evolve',
  'cooperative',
  'behaviour',
  'died',
  'left',
  'ones',
  'evolve',
  'behaviour',
  'entirely',
  'chance',
  'thats',
  'entire',
  'point',
  'going',
  'proclaim',
  'natural',
  'morality',
  'every',
  'time',
  'organism',
  'evolves',
  'cooperative',
  'behaviour',
  'yes',
  'natural',
  'morality',
  'morality',
  'developed',
  'naturally',
  'natural',
  'morality',
  'bee',
  'dance',
  'huh',
  'keith'],
 ['gordon',
  'banks',
  'amitriptyline',
  'reply',
  'gordon',
  'banks',
  'organization',
  'univ',
  'pittsburgh',
  'computer',
  'science',
  'lines',
  'article',
  'eric',
  'roberts',
  'writes',
  'could',
  'someone',
  'please',
  'tell',
  'effect',
  'overdose',
  'mg',
  'amitriptyline',
  'would',
  'probably',
  'would',
  'fatal',
  'adult',
  'dose',
  'could',
  'kill',
  'child',
  'patient',
  'would',
  'somnolent',
  'dilated',
  'pupils',
  'low',
  'blood',
  'pressure',
  'possibly',
  'cardiac',
  'arrhythmias',
  'gordon',
  'banks',
  'jxp',
  'skepticism',
  'chastity',
  'intellect',
  'shameful',
  'surrender',
  'soon'],
 ['greg',
  'ballentine',
  'wings',
  'win',
  'nntp',
  'posting',
  'host',
  'hudson',
  'uvic',
  'ca',
  'reply',
  'organization',
  'university',
  'victoria',
  'victoria',
  'bc',
  'canada',
  'lines',
  'article',
  'randy',
  'graca',
  'writes',
  'also',
  'think',
  'hard',
  'time',
  'pittsburgh',
  'face',
  'finals',
  'detroit',
  'sportswriters',
  'predicting',
  'although',
  'think',
  'bryan',
  'murray',
  'probably',
  'best',
  'gm',
  'ever',
  'seen',
  'hockey',
  'figure',
  'bryan',
  'murray',
  'took',
  'wings',
  'pretty',
  'good',
  'team',
  'contending',
  'stanley',
  'cup',
  'looked',
  'unlikely',
  'win',
  'pretty',
  'good',
  'team',
  'contending',
  'stanley',
  'cup',
  'looks',
  'unlikely',
  'win',
  'truly',
  'great',
  'gm',
  'would',
  'able',
  'make',
  'moves',
  'push',
  'team',
  'upper',
  'echelon',
  'nhl',
  'maybe',
  'win',
  'stanley',
  'cup',
  'good',
  'gm',
  'like',
  'murray',
  'maintain',
  'teams',
  'success',
  'cant',
  'push',
  'next',
  'level',
  'history',
  'hockey',
  'several',
  'better',
  'gms',
  'murray',
  'way',
  'many',
  'name',
  'murray',
  'isnt',
  'even',
  'best',
  'gm',
  'league',
  'today',
  'fails',
  'comparison',
  'sinden',
  'sather',
  'savard',
  'caron',
  'fletcher',
  'quinn',
  'estimation',
  'cant',
  'imagine',
  'bryan',
  'murray',
  'best',
  'gm',
  'anyone',
  'ever',
  'seen',
  'hockey',
  'unless',
  'seen',
  'gms',
  'gregmeister'],
 ['brian',
  'buhrow',
  'need',
  'help',
  'finding',
  'dip',
  'switch',
  'settings',
  'jumper',
  'settings',
  'sx',
  'motherboard',
  'keywords',
  'jumper',
  'settings',
  'dip',
  'switch',
  'settings',
  'help',
  'computer',
  'sx',
  'organization',
  'national',
  'federation',
  'blind',
  'california',
  'lines',
  'hello',
  'net',
  'sx',
  'motherboard',
  'phoenix',
  'bios',
  'board',
  'ide',
  'controller',
  'port',
  'two',
  'board',
  'serial',
  'ports',
  'unfortunately',
  'dont',
  'manual',
  'beast',
  'would',
  'like',
  'able',
  'disable',
  'ide',
  'controller',
  'order',
  'mfm',
  'controller',
  'board',
  'says',
  'made',
  'korea',
  'uses',
  'chips',
  'chipset',
  'anyone',
  'give',
  'clue',
  'go',
  'configuring',
  'board',
  'ide',
  'controller',
  'go',
  'finding',
  'help',
  'would',
  'greatly',
  'appreciated',
  'thank',
  'advance',
  'assistance',
  'please',
  'mail',
  'responses',
  'news',
  'feed',
  'rather',
  'tenuous',
  'thank',
  'much',
  'brian'],
 ['phill',
  'hallam',
  'baker',
  'fillibuster',
  'lines',
  'reply',
  'organization',
  'desydeutsches',
  'elektronen',
  'synchrotron',
  'experiment',
  'zeus',
  'bei',
  'hera',
  'article',
  'david',
  'veal',
  'writes',
  'come',
  'original',
  'plan',
  'wasnt',
  'meant',
  'anything',
  'much',
  'federal',
  'government',
  'except',
  'keep',
  'british',
  'thats',
  'also',
  'untrue',
  'least',
  'wandering',
  'little',
  'closer',
  'toward',
  'reality',
  'articles',
  'confederation',
  'fell',
  'apart',
  'enough',
  'proof',
  'tad',
  'bit',
  'well',
  'yes',
  'federalist',
  'papers',
  'propaganda',
  'therefore',
  'difficult',
  'determine',
  'precisely',
  'maddison',
  'etc',
  'certainly',
  'emphasised',
  'limited',
  'role',
  'federal',
  'government',
  'necessarily',
  'true',
  'position',
  'like',
  'house',
  'lords',
  'copied',
  'given',
  'pretty',
  'wide',
  'powers',
  'unfortunately',
  'started',
  'thus',
  'gridlock',
  'set',
  'wasnt',
  'aware',
  'house',
  'lords',
  'wide',
  'powers',
  'impression',
  'pretty',
  'powerless',
  'compared',
  'house',
  'commons',
  'certainly',
  'didnt',
  'almost',
  'equal',
  'powers',
  'senate',
  'restricted',
  'may',
  'introduce',
  'bills',
  'relating',
  'raising',
  'revenue',
  'senate',
  'less',
  'powerful',
  'house',
  'lords',
  'period',
  'question',
  'stripping',
  'powers',
  'house',
  'lords',
  'occur',
  'david',
  'llloyd',
  'georges',
  'budget',
  'even',
  'despite',
  'house',
  'lords',
  'considerable',
  'power',
  'even',
  'today',
  'far',
  'rubber',
  'stamping',
  'body',
  'reading',
  'constitution',
  'writings',
  'gives',
  'absolutely',
  'reason',
  'believe',
  'senate',
  'wasnt',
  'intended',
  'make',
  'law',
  'making',
  'powers',
  'fact',
  'grid',
  'lock',
  'appears',
  'designed',
  'system',
  'senate',
  'deliberative',
  'body',
  'act',
  'check',
  'often',
  'elected',
  'house',
  'system',
  'meant',
  'slow',
  'react',
  'problem',
  'ended',
  'bit',
  'slow',
  'basis',
  'suggest',
  'senate',
  'supposed',
  'sort',
  'rubber',
  'stamp',
  'house',
  'youll',
  'note',
  'presidents',
  'veto',
  'may',
  'ridden',
  'house',
  'cant',
  'anything',
  'veto',
  'senate',
  'president',
  'veto',
  'meant',
  'entirely',
  'separate',
  'bush',
  'abused',
  'quite',
  'extraordinary',
  'manner',
  'used',
  'accord',
  'intent',
  'check',
  'unreasonable',
  'legislation',
  'veto',
  'clearly',
  'regarded',
  'completely',
  'last',
  'gasp',
  'measure',
  'meant',
  'restricted',
  'preventing',
  'legislature',
  'interfering',
  'actions',
  'executive',
  'senate',
  'meant',
  'exactly',
  'rubber',
  'stamp',
  'body',
  'meant',
  'check',
  'unrestrained',
  'legislation',
  'extra',
  'measure',
  'built',
  'constitution',
  'favour',
  'status',
  'quo',
  'representatives',
  'states',
  'reasonable',
  'restriction'],
 ['bill',
  'scrivener',
  'need',
  'help',
  'organization',
  'texas',
  'university',
  'academic',
  'computing',
  'services',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'zeus',
  'tamu',
  'news',
  'software',
  'vax',
  'vms',
  'vnews',
  'ok',
  'problem',
  'thought',
  'guys',
  'gals',
  'might',
  'know',
  'im',
  'running',
  'dx',
  'mb',
  'hdd',
  'also',
  'windows',
  'hardly',
  'dos',
  'application',
  'run',
  'also',
  'mem',
  'command',
  'says',
  'used',
  'kb',
  'kb',
  'conventional',
  'memory',
  'zero',
  'upper',
  'level',
  'memory',
  'kb',
  'ems',
  'memory',
  'top',
  'cant',
  'load',
  'device',
  'drivers',
  'upper',
  'memory',
  'need',
  'memory',
  'also',
  'would',
  'ems',
  'memory',
  'instead',
  'upper',
  'memory',
  'please',
  'reply',
  'mail',
  'bill',
  'scrivener',
  'first',
  'time',
  'texas',
  'university',
  'sleep',
  'woman',
  'matters',
  'college',
  'station',
  'texas',
  'first',
  'time',
  'email',
  'wake'],
 ['harley',
  'mailing',
  'list',
  'digest',
  'harley',
  'davidson',
  'mailing',
  'list',
  'email',
  'taste',
  'sensation',
  'summary',
  'sort',
  'bi',
  'monthly',
  'really',
  'automated',
  'announcement',
  'originator',
  'keywords',
  'digests',
  'lists',
  'harley',
  'davidson',
  'hogaholics',
  'supersedes',
  'organization',
  'thinkage',
  'ltd',
  'expires',
  'fri',
  'apr',
  'gmt',
  'lines',
  'anyone',
  'interesting',
  'mailing',
  'list',
  'harley',
  'davidson',
  'bikes',
  'lifestyle',
  'politics',
  'whatever',
  'members',
  'countries',
  'make',
  'may',
  'subscribe',
  'sending',
  'request',
  'uunet',
  'ca',
  'thinkage',
  'harley',
  'request',
  'request',
  'join',
  'signature',
  'something',
  'giving',
  'full',
  'email',
  'address',
  'rely',
  'header',
  'field',
  'useful',
  'automated',
  'listserv',
  'facility',
  'expect',
  'instant',
  'gratification',
  'list',
  'digest',
  'format',
  'scheduled',
  'twice',
  'day',
  'members',
  'harley',
  'list',
  'may',
  'obtain',
  'back',
  'issues',
  'index',
  'listings',
  'pictures',
  'etc',
  'via',
  'email',
  'archive',
  'server',
  'server',
  'access',
  'restricted',
  'list',
  'subscribers',
  'ftp',
  'access',
  'real',
  'soon',
  'motorcycle',
  'related',
  'lists',
  'ive',
  'heard',
  'run',
  'addresses',
  'may',
  'may',
  'current',
  'stroke',
  'dirt',
  'european',
  'racing',
  'short',
  'riding',
  'wet',
  'leather',
  'climbs',
  'hills',
  'like',
  'matchless',
  'cause',
  'hondas',
  'built',
  'really',
  'light',
  'brian',
  'wilson',
  'honda',
  'honda'],
 ['larry',
  'margolis',
  'abortion',
  'news',
  'software',
  'ibm',
  'os',
  'pm',
  'rn',
  'nr',
  'vishnepolsky',
  'rogers',
  'lines',
  'reply',
  'larry',
  'margolis',
  'disclaimer',
  'posting',
  'represents',
  'posters',
  'views',
  'necessarily',
  'ibm',
  'nntp',
  'posting',
  'host',
  'netslip',
  'watson',
  'ibm',
  'com',
  'organization',
  'village',
  'waterbed',
  'anthony',
  'landreneau',
  'writes',
  'larry',
  'margolis',
  'lm',
  'rape',
  'passed',
  'nothing',
  'ever',
  'take',
  'away',
  'lm',
  'lm',
  'lm',
  'true',
  'forcing',
  'remain',
  'pregnant',
  'continues',
  'violation',
  'lm',
  'lm',
  'body',
  'another',
  'months',
  'see',
  'unbelievably',
  'cruel',
  'lm',
  'lm',
  'life',
  'violation',
  'lm',
  'forcing',
  'someone',
  'harbor',
  'life',
  'body',
  'violation',
  'letting',
  'mother',
  'force',
  'child',
  'body',
  'order',
  'end',
  'childs',
  'life',
  'ultimate',
  'violation',
  'happen',
  'take',
  'violation',
  'person',
  'much',
  'seriously',
  'violation',
  'mindless',
  'clump',
  'cells',
  'smaller',
  'thumb',
  'mileage',
  'may',
  'vary',
  'larry',
  'margolis',
  'bitnet',
  'internet'],
 ['michael',
  'jaroslaw',
  'feszczyszyn',
  'fenway',
  'gif',
  'nntp',
  'posting',
  'host',
  'warren',
  'rpi',
  'reply',
  'organization',
  'rensselaer',
  'polytechnic',
  'institute',
  'troy',
  'ny',
  'lines',
  'article',
  'writes',
  'wondering',
  'anyone',
  'kind',
  'fenway',
  'park',
  'gif',
  'would',
  'appreciate',
  'someone',
  'could',
  'send',
  'one',
  'thanks',
  'advance',
  'dan',
  'yankee',
  'stadium',
  'gifs',
  'well',
  'please',
  'thanx',
  'advance',
  'mike',
  'feszczyszyn'],
 ['archon',
  'fung',
  'wrong',
  'ram',
  'duo',
  'organization',
  'massachusetts',
  'institute',
  'technology',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'thobbes',
  'mit',
  'posts',
  'back',
  'somebody',
  'mentioned',
  'duo',
  'might',
  'crash',
  'wrong',
  'kind',
  'non',
  'self',
  'refreshing',
  'ram',
  'duo',
  'crashes',
  'sometimes',
  'sleep',
  'wondering',
  'software',
  'tell',
  'whether',
  'right',
  'kind',
  'ram',
  'installed',
  'thought',
  'problem',
  'battery',
  'connection',
  'thanks',
  'advance',
  'archon',
  'fung'],
 ['kirk',
  'hays',
  'govt',
  'break',
  'ins',
  'minutes',
  'nntp',
  'posting',
  'host',
  'taos',
  'organization',
  'intel',
  'supercomputer',
  'systems',
  'division',
  'lines',
  'article',
  'writes',
  'los',
  'angeles',
  'radio',
  'station',
  'last',
  'weekend',
  'lawyers',
  'family',
  'murdered',
  'rancher',
  'said',
  'los',
  'angeles',
  'sheriffs',
  'department',
  'assessment',
  'done',
  'ranchers',
  'property',
  'raid',
  'briefing',
  'documents',
  'raid',
  'notation',
  'similar',
  'local',
  'property',
  'sold',
  'prior',
  'raid',
  'recent',
  'tv',
  'coverage',
  'believed',
  'strongly',
  'implies',
  'sheriffs',
  'department',
  'wanted',
  'property',
  'drugs',
  'found',
  'excuse',
  'ventura',
  'county',
  'da',
  'came',
  'conclusion',
  'report',
  'released',
  'lambasted',
  'sheriffs',
  'office',
  'bad',
  'old',
  'man',
  'nearly',
  'blind',
  'didnt',
  'take',
  'goose',
  'stepping',
  'drug',
  'warriors',
  'tm',
  'kirk',
  'hays',
  'nra',
  'life',
  'seventh',
  'generation',
  'thing',
  'necessary',
  'triumph',
  'evil',
  'good',
  'men',
  'nothing',
  'edmund',
  'burke'],
 ['mathew',
  'alt',
  'atheism',
  'faq',
  'constructing',
  'logical',
  'argument',
  'summary',
  'includes',
  'list',
  'logical',
  'fallacies',
  'keywords',
  'faq',
  'atheism',
  'argument',
  'fallacies',
  'logic',
  'expires',
  'thu',
  'may',
  'gmt',
  'distribution',
  'world',
  'organization',
  'mantis',
  'consultants',
  'cambridge',
  'uk',
  'supersedes',
  'lines',
  'archive',
  'name',
  'atheism',
  'logic',
  'alt',
  'atheism',
  'archive',
  'name',
  'logic',
  'last',
  'modified',
  'april',
  'version',
  'constructing',
  'logical',
  'argument',
  'although',
  'much',
  'argument',
  'usenet',
  'general',
  'quality',
  'argument',
  'found',
  'poor',
  'article',
  'attempts',
  'provide',
  'gentle',
  'introduction',
  'logic',
  'hope',
  'improving',
  'general',
  'level',
  'debate',
  'logic',
  'science',
  'reasoning',
  'proof',
  'thinking',
  'inference',
  'concise',
  'oed',
  'logic',
  'allows',
  'us',
  'analyze',
  'piece',
  'reasoning',
  'determine',
  'whether',
  'correct',
  'valid',
  'invalid',
  'course',
  'one',
  'need',
  'study',
  'logic',
  'order',
  'reason',
  'correctly',
  'nevertheless',
  'little',
  'basic',
  'knowledge',
  'logic',
  'often',
  'helpful',
  'constructing',
  'analyzing',
  'argument',
  'note',
  'claim',
  'made',
  'whether',
  'logic',
  'universally',
  'applicable',
  'matter',
  'much',
  'open',
  'debate',
  'document',
  'merely',
  'explains',
  'logic',
  'given',
  'already',
  'decided',
  'logic',
  'right',
  'tool',
  'job',
  'propositions',
  'statements',
  'building',
  'blocks',
  'logical',
  'argument',
  'proposition',
  'statement',
  'either',
  'true',
  'false',
  'example',
  'raining',
  'today',
  'tuesday',
  'propositions',
  'may',
  'either',
  'asserted',
  'said',
  'true',
  'denied',
  'said',
  'false',
  'note',
  'technical',
  'meaning',
  'deny',
  'everyday',
  'meaning',
  'proposition',
  'meaning',
  'statement',
  'particular',
  'arrangement',
  'words',
  'used',
  'express',
  'god',
  'exists',
  'exists',
  'god',
  'express',
  'proposition',
  'argument',
  'quote',
  'monty',
  'python',
  'sketch',
  'connected',
  'series',
  'statements',
  'establish',
  'definite',
  'proposition',
  'argument',
  'consists',
  'three',
  'stages',
  'first',
  'propositions',
  'necessary',
  'argument',
  'continue',
  'stated',
  'called',
  'premises',
  'argument',
  'evidence',
  'reasons',
  'accepting',
  'argument',
  'conclusions',
  'premises',
  'assertions',
  'often',
  'indicated',
  'phrases',
  'since',
  'obviously',
  'phrase',
  'obviously',
  'often',
  'viewed',
  'suspicion',
  'used',
  'intimidate',
  'others',
  'accepting',
  'suspicious',
  'premises',
  'something',
  'doesnt',
  'seem',
  'obvious',
  'dont',
  'afraid',
  'question',
  'always',
  'say',
  'oh',
  'yes',
  'youre',
  'right',
  'obvious',
  'youve',
  'heard',
  'explanation',
  'next',
  'premises',
  'used',
  'derive',
  'propositions',
  'process',
  'known',
  'inference',
  'inference',
  'one',
  'proposition',
  'arrived',
  'basis',
  'one',
  'propositions',
  'already',
  'accepted',
  'various',
  'forms',
  'valid',
  'inference',
  'propositions',
  'arrived',
  'inference',
  'may',
  'used',
  'inference',
  'inference',
  'often',
  'denoted',
  'phrases',
  'implies',
  'therefore',
  'finally',
  'arrive',
  'conclusion',
  'argument',
  'proposition',
  'affirmed',
  'basis',
  'premises',
  'inference',
  'conclusions',
  'often',
  'indicated',
  'phrases',
  'therefore',
  'follows',
  'conclude',
  'conclusion',
  'often',
  'stated',
  'final',
  'stage',
  'inference',
  'example',
  'every',
  'event',
  'cause',
  'premise',
  'universe',
  'beginning',
  'premise',
  'beginnings',
  'involve',
  'event',
  'premise',
  'implies',
  'beginning',
  'universe',
  'involved',
  'event',
  'inference',
  'therefore',
  'universe',
  'cause',
  'inference',
  'conclusion',
  'note',
  'conclusion',
  'one',
  'argument',
  'might',
  'premise',
  'another',
  'argument',
  'proposition',
  'called',
  'premise',
  'conclusion',
  'respect',
  'particular',
  'argument',
  'terms',
  'make',
  'sense',
  'isolation',
  'sometimes',
  'argument',
  'follow',
  'order',
  'given',
  'example',
  'conclusions',
  'might',
  'stated',
  'first',
  'premises',
  'stated',
  'afterwards',
  'support',
  'conclusion',
  'perfectly',
  'valid',
  'sometimes',
  'little',
  'confusing',
  'recognizing',
  'argument',
  'much',
  'harder',
  'recognizing',
  'premises',
  'conclusions',
  'many',
  'people',
  'shower',
  'writing',
  'assertions',
  'without',
  'ever',
  'producing',
  'anything',
  'one',
  'might',
  'reasonably',
  'describe',
  'argument',
  'statements',
  'look',
  'like',
  'arguments',
  'example',
  'bible',
  'accurate',
  'jesus',
  'must',
  'either',
  'insane',
  'evil',
  'liar',
  'son',
  'god',
  'argument',
  'conditional',
  'statement',
  'assert',
  'premises',
  'necessary',
  'support',
  'appears',
  'conclusion',
  'also',
  'suffers',
  'number',
  'logical',
  'flaws',
  'well',
  'come',
  'later',
  'another',
  'example',
  'god',
  'created',
  'therefore',
  'duty',
  'god',
  'phrase',
  'duty',
  'god',
  'proposition',
  'since',
  'neither',
  'true',
  'false',
  'therefore',
  'conclusion',
  'sentence',
  'argument',
  'finally',
  'causality',
  'important',
  'consider',
  'statement',
  'form',
  'interested',
  'establishing',
  'offered',
  'evidence',
  'statement',
  'argument',
  'trying',
  'establish',
  'truth',
  'argument',
  'explanation',
  'example',
  'must',
  'something',
  'wrong',
  'engine',
  'car',
  'start',
  'argument',
  'car',
  'start',
  'something',
  'wrong',
  'engine',
  'explanation',
  'two',
  'traditional',
  'types',
  'argument',
  'deductive',
  'inductive',
  'deductive',
  'argument',
  'one',
  'provides',
  'conclusive',
  'proof',
  'conclusions',
  'argument',
  'premises',
  'true',
  'conclusion',
  'must',
  'also',
  'true',
  'deductive',
  'argument',
  'either',
  'valid',
  'invalid',
  'valid',
  'argument',
  'defined',
  'one',
  'premises',
  'true',
  'conclusion',
  'true',
  'inductive',
  'argument',
  'one',
  'premises',
  'provide',
  'evidence',
  'truth',
  'conclusion',
  'inductive',
  'arguments',
  'valid',
  'invalid',
  'however',
  'talk',
  'whether',
  'better',
  'worse',
  'arguments',
  'probable',
  'premises',
  'forms',
  'argument',
  'ordinary',
  'language',
  'neither',
  'deductive',
  'inductive',
  'however',
  'concentrate',
  'moment',
  'deductive',
  'arguments',
  'often',
  'viewed',
  'rigorous',
  'convincing',
  'important',
  'note',
  'fact',
  'deductive',
  'argument',
  'valid',
  'imply',
  'conclusion',
  'holds',
  'slightly',
  'counter',
  'intuitive',
  'nature',
  'implication',
  'must',
  'consider',
  'carefully',
  'obviously',
  'valid',
  'argument',
  'consist',
  'true',
  'propositions',
  'however',
  'argument',
  'may',
  'entirely',
  'valid',
  'even',
  'contains',
  'false',
  'propositions',
  'example',
  'insects',
  'wings',
  'premise',
  'woodlice',
  'insects',
  'premise',
  'therefore',
  'woodlice',
  'wings',
  'conclusion',
  'conclusion',
  'true',
  'arguments',
  'premises',
  'false',
  'arguments',
  'premises',
  'true',
  'however',
  'conclusion',
  'would',
  'true',
  'argument',
  'thus',
  'entirely',
  'valid',
  'subtly',
  'reach',
  'true',
  'conclusion',
  'one',
  'false',
  'premises',
  'fish',
  'live',
  'sea',
  'premise',
  'dolphins',
  'fish',
  'premise',
  'therefore',
  'dolphins',
  'live',
  'sea',
  'conclusion',
  'however',
  'one',
  'thing',
  'cannot',
  'reach',
  'false',
  'conclusion',
  'valid',
  'inference',
  'true',
  'premises',
  'therefore',
  'draw',
  'truth',
  'table',
  'implication',
  'symbol',
  'denotes',
  'implication',
  'premise',
  'conclusion',
  'represent',
  'true',
  'false',
  'respectively',
  'premise',
  'conclusion',
  'inference',
  'premises',
  'false',
  'inference',
  'valid',
  'conclusion',
  'true',
  'false',
  'premises',
  'true',
  'conclusion',
  'false',
  'inference',
  'must',
  'invalid',
  'premises',
  'true',
  'inference',
  'valid',
  'conclusion',
  'must',
  'true',
  'sound',
  'argument',
  'valid',
  'argument',
  'whose',
  'premises',
  'true',
  'sound',
  'argument',
  'therefore',
  'arrives',
  'true',
  'conclusion',
  'careful',
  'confuse',
  'valid',
  'arguments',
  'sound',
  'arguments',
  'delve',
  'structure',
  'logical',
  'arguments',
  'would',
  'require',
  'lengthy',
  'discussion',
  'linguistics',
  'philosophy',
  'simpler',
  'probably',
  'useful',
  'summarize',
  'major',
  'pitfalls',
  'avoided',
  'constructing',
  'argument',
  'pitfalls',
  'known',
  'fallacies',
  'everyday',
  'english',
  'term',
  'fallacy',
  'used',
  'refer',
  'mistaken',
  'beliefs',
  'well',
  'faulty',
  'reasoning',
  'leads',
  'beliefs',
  'fair',
  'enough',
  'logic',
  'term',
  'generally',
  'used',
  'refer',
  'form',
  'technically',
  'incorrect',
  'argument',
  'especially',
  'argument',
  'appears',
  'valid',
  'convincing',
  'purposes',
  'discussion',
  'define',
  'fallacy',
  'logical',
  'argument',
  'appears',
  'correct',
  'seen',
  'incorrect',
  'examined',
  'closely',
  'studying',
  'fallacies',
  'aim',
  'avoid',
  'misled',
  'following',
  'list',
  'fallacies',
  'intended',
  'exhaustive',
  'argumentum',
  'ad',
  'baculum',
  'appeal',
  'force',
  'appeal',
  'force',
  'committed',
  'arguer',
  'resorts',
  'force',
  'threat',
  'force',
  'order',
  'try',
  'push',
  'acceptance',
  'conclusion',
  'often',
  'used',
  'politicians',
  'summarized',
  'might',
  'makes',
  'right',
  'force',
  'threatened',
  'need',
  'direct',
  'threat',
  'arguer',
  'example',
  'thus',
  'ample',
  'proof',
  'truth',
  'bible',
  'refuse',
  'accept',
  'truth',
  'burn',
  'hell',
  'argumentum',
  'ad',
  'hominem',
  'argumentum',
  'ad',
  'hominem',
  'literally',
  'argument',
  'directed',
  'man',
  'abusive',
  'variety',
  'argumentum',
  'ad',
  'hominem',
  'occurs',
  'instead',
  'trying',
  'disprove',
  'truth',
  'assertion',
  'arguer',
  'attacks',
  'person',
  'people',
  'making',
  'assertion',
  'invalid',
  'truth',
  'assertion',
  'depend',
  'upon',
  'goodness',
  'asserting',
  'example',
  'atheism',
  'evil',
  'philosophy',
  'practised',
  'communists',
  'murderers',
  'sometimes',
  'court',
  'law',
  'doubt',
  'cast',
  'upon',
  'testimony',
  'witness',
  'showing',
  'example',
  'known',
  'perjurer',
  'valid',
  'way',
  'reducing',
  'credibility',
  'testimony',
  'given',
  'witness',
  'argumentum',
  'ad',
  'hominem',
  'however',
  'demonstrate',
  'witnesss',
  'testimony',
  'false',
  'conclude',
  'otherwise',
  'fall',
  'victim',
  'argumentum',
  'ad',
  'ignorantiam',
  'see',
  'elsewhere',
  'list',
  'circumstantial',
  'form',
  'argumentum',
  'ad',
  'hominem',
  'committed',
  'person',
  'argues',
  'opponent',
  'ought',
  'accept',
  'truth',
  'assertion',
  'opponents',
  'particular',
  'circumstances',
  'example',
  'perfectly',
  'acceptable',
  'kill',
  'animals',
  'food',
  'argue',
  'otherwise',
  'youre',
  'quite',
  'happy',
  'wear',
  'leather',
  'shoes',
  'abusive',
  'charge',
  'inconsistency',
  'used',
  'excuse',
  'dismissing',
  'opponents',
  'argument',
  'fallacy',
  'also',
  'used',
  'means',
  'rejecting',
  'conclusion',
  'example',
  'course',
  'would',
  'argue',
  'positive',
  'discrimination',
  'bad',
  'thing',
  'youre',
  'white',
  'particular',
  'form',
  'argumentum',
  'ad',
  'hominem',
  'one',
  'alleges',
  'ones',
  'adversary',
  'rationalizing',
  'conclusion',
  'formed',
  'selfish',
  'interests',
  'also',
  'known',
  'poisoning',
  'well',
  'argumentum',
  'ad',
  'ignorantium',
  'argumentum',
  'ad',
  'ignorantium',
  'means',
  'argument',
  'ignorance',
  'fallacy',
  'occurs',
  'whenever',
  'argued',
  'something',
  'must',
  'true',
  'simply',
  'proved',
  'false',
  'equivalently',
  'argued',
  'something',
  'must',
  'false',
  'proved',
  'true',
  'note',
  'assuming',
  'something',
  'false',
  'proved',
  'true',
  'basic',
  'scientific',
  'principle',
  'examples',
  'course',
  'bible',
  'true',
  'nobody',
  'prove',
  'otherwise',
  'course',
  'telepathy',
  'psychic',
  'phenomena',
  'exist',
  'nobody',
  'shown',
  'proof',
  'real',
  'note',
  'fallacy',
  'apply',
  'court',
  'law',
  'one',
  'generally',
  'assumed',
  'innocent',
  'proven',
  'guilty',
  'also',
  'scientific',
  'investigation',
  'known',
  ...],
 ['kurt',
  'godden',
  'gm',
  'may',
  'build',
  'toyota',
  'badged',
  'car',
  'organization',
  'gm',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'ksg',
  'cs',
  'gmr',
  'com',
  'useragent',
  'nuntius',
  'xxmessage',
  'id',
  'xxdate',
  'fri',
  'apr',
  'gmt',
  'appeared',
  'today',
  'japan',
  'economic',
  'journal',
  'reported',
  'gm',
  'plans',
  'build',
  'toyota',
  'badged',
  'car',
  'us',
  'sale',
  'japan',
  'bruce',
  'macdonald',
  'vp',
  'gm',
  'corporate',
  'communications',
  'yesterday',
  'confirmed',
  'gm',
  'president',
  'ceo',
  'jack',
  'smith',
  'meeting',
  'recently',
  'tatsuro',
  'toyoda',
  'president',
  'toyota',
  'meeting',
  'two',
  'discussed',
  'business',
  'opportunities',
  'increase',
  'gm',
  'exports',
  'japan',
  'including',
  'component',
  'sales',
  'well',
  'completed',
  'vehicle',
  'sales',
  'parts',
  'sales',
  'two',
  'presidents',
  'agreed',
  'conceptually',
  'pursue',
  'arrangement',
  'whereby',
  'gm',
  'would',
  'build',
  'toyota',
  'badged',
  'right',
  'hand',
  'drive',
  'vehicle',
  'us',
  'sale',
  'toyota',
  'japan',
  'working',
  'group',
  'formed',
  'finalize',
  'model',
  'specifications',
  'exact',
  'timing',
  'details'],
 ['stephen',
  'hite',
  'searching',
  'xgolf',
  'organization',
  'university',
  'north',
  'florida',
  'jacksonville',
  'lines',
  'xgolf',
  'program',
  'april',
  'fools',
  'joke',
  'sigh',
  'steve',
  'hite'],
 ['roger',
  'maynard',
  'leaf',
  'slump',
  'organization',
  'dept',
  'computer',
  'science',
  'laurentian',
  'university',
  'sudbury',
  'lines',
  'deepak',
  'chhabra',
  'writes',
  'march',
  'roger',
  'maynard',
  'wrote',
  'reply',
  'article',
  'graham',
  'hudson',
  'dont',
  'think',
  'performing',
  'pressure',
  'major',
  'differences',
  'playoff',
  'hockey',
  'normal',
  'hockey',
  'play',
  'ing',
  'every',
  'night',
  'physically',
  'exhausting',
  'play',
  'team',
  'consecutive',
  'string',
  'games',
  'mean',
  'pressure',
  'even',
  'thought',
  'mean',
  'pressure',
  'thoughts',
  'like',
  'rest',
  'drivel',
  'simply',
  'half',
  'baked',
  'anybody',
  'would',
  'like',
  'check',
  'went',
  'another',
  'article',
  'say',
  'paraphrased',
  'playoff',
  'hockey',
  'expression',
  'used',
  'announcers',
  'convince',
  'simple',
  'minded',
  'folks',
  'like',
  'seeing',
  'better',
  'product',
  'regular',
  'season',
  'game',
  'however',
  'article',
  'roger',
  'maynard',
  'writes',
  'win',
  'tough',
  'whaler',
  'squad',
  'leafs',
  'showed',
  'doubters',
  'playoff',
  'hockey',
  'roger',
  'exactly',
  'playoff',
  'hockey',
  'convenient',
  'phrase',
  'certain',
  'circumstances',
  'see',
  'spout',
  'flame',
  'bait',
  'many',
  'times',
  'sooner',
  'later',
  'catches',
  'nice',
  'try',
  'deepak',
  'tough',
  'whaler',
  'squad',
  'clued',
  'fact',
  'leaf',
  'woofing',
  'tongue',
  'cheek',
  'playoff',
  'hockey',
  'intense',
  'regular',
  'season',
  'variety',
  'teams',
  'facing',
  'least',
  'consecutive',
  'times',
  'days',
  'hockey',
  'contact',
  'sport',
  'things',
  'carried',
  'might',
  'dissipate',
  'regular',
  'season',
  'players',
  'many',
  'rest',
  'playing',
  'injuries',
  'miss',
  'families',
  'like',
  'grant',
  'fuhr',
  'would',
  'really',
  'rather',
  'playing',
  'golf',
  'dont',
  'really',
  'give',
  'damn',
  'course',
  'cant',
  'say',
  'sure',
  'believe',
  'fairly',
  'typical',
  'human',
  'nature',
  'dont',
  'think',
  'hockey',
  'players',
  'consider',
  'typically',
  'human',
  'attitudes',
  'recent',
  'salary',
  'escalations',
  'key',
  'players',
  'actually',
  'losing',
  'money',
  'participating',
  'playoffs',
  'ones',
  'regard',
  'playoff',
  'take',
  'kind',
  'bonanza',
  'fringe',
  'players',
  'unlikely',
  'consistently',
  'force',
  'playoffs',
  'know',
  'going',
  'come',
  'back',
  'winning',
  'spirit',
  'crap',
  'players',
  'professionals',
  'may',
  'love',
  'play',
  'game',
  'love',
  'entirely',
  'incidental',
  'purpose',
  'make',
  'decent',
  'living',
  'course',
  'coach',
  'professional',
  'well',
  'part',
  'paid',
  'motivate',
  'players',
  'coach',
  'job',
  'well',
  'enough',
  'players',
  'may',
  'respond',
  'winning',
  'effort',
  'second',
  'season',
  'merely',
  'exhibition',
  'true',
  'champions',
  'league',
  'division',
  'winners',
  'teams',
  'come',
  'top',
  'long',
  'struggle',
  'season',
  'stanley',
  'cup',
  'playoffs',
  'merely',
  'accord',
  'victory',
  'team',
  'remained',
  'healthy',
  'hot',
  'emphasis',
  'playoffs',
  'sudden',
  'death',
  'appeal',
  'promoted',
  'media',
  'owners',
  'profit',
  'purely',
  'mind',
  'even',
  'pittsburgh',
  'loses',
  'playoffs',
  'know',
  'really',
  'best',
  'team',
  'league',
  'year',
  'proved',
  'cordially',
  'always',
  'rm',
  'roger',
  'maynard'],
 ['bill',
  'conner',
  'omni',
  'nntp',
  'posting',
  'host',
  'okcforum',
  'osrhe',
  'organization',
  'okcforum',
  'unix',
  'users',
  'group',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'charley',
  'wingate',
  'wrote',
  'please',
  'enlighten',
  'omnipotence',
  'contradictory',
  'definition',
  'occur',
  'universe',
  'governed',
  'rules',
  'nature',
  'thus',
  'god',
  'cannot',
  'break',
  'anything',
  'god',
  'must',
  'allowed',
  'rules',
  'somewhere',
  'therefore',
  'omnipotence',
  'cannot',
  'exist',
  'contradicts',
  'rules',
  'nature',
  'obviously',
  'omnipotent',
  'god',
  'change',
  'rules',
  'say',
  'definition',
  'exactly',
  'defined',
  'certainly',
  'omnipotence',
  'seem',
  'saying',
  'rules',
  'nature',
  'pre',
  'existant',
  'somehow',
  'define',
  'nature',
  'actually',
  'cause',
  'thats',
  'mean',
  'id',
  'like',
  'hear',
  'thoughts',
  'question',
  'bill'],
 ['aario',
  'sami',
  'note',
  'bobby',
  'organization',
  'tampere',
  'university',
  'technology',
  'computing',
  'centre',
  'lines',
  'distribution',
  'sfnet',
  'nntp',
  'posting',
  'host',
  'cc',
  'tut',
  'fi',
  'mozumder',
  'writes',
  'insults',
  'atheistic',
  'genocide',
  'totally',
  'unintentional',
  'atheism',
  'anything',
  'happen',
  'good',
  'bad',
  'including',
  'genocide',
  'know',
  'youve',
  'conveniently',
  'theist',
  'someone',
  'wrong',
  'youve',
  'people',
  'wrong',
  'atheists',
  'statement',
  'circular',
  'mention',
  'bigoting',
  'value',
  'sami',
  'aario',
  'see',
  'measure',
  'atom',
  'yet',
  'explode',
  'one',
  'sunlight',
  'comprised',
  'many',
  'atoms',
  'stupid',
  'minds',
  'stupid',
  'stupid',
  'eros',
  'plan',
  'outer',
  'space',
  'disclaimer',
  'dont',
  'agree',
  'eros'],
 ['boutte',
  'erika',
  'contagiosem',
  'organization',
  'wild',
  'wacky',
  'world',
  'dolly',
  'parton',
  'clones',
  'zero',
  'gravity',
  'lines',
  'wondering',
  'anyone',
  'information',
  'molluscous',
  'contagiosem',
  'acquired',
  'fortunately',
  'got',
  'rid',
  'question',
  'still',
  'lingers',
  'mind',
  'come',
  'little',
  'bit',
  'info',
  'received',
  'past',
  'states',
  'transmitted',
  'sexually',
  'also',
  'occurs',
  'small',
  'children',
  'hands',
  'feet',
  'genitalia',
  'information',
  'greatly',
  'appreciated',
  'grow',
  'old',
  'grow',
  'old',
  'shall',
  'wear',
  'trousers',
  'rolled',
  'eliot'],
 ['clive',
  'mitchell',
  'dataproducts',
  'lzr',
  'printing',
  'correctly',
  'organization',
  'regional',
  'network',
  'systems',
  'group',
  'perth',
  'lines',
  'cut',
  'part',
  'begin',
  'wn',
  'exe',
  'ko',
  'vat',
  'dm',
  'pp',
  'rt',
  'lm',
  'mp',
  'bqy_',
  'y_',
  'zc',
  'ogl',
  'zxo',
  'ro',
  'cl',
  's__',
  'eps',
  'lstc',
  'na',
  'fb',
  'hb',
  'um',
  'tlk',
  'qm',
  'wl',
  'okv_oy',
  'ws',
  'ws',
  'txlf',
  'zcup',
  'nh',
  'rz',
  'zp',
  'hp',
  'gh',
  'z_',
  'ha',
  'nau',
  'gp',
  'r_xk',
  'hh',
  'hj_',
  'yhk',
  'hx',
  'fbi',
  'ct',
  'kr',
  'ou',
  'urz',
  'bz',
  'tn',
  'hprz',
  'zp',
  'mt',
  'zp',
  'sc',
  'cl',
  'mb',
  'zq',
  'vh',
  'ue',
  'ek_p',
  'lh',
  'ki',
  'wa',
  'm_w',
  'au',
  'xex',
  'foq_ur',
  'z_',
  'mh',
  'o_h',
  'fta',
  'ih',
  'xdy',
  'cox',
  'cl',
  'jhch',
  'mc',
  'jyz',
  'fy',
  'pp',
  'sfzo_tv',
  'cf',
  'gxd',
  'tel',
  'zx',
  'qd',
  'pq',
  'ir',
  'vo',
  'tww_',
  'pa',
  'yp',
  'gx',
  'nl',
  'cr',
  'oi',
  'mv',
  'tb',
  'ux',
  'vp',
  'iqc',
  'ys',
  'lz',
  'dhq',
  'oh',
  'vam',
  'gt',
  'id',
  'xmzey',
  'sj',
  'pz',
  'xl',
  'ck',
  'jb',
  'pwzasj',
  'hc',
  'pil',
  'hd',
  'yw',
  'zg',
  'mi',
  'ytn',
  'gt',
  'moh',
  'ga',
  'ja',
  'xh',
  'dvj',
  'kq',
  'dzp',
  'nxngt',
  'aa',
  'pjj_',
  'mh',
  'eq',
  'cw',
  'nj',
  'xe',
  'vggfq',
  'er',
  'vq',
  'j_',
  'nc',
  'wz',
  'yt',
  'k_',
  'eipkka',
  'ih',
  'gi',
  'nd',
  'mh',
  'lc',
  'unoax',
  'qfzrjhh',
  'ex',
  'mz',
  'ww',
  'vh',
  'mkhip',
  'vw',
  'fy',
  'aq',
  'rj',
  'qho',
  'oza',
  'zt',
  'ig',
  'bm',
  'mt',
  'cnxh_',
  'jx',
  'mcd',
  'wo',
  'kmif',
  'xu',
  'qn',
  'yn',
  'mi_kk_a',
  'uf',
  'ac',
  'bm',
  'bj',
  'aw',
  'lx',
  'c_j',
  'dr',
  'mp',
  'mz',
  'mh',
  'pk',
  'rmmx',
  'op',
  'm_',
  'rz',
  'rr',
  'ml',
  'mc',
  'bfq',
  'ml',
  'gka',
  'djcx',
  'zq',
  'hn',
  'ek',
  'nu',
  'syk',
  'icj',
  'si',
  'tyu',
  'xw',
  'qvd',
  'mh',
  't_vb',
  'bxx',
  'mk',
  'zu',
  'nl',
  'aw',
  'uq',
  'w_zpk',
  'gwvb',
  'a_',
  'nn',
  'pvj',
  'mkr',
  'mred',
  'ii',
  'g_r',
  'ojf',
  'rk',
  'wov',
  'ms',
  'ydvp',
  'ohbi',
  'eu',
  'nmvm',
  'ep',
  'vi',
  'qdi',
  'yz',
  'wws',
  'uv',
  'p_',
  'qrr',
  'uo',
  'mu',
  'ex',
  'nbz',
  'uaxf',
  'fr',
  'mi',
  'zq',
  'gc',
  'amyj',
  'zqs',
  'mve',
  'mjr',
  'yv',
  'mc_',
  'vr',
  'eky',
  'ce',
  'rk',
  'tj',
  'rpku',
  'vf',
  'bf',
  'ey',
  'qz',
  'sy_exn',
  'tk',
  'fj',
  'su',
  'tgh',
  'zcm',
  'kw',
  'ch',
  'fkd',
  'bkpai',
  'qm',
  'mew',
  'kd',
  'mj',
  'b_',
  'cb',
  'cy',
  'fp',
  'vb',
  'kn',
  'pn',
  'x_',
  'ki',
  'faoq',
  'asp',
  'wpzc',
  'tpn',
  'tula',
  'zxw',
  'ka',
  'm_',
  'qdn',
  'lr',
  'npo',
  'mbgf',
  'dxsxwsl',
  'a_',
  'orf',
  'ka_v',
  'qvp',
  'qbxc',
  'ryn',
  'mw',
  'zdz',
  'bt',
  'pe',
  'mwv',
  'znwxb',
  'fczv',
  'rmw',
  'kv',
  'mw',
  'tf',
  'ukht',
  'tg',
  'qt',
  'i_qqjp',
  'gv',
  'mm',
  'aq',
  'ac',
  'gp',
  'oqmokm',
  'cn',
  'mip',
  'a_',
  'iv',
  'rzr',
  'pe',
  'qx',
  'oli',
  'ewlm',
  'ksal',
  'm_',
  'k_hsc',
  'ui',
  'qntxj',
  'ejq',
  'irx',
  's_u',
  'rc',
  'm_h_',
  'oha',
  'zqrb',
  'rei',
  'onwh',
  'ssj',
  'mg',
  'ko',
  'rr',
  'us_ux',
  'bq',
  'ms',
  'hh',
  'tk',
  'g_',
  'q_yk',
  'znl',
  'dx',
  'nv',
  'upp',
  'nz',
  'uybsd',
  'mw',
  'eq',
  'gz',
  'cux',
  'uu',
  'e_',
  'p_he__',
  'zj',
  'te',
  'mg',
  'nkyi',
  'ux',
  'fj',
  'mr',
  'nyu',
  'e_c',
  'zzy_',
  'wfp',
  'xb',
  'gx',
  'kn',
  'ct',
  'jkh',
  'ax_f',
  'mk',
  'mpwg',
  'b_t',
  'xj',
  'cd',
  'fs',
  'okzh',
  'mx',
  'g_wl',
  'twk',
  'ihwxwkj',
  'jvrhon',
  'kd',
  'od',
  'od',
  'mp',
  'hd',
  'ky',
  'ru',
  'aav',
  'jk',
  'tv',
  'dqlf',
  'ji',
  'k_',
  'xd',
  'nw',
  'zz',
  'r_v',
  'ap',
  'az',
  'fc',
  'mu',
  'lh',
  'zjm',
  'qgg',
  'wq',
  'ukwr',
  'sv',
  'zr',
  'rx',
  'ct',
  'iqd',
  'rx',
  'm_h',
  'dq',
  'gj',
  'sy',
  'ex',
  'ps',
  'mi',
  'd_',
  'eg',
  'm_',
  'vg',
  'rvz',
  'qro',
  'aaw_',
  'o_',
  'hwke',
  'vf',
  'ku',
  'wk',
  'dz',
  'zx',
  'zqt',
  'tt',
  'qo',
  'hy',
  'np',
  'zpg',
  'msf',
  'nm_',
  'mmg',
  'zs',
  'ds',
  'zk',
  'ar',
  'ayv',
  'sk',
  'gv',
  'ivwtyowiw',
  'ril',
  'mf',
  'ski',
  'ha',
  'gk',
  'qt',
  'hft',
  'g_',
  'qm',
  'ls',
  'yg',
  'yi',
  'txvw',
  'ilb_',
  'pyr_av',
  'm_n',
  'kx',
  'mk',
  'op',
  'do_',
  'mowt',
  'w_ron',
  'iw',
  'tp',
  'nx',
  'xb',
  'wd',
  'fa',
  'moz',
  'uq',
  'ig',
  'ki',
  'mv',
  'qb',
  'bt',
  'dib',
  'xr',
  'dkj',
  'mhr',
  'apo',
  'wf',
  'xmp',
  'ozf',
  'mo',
  'xcx_f',
  'ys',
  'kwo',
  'gl',
  'li',
  'zs',
  'ls',
  'ko',
  'ex',
  'rkm',
  'px',
  'nq',
  'oj',
  'mq',
  'gom',
  'cy',
  'ea_',
  'epf',
  'jxx',
  'oeq',
  'cx',
  'zy',
  'yp',
  'ok',
  'grb',
  'wa',
  'az',
  'xq',
  'lo',
  'fn',
  'ar',
  'zp',
  'vo',
  'fb',
  'oa',
  'mml',
  'xxa',
  'rb',
  'jr',
  'b_',
  'wq',
  'gakg',
  'gm',
  'pb',
  'x_b',
  'eux',
  'pqjq',
  'lh',
  'mk',
  'oe',
  'axh',
  'ir',
  'oh',
  'mw',
  'nz',
  'wdfim',
  'md',
  'tt',
  'ga',
  'idby',
  'gesi',
  'zgos',
  'wezp',
  'jbk',
  'ry',
  'mvla',
  'uwe',
  'vfhji',
  'h_',
  'yd',
  'di',
  'bx',
  'b_',
  'hm',
  'dk',
  'sw',
  'cla',
  'dxqyz',
  'hmr',
  'ixua',
  'qf',
  'sn',
  'rhd',
  'og',
  'ms',
  'zv',
  'rnz',
  'wf',
  'lk',
  'gj',
  'm_e',
  'zchnu',
  'kvv',
  'tzf',
  'lbv',
  'aaph',
  'fjc',
  'dk',
  'aa',
  'jmx',
  'uo',
  'bjsb',
  'nwy',
  'wdr',
  'rtwh',
  'pu',
  'tc',
  'za',
  'qg',
  'mbocjlo',
  'yt',
  'kp_xpne',
  'ld',
  'tpof',
  'uhd',
  'kbsp',
  'yathu',
  'wul',
  'gm',
  'mqql',
  'vjqz',
  'rnn',
  'eb',
  'jm',
  'gqq',
  'zyj',
  'o_m',
  'qw',
  'jm',
  'tt',
  'sfx',
  'vxn',
  'oekrz',
  'r_',
  'yz',
  'fb',
  'm_',
  'w_p',
  'lf',
  'oi_w_',
  'wr',
  'jp',
  'owq',
  'ep',
  'mil',
  'ap',
  'nr',
  'bq',
  'yex',
  'wzmr',
  'vu',
  'nb',
  'nk',
  'qh',
  'mn',
  'fp',
  'hl',
  'mv',
  'ph',
  'ub',
  'clu',
  'wf',
  'esilr',
  'aind',
  'dd',
  'sj',
  'hu',
  'zo',
  'dpbm',
  'rz',
  'eb',
  'mc',
  'lgj',
  'gj',
  'vaww',
  'mrbaxb',
  'hs',
  'txu',
  'jh',
  'ae',
  'cs',
  'fh',
  'kim',
  'pz',
  'mm',
  'ef',
  'bhjzv',
  'bt',
  'jeqz_',
  'apk',
  'sl',
  'mn',
  'wa',
  'dds',
  'lv',
  'vo',
  'qr',
  'ml',
  'ohf',
  'cpj',
  'qd',
  'lz',
  'fpys',
  'qr',
  'bc',
  'cvfq',
  'fs',
  'ct',
  'bw',
  'ofu',
  'tu',
  'hukpusc',
  'mfd',
  'evz',
  'py',
  'cm',
  'ddd',
  'dn',
  'ro',
  'ms',
  'fd',
  'a_lv',
  'hi',
  'ddraf',
  'fv',
  'ed',
  'ik',
  'qev',
  'pg',
  'wqq',
  'oc',
  'ov',
  'jtrvvq',
  'tm',
  'mv',
  'pn',
  'df',
  'le',
  'dckq',
  'cw',
  'gg',
  'odo',
  'lu',
  'sl',
  'moaq',
  'lu',
  'nq',
  'vw',
  'sy',
  'ak',
  'ap',
  'rqy',
  'ed',
  'yldm',
  'el',
  'zf',
  'hg',
  'mj',
  'tpa',
  'axp',
  'ie',
  'wh',
  'ouvr',
  'uv',
  'ot',
  'ajkh',
  'hv',
  'r_b',
  'igwi',
  'qb',
  'ffnm',
  'mvsodd',
  'cbk',
  'wg',
  'ki',
  'mvs',
  'lvb',
  'h_x',
  'rwxsr',
  'qi',
  'cys',
  'tps',
  'adzqk',
  'qw',
  'cm',
  'muj',
  'tnk',
  'ntv',
  'fa',
  'ca',
  'mb',
  'bsh',
  'lwnuzh',
  'qpu',
  'gs',
  'knfvz',
  'nkt',
  'njvv',
  'cgh',
  'mf',
  'qa',
  'hufa',
  'zd',
  'fq',
  'gbxz',
  'ze',
  'xv',
  'va',
  'adr',
  'hl',
  'co',
  'gdz',
  'cwjpv',
  'lu',
  'lz_klzfq',
  'm____',
  'unpd',
  'ty',
  'yhj',
  'mz',
  'mv',
  'icz',
  'ns',
  'ln',
  'ss',
  'qe',
  'pv',
  'diy',
  'pl',
  'aavb',
  'hp',
  'pp',
  'ukq',
  'ny',
  'ypp',
  'av',
  'rk',
  'rbmf',
  'zmny',
  'ev',
  'zl',
  'cvp',
  'mvncn',
  'zfi',
  'vr',
  'qw',
  'wm',
  'ip',
  'yht',
  'pg',
  'zs',
  'mmpl',
  'se',
  'aw',
  'rp',
  'zkef',
  'bt',
  'ou',
  'nux',
  'mr',
  'mu',
  'vx',
  'vhs',
  'mx',
  'sny',
  'jd',
  'hv',
  'wd',
  'qs',
  'rvlf',
  'yx',
  'kyg',
  'rs',
  'pb',
  'hp',
  'rh',
  'yv',
  'ud',
  'ps',
  'kc',
  'xv',
  'xaz',
  'hga',
  'mj',
  'ju',
  'mp',
  'gejwc',
  'px',
  'ihxl',
  'yd',
  'b_bx',
  'hdm',
  'aa',
  'fa',
  'vu',
  'qhg',
  'qo',
  'vh',
  'gq',
  'mvwuy',
  'vl',
  'dh',
  'pa',
  'nfy',
  'br',
  'mz',
  'fq',
  't_',
  'scp',
  'us',
  'tc',
  'mdx',
  'gef',
  'md',
  'fz',
  'ps',
  'mj',
  'es',
  'aiqq',
  'tb',
  'ep',
  'mz',
  'cd',
  'qrykr',
  'xg',
  'ery',
  'mpyykvl',
  'lhvnzv',
  'iakw',
  'lg',
  'gv',
  'td',
  'de',
  'la',
  'gi',
  'mbw',
  'ngu',
  'lb',
  'eug',
  'hwp',
  'gv',
  'fr',
  'alj',
  'io',
  'sx',
  'xy',
  'lt',
  'bt',
  'aozc',
  'ccyp',
  'mw',
  'hiw',
  'xyon',
  'cq',
  'cf',
  'bm',
  'nh',
  'uo',
  'jpl',
  ...],
 ['scott',
  'crawford',
  'selling',
  'riding',
  'lawn',
  'mower',
  'organization',
  'distribution',
  'nj',
  'summary',
  'riding',
  'lawn',
  'mower',
  'sale',
  'lines',
  'ariens',
  'riding',
  'lawn',
  'mower',
  'mower',
  'perfect',
  'condition',
  'contains',
  'following',
  'features',
  'electric',
  'start',
  'inch',
  'cut',
  'double',
  'rear',
  'baggers',
  'new',
  'battery',
  'new',
  'engine',
  'one',
  'year',
  'old',
  'inflatable',
  'tires',
  'gives',
  'nice',
  'ride',
  'cushioned',
  'seat',
  'gives',
  'nice',
  'ride',
  'moving',
  'house',
  'small',
  'area',
  'grass',
  'cut',
  'require',
  'large',
  'mower',
  'engine',
  'replaced',
  'rebuilt',
  'last',
  'year',
  'due',
  'faulty',
  'work',
  'done',
  'lawn',
  'mower',
  'repair',
  'shop',
  'price',
  'phone',
  'leave',
  'message'],
 ['document',
  'rtf',
  'organization',
  'augustana',
  'university',
  'college',
  'camrose',
  'alberta',
  'lines',
  'article',
  'yu',
  'taijung',
  'writes',
  'anybody',
  'document',
  'rtf',
  'file',
  'know',
  'get',
  'thanks',
  'advance',
  'got',
  'one',
  'microsoft',
  'tech',
  'support',
  'sterling',
  'bjorndahl',
  'augustana',
  'university',
  'college',
  'camrose',
  'alberta',
  'canada'],
 ['computer',
  'gets',
  'locked',
  'help',
  'organization',
  'western',
  'michigan',
  'university',
  'lines',
  'weird',
  'thing',
  'happened',
  'computer',
  'lately',
  'gets',
  'locked',
  'stops',
  'anything',
  'instance',
  'without',
  'reason',
  'whatsover',
  'might',
  'using',
  'edit',
  'gets',
  'locked',
  'might',
  'prompt',
  'occurs',
  'happens',
  'almost',
  'every',
  'times',
  'connect',
  'computer',
  'anyone',
  'slight',
  'idea',
  'whats',
  'wrong',
  'try',
  'ctrl',
  'alt',
  'del',
  'response',
  'turn',
  'back',
  'thanks',
  'help',
  'really',
  'appreciated',
  'mail',
  'possible',
  'sometimes',
  'cant',
  'access',
  'service',
  'enrique'],
 ['bryan',
  'strouse',
  'nhl',
  'playoff',
  'results',
  'games',
  'played',
  'organization',
  'keywords',
  'division',
  'semis',
  'game',
  'one',
  'lines',
  'nhl',
  'playoff',
  'results',
  'conference',
  'semi',
  'finals',
  'best',
  'seven',
  'patrick',
  'adams',
  'norris',
  'smythe',
  'nj',
  'buf',
  'leads',
  'stl',
  'leads',
  'win',
  'pit',
  'leads',
  'bos',
  'chi',
  'van',
  'leads',
  'nyi',
  'mon',
  'tor',
  'la',
  'leads',
  'leads',
  'que',
  'leads',
  'det',
  'leads',
  'cal',
  'toronto',
  'maple',
  'leafs',
  'detroit',
  'red',
  'wings',
  'leads',
  'series',
  'st',
  'period',
  'det',
  'yzerman',
  'gallant',
  'ciccarelli',
  'tor',
  'cullen',
  'clark',
  'gill',
  'nd',
  'period',
  'det',
  'sheppard',
  'probert',
  'coffey',
  'pp',
  'det',
  'burr',
  'racine',
  'sh',
  'det',
  'chiasson',
  'coffey',
  'pp',
  'det',
  'howe',
  'yzerman',
  'drake',
  'tor',
  'gilmour',
  'borschevsky',
  'ellett',
  'pp',
  'rd',
  'period',
  'det',
  'racine',
  'primeau',
  'drake',
  'tor',
  'lefebvre',
  'cullen',
  'pearson',
  'powerplay',
  'opportunities',
  'maple',
  'leafs',
  'red',
  'wings',
  'shots',
  'goal',
  'maple',
  'leafs',
  'red',
  'wings',
  'toronto',
  'maple',
  'leafs',
  'potvin',
  'shots',
  'saves',
  'detroit',
  'red',
  'wings',
  'cheveldae',
  'shots',
  'saves',
  'att',
  'winnipeg',
  'jets',
  'vancouver',
  'canucks',
  'leads',
  'series',
  'st',
  'period',
  'van',
  'adams',
  'linden',
  'bure',
  'pp',
  'van',
  'craven',
  'bure',
  'murzyn',
  'win',
  'steen',
  'shannon',
  'housley',
  'pp',
  'nd',
  'period',
  'none',
  'rd',
  'period',
  'win',
  'king',
  'barnes',
  'van',
  'linden',
  'courtnall',
  'mclean',
  'van',
  'ronning',
  'courtnall',
  'powerplay',
  'opportunities',
  'jets',
  'canucks',
  'shots',
  'goal',
  'jets',
  'canucks',
  'winnipeg',
  'jets',
  'essensa',
  'shots',
  'saves',
  'vancouver',
  'canucks',
  'mclean',
  'shots',
  'saves',
  'att',
  'spike'],
 ['serdar',
  'argic',
  'minority',
  'abuses',
  'greece',
  'reply',
  'serdar',
  'argic',
  'distribution',
  'world',
  'lines',
  'article',
  'michael',
  'polymenakos',
  'writes',
  'well',
  'zumabot',
  'claims',
  'opposite',
  'greeks',
  'allowing',
  'turks',
  'exit',
  'country',
  'explain',
  'number',
  'turks',
  'thrace',
  'steadily',
  'risen',
  'greeks',
  'dr',
  'goebels',
  'thought',
  'lie',
  'repeated',
  'enough',
  'times',
  'could',
  'finally',
  'believed',
  'observing',
  'poly',
  'practicing',
  'goebels',
  'rule',
  'quite',
  'loyally',
  'polys',
  'audience',
  'mostly',
  'made',
  'greeks',
  'allowed',
  'listen',
  'turkish',
  'news',
  'however',
  'todays',
  'informed',
  'world',
  'greek',
  'propagandists',
  'fool',
  'instance',
  'lived',
  'remember',
  'tv',
  'news',
  'watched',
  'newspapers',
  'read',
  'younger',
  'generation',
  'read',
  'american',
  'newspapers',
  'july',
  'august',
  'find',
  'really',
  'happened',
  'turkiye',
  'greek',
  'hospital',
  'greek',
  'girls',
  'lycee',
  'alumni',
  'association',
  'principo',
  'islands',
  'greek',
  'benevolent',
  'society',
  'greek',
  'medical',
  'foundation',
  'principo',
  'greek',
  'orphanage',
  'foundation',
  'yovakimion',
  'greek',
  'girls',
  'lycee',
  'foundation',
  'fener',
  'greek',
  'mens',
  'lycee',
  'foundation',
  'greece',
  'longstanding',
  'adjective',
  'turkish',
  'titles',
  'signboards',
  'prohibited',
  'greek',
  'courts',
  'ordered',
  'closure',
  'turkish',
  'teachers',
  'association',
  'komotini',
  'turkish',
  'youth',
  'association',
  'ksanti',
  'turkish',
  'association',
  'grounds',
  'turks',
  'western',
  'thrace',
  'community',
  'associations',
  'active',
  'first',
  'told',
  'remove',
  'word',
  'turkish',
  'buildings',
  'official',
  'papers',
  'eventually',
  'close',
  'also',
  'final',
  'verdict',
  'november',
  'greek',
  'high',
  'court',
  'city',
  'komotini',
  'former',
  'greek',
  'parliamentarian',
  'turkish',
  'parentage',
  'sentenced',
  'recently',
  'months',
  'imprisonment',
  'right',
  'appeal',
  'saying',
  'outloud',
  'turkish',
  'descent',
  'duly',
  'elected',
  'ethnic',
  'turkish',
  'official',
  'also',
  'deprived',
  'political',
  'rights',
  'period',
  'three',
  'years',
  'one',
  'barbaric',
  'acts',
  'seems',
  'none',
  'vehicle',
  'used',
  'greek',
  'governments',
  'cover',
  'inferiority',
  'complex',
  'display',
  'vis',
  'vis',
  'people',
  'turkiye',
  'agreement',
  'exchange',
  'minorities',
  'uses',
  'term',
  'turks',
  'demonstrates',
  'actually',
  'meant',
  'previous',
  'reference',
  'muslims',
  'fact',
  'greek',
  'governments',
  'also',
  'mention',
  'existence',
  'thousand',
  'non',
  'turkish',
  'muslims',
  'change',
  'essential',
  'reality',
  'lives',
  'western',
  'thrace',
  'much',
  'bigger',
  'turkish',
  'minority',
  'pomaks',
  'also',
  'muslim',
  'people',
  'three',
  'nations',
  'bulgarians',
  'turks',
  'greeks',
  'consider',
  'part',
  'know',
  'muslim',
  'turkish',
  'minority',
  'organized',
  'according',
  'agreements',
  'poor',
  'poly',
  'also',
  'proves',
  'turkish',
  'people',
  'trapped',
  'greece',
  'greek',
  'people',
  'free',
  'settle',
  'anywhere',
  'world',
  'greek',
  'authorities',
  'deny',
  'even',
  'existence',
  'turkish',
  'minority',
  'pursue',
  'denial',
  'connection',
  'macedonians',
  'greece',
  'talk',
  'oppression',
  'addition',
  'democratic',
  'greek',
  'parliament',
  'passed',
  'law',
  'virtually',
  'taking',
  'administration',
  'vakiflar',
  'charitable',
  'trusts',
  'ceased',
  'self',
  'supporting',
  'religious',
  'cultural',
  'entities',
  'talk',
  'fascism',
  'greek',
  'governments',
  'attempting',
  'appoint',
  'muftus',
  'irrespective',
  'turkish',
  'minority',
  'state',
  'official',
  'although',
  'orthodox',
  'church',
  'full',
  'authority',
  'similar',
  'matters',
  'greece',
  'muslim',
  'turkish',
  'minority',
  'say',
  'electing',
  'religious',
  'leaders',
  'talk',
  'democracy',
  'government',
  'greece',
  'recently',
  'destroyed',
  'islamic',
  'convention',
  'komotini',
  'destruction',
  'reflects',
  'attitude',
  'muslim',
  'turkish',
  'cultural',
  'heritage',
  'violation',
  'lausanne',
  'convention',
  'well',
  'called',
  'greek',
  'constitution',
  'supposed',
  'guarantee',
  'protection',
  'historical',
  'monuments',
  'government',
  'greece',
  'hand',
  'building',
  'new',
  'churches',
  'remote',
  'villages',
  'complementary',
  'step',
  'toward',
  'hellenizing',
  'region',
  'pondered',
  'sidiropoulos',
  'president',
  'macedonian',
  'human',
  'rights',
  'committee',
  'became',
  'latest',
  'victim',
  'tactic',
  'long',
  'used',
  'greeks',
  'silence',
  'critics',
  'policies',
  'forced',
  'assimilation',
  'macedonian',
  'minority',
  'forestry',
  'official',
  'occupation',
  'sidiropoulos',
  'sent',
  'internal',
  'exile',
  'island',
  'kefalonia',
  'hundreds',
  'kilometers',
  'away',
  'native',
  'florina',
  'employer',
  'florina',
  'city',
  'council',
  'asked',
  'depart',
  'hours',
  'greek',
  'authorities',
  'trying',
  'punish',
  'involvement',
  'copenhagen',
  'returned',
  'florina',
  'choice',
  'remains',
  'without',
  'job',
  'helsinki',
  'watch',
  'well',
  'known',
  'human',
  'rights',
  'group',
  'investigating',
  'plight',
  'turkish',
  'minority',
  'greece',
  'august',
  'findings',
  'published',
  'report',
  'titled',
  'destroying',
  'ethnic',
  'identity',
  'turks',
  'greece',
  'report',
  'confirmed',
  'gross',
  'violations',
  'human',
  'rights',
  'turkish',
  'minority',
  'greek',
  'authorities',
  'says',
  'instance',
  'greek',
  'government',
  'recently',
  'destroyed',
  'islamic',
  'convent',
  'komotini',
  'destruction',
  'reflects',
  'attitude',
  'muslim',
  'turkish',
  'cultural',
  'heritage',
  'violation',
  'lausanne',
  'convention',
  'turkish',
  'cemeteries',
  'village',
  'vafeika',
  'pinarlik',
  'attacked',
  'tombstones',
  'broken',
  'cemetery',
  'karotas',
  'razed',
  'bulldozers',
  'shall',
  'go',
  'people',
  'turkiye',
  'going',
  'take',
  'human',
  'rights',
  'lessons',
  'greek',
  'government',
  'discussion',
  'human',
  'rights',
  'violations',
  'greece',
  'stop',
  'greek',
  'frontier',
  'several',
  'following',
  'articles',
  'shall',
  'dwell',
  'expose',
  'greek',
  'treatment',
  'turks',
  'western',
  'thrace',
  'aegean',
  'macedonians',
  'reported',
  'greek',
  'cypriot',
  'administration',
  'intense',
  'desire',
  'arms',
  'greece',
  'made',
  'plans',
  'supply',
  'tanks',
  'armored',
  'vehicles',
  'destroy',
  'accordance',
  'agreement',
  'reached',
  'conventional',
  'arms',
  'reductions',
  'europe',
  'meanwhile',
  'greek',
  'greek',
  'cypriot',
  'officials',
  'reported',
  'planned',
  'take',
  'ostentatious',
  'measures',
  'aimed',
  'camouflaging',
  'transfer',
  'tanks',
  'armored',
  'vehicles',
  'southern',
  'cyprus',
  'process',
  'conflict',
  'spirit',
  'agreement',
  'conventional',
  'arms',
  'reduction',
  'europe',
  'acceptable',
  'method',
  'may',
  'certainly',
  'found',
  'know',
  'various',
  'kinds',
  'violent',
  'behaviors',
  'ranging',
  'physical',
  'attacks',
  'burning',
  'buildings',
  'rugs',
  'amfia',
  'village',
  'mosque',
  'dragged',
  'front',
  'building',
  'burnt',
  'shots',
  'fired',
  'mosque',
  'village',
  'aryana',
  'wait',
  'greek',
  'atrocities',
  'vilayet',
  'smyrna',
  'may',
  'july',
  'inedited',
  'documents',
  'evidence',
  'english',
  'french',
  'officers',
  'published',
  'permanent',
  'bureau',
  'turkish',
  'congress',
  'lausanne',
  'lausanne',
  'imprimerie',
  'petter',
  'giesser',
  'held',
  'caroline',
  'pages',
  'train',
  'going',
  'denizli',
  'smyrna',
  'stopped',
  'ephesus',
  'turkish',
  'travellers',
  'men',
  'women',
  'ordered',
  'descend',
  'open',
  'street',
  'eyes',
  'husbands',
  'fathers',
  'brothers',
  'women',
  'without',
  'distinction',
  'age',
  'violated',
  'travellers',
  'massacred',
  'amongst',
  'latter',
  'lieutenant',
  'salih',
  'effendi',
  'native',
  'tripoli',
  'captain',
  'whose',
  'name',
  'known',
  'hellenic',
  'authorities',
  'given',
  'safe',
  'conduct',
  'killed',
  'specially',
  'atrocious',
  'tortures',
  'battle',
  'wife',
  'lawyer',
  'enver',
  'bey',
  'coming',
  'garden',
  'maltreated',
  'greek',
  'soldiers',
  'even',
  'stript',
  'garments',
  'servant',
  'assie',
  'violated',
  'two',
  'tax',
  'gatherers',
  'mustapha',
  'ali',
  'effendi',
  'killed',
  'following',
  'manner',
  'arms',
  'bound',
  'behind',
  'backs',
  'wire',
  'heads',
  'battered',
  'burst',
  'open',
  'blows',
  'butt',
  'end',
  'gun',
  'firing',
  'town',
  'eleven',
  'children',
  'six',
  'little',
  'girls',
  'five',
  'boys',
  'fleeing',
  'flames',
  'stopped',
  'greek',
  'soldiers',
  'ramazan',
  'pacha',
  'quarter',
  'thrown',
  'burning',
  'jewish',
  'house',
  'near',
  'bridge',
  'burnt',
  'alive',
  'fact',
  'confirmed',
  'oath',
  'retired',
  'commandant',
  'hussein',
  'hussni',
  'effendi',
  'saw',
  'clock',
  'maker',
  'ahmed',
  'effendi',
  'son',
  'sadi',
  'arrested',
  'dragged',
  'shop',
  'son',
  'eyes',
  'put',
  'killed',
  'court',
  'greek',
  'church',
  'ahmed',
  'effendi',
  'heard',
  'market',
  'fire',
  'two',
  'unknown',
  'people',
  'wounded',
  'bayonets',
  'bound',
  'together',
  'thrown',
  'fire',
  'burnt',
  'alive',
  'greeks',
  'killed',
  'also',
  'many',
  'jews',
  'names',
  'moussa',
  'malki',
  'shoemaker',
  'killed',
  'bohor',
  'levy',
  'tailor',
  'killed',
  'bohor',
  'israel',
  'cobbler',
  'killed',
  'isaac',
  'calvo',
  'shoemaker',
  'killed',
  'david',
  'aroguete',
  'killed',
  'moussa',
  'lerosse',
  'killed',
  'gioia',
  'katan',
  'killed',
  'meryem',
  'malki',
  'killed',
  'soultan',
  'gharib',
  'killed',
  'isaac',
  'sabah',
  'wounded',
  'moche',
  'fahmi',
  'wounded',
  'david',
  'sabah',
  'wounded',
  'moise',
  'bensignor',
  'killed',
  'sarah',
  'bendi',
  'killed',
  'jacob',
  'jaffe',
  'wounded',
  'aslan',
  'halegna',
  'wounded',
  'serdar',
  'argic',
  'closed',
  'roads',
  'mountain',
  'passes',
  'might',
  'serve',
  'ways',
  'escape',
  'turks',
  'proceeded',
  'work',
  'extermination',
  'ohanus',
  'appressian',
  'soviet',
  'armenia',
  'today',
  'longer',
  'exists',
  'single',
  'turkish',
  'soul',
  'sahak',
  'melkonian'],
 ['keith',
  'lynch',
  'glutamate',
  'organization',
  'express',
  'access',
  'public',
  'access',
  'unix',
  'greenbelt',
  'maryland',
  'usa',
  'lines',
  'nntp',
  'posting',
  'host',
  'access',
  'digex',
  'net',
  'article',
  'lawrence',
  'sher',
  'writes',
  'med',
  'editorial',
  'dicarboxylic',
  'amino',
  'acid',
  'glutamate',
  'essential',
  'amino',
  'acid',
  'glutamate',
  'essential',
  'amino',
  'acid',
  'people',
  'survive',
  'quite',
  'well',
  'without',
  'ever',
  'eating',
  'keith',
  'lynch'],
 ['tavares',
  'blast',
  'next',
  'time',
  'organization',
  'stratus',
  'computer',
  'inc',
  'lines',
  'distribution',
  'usa',
  'nntp',
  'posting',
  'host',
  'rocket',
  'sw',
  'stratus',
  'com',
  'article',
  'daniel',
  'oldham',
  'writes',
  'batf',
  'needs',
  'people',
  'better',
  'weapons',
  'armored',
  'transports',
  'meet',
  'hostile',
  'fire',
  'able',
  'force',
  'instead',
  'retreating',
  'stand',
  'going',
  'job',
  'right',
  'batf',
  'protect',
  'us',
  'must',
  'proper',
  'equipment',
  'people',
  'job',
  'batf',
  'collect',
  'taxes',
  'protect',
  'sorry',
  'ass',
  'mine',
  'wod',
  'increased',
  'crime',
  'streets',
  'batf',
  'needed',
  'ever',
  'blast',
  'away',
  'good',
  'fokes',
  'price',
  'pay',
  'law',
  'order',
  'country',
  'flame',
  'bait',
  'course',
  'really',
  'want',
  'flame',
  'bait',
  'send',
  'address',
  'ill',
  'tell',
  'batf',
  'automatic',
  'weapons',
  'stockpiled',
  'youll',
  'warm',
  'time',
  'believe',
  'speak',
  'company',
  'write',
  'today',
  'special',
  'investors',
  'packet'],
 ['motion',
  'video',
  'card',
  'yuv',
  'rgb',
  'organization',
  'west',
  'virginia',
  'network',
  'educational',
  'telecomputing',
  'lines',
  'trying',
  'convert',
  'motion',
  'ibm',
  'video',
  'file',
  'format',
  'yuv',
  'rgb',
  'data',
  'portion',
  'byte',
  'byte',
  'color',
  'intensity',
  'anyone',
  'ideas',
  'algorhtyms',
  'programs',
  'someone',
  'tell',
  'get',
  'info',
  'television',
  'signal',
  'need',
  'info',
  'reply',
  'mail',
  'address',
  'basically',
  'converting',
  'digital',
  'ntsc',
  'format',
  'rgb',
  'vga',
  'displaying',
  'captured',
  'video',
  'pictures',
  'thanks',
  'byte'],
 ['get',
  'thee',
  'nunnery',
  'israels',
  'expansion',
  'ii',
  'organization',
  'university',
  'virginia',
  'lines',
  'writes',
  'andi',
  'beyer',
  'writes',
  'writes',
  'andi',
  'beyer',
  'writes',
  'first',
  'never',
  'said',
  'holocaust',
  'said',
  'holocaust',
  'im',
  'ignorant',
  'holocaust',
  'know',
  'nazi',
  'germany',
  'people',
  'maybe',
  'including',
  'uh',
  'oh',
  'first',
  'sign',
  'argument',
  'without',
  'merit',
  'stating',
  'ones',
  'qualifications',
  'area',
  'know',
  'something',
  'nazi',
  'germany',
  'show',
  'dont',
  'shut',
  'simple',
  'dont',
  'think',
  'suffering',
  'jews',
  'wwii',
  'justifies',
  'crimes',
  'commited',
  'israeli',
  'government',
  'attempt',
  'call',
  'civil',
  'liberterians',
  'like',
  'anti',
  'semetic',
  'appreciated',
  'jews',
  'suffered',
  'wwii',
  'beloved',
  'perished',
  'tortured',
  'suffered',
  'second',
  'name',
  'calling',
  'directed',
  'civil',
  'libertarians',
  'general',
  'name',
  'dropping',
  'fancy',
  'sounding',
  'political',
  'term',
  'yet',
  'another',
  'attempt',
  'cite',
  'qualifications',
  'order',
  'obfuscate',
  'glaring',
  'unpreparedness',
  'argument',
  'go',
  'back',
  'minors',
  'junior',
  'humans',
  'suffered',
  'emotionally',
  'jews',
  'many',
  'others',
  'suffered',
  'physically',
  'sad',
  'people',
  'like',
  'blinded',
  'emotions',
  'cant',
  'see',
  'facts',
  'thanks',
  'calling',
  'names',
  'assures',
  'kind',
  'ignorant',
  'people',
  'dealing',
  'included',
  'letter',
  'since',
  'thought',
  'demonstrated',
  'point',
  'anything',
  'could',
  'write',
  'youre',
  'willing',
  'actually',
  'support',
  'something',
  'say',
  'fact',
  'argument',
  'rather',
  'covering',
  'inadequacies',
  'feigned',
  'offense',
  'let',
  'know',
  'otherwise',
  'back',
  'league',
  'son',
  'never',
  'seen',
  'immaturity',
  'among',
  'semitophiles',
  'andi',
  'beyer',
  'character',
  'shows',
  'signs',
  'anti',
  'semitism',
  'yet',
  'deviates',
  'norm',
  'accepted',
  'opinion',
  'attack',
  'anyone',
  'venture',
  'answer',
  'andis',
  'question',
  'intelligent',
  'unoffending',
  'manner',
  'ones',
  'guilty',
  'backing',
  'viewpoints',
  'fact',
  'israelophiles',
  'please',
  'start',
  'intelligent',
  'conversation',
  'insult',
  'race',
  'assuming',
  'also',
  'semitic',
  'comment',
  'concerning',
  'israeli',
  'terrorism',
  'hirgun',
  'branch',
  'militant',
  'groups',
  'fight',
  'british',
  'get',
  'palestine',
  'yet',
  'fail',
  'see',
  'israeli',
  'form',
  'terrorism',
  'better',
  'terrorism',
  'practiced',
  'arabs',
  'jewish',
  'terrorist',
  'groups',
  'killed',
  'innocent',
  'british',
  'soldiers',
  'thta',
  'also',
  'killed',
  'many',
  'jews',
  'favor',
  'compromise',
  'palestinians',
  'addition',
  'massacred',
  'entire',
  'palestinian',
  'village',
  'contributing',
  'exodus',
  'frightened',
  'palestinians',
  'feared',
  'lives',
  'mention',
  'im',
  'anti',
  'semitic',
  'im',
  'part',
  'jewish',
  'self',
  'righteousness',
  'part',
  'israelites',
  'pisses',
  'im',
  'critical',
  'palestinians',
  'indeed',
  'screwed',
  'jews',
  'damn',
  'shame',
  'palestinians',
  'pay',
  'german',
  'european',
  'anti',
  'semitism',
  'pissed',
  'immature',
  'closeminded',
  'self',
  'righteous',
  'semites'],
 ['yevgeny',
  'gene',
  'kilman',
  'usatoday',
  'ad',
  'family',
  'values',
  'organization',
  'florida',
  'international',
  'university',
  'miami',
  'lines',
  'article',
  'dan',
  'babcock',
  'writes',
  'funny',
  'ad',
  'usatoday',
  'american',
  'family',
  'association',
  'ill',
  'post',
  'choice',
  'parts',
  'enjoyment',
  'emphases',
  'ad',
  'im',
  'adding',
  'anything',
  'typos',
  'mine',
  'dans',
  'article',
  'deleted',
  'found',
  'add',
  'local',
  'sunday',
  'newspaper',
  'add',
  'placed',
  'cartoon',
  'section',
  'perfect',
  'place'],
 ['tim',
  'clock',
  'islam',
  'borders',
  'vs',
  'israeli',
  'borders',
  'nntp',
  'posting',
  'host',
  'orion',
  'oac',
  'uci',
  'organization',
  'university',
  'california',
  'irvine',
  'lines',
  'article',
  'ilyess',
  'bdira',
  'writes',
  'article',
  'gideon',
  'ehrlich',
  'writes',
  'borders',
  'islamic',
  'world',
  'dreams',
  'islamic',
  'world',
  'dreams',
  'whole',
  'planet',
  'kicking',
  'current',
  'inhabitant',
  'rather',
  'deam',
  'day',
  'everybody',
  'converts',
  'jews',
  'dream',
  'would',
  'feel',
  'threatened',
  'bit',
  'certainly',
  'muslims',
  'believe',
  'dream',
  'global',
  'islamic',
  'community',
  'achieved',
  'force',
  'however',
  'others',
  'often',
  'far',
  'visible',
  'vocal',
  'former',
  'accept',
  'establishment',
  'global',
  'islam',
  'force',
  'would',
  'feel',
  'threatened',
  'accepting',
  'pursuing',
  'islamicization',
  'peaceful',
  'means',
  'jews',
  'advocating',
  'approach',
  'advocating',
  'force',
  'means',
  'expanding',
  'sides',
  'power',
  'certainly',
  'threat',
  'palestinians',
  'israel',
  'maintaining',
  'dominance',
  'outside',
  'group',
  'told',
  'one',
  'impose',
  'control',
  'damn',
  'right',
  'threat',
  'member',
  'non',
  'muslim',
  'minority',
  'inside',
  'islamic',
  'world',
  'actively',
  'accept',
  'minority',
  'status',
  'would',
  'also',
  'certainly',
  'see',
  'islams',
  'domination',
  'acheived',
  'maintained',
  'powerful',
  'coercive',
  'force',
  'majorities',
  'wield',
  'minorities',
  'within',
  'ranks',
  'islamic',
  'readers',
  'waiting',
  'honest',
  'answer',
  'want',
  'also',
  'honest',
  'answer',
  'zionists',
  'following',
  'questions',
  'zionist',
  'feel',
  'jewish',
  'palestinian',
  'nationalist',
  'desires',
  'need',
  'juncture',
  'accepted',
  'way',
  'jews',
  'dont',
  'even',
  'believe',
  'god',
  'case',
  'many',
  'founders',
  'secular',
  'zionism',
  'right',
  'palestine',
  'inhabitants',
  'palestine',
  'god',
  'gave',
  'land',
  'reason',
  'muslims',
  'believe',
  'proper',
  'righteous',
  'islam',
  'spread',
  'force',
  'upon',
  'want',
  'speak',
  'west',
  'bank',
  'inhabitants',
  'jews',
  'want',
  'part',
  'israel',
  'refer',
  'also',
  'refer',
  'scared',
  'feel',
  'threatened',
  'well',
  'feeling',
  'area',
  'degree',
  'part',
  'belief',
  'religion',
  'heritage',
  'identity',
  'etc',
  'strongly',
  'object',
  'justify',
  'israeli',
  'rule',
  'want',
  'occupied',
  'territories',
  'israels',
  'control',
  'keep',
  'dominate',
  'tim'],
 ['jeff',
  'cook',
  'vandalizing',
  'sky',
  'organization',
  'none',
  'lines',
  'reply',
  'message',
  'apr',
  'gmt',
  'article',
  'enzo',
  'liguori',
  'writes',
  'space',
  'marketing',
  'working',
  'university',
  'colorado',
  'livermore',
  'engineers',
  'plan',
  'place',
  'mile',
  'long',
  'inflatable',
  'billboard',
  'low',
  'earth',
  'orbit',
  'nasa',
  'would',
  'provide',
  'contractual',
  'launch',
  'services',
  'however',
  'since',
  'nasa',
  'bases',
  'charge',
  'seriously',
  'flawed',
  'cost',
  'estimates',
  'wn',
  'mar',
  'taxpayers',
  'would',
  'bear',
  'expense',
  'may',
  'look',
  'like',
  'environmental',
  'vandalism',
  'mike',
  'lawson',
  'ceo',
  'space',
  'marketing',
  'told',
  'us',
  'yesterday',
  'real',
  'purpose',
  'project',
  'help',
  'environment',
  'platform',
  'carry',
  'ozone',
  'monitors',
  'explained',
  'advertising',
  'help',
  'defray',
  'costs',
  'could',
  'possibly',
  'environmental',
  'vandalism',
  'environment',
  'vandalize',
  'since',
  'advertising',
  'help',
  'defray',
  'costs',
  'certainly',
  'surprise',
  'taxpayers',
  'would',
  'bear',
  'expense',
  'sounds',
  'like',
  'good',
  'idea',
  'since',
  'taxpayers',
  'would',
  'bear',
  'expense',
  'didnt',
  'advertising',
  'think',
  'revolting',
  'hideous',
  'attempt',
  'vandalize',
  'night',
  'sky',
  'great',
  'idea',
  'done',
  'long',
  'ago',
  'light',
  'pollution',
  'observations',
  'read',
  'somewhere',
  'else',
  'might',
  'even',
  'visible',
  'day',
  'leave',
  'alone',
  'night',
  'cant',
  'believe',
  'mile',
  'long',
  'billboard',
  'would',
  'significant',
  'effect',
  'overall',
  'sky',
  'brightness',
  'venus',
  'visible',
  'day',
  'nobody',
  'complains',
  'besides',
  'leo',
  'would',
  'visible',
  'twilight',
  'sky',
  'already',
  'bright',
  'even',
  'would',
  'miniscule',
  'impact',
  'would',
  'short',
  'time',
  'goes',
  'zipping',
  'across',
  'sky',
  'protesting',
  'groups',
  'organized',
  'states',
  'doubt',
  'people',
  'always',
  'looking',
  'something',
  'protest',
  'would',
  'surprise',
  'really',
  'really',
  'depressed',
  'well',
  'look',
  'er',
  'bright',
  'side',
  'imagine',
  'looks',
  'faces',
  'people',
  'primitive',
  'tribes',
  'middle',
  'nowhere',
  'look',
  'see',
  'budweiser',
  'flying',
  'across',
  'sky',
  'jeff',
  'cook'],
 ['western',
  'digital',
  'hd',
  'info',
  'needed',
  'distribution',
  'world',
  'lines',
  'article',
  'michael',
  'gerhards',
  'writes',
  'holly',
  'ks',
  'wrote',
  'western',
  'digital',
  'also',
  'three',
  'sets',
  'pins',
  'back',
  'using',
  'another',
  'hard',
  'drive',
  'well',
  'settings',
  'jumpers',
  'written',
  'right',
  'circuit',
  'board',
  'wd',
  'drive',
  'sl',
  'jumper',
  'used',
  'drive',
  'conner',
  'cp',
  'xxx',
  'jumper',
  'set',
  'drive',
  'alone',
  'drive',
  'master',
  'sl',
  'drive',
  'slave',
  'yo',
  'yo',
  'yo',
  'western',
  'digital',
  'hd',
  'hve',
  'marked',
  'either',
  'put',
  'jumper',
  'printed',
  'circuitry',
  'underkneth',
  'hope',
  'helped',
  'problem',
  'bye',
  'later',
  'daze',
  'michael',
  'michael',
  'gerhards',
  'preussenstrasse',
  'germany',
  'neuss',
  'voice'],
 ['brian',
  'hughes',
  'installing',
  'ram',
  'quadra',
  'reply',
  'organization',
  'dartmouth',
  'college',
  'hanover',
  'nh',
  'disclaimer',
  'personally',
  'really',
  'dont',
  'care',
  'think',
  'speak',
  'moderator',
  'rec',
  'arts',
  'comics',
  'info',
  'lines',
  'scott',
  'truesdell',
  'writes',
  'aside',
  'brian',
  'hughess',
  'please',
  'lets',
  'lose',
  'cute',
  'phony',
  'names',
  'everybody',
  'posting',
  'adding',
  'memory',
  'quadra',
  'phony',
  'names',
  'name',
  'clearly',
  'visible',
  'headers',
  'sing',
  'post',
  'account',
  'name',
  'problem',
  'get',
  'ive',
  'used',
  'account',
  'name',
  'years',
  'people',
  'reading',
  'newsgroups',
  'last',
  'generally',
  'recognize',
  'hades',
  'account',
  'name',
  'intention',
  'changing',
  'way',
  'post',
  'installed',
  'couple',
  'mb',
  'simms',
  'quadra',
  'somewhat',
  'dismayed',
  'general',
  'complexity',
  'operation',
  'compared',
  'example',
  'wonderfully',
  'designed',
  'lc',
  'iii',
  'irritates',
  'apple',
  'refuses',
  'tell',
  'users',
  'manual',
  'guess',
  'disassemble',
  'devise',
  'question',
  'adding',
  'memory',
  'laserwriter',
  'pros',
  'isnt',
  'apples',
  'responsibility',
  'tell',
  'customers',
  'fool',
  'around',
  'hardware',
  'apple',
  'service',
  'techs',
  'get',
  'paid',
  'personally',
  'like',
  'design',
  'applaud',
  'apple',
  'coming',
  'good',
  'way',
  'make',
  'front',
  'space',
  'drive',
  'bays',
  'like',
  'lot',
  'better',
  'design',
  'except',
  'people',
  'need',
  'drive',
  'arrays',
  'however',
  'agree',
  'lw',
  'pro',
  'design',
  'operation',
  'isnt',
  'complicated',
  'even',
  'minimal',
  'amount',
  'help',
  'offered',
  'apple',
  'leaves',
  'working',
  'blind',
  'itss',
  'apples',
  'place',
  'make',
  'easy',
  'non',
  'certified',
  'service',
  'people',
  'fool',
  'around',
  'apple',
  'hardware',
  'even',
  'buy',
  'course',
  'free',
  'want',
  'mac',
  'dont',
  'get',
  'upset',
  'apple',
  'service',
  'rep',
  'tells',
  'warranty',
  'longer',
  'valid',
  'memory',
  'installed',
  'distraught',
  'top',
  'simms',
  'came',
  'contact',
  'plastic',
  'case',
  'frame',
  'mine',
  'actually',
  'contacted',
  'framework',
  'quite',
  'lot',
  'pressure',
  'enough',
  'assembly',
  'board',
  'back',
  'proper',
  'position',
  'rather',
  'difficult',
  'required',
  'force',
  'could',
  'filed',
  'little',
  'excess',
  'material',
  'top',
  'simm',
  'boards',
  'chose',
  'let',
  'stand',
  'problems',
  'ram',
  'yet',
  'consider',
  'problem',
  'annoying',
  'catastrophic',
  'sounds',
  'like',
  'kind',
  'problem',
  'installed',
  'mb',
  'simms',
  'lc',
  'back',
  'low',
  'profile',
  'mb',
  'simms',
  'readily',
  'available',
  'standard',
  'mb',
  'simms',
  'would',
  'contact',
  'top',
  'case',
  'make',
  'bit',
  'difficult',
  'close',
  'lc',
  'close',
  'work',
  'fine',
  'one',
  'nice',
  'things',
  'logic',
  'boards',
  'generally',
  'quite',
  'flexible',
  'withstand',
  'fair',
  'amount',
  'pressure',
  'hades'],
 ['peter',
  'goudswaard',
  'regload',
  'exe',
  'keywords',
  'regload',
  'organization',
  'simon',
  'fraser',
  'university',
  'burnaby',
  'canada',
  'lines',
  'perusing',
  'windows',
  'directory',
  'came',
  'across',
  'file',
  'called',
  'regload',
  'exe',
  'assume',
  'part',
  'registration',
  'database',
  'neither',
  'windows',
  'manual',
  'win',
  'resource',
  'kit',
  'pc',
  'mags',
  'description',
  'files',
  'windows',
  'directory',
  'reference',
  'least',
  'one',
  'could',
  'find',
  'regedit',
  'exe',
  'way',
  'base',
  'peter',
  'goudswaard',
  'preferred',
  'theres',
  'gift',
  'like',
  'present',
  'goudswaards',
  'observation'],
 ['tavares',
  'long',
  'gun',
  'hearings',
  'day',
  'massachusetts',
  'april',
  'organization',
  'stratus',
  'computer',
  'inc',
  'lines',
  'distribution',
  'usa',
  'nntp',
  'posting',
  'host',
  'rocket',
  'sw',
  'stratus',
  'com',
  'co',
  'authored',
  'report',
  'two',
  'us',
  'gun',
  'owners',
  'action',
  'league',
  'state',
  'rifle',
  'association',
  'started',
  'day',
  'rally',
  'secluded',
  'courtyard',
  'behind',
  'statehouse',
  'looking',
  'sparse',
  'people',
  'speaker',
  'began',
  'whereupon',
  'people',
  'followed',
  'loudspeakers',
  'wherever',
  'lost',
  'filled',
  'area',
  'something',
  'proud',
  'mike',
  'yacino',
  'goal',
  'spoke',
  'one',
  'best',
  'throwaway',
  'lines',
  'remind',
  'us',
  'us',
  'holders',
  'carry',
  'permits',
  'checked',
  'certified',
  'clear',
  'crimes',
  'state',
  'people',
  'statehouse',
  'behind',
  'us',
  'certified',
  'clean',
  'election',
  'fraud',
  'hold',
  'jobs',
  'nancy',
  'snow',
  'amos',
  'hamburger',
  'busy',
  'handing',
  'id',
  'buttons',
  'sheets',
  'describing',
  'bills',
  'presented',
  'hearings',
  'telling',
  'people',
  'find',
  'representatives',
  'many',
  'cases',
  'mike',
  'warned',
  'us',
  'committee',
  'going',
  'suspend',
  'rules',
  'discuss',
  'bill',
  'hadnt',
  'made',
  'onto',
  'official',
  'list',
  'seems',
  'delegation',
  'students',
  'simons',
  'rock',
  'bard',
  'college',
  'alma',
  'mater',
  'wayne',
  'lo',
  'shot',
  'place',
  'sks',
  'late',
  'last',
  'year',
  'bussed',
  'testify',
  'bill',
  'ban',
  'sales',
  'firearms',
  'ammo',
  'anyone',
  'state',
  'resident',
  'hearings',
  'originally',
  'scheduled',
  'large',
  'gardner',
  'auditorium',
  'pre',
  'empted',
  'governors',
  'hearings',
  'framingham',
  'eight',
  'women',
  'prison',
  'killing',
  'abusive',
  'husbands',
  'seeking',
  'release',
  'buttonhole',
  'representatives',
  'would',
  'squashed',
  'inadequate',
  'hearing',
  'room',
  'one',
  'representatives',
  'staffers',
  'somewhat',
  'offensively',
  'smarmy',
  'said',
  'oh',
  'must',
  'gun',
  'hearings',
  'day',
  'gun',
  'lobby',
  'always',
  'organized',
  'every',
  'year',
  'got',
  'little',
  'pissed',
  'replied',
  'im',
  'gun',
  'lobby',
  'im',
  'district',
  'second',
  'reporter',
  'arrived',
  'time',
  'notice',
  'demonstration',
  'going',
  'front',
  'statehouse',
  'pro',
  'gunners',
  'werent',
  'randy',
  'price',
  'tv',
  'news',
  'mirror',
  'reflective',
  'shades',
  'talking',
  'one',
  'anti',
  'gun',
  'types',
  'several',
  'simons',
  'rock',
  'anti',
  'gun',
  'close',
  'loophole',
  'protestors',
  'earlier',
  'randy',
  'covered',
  'goal',
  'rally',
  'room',
  'assigned',
  'seated',
  'remember',
  'gun',
  'owners',
  'plus',
  'another',
  'students',
  'teachers',
  'bard',
  'one',
  'us',
  'already',
  'reserved',
  'seat',
  'never',
  'got',
  'closer',
  'atrium',
  'outside',
  'crowd',
  'behind',
  'cop',
  'took',
  'station',
  'entrance',
  'prevented',
  'rest',
  'crowd',
  'coming',
  'soon',
  'debate',
  'started',
  'loudspeaker',
  'set',
  'outside',
  'hall',
  'benefit',
  'everyone',
  'else',
  'everyone',
  'inside',
  'outside',
  'got',
  'sign',
  'sheet',
  'saying',
  'position',
  'bills',
  'us',
  'signed',
  'support',
  'goals',
  'position',
  'bills',
  'first',
  'time',
  'constraints',
  'public',
  'officials',
  'got',
  'testify',
  'first',
  'bill',
  'nobody',
  'seen',
  'students',
  'curfew',
  'guess',
  'currently',
  'massachusetts',
  'law',
  'allows',
  'non',
  'resident',
  'purchase',
  'long',
  'guns',
  'ammo',
  'local',
  'dealer',
  'provided',
  'complies',
  'laws',
  'state',
  'previously',
  'law',
  'similar',
  'applied',
  'non',
  'residents',
  'states',
  'adjoining',
  'massachusetts',
  'simons',
  'rock',
  'folks',
  'called',
  'current',
  'law',
  'loophole',
  'wanted',
  'closed',
  'two',
  'reps',
  'spoke',
  'wayne',
  'lo',
  'sks',
  'assault',
  'rifle',
  'second',
  'one',
  'hodgekiss',
  'co',
  'sponsor',
  'done',
  'homework',
  'well',
  'kept',
  'confusing',
  'montana',
  'wayne',
  'los',
  'home',
  'state',
  'missouri',
  'became',
  'belligerent',
  'five',
  'gun',
  'owners',
  'gallery',
  'corrected',
  'second',
  'muff',
  'carr',
  'gloucester',
  'claimed',
  'new',
  'bill',
  'would',
  'put',
  'law',
  'back',
  'way',
  'lying',
  'new',
  'bill',
  'allows',
  'purchases',
  'non',
  'residents',
  'adjoining',
  'states',
  'licensing',
  'state',
  'strong',
  'massachusetts',
  'since',
  'none',
  'thats',
  'things',
  'two',
  'said',
  'really',
  'offensive',
  'states',
  'anyone',
  'buy',
  'gun',
  'long',
  'hes',
  'breathing',
  'oooooo',
  'good',
  'gun',
  'laws',
  'massachusetts',
  'states',
  'would',
  'adopt',
  'type',
  'laws',
  'wouldnt',
  'situation',
  'wont',
  'naughty',
  'naughty',
  'next',
  'boston',
  'city',
  'councilman',
  'albert',
  'dapper',
  'oneill',
  'testify',
  'pro',
  'gun',
  'ways',
  'liability',
  'hes',
  'reasonably',
  'elderly',
  'tends',
  'wander',
  'repeat',
  'plus',
  'hes',
  'almost',
  'caricature',
  'law',
  'order',
  'politician',
  'badmouthed',
  'aclu',
  'said',
  'violent',
  'criminals',
  'executed',
  'judge',
  'hed',
  'give',
  'arrestees',
  'last',
  'rights',
  'pun',
  'intended',
  'spot',
  'many',
  'gun',
  'owners',
  'applauded',
  'bothered',
  'said',
  'proposed',
  'gun',
  'restrictions',
  'step',
  'right',
  'direction',
  'criminals',
  'said',
  'four',
  'times',
  'two',
  'bills',
  'consideration',
  'would',
  'allow',
  'police',
  'rescind',
  'ccw',
  'fid',
  'confiscate',
  'guns',
  'someone',
  'filed',
  'restraining',
  'order',
  'note',
  'filing',
  'restraining',
  'order',
  'requires',
  'warrant',
  'hearing',
  'evidence',
  'conviction',
  'accusation',
  'senator',
  'barrett',
  'reading',
  'testified',
  'favor',
  'patronized',
  'pro',
  'gunners',
  'several',
  'times',
  'saying',
  'im',
  'sure',
  'gun',
  'owners',
  'agree',
  'get',
  'weapons',
  'hands',
  'people',
  'courts',
  'convicted',
  'havent',
  'seen',
  'disgustingly',
  'disingenuous',
  'performance',
  'since',
  'nixon',
  'whined',
  'wasnt',
  'crook',
  'barrett',
  'also',
  'spoke',
  'favor',
  'bill',
  'making',
  'fid',
  'card',
  'renewable',
  'every',
  'five',
  'years',
  'instead',
  'permanent',
  'stated',
  'purpose',
  'remove',
  'fid',
  'cards',
  'become',
  'ineligible',
  'revenue',
  'nothing',
  'yeah',
  'right',
  'apparently',
  'congressmen',
  'think',
  'stupid',
  'enough',
  'swallow',
  'argument',
  'preferable',
  'process',
  'million',
  'renewals',
  'every',
  'cycle',
  'vague',
  'hope',
  'catching',
  'recent',
  'felon',
  'simply',
  'take',
  'goddamn',
  'card',
  'away',
  'criminal',
  'conviction',
  'time',
  'usual',
  'hassle',
  'law',
  'abiding',
  'instead',
  'crook',
  'two',
  'co',
  'chairs',
  'committee',
  'rep',
  'caron',
  'sen',
  'jujuga',
  'jujuga',
  'didnt',
  'say',
  'much',
  'co',
  'sponsor',
  'restraining',
  'order',
  'bills',
  'caron',
  'struck',
  'sharp',
  'guy',
  'wouldnt',
  'let',
  'bad',
  'logic',
  'lies',
  'part',
  'either',
  'side',
  'go',
  'unchallenged',
  'co',
  'sponsor',
  'one',
  'restraining',
  'order',
  'bills',
  'well',
  'one',
  'younger',
  'reps',
  'committee',
  'forgot',
  'name',
  'vociferously',
  'pro',
  'gun',
  'somewhat',
  'embarrassingly',
  'heart',
  'right',
  'place',
  'arguments',
  'seemed',
  'confined',
  'every',
  'year',
  'damn',
  'thing',
  'come',
  'crap',
  'nice',
  'friend',
  'committee',
  'could',
  'effective',
  'clear',
  'hall',
  'jam',
  'couldnt',
  'continue',
  'someone',
  'came',
  'another',
  'meeting',
  'hall',
  'yelled',
  'cop',
  'loudspeaker',
  'disturbing',
  'meeting',
  'loudspeaker',
  'disconnected',
  'found',
  'bigger',
  'hall',
  'upstairs',
  'one',
  'us',
  'leave',
  'catch',
  'charter',
  'bus',
  'missed',
  'public',
  'testimony',
  'got',
  'seat',
  'time',
  'caron',
  'began',
  'talking',
  'got',
  'fid',
  'years',
  'ago',
  'left',
  'state',
  'returned',
  'without',
  'notifying',
  'address',
  'change',
  'complained',
  'state',
  'record',
  'system',
  'date',
  'pd',
  'back',
  'city',
  'birth',
  'still',
  'thought',
  'lived',
  'great',
  'quote',
  'purchase',
  'gun',
  'today',
  'get',
  'state',
  'computer',
  'system',
  'also',
  'argument',
  'used',
  'renewable',
  'fid',
  'card',
  'testimony',
  'heard',
  'several',
  'battered',
  'women',
  'one',
  'attacked',
  'guy',
  'fid',
  'card',
  'got',
  'thereabouts',
  'used',
  'lot',
  'emotion',
  'said',
  'scared',
  'men',
  'staffer',
  'attorney',
  'general',
  'harshbarger',
  'testified',
  'favor',
  'anti',
  'gun',
  'bill',
  'saying',
  'restraining',
  'orders',
  'granted',
  'last',
  'year',
  'women',
  'needed',
  'protected',
  'caron',
  'noted',
  'restraining',
  'order',
  'granted',
  'days',
  'hearing',
  'held',
  'determine',
  'whether',
  'order',
  'would',
  'extended',
  'year',
  'asked',
  'whether',
  'would',
  'satisfied',
  'fid',
  'revoked',
  'time',
  'hearing',
  'rather',
  'initial',
  'issuance',
  'fid',
  'gave',
  'long',
  'rambling',
  'circumlocution',
  'response',
  'testimony',
  'bill',
  'heard',
  'mike',
  'yacino',
  'looks',
  'something',
  'like',
  'einstein',
  'got',
  'made',
  'point',
  'restraining',
  'orders',
  'issued',
  'little',
  'evidence',
  'judges',
  'like',
  'issue',
  'restraining',
  'orders',
  'let',
  'things',
  'cool',
  'matter',
  'think',
  'right',
  'man',
  'woman',
  'hearings',
  'restraining',
  'orders',
  'lightning',
  'sessions',
  'little',
  'time',
  'consider',
  'facts',
  'atty',
  'karen',
  'mcnutt',
  'spoke',
  'times',
  'testimony',
  'pro',
  'gunners',
  'got',
  'testify',
  'one',
  'said',
  'file',
  'restraining',
  'order',
  'tenant',
  'clear',
  'countered',
  'filing',
  'one',
  'noted',
  'would',
  'allowed',
  'state',
  'confiscate',
  'guns',
  'new',
  'bill',
  'became',
  'law',
  'one',
  'junior',
  'reps',
  'noted',
  'america',
  'certain',
  'individual',
  'rights',
  'respected',
  'senator',
  'jujuga',
  'reiterated',
  'saying',
  'people',
  'abuse',
  'smaller',
  'people',
  'go',
  'hell',
  'far',
  'care',
  'careful',
  'equating',
  'conviction',
  'restraining',
  'order',
  'point',
  'match',
  'senator',
  'another',
  'pro',
  'gunner',
  'got',
  'testified',
  'didnt',
  'know',
  'citizenship',
  'expired',
  'every',
  'years',
  'drivers',
  'license',
  'privilege',
  'right',
  'like',
  'right',
  'keep',
  'bear',
  'arms',
  'third',
  'got',
  'said',
  'problem',
  'criminal',
  'justice',
  'system',
  'argued',
  'favor',
  'death',
  'penalty',
  'bill',
  'public',
  'hangings',
  'senator',
  'jujuga',
  'said',
  'tried',
  'get',
  'death',
  'penalty',
  'bill',
  'passed',
  'joking',
  'responded',
  'favored',
  'public',
  'hangings',
  'speaker',
  'responded',
  'ill',
  'make',
  'deal',
  'get',
  'rope',
  'ill',
  'tie',
  'noose',
  'next',
  'came',
  'public',
  'testimony',
  'simons',
  'rock',
  'bill',
  'teacher',
  'testified',
  'teacher',
  'wayne',
  'lo',
  'wouldnt',
  'able',
  'shoot',
  'people',
  'inside',
  'building',
  'outside',
  'without',
  'evil',
  'gun',
  'said',
  'loophole',
  'closed',
  'prevent',
  'something',
  'like',
  'ever',
  'happening',
  'four',
  'five',
  'kids',
  'testified',
  'favor',
  'bill',
  'one',
  'spilling',
  'tears',
  'good',
  'legislators',
  'one',
  'students',
  ...],
 ['daniel',
  'wong',
  'looking',
  'latest',
  'actix',
  'drivers',
  'windows',
  'organization',
  'dept',
  'electrical',
  'engineering',
  'university',
  'toronto',
  'canada',
  'distribution',
  'comp',
  'lines',
  'hi',
  'anyone',
  'latest',
  'drivers',
  'actix',
  'graphics',
  'accelerator',
  'card',
  'plus',
  'one',
  'version',
  'seem',
  'lot',
  'problems',
  'believe',
  'latest',
  'version',
  'would',
  'someone',
  'please',
  'upload',
  'ftp',
  'site',
  'download',
  'thanks',
  'daniel',
  'wong',
  'uoft',
  'electrical',
  'engineering'],
 ['gary',
  'burgermeister',
  'huckabay',
  'call',
  'votes',
  'dtbl',
  'mvp',
  'cy',
  'please',
  'vote',
  'article',
  'ucdavis',
  'distribution',
  'na',
  'organization',
  'harold',
  'brooks',
  'hot',
  'sour',
  'soup',
  'club',
  'ltd',
  'lines',
  'regular',
  'season',
  'davis',
  'tabletop',
  'baseball',
  'league',
  'come',
  'end',
  'help',
  'us',
  'next',
  'years',
  'league',
  'would',
  'appreciate',
  'would',
  'take',
  'couple',
  'minutes',
  'vote',
  'league',
  'mvp',
  'cy',
  'winners',
  'awards',
  'players',
  'standings',
  'inflate',
  'salaries',
  'next',
  'years',
  'league',
  'please',
  'vote',
  'category',
  'order',
  'example',
  'barry',
  'bonds',
  'frank',
  'thomas',
  'biff',
  'pocoroba',
  'shooty',
  'babitt',
  'lips',
  'lundy',
  'please',
  'vote',
  'pitchers',
  'mvp',
  'voting',
  'league',
  'team',
  'league',
  'gets',
  'one',
  'candidate',
  'mvp',
  'one',
  'cy',
  'defensive',
  'position',
  'listed',
  'applicable',
  'along',
  'abbreviation',
  'performance',
  'excellent',
  'good',
  'average',
  'poor',
  'poor',
  'thanks',
  'please',
  'reply',
  'april',
  'record',
  'season',
  'games',
  'long',
  'thanks',
  'help',
  'mvp',
  'candidates',
  'name',
  'ab',
  'hr',
  'rbi',
  'bb',
  'sb',
  'cs',
  'ibb',
  'ba',
  'obp',
  'slg',
  'def',
  'griffey',
  'emartinez',
  'sandberg',
  'ventura',
  'mcgriff',
  'mcgwire',
  'ralomar',
  'dykstra',
  'butler',
  'deer',
  'bonds',
  'hrbek',
  'jgonzalez',
  'players',
  'missed',
  'time',
  'due',
  'injuries',
  'others',
  'sat',
  'end',
  'avoid',
  'possibility',
  'injury',
  'better',
  'players',
  'list',
  'team',
  'gets',
  'one',
  'one',
  'candidate',
  'players',
  'played',
  'games',
  'due',
  'traded',
  'teams',
  'games',
  'left',
  'time',
  'span',
  'pitchers',
  'name',
  'era',
  'ip',
  'bb',
  'hr',
  'gs',
  'cg',
  'sho',
  'wp',
  'dmartinez',
  'dibble',
  'rijo',
  'mussina',
  'benes',
  'khill',
  'smoltz',
  'cone',
  'drabek',
  'tewksbury',
  'clemens',
  'tomlin',
  'farr',
  'curt',
  'schilling',
  'threw',
  'perfect',
  'game',
  'year',
  'ken',
  'hill',
  'threw',
  'hitter',
  'rob',
  'dibble',
  'pitched',
  'scoreless',
  'innings',
  'start',
  'year',
  'choke',
  'last',
  'two',
  'games',
  'cost',
  'perots',
  'giant',
  'sucking',
  'sounds',
  'playoff',
  'spot',
  'want',
  'stats',
  'players',
  'available',
  'request',
  'please',
  'take',
  'time',
  'reply',
  'thanks',
  'gary',
  'huckabay',
  'kevin',
  'kerr',
  'al',
  'feldstein',
  'mid',
  'living',
  'argument',
  'theres',
  'anything',
  'love',
  'huge',
  'existence',
  'parallel',
  'sig',
  'someone',
  'quoting',
  'lines',
  'add',
  'universes',
  'new',
  'ones',
  'consecutive',
  'posts',
  'ooo',
  'ooo',
  'david',
  'zavatson',
  'mein',
  'schatz',
  'es',
  'ist',
  'soweit',
  'unsere',
  'liebe',
  'ist',
  'vorbei'],
 ['tony',
  'boutwell',
  'hot',
  'new',
  'software',
  'keywords',
  'imagine',
  'nntp',
  'posting',
  'host',
  'ra',
  'msstate',
  'organization',
  'mississippi',
  'state',
  'university',
  'lines',
  'new',
  'product',
  'ibmers',
  'called',
  'imagine',
  'started',
  'shipping',
  'yesterday',
  'personally',
  'attest',
  'blow',
  'doors',
  'studio',
  'made',
  'impulse',
  'rd',
  'version',
  'st',
  'ibm',
  'morphing',
  'standard',
  'key',
  'framming',
  'animation',
  'raytracer',
  'reflections',
  'shadows',
  'apply',
  'special',
  'fx',
  'objects',
  'like',
  'ripple',
  'explode',
  'bounce',
  'things',
  'nature',
  'also',
  'algorithmic',
  'texture',
  'maps',
  'standard',
  'brushmapping',
  'also',
  'animated',
  'brushmaps',
  'ie',
  'live',
  'video',
  'mapped',
  'objs',
  'also',
  'animated',
  'backdrops',
  'ie',
  'live',
  'video',
  'backgrounds',
  'also',
  'animted',
  'reflections',
  'maps',
  'get',
  'idea',
  'run',
  'retail',
  'think',
  'dont',
  'let',
  'low',
  'price',
  'fool',
  'product',
  'comes',
  'animation',
  'renderering',
  'also',
  'anyone',
  'know',
  'get',
  'imagine',
  'mailing',
  'list',
  'please',
  'mail',
  'post',
  'oh',
  'number',
  'impulse'],
 ['robert',
  'sprecher',
  'pc',
  'syquest',
  'mac',
  'organization',
  'case',
  'western',
  'reserve',
  'university',
  'cleveland',
  'ohio',
  'usa',
  'lines',
  'nntp',
  'posting',
  'host',
  'thor',
  'ins',
  'cwru',
  'possible',
  'ie',
  'via',
  'creative',
  'cable',
  'splicing',
  'whatever',
  'hook',
  'syquest',
  'mb',
  'removable',
  'drive',
  'mac',
  'difference',
  'guts',
  'drive',
  'cable',
  'differences',
  'thanks',
  'rob',
  'rob',
  'sprecher'],
 ['russ',
  'brown',
  'altitude',
  'adjustment',
  'organization',
  'winco',
  'lines',
  'article',
  'vida',
  'morkunas',
  'writes',
  'live',
  'sea',
  'level',
  'called',
  'upon',
  'travel',
  'high',
  'altitude',
  'cities',
  'quite',
  'frequently',
  'business',
  'cities',
  'question',
  'feet',
  'altitude',
  'one',
  'especially',
  'polluted',
  'mexico',
  'city',
  'bogota',
  'la',
  'paz',
  'often',
  'feel',
  'faint',
  'first',
  'two',
  'three',
  'days',
  'feel',
  'lightheaded',
  'heart',
  'seems',
  'pound',
  'lot',
  'sea',
  'level',
  'also',
  'dry',
  'cities',
  'tend',
  'drink',
  'lot',
  'water',
  'keep',
  'away',
  'dehydrating',
  'drinks',
  'containing',
  'caffeine',
  'alcohol',
  'thing',
  'still',
  'symptoms',
  'ensure',
  'short',
  'trips',
  'dont',
  'usually',
  'week',
  'acclimatize',
  'comfortable',
  'possible',
  'something',
  'else',
  'could',
  'go',
  'three',
  'days',
  'early',
  'preliminary',
  'acclimatization',
  'takes',
  'days',
  'takes',
  'weeks',
  'months',
  'full',
  'acclimatization',
  'could',
  'experiencing',
  'jet',
  'lag'],
 ['fergason',
  'old',
  'simms',
  'organization',
  'amoco',
  'production',
  'lines',
  'article',
  'john',
  'haddy',
  'writes',
  'article',
  'jason',
  'haines',
  'writes',
  'wondering',
  'people',
  'good',
  'uses',
  'old',
  'simms',
  'bunch',
  'apple',
  'mac',
  'know',
  'lots',
  'people',
  'tried',
  'sell',
  'gotten',
  'interest',
  'inovative',
  'want',
  'buy',
  'simms',
  'would',
  'interested',
  'hearing',
  'practical',
  'ive',
  'seen',
  'key',
  'ring',
  'ornaments',
  'johnh',
  'used',
  'bunch',
  'weights',
  'building',
  'model',
  'airplane',
  'hung',
  'stringers',
  'across',
  'stringer',
  'whatever',
  'worked',
  'pretty',
  'well',
  'kelly'],
 ['jrw',
  'shopping',
  'new',
  'nec',
  'monitor',
  'lines',
  'organization',
  'nrl',
  'article',
  'david',
  'todd',
  'writes',
  'david',
  'todd',
  'shopping',
  'new',
  'nec',
  'monitor',
  'date',
  'apr',
  'article',
  'bill',
  'barnes',
  'writes',
  'basically',
  'im',
  'looking',
  'svga',
  'non',
  'interlaced',
  'monitor',
  'nec',
  'fg',
  'one',
  'computer',
  'mags',
  'standard',
  'ive',
  'seen',
  'heard',
  'looks',
  'pretty',
  'good',
  'bit',
  'expensive',
  'bucks',
  'best',
  'deal',
  'ive',
  'seen',
  'thought',
  'perhaps',
  'might',
  'find',
  'something',
  'good',
  'less',
  'recommendations',
  'also',
  'thought',
  'nec',
  'fgx',
  'specs',
  'fg',
  'except',
  'scan',
  'frequency',
  'limited',
  'anybody',
  'comments',
  'one',
  'would',
  'work',
  'believe',
  'nec',
  'replacing',
  'fg',
  'fgx',
  'fge',
  'fge',
  'models',
  'reportedly',
  'released',
  'end',
  'month',
  'im',
  'waiting',
  'fge',
  'main',
  'difference',
  'year',
  'warranty',
  'higher',
  'refresh',
  'rates',
  'higher',
  'resolutions',
  'sounded',
  'pc',
  'magazine',
  'note',
  'fge',
  'boosted',
  'number',
  'ways',
  'call',
  'nec',
  'number',
  'send',
  'info',
  'david',
  'todd',
  'department',
  'psychology',
  'university',
  'massachusetts',
  'amherst',
  'usa',
  'phone',
  'fax',
  'using',
  'nec',
  'fgx',
  'several',
  'months',
  'several',
  'others',
  'also',
  'monitor',
  'problems',
  'personally',
  'would',
  'spend',
  'extra',
  'money',
  'monitor',
  'sacrifice',
  'features',
  'pc',
  'mhz',
  'viz',
  'mhz',
  'based',
  'comments',
  'others',
  'might',
  'want',
  'view',
  'fgx',
  'vs',
  'series',
  'pc',
  'running',
  'windows',
  'refresh',
  'rate',
  'appears',
  'ok',
  'might',
  'feel',
  'differently',
  'finally',
  'speaking',
  'spending',
  'money',
  'size',
  'todays',
  'files',
  'etc',
  'tape',
  'backup',
  'certainly',
  'worth',
  'recently',
  'set',
  'friends',
  'pc',
  'mhz',
  'vesa',
  'local',
  'bus',
  'redraw',
  'time',
  'graphics',
  'program',
  'factor',
  'faster',
  'doubt',
  'warrants',
  'extra',
  'cost'],
 ['chris',
  'best',
  'police',
  'radar',
  'work',
  'organization',
  'service',
  'lines',
  'nntp',
  'posting',
  'host',
  'hpctdkz',
  'col',
  'hp',
  'com',
  'ive',
  'seen',
  'several',
  'references',
  'split',
  'separate',
  'beam',
  'radars',
  'claimed',
  'didnt',
  'exist',
  'gotta',
  'eat',
  'crow',
  'wasnt',
  'aware',
  'really',
  'knew',
  'done',
  'one',
  'beam',
  'believe',
  'rest',
  'said',
  'accurate',
  'though',
  'mmmmmmm',
  'crow',
  'oops',
  'wrong',
  'group'],
 ['dr',
  'nancys',
  'sweetie',
  'certainty',
  'arrogance',
  'organization',
  'rowan',
  'college',
  'new',
  'jersey',
  'lines',
  'dean',
  'velasco',
  'quoted',
  'letter',
  'james',
  'stowell',
  'president',
  'moody',
  'bible',
  'institute',
  'day',
  'dry',
  'cleaner',
  'radio',
  'playing',
  'caught',
  'attention',
  'talk',
  'show',
  'guest',
  'criticizing',
  'evangelical',
  'christians',
  'saying',
  'believe',
  'absolutes',
  'think',
  'ones',
  'know',
  'absolutes',
  'affirm',
  'absolutes',
  'scripture',
  'arrogant',
  'moralists',
  'believe',
  'god',
  'truth',
  'revealed',
  'truth',
  'word',
  'therefore',
  'hold',
  'precious',
  'strategic',
  'importance',
  'absolutes',
  'lot',
  'discussion',
  'far',
  'nobody',
  'seems',
  'hit',
  'exactly',
  'criticism',
  'arrogance',
  'aimed',
  'arrogance',
  'attacked',
  'think',
  'ones',
  'know',
  'absolutes',
  'short',
  'many',
  'evangelicals',
  'claim',
  'infallible',
  'matter',
  'religious',
  'texts',
  'particular',
  'problem',
  'one',
  'epistemology',
  'shorthand',
  'think',
  'epistemology',
  'know',
  'question',
  'turns',
  'troubling',
  'one',
  'problem',
  'absolute',
  'certainty',
  'bottom',
  'least',
  'thinking',
  'goes',
  'inside',
  'head',
  'unless',
  'certain',
  'everything',
  'happens',
  'head',
  'infallible',
  'reasoning',
  'discover',
  'source',
  'truth',
  'question',
  'means',
  'absolute',
  'justification',
  'source',
  'authority',
  'means',
  'absolute',
  'certainty',
  'lets',
  'take',
  'specific',
  'example',
  'biblical',
  'inerrancy',
  'fictional',
  'inerrantist',
  'named',
  'zeke',
  'following',
  'arguments',
  'applies',
  'idea',
  'papal',
  'infallibility',
  'zeke',
  'presume',
  'spent',
  'time',
  'studying',
  'bible',
  'history',
  'several',
  'topics',
  'concluded',
  'based',
  'studies',
  'possibly',
  'religious',
  'experiences',
  'bible',
  'source',
  'absolute',
  'truth',
  'may',
  'correct',
  'even',
  'cannot',
  'certain',
  'correct',
  'conclusion',
  'depends',
  'well',
  'studied',
  'history',
  'may',
  'made',
  'mistakes',
  'references',
  'used',
  'may',
  'contained',
  'mistakes',
  'conclusion',
  'depends',
  'well',
  'studied',
  'bible',
  'may',
  'made',
  'mistakes',
  'conclusion',
  'depends',
  'reasoning',
  'may',
  'made',
  'mistakes',
  'noticing',
  'common',
  'thread',
  'yet',
  'everything',
  'study',
  'world',
  'everything',
  'happened',
  'head',
  'limited',
  'thinking',
  'matter',
  'try',
  'cover',
  'mistakes',
  'never',
  'certain',
  'infallibility',
  'long',
  'part',
  'belief',
  'based',
  'reasoning',
  'belief',
  'cannot',
  'considered',
  'absolutely',
  'certain',
  'zeke',
  'believes',
  'found',
  'source',
  'absolute',
  'truth',
  'belief',
  'good',
  'quality',
  'search',
  'made',
  'unless',
  'say',
  'reasoning',
  'flawless',
  'conclusions',
  'doubt',
  'belief',
  'hold',
  'absolute',
  'sources',
  'truth',
  'depends',
  'part',
  'thinking',
  'way',
  'loop',
  'infallible',
  'thinker',
  'absolute',
  'certainty',
  'beliefs',
  'easy',
  'demonstrate',
  'lets',
  'go',
  'back',
  'shorthand',
  'method',
  'epistemology',
  'know',
  'imagine',
  'hypothetical',
  'discussion',
  'bible',
  'source',
  'absolute',
  'truth',
  'know',
  'studied',
  'history',
  'bible',
  'religious',
  'writings',
  'church',
  'teachings',
  'came',
  'conclusion',
  'know',
  'studied',
  'history',
  'correctly',
  'well',
  'double',
  'checked',
  'everything',
  'know',
  'double',
  'checked',
  'correctly',
  'well',
  'compared',
  'answers',
  'smart',
  'people',
  'agreed',
  'smart',
  'guy',
  'believes',
  'something',
  'doesnt',
  'mean',
  'true',
  'know',
  'studied',
  'correctly',
  'see',
  'eventually',
  'get',
  'point',
  'say',
  'cant',
  'prove',
  'mistakes',
  'long',
  'may',
  'made',
  'mistake',
  'cannot',
  'absolutely',
  'certain',
  'way',
  'loop',
  'arrogance',
  'christians',
  'arises',
  'many',
  'people',
  'believe',
  'personal',
  'research',
  'give',
  'absolute',
  'certainty',
  'doctrines',
  'christianity',
  'implicitly',
  'claiming',
  'infallible',
  'possibility',
  'mistake',
  'claiming',
  'cannot',
  'made',
  'mistake',
  'thinking',
  'led',
  'flawless',
  'conclusion',
  'pretty',
  'arrogant',
  'people',
  'want',
  'see',
  'argument',
  'explained',
  'great',
  'detail',
  'try',
  'find',
  'infallibility',
  'church_',
  'george',
  'salmon',
  'attacking',
  'idea',
  'pope',
  'knowably',
  'infallible',
  'well',
  'general',
  'argument',
  'applies',
  'equally',
  'well',
  'idea',
  'bible',
  'knowably',
  'inerrant',
  'darren',
  'provine',
  'core',
  'well',
  'founded',
  'belief',
  'lies',
  'belief',
  'unfounded',
  'ludwig',
  'wittgenstein'],
 ['andrew',
  'byler',
  'revelations',
  'babylon',
  'organization',
  'freshman',
  'civil',
  'engineering',
  'carnegie',
  'mellon',
  'pittsburgh',
  'pa',
  'lines',
  'hal',
  'heydt',
  'writes',
  'fall',
  'western',
  'empire',
  'eastern',
  'empire',
  'continued',
  'another',
  'years',
  'key',
  'element',
  'fall',
  'christian',
  'sack',
  'constantinople',
  'note',
  'said',
  'fall',
  'rome',
  'empire',
  'roman',
  'empire',
  'lasted',
  'transfered',
  'capital',
  'constantinople',
  'main',
  'reason',
  'fall',
  'much',
  'sack',
  'constantinople',
  'men',
  'th',
  'crusade',
  'christians',
  'excommunicated',
  'last',
  'man',
  'attacking',
  'christian',
  'city',
  'zara',
  'croatia',
  'rather',
  'disastorous',
  'defeat',
  'battle',
  'mazinkert',
  'turks',
  'breached',
  'frontier',
  'matter',
  'time',
  'empire',
  'fell',
  'inability',
  'empire',
  'hold',
  'onto',
  'rim',
  'anatolia',
  'ottomans',
  'rum',
  'seljuks',
  'middle',
  'quite',
  'obvious',
  'student',
  'history',
  'sack',
  'constantinople',
  'hastened',
  'inevitable',
  'along',
  'greeks',
  'wanted',
  'save',
  'empire',
  'would',
  'cooperate',
  'crusaders',
  'came',
  'battle',
  'saracens',
  'st',
  'rd',
  'crusades',
  'obstinacy',
  'cooperating',
  'people',
  'considered',
  'heretics',
  'even',
  'though',
  'heretics',
  'fighting',
  'cause',
  'empire',
  'christendom',
  'battle',
  'turkish',
  'hordes',
  'anatolia',
  'edessa',
  'lebanon',
  'palastine',
  'syria',
  'hordes',
  'later',
  'sack',
  'constantinople',
  'overrun',
  'third',
  'europe',
  'balkans',
  'hungary',
  'ukraine',
  'caucasus',
  'etc',
  'andy',
  'byler'],
 ['visionary',
  'gfx',
  'attention',
  'super',
  'nintendo',
  'genesis',
  'players',
  'read',
  'organization',
  'kansas',
  'state',
  'university',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'matt',
  'ksu',
  'ksu',
  'im',
  'pleased',
  'announce',
  'new',
  'revolutionary',
  'device',
  'allows',
  'copy',
  'super',
  'nintendo',
  'genesis',
  'games',
  'floppy',
  'disk',
  'later',
  'play',
  'floppy',
  'disk',
  'cart',
  'independent',
  'system',
  'interfaces',
  'snes',
  'genesis',
  'features',
  'store',
  'multiple',
  'copies',
  'cart',
  'save',
  'game',
  'disk',
  'saves',
  'disk',
  'save',
  'position',
  'snes',
  'games',
  'dont',
  'norally',
  'save',
  'feature',
  'switch',
  'snes',
  'slow',
  'motion',
  'mode',
  'codes',
  'get',
  'unlimited',
  'lives',
  'cheats',
  'many',
  'games',
  'multi',
  'game',
  'hunter',
  'capable',
  'copying',
  'snes',
  'genesis',
  'game',
  'carts',
  'standard',
  'ibm',
  'pc',
  'formated',
  'floppy',
  'disks',
  'games',
  'played',
  'directly',
  'floppy',
  'disk',
  'note',
  'require',
  'pc',
  'full',
  'color',
  'screen',
  'icons',
  'menus',
  'make',
  'operation',
  'mgh',
  'simple',
  'even',
  'child',
  'could',
  'operate',
  'options',
  'selected',
  'simply',
  'choosing',
  'selection',
  'game',
  'controller',
  'pressin',
  'button',
  'add',
  'game',
  'saver',
  'adapter',
  'system',
  'game',
  'playing',
  'power',
  'game',
  'saver',
  'allows',
  'save',
  'position',
  'disk',
  'almost',
  'snes',
  'game',
  'reload',
  'saved',
  'position',
  'time',
  'enable',
  'slow',
  'motion',
  'feature',
  'really',
  'tough',
  'games',
  'control',
  'game',
  'play',
  'game',
  'finger',
  'software',
  'game',
  'finger',
  'software',
  'give',
  'unlimited',
  'lives',
  'warp',
  'new',
  'levels',
  'favorite',
  'snes',
  'games',
  'bring',
  'back',
  'life',
  'really',
  'frustrating',
  'games',
  'also',
  'know',
  'program',
  'asm',
  'code',
  'create',
  'snes',
  'demos',
  'games',
  'mgh',
  'includes',
  'base',
  'unit',
  'disk',
  'drive',
  'high',
  'density',
  'drive',
  'megabit',
  'ram',
  'sram',
  'adapters',
  'comes',
  'ready',
  'hook',
  'gameing',
  'system',
  'thing',
  'included',
  'power',
  'supply',
  'pick',
  'radio',
  'shack',
  'disclamer',
  'customer',
  'assumes',
  'responsibility',
  'misuse',
  'product',
  'way',
  'encourage',
  'condone',
  'product',
  'software',
  'piracy',
  'device',
  'intended',
  'soley',
  'making',
  'legal',
  'backup',
  'copies',
  'neither',
  'nintendo',
  'sega',
  'giving',
  'official',
  'endorsement',
  'products',
  'described',
  'herein',
  'email',
  'info',
  'make',
  'purchase'],
 ['alan',
  'peterman',
  'electronic',
  'odometer',
  'organization',
  'scn',
  'research',
  'qic',
  'laboratories',
  'tigard',
  'oregon',
  'lines',
  'article',
  'aaron',
  'lung',
  'writes',
  'im',
  'mistaken',
  'altering',
  'odometer',
  'illegal',
  'furthermore',
  'surmise',
  'itll',
  'tough',
  'alter',
  'bmws',
  'odometer',
  'got',
  'newer',
  'bmws',
  'electronic',
  'odometers',
  'making',
  'even',
  'tamperproof',
  'cars',
  'mentioned',
  'series',
  'late',
  'electronic',
  'odometer',
  'really',
  'mechanical',
  'drum',
  'type',
  'odometer',
  'driven',
  'pulses',
  'speed',
  'sensor',
  'rear',
  'axle',
  'pulses',
  'converted',
  'mechanical',
  'pulses',
  'turn',
  'odometer',
  'speedometer',
  'way',
  'changing',
  'erasing',
  'eprom',
  'going',
  'change',
  'mileage',
  'reading',
  'also',
  'means',
  'odometer',
  'easy',
  'hard',
  'change',
  'mechanical',
  'odometer',
  'hand',
  'bit',
  'easier',
  'disconnect',
  'speed',
  'sensor',
  'run',
  'car',
  'speedometer',
  'odometer',
  'reading',
  'simple',
  'switch',
  'job',
  'also',
  'disable',
  'speed',
  'limiter',
  'enable',
  'car',
  'reach',
  'full',
  'speed',
  'alan',
  'peterman',
  'hm',
  'work',
  'odd',
  'get',
  'older',
  'days',
  'longer',
  'years',
  'shorter'],
 ['lance',
  'hartmann',
  'diamond',
  'stealth',
  'windows',
  'problems',
  'summary',
  'users',
  'complain',
  'service',
  'diamond',
  'reply',
  'organization',
  'ibm',
  'austin',
  'keywords',
  'diamond',
  'video',
  'windows',
  'lines',
  'article',
  'diers',
  'writes',
  'stealth',
  'card',
  'diamond',
  'using',
  'mil',
  'win',
  'driver',
  'card',
  'driver',
  'work',
  'fast',
  'windows',
  'drivers',
  'number',
  'bugs',
  'shadows',
  'remain',
  'windows',
  'erased',
  'text',
  'boxes',
  'often',
  'unreadable',
  'attempts',
  'get',
  'help',
  'diamond',
  'failed',
  'called',
  'tech',
  'support',
  'never',
  'able',
  'get',
  'past',
  'hold',
  'line',
  'toll',
  'call',
  'reasonable',
  'time',
  'ie',
  'min',
  'leaving',
  'voice',
  'mail',
  'helped',
  'either',
  'bbs',
  'joke',
  'always',
  'many',
  'people',
  'download',
  'anything',
  'cannot',
  'even',
  'get',
  'file',
  'listing',
  'considers',
  'download',
  'faxed',
  'tech',
  'support',
  'group',
  'reponse',
  'bottom',
  'line',
  'looking',
  'fast',
  'card',
  'want',
  'windows',
  'get',
  'diamond',
  'product',
  'try',
  'another',
  'vendor',
  'wish',
  'others',
  'may',
  'better',
  'experiences',
  'share',
  'sentiments',
  'posted',
  'though',
  'original',
  'stealth',
  'vram',
  'relatively',
  'recent',
  'windows',
  'drivers',
  'card',
  'evolved',
  'point',
  'decent',
  'performance',
  'note',
  'still',
  'couple',
  'modes',
  'cannot',
  'ie',
  'due',
  'shadowing',
  'mis',
  'drawn',
  'check',
  'boxes',
  'etc',
  'believe',
  'version',
  'theres',
  'recent',
  'release',
  'id',
  'appreciate',
  'someone',
  'would',
  'drop',
  'note',
  'let',
  'know',
  'havent',
  'able',
  'get',
  'bbs',
  'lately',
  'check',
  'naturally',
  'diamond',
  'doesnt',
  'even',
  'bother',
  'notifying',
  'fixes',
  'releases',
  'diamond',
  'helpful',
  'finally',
  'reached',
  'right',
  'person',
  'curing',
  'windows',
  'problems',
  'due',
  'address',
  'conflict',
  'conflicting',
  'addresses',
  'omitted',
  'least',
  'version',
  'diamond',
  'vram',
  'manual',
  'hope',
  'corrected',
  'tech',
  'rep',
  'explained',
  'based',
  'boards',
  'addresses',
  'confirmed',
  'validity',
  'statement',
  'upgrade',
  'motherboard',
  'near',
  'future',
  'hopefully',
  'form',
  'local',
  'bus',
  'ill',
  'seek',
  'video',
  'solution',
  'someone',
  'diamond',
  'lance',
  'hartmann',
  'yes',
  'percent',
  'sign',
  'network',
  'address',
  'statements',
  'comments',
  'opinions',
  'etc',
  'herein',
  'reflect',
  'author',
  'shall',
  'misconstrued',
  'ibm',
  'anyone',
  'else',
  'matter'],
 ['dave',
  'tharp',
  'cds',
  'rejetting',
  'carbs',
  'keywords',
  'air',
  'pump',
  'distribution',
  'na',
  'organization',
  'tektronix',
  'colorado',
  'data',
  'systems',
  'englewood',
  'co',
  'lines',
  'article',
  'jeff',
  'burney',
  'writes',
  'talking',
  'stroke',
  'think',
  'understand',
  'exhaust',
  'pulse',
  'affect',
  'stroke',
  'intake',
  'valve',
  'closed',
  'exhaust',
  'stroke',
  'gas',
  'pushed',
  'cyclinder',
  'guess',
  'gas',
  'compression',
  'may',
  'affect',
  'amount',
  'pushed',
  'limiting',
  'factor',
  'seems',
  'header',
  'pipe',
  'canister',
  'meaning',
  'would',
  'gases',
  'far',
  'line',
  'canister',
  'really',
  'effect',
  'exhaust',
  'stroke',
  'gases',
  'really',
  'compress',
  'much',
  'discussion',
  'purposes',
  'ignore',
  'dynamic',
  'effects',
  'like',
  'pulses',
  'exhaust',
  'pipe',
  'try',
  'paint',
  'useful',
  'mental',
  'picture',
  'unless',
  'engine',
  'supercharged',
  'pressure',
  'available',
  'force',
  'air',
  'intake',
  'tract',
  'time',
  'intake',
  'valve',
  'opened',
  'pressure',
  'differential',
  'available',
  'move',
  'air',
  'difference',
  'combustion',
  'chamber',
  'pressure',
  'left',
  'exhaust',
  'stroke',
  'atmospheric',
  'piston',
  'decends',
  'intake',
  'stroke',
  'combustion',
  'chamber',
  'pressure',
  'decreased',
  'allowing',
  'atmospheric',
  'pressure',
  'move',
  'air',
  'intake',
  'tract',
  'time',
  'pressure',
  'ever',
  'become',
  'negative',
  'even',
  'approach',
  'good',
  'vacuum',
  'time',
  'exhaust',
  'valve',
  'closing',
  'pressure',
  'combustion',
  'chamber',
  'essentially',
  'pressure',
  'exhaust',
  'system',
  'first',
  'major',
  'flow',
  'restriction',
  'muffler',
  'note',
  'volume',
  'gas',
  'must',
  'flow',
  'exhaust',
  'much',
  'larger',
  'volume',
  'must',
  'flow',
  'intake',
  'temperature',
  'difference',
  'products',
  'combustion',
  'last',
  'years',
  'japanese',
  'manufacturers',
  'started',
  'paying',
  'attention',
  'exhaust',
  'intake',
  'tuning',
  'pursuit',
  'almighty',
  'horsepower',
  'point',
  'time',
  'high',
  'performance',
  'bikes',
  'substitution',
  'aftermarket',
  'free',
  'flow',
  'air',
  'filter',
  'almost',
  'zero',
  'affect',
  'performance',
  'stock',
  'intake',
  'system',
  'flows',
  'well',
  'anyway',
  'substitution',
  'aftermarket',
  'exhaust',
  'system',
  'make',
  'little',
  'difference',
  'unless',
  'general',
  'new',
  'exhaust',
  'system',
  'louder',
  'stocker',
  'older',
  'bikes',
  'exhaust',
  'back',
  'pressure',
  'dominating',
  'factor',
  'free',
  'flowing',
  'air',
  'filters',
  'substituted',
  'little',
  'difference',
  'noted',
  'unless',
  'free',
  'flowing',
  'exhaust',
  'system',
  'installed',
  'well',
  'general',
  'engine',
  'visualized',
  'air',
  'pump',
  'given',
  'rpm',
  'anything',
  'cause',
  'engine',
  'pump',
  'air',
  'intake',
  'exhaust',
  'side',
  'cause',
  'produce',
  'horsepower',
  'pumping',
  'air',
  'require',
  'recalibration',
  'rejetting',
  'carburetor',
  'dave',
  'tharp',
  'dod',
  'cant',
  'wear',
  'mra',
  'indian',
  'scout',
  'indian',
  'chief',
  'ahrma',
  'brother',
  'chief',
  'tr',
  'ama',
  'theyre',
  'built',
  'like',
  'rocks',
  'velorex',
  'nsu',
  'max',
  'take',
  'knocks',
  'bmw',
  'compulsive',
  'harleys',
  'employer',
  'idea',
  'joiner',
  'give',
  'grief'],
 ['david',
  'bold',
  'question',
  'popular',
  'morality',
  'reply',
  'distribution',
  'world',
  'organization',
  'camtec',
  'electronics',
  'ericsson',
  'leicester',
  'england',
  'lines',
  'nntp',
  'posting',
  'host',
  'bangkok',
  'paul',
  'hudson',
  'jr',
  'writes',
  'directly',
  'going',
  'come',
  'moral',
  'argument',
  'existence',
  'god',
  'rather',
  'trying',
  'show',
  'absurdity',
  'atheistic',
  'materialist',
  'relatavists',
  'trying',
  'embrace',
  'common',
  'moral',
  'system',
  'though',
  'absolute',
  'man',
  'knows',
  'heart',
  'right',
  'wrong',
  'inherited',
  'knowledge',
  'matter',
  'absurd',
  'suggest',
  'common',
  'moral',
  'system',
  'created',
  'mankind',
  'absolute',
  'contrary',
  'reason',
  'suggest',
  'common',
  'moral',
  'system',
  'created',
  'mankind',
  'sensible',
  'fact',
  'bible',
  'mankind',
  'moral',
  'code',
  'must',
  'interpreted',
  'mankind',
  'workable',
  'moral',
  'system',
  'created',
  'everyday',
  'jewish',
  'talmud',
  'result',
  'centuries',
  'biblical',
  'scholars',
  'analysing',
  'every',
  'word',
  'torah',
  'understand',
  'morality',
  'behind',
  'children',
  'israel',
  'given',
  'strict',
  'set',
  'moral',
  'civil',
  'judicial',
  'ceremonial',
  'laws',
  'follow',
  'yet',
  'clearly',
  'enough',
  'cover',
  'every',
  'instance',
  'moral',
  'dilemma',
  'society',
  'christian',
  'situation',
  'better',
  'seems',
  'code',
  'morality',
  'judeo',
  'christian',
  'god',
  'contained',
  'bible',
  'see',
  'diverse',
  'opinions',
  'christian',
  'newsgroups',
  'clear',
  'may',
  'well',
  'absolute',
  'morality',
  'defined',
  'judeo',
  'christian',
  'god',
  'mankind',
  'follow',
  'seems',
  'subset',
  'simply',
  'concept',
  'written',
  'man',
  'leads',
  'problem',
  'defining',
  'morality',
  'society',
  'take',
  'divine',
  'morality',
  'code',
  'practice',
  'may',
  'interpreted',
  'many',
  'different',
  'ways',
  'example',
  'consider',
  'immolation',
  'heretics',
  'fifteenth',
  'century',
  'interpretation',
  'bible',
  'allows',
  'man',
  'another',
  'man',
  'precept',
  'administer',
  'justice',
  'take',
  'agnostic',
  'morality',
  'code',
  'practice',
  'modified',
  'suit',
  'society',
  'danger',
  'implies',
  'alternatively',
  'could',
  'take',
  'basis',
  'judeo',
  'christian',
  'morality',
  'interpret',
  'extend',
  'create',
  'justify',
  'code',
  'morality',
  'suits',
  'society',
  'live',
  'enables',
  'people',
  'live',
  'righteously',
  'many',
  'christian',
  'non',
  'christian',
  'philosophers',
  'done',
  'whatever',
  'driving',
  'force',
  'behind',
  'definition',
  'morality',
  'society',
  'think',
  'important',
  'aspect',
  'result',
  'david',
  'religion',
  'oh',
  'sea',
  'fishes',
  'cried',
  'swam',
  'clearness'],
 ['one',
  'daze',
  'borland',
  'turbo',
  'libraries',
  'graphics',
  'card',
  'organization',
  'lancaster',
  'university',
  'computer',
  'society',
  'lines',
  'ive',
  'recently',
  'got',
  'hold',
  'pc',
  'card',
  'id',
  'like',
  'programming',
  'libraries',
  'let',
  'access',
  'high',
  'resolution',
  'modes',
  'available',
  'via',
  'borland',
  'turbo',
  'andy'],
 ['steve',
  'harrold',
  'need',
  'info',
  'diamond',
  'viper',
  'video',
  'card',
  'organization',
  'hewlett',
  'packard',
  'cupertino',
  'lines',
  'experiences',
  'diamond',
  'viper',
  'vlb',
  'video',
  'card',
  'several',
  'problems',
  'ad',
  'specified',
  'million',
  'colors',
  'resolution',
  'mb',
  'vram',
  'color',
  'depth',
  'supported',
  'video',
  'bios',
  'version',
  'drivers',
  'version',
  'max',
  'colors',
  'supported',
  'resolutions',
  'mb',
  'vram',
  'color',
  'choice',
  'notice',
  'two',
  'minor',
  'irritations',
  'ndw',
  'entry',
  'list',
  'highlighted',
  'open',
  'menu',
  'deselected',
  'faint',
  'vertical',
  'line',
  'often',
  'remains',
  'left',
  'edge',
  'highlighted',
  'rectangle',
  'used',
  'word',
  'windows',
  'shading',
  'table',
  'display',
  'shows',
  'inverse',
  'shading',
  'example',
  'shade',
  'cell',
  'display',
  'printout',
  'ok',
  'big',
  'killer',
  'bug',
  'using',
  'borland',
  'integrated',
  'development',
  'environment',
  'problem',
  'occurs',
  'click',
  'turbo',
  'debugger',
  'icon',
  'debugger',
  'option',
  'run',
  'command',
  'debugger',
  'application',
  'goes',
  'vga',
  'character',
  'mode',
  'designed',
  'screen',
  'goes',
  'haywire',
  'largely',
  'unreadable',
  'turbo',
  'debugger',
  'display',
  'garbled',
  'trial',
  'error',
  'found',
  'disrupted',
  'screen',
  'displayed',
  'alt',
  'spacebar',
  'followed',
  'letter',
  'instructs',
  'turbo',
  'debugger',
  'refresh',
  'screen',
  'satisfactorily',
  'wish',
  'didnt',
  'bug',
  'diamond',
  'drivers',
  'disruptive',
  'behavior',
  'happens',
  'standard',
  'vga',
  'driver',
  'comes',
  'windows',
  'must',
  'something',
  'video',
  'card',
  'mishandles',
  'vga',
  'mode',
  'problem',
  'monitor',
  'bug',
  'shows',
  'another',
  'monitor',
  'place',
  'usual',
  'one',
  'still',
  'like',
  'video',
  'card',
  'hoping',
  'problems',
  'remedied',
  'offer',
  'year',
  'warranty',
  'swh',
  'apr'],
 ['olsondl',
  'pill',
  'deer',
  'hunting',
  'lines',
  'article',
  'writes',
  'vast',
  'majority',
  'get',
  'life',
  'without',
  'ever',
  'display',
  'firearm',
  'given',
  'society',
  'experience',
  'seems',
  'safer',
  'get',
  'rid',
  'many',
  'guns',
  'possible',
  'considering',
  'uses',
  'include',
  'self',
  'defense',
  'hunting',
  'target',
  'shooting',
  'collecting',
  'dont',
  'buy',
  'notion',
  'vast',
  'majority',
  'people',
  'dont',
  'display',
  'firearm',
  'lets',
  'say',
  'contention',
  'true',
  'whats',
  'point',
  'get',
  'ting',
  'rid',
  'many',
  'guns',
  'possible',
  'werent',
  'used',
  'anyway',
  'david',
  'olson',
  'well',
  'say',
  'well',
  'put',
  'well',
  'put',
  'dont',
  'know',
  'put',
  'put',
  'george',
  'stephanopolous'],
 ['enzo',
  'liguori',
  'vandalizing',
  'sky',
  'organization',
  'canon',
  'information',
  'systems',
  'research',
  'australia',
  'lines',
  'article',
  'whats',
  'new',
  'apr',
  'sci',
  'physics',
  'research',
  'whats',
  'new',
  'opinion',
  'friday',
  'april',
  'washington',
  'dc',
  'space',
  'billboards',
  'one',
  'spinoffs',
  'promised',
  'science',
  'fiction',
  'writer',
  'robert',
  'heinlein',
  'published',
  'man',
  'sold',
  'moon',
  'involved',
  'dispute',
  'sale',
  'rights',
  'moon',
  'billboard',
  'nasa',
  'taken',
  'firsteps',
  'toward',
  'hideous',
  'vision',
  'future',
  'observers',
  'startled',
  'spring',
  'nasa',
  'launch',
  'vehicle',
  'arrived',
  'pad',
  'schwarzenegger',
  'painted',
  'huge',
  'block',
  'letters',
  'side',
  'booster',
  'rockets',
  'space',
  'marketing',
  'inc',
  'arranged',
  'ad',
  'promote',
  'arnolds',
  'latest',
  'movie',
  'space',
  'marketing',
  'working',
  'university',
  'colorado',
  'livermore',
  'engineers',
  'plan',
  'place',
  'mile',
  'long',
  'inflatable',
  'billboard',
  'low',
  'earth',
  'orbit',
  'nasa',
  'would',
  'provide',
  'contractual',
  'launch',
  'services',
  'however',
  'since',
  'nasa',
  'bases',
  'charge',
  'seriously',
  'flawed',
  'cost',
  'estimates',
  'wn',
  'mar',
  'taxpayers',
  'would',
  'bear',
  'expense',
  'may',
  'look',
  'like',
  'environmental',
  'vandalism',
  'mike',
  'lawson',
  'ceo',
  'space',
  'marketing',
  'told',
  'us',
  'yesterday',
  'real',
  'purpose',
  'project',
  'help',
  'environment',
  'platform',
  'carry',
  'ozone',
  'monitors',
  'explained',
  'advertising',
  'help',
  'defray',
  'costs',
  'think',
  'revolting',
  'hideous',
  'attempt',
  'vandalize',
  'night',
  'sky',
  'even',
  'april',
  'anymore',
  'light',
  'pollution',
  'observations',
  'read',
  'somewhere',
  'else',
  'might',
  'even',
  'visible',
  'day',
  'leave',
  'alone',
  'night',
  'nasa',
  'really',
  'supporting',
  'junk',
  'protesting',
  'groups',
  'organized',
  'states',
  'really',
  'really',
  'depressed',
  'enzo',
  'vincenzo',
  'liguori',
  'canon',
  'information',
  'systems',
  'research',
  'australia',
  'phone',
  'po',
  'box',
  'north',
  'ryde',
  'nsw',
  'fax'],
 ['khalsa',
  'options',
  'would',
  'great',
  'reply',
  'organization',
  'ncr',
  'engineering',
  'manufacturing',
  'san',
  'diego',
  'ca',
  'lines',
  'article',
  'charles',
  'parr',
  'writes',
  'list',
  'options',
  'would',
  'useful',
  'existing',
  'options',
  'car',
  'things',
  'youd',
  'like',
  'tripmeter',
  'great',
  'little',
  'gadget',
  'lets',
  'keep',
  'rough',
  'track',
  'mileage',
  'makes',
  'good',
  'second',
  'guesser',
  'gas',
  'gauge',
  'full',
  'size',
  'spare',
  'built',
  'mountings',
  'power',
  'systems',
  'radar',
  'detectors',
  'fitting',
  'allows',
  'generate',
  'household',
  'current',
  'engine',
  'running',
  'plug',
  'ins',
  'trunk',
  'engine',
  'compartment',
  'cabin',
  'feel',
  'free',
  'add',
  'ok',
  'fuel',
  'gauge',
  'really',
  'told',
  'much',
  'fuel',
  'left',
  'like',
  'make',
  'gas',
  'get',
  'gouged',
  'right',
  'accurate',
  'tenth',
  'gallon',
  'would',
  'great',
  'contract',
  'gk',
  'khalsa',
  'ncr',
  'engineering',
  'manufacturing',
  'bernardo',
  'dr',
  'san',
  'diego',
  'ca'],
 ['william',
  'mcfadden',
  'cable',
  'tvi',
  'interference',
  'keywords',
  'catv',
  'cable',
  'television',
  'tvi',
  'article',
  'tvnews',
  'apr',
  'organization',
  'tektronix',
  'tv',
  'products',
  'lines',
  'article',
  'jim',
  'jaworski',
  'writes',
  'happens',
  'dvc',
  'digital',
  'videon',
  'compression',
  'introduced',
  'next',
  'year',
  'instead',
  'receiving',
  'squiggly',
  'lines',
  'channels',
  'well',
  'receiving',
  'sqigglies',
  'lets',
  'see',
  'channels',
  'eventually',
  'since',
  'digital',
  'transmission',
  'schemes',
  'include',
  'error',
  'correction',
  'concealment',
  'performance',
  'remains',
  'low',
  'carrier',
  'noise',
  'ratio',
  'degrades',
  'quickly',
  'hence',
  'digitally',
  'compressed',
  'tv',
  'supposed',
  'less',
  'susceptible',
  'interference',
  'amplitude',
  'modulated',
  'tv',
  'bill',
  'mcfadden',
  'tektronix',
  'inc',
  'box',
  'ms',
  'beaverton',
  'tektronix',
  'tv',
  'tv',
  'tek',
  'com',
  'bill',
  'phone',
  'prove',
  'crazy',
  'people'],
 ['mike',
  'magil',
  'israel',
  'kill',
  'reporters',
  'lines',
  'anas',
  'omran',
  'claimed',
  'israelis',
  'used',
  'arrest',
  'sometime',
  'kill',
  'neutral',
  'reporters',
  'assertion',
  'anas',
  'omran',
  'course',
  'total',
  'fabrication',
  'truth',
  'iin',
  'im',
  'sure',
  'anas',
  'omran',
  'document',
  'sad',
  'despicable',
  'event',
  'otherwise',
  'may',
  'assume',
  'another',
  'piece',
  'anti',
  'israel',
  'bullshit',
  'posted',
  'someone',
  'whose',
  'family',
  'know',
  'teach',
  'children',
  'tell',
  'truth',
  'omran',
  'would',
  'care',
  'retract',
  'error',
  'would',
  'glad',
  'retract',
  'accusation',
  'liar',
  'document',
  'claim',
  'would',
  'glad',
  'apologize',
  'calling',
  'liar',
  'failing',
  'either',
  'would',
  'certainly',
  'show',
  'liar',
  'retract',
  'accusation',
  'hes',
  'liar',
  'omran',
  'retracts',
  'verbal',
  'diarrohea',
  'doesnt',
  'prove',
  'liar',
  'really',
  'retraction',
  'would',
  'pointless',
  'giving',
  'guy',
  'opportunity',
  'save',
  'face',
  'uttering',
  'bullshit',
  'would',
  'encourage',
  'must',
  'say',
  'style',
  'impressive',
  'mark',
  'keep',
  'mike',
  'mi',
  'ke',
  'mik',
  'emik',
  'emi',
  'opinions',
  'expressed',
  'mikem',
  'kem',
  'big',
  'blue',
  'ike',
  'ike',
  'mike'],
 ['radar',
  'jammers',
  'stealth',
  'cars',
  'nntp',
  'posting',
  'host',
  'westend',
  'vi',
  'ri',
  'cmu',
  'reply',
  'organization',
  'school',
  'computer',
  'science',
  'carnegie',
  'mellon',
  'distribution',
  'usa',
  'lines',
  'eric',
  'taylor',
  'writes',
  'determined',
  'go',
  'faster',
  'get',
  'airplane',
  'dont',
  'speed',
  'limits',
  'dont',
  'make',
  'habit',
  'buzzing',
  'local',
  'airport',
  'knots',
  'knots',
  'youre',
  'flying',
  'jet'],
 ['jonathan',
  'demarrais',
  'crypto',
  'conference',
  'organization',
  'university',
  'southern',
  'california',
  'los',
  'angeles',
  'ca',
  'lines',
  'distribution',
  'usa',
  'nntp',
  'posting',
  'host',
  'pollux',
  'usc',
  'need',
  'know',
  'following',
  'information',
  'upcoming',
  'crypto',
  'conference',
  'address',
  'submit',
  'articles',
  'number',
  'copies',
  'needed',
  'thanks',
  'jonathan',
  'demarrais',
  'jay',
  'university',
  'southern',
  'california',
  'depressingly',
  'stupid',
  'machine',
  'marvin'],
 ['brian',
  'herzog',
  'sunsoft',
  'product',
  'engineering',
  'xsun',
  'running',
  'sparcclassic',
  'organization',
  'sun',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'dogwalk',
  'article',
  'christian',
  'rank',
  'writes',
  'ive',
  'installed',
  'patches',
  'solaris',
  'sparcstation',
  'lx',
  'sparcclassic',
  'pool',
  'lx',
  'runs',
  'fine',
  'classics',
  'giving',
  'command',
  'startx',
  'xsun',
  'prints',
  'following',
  'messages',
  'warning',
  'cg',
  'cant',
  'map',
  'dummy',
  'space',
  'mapping',
  'cg',
  'device',
  'address',
  'exits',
  'anybody',
  'know',
  'fix',
  'problem',
  'im',
  'guessing',
  'id',
  'guess',
  'expects',
  'cg',
  'resolution',
  'version',
  'cg',
  'sparcclassic',
  'disclaimer',
  'represent',
  'sunsoft',
  'inc',
  'sun',
  'microsystems',
  'inc',
  'etc',
  'etc',
  'brian',
  'herzog',
  'sunsoft',
  'sun',
  'eng',
  'herzog'],
 ['brian',
  'curran',
  'ive',
  'found',
  'secret',
  'organization',
  'mead',
  'data',
  'central',
  'dayton',
  'oh',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'taurus',
  'meaddata',
  'com',
  'article',
  'edward',
  'ted',
  'fischer',
  'writes',
  'red',
  'sox',
  'first',
  'place',
  'eight',
  'games',
  'season',
  'already',
  'two',
  'wins',
  'clemens',
  'viola',
  'clemens',
  'starts',
  'tonight',
  'three',
  'days',
  'rest',
  'huh',
  'clemens',
  'pitched',
  'last',
  'saturday',
  'giving',
  'usual',
  'four',
  'days',
  'rest',
  'whats',
  'sox',
  'going',
  'four',
  'man',
  'rotation',
  'hesketh',
  'used',
  'relief',
  'last',
  'night',
  'brian',
  'curran',
  'mead',
  'data',
  'central',
  'didnt',
  'think',
  'shouldve',
  'asked',
  'catch',
  'temperature',
  'age',
  'carlton',
  'fisk',
  'chicago',
  'white',
  'sox',
  'catcher',
  'playing',
  'degree',
  'april',
  'ball',
  'game'],
 ['sean',
  'sweda',
  'royals',
  'final',
  'run',
  'total',
  'organization',
  'university',
  'michigan',
  'itd',
  'consulting',
  'support',
  'lines',
  'nntp',
  'posting',
  'host',
  'stimpy',
  'css',
  'itd',
  'umich',
  'newsreader',
  'tin',
  'version',
  'pl',
  'ive',
  'saying',
  'quite',
  'time',
  'absent',
  'net',
  'figured',
  'id',
  'stick',
  'neck',
  'bit',
  'royals',
  'set',
  'record',
  'fewest',
  'runs',
  'scored',
  'al',
  'team',
  'since',
  'inception',
  'dh',
  'rule',
  'ideas',
  'fall',
  'easily',
  'short',
  'runs',
  'thats',
  'damn',
  'sure',
  'cant',
  'believe',
  'media',
  'fools',
  'picking',
  'win',
  'division',
  'like',
  'tom',
  'gage',
  'detroit',
  'news',
  'claiming',
  'herk',
  'robinson',
  'kind',
  'genius',
  'trades',
  'aquisitions',
  'hes',
  'made',
  'ya',
  'sean',
  'sean',
  'sweda',
  'css',
  'itd',
  'consultant',
  'president',
  'bob',
  'sura',
  'fan',
  'club',
  'gm',
  'manager',
  'motor',
  'city',
  'marauders',
  'internet',
  'baseball',
  'league',
  'play',
  'ball'],
 ['terrance',
  'heath',
  'nature',
  'god',
  'paganism',
  'organization',
  'university',
  'georgia',
  'athens',
  'lines',
  'article',
  'michael',
  'covington',
  'writes',
  'would',
  'like',
  'see',
  'christians',
  'devote',
  'bit',
  'less',
  'effort',
  'paganism',
  'figuring',
  'present',
  'gospel',
  'pagans',
  'christ',
  'answer',
  'pagans',
  'lot',
  'right',
  'questions',
  'unlike',
  'materialists',
  'deny',
  'need',
  'spirituality',
  'one',
  'things',
  'find',
  'intersting',
  'pagan',
  'beliefs',
  'belief',
  'feminine',
  'deity',
  'well',
  'masculine',
  'deity',
  'brought',
  'christian',
  'household',
  'often',
  'wondered',
  'god',
  'father',
  'mother',
  'everyone',
  'know',
  'father',
  'usually',
  'mother',
  'seemed',
  'rather',
  'unbalanced',
  'fortunately',
  'personal',
  'theology',
  'probably',
  'fall',
  'line',
  'lot',
  'others',
  'recognized',
  'god',
  'without',
  'gender',
  'posessing',
  'qualities',
  'genders',
  'masculine',
  'feminine',
  'force',
  'provides',
  'sense',
  'balance',
  'find',
  'sorely',
  'lacking',
  'theologies',
  'lack',
  'think',
  'responsible',
  'lot',
  'unbalanced',
  'ways',
  'see',
  'world',
  'treat',
  'terrance',
  'heath',
  'comfort',
  'silence',
  'act',
  'fight',
  'back',
  'talk',
  'back'],
 ['rfl',
  'testing',
  'organization',
  'university',
  'tennessee',
  'computing',
  'center',
  'distribution',
  'utk',
  'lines',
  'testing',
  'flames',
  'please',
  'bye'],
 ['mycal',
  'atari',
  'processors',
  'distribution',
  'world',
  'organization',
  'acsys',
  'inc',
  'lines',
  'people',
  'interested',
  'every',
  'aspect',
  'try',
  'zine',
  'connection',
  'cash',
  'timothy',
  'duarte',
  'po',
  'box',
  'westport',
  'sample',
  'pgp',
  'key',
  'request',
  'mycals',
  'way',
  'skiing',
  'moguls',
  'turn',
  'turn',
  'turn',
  'air',
  'survive',
  'survive',
  'survive',
  'risk',
  'rush'],
 ['jon',
  'leech',
  'space',
  'faq',
  'become',
  'astronaut',
  'keywords',
  'frequently',
  'asked',
  'questions',
  'article',
  'cs',
  'astronaut_',
  'expires',
  'may',
  'gmt',
  'distribution',
  'world',
  'organization',
  'university',
  'north',
  'carolina',
  'chapel',
  'hill',
  'lines',
  'supersedes',
  'nntp',
  'posting',
  'host',
  'mahler',
  'cs',
  'unc',
  'archive',
  'name',
  'space',
  'astronaut',
  'last',
  'modified',
  'date',
  'become',
  'astronaut',
  'first',
  'short',
  'form',
  'authored',
  'henry',
  'spencer',
  'official',
  'nasa',
  'announcement',
  'become',
  'astronaut',
  'assume',
  'mean',
  'nasa',
  'astronaut',
  'since',
  'probably',
  'impossible',
  'non',
  'russian',
  'get',
  'cosmonaut',
  'corps',
  'paying',
  'passengers',
  'professional',
  'cosmonauts',
  'nations',
  'astronauts',
  'fly',
  'even',
  'fewer',
  'youre',
  'better',
  'hoping',
  'win',
  'lottery',
  'becoming',
  'shuttle',
  'pilot',
  'requires',
  'lots',
  'fast',
  'jet',
  'experience',
  'means',
  'military',
  'flying',
  'career',
  'forget',
  'unless',
  'want',
  'anyway',
  'want',
  'become',
  'shuttle',
  'mission',
  'specialist',
  'arent',
  'us',
  'citizen',
  'become',
  'one',
  'must',
  'crucial',
  'thing',
  'remember',
  'demand',
  'jobs',
  'vastly',
  'exceeds',
  'supply',
  'nasas',
  'problem',
  'finding',
  'qualified',
  'people',
  'thinning',
  'lineup',
  'manageable',
  'length',
  'enough',
  'qualified',
  'must',
  'avoid',
  'dis',
  'qualified',
  'reason',
  'many',
  'principle',
  'quite',
  'irrelevant',
  'job',
  'get',
  'ph',
  'specialize',
  'something',
  'involves',
  'getting',
  'hands',
  'dirty',
  'equipment',
  'paper',
  'pencil',
  'forget',
  'computer',
  'programming',
  'entirely',
  'done',
  'ground',
  'fore',
  'seeable',
  'future',
  'degree',
  'one',
  'field',
  'plus',
  'work',
  'experience',
  'another',
  'seems',
  'frequent',
  'winner',
  'good',
  'physical',
  'condition',
  'good',
  'eyesight',
  'get',
  'radial',
  'keratomy',
  'similar',
  'hack',
  'improve',
  'vision',
  'nobody',
  'knows',
  'sudden',
  'pressure',
  'changes',
  'would',
  'rked',
  'eyes',
  'long',
  'term',
  'effects',
  'poorly',
  'understood',
  'matter',
  'avoid',
  'significant',
  'medical',
  'unknowns',
  'pass',
  'jet',
  'pilot',
  'physical',
  'okay',
  'cant',
  'chances',
  'poor',
  'practise',
  'public',
  'speaking',
  'conservative',
  'conformist',
  'appearance',
  'actions',
  'youve',
  'got',
  'tough',
  'selling',
  'job',
  'ahead',
  'trying',
  'convince',
  'cautious',
  'conservative',
  'selection',
  'committee',
  'better',
  'hundreds',
  'applicants',
  'also',
  'credit',
  'nasa',
  'hired',
  'public',
  'relations',
  'significant',
  'part',
  'job',
  'nasas',
  'image',
  'prim',
  'proper',
  'image',
  'want',
  'squeaky',
  'clean',
  'workaholic',
  'yuppie',
  'remember',
  'also',
  'need',
  'security',
  'clearance',
  'point',
  'security',
  'considers',
  'everybody',
  'guilty',
  'proven',
  'innocent',
  'keep',
  'nose',
  'clean',
  'get',
  'pilots',
  'license',
  'make',
  'flying',
  'number',
  'one',
  'hobby',
  'experienced',
  'pilots',
  'known',
  'favored',
  'even',
  'non',
  'pilot',
  'jobs',
  'work',
  'nasa',
  'astronauts',
  'selected',
  'military',
  'nasa',
  'employees',
  'remaining',
  'two',
  'nasa',
  'consultant',
  'mae',
  'jemison',
  'first',
  'black',
  'female',
  'astronaut',
  'apply',
  'outside',
  'nasa',
  'miss',
  'offer',
  'job',
  'nasa',
  'take',
  'sometimes',
  'past',
  'meant',
  'look',
  'interesting',
  'want',
  'know',
  'bit',
  'better',
  'first',
  'think',
  'space',
  'want',
  'highly',
  'motivated',
  'people',
  'lose',
  'chance',
  'demonstrate',
  'motivation',
  'keep',
  'trying',
  'many',
  'astronauts',
  'didnt',
  'make',
  'first',
  'time',
  'nasa',
  'national',
  'aeronautics',
  'space',
  'administration',
  'lyndon',
  'johnson',
  'space',
  'center',
  'houston',
  'texas',
  'announcement',
  'mission',
  'specialist',
  'pilot',
  'astronaut',
  'candidates',
  'astronaut',
  'candidate',
  'program',
  'national',
  'aeronautics',
  'space',
  'administration',
  'nasa',
  'need',
  'pilot',
  'astronaut',
  'candidates',
  'mission',
  'specialist',
  'astronaut',
  'candidates',
  'support',
  'space',
  'shuttle',
  'program',
  'nasa',
  'accepting',
  'continuous',
  'basis',
  'plans',
  'select',
  'astronaut',
  'candidates',
  'needed',
  'persons',
  'civilian',
  'sector',
  'military',
  'services',
  'considered',
  'positions',
  'located',
  'lyndon',
  'johnson',
  'space',
  'center',
  'houston',
  'texas',
  'involved',
  'year',
  'training',
  'evaluation',
  'program',
  'space',
  'shuttle',
  'program',
  'description',
  'numerous',
  'successful',
  'flights',
  'space',
  'shuttle',
  'demonstrated',
  'operation',
  'experimental',
  'investigations',
  'space',
  'becoming',
  'routine',
  'space',
  'shuttle',
  'orbiter',
  'launched',
  'maneuvers',
  'earth',
  'orbit',
  'performing',
  'missions',
  'lastling',
  'days',
  'returns',
  'earth',
  'ready',
  'another',
  'flight',
  'payloads',
  'flight',
  'crew',
  'orbiter',
  'performs',
  'variety',
  'orbital',
  'missions',
  'including',
  'deployment',
  'retrieval',
  'satellites',
  'service',
  'existing',
  'satellites',
  'operation',
  'specialized',
  'laboratories',
  'astronomy',
  'earth',
  'sciences',
  'materials',
  'processing',
  'manufacturing',
  'operations',
  'missions',
  'eventually',
  'include',
  'development',
  'servicing',
  'permanent',
  'space',
  'station',
  'orbiter',
  'also',
  'provides',
  'staging',
  'capability',
  'using',
  'higher',
  'orbits',
  'achieved',
  'orbiter',
  'users',
  'space',
  'shuttles',
  'capabilities',
  'domestic',
  'foreign',
  'include',
  'government',
  'agencies',
  'private',
  'industries',
  'crew',
  'normally',
  'consists',
  'five',
  'people',
  'commander',
  'pilot',
  'three',
  'mission',
  'specialists',
  'occasion',
  'additional',
  'crew',
  'members',
  'assigned',
  'commander',
  'pilot',
  'mission',
  'specialists',
  'nasa',
  'astronauts',
  'pilot',
  'astronaut',
  'pilot',
  'astronauts',
  'server',
  'space',
  'shuttle',
  'commanders',
  'pilots',
  'flight',
  'commander',
  'onboard',
  'responsibility',
  'vehicle',
  'crew',
  'mission',
  'success',
  'safety',
  'flight',
  'pilot',
  'assists',
  'commander',
  'controlling',
  'operating',
  'vehicle',
  'addition',
  'pilot',
  'may',
  'assist',
  'deployment',
  'retrieval',
  'satellites',
  'utilizing',
  'remote',
  'manipulator',
  'system',
  'extra',
  'vehicular',
  'activities',
  'payload',
  'operations',
  'mission',
  'specialist',
  'astronaut',
  'mission',
  'specialist',
  'astronauts',
  'working',
  'commander',
  'pilot',
  'overall',
  'responsibility',
  'coordination',
  'shuttle',
  'operations',
  'areas',
  'crew',
  'activity',
  'planning',
  'consumables',
  'usage',
  'experiment',
  'payload',
  'operations',
  'mission',
  'specialists',
  'required',
  'detailed',
  'knowledge',
  'shuttle',
  'systems',
  'well',
  'detailed',
  'knowledge',
  'operational',
  'characteristics',
  'mission',
  'requirements',
  'objectives',
  'supporting',
  'systems',
  'equipment',
  'experiments',
  'conducted',
  'assigned',
  'missions',
  'mission',
  'specialists',
  'perform',
  'extra',
  'vehicular',
  'activities',
  'payload',
  'handling',
  'using',
  'remote',
  'manipulator',
  'system',
  'perform',
  'assist',
  'specific',
  'experimental',
  'operations',
  'astronaut',
  'candidate',
  'program',
  'basic',
  'qualification',
  'requirements',
  'applicants',
  'must',
  'meet',
  'following',
  'minimum',
  'requirements',
  'prior',
  'submitting',
  'application',
  'mission',
  'specialist',
  'astronaut',
  'candidate',
  'bachelors',
  'degree',
  'accredited',
  'institution',
  'engineering',
  'biological',
  'science',
  'physical',
  'science',
  'mathematics',
  'degree',
  'must',
  'followed',
  'least',
  'three',
  'years',
  'related',
  'progressively',
  'responsible',
  'professional',
  'experience',
  'advanced',
  'degree',
  'desirable',
  'may',
  'substituted',
  'part',
  'experience',
  'requirement',
  'masters',
  'degree',
  'year',
  'doctoral',
  'degree',
  'years',
  'quality',
  'academic',
  'preparation',
  'important',
  'ability',
  'pass',
  'nasa',
  'class',
  'ii',
  'space',
  'physical',
  'similar',
  'civilian',
  'military',
  'class',
  'ii',
  'flight',
  'physical',
  'includes',
  'following',
  'specific',
  'standards',
  'distant',
  'visual',
  'acuity',
  'better',
  'uncorrected',
  'correctable',
  'eye',
  'blood',
  'pressure',
  'measured',
  'sitting',
  'position',
  'height',
  'inches',
  'pilot',
  'astronaut',
  'candidate',
  'bachelors',
  'degree',
  'accredited',
  'institution',
  'engineering',
  'biological',
  'science',
  'physical',
  'science',
  'mathematics',
  'degree',
  'must',
  'followed',
  'least',
  'three',
  'years',
  'related',
  'progressively',
  'responsible',
  'professional',
  'experience',
  'advanced',
  'degree',
  'desirable',
  'quality',
  'academic',
  'preparation',
  'important',
  'least',
  'hours',
  'pilot',
  'command',
  'time',
  'jet',
  'aircraft',
  'flight',
  'test',
  'experience',
  'highly',
  'desirable',
  'ability',
  'pass',
  'nasa',
  'class',
  'space',
  'physical',
  'similar',
  'military',
  'civilian',
  'class',
  'flight',
  'physical',
  'includes',
  'following',
  'specific',
  'standards',
  'distant',
  'visual',
  'acuity',
  'better',
  'uncorrected',
  'correctable',
  'eye',
  'blood',
  'pressure',
  'measured',
  'sitting',
  'position',
  'height',
  'inches',
  'citizenship',
  'requirements',
  'applications',
  'astronaut',
  'candidate',
  'program',
  'must',
  'citizens',
  'united',
  'states',
  'note',
  'academic',
  'requirements',
  'applicants',
  'astronaut',
  'candidate',
  'program',
  'must',
  'meet',
  'basic',
  'education',
  'requirements',
  'nasa',
  'engineering',
  'scientific',
  'positions',
  'specifically',
  'successful',
  'completion',
  'standard',
  'professional',
  'curriculum',
  'accredited',
  'college',
  'university',
  'leading',
  'least',
  'bachelors',
  'degree',
  'major',
  'study',
  'appropriate',
  'field',
  'engineering',
  'biological',
  'science',
  'physical',
  'science',
  'mathematics',
  'following',
  'degree',
  'fields',
  'related',
  'engineering',
  'sciences',
  'considered',
  'qualifying',
  'degrees',
  'technology',
  'engineering',
  'technology',
  'aviation',
  'technology',
  'medical',
  'technology',
  'etc',
  'degrees',
  'psychology',
  'except',
  'clinical',
  'psychology',
  'physiological',
  'psychology',
  'experimental',
  'psychology',
  'qualifying',
  'degrees',
  'nursing',
  'degrees',
  'social',
  'sciences',
  'geography',
  'anthropology',
  'archaeology',
  'etc',
  'degrees',
  'aviation',
  'aviation',
  'management',
  'similar',
  'fields',
  'application',
  'procedures',
  'civilian',
  'application',
  'package',
  'may',
  'obtained',
  'writing',
  'nasa',
  'johnson',
  'space',
  'center',
  'astronaut',
  'selection',
  'office',
  'attn',
  'ahx',
  'houston',
  'tx',
  'civilian',
  'applications',
  'accepted',
  'continuous',
  'basis',
  'nasa',
  'decides',
  'select',
  'additional',
  'astronaut',
  'candidates',
  'consideration',
  'given',
  'applications',
  'hand',
  'date',
  'decision',
  'made',
  'applications',
  'received',
  'date',
  'retained',
  'considered',
  'next',
  'selection',
  'applicants',
  'notified',
  'annually',
  'opportunity',
  'update',
  'applications',
  'indicate',
  'continued',
  'interest',
  'considered',
  'program',
  'applicants',
  'update',
  'applications',
  'annually',
  'dropped',
  'consideration',
  'applications',
  'retained',
  'preliminary',
  'screening',
  'applications',
  'additional',
  'information',
  'may',
  'requested',
  'applicants',
  'person',
  'listed',
  'application',
  'supervisors',
  'references',
  'may',
  'contacted',
  'active',
  'duty',
  'military',
  'active',
  'duty',
  'military',
  'personnel',
  'must',
  'submit',
  'applications',
  'respective',
  'military',
  'service',
  'directly',
  'nasa',
  'application',
  'procedures',
  'disseminated',
  'service',
  'selection',
  'personal',
  'interviews',
  'thorough',
  'medical',
  'evaluations',
  'required',
  'civilian',
  'military',
  'applicants',
  'final',
  'consideration',
  'final',
  'selections',
  'made',
  'applicants',
  'considered',
  'notified',
  'outcome',
  'process',
  'selection',
  'rosters',
  'established',
  'process',
  'may',
  'used',
  'selection',
  'additional',
  'candidates',
  'one',
  'year',
  'period',
  'following',
  'establishment',
  'general',
  'program',
  'requirements',
  'selected',
  'applicants',
  'designated',
  'astronaut',
  'candidates',
  'assigned',
  'astronaut',
  'office',
  'johnson',
  'space',
  ...],
 ['howard',
  'lynch',
  'phillies',
  'sign',
  'mark',
  'davis',
  'organization',
  'hp',
  'corporate',
  'notes',
  'server',
  'lines',
  'heard',
  'rumors',
  'la',
  'cin',
  'hou',
  'sd',
  'interested',
  'mark',
  'davis',
  'doesnt',
  'surprise',
  'team',
  'give',
  'something',
  'cash',
  'actually',
  'get',
  'lynch',
  'mob',
  'ps',
  'anyone',
  'else',
  'draft',
  'guy',
  'really',
  'got',
  'loud',
  'cry',
  'ever',
  'give',
  'guy'],
 ['thunderbirds',
  'go',
  'mr',
  'noisy',
  'engine',
  'organization',
  'digital',
  'equipment',
  'corporation',
  'lines',
  'nntp',
  'posting',
  'host',
  'opco',
  'gday',
  'people',
  'mr',
  'owners',
  'motor',
  'head',
  'gurus',
  'know',
  'mr',
  'engine',
  'sounds',
  'noisy',
  'mr',
  'engine',
  'noisy',
  'best',
  'times',
  'even',
  'nice',
  'nose',
  'one',
  'ugly',
  'noises',
  'oil',
  'change',
  'every',
  'months',
  'months',
  'engine',
  'noise',
  'sounds',
  'relatively',
  'quiet',
  'driving',
  'idling',
  'around',
  'month',
  'mark',
  'oil',
  'change',
  'ive',
  'tracking',
  'thoroughly',
  'months',
  'starts',
  'get',
  'disgusting',
  'noise',
  'much',
  'driving',
  'idling',
  'whats',
  'problem',
  'also',
  'dont',
  'know',
  'noticed',
  'little',
  'performance',
  'drop',
  'hasnt',
  'got',
  'acceleration',
  'used',
  'help',
  'tips',
  'would',
  'appreciated',
  'worried'],
 ['admiral',
  'david',
  'ryan',
  'mhz',
  'mhz',
  'amps',
  'mtr',
  'ht',
  'sale',
  'organization',
  'small',
  'business',
  'systems',
  'incorporated',
  'smithfield',
  'ri',
  'lines',
  'following',
  'equipment',
  'sale',
  'kenwood',
  'th',
  'mtr',
  'ht',
  'rf',
  'concepts',
  'mtr',
  'amp',
  'hamtronics',
  'class',
  'continuous',
  'duty',
  'mhz',
  'watt',
  'watt',
  'amp',
  'prices',
  'include',
  'shipping',
  'insurance',
  'additional',
  'information',
  'contact',
  'address',
  'dave',
  'admiral',
  'david',
  'ryan',
  'uunet',
  'rayssd',
  'anomaly',
  'der'],
 ['william',
  'sands',
  'request',
  'video',
  'pittsburgh',
  'area',
  'keywords',
  'sunday',
  'afternoon',
  'organization',
  'university',
  'pittsburgh',
  'lines',
  'apparently',
  'minute',
  'special',
  'penguins',
  'season',
  'abc',
  'wtae',
  'channel',
  'immediately',
  'preceding',
  'opening',
  'game',
  'devils',
  'sunday',
  'turned',
  'time',
  'watch',
  'credits',
  'anyone',
  'taped',
  'willing',
  'let',
  'borrow',
  'dub',
  'would',
  'appreciate',
  'would',
  'willing',
  'come',
  'pick',
  'ill',
  'return',
  'next',
  'day',
  'buy',
  'beer',
  'please',
  'respond',
  'via',
  'mail',
  'thanks',
  'lot',
  'oh',
  'yeah',
  'good',
  'billy'],
 ['yih',
  'tyng',
  'wu',
  'help',
  'test',
  'simms',
  'nntp',
  'posting',
  'host',
  'top',
  'magnus',
  'acs',
  'ohio',
  'state',
  'organization',
  'ohio',
  'state',
  'university',
  'lines',
  'hello',
  'got',
  'simms',
  'least',
  'one',
  'work',
  'dont',
  'know',
  'software',
  'test',
  'simms',
  'thoroughly',
  'could',
  'rely',
  'ram',
  'test',
  'performed',
  'computer',
  'start',
  'installed',
  'dead',
  'simm',
  'lc',
  'lc',
  'ii',
  'would',
  'strange',
  'music',
  'display',
  'screen',
  'need',
  'help',
  'thanks',
  'advance',
  'yih',
  'tyng'],
 ['christopher',
  'mussack',
  'christians',
  'need',
  'christianity',
  'lines',
  'article',
  'henling',
  'lawrence',
  'writes',
  'article',
  'writes',
  'example',
  'universe',
  'exist',
  'whether',
  'find',
  'pascals',
  'wager',
  'spend',
  'lives',
  'searching',
  'merely',
  'wasted',
  'lives',
  'meaningless',
  'anyway',
  'find',
  'view',
  'christianity',
  'quite',
  'disheartening',
  'sad',
  'idea',
  'life',
  'meaning',
  'importance',
  'creator',
  'seem',
  'like',
  'much',
  'basis',
  'belief',
  'please',
  'forgive',
  'inclusions',
  'suppose',
  'neccessary',
  'follow',
  'argument',
  'point',
  'life',
  'meaning',
  'importance',
  'try',
  'find',
  'meaning',
  'importance',
  'almost',
  'tautology',
  'hope',
  'im',
  'patronizing',
  'one',
  'term',
  'meaning',
  'creator',
  'though',
  'obvious',
  'argument',
  'logic',
  'also',
  'appalling',
  'god',
  'must',
  'exist',
  'want',
  'like',
  'think',
  'therefore',
  'therefore',
  'god',
  'heard',
  'line',
  'reasoning',
  'wonder',
  'prevalent',
  'certainly',
  'modern',
  'society',
  'many',
  'people',
  'convinced',
  'life',
  'hopeless',
  'pollsters',
  'newscasts',
  'state',
  'dont',
  'see',
  'good',
  'reason',
  'become',
  'religious',
  'want',
  'meaning',
  'join',
  'cult',
  'waco',
  'leaders',
  'give',
  'security',
  'blanket',
  'desire',
  'unfortunately',
  'term',
  'religious',
  'ambiguous',
  'context',
  'could',
  'say',
  'searching',
  'meaning',
  'life',
  'definition',
  'religious',
  'could',
  'say',
  'cult',
  'followers',
  'definition',
  'given',
  'search',
  'want',
  'meaning',
  'search',
  'truth',
  'far',
  'understanding',
  'christianity',
  'congruent',
  'understanding',
  'truth',
  'many',
  'come',
  'conclusions',
  'worded',
  'ways',
  'make',
  'sense',
  'means',
  'imply',
  'understand',
  'everything',
  'chris',
  'mussack'],
 ['michael',
  'mccool',
  'apr',
  'toronto',
  'siggraph',
  'event',
  'organization',
  'university',
  'toronto',
  'dynamic',
  'graphics',
  'project',
  'distribution',
  'na',
  'lines',
  'toronto',
  'siggraph',
  'chances',
  'art',
  'graphics',
  'animation',
  'indigo',
  'ken',
  'evans',
  'imagicians',
  'artware',
  'inc',
  'tuesday',
  'april',
  'pm',
  'pm',
  'mcluhan',
  'centre',
  'culture',
  'technology',
  'university',
  'toronto',
  'queens',
  'park',
  'crescent',
  'toronto',
  'members',
  'non',
  'members',
  'alike',
  'non',
  'members',
  'encouraged',
  'become',
  'members',
  'abstract',
  'imagicians',
  'artware',
  'inc',
  'entering',
  'early',
  'beta',
  'site',
  'testing',
  'silicon',
  'graphics',
  'workstations',
  'new',
  'abstract',
  'artwork',
  'animation',
  'package',
  'called',
  'chances',
  'art',
  'package',
  'described',
  'demonstrated',
  'technical',
  'issues',
  'discussed',
  'marketing',
  'plans',
  'outlined',
  'talk',
  'also',
  'present',
  'technical',
  'business',
  'problems',
  'increasingly',
  'confronting',
  'small',
  'startup',
  'software',
  'companies',
  'today',
  'opportunities',
  'situation',
  'presents',
  'time',
  'event',
  'allocated',
  'hands',
  'demonstrations',
  'interested',
  'parties',
  'silicon',
  'graphics',
  'graciously',
  'providing',
  'indigo',
  'event',
  'myck',
  'kupka',
  'also',
  'demonstrating',
  'computerized',
  'interactive',
  'reflective',
  'stereoscope',
  'installed',
  'upstairs',
  'mcluhan',
  'centre',
  'feel',
  'free',
  'drop',
  'demonstration',
  'event',
  'btw',
  'sure',
  'sing',
  'happy',
  'birthday',
  'myck',
  'names',
  'nominees',
  'siggraph',
  'executive',
  'offices',
  'announced',
  'meeting',
  'nominations',
  'still',
  'open',
  'election',
  'may',
  'th',
  'event',
  'call',
  'myck',
  'kupka',
  'fax',
  'directions',
  'mcluhan',
  'coachhouse',
  'east',
  'side',
  'queens',
  'park',
  'crescent',
  'north',
  'wellesley',
  'south',
  'st',
  'joseph',
  'st',
  'behind',
  'east',
  'queens',
  'park',
  'crescent',
  'centre',
  'mediaeval',
  'studies',
  'information',
  'toronto',
  'siggraph',
  'membership',
  'contact',
  'michael',
  'mccool',
  'via',
  'internet',
  'voice',
  'fax'],
 ['gordon',
  'lang',
  'flame',
  'therapy',
  'article',
  'fmsrl',
  'pqdfrinn',
  'organization',
  'ford',
  'motor',
  'company',
  'research',
  'laboratory',
  'lines',
  'nntp',
  'posting',
  'host',
  'slee',
  'srl',
  'ford',
  'com',
  'newsreader',
  'tin',
  'pl',
  'think',
  'would',
  'great',
  'idea',
  'new',
  'group',
  'created',
  'comp',
  'sys',
  'ibm',
  'pc',
  'flame',
  'therapy',
  'anybody',
  'agree'],
 ['koppenhoefer',
  'kyle',
  'cramm',
  'kyle',
  'rodney',
  'king',
  'distribution',
  'usa',
  'organization',
  'university',
  'illinois',
  'urbana',
  'lines',
  'ted',
  'frank',
  'writes',
  'article',
  'koppenhoefer',
  'kyle',
  'cramm',
  'writes',
  'ted',
  'frank',
  'writes',
  'article',
  'koppenhoefer',
  'kyle',
  'cramm',
  'writes',
  'fact',
  'bunch',
  'cops',
  'putting',
  'lives',
  'line',
  'day',
  'day',
  'afraid',
  'hell',
  'large',
  'black',
  'guy',
  'took',
  'large',
  'amount',
  'punishment',
  'refused',
  'submit',
  'im',
  'curious',
  'think',
  'particular',
  'adjective',
  'important',
  'im',
  'curious',
  'took',
  'beign',
  'statement',
  'cross',
  'posted',
  'several',
  'different',
  'news',
  'groups',
  'including',
  'something',
  'along',
  'lines',
  'alt',
  'discrimination',
  'exsqueeze',
  'saw',
  'original',
  'post',
  'alt',
  'discrimination',
  'post',
  'cross',
  'posted',
  'three',
  'groups',
  'followup',
  'cross',
  'posted',
  'two',
  'three',
  'omitting',
  'soc',
  'motss',
  'instead',
  'engaging',
  'meta',
  'discussion',
  'topic',
  'could',
  'answer',
  'question',
  'posed',
  'statement',
  'beign',
  'trouble',
  'politely',
  'responding',
  'polite',
  'query',
  'well',
  'dont',
  'think',
  'query',
  'exactly',
  'polite',
  'try',
  'give',
  'polite',
  'responce',
  'something',
  'atypical',
  'net',
  'goes',
  'black',
  'descriptive',
  'adjective',
  'describes',
  'mr',
  'king',
  'many',
  'newspaper',
  'radio',
  'tv',
  'news',
  'reports',
  'seen',
  'adjective',
  'commonly',
  'front',
  'name',
  'never',
  'seen',
  'anyone',
  'complain',
  'adjective',
  'used',
  'benign',
  'manner',
  'say',
  'mr',
  'king',
  'good',
  'black',
  'know',
  'mr',
  'king',
  'would',
  'make',
  'ascertian',
  'without',
  'evidence',
  'effect',
  'used',
  'purely',
  'descriptive',
  'adjective',
  'manner',
  'many',
  'news',
  'people',
  'used',
  'past',
  'entire',
  'second',
  'trial',
  'race',
  'ted',
  'dont',
  'feel',
  'compelled',
  'discuss',
  'mr',
  'kings',
  'racial',
  'background',
  'mr',
  'king',
  'white',
  'would',
  'second',
  'trial',
  'probably',
  'saying',
  'beating',
  'would',
  'occurred',
  'white',
  'extremely',
  'difficult',
  'call',
  'make',
  'possible',
  'case',
  'definately',
  'still',
  'think',
  'actions',
  'crap',
  'ted',
  'far',
  'divisive',
  'using',
  'adjective',
  'black',
  'non',
  'derogenory',
  'manner',
  'would',
  'happier',
  'used',
  'african',
  'american',
  'really',
  'lost',
  'world',
  'pc',
  'already',
  'instrumental',
  'getting',
  'one',
  'persons',
  'net',
  'access',
  'revoked',
  'wonder',
  'sent',
  'copy',
  'message',
  'sys',
  'admin',
  'plea',
  'worthy',
  'posting',
  'way',
  'went',
  'polite',
  'inquiry',
  'makes',
  'believe',
  'anything'],
 ['david',
  'rex',
  'wood',
  'creating',
  'application',
  'contexts',
  'multiple',
  'times',
  'nntp',
  'posting',
  'host',
  'bruno',
  'cs',
  'colorado',
  'organization',
  'university',
  'colorado',
  'boulder',
  'lines',
  'describe',
  'problem',
  'well',
  'please',
  'read',
  'trying',
  'write',
  'function',
  'creates',
  'xtappcontext',
  'widget',
  'displays',
  'widget',
  'destroys',
  'everything',
  'returns',
  'problem',
  'multiple',
  'calls',
  'function',
  'cause',
  'variety',
  'problems',
  'including',
  'depending',
  'calls',
  'make',
  'get',
  'rid',
  'things',
  'core',
  'dump',
  'badpixmap',
  'error',
  'widget',
  'unmapped',
  'simple',
  'program',
  'wrote',
  'show',
  'problem',
  'include',
  'xlib',
  'include',
  'xm',
  'xm',
  'include',
  'xm',
  'pushb',
  'void',
  'bla',
  'xtappcontext',
  'app',
  'display',
  'dis',
  'xopendisplay',
  'int',
  'junk',
  'widget',
  'top',
  'xtappinitialize',
  'app',
  'test',
  'null',
  'junk',
  'null',
  'null',
  'null',
  'widget',
  'box',
  'blaaa',
  'top',
  'xmnheight',
  'xmnwidth',
  'null',
  'xtrealizewidget',
  'top',
  'xtappmainloop',
  'xevents',
  'int',
  'xevent',
  'event',
  'xtappnextevent',
  'app',
  'event',
  'xtdispatchevent',
  'event',
  'put',
  'top',
  'xtdestroywidget',
  'top',
  'app',
  'xclosedisplay',
  'dis',
  'main',
  'int',
  'bla',
  'note',
  'rewrote',
  'xtappmainloop',
  'given',
  'time',
  'example',
  'xevents',
  'function',
  'exit',
  'return',
  'main',
  'program',
  'example',
  'get',
  'following',
  'error',
  'consistent',
  'th',
  'call',
  'bla',
  'error',
  'failed',
  'request',
  'badpixmap',
  'invalid',
  'pixmap',
  'parameter',
  'major',
  'opcode',
  'failed',
  'request',
  'x_creategc',
  'resource',
  'id',
  'failed',
  'request',
  'xe',
  'serial',
  'number',
  'failed',
  'request',
  'current',
  'serial',
  'number',
  'output',
  'stream',
  'take',
  'top',
  'line',
  'dumps',
  'core',
  'seconds',
  'call',
  'furthermore',
  'every',
  'time',
  'call',
  'xtappinitialize',
  'st',
  'time',
  'get',
  'warning',
  'initializing',
  'resource',
  'lists',
  'twice',
  'warning',
  'initializing',
  'translation',
  'manager',
  'twice',
  'finally',
  'question',
  'needs',
  'done',
  'order',
  'able',
  'call',
  'function',
  'creates',
  'xtappcontext',
  'widgets',
  'multiple',
  'times',
  'help',
  'would',
  'greatly',
  'appreciated',
  'please',
  'respond',
  'via',
  'email',
  'dont',
  'usually',
  'time',
  'read',
  'group',
  'thanks',
  'much',
  'davewood',
  'david',
  'rex',
  'wood',
  'university',
  'colorado',
  'boulder'],
 ['naftaly',
  'stramer',
  'israels',
  'expansion',
  'nntp',
  'posting',
  'host',
  'supergas',
  'reply',
  'organization',
  'intergraph',
  'electronics',
  'lines',
  'article',
  'ha',
  'writes',
  'couple',
  'questions',
  'pro',
  'israeli',
  'lobby',
  'israels',
  'occupation',
  'southern',
  'lebanon',
  'temporary',
  'mr',
  'stein',
  'working',
  'proof',
  'israel',
  'diverting',
  'water',
  'jordan',
  'river',
  'away',
  'lebanese',
  'territory',
  'yes',
  'long',
  'goverment',
  'force',
  'authority',
  'prevent',
  'terrorists',
  'attack',
  'israel',
  'israels',
  'occupation',
  'west',
  'bank',
  'gaza',
  'golan',
  'temporary',
  'support',
  'many',
  'settlers',
  'moved',
  'territories',
  'temporary',
  'lets',
  'hear',
  'sinai',
  'several',
  'big',
  'cities',
  'avcuated',
  'isreal',
  'gave',
  'back',
  'egypth',
  'peace',
  'agreement',
  'opinin',
  'settlers',
  'obstacle',
  'withdrawal',
  'long',
  'combined',
  'real',
  'peace',
  'agreement',
  'arabs',
  'palastinians',
  'steve',
  'naftaly',
  'naftaly',
  'stramer',
  'intergraph',
  'electronics',
  'internet',
  'lookout',
  'road',
  'suite',
  'voice',
  'fax',
  'boulder',
  'co',
  'quality',
  'everybodys',
  'job',
  'everybodys',
  'job',
  'watch'],
 ['gary',
  'piatt',
  'employment',
  'concentrate',
  'child',
  'molesters',
  'organization',
  'general',
  'datacomm',
  'ind',
  'inc',
  'middlebury',
  'ct',
  'lines',
  'nntp',
  'posting',
  'host',
  'esun',
  'newsreader',
  'tin',
  'version',
  'pl',
  'dov',
  'bai',
  'msi',
  'visitor',
  'wrote',
  'article',
  'xavier',
  'gallagher',
  'writes',
  'true',
  'man',
  'invent',
  'need',
  'food',
  'shelter',
  'warmth',
  'ilk',
  'man',
  'invent',
  'property',
  'laws',
  'laws',
  'trespass',
  'think',
  'property',
  'generated',
  'grow',
  'automatically',
  'trees',
  'wish',
  'someone',
  'produce',
  'say',
  'generated',
  'god',
  'goddess',
  'say',
  'result',
  'coalescence',
  'billions',
  'tons',
  'interstellar',
  'debris',
  'either',
  'case',
  'property',
  'xavier',
  'speaks',
  'around',
  'millions',
  'years',
  'follows',
  'fact',
  'mother',
  'nature',
  'provide',
  'us',
  'automatically',
  'needs',
  'oh',
  'stop',
  'mother',
  'nature',
  'automatically',
  'providing',
  'us',
  'bounty',
  'ever',
  'since',
  'crawled',
  'primordial',
  'ooze',
  'produced',
  'produces',
  'year',
  'year',
  'last',
  'night',
  'example',
  'saw',
  'four',
  'deer',
  'crossing',
  'road',
  'pretty',
  'sight',
  'earlier',
  'time',
  'one',
  'would',
  'dinner',
  'ways',
  'go',
  'produced',
  'things',
  'first',
  'person',
  'produced',
  'one',
  'take',
  'gun',
  'person',
  'produced',
  'first',
  'way',
  'civilized',
  'method',
  'second',
  'savages',
  'arrange',
  'affairs',
  'american',
  'indians',
  'concept',
  'ownership',
  'property',
  'often',
  'freely',
  'gave',
  'supplies',
  'neighboring',
  'tribes',
  'trading',
  'food',
  'clothing',
  'weapons',
  'services',
  'native',
  'hawaiians',
  'like',
  'polynesian',
  'ancestors',
  'also',
  'could',
  'conceive',
  'idea',
  'shared',
  'many',
  'things',
  'islanders',
  'fact',
  'hiipoi',
  'hawaiian',
  'word',
  'cherish',
  'means',
  'sharing',
  'food',
  'great',
  'mahele',
  'islands',
  'divided',
  'less',
  'evenly',
  'rich',
  'poor',
  'white',
  'mans',
  'idea',
  'africa',
  'villagers',
  'often',
  'share',
  'tools',
  'crops',
  'clothing',
  'members',
  'village',
  'neighboring',
  'villages',
  'every',
  'anthropologist',
  'ever',
  'africa',
  'least',
  'one',
  'tale',
  'difficulties',
  'arising',
  'called',
  'theft',
  'scientists',
  'possessions',
  'two',
  'concepts',
  'visitors',
  'came',
  'along',
  'natives',
  'understanding',
  'people',
  'call',
  'savages',
  'hand',
  'car',
  'jackings',
  'muggings',
  'last',
  'year',
  'dov',
  'make',
  'comment',
  'thread',
  'think',
  'would',
  'behoove',
  'study',
  'facts',
  'garison'],
 ['achurist',
  'abyss',
  'breathing',
  'fluids',
  'nntp',
  'posting',
  'host',
  'cc_sysk',
  'organization',
  'coventry',
  'university',
  'lines',
  'article',
  'callec',
  'dradja',
  'writes',
  'bit',
  'nervous',
  'posting',
  'beacause',
  'begining',
  'stray',
  'fron',
  'topic',
  'space',
  'doesnt',
  'seem',
  'stop',
  'alot',
  'people',
  'talk',
  'breathing',
  'high',
  'pressures',
  'began',
  'think',
  'movie',
  'abyss',
  'remember',
  'movie',
  'one',
  'characters',
  'dove',
  'great',
  'depths',
  'wearing',
  'suit',
  'used',
  'fluid',
  'carries',
  'oxegen',
  'opposed',
  'sort',
  'gas',
  'heard',
  'mice',
  'breath',
  'fluid',
  'reason',
  'humans',
  'unable',
  'anyone',
  'know',
  'details',
  'gregson',
  'vaux',
  'believe',
  'reason',
  'lung',
  'diaphram',
  'gets',
  'tired',
  'pump',
  'liquid',
  'simply',
  'stops',
  'breathing',
  'minutes',
  'vehicle',
  'ready',
  'go',
  'better',
  'put',
  'hold',
  'else',
  'thats',
  'remember',
  'liquid',
  'several',
  'times',
  'dense',
  'gas',
  'nature',
  'think',
  'depending',
  'gas',
  'liquid',
  'comparision',
  'course',
  'acurist'],
 ['mark',
  'slagle',
  'nra',
  'fucks',
  'bigtime',
  'reply',
  'reply',
  'message',
  'mon',
  'apr',
  'gmt',
  'organization',
  'wouldnt',
  'ask',
  'youd',
  'seen',
  'desk',
  'lines',
  'article',
  'patrick',
  'hailey',
  'writes',
  'article',
  'writes',
  'article',
  'john',
  'de',
  'armond',
  'writes',
  'actually',
  'im',
  'lot',
  'familiar',
  'libbers',
  'care',
  'im',
  'bit',
  'hesitant',
  'continue',
  'thread',
  'brings',
  'back',
  'horrible',
  'memories',
  'first',
  'encounter',
  'libbers',
  'larouche',
  'branch',
  'made',
  'mistake',
  'buying',
  'connection',
  'lyndon',
  'larouche',
  'libertarian',
  'party',
  'pure',
  'product',
  'fertile',
  'imagination',
  'naw',
  'perhaps',
  'reads',
  'time',
  'magazine',
  'fair',
  'stretch',
  'anyones',
  'imagination',
  'expect',
  'attach',
  'credibility',
  'anything',
  'written',
  'time',
  'magazine',
  'past',
  'twenty',
  'years',
  'id',
  'imagine',
  'enquirer',
  'least',
  'gets',
  'names',
  'attached',
  'right',
  'body',
  'parts',
  'mark',
  'mark',
  'slagle',
  'po',
  'box',
  'sunnyvale',
  'ca',
  'usa'],
 ['stephan',
  'neuhaus',
  'hiwi',
  'mattern',
  'pgp',
  'general',
  'comments',
  'nntp',
  'posting',
  'host',
  'bloch',
  'informatik',
  'uni',
  'kl',
  'de',
  'organization',
  'university',
  'kaiserslautern',
  'germany',
  'lines',
  'stephan',
  'neuhaus',
  'hiwi',
  'mattern',
  'writes',
  'lots',
  'stuff',
  'hate',
  'follow',
  'posting',
  'perhaps',
  'clarify',
  'things',
  'wont',
  'get',
  'flamed',
  'first',
  'im',
  'talking',
  'factoring',
  'modulus',
  'breakthrough',
  'factoring',
  'really',
  'mean',
  'breakthrough',
  'cryptanalysis',
  'rsa',
  'know',
  'factoring',
  'breaking',
  'rsa',
  'proven',
  'equivalent',
  'damn',
  'convenient',
  'repeat',
  'every',
  'time',
  'also',
  'admit',
  'dont',
  'really',
  'know',
  'non',
  'group',
  'property',
  'cipher',
  'essential',
  'key',
  'chaining',
  'thought',
  'little',
  'cant',
  'find',
  'way',
  'cryptanalyst',
  'could',
  'exploit',
  'group',
  'structure',
  'course',
  'means',
  'nothing',
  'wrote',
  'please',
  'note',
  'long',
  'much',
  'harder',
  'factor',
  'rsa',
  'modulus',
  'generate',
  'increase',
  'computer',
  'speed',
  'alone',
  'keep',
  'key',
  'lengths',
  'modulus',
  'factoring',
  'lock',
  'step',
  'people',
  'simply',
  'start',
  'using',
  'longer',
  'moduli',
  'still',
  'safe',
  'meant',
  'long',
  'advantage',
  'cryptanalyst',
  'faster',
  'computer',
  'probably',
  'rsa',
  'long',
  'time',
  'come',
  'even',
  'bit',
  'moduli',
  'somehow',
  'could',
  'broken',
  'fast',
  'computers',
  'new',
  'algorithm',
  'people',
  'would',
  'simply',
  'longer',
  'moduli',
  'users',
  'cryptanalysts',
  'benefit',
  'better',
  'technology',
  'way',
  'hope',
  'keeps',
  'flames',
  'away',
  'fun',
  'stephan',
  'sig',
  'closed',
  'inventory',
  'please',
  'leave',
  'pickaxe',
  'outside',
  'pgp',
  'public',
  'key',
  'available',
  'request',
  'note',
  'expiration',
  'date'],
 ['greg',
  'earle',
  'colormaps',
  'window',
  'managers',
  'organization',
  'personal',
  'usenet',
  'site',
  'tujunga',
  'ca',
  'usa',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'isolar',
  'tujunga',
  'ca',
  'us',
  'keywords',
  'twm',
  'tvtwm',
  'article',
  'der',
  'mouse',
  'writes',
  'article',
  'david',
  'simon',
  'writes',
  'one',
  'please',
  'explain',
  'following',
  'piece',
  'code',
  'causes',
  'twm',
  'tvtwm',
  'dump',
  'core',
  'particular',
  'interested',
  'knowing',
  'whether',
  'behavior',
  'caused',
  'bug',
  'reasoning',
  'bug',
  'twm',
  'anything',
  'client',
  'causes',
  'twm',
  'dump',
  'core',
  'bug',
  'twm',
  'window',
  'managers',
  'never',
  'ever',
  'crash',
  'would',
  'true',
  'mit',
  'would',
  'fix',
  'twm',
  'crash',
  'bug',
  'could',
  'say',
  'ive',
  'almost',
  'unable',
  'crash',
  'either',
  'twm',
  'tvtwm',
  'would',
  'remarkable',
  'feat',
  'desirable',
  'boot',
  'mean',
  'bug',
  'reported',
  'oh',
  'zillion',
  'times',
  'servers',
  'hand',
  'want',
  'crash',
  'openwindows',
  'xnews',
  'server',
  'xbiff',
  'xrm',
  'xbiff',
  'shapewindow',
  'blammo',
  'greg',
  'earle',
  'phone',
  'fax',
  'internet',
  'uucp',
  'elroy',
  'isolar',
  'earle'],
 ['gary',
  'korenek',
  'hint',
  'vlb',
  'isa',
  'eisa',
  'motherboard',
  'keywords',
  'motherboard',
  'organization',
  'network',
  'management',
  'technology',
  'inc',
  'distribution',
  'usa',
  'lines',
  'article',
  'brian',
  'schaufenbuel',
  'writes',
  'looking',
  'buying',
  'companion',
  'brand',
  'vlb',
  'isa',
  'eisa',
  'motherboards',
  'hint',
  'chipsets',
  'anybody',
  'experience',
  'board',
  'good',
  'bad',
  'information',
  'would',
  'helpful',
  'thanks',
  'brian',
  'schaufenbuel',
  'believe',
  'vl',
  'eisa',
  'isa',
  'motherboard',
  'uses',
  'hint',
  'chipset',
  'limited',
  'bit',
  'eisa',
  'dma',
  'real',
  'eisa',
  'dma',
  'bit',
  'hint',
  'eisa',
  'dma',
  'mb',
  'ram',
  'addressing',
  'limitation',
  'isa',
  'reason',
  'would',
  'pass',
  'one',
  'hawk',
  'vl',
  'eisa',
  'isa',
  'look',
  'ing',
  'replace',
  'exactly',
  'reason',
  'please',
  'double',
  'check',
  'words',
  'call',
  'motherboard',
  'manufacturer',
  'ask',
  'motherboard',
  'supports',
  'true',
  'bit',
  'eisa',
  'dma',
  'limitation',
  'motherboard',
  'works',
  'quite',
  'well',
  'using',
  'mine',
  'dos',
  'windows',
  'unix',
  'also',
  'adaptec',
  'eisa',
  'scsi',
  'host',
  'adapter',
  'gary',
  'korenek',
  'network',
  'management',
  'technology',
  'incorporated',
  'sugar',
  'land',
  'texas'],
 ['alaa',
  'zeineldine',
  'hamas',
  'way',
  'death',
  'organization',
  'digital',
  'equipment',
  'corp',
  'newsreader',
  'tin',
  'pl',
  'lines',
  'naftaly',
  'stramer',
  'writes',
  'hamas',
  'way',
  'death',
  'following',
  'transcript',
  'recruitment',
  'training',
  'videotape',
  'made',
  'last',
  'summer',
  'qassam',
  'battalions',
  'military',
  'opposed',
  'israels',
  'many',
  'ways',
  'death',
  'using',
  'bombers',
  'artillery',
  'lebanese',
  'towns',
  'villages',
  'using',
  'fire',
  'arms',
  'lethal',
  'variants',
  'tear',
  'gas',
  'rubber',
  'coated',
  'bullets',
  'stone',
  'throwers',
  'using',
  'tanks',
  'anti',
  'tank',
  'missiles',
  'homes',
  'minute',
  'evacuation',
  'warning',
  'using',
  'shin',
  'bits',
  'reasonable',
  'physical',
  'pressure',
  'interrogation',
  'counting',
  'course',
  'past',
  'practices',
  'bombardment',
  'beirut',
  'bombing',
  'egyptian',
  'school',
  'bahr',
  'el',
  'bakar',
  'abu',
  'zabal',
  'factory',
  'downing',
  'libyan',
  'airliner',
  'full',
  'egyptian',
  'passengers',
  'near',
  'time',
  'overseeing',
  'maronite',
  'massacre',
  'sabra',
  'shatilla',
  'course',
  'besides',
  'numerous',
  'massacres',
  'irgun',
  'gangs',
  'british',
  'mandate',
  'period',
  'ironically',
  'op',
  'ed',
  'page',
  'nyt',
  'times',
  'naftaly',
  'copied',
  'article',
  'running',
  'another',
  'article',
  'next',
  'rosenthall',
  'blaming',
  'bosnian',
  'muslims',
  'genocide',
  'effectively',
  'saying',
  'stupid',
  'seek',
  'independence',
  'independence',
  'bring',
  'people',
  'slaughter',
  'else',
  'would',
  'one',
  'expect',
  'mr',
  'rosenthall',
  'never',
  'wasted',
  'chance',
  'bash',
  'arabs',
  'muslims',
  'alaa',
  'zeineldine'],
 ['aamir',
  'hafeez',
  'qazi',
  'cizeta',
  'organization',
  'university',
  'wisconsin',
  'milwaukee',
  'lines',
  'reply',
  'nntp',
  'posting',
  'host',
  'originator',
  'cs',
  'sbw',
  'writes',
  'anyone',
  'know',
  'happpened',
  'venerable',
  'claudio',
  'done',
  'enhancement',
  'pictures',
  'beast',
  'ftp',
  'somewhere',
  'thanks',
  'better',
  'seen',
  'rc',
  'model',
  'beauty',
  'autoweek',
  'article',
  'car',
  'within',
  'past',
  'six',
  'weeks',
  'issue',
  'diablo',
  'vt',
  'awd',
  'cover',
  'naturally',
  'dont',
  'remember',
  'date',
  'issue',
  'offhand',
  'check',
  'anyone',
  'interested',
  'aamir',
  'qazi',
  'aamir',
  'qazi',
  'care',
  'id',
  'rather',
  'watch',
  'drying',
  'paint'],
 ['steve',
  'lamont',
  'finding',
  'equally',
  'spaced',
  'points',
  'sphere',
  'organization',
  'university',
  'calif',
  'san',
  'diego',
  'microscopy',
  'imaging',
  'resource',
  'lines',
  'nntp',
  'posting',
  'host',
  'dim',
  'ucsd',
  'article',
  'thomas',
  'deweese',
  'writes',
  'hello',
  'know',
  'discussed',
  'time',
  'didnt',
  'need',
  'teselate',
  'sphere',
  'kind',
  'soul',
  'code',
  'alg',
  'finally',
  'decided',
  'upon',
  'best',
  'recall',
  'nice',
  'iterative',
  'subdivision',
  'meathod',
  'would',
  'appreciative',
  'one',
  'andrew',
  'graphics',
  'gems',
  'glassner',
  'got',
  'collegue',
  'mine',
  'think',
  'fiddled',
  'little',
  'bit',
  'make',
  'deal',
  'whatever',
  'bizarre',
  'problem',
  'working',
  'time',
  'known',
  'work',
  'spl',
  'spheres',
  'asg',
  'feb',
  'spl',
  'thu',
  'mar',
  'est',
  'include',
  'stdio',
  'include',
  'math',
  'define',
  'pi',
  'struct',
  'point_struct',
  'double',
  'static',
  'double',
  'radius',
  'static',
  'double',
  'xorg',
  'static',
  'double',
  'yorg',
  'static',
  'double',
  'zorg',
  'do_sphere',
  'freq',
  'double',
  'int',
  'freq',
  'double',
  'double',
  'double',
  'int',
  'pole',
  'double',
  'northy',
  'southy',
  'poley',
  'double',
  'rtheta',
  'rtheta',
  'ntheta',
  'ntheta',
  'magicangle',
  'double',
  'theta',
  'thetastart',
  'thisy',
  'den',
  'struct',
  'point_node',
  'pnp',
  'struct',
  'point_struct',
  'pt',
  'radius',
  'xorg',
  'yorg',
  'zorg',
  'north',
  'pole',
  'magicangle',
  'pi',
  'northy',
  'radius',
  'sin',
  'magicangle',
  'southy',
  'radius',
  'sin',
  'magicangle',
  'pole',
  'pole',
  'pole',
  'pole',
  'poley',
  'radius',
  'thisy',
  'northy',
  'thetastart',
  'else',
  'poley',
  'radius',
  'thisy',
  'southy',
  'thetastart',
  'theta',
  'thetastart',
  'theta',
  'theta',
  'rtheta',
  'theta',
  'pi',
  'rtheta',
  'theta',
  'pi',
  'poley',
  'radius',
  'cos',
  'rtheta',
  'thisy',
  'radius',
  'sin',
  'rtheta',
  'radius',
  'cos',
  'rtheta',
  'thisy',
  'radius',
  'sin',
  'rtheta',
  'pole',
  'make',
  'ring',
  'go',
  'way',
  'normals',
  'right',
  'pt',
  'pt',
  'pt',
  'pt',
  'pt',
  'pt',
  'den',
  'den',
  'sqrt',
  'den',
  'den',
  'radius',
  'den',
  'den',
  'den',
  'sqrt',
  'den',
  'den',
  'radius',
  'den',
  'den',
  'den',
  'sqrt',
  'den',
  'den',
  'radius',
  'den',
  'subdivide_tri',
  'freq',
  'body',
  'theta',
  'theta',
  'theta',
  'rtheta',
  'theta',
  'pi',
  'rtheta',
  'theta',
  'pi',
  'ntheta',
  'theta',
  'pi',
  'ntheta',
  'theta',
  'pi',
  'radius',
  'cos',
  'rtheta',
  'northy',
  'radius',
  'sin',
  'rtheta',
  'radius',
  'cos',
  'rtheta',
  'northy',
  'radius',
  'sin',
  'rtheta',
  'radius',
  'cos',
  'ntheta',
  'southy',
  'radius',
  'sin',
  'ntheta',
  'radius',
  'cos',
  'ntheta',
  'southy',
  'radius',
  'sin',
  'ntheta',
  'den',
  'den',
  'sqrt',
  'den',
  'den',
  'radius',
  'den',
  'den',
  'den',
  'sqrt',
  'den',
  'den',
  'radius',
  'den',
  'den',
  'den',
  'sqrt',
  'den',
  'den',
  'radius',
  'den',
  'den',
  'den',
  'sqrt',
  'den',
  'den',
  'radius',
  'den',
  'subdivide_tri',
  'freq',
  'subdivide_tri',
  'freq',
  'return',
  'define',
  'norm_pt',
  'register',
  'double',
  'sqrt',
  'subdivide_tri',
  'struct',
  'point_struct',
  'int',
  'struct',
  'point_struct',
  'struct',
  'point_struct',
  'double',
  'den',
  'den',
  'den',
  'sqrt',
  'den',
  'den',
  'radius',
  'den',
  'den',
  'den',
  'sqrt',
  'den',
  'den',
  'radius',
  'den',
  'den',
  'den',
  'sqrt',
  'den',
  'den',
  'radius',
  'den',
  'subdivide_tri',
  'subdivide_tri',
  'subdivide_tri',
  'subdivide_tri',
  'else',
  'norm_pt',
  'norm_pt',
  'norm_pt',
  'nothing',
  'special',
  'poly',
  'printf',
  'xorg',
  'yorg',
  'zorg',
  'printf',
  'xorg',
  'yorg',
  'zorg',
  'printf',
  'xorg',
  'yorg',
  'zorg',
  'return',
  'steve',
  'lamont',
  'sciviguy',
  'san',
  'diego',
  'microscopy',
  'imaging',
  'resource',
  'uc',
  'san',
  'diego',
  'la',
  'jolla',
  'ca',
  'car',
  'car',
  'bumper',
  'strip',
  'seen'],
 ['paul',
  'conditt',
  'christians',
  'aids',
  'organization',
  'applied',
  'research',
  'laboratories',
  'university',
  'texas',
  'austin',
  'lines',
  'article',
  'mark',
  'ashley',
  'writes',
  'article',
  'kevin',
  'davis',
  'writes',
  'many',
  'christians',
  'believe',
  'abstinence',
  'moment',
  'overcome',
  'desire',
  'compromise',
  'rationalize',
  'poor',
  'choices',
  'sin',
  'last',
  'week',
  'guilty',
  'anger',
  'jealousy',
  'whole',
  'mess',
  'stuff',
  'yet',
  'forgiven',
  'condemned',
  'suffer',
  'aids',
  'even',
  'suggest',
  'aids',
  'deserved',
  'ludicrous',
  'rules',
  'made',
  'point',
  'man',
  'stupid',
  'know',
  'better',
  'yet',
  'eventually',
  'man',
  'learns',
  'getting',
  'lesson',
  'experience',
  'yes',
  'important',
  'realize',
  'actions',
  'consequences',
  'rules',
  'made',
  'good',
  'suggest',
  'disease',
  'punishment',
  'certain',
  'types',
  'sin',
  'think',
  'taking',
  'things',
  'much',
  'far',
  'got',
  'kind',
  'mouth',
  'disease',
  'lying',
  'would',
  'us',
  'mouths',
  'left',
  'developed',
  'blindness',
  'every',
  'time',
  'lusted',
  'someone',
  'something',
  'dare',
  'say',
  'us',
  'would',
  'walking',
  'walls',
  'wonder',
  'aids',
  'would',
  'problem',
  'people',
  'didnt',
  'get',
  'involved',
  'deviant',
  'sexual',
  'behaviour',
  'certainly',
  'people',
  'received',
  'tainted',
  'blood',
  'blame',
  'goes',
  'show',
  'mankind',
  'affected',
  'actions',
  'yes',
  'sin',
  'terrible',
  'consequences',
  'need',
  'real',
  'careful',
  'saying',
  'consequences',
  'punishment',
  'sin',
  'jews',
  'jesuss',
  'time',
  'believed',
  'sickness',
  'result',
  'sin',
  'jesus',
  'healed',
  'blind',
  'man',
  'said',
  'man',
  'blind',
  'show',
  'glory',
  'god',
  'sin',
  'aids',
  'std',
  'punishment',
  'sexual',
  'sin',
  'diseases',
  'like',
  'cancer',
  'multiple',
  'sclerosis',
  'debilitating',
  'terrible',
  'aids',
  'yet',
  'usually',
  'linked',
  'specific',
  'behavior',
  'lifestyle',
  'addition',
  'imho',
  'forgiveness',
  'end',
  'things',
  'still',
  'matter',
  'atonement',
  'aids',
  'dont',
  'know',
  'atonement',
  'extremely',
  'important',
  'think',
  'youve',
  'missed',
  'mark',
  'far',
  'suggesting',
  'aids',
  'atonement',
  'sin',
  'atonement',
  'sin',
  'jesus',
  'christ',
  'period',
  'central',
  'message',
  'gospel',
  'perfect',
  'sacrifice',
  'required',
  'sins',
  'made',
  'lamb',
  'god',
  'sacrifice',
  'atoned',
  'sins',
  'past',
  'present',
  'future',
  'god',
  'require',
  'pennance',
  'sins',
  'require',
  'us',
  'come',
  'atonement',
  'graciously',
  'already',
  'done',
  'us',
  'suggest',
  'aids',
  'consequence',
  'atonement',
  'sins',
  'literally',
  'spitting',
  'sacrifice',
  'jesus',
  'made',
  'case',
  'couldnt',
  'tell',
  'get',
  'extremely',
  'angry',
  'upset',
  'see',
  'things',
  'like',
  'instead',
  'rationalizing',
  'fears',
  'phobias',
  'need',
  'reaching',
  'people',
  'aids',
  'socially',
  'unacceptable',
  'diseases',
  'whether',
  'got',
  'disease',
  'actions',
  'irrelevant',
  'still',
  'need',
  'jesus',
  'christ',
  'less',
  'ive',
  'said',
  'think',
  'good',
  'analogy',
  'people',
  'aids',
  'modern',
  'day',
  'lepers',
  'jesus',
  'healed',
  'many',
  'lepers',
  'also',
  'heal',
  'people',
  'aids',
  'maybe',
  'earth',
  'ultimate',
  'sense',
  'next',
  'door',
  'neighbor',
  'aids',
  'recently',
  'come',
  'much',
  'deeper',
  'committed',
  'relationship',
  'god',
  'theology',
  'isnt',
  'would',
  'want',
  'gods',
  'grace',
  'covers',
  'amazing',
  'thing',
  'gaining',
  'weight',
  'shes',
  'disease',
  'years',
  'health',
  'excellent',
  'apart',
  'occassional',
  'skin',
  'rashes',
  'attributes',
  'improvement',
  'health',
  'gods',
  'intervention',
  'life',
  'suggest',
  'disease',
  'kind',
  'punishment',
  'seems',
  'god',
  'glorified',
  'disease',
  'paul',
  'overstreet',
  'country',
  'singer',
  'good',
  'song',
  'title',
  'think',
  'applies',
  'us',
  'grace',
  'god',
  'go',
  'something',
  'like',
  'may',
  'experience',
  'accept',
  'gods',
  'grace',
  'mark',
  'ashley',
  'disclaimer',
  'opinions',
  'expressed',
  'uunet',
  'gcx',
  'marka',
  'reflect',
  'opinion',
  'policies',
  'lost',
  'los',
  'angelino',
  'harris',
  'corporation',
  'paul',
  'conditt',
  'internet',
  'applied',
  'research',
  'phone',
  'fax',
  'laboratories',
  'fedex',
  'burnet',
  'road',
  'austin',
  'texas',
  'university',
  'texas',
  'postal',
  'box',
  'austin',
  'texas',
  'austin',
  'texas',
  'wonderful',
  'place',
  'texas',
  'live',
  'ttttttttttttttt',
  'ttt',
  'ttt',
  'ttt',
  'ttt',
  'ttttttttttttt',
  'texas',
  'tech',
  'lady',
  'raiders',
  'tt',
  'ttt',
  'tt',
  'swc',
  'champions',
  'ttt',
  'ncaa',
  'national',
  'champions',
  'ttt',
  'ttttttt'],
 ['rich',
  'long',
  'icom',
  'sale',
  'reply',
  'organization',
  'university',
  'chicago',
  'computing',
  'organizations',
  'lines',
  'looking',
  'sell',
  'icom',
  'ic',
  'extras',
  'following',
  'cm',
  'battery',
  'hs',
  'headset',
  'hs',
  'sa',
  'vox',
  'unit',
  'cigarette',
  'adapter',
  'leather',
  'case',
  'bc',
  'wall',
  'charger',
  'ic',
  'bp',
  'battery',
  'also',
  'one',
  'needs',
  'new',
  'cell',
  'think',
  'good',
  'condition',
  'scratch',
  'front',
  'visible',
  'leather',
  'case',
  'interested',
  'make',
  'offer',
  'rich',
  'newsgrazer',
  'nextstep',
  'tm',
  'news',
  'reader',
  'posting',
  'uqr',
  'fq',
  'ae',
  'ec',
  'eqm',
  'vql',
  'tq',
  'rtq'],
 ['stuart',
  'munn',
  'macintosh',
  'lisa',
  'dot',
  'matrix',
  'parallel',
  'printer',
  'organization',
  'dept',
  'computing',
  'electrical',
  'engineering',
  'heriot',
  'watt',
  'university',
  'scotland',
  'lines',
  'got',
  'dot',
  'matrix',
  'printer',
  'came',
  'lisa',
  'think',
  'wish',
  'attach',
  'pc',
  'manual',
  'told',
  'sort',
  'itoh',
  'printer',
  'disguise',
  'anyone',
  'help',
  'manuals',
  'info',
  'codes',
  'send',
  'select',
  'fonts',
  'italics',
  'etc',
  'want',
  'write',
  'printer',
  'driver',
  'protext',
  'thanks',
  'advance',
  'stuart',
  'stuart',
  'munn',
  'dod',
  'heriot',
  'watt',
  'university',
  'sky',
  'black',
  'edinburgh',
  'therefore',
  'god',
  'st',
  'mirren',
  'scotland',
  'eh',
  'supporter',
  'fax',
  'god',
  'may',
  'harley',
  'mail',
  'janet',
  'pope',
  'rides',
  'guzzi'],
 ['richard',
  'ottolini',
  'images',
  'earth',
  'organization',
  'unocal',
  'corporation',
  'lines',
  'article',
  'louis',
  'van',
  'dompselaar',
  'writes',
  'rick',
  'turner',
  'writes',
  'look',
  'pub',
  'space',
  'directory',
  'ames',
  'arc',
  'nasa',
  'gov',
  'number',
  'earth',
  'images',
  'may',
  'hunt',
  'around',
  'subdirectories',
  'things',
  'tend',
  'filed',
  'mission',
  'ie',
  'apollo',
  'rather',
  'image',
  'dont',
  'need',
  'bit',
  'got',
  'colour',
  'amiga',
  'iff',
  'cloudless',
  'earth',
  'scanned',
  'looks',
  'okay',
  'mapped',
  'sphere',
  'mail',
  'ill',
  'send',
  'beware',
  'one',
  'copyrighted',
  'image',
  'company',
  'generated',
  'known',
  'protect',
  'copyright',
  'image',
  'took',
  'hundreds',
  'man',
  'hours',
  'build',
  'source',
  'satellite',
  'images',
  'unlikely',
  'competing',
  'images',
  'appear',
  'soon'],
 ['gregory',
  'greene',
  'ide',
  'vs',
  'scsi',
  'organization',
  'university',
  'new',
  'hampshire',
  'durham',
  'nh',
  'lines',
  'nntp',
  'posting',
  'host',
  'kepler',
  'unh',
  'first',
  'huge',
  'software',
  'packages',
  'files',
  'produce',
  'ide',
  'may',
  'longer',
  'sufficient',
  'mb',
  'limit',
  'micropolis',
  'seems',
  'broken',
  'limit',
  'ide',
  'meg',
  'meg',
  'hds',
  'available',
  'greg',
  'greene',
  'mark',
  'ashley',
  'disclaimer',
  'opinions',
  'harris',
  'lost',
  'los',
  'angelino'],
 ['david',
  'davidian',
  'accounts',
  'anti',
  'armenian',
  'human',
  'right',
  'violations',
  'azerbaijan',
  'summary',
  'prelude',
  'current',
  'events',
  'nagorno',
  'karabakh',
  'organization',
  'center',
  'regional',
  'studies',
  'lines',
  'accounts',
  'anti',
  'armenian',
  'human',
  'right',
  'violations',
  'azerbaijan',
  'prelude',
  'current',
  'events',
  'nagorno',
  'karabakh',
  'way',
  'driver',
  'says',
  'fact',
  'arent',
  'armenians',
  'left',
  'burned',
  'beat',
  'stabbed',
  'deposition',
  'vanya',
  'bagratovich',
  'bazian',
  'born',
  'foreman',
  'baku',
  'spetsmontazh',
  'administration',
  'umsmr',
  'resident',
  'building',
  'apartment',
  'block',
  'sumgait',
  'azerbaijan',
  'first',
  'days',
  'events',
  'th',
  'th',
  'february',
  'away',
  'business',
  'trip',
  'th',
  'got',
  'crew',
  'done',
  'paper',
  'work',
  'left',
  'zhdanov',
  'district',
  'thats',
  'azerbaijan',
  'near',
  'nagorno',
  'karabagh',
  'region',
  'th',
  'rumors',
  'started',
  'effect',
  'karabagh',
  'specifically',
  'stepanakert',
  'uprising',
  'taken',
  'place',
  'said',
  'uprising',
  'azerbaijani',
  'dont',
  'think',
  'really',
  'uprising',
  'demonstration',
  'unrest',
  'started',
  'several',
  'armenians',
  'living',
  'zhdanov',
  'district',
  'injured',
  'injured',
  'beaten',
  'even',
  'women',
  'said',
  'demonstrations',
  'live',
  'went',
  'karabagh',
  'demonstrate',
  'felt',
  'uneasy',
  'conversations',
  'armenians',
  'among',
  'local',
  'population',
  'armenians',
  'done',
  'armenians',
  'done',
  'right',
  'site',
  'attacked',
  'couple',
  'times',
  'kids',
  'well',
  'true',
  'guys',
  'crew',
  'wouldnt',
  'let',
  'come',
  'cables',
  'knives',
  'felt',
  'really',
  'bad',
  'didnt',
  'know',
  'go',
  'called',
  'home',
  'children',
  'tell',
  'theres',
  'unrest',
  'everywhere',
  'careful',
  'well',
  'project',
  'going',
  'told',
  'second',
  'secretary',
  'district',
  'party',
  'committee',
  'going',
  'said',
  'wanted',
  'take',
  'crew',
  'site',
  'wouldnt',
  'allow',
  'said',
  'nothings',
  'going',
  'happen',
  'weve',
  'entrusted',
  'matter',
  'police',
  'weve',
  'warned',
  'everyone',
  'district',
  'nothing',
  'happen',
  'well',
  'fact',
  'especially',
  'detail',
  'us',
  'policeman',
  'look',
  'knows',
  'local',
  'people',
  'would',
  'protect',
  'something',
  'happened',
  'man',
  'didnt',
  'leave',
  'alone',
  'five',
  'minutes',
  'work',
  'whole',
  'time',
  'afterward',
  'spent',
  'night',
  'us',
  'sense',
  'disquiet',
  'call',
  'home',
  'wife',
  'also',
  'tells',
  'situation',
  'tense',
  'careful',
  'finished',
  'job',
  'site',
  'left',
  'sumgait',
  'first',
  'thing',
  'morning',
  'th',
  'left',
  'guys',
  'warned',
  'told',
  'shouldnt',
  'tell',
  'anyone',
  'way',
  'armenian',
  'took',
  'someone',
  'elses',
  'business',
  'travel',
  'documents',
  'name',
  'zardali',
  'hid',
  'hid',
  'passport',
  'socks',
  'set',
  'baku',
  'guys',
  'bus',
  'sat',
  'behind',
  'sat',
  'front',
  'baku',
  'come',
  'said',
  'collect',
  'travel',
  'documents',
  'case',
  'turns',
  'knew',
  'happening',
  'sumgait',
  'arrive',
  'bus',
  'station',
  'tell',
  'city',
  'sumgait',
  'closed',
  'way',
  'get',
  'city',
  'closed',
  'buses',
  'arent',
  'running',
  'buses',
  'normally',
  'leave',
  'baku',
  'sumgait',
  'almost',
  'every',
  'two',
  'minutes',
  'suddenly',
  'buses',
  'well',
  'tried',
  'get',
  'via',
  'private',
  'drivers',
  'one',
  'man',
  'azerbaijani',
  'said',
  'lets',
  'go',
  'find',
  'way',
  'get',
  'found',
  'light',
  'transport',
  'vehicle',
  'arranged',
  'driver',
  'take',
  'us',
  'sumgait',
  'took',
  'us',
  'others',
  'said',
  'wouldnt',
  'go',
  'gave',
  'thousand',
  'rubles',
  'theyre',
  'burning',
  'city',
  'killing',
  'armenians',
  'isnt',
  'armenian',
  'left',
  'well',
  'got',
  'hold',
  'could',
  'still',
  'stand',
  'squared',
  'away',
  'four',
  'us',
  'got',
  'car',
  'set',
  'sumgait',
  'way',
  'driver',
  'says',
  'fact',
  'arent',
  'armenians',
  'left',
  'burned',
  'beat',
  'stabbed',
  'well',
  'silent',
  'whole',
  'way',
  'odd',
  'miles',
  'silent',
  'driver',
  'asks',
  'old',
  'old',
  'man',
  'wants',
  'know',
  'im',
  'quiet',
  'saying',
  'anything',
  'maybe',
  'means',
  'im',
  'armenian',
  'old',
  'asks',
  'say',
  'im',
  'im',
  'call',
  'old',
  'man',
  'say',
  'depends',
  'god',
  'persons',
  'life',
  'world',
  'different',
  'look',
  'much',
  'older',
  'years',
  'thats',
  'called',
  'old',
  'man',
  'well',
  'silent',
  'approaching',
  'city',
  'look',
  'see',
  'tanks',
  'around',
  'cordon',
  'get',
  'kavkaz',
  'store',
  'driver',
  'starts',
  'wave',
  'hand',
  'well',
  'waving',
  'hand',
  'start',
  'waving',
  'hands',
  'im',
  'sitting',
  'start',
  'waving',
  'hand',
  'realized',
  'sign',
  'meant',
  'armenians',
  'us',
  'look',
  'city',
  'crowd',
  'people',
  'walking',
  'middle',
  'street',
  'know',
  'theres',
  'traffic',
  'well',
  'probably',
  'scared',
  'stopped',
  'car',
  'people',
  'standing',
  'sidewalks',
  'armature',
  'shafts',
  'stones',
  'stopped',
  'us',
  'along',
  'way',
  'driver',
  'tells',
  'us',
  'know',
  'whos',
  'armenian',
  'whos',
  'armenians',
  'usually',
  'example',
  'im',
  'armenian',
  'speak',
  'language',
  'well',
  'well',
  'armenians',
  'usually',
  'pronounce',
  'azeri',
  'word',
  'nut',
  'little',
  'nut',
  'pundukh',
  'fundukh',
  'actually',
  'correct',
  'pronunciations',
  'different',
  'anyone',
  'says',
  'pundukh',
  'even',
  'theyre',
  'armenian',
  'immediately',
  'take',
  'start',
  'slash',
  'another',
  'one',
  'says',
  'car',
  'five',
  'people',
  'inside',
  'says',
  'started',
  'hitting',
  'side',
  'axe',
  'lit',
  'fire',
  'didnt',
  'let',
  'people',
  'says',
  'wouldnt',
  'let',
  'get',
  'car',
  'saw',
  'car',
  'driver',
  'says',
  'saw',
  'everything',
  'well',
  'often',
  'drives',
  'baku',
  'sumgait',
  'back',
  'stop',
  'us',
  'get',
  'car',
  'look',
  'theres',
  'short',
  'guy',
  'eyes',
  'gleaming',
  'armature',
  'shaft',
  'one',
  'hand',
  'stone',
  'asks',
  'guys',
  'nationality',
  'one',
  'one',
  'azerbaijani',
  'tell',
  'armenians',
  'come',
  'pulling',
  'things',
  'says',
  'maybe',
  'youre',
  'armenian',
  'old',
  'man',
  'azerbaijani',
  'say',
  'ashamed',
  'left',
  'turned',
  'left',
  'happened',
  'city',
  'fire',
  'steal',
  'children',
  'home',
  'stopped',
  'us',
  'entrance',
  'mir',
  'street',
  'thats',
  'kavkaz',
  'store',
  'three',
  'large',
  'story',
  'buildings',
  'thats',
  'beginning',
  'town',
  'saw',
  'burned',
  'automobile',
  'completely',
  'burned',
  'metal',
  'remained',
  'couldnt',
  'figure',
  'zhiguli',
  'zaporozhets',
  'later',
  'told',
  'zhiguli',
  'people',
  'completely',
  'incinerated',
  'nothing',
  'remained',
  'even',
  'traces',
  'driver',
  'told',
  'saw',
  'car',
  'car',
  'skeleton',
  'metallic',
  'carcass',
  'yards',
  'kavkaz',
  'store',
  'see',
  'military',
  'transport',
  'armored',
  'personnel',
  'carrier',
  'hatches',
  'closed',
  'people',
  'throwing',
  'armature',
  'shafts',
  'pieces',
  'iron',
  'crowd',
  'hear',
  'shots',
  'automatic',
  'fire',
  'true',
  'pistol',
  'shots',
  'several',
  'shots',
  'azerbaijanis',
  'crowded',
  'around',
  'personnel',
  'carrier',
  'someone',
  'crowd',
  'shooting',
  'apparently',
  'either',
  'wanted',
  'kill',
  'soldiers',
  'get',
  'machine',
  'gun',
  'something',
  'point',
  'one',
  'armored',
  'personnel',
  'carrier',
  'tanks',
  'outside',
  'city',
  'cordoning',
  'sumgait',
  'walked',
  'see',
  'two',
  'azerbaijanis',
  'going',
  'home',
  'plant',
  'tell',
  'gait',
  'theyre',
  'bandits',
  'theyre',
  'people',
  'walking',
  'home',
  'joined',
  'case',
  'something',
  'happened',
  'case',
  'someone',
  'came',
  'us',
  'asked',
  'questions',
  'either',
  'us',
  'would',
  'position',
  'answer',
  'see',
  'avoided',
  'large',
  'groups',
  'im',
  'local',
  'might',
  'quickly',
  'recognized',
  'tried',
  'keep',
  'distance',
  'walked',
  'fewer',
  'people',
  'well',
  'walked',
  'microdistrict',
  'across',
  'block',
  'cant',
  'get',
  'block',
  'walked',
  'fewer',
  'people',
  'get',
  'around',
  'well',
  'see',
  'tall',
  'guy',
  'people',
  'walking',
  'behind',
  'hes',
  'shouting',
  'megaphone',
  'comrades',
  'armenian',
  'azerbaijani',
  'war',
  'begun',
  'police',
  'megaphones',
  'like',
  'theyre',
  'talking',
  'walking',
  'around',
  'second',
  'microdistrict',
  'see',
  'theyre',
  'coming',
  'way',
  'turn',
  'behind',
  'building',
  'noticed',
  'walked',
  'around',
  'outside',
  'buildings',
  'inside',
  'microdistricts',
  'people',
  'standing',
  'every',
  'corner',
  'middles',
  'buildings',
  'edges',
  'cant',
  'say',
  'couldnt',
  'get',
  'close',
  'afraid',
  'important',
  'thing',
  'get',
  'away',
  'get',
  'home',
  'least',
  'find',
  'children',
  'alive',
  'april',
  'yerevan',
  'reference',
  'sumgait',
  'tragedy',
  'pogroms',
  'armenians',
  'soviet',
  'azerbaijan',
  'volume',
  'eyewitness',
  'accounts_',
  'edited',
  'samuel',
  'shahmuradian',
  'forward',
  'yelena',
  'bonner',
  'published',
  'aristide',
  'caratzas',
  'ny',
  'pages',
  'david',
  'davidian',
  'explain',
  'turkish',
  'troops',
  'center',
  'regional',
  'studies',
  'armenian',
  'border',
  'cant',
  'box',
  'even',
  'explain',
  'cambridge',
  'turkish',
  'mp',
  'march'],
 ['kershner',
  'wyatt',
  'quality',
  'catholic',
  'liturgy',
  'organization',
  'ncr',
  'corp',
  'columbia',
  'columbia',
  'sc',
  'lines',
  'article',
  'stephen',
  'creps',
  'writes',
  'article',
  'john',
  'murray',
  'writes',
  'palm',
  'sunday',
  'parish',
  'invited',
  'take',
  'role',
  'jesus',
  'passion',
  'declined',
  'participate',
  'last',
  'year',
  'liturgy',
  'meeting',
  'pointed',
  'crucify',
  'christ',
  'sins',
  'therefore',
  'appropriate',
  'retain',
  'role',
  'crowd',
  'avail',
  'musicians',
  'readers',
  'new',
  'things',
  'introduced',
  'course',
  'liturgy',
  'since',
  'one',
  'knows',
  'whats',
  'happening',
  'new',
  'things',
  'explained',
  'pretty',
  'soon',
  'instead',
  'lot',
  'mass',
  'sitting',
  'listening',
  'spacing',
  'case',
  'mass',
  'done',
  'mind',
  'lay',
  'blame',
  'liturgy',
  'committees',
  'made',
  'lay',
  'people',
  'aware',
  'lords',
  'presence',
  'former',
  'catholic',
  'active',
  'lutheran',
  'innovations',
  'mass',
  'made',
  'leave',
  'catholic',
  'church',
  'return',
  'traditional',
  'catholic',
  'chuch',
  'lutherans',
  'spent',
  'many',
  'years',
  'lector',
  'reading',
  'passion',
  'parts',
  'appropriate',
  'catholic',
  'church',
  'found',
  'meaningful',
  'lutheran',
  'parish',
  'instituted',
  'tenebrae',
  'service',
  'good',
  'friday',
  'lector',
  'paraphrased',
  'passion',
  'exceptional',
  'heard',
  'learned',
  'things',
  'previously',
  'overlooked',
  'gospels',
  'yet',
  'facts',
  'always',
  'matter',
  'interest',
  'pastor',
  'talking',
  'differences',
  'rc',
  'lutheran',
  'church',
  'holy',
  'week',
  'breakfast',
  'easter',
  'sunday',
  'member',
  'liturgy',
  'committee',
  'tell',
  'problem',
  'certain',
  'people',
  'dominating',
  'want',
  'try',
  'kinds',
  'innovations',
  'priests',
  'dont',
  'seem',
  'even',
  'make',
  'decisions',
  'many',
  'cases',
  'guess',
  'easier',
  'try',
  'something',
  'new',
  'refuse',
  'allow',
  'wife',
  'member',
  'liturgy',
  'committee',
  'family',
  'called',
  'music',
  'worship',
  'church',
  'pastor',
  'control',
  'committee',
  'listens',
  'carefully',
  'committees',
  'suggestions',
  'needs',
  'strong',
  'hand',
  'lead',
  'guide',
  'keep',
  'intent',
  'message',
  'clear',
  'strong',
  'lent',
  'rest',
  'liturgical',
  'year',
  'additional',
  'reason',
  'leaving',
  'catholic',
  'faith',
  'lack',
  'selfless',
  'spiritual',
  'guidance',
  'priests',
  'parishes',
  'aka',
  'wishy',
  'washy',
  'may',
  'gather',
  'comments',
  'feel',
  'important',
  'ir',
  'regardless',
  'denominational',
  'guidelines',
  'service',
  'mass',
  'promotes',
  'true',
  'reason',
  'gathered',
  'quite',
  'comfortable',
  'traditional',
  'mass',
  'receiving',
  'holy',
  'communion',
  'tongue',
  'sacrament',
  'penance',
  'reconciliation',
  'stations',
  'cross',
  'forth',
  'reason',
  'types',
  'masses',
  'parishes',
  'exist',
  'feelings',
  'shared',
  'everyone',
  'want',
  'people',
  'attend',
  'church',
  'find',
  'lord',
  'dont',
  'want',
  'attending',
  'show',
  'church',
  'works',
  'hard',
  'meaningful',
  'service',
  'lent',
  'wednesdays',
  'follow',
  'traditional',
  'lutheran',
  'book',
  'worship',
  'guidelines',
  'things',
  'changed',
  'omitted',
  'lent',
  'hymn',
  'praise',
  'noted',
  'aware',
  'reasons',
  'quite',
  'frankly',
  'hard',
  'non',
  'catholic',
  'go',
  'mass',
  'fit',
  'dear',
  'wife',
  'never',
  'could',
  'former',
  'methodist',
  'holy',
  'week',
  'masses',
  'vigils',
  'would',
  'intimidate',
  'daylights',
  'non',
  'catholic',
  'catholics',
  'beared',
  'far',
  'understand',
  'mean',
  'please',
  'keep',
  'mind',
  'gather',
  'together',
  'worship',
  'worry',
  'something',
  'done',
  'done',
  'something',
  'wrong',
  'feel',
  'needs',
  'addressing',
  'means',
  'talk',
  'priest',
  'pastor',
  'ever',
  'met',
  'one',
  'wouldnt',
  'listen',
  'provide',
  'spiritual',
  'guidance',
  'help',
  'differences',
  'catholic',
  'church',
  'much',
  'fundamental',
  'decision',
  'change',
  'faiths',
  'done',
  'prayer',
  'intervention',
  'sessions',
  'priests',
  'ministers',
  'christ',
  'kershner',
  'kershner',
  'wyatt',
  'opinions',
  'arent',
  'necessarily',
  'employers'],
 ['jody',
  'levine',
  'wanted',
  'advice',
  'new',
  'cylist',
  'organization',
  'ontario',
  'hydro',
  'research',
  'division',
  'lines',
  'article',
  'blaise',
  'cirelli',
  'writes',
  'im',
  'thinking',
  'buying',
  'motorcycle',
  'whenever',
  'tell',
  'people',
  'usually',
  'get',
  'answer',
  'like',
  'want',
  'brother',
  'sister',
  'cousin',
  'knows',
  'somebody',
  'motorcycle',
  'brain',
  'dead',
  'result',
  'accident',
  'question',
  'dangerous',
  'riding',
  'exactly',
  'dangerous',
  'looks',
  'youre',
  'hard',
  'see',
  'little',
  'protection',
  'keeping',
  'trouble',
  'means',
  'knowing',
  'limits',
  'keeping',
  'machine',
  'good',
  'shape',
  'able',
  'predict',
  'make',
  'every',
  'stupid',
  'move',
  'drivers',
  'make',
  'deal',
  'fun',
  'staying',
  'alive',
  'takes',
  'conscious',
  'effort',
  'ive',
  'bike',
  'like',
  'jody',
  'levine',
  'dod',
  'kv',
  'got',
  'pf',
  'ride',
  'toronto',
  'ontario',
  'canada'],
 ['charles',
  'kincy',
  'many',
  'homosexuals',
  'nntp',
  'posting',
  'host',
  'next',
  'cs',
  'umr',
  'distribution',
  'usa',
  'organization',
  'university',
  'missouri',
  'rolla',
  'rolla',
  'mo',
  'lines',
  'article',
  'theodore',
  'kaldis',
  'writes',
  'perhaps',
  'likely',
  'new',
  'study',
  'discrediting',
  'kinsey',
  'says',
  'wow',
  'mean',
  'homosexuals',
  'march',
  'washington',
  'interesting',
  'cpk',
  'days',
  'know',
  'wallet',
  'slick',
  'willys',
  'already',
  'got',
  'hand',
  'pocket',
  'im',
  'afraid',
  'might',
  'grab',
  'hold'],
 ['jeffrey',
  'clark',
  'ancient',
  'islamic',
  'rituals',
  'nntp',
  'posting',
  'host',
  'kraken',
  'itc',
  'gu',
  'au',
  'organization',
  'itc',
  'griffith',
  'university',
  'brisbane',
  'australia',
  'lines',
  'chris',
  'faehl',
  'writes',
  'reasonable',
  'trend',
  'towards',
  'obesity',
  'trend',
  'towards',
  'depression',
  'cant',
  'pick',
  'two',
  'favorite',
  'trends',
  'notice',
  'correlation',
  'make',
  'sweeping',
  'statement',
  'generality',
  'mean',
  'people',
  'mean',
  'valid',
  'reasonable',
  'thesis',
  'best',
  'gross',
  'push',
  'pull',
  'factors',
  'people',
  'experience',
  'agree',
  'reckon',
  'television',
  'increase',
  'fundamentalism',
  'think',
  'increase',
  'pre',
  'marital',
  'sex',
  'others',
  'thinks',
  'psychologists',
  'taken',
  'criminal',
  'justice',
  'system',
  'let',
  'violent',
  'criminals',
  'con',
  'letting',
  'streets',
  'others',
  'think',
  'increase',
  'designer',
  'drugs',
  'others',
  'think',
  'communist',
  'plot',
  'basically',
  'social',
  'interactions',
  'changing',
  'factors',
  'society',
  'far',
  'complicated',
  'us',
  'control',
  'hold',
  'panic',
  'handles',
  'hope',
  'heading',
  'soft',
  'landing',
  'one',
  'things',
  'sure',
  'depression',
  'destruction',
  'nuclear',
  'family',
  'due',
  'solely',
  'sex',
  'marriage',
  'jeff',
  'fred',
  'rice',
  'muslim',
  'giving',
  'point',
  'view'],
 ['terry',
  'thiel',
  'desktop',
  'rebuild',
  'datadesk',
  'keyboard',
  'organization',
  'university',
  'illinois',
  'dept',
  'comp',
  'sci',
  'urbana',
  'il',
  'lines',
  'michael',
  'smith',
  'writes',
  'similarly',
  'trained',
  'hold',
  'right',
  'hand',
  'pair',
  'command',
  'option',
  'desktop',
  'rebuilds',
  'tried',
  'right',
  'set',
  'didnt',
  'work',
  'im',
  'phone',
  'tech',
  'support',
  'right',
  'guys',
  'doesnt',
  'know',
  'desktop',
  'rebuild',
  'hes',
  'got',
  'holding',
  'someone',
  'else',
  'holding',
  'holding',
  'holding',
  'ok',
  'finally',
  'got',
  'back',
  'said',
  'basically',
  'work',
  'well',
  'doenst',
  'dont',
  'know',
  'guess',
  'go',
  'back',
  'macconnection',
  'ill',
  'buy',
  'something',
  'else',
  'ive',
  'got',
  'better',
  'things',
  'play',
  'musical',
  'keyboards',
  'terry'],
 ['anthony',
  'rose',
  'davidians',
  'compassion',
  'reply',
  'anthony',
  'rose',
  'organization',
  'amdahl',
  'corporation',
  'sunnyvale',
  'ca',
  'lines',
  'article',
  'kent',
  'sandvik',
  'writes',
  'highly',
  'christian',
  'religious',
  'order',
  'put',
  'fire',
  'house',
  'killing',
  'people',
  'inside',
  'im',
  'annoyed',
  'adults',
  'knew',
  'supposedly',
  'actions',
  'mostly',
  'angry',
  'fact',
  'people',
  'inside',
  'including',
  'mothers',
  'let',
  'children',
  'suffer',
  'die',
  'awful',
  'conditions',
  'considered',
  'religious',
  'following',
  'end',
  'im',
  'proud',
  'dont',
  'follow',
  'fanatical',
  'non',
  'compassionate',
  'religions',
  'might',
  'want',
  'die',
  'whatever',
  'purpose',
  'please',
  'spare',
  'innocent',
  'young',
  'ones',
  'nothing',
  'hard',
  'time',
  'understanding',
  'christianity',
  'knows',
  'word',
  'compassion',
  'christians',
  'think',
  'actions',
  'today',
  'would',
  'produce',
  'good',
  'picture',
  'religion',
  'kent',
  'alink',
  'ksand',
  'private',
  'activities',
  'net',
  'surely',
  'equating',
  'david',
  'koresh',
  'christianity',
  'two',
  'comparable'],
 ['brad',
  'davis',
  'sale',
  'mhz',
  'motherboard',
  'system',
  'megabytes',
  'summary',
  'dx',
  'system',
  'mb',
  'motherboard',
  'alone',
  'article',
  'pdxgate',
  'distribution',
  'organization',
  'portland',
  'state',
  'university',
  'computer',
  'science',
  'dept',
  'lines',
  'recently',
  'upgraded',
  'found',
  'dont',
  'really',
  'need',
  'old',
  'id',
  'prefer',
  'sell',
  'motherboard',
  'keep',
  'case',
  'etc',
  'ill',
  'offer',
  'motherboard',
  'case',
  'separately',
  'let',
  'decide',
  'im',
  'asking',
  'motherboard',
  'mhz',
  'dx',
  'sx',
  'megabytes',
  'bit',
  'ns',
  'memory',
  'ami',
  'bios',
  'based',
  'neat',
  'chipset',
  'means',
  'motherboard',
  'bus',
  'circuitry',
  'timings',
  'programmable',
  'bios',
  'advanced',
  'configuration',
  'menus',
  'let',
  'select',
  'system',
  'dma',
  'bus',
  'clock',
  'wait',
  'states',
  'command',
  'delays',
  'etc',
  'baby',
  'sized',
  'fits',
  'mini',
  'tower',
  'full',
  'sized',
  'case',
  'includes',
  'users',
  'guide',
  'copy',
  'bios',
  'reference',
  'manual',
  'could',
  'rest',
  'system',
  'full',
  'size',
  'case',
  'watt',
  'power',
  'supply',
  'serial',
  'parallel',
  'game',
  'ports',
  'mb',
  'hard',
  'disk',
  'mb',
  'floppy',
  'disk',
  'keyboard',
  'video',
  'card',
  'choice',
  'vga',
  'youre',
  'interested',
  'please',
  'give',
  'call',
  'system',
  'set',
  'house',
  'aloha',
  'youre',
  'welcome',
  'come',
  'test',
  'drive',
  'random',
  'drivel',
  'keyboard',
  'brad',
  'davis',
  'ncd',
  'inc',
  'beaverton',
  'network',
  'computing',
  'devices',
  'ncd',
  'pc',
  'xdivision',
  'office'],
 ['tom',
  'moonbase',
  'race',
  'added',
  'forwarded',
  'space',
  'digest',
  'organization',
  'via',
  'international',
  'space',
  'university',
  'original',
  'sender',
  'distribution',
  'sci',
  'lines',
  'gene',
  'wright',
  'continuin',
  'talk',
  'end',
  'space',
  'age',
  'complaints',
  'government',
  'large',
  'cost',
  'try',
  'something',
  'read',
  'might',
  'work',
  'announce',
  'reward',
  'billion',
  'would',
  'go',
  'first',
  'corporation',
  'successfully',
  'keeps',
  'least',
  'person',
  'alive',
  'moon',
  'year',
  'youd',
  'see',
  'inexpensive',
  'popular',
  'technologies',
  'begin',
  'developed',
  'thered',
  'different',
  'kind',
  'space',
  'race',
  'ill',
  'say',
  'imagine',
  'couple',
  'groups',
  'maybe',
  'landing',
  'weeks',
  'apart',
  'year',
  'mark',
  'starts',
  'coming',
  'first',
  'group',
  'isnt',
  'billion',
  'pretty',
  'good',
  'incentive',
  'take',
  'shot',
  'potential',
  'winner',
  'yeah',
  'thats',
  'shame',
  'team',
  'life',
  'support',
  'gave',
  'close',
  'deadline',
  'thanks',
  'billion',
  'hand',
  'apollo',
  'cost',
  'billion',
  'days',
  'weeks',
  'space',
  'dollars',
  'wont',
  'reward',
  'lot',
  'billion',
  'get',
  'takers',
  'tommy',
  'mac',
  'tom',
  'mcwilliams',
  'wk',
  'radius',
  'vision',
  'increases',
  'hm',
  'circumference',
  'mystery',
  'grows'],
 ['keith',
  'allan',
  'schneider',
  'morality',
  'political',
  'atheists',
  'organization',
  'california',
  'institute',
  'technology',
  'pasadena',
  'lines',
  'nntp',
  'posting',
  'host',
  'punisher',
  'caltech',
  'jon',
  'livesey',
  'writes',
  'dont',
  'expect',
  'lion',
  'know',
  'know',
  'anything',
  'kind',
  'fact',
  'dont',
  'evidence',
  'lions',
  'ever',
  'consider',
  'issues',
  'course',
  'dont',
  'think',
  'assign',
  'moral',
  'significance',
  'instinctive',
  'behaviour',
  'lions',
  'ive',
  'saying',
  'moral',
  'behavior',
  'likely',
  'null',
  'behavior',
  'doesnt',
  'take',
  'much',
  'work',
  'moral',
  'certainly',
  'immoral',
  'cases',
  'also',
  'ive',
  'said',
  'morality',
  'remnant',
  'evolution',
  'moral',
  'system',
  'based',
  'concepts',
  'well',
  'practiced',
  'animal',
  'kingdom',
  'basically',
  'saying',
  'think',
  'moral',
  'undefinable',
  'term',
  'moral',
  'systems',
  'dont',
  'exist',
  'cant',
  'agree',
  'definition',
  'terms',
  'hope',
  'discuss',
  'perfectly',
  'clear',
  'saying',
  'know',
  'moral',
  'system',
  'cant',
  'speak',
  'people',
  'doesnt',
  'get',
  'us',
  'anywhere',
  'particular',
  'beliefs',
  'irrelevant',
  'unless',
  'share',
  'discuss',
  'keith'],
 ['blaine',
  'gardner',
  'ducati',
  'opinions',
  'wanted',
  'nntp',
  'posting',
  'host',
  'organization',
  'evans',
  'sutherland',
  'computer',
  'corporation',
  'lines',
  'article',
  'albion',
  'bowers',
  'writes',
  'previous',
  'article',
  'blaine',
  'gardner',
  'says',
  'guess',
  'im',
  'touch',
  'exactly',
  'ducati',
  'twin',
  'desmo',
  'half',
  'twin',
  'balance',
  'weight',
  'nd',
  'cylinder',
  'would',
  'go',
  'second',
  'isnt',
  'bad',
  'sorry',
  'specific',
  'ss',
  'ran',
  'quater',
  'last',
  'small',
  'twin',
  'duc',
  'got',
  'us',
  'pantah',
  'based',
  'twin',
  'sl',
  'pantah',
  'ran',
  'creditable',
  'modern',
  'carbs',
  'put',
  'high',
  'btw',
  'fzr',
  'ran',
  'mid',
  'latest',
  'crop',
  'japanese',
  'run',
  'hard',
  'remember',
  'new',
  'goof',
  'clobber',
  'old',
  'kz',
  'handily',
  'top',
  'end',
  'roll',
  'technology',
  'stands',
  'still',
  'one',
  'hard',
  'remember',
  'bought',
  'gs',
  'new',
  'rd',
  'place',
  'speed',
  'wars',
  'behind',
  'cbx',
  'xs',
  'eleven',
  'mile',
  'horses',
  'wouldnt',
  'even',
  'make',
  'good',
  'days',
  'paid',
  'technology',
  'isnt',
  'thing',
  'thats',
  'changed',
  'course',
  'id',
  'still',
  'rather',
  'ride',
  'old',
  'gs',
  'across',
  'three',
  'states',
  'guess',
  'indication',
  'much',
  'things',
  'changed',
  'second',
  'didnt',
  'seem',
  'far',
  'line',
  'blaine',
  'gardner',
  'evans',
  'sutherland'],
 ['rick',
  'tait',
  'clipper',
  'nay',
  'sayers',
  'sound',
  'like',
  'nntp',
  'posting',
  'host',
  'organization',
  'network',
  'management',
  'systems',
  'bell',
  'northern',
  'research',
  'newsreader',
  'tin',
  'version',
  'pl',
  'distribution',
  'na',
  'lines',
  'nathaniel',
  'sammons',
  'wrote',
  'mon',
  'apr',
  'gmt',
  'gov',
  'establishes',
  'cryptography',
  'standard',
  'used',
  'everyone',
  'everyones',
  'personal',
  'key',
  'divided',
  'two',
  'segments',
  'stored',
  'two',
  'separate',
  'albeit',
  'easy',
  'find',
  'places',
  'key',
  'bits',
  'begin',
  'screwed',
  'pardon',
  'allusion',
  'affore',
  'mentioned',
  'article',
  'gov',
  'believe',
  'many',
  'others',
  'probably',
  'already',
  'cracking',
  'chips',
  'clipper',
  'chip',
  'made',
  'hell',
  'probably',
  'based',
  'encoder',
  'chip',
  'cracks',
  'way',
  'easier',
  'break',
  'code',
  'since',
  'classified',
  'algorythm',
  'one',
  'knows',
  'crack',
  'easily',
  'agreed',
  'agency',
  'nsa',
  'whoever',
  'would',
  'approve',
  'public',
  'release',
  'crypto',
  'system',
  'didnt',
  'already',
  'technical',
  'means',
  'know',
  'decrypt',
  'everything',
  'whim',
  'surely',
  'whole',
  'point',
  'madness',
  'make',
  'joe',
  'public',
  'think',
  'communications',
  'kept',
  'safe',
  'james',
  'bond',
  'nsa',
  'need',
  'full',
  'decrypted',
  'access',
  'someones',
  'communications',
  'thatll',
  'quite',
  'heist',
  'pull',
  'thought',
  'us',
  'government',
  'going',
  'release',
  'algorithm',
  'panel',
  'carefully',
  'chosen',
  'experts',
  'would',
  'study',
  'deeply',
  'report',
  'findings',
  'exactly',
  'people',
  'academics',
  'government',
  'sponsored',
  'researchers',
  'tiny',
  'toons',
  'one',
  'quite',
  'scared',
  'kind',
  'thing',
  'plan',
  'support',
  'organizations',
  'even',
  'fighting',
  'clipper',
  'chip',
  'way',
  'hope',
  'sort',
  'thing',
  'doesnt',
  'start',
  'filtering',
  'ears',
  'uk',
  'government',
  'european',
  'parliament',
  'gets',
  'wind',
  'well',
  'kiss',
  'goodbye',
  'form',
  'democracy',
  'europe',
  'want',
  'government',
  'able',
  'access',
  'even',
  'search',
  'warrant',
  'keys',
  'dont',
  'want',
  'keys',
  'bits',
  'long',
  'begin',
  'hallelujah',
  'rick',
  'tait',
  'bell',
  'northern',
  'research',
  'europe',
  'tel',
  'fax',
  'network',
  'management',
  'systems',
  'pgp',
  'public',
  'key',
  'available',
  'request',
  'new',
  'southgate',
  'london',
  'uk',
  'email'],
 ['nhl',
  'summary',
  'parse',
  'results',
  'games',
  'played',
  'sun',
  'april',
  'cook',
  'charlie',
  'organization',
  'university',
  'new',
  'brunswick',
  'lines',
  'ny',
  'rangers',
  'washington',
  'first',
  'period',
  'ny',
  'rangers',
  'graves',
  'turcotte',
  'lowe',
  'ny',
  'rangers',
  'gartner',
  'messier',
  'ny',
  'rangers',
  'olczyk',
  'messier',
  'amonte',
  'second',
  'period',
  'ny',
  'rangers',
  'beukeboom',
  'unassisted',
  'third',
  'period',
  'scoring',
  'ny',
  'rangers',
  'power',
  'play',
  'scorer',
  'pts',
  'amonte',
  'beukeboom',
  'gartner',
  'graves',
  'lowe',
  'messier',
  'olczyk',
  'turcotte',
  'washington',
  'power',
  'play',
  'scoring',
  'boston',
  'buffalo',
  'first',
  'period',
  'scoring',
  'second',
  'period',
  'boston',
  'leach',
  'wesley',
  'oates',
  'pp',
  'boston',
  'oates',
  'douris',
  'poulin',
  'third',
  'period',
  'boston',
  'douris',
  'bourque',
  'sh',
  'boston',
  'power',
  'play',
  'special',
  'goals',
  'pp',
  'sh',
  'total',
  'scorer',
  'pts',
  'bourque',
  'douris',
  'leach',
  'oates',
  'poulin',
  'wesley',
  'buffalo',
  'power',
  'play',
  'scoring',
  'pittsburgh',
  'new',
  'jersey',
  'first',
  'period',
  'pittsburgh',
  'francis',
  'lemieux',
  'tocchet',
  'pp',
  'second',
  'period',
  'pittsburgh',
  'murphy',
  'francis',
  'mullen',
  'sh',
  'pittsburgh',
  'francis',
  'tocchet',
  'lemieux',
  'pp',
  'pittsburgh',
  'jagr',
  'tocchet',
  'francis',
  'pp',
  'new',
  'jersey',
  'zelepukin',
  'driver',
  'lemieux',
  'pp',
  'third',
  'period',
  'new',
  'jersey',
  'maclean',
  'nicholls',
  'stevens',
  'pittsburgh',
  'lemieux',
  'jagr',
  'en',
  'pittsburgh',
  'power',
  'play',
  'special',
  'goals',
  'pp',
  'sh',
  'en',
  'total',
  'scorer',
  'pts',
  'francis',
  'jagr',
  'lemieux',
  'mullen',
  'murphy',
  'tocchet',
  'new',
  'jersey',
  'power',
  'play',
  'scorer',
  'pts',
  'driver',
  'lemieux',
  'maclean',
  'nicholls',
  'stevens',
  'zelepukin',
  'toronto',
  'philadelphia',
  'first',
  'period',
  'philadelphia',
  'dineen',
  'beranek',
  'hawgood',
  'philadelphia',
  'mcgill',
  'lindros',
  'recchi',
  'second',
  'period',
  'philadelphia',
  'lindros',
  'recchi',
  'galley',
  'third',
  'period',
  'philadelphia',
  'dineen',
  'hawgood',
  'galley',
  'pp',
  'philadelphia',
  'power',
  'play',
  'scorer',
  'pts',
  'beranek',
  'dineen',
  'galley',
  'hawgood',
  'lindros',
  'mcgill',
  'recchi',
  'toronto',
  'power',
  'play',
  'scoring',
  'vancouver',
  'ottawa',
  'first',
  'period',
  'scoring',
  'second',
  'period',
  'vancouver',
  'plavsic',
  'craven',
  'vancouver',
  'momesso',
  'nedved',
  'plavsic',
  'pp',
  'third',
  'period',
  'vancouver',
  'bure',
  'unassisted',
  'vancouver',
  'power',
  'play',
  'scorer',
  'pts',
  'bure',
  'craven',
  'momesso',
  'nedved',
  'plavsic',
  'ottawa',
  'power',
  'play',
  'scoring',
  'st',
  'louis',
  'chicago',
  'first',
  'period',
  'chicago',
  'sutter',
  'murphy',
  'chelios',
  'pp',
  'st',
  'louis',
  'janney',
  'shanahan',
  'brown',
  'pp',
  'chicago',
  'roenick',
  'chelios',
  'smith',
  'pp',
  'chicago',
  'roenick',
  'sutter',
  'chelios',
  'pp',
  'chicago',
  'graham',
  'gilbert',
  'ruuttu',
  'st',
  'louis',
  'janney',
  'shanahan',
  'crossman',
  'second',
  'period',
  'scoring',
  'third',
  'period',
  'chicago',
  'murphy',
  'chelios',
  'belfour',
  'st',
  'louis',
  'miller',
  'hull',
  'janney',
  'pp',
  'st',
  'louis',
  'janney',
  'miller',
  'shanahan',
  'chicago',
  'power',
  'play',
  'scorer',
  'pts',
  'belfour',
  'chelios',
  'gilbert',
  'graham',
  'murphy',
  'roenick',
  'ruuttu',
  'smith',
  'sutter',
  'st',
  'louis',
  'power',
  'play',
  'scorer',
  'pts',
  'brown',
  'crossman',
  'hull',
  'janney',
  'miller',
  'shanahan',
  'calgary',
  'san',
  'jose',
  'first',
  'period',
  'calgary',
  'otto',
  'yawney',
  'ashton',
  'pp',
  'san',
  'jose',
  'odgers',
  'pederson',
  'wilkinson',
  'second',
  'period',
  'calgary',
  'nieuwendyk',
  'johansson',
  'reese',
  'calgary',
  'reichel',
  'skrudland',
  'berube',
  'third',
  'period',
  'calgary',
  'ashton',
  'otto',
  'fleury',
  'san',
  'jose',
  'pederson',
  'odgers',
  'evason',
  'san',
  'jose',
  'odgers',
  'gaudreau',
  'evason',
  'pp',
  'calgary',
  'power',
  'play',
  'scorer',
  'pts',
  'ashton',
  'berube',
  'fleury',
  'johansson',
  'nieuwendyk',
  'otto',
  'reese',
  'reichel',
  'skrudland',
  'yawney',
  'san',
  'jose',
  'power',
  'play',
  'scorer',
  'pts',
  'evason',
  'gaudreau',
  'odgers',
  'pederson',
  'wilkinson'],
 ['arno',
  'schaefer',
  'cview',
  'answers',
  'nntp',
  'posting',
  'host',
  'silene',
  'organization',
  'institut',
  'imag',
  'grenoble',
  'france',
  'lines',
  'article',
  'bryan',
  'woodworth',
  'writes',
  'sean',
  'gum',
  'writes',
  'stupid',
  'question',
  'cview',
  'run',
  'get',
  'still',
  'need',
  'gif',
  'viewer',
  'linux',
  'without',
  'windows',
  'thanks',
  'ho',
  'boy',
  'way',
  'hell',
  'going',
  'able',
  'view',
  'gifs',
  'graphics',
  'linux',
  'without',
  'windows',
  'love',
  'linux',
  'easy',
  'learn',
  'want',
  'text',
  'okay',
  'linux',
  'want',
  'text',
  'graphics',
  'linux',
  'windows',
  'simple',
  'painless',
  'required',
  'windows',
  'want',
  'graphics',
  'includes',
  'fancy',
  'word',
  'processors',
  'like',
  'doc',
  'image',
  'viewers',
  'like',
  'xv',
  'etc',
  'sorry',
  'bryan',
  'quite',
  'correct',
  'remember',
  'vgalib',
  'package',
  'comes',
  'linux',
  'sls',
  'switch',
  'vga',
  'mode',
  'without',
  'xwindows',
  'least',
  'possible',
  'write',
  'gif',
  'viewer',
  'linux',
  'however',
  'dont',
  'think',
  'exists',
  'similar',
  'svga',
  'package',
  'viewing',
  'gifs',
  'nice',
  'best',
  'regards',
  'arno',
  'arno',
  'schaefer',
  'ensimag',
  'annee',
  'email',
  'tel'],
 ['timothy',
  'neto',
  'server',
  'multi',
  'screen',
  'organization',
  'lines',
  'rainer',
  'hochreiter',
  'writes',
  'hi',
  'xperts',
  'simple',
  'questions',
  'ive',
  'seen',
  'lot',
  'different',
  'terms',
  'seem',
  'mean',
  'thing',
  'give',
  'exact',
  'definition',
  'terms',
  'mean',
  'multi',
  'screen',
  'multi',
  'headed',
  'multi',
  'display',
  'server',
  'zaphod',
  'mode',
  'limit',
  'many',
  'screens',
  'displays',
  'single',
  'server',
  'handle',
  'articel',
  'read',
  'something',
  'upper',
  'limit',
  'capability',
  'called',
  'want',
  'move',
  'cursor',
  'one',
  'screen',
  'display',
  'another',
  'hints',
  'welcome',
  'thanks',
  'rainer',
  'rainer',
  'hochreiter',
  'telephone',
  'elin',
  'gesmbh',
  'telefax',
  'penzingerstr',
  'wien',
  'austria',
  'europe',
  'mail',
  'many',
  'clients',
  'may',
  'display',
  'server',
  'believe',
  'limit',
  'would',
  'much',
  'memory',
  'available',
  'server',
  'allocated',
  'server',
  'indecision',
  'key',
  'timothy',
  'neto',
  'flexibility',
  'cant',
  'ts',
  'gadget',
  'widget',
  'works',
  'mail',
  'god',
  'flight',
  'systems',
  'lab',
  'boeing',
  'comm',
  'aircraft',
  'ideas',
  'boeings',
  'internet'],
 ['edward',
  'ted',
  'fischer',
  'pleasant',
  'yankee',
  'surprises',
  'organization',
  'cornell',
  'univ',
  'cs',
  'dept',
  'ithaca',
  'ny',
  'lines',
  'article',
  'lurie',
  'liberalizer',
  'writes',
  'actually',
  'kind',
  'liked',
  'abott',
  'trade',
  'trade',
  'rookie',
  'year',
  'snow',
  'mattingly',
  'first',
  'another',
  'years',
  'bother',
  'id',
  'willing',
  'make',
  'two',
  'wagers',
  'snow',
  'doesnt',
  'win',
  'roy',
  'mattingly',
  'baseball',
  'within',
  'five',
  'years',
  'im',
  'skeptical',
  'first',
  'dont',
  'think',
  'snow',
  'good',
  'player',
  'losing',
  'team',
  'im',
  'skeptical',
  'second',
  'back',
  'mattingly',
  'year',
  'many',
  'players',
  'play',
  'many',
  'didnt',
  'chronic',
  'back',
  'problems',
  'could',
  'wrong',
  'either',
  'think',
  'thats',
  'smart',
  'way',
  'bet',
  'cheers',
  'valentine'],
 ['nc',
  'vs',
  'hunt',
  'marine',
  'gay',
  'bashing',
  'wilmington',
  'nc',
  'verdict',
  'organization',
  'ohio',
  'state',
  'university',
  'department',
  'physics',
  'lines',
  'article',
  'william',
  'december',
  'starr',
  'writes',
  'article',
  'thomas',
  'farrell',
  'said',
  'good',
  'case',
  'king',
  'good',
  'case',
  'defense',
  'lawyer',
  'asked',
  'victim',
  'questions',
  'like',
  'kind',
  'sexual',
  'perversions',
  'participate',
  'think',
  'made',
  'good',
  'case',
  'speaking',
  'someone',
  'whos',
  'six',
  'weeks',
  'tuition',
  'bill',
  'away',
  'becoming',
  'unemployed',
  'slob',
  'law',
  'degree',
  'id',
  'really',
  'like',
  'see',
  'transcript',
  'trial',
  'id',
  'especially',
  'like',
  'know',
  'happened',
  'immediately',
  'defense',
  'attorney',
  'asked',
  'question',
  'assuming',
  'reports',
  'accurate',
  'im',
  'accusing',
  'tom',
  'farrell',
  'making',
  'anything',
  'sort',
  'case',
  'spawns',
  'garbled',
  'misquotes',
  'false',
  'rumors',
  'urban',
  'legends',
  'like',
  'tribbles',
  'itd',
  'nice',
  'think',
  'prosecutor',
  'objected',
  'irrelevant',
  'prejudicial',
  'inflammatory',
  'take',
  'pick',
  'judge',
  'upheld',
  'objection',
  'hear',
  'question',
  'asked',
  'radio',
  'news',
  'update',
  'case',
  'talking',
  'ongoing',
  'trial',
  'audio',
  'clips',
  'immediately',
  'defense',
  'attorney',
  'asked',
  'question',
  'objection',
  'heard',
  'background',
  'clip',
  'ended',
  'point',
  'dont',
  'know',
  'objection',
  'upheld',
  'cant',
  'imagine',
  'nc',
  'bad',
  'arresting',
  'officer',
  'said',
  'bastards',
  'told',
  'purpose',
  'hoped',
  'victim',
  'would',
  'die',
  'think',
  'defense',
  'made',
  'good',
  'case',
  'wonder',
  'losing',
  'aparently',
  'trying',
  'win',
  'id',
  'like',
  'see',
  'transcript',
  'id',
  'read',
  'latter',
  'bit',
  'news',
  'media',
  'arresting',
  'officer',
  'testifying',
  'one',
  'defendants',
  'calmly',
  'asked',
  'condition',
  'homo',
  'said',
  'hoped',
  'hed',
  'die',
  'first',
  'ive',
  'heard',
  'officer',
  'testifying',
  'one',
  'defendants',
  'actually',
  'said',
  'anything',
  'let',
  'alone',
  'purpose',
  'didnt',
  'hear',
  'audio',
  'clip',
  'heard',
  'reported',
  'number',
  'times',
  'news',
  'stories',
  'trial',
  'purpose',
  'thing',
  'stretching',
  'think',
  'something',
  'like',
  'coming',
  'somebody',
  'else',
  'remebers',
  'better',
  'second',
  'point',
  'feel',
  'free',
  'clarify',
  'frank',
  'frank',
  'chloupek',
  'department',
  'physics',
  'ohio',
  'state',
  'university',
  'ohio',
  'state',
  'university',
  'one',
  'hard',
  'fast',
  'rule',
  'place',
  'party',
  'somebody',
  'elses',
  'place',
  'orourke'],
 ['lcd',
  'overhead',
  'projectors',
  'jan',
  'vandenbrande',
  'distribution',
  'na',
  'organization',
  'division',
  'eds',
  'cypress',
  'ca',
  'nntp',
  'posting',
  'host',
  'lines',
  'looking',
  'one',
  'color',
  'lcd',
  'screens',
  'place',
  'overhead',
  'projector',
  'control',
  'presentation',
  'mac',
  'recommend',
  'particular',
  'brand',
  'price',
  'talking',
  'thanks',
  'jan',
  'vandenbrande',
  'new',
  'address',
  'school',
  'address',
  'forwards',
  'uucp',
  'uunet',
  'uupsi',
  'ug',
  'jan'],
 ['yearsley',
  'change',
  'licensed',
  'data',
  'windows',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'seq',
  'cc',
  'keele',
  'ac',
  'uk',
  'newsreader',
  'tin',
  'version',
  'pl',
  'write',
  'licensed',
  'cant',
  'change',
  'name',
  'underneth',
  'think',
  'wish',
  'change',
  'would',
  'pirate',
  'going',
  'promote',
  'computer',
  'supplied',
  'name',
  'interesting',
  'mix',
  'upper',
  'lower',
  'case',
  'workplace',
  'mis',
  'typed',
  'im',
  'getting',
  'fed',
  'cmyearsley',
  'keel',
  'unversity',
  'took',
  'phone',
  'calls',
  'supplier',
  'get',
  'computer',
  'working',
  'really',
  'cant',
  'face',
  'tackling',
  'chris'],
 ['bob',
  'sarver',
  'question',
  'popular',
  'morality',
  'organization',
  'microsoft',
  'corp',
  'distribution',
  'usa',
  'lines',
  'article',
  'bob',
  'sarver',
  'writes',
  'would',
  'immoral',
  'hurt',
  'someone',
  'else',
  'wouldnt',
  'want',
  'happen',
  'hudson',
  'make',
  'something',
  'immoral',
  'consistent',
  'moral',
  'systems',
  'must',
  'consistent',
  'person',
  'thinks',
  'inflict',
  'pain',
  'others',
  'doesnt',
  'want',
  'inflicted',
  'upon',
  'double',
  'standard',
  'double',
  'standards',
  'violation',
  'moral',
  'system',
  'morality',
  'defines',
  'interact',
  'people',
  'rules',
  'guide',
  'daily',
  'affairs',
  'conduct',
  'towards',
  'fellow',
  'man',
  'realizing',
  'dont',
  'like',
  'pain',
  'also',
  'realize',
  'people',
  'dont',
  'like',
  'either',
  'hudson',
  'course',
  'dont',
  'like',
  'pain',
  'dont',
  'like',
  'brussel',
  'sprouts',
  'brussel',
  'sprouts',
  'immoral',
  'pain',
  'isnt',
  'immoral',
  'stupid',
  'pain',
  'physiological',
  'reaction',
  'immoral',
  'subjecting',
  'unwilling',
  'individuals',
  'pain',
  'brussel',
  'sprouts',
  'matter',
  'hudson',
  'immoral',
  'produce',
  'chemical',
  'reactions',
  'test',
  'tube',
  'isnt',
  'chemical',
  'reaction',
  'wrong',
  'bozo',
  'making',
  'human',
  'undergo',
  'effects',
  'chemical',
  'reaction',
  'sorry',
  'cute',
  'little',
  'analogy',
  'didnt',
  'survive',
  'long',
  'scrutiny',
  'hudson',
  'would',
  'wrong',
  'make',
  'humans',
  'undergo',
  'effects',
  'reactions',
  'humans',
  'composed',
  'matter',
  'humans',
  'composed',
  'isnt',
  'qualifying',
  'criteria',
  'whether',
  'something',
  'would',
  'wrong',
  'hudson',
  'wrong',
  'make',
  'matter',
  'undergo',
  'chemical',
  'reactions',
  'yes',
  'sentient',
  'matter',
  'nature',
  'sentient',
  'force',
  'choice',
  'involved',
  'therefore',
  'question',
  'morality',
  'hudson',
  'actually',
  'heard',
  'geologist',
  'entertain',
  'notion',
  'matter',
  'sentient',
  'force',
  'fine',
  'also',
  'heard',
  'government',
  'encoding',
  'dna',
  'new',
  'race',
  'superhumans',
  'ordinary',
  'drinking',
  'water',
  'whats',
  'point',
  'hudson',
  'humans',
  'made',
  'matter',
  'choices',
  'also',
  'chemical',
  'reactions',
  'choice',
  'important',
  'issue',
  'case',
  'god',
  'idea',
  'contained',
  'minds',
  'people',
  'formed',
  'matter',
  'printed',
  'pages',
  'also',
  'formed',
  'matter',
  'really',
  'exist',
  'argumentem',
  'ad',
  'absurdium',
  'well',
  'wont',
  'prove',
  'points',
  'got',
  'anything',
  'relevant',
  'want',
  'talk',
  'playing',
  'cute',
  'little',
  'games'],
 ['brandon',
  'ray',
  'statement',
  'sarah',
  'brady',
  'regarding',
  'texas',
  'state',
  'carrying',
  'concealed',
  'legislation',
  'article',
  'usenet',
  'psstg',
  'bbe',
  'reply',
  'brandon',
  'ray',
  'organization',
  'case',
  'western',
  'reserve',
  'university',
  'cleveland',
  'ohio',
  'usa',
  'lines',
  'nntp',
  'posting',
  'host',
  'hela',
  'ins',
  'cwru',
  'previous',
  'article',
  'nigel',
  'allen',
  'says',
  'press',
  'release',
  'handgun',
  'control',
  'inc',
  'statement',
  'sarah',
  'brady',
  'regarding',
  'texas',
  'state',
  'carrying',
  'concealed',
  'legislation',
  'state',
  'desk',
  'contact',
  'susan',
  'whitmore',
  'handgun',
  'control',
  'inc',
  'washington',
  'march',
  'following',
  'statement',
  'sarah',
  'brady',
  'regarding',
  'texas',
  'state',
  'carrying',
  'concealed',
  'legislation',
  'handful',
  'lawmakers',
  'austin',
  'today',
  'told',
  'public',
  'safety',
  'less',
  'importance',
  'interests',
  'national',
  'rifle',
  'association',
  'action',
  'comes',
  'local',
  'state',
  'federal',
  'law',
  'enforcement',
  'officials',
  'continue',
  'stand',
  'religious',
  'cult',
  'highlighted',
  'need',
  'tougher',
  'gun',
  'laws',
  'weaker',
  'ones',
  'like',
  'carry',
  'concealed',
  'bill',
  'handful',
  'anti',
  'gun',
  'zealots',
  'telling',
  'public',
  'right',
  'self',
  'defense',
  'less',
  'importance',
  'interests',
  'handgun',
  'control',
  'inc',
  'action',
  'comes',
  'local',
  'state',
  'federal',
  'law',
  'enforcement',
  'officials',
  'continue',
  'assault',
  'branch',
  'davidian',
  'compound',
  'assault',
  'already',
  'resulted',
  'death',
  'one',
  'two',
  'year',
  'old',
  'child',
  'hands',
  'federal',
  'agents',
  'highlighted',
  'need',
  'citizens',
  'able',
  'defend',
  'children',
  'excesses',
  'government',
  'suggestion',
  'proponents',
  'bill',
  'help',
  'reduce',
  'crime',
  'distortion',
  'facts',
  'best',
  'called',
  'crime',
  'fighting',
  'law',
  'resulted',
  'percent',
  'increase',
  'violent',
  'crime',
  'state',
  'florida',
  'never',
  'heard',
  'law',
  'enforcement',
  'officials',
  'bragging',
  'guns',
  'streets',
  'way',
  'reduce',
  'crime',
  'suggestion',
  'opponents',
  'bill',
  'increase',
  'crime',
  'distortion',
  'facts',
  'best',
  'aggressive',
  'outreach',
  'officials',
  'central',
  'florida',
  'train',
  'arm',
  'women',
  'led',
  'dramatic',
  'drop',
  'level',
  'assault',
  'rape',
  'area',
  'course',
  'program',
  'rare',
  'gem',
  'many',
  'law',
  'enforcement',
  'officials',
  'apparently',
  'believe',
  'unarmed',
  'citizenry',
  'easier',
  'control',
  'thus',
  'favor',
  'tighter',
  'restrictions',
  'vote',
  'today',
  'insult',
  'law',
  'enforcement',
  'officials',
  'putting',
  'lives',
  'line',
  'every',
  'day',
  'end',
  'standoff',
  'waco',
  'entire',
  'country',
  'knows',
  'easy',
  'individual',
  'bent',
  'destruction',
  'amass',
  'arsenal',
  'weapons',
  'texas',
  'lawmakers',
  'voted',
  'concealed',
  'handgun',
  'bill',
  'shown',
  'total',
  'disregard',
  'law',
  'officials',
  'front',
  'lines',
  'families',
  'fallen',
  'vote',
  'today',
  'tribute',
  'good',
  'sense',
  'public',
  'large',
  'putting',
  'lives',
  'line',
  'every',
  'day',
  'go',
  'lawful',
  'affairs',
  'entire',
  'country',
  'knows',
  'vulnerable',
  'average',
  'citizen',
  'attacks',
  'criminals',
  'armed',
  'assault',
  'police',
  'texas',
  'lawmakers',
  'voted',
  'concealed',
  'handgun',
  'bill',
  'shown',
  'total',
  'understanding',
  'innocent',
  'law',
  'abiding',
  'citizens',
  'front',
  'lines',
  'families',
  'fallen',
  'urge',
  'house',
  'representatives',
  'listen',
  'percent',
  'texans',
  'oppose',
  'measure',
  'reject',
  'ill',
  'conceived',
  'legislation',
  'urge',
  'house',
  'representatives',
  'pay',
  'attention',
  'needs',
  'constituents',
  'stampeded',
  'ill',
  'conceived',
  'arguments',
  'ideological',
  'fanatics',
  'nigel',
  'allen',
  'toronto',
  'ontario',
  'canada',
  'remote',
  'systems',
  'toronto',
  'ontario',
  'aint',
  'propaganda',
  'fun',
  'opinions',
  'expressed',
  'author',
  'insightful',
  'intelligent',
  'carefully',
  'thought',
  'therefore',
  'unlikely',
  'shared',
  'university',
  'iowa',
  'case',
  'western',
  'reserve',
  'university'],
 ['todd',
  'haverstock',
  'dumbest',
  'automotive',
  'concepts',
  'time',
  'organization',
  'educational',
  'computing',
  'network',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'uxa',
  'ecn',
  'bgu',
  'well',
  'young',
  'fellers',
  'wont',
  'remember',
  'used',
  'side',
  'vent',
  'front',
  'windows',
  'damn',
  'bean',
  'counter',
  'scrapped',
  'separate',
  'triangular',
  'windows',
  'leading',
  'edge',
  'front',
  'doors',
  'pivoted',
  'outward',
  'rear',
  'edge',
  'worked',
  'like',
  'charm',
  'yeah',
  'loved',
  'vent',
  'windows',
  'escort',
  'hell',
  'thing',
  'liked',
  'car',
  'one',
  'things',
  'id',
  'like',
  'see',
  'brought',
  'back',
  'anyone',
  'know',
  'theyre',
  'option',
  'new',
  'escorts',
  'trh'],
 ['organized',
  'lobbying',
  'cryptography',
  'tal',
  'kubo',
  'distribution',
  'inet',
  'organization',
  'dept',
  'math',
  'harvard',
  'univ',
  'nntp',
  'posting',
  'host',
  'zariski',
  'harvard',
  'lines',
  'article',
  'paul',
  'crowley',
  'writes',
  'perhaps',
  'encryption',
  'types',
  'would',
  'defend',
  'digitized',
  'porn',
  'posted',
  'encrypted',
  'issues',
  'seperable',
  'maintain',
  'fact',
  'since',
  'effective',
  'encryption',
  'makes',
  'censorship',
  'impossible',
  'almost',
  'issue',
  'certainly',
  'fall',
  'brief',
  'eff',
  'also',
  'falls',
  'within',
  'purview',
  'aclu',
  'doesnt',
  'mean',
  'aclu',
  'eff',
  'would',
  'effective',
  'instrument',
  'win',
  'hearts',
  'minds',
  'favor',
  'access',
  'cryptography',
  'precisely',
  'slogans',
  'like',
  'cryptography',
  'makes',
  'censorship',
  'impossible',
  'stand',
  'torpedo',
  'attempt',
  'generate',
  'broad',
  'consensus',
  'favor',
  'encryption',
  'true',
  'context',
  'public',
  'debate',
  'would',
  'dangerous',
  'red',
  'herring',
  'advocates',
  'strong',
  'crypto',
  'better',
  'prepare',
  'answer',
  'charges',
  'pragmatic',
  'terms',
  'laypeople',
  'politicians',
  'sympathize',
  'usual',
  'mumblings',
  'constitutional',
  'amendments',
  'enough',
  'tal'],
 ['weidlich',
  'searching',
  'phonetic',
  'font',
  'organization',
  'institut',
  'uni',
  'dortmund',
  'lines',
  'im',
  'searching',
  'phonetic',
  'truetype',
  'font',
  'windows',
  'anybody',
  'knows',
  'one',
  'please',
  'mail',
  'thanks',
  'dw',
  'dipl',
  'inform',
  'dietmar',
  'weidlich',
  'ifado',
  'ardeystr',
  'dortmund',
  'phone',
  'dr',
  'koennten',
  'sie',
  'das',
  'fax',
  'mal',
  'eben',
  'erledigen'],
 ['maddi',
  'hausmann',
  'amusing',
  'atheists',
  'agnostics',
  'organization',
  'society',
  'putting',
  'things',
  'top',
  'things',
  'lines',
  'bake',
  'timmons',
  'writes',
  'ok',
  'disproved',
  'one',
  'thing',
  'failed',
  'nail',
  'see',
  'nowhere',
  'post',
  'claim',
  'something',
  'believed',
  'three',
  'possibilities',
  'god',
  'exists',
  'god',
  'exist',
  'dont',
  'know',
  'attack',
  'strong',
  'atheism',
  'since',
  'guess',
  'said',
  'makes',
  'weak',
  'atheist',
  'snip',
  'first',
  'seem',
  'reasonable',
  'guy',
  'try',
  'honest',
  'include',
  'sentence',
  'afterwards',
  'honest',
  'ended',
  'like',
  'swear',
  'hmmmm',
  'recognize',
  'warning',
  'signs',
  'alternating',
  'polite',
  'rude',
  'coming',
  'newsgroup',
  'huge',
  'chip',
  'shoulder',
  'calls',
  'people',
  'names',
  'makes',
  'nice',
  'whirrr',
  'click',
  'whirrr',
  'clam',
  'bake',
  'timmons',
  'bill',
  'shit',
  'stirrer',
  'connor',
  'whirr',
  'click',
  'whirr',
  'frank',
  'odwyer',
  'might',
  'also',
  'contained',
  'shell',
  'pop',
  'stack',
  'determine',
  'whirr',
  'click',
  'whirr',
  'killfile',
  'keith',
  'allen',
  'schneider',
  'frank',
  'closet',
  'theist',
  'odwyer',
  'mind',
  'reels',
  'maybe',
  'theyre',
  'bobby',
  'mozumder',
  'maddi',
  'hausmann',
  'centigram',
  'communications',
  'corp',
  'san',
  'jose',
  'california',
  'kids',
  'please',
  'dont',
  'try',
  'home',
  'remember',
  'post',
  'professionally'],
 ['chad',
  'andrew',
  'kauffman',
  'car',
  'alarm',
  'info',
  'ungo',
  'box',
  'organization',
  'lehigh',
  'university',
  'lines',
  'want',
  'get',
  'car',
  'alarm',
  'thinking',
  'getting',
  'ungo',
  'box',
  'anyone',
  'knowledge',
  'experience',
  'alarms',
  'price',
  'ranges',
  'different',
  'models',
  'good',
  'car',
  'alarms',
  'please',
  'email',
  'responces',
  'chad',
  'chad'],
 ['pgp',
  'pem',
  'rfcs',
  'cryptography',
  'patents',
  'arthur',
  'rubin',
  'organization',
  'beckman',
  'instruments',
  'inc',
  'nntp',
  'posting',
  'host',
  'dsg',
  'dse',
  'beckman',
  'com',
  'lines',
  'jonathan',
  'eifrig',
  'writes',
  'fact',
  'unlawful',
  'distribute',
  'code',
  'implementing',
  'rsa',
  'without',
  'license',
  'pkp',
  'whether',
  'one',
  'charging',
  'furthermore',
  'rsa',
  'research',
  'purposes',
  'allowed',
  'us',
  'patent',
  'law',
  'similarly',
  'unlawful',
  'therefore',
  'average',
  'citizen',
  'cannot',
  'rsa',
  'encrypt',
  'message',
  'traffic',
  'us',
  'without',
  'license',
  'pkp',
  'wrong',
  'dont',
  'think',
  'even',
  'pkp',
  'claims',
  'one',
  'unlawful',
  'distribute',
  'code',
  'implementing',
  'rsa',
  'appears',
  'unlawful',
  'agree',
  'last',
  'sentence',
  'fact',
  'restrictions',
  'yet',
  'cryptography',
  'us',
  'law',
  'although',
  'beginning',
  'look',
  'like',
  'change',
  'impediments',
  'widespread',
  'rsa',
  'cryptography',
  'us',
  'pkps',
  'patents',
  'yes',
  'thats',
  'correct',
  'arthur',
  'rubin',
  'work',
  'beckman',
  'instruments',
  'brea',
  'personal',
  'opinions',
  'represent',
  'employer'],
 ['theodore',
  'chen',
  'bmws',
  'worth',
  'price',
  'organization',
  'dsg',
  'stanford',
  'university',
  'ca',
  'usa',
  'lines',
  'article',
  'gary',
  'mahan',
  'writes',
  'road',
  'track',
  'bmw',
  'mile',
  'road',
  'test',
  'annual',
  'mile',
  'numbers',
  'quoting',
  'driven',
  'older',
  'model',
  'newer',
  'sure',
  'sounds',
  'like',
  'got',
  'ringer',
  'drove',
  'definitely',
  'faster',
  'want',
  'quote',
  'numbers',
  'aw',
  'autofile',
  'shows',
  'mile',
  'quotes',
  'car',
  'drivers',
  'figures',
  'oh',
  'btw',
  'numbers',
  'dont',
  'know',
  'addition',
  'variable',
  'valve',
  'timing',
  'affects',
  'dont',
  'take',
  'word',
  'go',
  'drive',
  'teddy'],
 ['david',
  'brown',
  'drivers',
  'stealth',
  'organization',
  'clemson',
  'university',
  'lines',
  'doug',
  'ward',
  'writes',
  'recently',
  'purchased',
  'diamond',
  'stealth',
  'video',
  'card',
  'received',
  'wrong',
  'drivers',
  'anyone',
  'know',
  'ftp',
  'proper',
  'drivers',
  'dstlth',
  'file',
  'cica',
  'work',
  'video',
  'card',
  'please',
  'respond',
  'thank',
  'doug',
  'ward',
  'want',
  'get',
  'get',
  'also',
  'date',
  'bbs',
  'may',
  'take',
  'hour',
  'download',
  'rates',
  'low',
  'yeah',
  'know',
  'costs',
  'locking',
  'system',
  'gets',
  'old',
  'quick',
  'maybe',
  'someone',
  'net',
  'ive',
  'got',
  'stealth',
  'drivers',
  'david'],
 ['barbara',
  'gifford',
  'mystery',
  'paradox',
  'reply',
  'barbara',
  'gifford',
  'organization',
  'carderock',
  'division',
  'nswc',
  'bethesda',
  'md',
  'lines',
  'looking',
  'book',
  'specifically',
  'addresses',
  'mystery',
  'god',
  'paradox',
  'read',
  'touch',
  'chapter',
  'would',
  'like',
  'detailed',
  'read',
  'anyone',
  'aware',
  'books',
  'deal',
  'please',
  'mail',
  'thanks',
  'barbara'],
 ['ken',
  'thompson',
  'cable',
  'tvi',
  'interference',
  'keywords',
  'catv',
  'cable',
  'television',
  'tvi',
  'organization',
  'ncr',
  'corporation',
  'wichita',
  'ks',
  'lines',
  'victor',
  'laking',
  'writes',
  'know',
  'frequencies',
  'chanels',
  'usually',
  'allocated',
  'frequencies',
  'broadcast',
  'outside',
  'cable',
  'air',
  'comm',
  'amateur',
  'business',
  'public',
  'service',
  'ken',
  'thompson',
  'itl',
  'ncr',
  'corp',
  'peripheral',
  'products',
  'division',
  'disk',
  'array',
  'development',
  'rock',
  'road',
  'wichita',
  'ks'],
 ['tom',
  'spearman',
  'attention',
  'neo',
  'geo',
  'owners',
  'read',
  'keywords',
  'neo',
  'geo',
  'organization',
  'dsg',
  'stanford',
  'university',
  'ca',
  'usa',
  'lines',
  'hello',
  'neo',
  'geo',
  'owners',
  'non',
  'owners',
  'couldnt',
  'resist',
  'title',
  'wondering',
  'want',
  'trade',
  'sell',
  'games',
  'mean',
  'buying',
  'stores',
  'get',
  'kinda',
  'expensive',
  'little',
  'much',
  'spending',
  'game',
  'ahh',
  'quality',
  'get',
  'thats',
  'still',
  'lot',
  'right',
  'crossed',
  'swords',
  'magician',
  'lord',
  'baseball',
  'stars',
  'fatal',
  'fury',
  'nam',
  'interested',
  'buying',
  'titles',
  'interesting',
  'trade',
  'ideas',
  'please',
  'let',
  'know',
  'thanks',
  'tom'],
 ['steven',
  'orlin',
  'changing',
  'oil',
  'self',
  'nntp',
  'posting',
  'host',
  'magnusug',
  'magnus',
  'acs',
  'ohio',
  'state',
  'organization',
  'ohio',
  'state',
  'university',
  'distribution',
  'usa',
  'lines',
  'article',
  'za',
  'uberer',
  'writes',
  'article',
  'yik',
  'chong',
  'lam',
  'writes',
  'hello',
  'anyone',
  'know',
  'take',
  'bolt',
  'engine',
  'compartment',
  'turn',
  'clockwise',
  'counter',
  'tried',
  'kind',
  'lubricants',
  'wd',
  'etc',
  'still',
  'failed',
  'think',
  'electric',
  'drill',
  'change',
  'suitable',
  'bit',
  'turn',
  'succeed',
  'tighten',
  'tight',
  'safe',
  'without',
  'oil',
  'leak',
  'thank',
  'much',
  'advance',
  'winson',
  'dont',
  'worry',
  'leaks',
  'dont',
  'worry',
  'way',
  'turn',
  'damn',
  'thing',
  'take',
  'good',
  'claw',
  'hammer',
  'pry',
  'straight',
  'youll',
  'notice',
  'oil',
  'pours',
  'theads',
  'used',
  'thats',
  'heli',
  'coils',
  'invented',
  'yes',
  'buy',
  'gems',
  'rethread',
  'hole',
  'little',
  'larger',
  'time',
  'change',
  'oil',
  'hole',
  'gets',
  'big',
  'heli',
  'coil',
  'buy',
  'time',
  'trade',
  'car'],
 ['bob',
  'billson',
  'subliminal',
  'message',
  'flashing',
  'tv',
  'organization',
  'color',
  'computer',
  'tandys',
  'game',
  'machine',
  'lines',
  'rich',
  'theman',
  'kennehan',
  'says',
  'hi',
  'research',
  'subliminal',
  'suggestion',
  'psychology',
  'paper',
  'read',
  'one',
  'researcher',
  'flashed',
  'hidden',
  'messages',
  'tv',
  'screen',
  'ths',
  'second',
  'possible',
  'thought',
  'take',
  'look',
  'alt',
  'folklore',
  'urban',
  'thread',
  'subliminal',
  'messages',
  'tv',
  'fact',
  'subliminal',
  'messages',
  'dont',
  'work',
  'aside',
  'image',
  'cant',
  'flashed',
  'tv',
  'screen',
  'fast',
  'enough',
  'noticed',
  'bob',
  'billson',
  'kc',
  'wz',
  'internet',
  'nail',
  'bates',
  'way',
  'westfield',
  'nj',
  'uucp',
  'uunet',
  'kc',
  'wz',
  'bob',
  'friends',
  'dont',
  'let',
  'friends',
  'run',
  'dos',
  'microware'],
 ['jason',
  'bordujenko',
  'dac',
  'circuit',
  'organization',
  'pro',
  'net',
  'australia',
  'lines',
  'gday',
  'looking',
  'build',
  'parallel',
  'port',
  'digital',
  'analogue',
  'converter',
  'day',
  'came',
  'across',
  'schematic',
  'promptly',
  'threw',
  'together',
  'piece',
  'veroboard',
  'uf',
  'electrolytic',
  'nf',
  'ceramic',
  'please',
  'excuse',
  'obvious',
  'limits',
  'lower',
  'ascii',
  'char',
  'set',
  'constructed',
  'sitting',
  'inside',
  'nice',
  'little',
  'grey',
  'abs',
  'box',
  'unfortunately',
  'cant',
  'get',
  'work',
  'little',
  'demo',
  'name',
  'cronologia',
  'schematic',
  'came',
  'get',
  'pump',
  'box',
  'data',
  'type',
  'hash',
  'static',
  'small',
  'amount',
  'music',
  'signal',
  'behind',
  'even',
  'worse',
  'speaker',
  'inside',
  'machine',
  'anybody',
  'net',
  'colourful',
  'computer',
  'world',
  'ideas',
  'suggestions',
  'better',
  'designs',
  'improvements',
  'wastepaper',
  'bin',
  'etc',
  'many',
  'thanks',
  'reply',
  'via',
  'conference',
  'email',
  'regards',
  'jason',
  'jason',
  'bordujenko',
  'computer',
  'department',
  'internet',
  'usenet',
  'townsville',
  'grammar',
  'school',
  'fidonet',
  'node',
  'grammar',
  'bbs',
  'paxton',
  'street',
  'data',
  'phone',
  'int',
  'townsville',
  'queensland',
  'aust',
  'australia',
  'facsimilie',
  'int',
  'aust',
  'god',
  'made',
  'simple',
  'science',
  'made',
  'god',
  'stephen',
  'kings',
  'lawnmower',
  'man'],
 ['chris',
  'wooff',
  'tidying',
  'removing',
  'ole',
  'server',
  'keywords',
  'ole',
  'spss',
  'nntp',
  'posting',
  'host',
  'chad',
  'liv',
  'ac',
  'uk',
  'organization',
  'university',
  'liverpool',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'ago',
  'installed',
  'spss',
  'windows',
  'part',
  'evaluation',
  'evaluation',
  'complete',
  'duly',
  'deleted',
  'software',
  'pc',
  'unfortunately',
  'still',
  'ghost',
  'spss',
  'left',
  'run',
  'something',
  'like',
  'write',
  'go',
  'embed',
  'object',
  'spss',
  'chart',
  'appears',
  'list',
  'objects',
  'im',
  'offered',
  'looked',
  'around',
  'obvious',
  'ini',
  'files',
  'without',
  'success',
  'next',
  'thing',
  'tried',
  'looking',
  'string',
  'spss',
  'chart',
  'every',
  'file',
  'windows',
  'directory',
  'turned',
  'file',
  'called',
  'req',
  'dat',
  'reg',
  'dat',
  'unfortunately',
  'file',
  'binary',
  'didnt',
  'feel',
  'inclined',
  'edit',
  'id',
  'welcome',
  'solution',
  'removing',
  'spss',
  'list',
  'ole',
  'servers',
  'chris',
  'wooff'],
 ['russ',
  'schnapp',
  'tapped',
  'code',
  'good',
  'nntp',
  'posting',
  'host',
  'habu',
  'organization',
  'metaflow',
  'technologies',
  'inc',
  'lines',
  'might',
  'nice',
  'cut',
  'ad',
  'hominem',
  'attacks',
  'prof',
  'denning',
  'mr',
  'sternlight',
  'etc',
  'something',
  'objective',
  'say',
  'views',
  'go',
  'ahead',
  'say',
  'point',
  'personal',
  'attacks',
  'reflect',
  'attacker',
  'attackee',
  'throw',
  'light',
  'heat',
  'restrict',
  'discussion',
  'appropriate',
  'newsgroups',
  'submit',
  'comp',
  'org',
  'acm',
  'comp',
  'org',
  'ieee',
  'appropriate',
  'discussion',
  'made',
  'subscribers',
  'newsgroups',
  'aware',
  'issue',
  'want',
  'know',
  'participate',
  'discussion',
  'easily',
  'join',
  'sci',
  'crypt',
  'comp',
  'security',
  'misc',
  'alt',
  'security',
  'comp',
  'org',
  'eff',
  'talk',
  'russ',
  'schnapp',
  'email',
  'netcom',
  'metaflow',
  'rschnapp',
  'metaflow',
  'technologies',
  'voice',
  'fax',
  'la',
  'jolla',
  'california',
  'unless',
  'otw',
  'specified',
  'speaking'],
 ['bill',
  'mayhew',
  'dayton',
  'hamfest',
  'organization',
  'northeastern',
  'ohio',
  'universities',
  'college',
  'medicine',
  'distribution',
  'usa',
  'lines',
  'yes',
  'take',
  'interstate',
  'route',
  'exit',
  'go',
  'south',
  'miles',
  'trun',
  'right',
  'shiloh',
  'springs',
  'road',
  'hamvention',
  'harrah',
  'arena',
  'mile',
  'west',
  'north',
  'side',
  'road',
  'parking',
  'arena',
  'limited',
  'lodging',
  'probably',
  'entirely',
  'booked',
  'within',
  'mile',
  'radius',
  'good',
  'luck',
  'mall',
  'springs',
  'possible',
  'park',
  'mall',
  'west',
  'shuttle',
  'busses',
  'running',
  'arena',
  'mall',
  'possible',
  'get',
  'montgomery',
  'county',
  'oh',
  'map',
  'local',
  'aaa',
  'office',
  'free',
  'aaa',
  'member',
  'dont',
  'already',
  'definite',
  'plans',
  'particularly',
  'good',
  'time',
  'start',
  'think',
  'going',
  'hamvention',
  'bill',
  'mayhew',
  'neoucom',
  'computer',
  'services',
  'department',
  'rootstown',
  'oh',
  'usa',
  'phone',
  'wed'],
 ['amruth',
  'laxman',
  'surviving',
  'large',
  'accelerations',
  'organization',
  'junior',
  'electrical',
  'computer',
  'engineering',
  'carnegie',
  'mellon',
  'pittsburgh',
  'pa',
  'lines',
  'nntp',
  'posting',
  'host',
  'po',
  'andrew',
  'cmu',
  'hi',
  'reading',
  'spaceflight',
  'handbook',
  'somewhere',
  'author',
  'discusses',
  'solar',
  'sails',
  'forces',
  'acting',
  'try',
  'gain',
  'initial',
  'acceleration',
  'passing',
  'close',
  'sun',
  'hyperbolic',
  'orbit',
  'magnitude',
  'accelerations',
  'estimated',
  'order',
  'also',
  'says',
  'may',
  'big',
  'problem',
  'manned',
  'craft',
  'humans',
  'published',
  'already',
  'withstood',
  'accelerations',
  'long',
  'winded',
  'heres',
  'question',
  'finally',
  'accelerations',
  'fact',
  'humanly',
  'tolerable',
  'aid',
  'mechanical',
  'devices',
  'course',
  'possible',
  'used',
  'absorb',
  'acceleration',
  'extended',
  'larger',
  'accelerations',
  'thanks',
  'advance',
  'amruth',
  'laxman'],
 ['yali',
  'amit',
  'problems',
  'open',
  'windows',
  'organization',
  'dept',
  'statistics',
  'lines',
  'openwindows',
  'version',
  'sunos',
  'xwindows',
  'running',
  'continuously',
  'machine',
  'days',
  'following',
  'message',
  'appears',
  'trying',
  'open',
  'new',
  'window',
  'run',
  'program',
  'needs',
  'open',
  'windows',
  'xview',
  'error',
  'cannot',
  'open',
  'connection',
  'window',
  'server',
  'server',
  'package',
  'would',
  'greatly',
  'appreciate',
  'suggestions',
  'solve',
  'problem',
  'yali',
  'amit',
  'department',
  'statistics',
  'university',
  'chicago',
  'chicago',
  'il'],
 ['alt',
  'sex',
  'stories',
  'literary',
  'critical',
  'analy',
  'john',
  'nunnally',
  'distribution',
  'world',
  'organization',
  'harding',
  'university',
  'searcy',
  'ar',
  'nntp',
  'posting',
  'host',
  'acs',
  'harding',
  'news',
  'reader',
  'vms',
  'news',
  'reply',
  'message',
  'sun',
  'apr',
  'gmtlines',
  'lines',
  'writes',
  'article',
  'dennis',
  'kriz',
  'wrote',
  'im',
  'going',
  'try',
  'something',
  'perhaps',
  'many',
  'would',
  'thought',
  'even',
  'possible',
  'want',
  'begin',
  'process',
  'initiating',
  'literary',
  'critical',
  'study',
  'pornography',
  'posted',
  'alt',
  'sex',
  'stories',
  'identify',
  'major',
  'themes',
  'motifs',
  'present',
  'stories',
  'posted',
  'opening',
  'possibility',
  'objective',
  'moral',
  'evaluation',
  'material',
  'present',
  'dennis',
  'im',
  'astounded',
  'didnt',
  'know',
  'interested',
  'even',
  'study',
  'filth',
  'alt',
  'sex',
  'stories',
  'provide',
  'cheers',
  'kent',
  'alink',
  'ksand',
  'private',
  'activities',
  'net',
  'finally',
  'brethern',
  'whatever',
  'true',
  'whatever',
  'honorable',
  'whatever',
  'right',
  'whatever',
  'pure',
  'whatever',
  'lovely',
  'whatever',
  'good',
  'repute',
  'excellence',
  'anything',
  'worthy',
  'praise',
  'let',
  'mind',
  'dwell',
  'things',
  'phil',
  'cheers',
  'john'],
 ['walter',
  'lundby',
  'msg',
  'sensitivity',
  'superstition',
  'nntp',
  'posting',
  'host',
  'accord',
  'organization',
  'motorola',
  'inc',
  'cellular',
  'infrastructure',
  'group',
  'lines',
  'thing',
  'msg',
  'monosodium',
  'glutamate',
  'sensitivity',
  'superstition',
  'anybody',
  'experience',
  'contrary',
  'person',
  'sensitive',
  'msg',
  'whose',
  'wife',
  'kids',
  'want',
  'know',
  'food',
  'industry',
  'wants',
  'put',
  'msg',
  'food',
  'somebody',
  'industry',
  'give',
  'reasons',
  'industrial',
  'byproduct',
  'needs',
  'getting',
  'get',
  'rid',
  'cover',
  'fact',
  'recipes',
  'good',
  'food',
  'poor',
  'quality',
  'get',
  'sadistic',
  'pleasure',
  'making',
  'us',
  'sick',
  'taste',
  'testers',
  'defect',
  'flavor',
  'sensors',
  'mouth',
  'etc',
  'msg',
  'corrects',
  'really',
  'dont',
  'understand',
  'also',
  'nitrosiamines',
  'sp',
  'sulfites',
  'safer',
  'ways',
  'preserve',
  'food',
  'wines',
  'beers',
  'think',
  'outlaw',
  'substances',
  'without',
  'warning',
  'labels',
  'large',
  'cig',
  'packages',
  'require',
  'comparable',
  'products',
  'market',
  'free',
  'substances',
  'state',
  'free',
  'msg',
  'dyes',
  'nitrosiamines',
  'sulfites',
  'package',
  'outlaw',
  'yellow',
  'dye',
  'matter',
  'dye',
  'food',
  'take',
  'dyes',
  'flavorings',
  'vitamins',
  'osco',
  'stress',
  'tabs',
  'tm',
  'didnt',
  'yellow',
  'dye',
  'doctor',
  'says',
  'yellow',
  'dye',
  'responsible',
  'nasal',
  'polyps',
  'keep',
  'food',
  'food',
  'quit',
  'putting',
  'junk',
  'two',
  'cents',
  'worth',
  'sig',
  'person',
  'tired',
  'getting',
  'sick',
  'junk',
  'walter',
  'lundby',
  'walter',
  'lundby'],
 ['david',
  'arndt',
  'johnny',
  'harts',
  'comic',
  'strip',
  'mailing',
  'address',
  'organization',
  'gustavus',
  'adolphus',
  'college',
  'lines',
  'pretty',
  'much',
  'says',
  'im',
  'looking',
  'johnny',
  'harts',
  'creator',
  'comic',
  'stip',
  'mailing',
  'address',
  'havent',
  'seen',
  'take',
  'look',
  'strips',
  'good',
  'friday',
  'easter',
  'sunday',
  'remarkable',
  'witness',
  'anyone',
  'help',
  'get',
  'touch',
  'id',
  'really',
  'appreciate',
  'ive',
  'contacted',
  'paper',
  'carries',
  'strip',
  'theyll',
  'get',
  'back',
  'thanks',
  'help',
  'dave',
  'arndt',
  'st',
  'peters',
  'evangelical',
  'lutheran',
  'church',
  'st',
  'peter',
  'mn'],
 ['larry',
  'overacker',
  'arrogance',
  'christians',
  'organization',
  'shell',
  'oil',
  'lines',
  'article',
  'carol',
  'alvin',
  'writes',
  'virgilio',
  'dean',
  'velasco',
  'jr',
  'writes',
  'article',
  'carol',
  'alvin',
  'writes',
  'truths',
  'also',
  'absolutes',
  'scripture',
  'truths',
  'therefore',
  'absolutes',
  'answer',
  'questions',
  'yes',
  'perhaps',
  'different',
  'definitions',
  'absolute',
  'absolute',
  'something',
  'constant',
  'across',
  'time',
  'culture',
  'situations',
  'etc',
  'true',
  'every',
  'instance',
  'possible',
  'agree',
  'definition',
  'think',
  'similarly',
  'truth',
  'absolute',
  'indeed',
  'non',
  'absolute',
  'truth',
  'contradiction',
  'terms',
  'something',
  'absolute',
  'always',
  'true',
  'obviously',
  'truth',
  'always',
  'true',
  'contradiction',
  'terms',
  'agree',
  'carol',
  'determining',
  'absolutes',
  'practically',
  'speaking',
  'waste',
  'time',
  'easily',
  'forget',
  'relative',
  'truth',
  'fact',
  'relative',
  'example',
  'recently',
  'asking',
  'children',
  'question',
  'temperature',
  'water',
  'boil',
  'got',
  'answer',
  'degrees',
  'consistently',
  'asked',
  'knew',
  'scale',
  'told',
  'degrees',
  'scale',
  'thats',
  'thermometers',
  'say',
  'well',
  'thats',
  'sincere',
  'may',
  'true',
  'experience',
  'speaker',
  'simply',
  'wrong',
  'absolute',
  'truth',
  'similarly',
  'scripture',
  'full',
  'truth',
  'nurture',
  'cherish',
  'trying',
  'determine',
  'parts',
  'absolute',
  'truth',
  'parts',
  'manifestations',
  'context',
  'time',
  'culture',
  'text',
  'penned',
  'missing',
  'point',
  'religion',
  'easily',
  'becomes',
  'intellectual',
  'head',
  'trip',
  'devoid',
  'living',
  'experience',
  'indwelling',
  'trinity',
  'becomes',
  'dead',
  'scholasticism',
  'imo',
  'example',
  'head',
  'covering',
  'church',
  'deleted',
  'good',
  'example',
  'may',
  'absolute',
  'truth',
  'behind',
  'writing',
  'simplest',
  'understanding',
  'passage',
  'instructions',
  'apply',
  'corinthians',
  'necessarily',
  'elsewhere',
  'instructions',
  'may',
  'reflect',
  'absolute',
  'truth',
  'context',
  'first',
  'century',
  'culture',
  'particular',
  'climate',
  'corinth',
  'lot',
  'trouble',
  'order',
  'absolute',
  'truth',
  'see',
  'compelling',
  'even',
  'reasonable',
  'reason',
  'evangelicals',
  'clearly',
  'taking',
  'particular',
  'part',
  'scripture',
  'absolute',
  'truth',
  'plenty',
  'examples',
  'reconcile',
  'even',
  'die',
  'hard',
  'literalists',
  'take',
  'bible',
  'literally',
  'ive',
  'yet',
  'meet',
  'anyone',
  'takes',
  'verse',
  'blessed',
  'takes',
  'babies',
  'smashes',
  'heads',
  'rocks',
  'literally',
  'bible',
  'printed',
  'handed',
  'us',
  'god',
  'color',
  'codings',
  'tell',
  'us',
  'parts',
  'interpreted',
  'way',
  'many',
  'people',
  'claim',
  'absolutes',
  'world',
  'statement',
  'terribly',
  'self',
  'contradictory',
  'let',
  'put',
  'way',
  'absolutes',
  'shouldnt',
  'conclude',
  'statement',
  'absolutes',
  'absolutely',
  'true',
  'obviously',
  'contradiction',
  'dont',
  'claim',
  'absolutes',
  'think',
  'though',
  'determining',
  'absolutes',
  'difficult',
  'agree',
  'even',
  'knew',
  'personally',
  'may',
  'able',
  'express',
  'way',
  'still',
  'conveys',
  'absolute',
  'truth',
  'another',
  'presence',
  'absence',
  'absolutes',
  'may',
  'make',
  'difference',
  'since',
  'know',
  'never',
  'fully',
  'apprehend',
  'absolute',
  'walks',
  'greets',
  'hardly',
  'consensus',
  'even',
  'evangelical',
  'christianity',
  'mention',
  'rest',
  'christianity',
  'regarding',
  'biblical',
  'interpretation',
  'people',
  'sometimes',
  'disagree',
  'true',
  'negate',
  'fact',
  'however',
  'still',
  'absolutes',
  'universe',
  'cant',
  'prove',
  'existence',
  'absolutes',
  'rely',
  'upon',
  'experience',
  'also',
  'trust',
  'gods',
  'revelation',
  'cannot',
  'fully',
  'comprehend',
  'infinite',
  'therefore',
  'cant',
  'comprehend',
  'absolutes',
  'dont',
  'need',
  'never',
  'know',
  'essence',
  'god',
  'energies',
  'god',
  'manifested',
  'gods',
  'creation',
  'reality',
  'absolutes',
  'practical',
  'importance',
  'like',
  'claiming',
  'original',
  'scriptural',
  'autographs',
  'perfect',
  'copies',
  'may',
  'swell',
  'cares',
  'doesnt',
  'affect',
  'practical',
  'useful',
  'way',
  'might',
  'well',
  'believe',
  'god',
  'made',
  'lot',
  'electric',
  'blue',
  'chickens',
  'live',
  'mars',
  'maybe',
  'god',
  'going',
  'effect',
  'deal',
  'neighbor',
  'god',
  'whether',
  'go',
  'cafeteria',
  'lunch',
  'attitude',
  'leads',
  'many',
  'non',
  'christians',
  'believe',
  'christians',
  'arrogant',
  'idiots',
  'incapable',
  'critical',
  'reasoning',
  'christianity',
  'true',
  'wonderful',
  'sensible',
  'appeals',
  'reason',
  'since',
  'reason',
  'inner',
  'reflection',
  'logos',
  'god',
  'explanations',
  'violate',
  'simply',
  'appear',
  'insecure',
  'authoritarian',
  'responses',
  'complex',
  'world',
  'note',
  'im',
  'claiming',
  'place',
  'authority',
  'thatd',
  'silly',
  'world',
  'difference',
  'authoritative',
  'authoritarian',
  'authoritative',
  'en',
  'expression',
  'authority',
  'respects',
  'others',
  'authoritarian',
  'en',
  'expression',
  'authority',
  'fails',
  'generally',
  'agressive',
  'good',
  'parents',
  'like',
  'god',
  'authoritative',
  'many',
  'christians',
  'simply',
  'authoritarian',
  'surprisingly',
  'adults',
  'respond',
  'treatment',
  'larry',
  'overacker',
  'lawrence',
  'overacker',
  'shell',
  'oil',
  'company',
  'information',
  'center',
  'houston',
  'tx'],
 ['jim',
  'halat',
  'years',
  'say',
  'christian',
  'morality',
  'reply',
  'jim',
  'halat',
  'lines',
  'article',
  'frank',
  'odwyer',
  'writes',
  'article',
  'mathew',
  'writes',
  'frank',
  'odwyer',
  'writes',
  'article',
  'mathew',
  'writes',
  'complete',
  'nonsense',
  'relativism',
  'means',
  'saying',
  'absolut',
  'standard',
  'morality',
  'mean',
  'saying',
  'standards',
  'morality',
  'equally',
  'good',
  'presumably',
  'means',
  'moral',
  'systems',
  'better',
  'others',
  'manage',
  'without',
  'objective',
  'frame',
  'reference',
  'either',
  'frank',
  'odwyer',
  'mathew',
  'said',
  'stiff',
  'deleted',
  'goes',
  'faster',
  'bullet',
  'snail',
  'come',
  'answer',
  'einstein',
  'proved',
  'isnt',
  'objective',
  'frame',
  'reference',
  'stiff',
  'deleted',
  'speed',
  'quantifiable',
  'measure',
  'resulting',
  'set',
  'methods',
  'result',
  'value',
  'measured',
  'matter',
  'reference',
  'bullet',
  'zero',
  'velocity',
  'sitting',
  'table',
  'train',
  'moving',
  'mph',
  'moving',
  'speed',
  'mph',
  'someone',
  'train',
  'mph',
  'someone',
  'stationary',
  'next',
  'train',
  'reference',
  'frame',
  'makes',
  'speed',
  'relative',
  'whats',
  'interesting',
  'every',
  'person',
  'train',
  'see',
  'stationary',
  'bullet',
  'every',
  'person',
  'bullet',
  'moving',
  'mph',
  'know',
  'train',
  'people',
  'every',
  'time',
  'filled',
  'see',
  'moral',
  'problem',
  'exactly',
  'way',
  'jim',
  'halat',
  'bear',
  'stearns',
  'whatever',
  'doesnt',
  'kill',
  'serve',
  'annoy',
  'nyc',
  'speak'],
 ['chris',
  'dong',
  'wanted',
  'memphis',
  'sublet',
  'organization',
  'university',
  'virginia',
  'lines',
  'non',
  'smoking',
  'normal',
  'law',
  'student',
  'needs',
  'furnished',
  'place',
  'live',
  'memphis',
  'summer',
  'ill',
  'working',
  'firm',
  'downtown',
  'pass',
  'bar',
  'character',
  'examination',
  'dont',
  'worry',
  'stuff',
  'broken',
  'stolen',
  'call',
  'chris',
  'leave',
  'mail'],
 ['elaine',
  'beano',
  'leffler',
  'kawi',
  'zephyr',
  'vision',
  'vs',
  'gpz',
  'keywords',
  'zephyr',
  'stock',
  'forks',
  'bad',
  'mushy',
  'dive',
  'article',
  'jethro',
  'psrdn',
  'reply',
  'distribution',
  'world',
  'organization',
  'sunconnect',
  'lines',
  'nntp',
  'posting',
  'host',
  'smarmy',
  'eng',
  'sun',
  'com',
  'article',
  'erik',
  'asphaug',
  'writes',
  'way',
  'bob',
  'er',
  'dave',
  'sorry',
  'read',
  'review',
  'said',
  'engine',
  'pretty',
  'much',
  'identical',
  'gpz',
  'suspension',
  'frame',
  'modern',
  'fancy',
  'piggyback',
  'shocks',
  'think',
  'dont',
  'know',
  'zr',
  'nice',
  'way',
  'adjustability',
  'forks',
  'crappy',
  'dive',
  'like',
  'mad',
  'progressive',
  'springs',
  'installed',
  'made',
  'huge',
  'difference',
  'cheap',
  'fix',
  'much',
  'improvement',
  'elef'],
 ['robert',
  'brown',
  'shaft',
  'drives',
  'wheelies',
  'news',
  'software',
  'vax',
  'vms',
  'vnews',
  'nntp',
  'posting',
  'host',
  'venus',
  'iucf',
  'indiana',
  'reply',
  'organization',
  'iucf',
  'distribution',
  'rec',
  'lines',
  'article',
  'john',
  'stafford',
  'writes',
  'apr',
  'gmt',
  'said',
  'possible',
  'wheelie',
  'motorcycle',
  'shaft',
  'drive',
  'yes',
  'wheel',
  'comes',
  'ground',
  'front',
  'see',
  'hops',
  'air',
  'figure',
  'john',
  'stafford',
  'sure',
  'wheelies',
  'shaft',
  'drive',
  'bike',
  'bmw',
  'rs',
  'wheelie',
  'monster',
  'course',
  'didnt',
  'initial',
  'power',
  'burst',
  'twist',
  'air',
  'pop',
  'clutch',
  'also',
  'replace',
  'front',
  'fork',
  'seals',
  'times',
  'well',
  'fairing',
  'bit',
  'heavy',
  'slamming',
  'onto',
  'little',
  'stantion',
  'tubes',
  'time',
  'let',
  'give',
  'fair',
  'warning',
  'trashed',
  'ring',
  'pinion',
  'gear',
  'final',
  'drive',
  'assume',
  'wheelies',
  'cheap',
  'fix',
  'either',
  'kind',
  'slip',
  'device',
  'shaft',
  'prevent',
  'breaking',
  'unfortunately',
  'didnt',
  'save',
  'gears',
  'topic',
  'wheelies',
  'day',
  'saw',
  'kid',
  'big',
  'hurricane',
  'stoppy',
  'rear',
  'wheelie',
  'man',
  'rear',
  'end',
  'bike',
  'feet',
  'ground',
  'traffic',
  'light',
  'dont',
  'recommend',
  'activities',
  'anymore',
  'im',
  'old',
  'guy',
  'kids',
  'looked',
  'damn',
  'impressive',
  'cant',
  'keep',
  'tires',
  'ground',
  'least',
  'em',
  'pointed',
  'direction',
  'cheers'],
 ['richard',
  'gooch',
  'open',
  'look',
  'organization',
  'csiro',
  'division',
  'radiophysics',
  'australia',
  'telescope',
  'national',
  'facility',
  'lines',
  'article',
  'writes',
  'reposting',
  'sure',
  'first',
  'post',
  'ever',
  'made',
  'built',
  'installed',
  'sparcstation',
  'aim',
  'run',
  'mit',
  'server',
  'retain',
  'openlook',
  'window',
  'manager',
  'sure',
  'uncommon',
  'want',
  'make',
  'sure',
  'change',
  'delete',
  'everything',
  'need',
  'instance',
  'start',
  'xdm',
  'rc',
  'local',
  'get',
  'rid',
  'xnews',
  'openlook',
  'window',
  'manager',
  'source',
  'available',
  'mit',
  'contrib',
  'tapes',
  'export',
  'lcs',
  'mit',
  'would',
  'suggest',
  'building',
  'rather',
  'using',
  'version',
  'openwindows',
  'olwm',
  'regards',
  'richard',
  'gooch'],
 ['howard',
  'moy',
  'madison',
  'wi',
  'summer',
  'sublet',
  'organization',
  'wisconsin',
  'madison',
  'college',
  'engineering',
  'distribution',
  'uwix',
  'lines',
  'downtown',
  'furnished',
  'summer',
  'sublet',
  'may',
  'thru',
  'aug',
  'great',
  'location',
  'frances',
  'st',
  'johnson',
  'st',
  'across',
  'witte',
  'near',
  'nitty',
  'gritty',
  'near',
  'howard',
  'johnson',
  'near',
  'state',
  'street',
  'near',
  'south',
  'east',
  'dorms',
  'near',
  'university',
  'square',
  'near',
  'serf',
  'two',
  'bedroom',
  'spacious',
  'room',
  'larger',
  'laundry',
  'available',
  'parking',
  'available',
  'bathroom',
  'kitchen',
  'large',
  'closet',
  'dual',
  'desks',
  'pay',
  'electricity',
  'month',
  'asking',
  'whole',
  'summer',
  'send',
  'inquiries',
  'howard',
  'howard',
  'howard',
  'moy'],
 ['vlasis',
  'theodore',
  'warning',
  'please',
  'read',
  'organization',
  'cybernet',
  'bbs',
  'boca',
  'raton',
  'florida',
  'lines',
  'allen',
  'tobias',
  'writes',
  'article',
  'erik',
  'vel',
  'happened',
  'year',
  'ago',
  'washington',
  'dc',
  'beltway',
  'snot',
  'nosed',
  'drunken',
  'kids',
  'decided',
  'would',
  'really',
  'cool',
  'throw',
  'huge',
  'rocks',
  'cars',
  'overpass',
  'four',
  'five',
  'cars',
  'hit',
  'several',
  'serious',
  'injuries',
  'sadly',
  'small',
  'girl',
  'sitting',
  'front',
  'seat',
  'one',
  'struck',
  'head',
  'one',
  'larger',
  'rocks',
  'dont',
  'recall',
  'made',
  'think',
  'comatose',
  'month',
  'doctors',
  'werent',
  'holding',
  'hope',
  'shed',
  'live',
  'hell',
  'happening',
  'great',
  'country',
  'see',
  'boyhood',
  'pranks',
  'peeing',
  'bridges',
  'pound',
  'rocks',
  'society',
  'really',
  'stooped',
  'low',
  'erik',
  'velapold',
  'society',
  'known',
  'coming',
  'apart',
  'seams',
  'basic',
  'reason',
  'human',
  'life',
  'devalued',
  'point',
  'killing',
  'someone',
  'big',
  'deal',
  'kids',
  'see',
  'hundreds',
  'murderous',
  'acts',
  'tv',
  'abort',
  'children',
  'demand',
  'kill',
  'sick',
  'old',
  'surprised',
  'kids',
  'drop',
  'lbs',
  'rocks',
  'kill',
  'people',
  'dont',
  'care',
  'message',
  'hear',
  'life',
  'cheap',
  'well',
  'people',
  'fortunatly',
  'unfortunatly',
  'us',
  'experiencing',
  'devaluation',
  'human',
  'life',
  'among',
  'developed',
  'nations',
  'american',
  'raised',
  'europe',
  'worst',
  'thing',
  'happen',
  'somebody',
  'get',
  'car',
  'broken',
  'pocket',
  'picked',
  'slaves',
  'russian',
  'refugees',
  'cource',
  'nutcases',
  'thats',
  'extremely',
  'rare',
  'greece',
  'walk',
  'neighborhood',
  'time',
  'night',
  'without',
  'even',
  'worrying',
  'germany',
  'walk',
  'sidewalks',
  'even',
  'look',
  'behind',
  'back',
  'sanitation',
  'crews',
  'clean',
  'streets',
  'sparkling',
  'cleen',
  'whoever',
  'know',
  'saying',
  'dont',
  'easy',
  'answers',
  'nation',
  'selfcritisism',
  'might',
  'get',
  'somewhere',
  'course',
  'postings',
  'sould',
  'soc',
  'culture',
  'us',
  'reduce',
  'crime',
  'mean',
  'less',
  'car',
  'insurance',
  'rates',
  'thus',
  'could',
  'spend',
  'money',
  'modifing',
  'cars',
  'posting',
  'rec',
  'autos',
  'tech',
  'revelant',
  'vlasis',
  'theodore',
  'software',
  'engineer',
  'idb',
  'mobile',
  'communications',
  'sig',
  'development'],
 ['kevin',
  'stamber',
  'list',
  'tee',
  'times',
  'metropolitan',
  'toronto',
  'golf',
  'courses',
  'monday',
  'organization',
  'purdue',
  'university',
  'engineering',
  'computer',
  'network',
  'lines',
  'kevin',
  'stamber',
  'purdue',
  'university',
  'phil',
  'kirzyc',
  'kielbasa',
  'kid',
  'roam',
  'arena',
  'interviews'],
 ['joe',
  'hildebrand',
  'question',
  'regarding',
  'overlaying',
  'graphics',
  'organization',
  'internet',
  'lines',
  'gopal',
  'venkatraman',
  'cc',
  'lets',
  'say',
  'two',
  'rectangles',
  'canvas',
  'see',
  'one',
  'intersecting',
  'would',
  'like',
  'delete',
  'one',
  'rectangles',
  'way',
  'create',
  'another',
  'gc',
  'wherein',
  'gxxor',
  'logical',
  'function',
  'simply',
  'redraw',
  'rectangle',
  'using',
  'newly',
  'created',
  'graphics',
  'context',
  'thus',
  'deleting',
  'apparent',
  'purposes',
  'problem',
  'approach',
  'points',
  'intersection',
  'pixel',
  'locations',
  'belonging',
  'rectangle',
  'also',
  'become',
  'white',
  'something',
  'avoided',
  'could',
  'set',
  'bitmap',
  'mask',
  'clear',
  'bitmap',
  'draw',
  'rectangle',
  'deleted',
  'gxor',
  'draw',
  'one',
  'stay',
  'gxclear',
  'gxxor',
  'entire',
  'pixmap',
  'screen',
  'note',
  'pretty',
  'effective',
  'way',
  'animation',
  'ever',
  'need',
  'replace',
  'gxclear',
  'gxxor',
  'joe',
  'hildebrand',
  'software',
  'engineer',
  'fuentez',
  'systems',
  'concepts',
  'standard',
  'disclaimers',
  'apply'],
 ['lee',
  'reynolds',
  'cga',
  'card',
  'monitor',
  'wanted',
  'organization',
  'ludus',
  'associates',
  'incorporated',
  'lines',
  'title',
  'says',
  'lee'],
 ['nathan',
  'engle',
  'atf',
  'burns',
  'dividian',
  'ranch',
  'update',
  'nntp',
  'posting',
  'host',
  'mushroom',
  'psych',
  'indiana',
  'organization',
  'psych',
  'department',
  'indiana',
  'university',
  'distribution',
  'usa',
  'lines',
  'writes',
  'ah',
  'yes',
  'see',
  'liberal',
  'weenies',
  'come',
  'woodwork',
  'defend',
  'burning',
  'children',
  'actually',
  'liberals',
  'ive',
  'seen',
  'deplored',
  'burning',
  'children',
  'would',
  'far',
  'preferred',
  'davidians',
  'set',
  'fire',
  'burned',
  'children',
  'death',
  'dont',
  'believe',
  'responsibility',
  'fire',
  'almost',
  'complete',
  'absense',
  'attempts',
  'escape',
  'blaze',
  'placed',
  'door',
  'federal',
  'authorities',
  'probably',
  'drooled',
  'watching',
  'tv',
  'coverage',
  'wife',
  'got',
  'convenient',
  'plastic',
  'drip',
  'pan',
  'christmas',
  'probably',
  'like',
  'nazi',
  'germany',
  'well',
  'yeah',
  'nazis',
  'know',
  'liberals',
  'love',
  'nazis',
  'oh',
  'yeah',
  'atf',
  'fbi',
  'claims',
  'according',
  'media',
  'survivors',
  'number',
  'seems',
  'vary',
  'minute',
  'minute',
  'yeah',
  'information',
  'trickles',
  'funny',
  'works',
  'nathan',
  'engle',
  'software',
  'juggler',
  'psychology',
  'department',
  'indiana',
  'university'],
 ['efw',
  'robert',
  'feddeler',
  'mt',
  'centrifuge',
  'organization',
  'middletown',
  'newsreader',
  'tin',
  'version',
  'pl',
  'distribution',
  'usa',
  'lines',
  'mr',
  'blue',
  'wrote',
  'could',
  'somebody',
  'explain',
  'centrifuge',
  'used',
  'vaguely',
  'remembre',
  'something',
  'spins',
  'test',
  'tubes',
  'around',
  'really',
  'fast',
  'cant',
  'remember',
  'youd',
  'want',
  'purely',
  'recreational',
  'get',
  'bored',
  'sitting',
  'rack',
  'time',
  'bob',
  'smile',
  'lie',
  'learn',
  'bar',
  'ill',
  'tell',
  'lawyers',
  'office',
  'opinions',
  'would',
  'cost',
  'bit'],
 ['larry',
  'pyeatt',
  'mix',
  'gl',
  'xlib',
  'xt',
  'mwm',
  'nntp',
  'posting',
  'host',
  'organization',
  'texaco',
  'lines',
  'article',
  'jay',
  'graham',
  'writes',
  'developing',
  'xt',
  'xm',
  'application',
  'include',
  'graphics',
  'window',
  'sort',
  'moving',
  'symbols',
  'among',
  'things',
  'pure',
  'application',
  'could',
  'implemented',
  'motif',
  'widgets',
  'one',
  'would',
  'xmdrawingarea',
  'drawing',
  'xlib',
  'would',
  'like',
  'take',
  'advantage',
  'graphics',
  'library',
  'gl',
  'available',
  'ibm',
  'rs',
  'sgis',
  'gl',
  'believe',
  'possible',
  'mix',
  'gl',
  'one',
  'application',
  'program',
  'gl',
  'subroutines',
  'xmdrawingarea',
  'window',
  'opened',
  'xopenwindow',
  'widget',
  'already',
  'defined',
  'gl',
  'glxmdraw',
  'motif',
  'glxdraw',
  'athena',
  'widget',
  'similar',
  'xmdrawingarea',
  'except',
  'allows',
  'gl',
  'calls',
  'render',
  'window',
  'look',
  'glxlink',
  'glxunlink',
  'glxgetconfig',
  'glxwinset',
  'man',
  'pages',
  'never',
  'used',
  'gl',
  'doc',
  'gl',
  'winopen',
  'says',
  'first',
  'time',
  'winopen',
  'called',
  'opens',
  'connection',
  'server',
  'also',
  'gl',
  'calls',
  'require',
  'display',
  'gc',
  'unlike',
  'calls',
  'initial',
  'information',
  'appears',
  'gl',
  'cannot',
  'mixed',
  'easily',
  'true',
  'glxmdraw',
  'widget',
  'works',
  'pretty',
  'well',
  'opengl',
  'improvement',
  'pex',
  'graphigs',
  'functionality',
  'gl',
  'think',
  'gl',
  'little',
  'easier',
  'little',
  'powerful',
  'thats',
  'opinion',
  'mileage',
  'may',
  'vary',
  'larry',
  'pyeatt',
  'views',
  'expressed',
  'internet',
  'employer',
  'anyone',
  'voice',
  'know',
  'possible',
  'exception'],
 ['jim',
  'rosenkranz',
  'metal',
  'powder',
  'steel',
  'iron',
  'reply',
  'jim',
  'rosenkranz',
  'organization',
  'digital',
  'equipment',
  'corp',
  'lines',
  'article',
  'mark',
  'robert',
  'thorson',
  'writes',
  'xref',
  'nntpd',
  'cxo',
  'dec',
  'com',
  'misc',
  'invest',
  'misc',
  'forsale',
  'path',
  'nntpd',
  'cxo',
  'dec',
  'com',
  'pa',
  'dec',
  'com',
  'big',
  'mko',
  'dec',
  'com',
  'uvo',
  'dec',
  'com',
  'news',
  'crl',
  'dec',
  'com',
  'deccrl',
  'caen',
  'zaphod',
  'mps',
  'ohio',
  'state',
  'sdd',
  'hp',
  'com',
  'portal',
  'cup',
  'portal',
  'com',
  'mmm',
  'mark',
  'robert',
  'thorson',
  'newsgroups',
  'misc',
  'invest',
  'misc',
  'forsale',
  'metal',
  'powder',
  'steel',
  'iron',
  'message',
  'id',
  'date',
  'thu',
  'apr',
  'pdt',
  'organization',
  'portal',
  'system',
  'tm',
  'references',
  'lines',
  'love',
  'posts',
  'ex',
  'soviet',
  'union',
  'among',
  'cars',
  'dinette',
  'sets',
  'video',
  'cameras',
  'etc',
  'every',
  'ad',
  'pops',
  'bee',
  'venom',
  'red',
  'oxide',
  'mercury',
  'cobalt',
  'tons',
  'minimum',
  'order',
  'etc',
  'dont',
  'garage',
  'sales',
  'russia',
  'really',
  'doesnt',
  'strike',
  'funny',
  'rather',
  'indicative',
  'crisis',
  'economy',
  'imagine',
  'desparate',
  'need',
  'markets',
  'sustain',
  'industries',
  'people',
  'nolonger',
  'central',
  'control',
  'government',
  'jim',
  'rosenkranz',
  'never',
  'try',
  'teach',
  'pig',
  'sing',
  'cant',
  'done',
  'annoys',
  'pig'],
 ['brian',
  'ceccarelli',
  'apr',
  'gods',
  'promise',
  'john',
  'organization',
  'lunar',
  'planetary',
  'laboratory',
  'tucson',
  'az',
  'lines',
  'article',
  'brian',
  'kendig',
  'writes',
  'explain',
  'death',
  'jesus',
  'good',
  'thing',
  'would',
  'glad',
  'hear',
  'might',
  'even',
  'convert',
  'warned',
  'however',
  'ive',
  'heard',
  'common',
  'arguments',
  'dont',
  'convince',
  'warned',
  'job',
  'convert',
  'job',
  'holy',
  'spirit',
  'frankly',
  'make',
  'lousy',
  'one',
  'testify',
  'conversion',
  'god',
  'loop',
  'decide',
  'follow',
  'jesus',
  'indeed',
  'would',
  'estatic',
  'glory',
  'god',
  'brian',
  'ceccarelli'],
 ['dale',
  'adams',
  'help',
  'install',
  'ram',
  'centris',
  'organization',
  'apple',
  'computer',
  'inc',
  'lines',
  'article',
  'jason',
  'harvey',
  'titus',
  'writes',
  'asked',
  'everyone',
  'problems',
  'installing',
  'meg',
  'simm',
  'meg',
  'simm',
  'centris',
  'folks',
  'local',
  'apple',
  'store',
  'called',
  'folks',
  'cupertino',
  'found',
  'cant',
  'simms',
  'different',
  'speeds',
  'one',
  'machine',
  'even',
  'fast',
  'enough',
  'ie',
  'ns',
  'meg',
  'ns',
  'meg',
  'simms',
  'incompatibable',
  'thought',
  'people',
  'might',
  'want',
  'know',
  'theres',
  'absolutely',
  'reason',
  'differences',
  'dram',
  'access',
  'time',
  'would',
  'cause',
  'incompatibility',
  'would',
  'another',
  'difference',
  'simms',
  'problem',
  'ive',
  'often',
  'used',
  'memory',
  'different',
  'speeds',
  'problems',
  'whatsoever',
  'long',
  'fast',
  'faster',
  'minimum',
  'requirement',
  'fine',
  'curiosity',
  'actually',
  'try',
  'see',
  'problem',
  'told',
  'wouldnt',
  'work',
  'never',
  'tried',
  'also',
  'curiosity',
  'know',
  'exactly',
  'cupertino',
  'dealer',
  'talked',
  'id',
  'like',
  'find',
  'theyre',
  'basing',
  'recommendation',
  'dale',
  'adams',
  'apple',
  'computer',
  'inc'],
 ['andrew',
  'spencer',
  'rush',
  'fast',
  'organization',
  'case',
  'western',
  'reserve',
  'university',
  'cleveland',
  'oh',
  'usa',
  'lines',
  'reply',
  'andrew',
  'spencer',
  'nntp',
  'posting',
  'host',
  'slc',
  'ins',
  'cwru',
  'previous',
  'article',
  'gary',
  'mahan',
  'says',
  'good',
  'driver',
  'terrified',
  'mph',
  'thing',
  'fear',
  'going',
  'drivers',
  'switch',
  'left',
  'lane',
  'without',
  'using',
  'either',
  'rear',
  'view',
  'mirror',
  'flashers',
  'aint',
  'rush',
  'fun',
  'get',
  'want',
  'go',
  'much',
  'faster',
  'defense',
  'drivers',
  'right',
  'lane',
  'states',
  'people',
  'simply',
  'expect',
  'driving',
  'overtaken',
  'speed',
  'differential',
  'mph',
  'dont',
  'think',
  'stupid',
  'course',
  'exceptions',
  'programmed',
  'mph',
  'limit',
  'states',
  'look',
  'rear',
  'view',
  'always',
  'calculate',
  'future',
  'positions',
  'cars',
  'based',
  'speed',
  'differential',
  'dont',
  'get',
  'wrong',
  'love',
  'drive',
  'left',
  'lane',
  'fast',
  'overtake',
  'cars',
  'right',
  'slow',
  'tad',
  'bit',
  'rely',
  'judgement',
  'car',
  'recognize',
  'speed',
  'differential',
  'would',
  'stupid',
  'one',
  'satiate',
  'curiosity',
  'would',
  'make',
  'stupid',
  'one',
  'seems',
  'everybody',
  'aware',
  'enough',
  'going',
  'need',
  'calculate',
  'future',
  'position',
  'need',
  'look',
  'mirrors',
  'little',
  'glance',
  'around',
  'able',
  'tell',
  'much',
  'faster',
  'car',
  'going',
  'maybe',
  'precisely',
  'well',
  'enough',
  'know',
  'let',
  'around',
  'try',
  'pass',
  'know',
  'talking',
  'driver',
  'startled',
  'startled',
  'drivers',
  'cruising',
  'around',
  'mph',
  'im',
  'doin',
  'problem',
  'though',
  'saw',
  'fault',
  'barreling',
  'around',
  'fault',
  'paying',
  'attention',
  'task',
  'hand',
  'oddly',
  'enough',
  'since',
  'nd',
  'time',
  'happened',
  'around',
  'mo',
  'id',
  'liscence',
  'around',
  'mo',
  'havent',
  'startled',
  'ive',
  'passed',
  'cars',
  'roughly',
  'twice',
  'speed',
  'car',
  'another',
  'odd',
  'occurance',
  'fact',
  'seems',
  'happen',
  'long',
  'trips',
  'drive',
  'along',
  'doesnt',
  'happen',
  'even',
  'long',
  'trips',
  'adrenaline',
  'ive',
  'bad',
  'cop',
  'experiences',
  'speeding',
  'anything',
  'limit',
  'adrenalizing',
  'scared',
  'ill',
  'get',
  'caught',
  'maybe',
  'raise',
  'limit',
  'pay',
  'better',
  'attention',
  'curious',
  'otwo',
  'drew'],
 ['peter',
  'tapscott',
  'sale',
  'harvard',
  'graphics',
  'windows',
  'keywords',
  'harvard',
  'graphics',
  'sale',
  'organization',
  'xerox',
  'parc',
  'distribution',
  'us',
  'lines',
  'sale',
  'brand',
  'new',
  'shrinkwrapped',
  'harvard',
  'graphics',
  'windows',
  'list',
  'price',
  'cheapest',
  'pince',
  'computer',
  'shopper',
  'mail',
  'order',
  'price',
  'really',
  'slick',
  'package',
  'bike',
  'race',
  'cant',
  'return',
  'credit',
  'dilemma',
  'fire',
  'sale',
  'peter',
  'tapscott',
  'xerox',
  'palo',
  'alto',
  'research',
  'center',
  'internet',
  'xns',
  'net',
  'tapscott',
  'parc',
  'xerox'],
 ['jay',
  'heminger',
  'tiger',
  'stadium',
  'gif',
  'organization',
  'worcester',
  'polytechnic',
  'institute',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'fledgling',
  'wpi',
  'originator',
  'hate',
  'rude',
  'screw',
  'seating',
  'chart',
  'post',
  'stadium',
  'instead',
  'logistician',
  'reigns',
  'supreme',
  'go',
  'blue',
  'go',
  'tigers',
  'go',
  'pistons',
  'go',
  'lions',
  'go',
  'red',
  'wings'],
 ['gerry',
  'palo',
  'christianity',
  'repeated',
  'lives',
  'lines',
  'article',
  'writes',
  'gerry',
  'palo',
  'writes',
  'nothing',
  'christianity',
  'precludes',
  'idea',
  'repeated',
  'lives',
  'earth',
  'apostle',
  'paul',
  'romans',
  'points',
  'god',
  'chose',
  'jacob',
  'rather',
  'esau',
  'ancestor',
  'covenant',
  'people',
  'ultimately',
  'messiah',
  'made',
  'choice',
  'two',
  'boys',
  'still',
  'mothers',
  'womb',
  'therefore',
  'could',
  'possibly',
  'done',
  'anything',
  'good',
  'evil',
  'deserve',
  'appointed',
  'destinies',
  'admit',
  'possibility',
  'lived',
  'previous',
  'lives',
  'accordance',
  'asiatic',
  'idea',
  'karma',
  'present',
  'lives',
  'reward',
  'punishment',
  'past',
  'behaviour',
  'makes',
  'nonsense',
  'pauls',
  'whole',
  'point',
  'existence',
  'repeated',
  'earth',
  'lives',
  'destiny',
  'karma',
  'mean',
  'everything',
  'happens',
  'predetermined',
  'past',
  'deeds',
  'oriental',
  'view',
  'tends',
  'direction',
  'subscribe',
  'view',
  'god',
  'may',
  'choose',
  'one',
  'individual',
  'another',
  'fit',
  'instrument',
  'plans',
  'preclude',
  'development',
  'individual',
  'earthly',
  'life',
  'result',
  'longer',
  'course',
  'development',
  'rudolf',
  'steiner',
  'subscribe',
  'oriental',
  'view',
  'inexorable',
  'mechanistic',
  'karma',
  'determining',
  'everything',
  'befalls',
  'one',
  'kind',
  'shriveled',
  'caricature',
  'much',
  'greater',
  'law',
  'context',
  'deed',
  'christ',
  'golgotha',
  'ultimate',
  'salvation',
  'freedom',
  'human',
  'working',
  'christ',
  'seen',
  'master',
  'theme',
  'indeed',
  'new',
  'impulse',
  'completely',
  'free',
  'karma',
  'christ',
  'incarnated',
  'flesh',
  'debt',
  'karma',
  'sin',
  'oriental',
  'concepts',
  'reincarnation',
  'karma',
  'even',
  'trivialized',
  'mechanized',
  'new',
  'age',
  'teachings',
  'incorrectly',
  'assume',
  'jesus',
  'christ',
  'reincarnation',
  'master',
  'avatar',
  'etc',
  'teaching',
  'reincarnation',
  'karma',
  'also',
  'concept',
  'continuing',
  'individuality',
  'one',
  'life',
  'next',
  'buddhism',
  'important',
  'concept',
  'resurrection',
  'body',
  'ultimate',
  'continuity',
  'whole',
  'human',
  'ultimate',
  'resurrection',
  'judgement',
  'last',
  'day',
  'another',
  'biblical',
  'passage',
  'also',
  'bearing',
  'tenth',
  'chapter',
  'john',
  'devoted',
  'almost',
  'entirely',
  'man',
  'born',
  'blind',
  'clearly',
  'jesus',
  'tells',
  'disciples',
  'past',
  'karma',
  'parents',
  'led',
  'blindness',
  'rather',
  'new',
  'impulse',
  'revealed',
  'note',
  'refute',
  'disciples',
  'question',
  'fact',
  'ask',
  'matter',
  'course',
  'question',
  'stated',
  'self',
  'evident',
  'one',
  'two',
  'possibilities',
  'existed',
  'either',
  'sins',
  'man',
  'obviously',
  'incarnation',
  'sins',
  'parents',
  'fact',
  'even',
  'asked',
  'first',
  'possibility',
  'indicates',
  'awareness',
  'idea',
  'part',
  'form',
  'christs',
  'answer',
  'indicates',
  'disagree',
  'also',
  'matthew',
  'jesus',
  'says',
  'straight',
  'john',
  'baptist',
  'care',
  'accept',
  'elias',
  'come',
  'also',
  'emphasizes',
  'gospels',
  'positive',
  'teaching',
  'either',
  'way',
  'reincarnation',
  'fact',
  'happens',
  'human',
  'death',
  'last',
  'day',
  'even',
  'jesus',
  'push',
  'teaching',
  'people',
  'ready',
  'embrace',
  'care',
  'accept',
  'took',
  'care',
  'point',
  'bible',
  'teaches',
  'reincarnation',
  'deny',
  'either',
  'much',
  'scripture',
  'fundamental',
  'christian',
  'doctrine',
  'becomes',
  'understandable',
  'reincarnation',
  'understood',
  'right',
  'way',
  'pointedly',
  'used',
  'repeated',
  'earth',
  'lives',
  'distinguish',
  'little',
  'oriental',
  'doctrines',
  'usually',
  'associated',
  'word',
  'reincarnation',
  'phrase',
  'rudolf',
  'steiners',
  'wiederholte',
  'erdenleben',
  'noted',
  'idea',
  'needed',
  'arise',
  'new',
  'insight',
  'west',
  'completely',
  'free',
  'eastern',
  'tradition',
  'eighteenth',
  'nineteenth',
  'centuries',
  'important',
  'expression',
  'lessings',
  'education',
  'human',
  'race',
  'return',
  'original',
  'point',
  'pauls',
  'statement',
  'jacob',
  'esau',
  'contradict',
  'idea',
  'repeated',
  'earth',
  'lives',
  'karma',
  'principles',
  'receive',
  'fulfillment',
  'incarnation',
  'death',
  'resurrection',
  'ascension',
  'return',
  'jesus',
  'christ',
  'view',
  'regards',
  'gerry',
  'palo'],
 ['nancy',
  'milligan',
  'need',
  'advice',
  'doctor',
  'patient',
  'relationship',
  'problem',
  'organization',
  'netcom',
  'line',
  'communication',
  'services',
  'guest',
  'lines',
  'newsreader',
  'tin',
  'version',
  'pl',
  'id',
  'dump',
  'rude',
  'rude',
  'seems',
  'enjoys',
  'belittling',
  'humiliating',
  'dont',
  'dump',
  'write',
  'tell',
  'firing',
  'think',
  'sending',
  'copy',
  'letter',
  'whoever',
  'charge',
  'clinic',
  'works',
  'applicable',
  'maybe',
  'even',
  'ama',
  'dont',
  'vindictive',
  'letter',
  'truthful',
  'firm',
  'dont',
  'victim',
  'put',
  'take',
  'control',
  'itll',
  'make',
  'feel',
  'great',
  'nancy',
  'nancy',
  'milligan'],
 ['joni',
  'ciarletta',
  'master',
  'cylinder',
  'organization',
  'university',
  'southern',
  'california',
  'los',
  'angeles',
  'ca',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'mizar',
  'usc',
  'thanks',
  'everyone',
  'responded',
  'honda',
  'accord',
  'break',
  'question',
  'seem',
  'master',
  'cylinder',
  'bad',
  'mechanic',
  'double',
  'check',
  'sure',
  'isnt',
  'something',
  'simpler',
  'cheaper',
  'first',
  'responses',
  'sounds',
  'like',
  'likely',
  'master',
  'cylinder',
  'thanks',
  'everyone',
  'joni'],
 ['christians',
  'martial',
  'arts',
  'organization',
  'lines',
  'greetings',
  'salutations',
  'would',
  'like',
  'get',
  'touch',
  'people',
  'consider',
  'christians',
  'define',
  'martial',
  'arts',
  'topics',
  'discussion',
  'particular',
  'martial',
  'art',
  'view',
  'relationship',
  'christianity',
  'art',
  'view',
  'relationship',
  'christianity',
  'art',
  'christian',
  'participate',
  'shouldnt',
  'christian',
  'participate',
  'biblical',
  'views',
  'pro',
  'con',
  'example',
  'heard',
  'one',
  'fellow',
  'tried',
  'karate',
  'christ',
  'thing',
  'wasnt',
  'aside',
  'involved',
  'official',
  'way',
  'organization',
  'called',
  'christian',
  'black',
  'belt',
  'association',
  'would',
  'also',
  'like',
  'distribute',
  'info',
  'regarding',
  'upcoming',
  'events',
  'interested',
  'wont',
  'put',
  'mailing',
  'list',
  'name',
  'sold',
  'however',
  'intested',
  'email',
  'list',
  'let',
  'know',
  'interested',
  'email',
  'replies',
  'cross',
  'posted',
  'groups',
  'dont',
  'normally',
  'read',
  'anyone',
  'wants',
  'summary',
  'course',
  'going',
  'discussion',
  'let',
  'know',
  'shalom',
  'robert',
  'switzer',
  'bell',
  'labs',
  'laurel',
  'ave',
  'middletown',
  'nj',
  'usa',
  'amateur',
  'radio',
  'operator',
  'ka',
  'czu',
  'robert',
  'switzer'],
 ['doug',
  'caprette',
  'cs',
  'chemical',
  'agent',
  'organization',
  'cdp',
  'vlbi',
  'lines',
  'anyone',
  'provide',
  'information',
  'cs',
  'chemical',
  'agent',
  'tear',
  'gas',
  'used',
  'recently',
  'waco',
  'chemically',
  'effects',
  'body',
  'regards',
  'hughes',
  'stx',
  'code',
  'gsfc',
  'doug',
  'caprette',
  'lanham',
  'maryland',
  'greenbelt',
  'md',
  'path',
  'laid',
  'one',
  'stone',
  'time',
  'giant'],
 ['pekka',
  'siltanen',
  'detecting',
  'double',
  'points',
  'bezier',
  'curves',
  'nntp',
  'posting',
  'host',
  'hutcs',
  'cs',
  'hut',
  'fi',
  'organization',
  'helsinki',
  'university',
  'technology',
  'finland',
  'lines',
  'article',
  'jeff',
  'bulf',
  'writes',
  'article',
  'ferdinand',
  'oeinck',
  'writes',
  'im',
  'looking',
  'information',
  'detecting',
  'calculating',
  'double',
  'point',
  'cusp',
  'bezier',
  'curve',
  'algorithm',
  'literature',
  'reference',
  'mail',
  'appreciated',
  'useful',
  'article',
  'one',
  'issues',
  'transactions',
  'graphics',
  'believe',
  'maureen',
  'stone',
  'one',
  'authors',
  'sorry',
  'specific',
  'dont',
  'reference',
  'stone',
  'derose',
  'geometric',
  'parametric',
  'cubic',
  'curves',
  'acm',
  'trans',
  'graphics',
  'manocha',
  'canny',
  'detecting',
  'cusps',
  'inflection',
  'points',
  'curves',
  'computer',
  'aided',
  'geometric',
  'design',
  'pekka',
  'siltanen'],
 ['dominik',
  'westner',
  'need',
  'viewer',
  'gl',
  'files',
  'organization',
  'maths',
  'dept',
  'dundee',
  'university',
  'scotland',
  'uk',
  'lines',
  'nntp',
  'posting',
  'host',
  'cardhu',
  'mcs',
  'dundee',
  'ac',
  'uk',
  'newsreader',
  'tin',
  'version',
  'pl',
  'hi',
  'says',
  'pd',
  'viewer',
  'gl',
  'files',
  'thanks',
  'dominik'],
 ['good',
  'neighbor',
  'political',
  'hypocrisy',
  'test',
  'organization',
  'southwest',
  'mo',
  'state',
  'univ',
  'lines',
  'nntp',
  'posting',
  'host',
  'vma',
  'smsu',
  'newsreader',
  'nnr',
  'vm',
  's_',
  'article',
  'michael',
  'thomas',
  'writes',
  'article',
  'jeffry',
  'beach',
  'writes',
  'think',
  'shouldnt',
  'drugs',
  'legalized',
  'would',
  'lower',
  'cost',
  'definitely',
  'make',
  'safer',
  'yes',
  'dont',
  'think',
  'want',
  'start',
  'using',
  'criterion',
  'determine',
  'legality',
  'get',
  'people',
  'really',
  'dont',
  'want',
  'waste',
  'time',
  'battle',
  'legalization',
  'drugs',
  'really',
  'want',
  'get',
  'prove',
  'idiotic',
  'idea',
  'think',
  'bad',
  'good',
  'ol',
  'southwest',
  'missouri',
  'state',
  'parties',
  'running',
  'student',
  'body',
  'president',
  'theres',
  'token',
  'sorority',
  'fraternity',
  'faces',
  'theres',
  'president',
  'vice',
  'president',
  'norml',
  'campaigned',
  'handing',
  'condoms',
  'listing',
  'qualifications',
  'listen',
  'really',
  'well',
  'makes',
  'sick',
  'party',
  'established',
  'many',
  'things',
  'ruining',
  'country',
  'like',
  'think',
  'ill',
  'run',
  'next',
  'year',
  'darin',
  'keener',
  'pc',
  'idea',
  'catering',
  'splinter',
  'groups',
  'way',
  'go'],
 ['ryan',
  'scharfy',
  'new',
  'study',
  'gay',
  'percentage',
  'nntp',
  'posting',
  'host',
  'magnusug',
  'magnus',
  'acs',
  'ohio',
  'state',
  'organization',
  'ohio',
  'state',
  'university',
  'lines',
  'article',
  'la',
  'wrence',
  'foard',
  'writes',
  'article',
  'clayton',
  'cramer',
  'writes',
  'santa',
  'rosa',
  'cal',
  'press',
  'democrat',
  'april',
  'male',
  'sex',
  'survey',
  'gay',
  'activity',
  'low',
  'new',
  'natonal',
  'study',
  'male',
  'sexual',
  'behavior',
  'thorough',
  'examination',
  'american',
  'mens',
  'sexual',
  'practices',
  'published',
  'since',
  'kinsey',
  'report',
  'four',
  'decades',
  'ago',
  'shows',
  'percent',
  'men',
  'surveyed',
  'engaged',
  'homosexual',
  'sex',
  'percent',
  'considered',
  'exclusively',
  'homosexual',
  'figures',
  'homosexuality',
  'study',
  'released',
  'wednesday',
  'alan',
  'guttmacher',
  'institute',
  'significantly',
  'lower',
  'percent',
  'figure',
  'part',
  'conventional',
  'wisdom',
  'since',
  'published',
  'kinsey',
  'report',
  'less',
  'gays',
  'gays',
  'claim',
  'interesting',
  'see',
  'reaction',
  'million',
  'queers',
  'gather',
  'washington',
  'dc',
  'million',
  'us',
  'event',
  'unprecidented',
  'history',
  'dream',
  'abortion',
  'african',
  'american',
  'civil',
  'rights',
  'rallies',
  'dont',
  'even',
  'bring',
  'half',
  'article',
  'also',
  'contains',
  'numbers',
  'number',
  'sexual',
  'partners',
  'median',
  'number',
  'sexual',
  'partners',
  'men',
  'dont',
  'forget',
  'partners',
  'wondering',
  'wasnt',
  'getting',
  'laid',
  'compared',
  'table',
  'already',
  'posted',
  'masters',
  'johnson',
  'kolodny',
  'showing',
  'male',
  'homosexual',
  'partners',
  'apparent',
  'homosexual',
  'men',
  'dramatically',
  'promiscuous',
  'general',
  'male',
  'population',
  'study',
  'show',
  'number',
  'sexual',
  'contacts',
  'said',
  'homosexual',
  'number',
  'inconvient',
  'cares',
  'shame',
  'dont',
  'breakdown',
  'straight',
  'men',
  'vs',
  'gay',
  'bi',
  'men',
  'would',
  'show',
  'even',
  'dramatically',
  'much',
  'promiscuous',
  'gay',
  'bi',
  'men',
  'fuck',
  'actually',
  'bet',
  'gay',
  'bi',
  'men',
  'promiscuous',
  'gay',
  'men',
  'could',
  'option',
  'living',
  'straight',
  'life',
  'social',
  'pressures',
  'probably',
  'would',
  'least',
  'try',
  'join',
  'pythagorean',
  'reform',
  'church',
  'repent',
  'evil',
  'irrational',
  'numbers',
  'bean',
  'eating',
  'ways',
  'accept',
  'heart',
  'call',
  'pythagorean',
  'reform',
  'church',
  'bbs',
  'know',
  'fact',
  'homosexuality',
  'comparatively',
  'high',
  'hitlers',
  'storm',
  'troopers',
  'sa',
  'came',
  'power',
  'wonder',
  'got',
  'put',
  'triangles',
  'ryan'],
 ['brian',
  'ceccarelli',
  'apr',
  'gods',
  'promise',
  'john',
  'organization',
  'lunar',
  'planetary',
  'laboratory',
  'tucson',
  'az',
  'lines',
  'brian',
  'kendig',
  'writes',
  'lev',
  'life',
  'flesh',
  'blood',
  'given',
  'upon',
  'altar',
  'make',
  'atonement',
  'souls',
  'blood',
  'makes',
  'atonement',
  'soul',
  'old',
  'testament',
  'big',
  'eye',
  'eye',
  'business',
  'makes',
  'sense',
  'leviticus',
  'would',
  'support',
  'physical',
  'injury',
  'repay',
  'moral',
  'wrongdoing',
  'brian',
  'guess',
  'missed',
  'point',
  'scale',
  'cold',
  'hot',
  'degrees',
  'kelvin',
  'know',
  'sanctification',
  'ive',
  'taught',
  'sunday',
  'school',
  'catechism',
  'class',
  'theology',
  'classes',
  'even',
  'still',
  'cant',
  'accept',
  'maybe',
  'im',
  'still',
  'understanding',
  'maybe',
  'im',
  'understanding',
  'well',
  'understand',
  'bottom',
  'heart',
  'know',
  'punishment',
  'innocent',
  'man',
  'wrong',
  'yes',
  'agree',
  'jesus',
  'punishment',
  'say',
  'jesus',
  'regard',
  'death',
  'punishment',
  'ive',
  'tried',
  'repeatedly',
  'course',
  'several',
  'years',
  'accept',
  'cant',
  'good',
  'wouldnt',
  'either',
  'way',
  'understand',
  'explain',
  'death',
  'jesus',
  'good',
  'thing',
  'would',
  'glad',
  'hear',
  'might',
  'even',
  'convert',
  'warned',
  'however',
  'ive',
  'heard',
  'common',
  'arguments',
  'dont',
  'convince',
  'ask',
  'jesus',
  'said',
  'john',
  'isnt',
  'mystery',
  'anyone',
  'certainly',
  'need',
  'persuasive',
  'argument',
  'read',
  'jesuss',
  'reply',
  'question',
  'jesus',
  'gives',
  'reasons',
  'john',
  'one',
  'obvious',
  'reason',
  'jesus',
  'died',
  'everything',
  'else',
  'nothing',
  'punishment',
  'could',
  'rise',
  'life',
  'would',
  'stop',
  'doubting',
  'believe',
  'john',
  'fact',
  'jesus',
  'rose',
  'dead',
  'hope',
  'rise',
  'dead',
  'obvious',
  'point',
  'overlook',
  'without',
  'obvious',
  'point',
  'would',
  'hope',
  'faith',
  'would',
  'vanity',
  'jesus',
  'suffer',
  'death',
  'ask',
  'jesus',
  'jesus',
  'says',
  'john',
  'thats',
  'mystery',
  'either',
  'world',
  'hates',
  'without',
  'reason',
  'direct',
  'proclamation',
  'far',
  'humans',
  'botch',
  'things',
  'thus',
  'much',
  'need',
  'saviour',
  'cant',
  'brian',
  'accept',
  'world',
  'cannot',
  'accept',
  'neither',
  'sees',
  'knows',
  'john',
  'animosity',
  'lack',
  'knowledge',
  'comes',
  'twistings',
  'roberts',
  'daily',
  'verses',
  'convincing',
  'testimony',
  'truth',
  'john',
  'pray',
  'hope',
  'blurt',
  'animosity',
  'lack',
  'knowledge',
  'perfect',
  'either',
  'regardless',
  'thank',
  'god',
  'jesus',
  'revealed',
  'without',
  'id',
  'also',
  'bumbling',
  'blindly',
  'though',
  'arrogantly',
  'slandering',
  'person',
  'created',
  'loves'],
 ['tim',
  'clock',
  'go',
  'hezbollah',
  'nntp',
  'posting',
  'host',
  'orion',
  'oac',
  'uci',
  'organization',
  'university',
  'california',
  'irvine',
  'lines',
  'article',
  'brad',
  'hernlem',
  'writes',
  'article',
  'tim',
  'clock',
  'writes',
  'suggesting',
  'guerillas',
  'population',
  'cover',
  'israel',
  'totally',
  'back',
  'easiest',
  'way',
  'get',
  'away',
  'attacking',
  'another',
  'innocent',
  'shield',
  'hope',
  'respects',
  'innocent',
  'lives',
  'tell',
  'tim',
  'guerillas',
  'wrong',
  'assuming',
  'using',
  'civilians',
  'cover',
  'assuming',
  'also',
  'come',
  'brad',
  'going',
  'get',
  'anywhere',
  'discussion',
  'doesnt',
  'help',
  'bring',
  'elements',
  'never',
  'addressed',
  'commented',
  'way',
  'made',
  'comment',
  'right',
  'wrong',
  'civilians',
  'used',
  'cover',
  'placed',
  'israelis',
  'guerillas',
  'injured',
  'parties',
  'continue',
  'fight',
  'purpose',
  'armys',
  'military',
  'uniforms',
  'set',
  'members',
  'apart',
  'civilians',
  'civilians',
  'thought',
  'side',
  'combatants',
  'think',
  'meaning',
  'behind',
  'intention',
  'effect',
  'army',
  'purposely',
  'uniforms',
  'goes',
  'way',
  'look',
  'like',
  'civilians',
  'judging',
  'benefit',
  'receive',
  'cover',
  'important',
  'harm',
  'come',
  'civilians',
  'comment',
  'israeli',
  'experience',
  'saying',
  'guerillas',
  'responsibility',
  'putting',
  'civilians',
  'middle',
  'fight',
  'putting',
  'uniforms',
  'living',
  'apart',
  'civilians',
  'barracks',
  'etc',
  'guerillas',
  'would',
  'significantly',
  'lower',
  'risk',
  'civilians',
  'guerillas',
  'arent',
  'putting',
  'greater',
  'risk',
  'absolutely',
  'ask',
  'set',
  'apart',
  'wearing',
  'uniforms',
  'ready',
  'made',
  'cover',
  'us',
  'civilians',
  'makes',
  'sense',
  'point',
  'view',
  'cover',
  'used',
  'guerillas',
  'accept',
  'responsibility',
  'subsequent',
  'harm',
  'civilians',
  'buffer',
  'zone',
  'prevent',
  'attacks',
  'israel',
  'working',
  'neccessary',
  'israeli',
  'guns',
  'pound',
  'lebanese',
  'villages',
  'kill',
  'try',
  'infiltrate',
  'buffer',
  'zone',
  'see',
  'shelling',
  'villages',
  'called',
  'retaliation',
  'getting',
  'back',
  'getting',
  'even',
  'doesnt',
  'make',
  'sense',
  'shell',
  'villages',
  'least',
  'shows',
  'reckless',
  'disregard',
  'israeli',
  'government',
  'lives',
  'civilians',
  'agree',
  'always',
  'thought',
  'israels',
  'bombing',
  'sortees',
  'bombing',
  'policy',
  'stupid',
  'thoughtless',
  'inhumane',
  'ineffective',
  'reason',
  'israel',
  'passive',
  'wait',
  'attackers',
  'chose',
  'act',
  'every',
  'reason',
  'believe',
  'taking',
  'fight',
  'enemy',
  'stop',
  'attacks',
  'said',
  'previously',
  'israel',
  'spent',
  'several',
  'decades',
  'sitting',
  'passively',
  'side',
  'border',
  'acting',
  'stop',
  'attacks',
  'attackers',
  'entered',
  'israeli',
  'territory',
  'didnt',
  'work',
  'well',
  'host',
  'arab',
  'state',
  'little',
  'nothing',
  'try',
  'stop',
  'attacks',
  'side',
  'border',
  'israel',
  'number',
  'attacks',
  'considerably',
  'higher',
  'physical',
  'psychological',
  'impact',
  'civilians',
  'caught',
  'path',
  'whole',
  'bit',
  'attacks',
  'israel',
  'neighboring',
  'arab',
  'states',
  'start',
  'also',
  'hope',
  'happen',
  'occur',
  'arab',
  'states',
  'show',
  'prepared',
  'take',
  'responsibility',
  'duty',
  'stop',
  'guerilla',
  'attacks',
  'israel',
  'soil',
  'prove',
  'provide',
  'guaratees',
  'way',
  'israel',
  'going',
  'accept',
  'word',
  'past',
  'attitude',
  'tolerance',
  'towards',
  'anti',
  'israel',
  'guerillas',
  'residence',
  'israel',
  'willing',
  'accept',
  'word',
  'others',
  'imho',
  'business',
  'wasting',
  'others',
  'time',
  'coming',
  'peace',
  'talks',
  'another',
  'selectively',
  'applied',
  'statement',
  'reason',
  'drawn',
  'impasse',
  'ababs',
  'palestinians',
  'israelis',
  'neither',
  'side',
  'willing',
  'accept',
  'word',
  'criteria',
  'everyone',
  'stay',
  'away',
  'negotiations',
  'precisely',
  'palestinians',
  'recent',
  'pisga',
  'proposal',
  'interim',
  'period',
  'negotiations',
  'leading',
  'full',
  'autonomy',
  'demanding',
  'conditions',
  'essentially',
  'define',
  'autonomy',
  'already',
  'trust',
  'israel',
  'follow',
  'entire',
  'process',
  'allow',
  'palestinians',
  'reach',
  'full',
  'autonomy',
  'understand',
  'accept',
  'viewpoint',
  'palestinians',
  'israels',
  'view',
  'arabs',
  'palestinians',
  'different',
  'trust',
  'arab',
  'palestinians',
  'words',
  'since',
  'dont',
  'reluctant',
  'give',
  'tangible',
  'assets',
  'land',
  'control',
  'areas',
  'exchange',
  'words',
  'reason',
  'also',
  'concerned',
  'sorts',
  'guarantees',
  'arabs',
  'follow',
  'part',
  'agreement',
  'reached',
  'dont',
  'see',
  'statement',
  'made',
  'ways',
  'lebanon',
  'interested',
  'peace',
  'accept',
  'word',
  'israel',
  'attacks',
  'cause',
  'war',
  'disarming',
  'hizbollah',
  'remove',
  'cause',
  'continued',
  'occupancy',
  'absolutely',
  'arabs',
  'palestinians',
  'asking',
  'first',
  'israelis',
  'word',
  'relation',
  'agreement',
  'demanded',
  'first',
  'land',
  'issue',
  'land',
  'one',
  'party',
  'finally',
  'gets',
  'hold',
  'land',
  'party',
  'totally',
  'irrelevent',
  'possession',
  'land',
  'words',
  'absolutely',
  'power',
  'whether',
  'israel',
  'chooses',
  'keeps',
  'word',
  'get',
  'land',
  'back',
  'afterall',
  'israel',
  'already',
  'staged',
  'two',
  'parts',
  'withdrawal',
  'areas',
  'occupied',
  'lebanon',
  'slg',
  'tim',
  'ignoring',
  'fact',
  'palestinians',
  'lebanon',
  'disarmed',
  'hezbollah',
  'remains',
  'independent',
  'militia',
  'hezbollah',
  'attack',
  'israel',
  'except',
  'times',
  'idf',
  'burned',
  'sheikh',
  'mosavi',
  'wife',
  'young',
  'son',
  'major',
  'armaments',
  'allowing',
  'people',
  'wage',
  'civil',
  'wars',
  'removed',
  'weapons',
  'needed',
  'cross',
  'border',
  'attacks',
  'still',
  'remain',
  'extent',
  'rocket',
  'attacks',
  'still',
  'continue',
  'commando',
  'raids',
  'require',
  'easily',
  'concealed',
  'weapons',
  'refined',
  'disregard',
  'human',
  'life',
  'others',
  'attacks',
  'also',
  'continue',
  'course',
  'israel',
  'would',
  'withdraw',
  'lebanon',
  'stop',
  'assassinating',
  'people',
  'shelling',
  'villages',
  'wouldnt',
  'make',
  'lebanese',
  'mad',
  'bat',
  'guano',
  'situation',
  'call',
  'existed',
  'attacks',
  'commonplace',
  'furthermore',
  'hezbollah',
  'subsequently',
  'disarmed',
  'would',
  'possible',
  'way',
  'groups',
  'effectively',
  'disarmed',
  'unless',
  'state',
  'authoritarian',
  'syrias',
  'way',
  'lebanon',
  'take',
  'upon',
  'constantly',
  'patrol',
  'entire',
  'border',
  'israel',
  'essentially',
  'mirroring',
  'israels',
  'border',
  'secirity',
  'side',
  'prove',
  'isreal',
  'committed',
  'protecting',
  'israel',
  'attack',
  'lebanese',
  'territory',
  'syria',
  'leaves',
  'say',
  'lebanon',
  'able',
  'retain',
  'control',
  'syria',
  'stays',
  'thay',
  'may',
  'even',
  'dangerous',
  'israel',
  'tim',
  'last',
  'time',
  'recall',
  'trouble',
  'syrian',
  'border',
  'lately',
  'eh',
  'thats',
  'said',
  'ok',
  'doesnt',
  'mean',
  'syria',
  'take',
  'lebanon',
  'dont',
  'think',
  'israel',
  'lebanon',
  'would',
  'like',
  'sides',
  'need',
  'receive',
  'something',
  'tangible',
  'arabs',
  'palestinians',
  'looking',
  'land',
  'demanding',
  'receive',
  'prior',
  'giving',
  'anything',
  'israel',
  'israel',
  'two',
  'problems',
  'gives',
  'real',
  'land',
  'exposing',
  'changed',
  'geostrategic',
  'situation',
  'change',
  'doesnt',
  'help',
  'israels',
  'position',
  'gives',
  'land',
  'needs',
  'receive',
  'something',
  'return',
  'compensate',
  'increased',
  'risks',
  'tim'],
 ['lazer',
  'specs',
  'organization',
  'worcester',
  'polytechnic',
  'institute',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'wpi',
  'wpi',
  'id',
  'appreciate',
  'greatly',
  'someone',
  'could',
  'mail',
  'following',
  'know',
  'one',
  'thats',
  'fine',
  'specs',
  'esp',
  'compares',
  'pentium',
  'specs',
  'estimated',
  'cost',
  'release',
  'date',
  'etc',
  'im',
  'interested',
  'speeds',
  'systems',
  'run',
  'windows',
  'nt',
  'risc',
  'whatever',
  'costs',
  'bus',
  'info',
  'register',
  'info',
  'technical',
  'info',
  'hoping',
  'win',
  'yet',
  'another',
  'battle',
  'intel',
  'people',
  'thanks',
  'info',
  'give',
  'thanks',
  'lazer',
  'patrick',
  'delahanty',
  'warning',
  'mst',
  'star',
  'trek',
  'fan',
  'macintosh',
  'user',
  'internet',
  'co',
  'sysop',
  'blues',
  'bbs',
  'call',
  'blues',
  'bbs',
  'macintosh',
  'user',
  'macintosh',
  'ms',
  'dos',
  'files',
  'free',
  'usenet'],
 ['beverly',
  'zalan',
  'frequent',
  'nosebleeds',
  'reply',
  'beverly',
  'zalan',
  'organization',
  'chevron',
  'lines',
  'newsreader',
  'intercon',
  'tcp',
  'connect',
  'ii',
  'article',
  'robert',
  'allison',
  'writes',
  'nosebleeds',
  'week',
  'result',
  'genetic',
  'predisposition',
  'weak',
  'capillary',
  'walls',
  'osler',
  'weber',
  'rendu',
  'fortunately',
  'nosebleed',
  'short',
  'duration',
  'anyone',
  'know',
  'method',
  'reduce',
  'frequency',
  'younger',
  'brothers',
  'tried',
  'skin',
  'transplant',
  'thigh',
  'nose',
  'lining',
  'nosebleeds',
  'soon',
  'returned',
  'ive',
  'seen',
  'reference',
  'herb',
  'called',
  'rutin',
  'supposed',
  'help',
  'id',
  'like',
  'hear',
  'experiences',
  'techniques',
  'year',
  'son',
  'plagued',
  'lots',
  'vaseline',
  'nose',
  'night',
  'seems',
  'keep',
  'control',
  'let',
  'get',
  'bopped',
  'hell',
  'recur',
  'days',
  'also',
  'allergies',
  'colds',
  'dry',
  'air',
  'seem',
  'contribute',
  'vaseline',
  'ointment',
  'neosporin',
  'seem',
  'keep',
  'recurring',
  'bev',
  'zalan'],
 ['gregg',
  'jaeger',
  'anecdote',
  'islam',
  'organization',
  'boston',
  'university',
  'physics',
  'department',
  'lines',
  'article',
  'benedikt',
  'rosenau',
  'writes',
  'article',
  'gregg',
  'jaeger',
  'writes',
  'brutal',
  'system',
  'filtered',
  'leniency',
  'lenient',
  'huh',
  'rate',
  'public',
  'floggings',
  'floggings',
  'chopping',
  'hands',
  'heads',
  'body',
  'parts',
  'stoning',
  'dont',
  'problem',
  'floggings',
  'particularly',
  'offenders',
  'given',
  'chance',
  'change',
  'behavior',
  'floggings',
  'given',
  'problem',
  'maiming',
  'general',
  'whatever',
  'means',
  'opinion',
  'one',
  'maimed',
  'another',
  'maimed',
  'case',
  'rape',
  'victim',
  'maimed',
  'physically',
  'emotionally',
  'wouldnt',
  'problem',
  'maiming',
  'rapists',
  'obviously',
  'wouldnt',
  'problem',
  'maiming',
  'murderers',
  'either',
  'may',
  'ask',
  'opinion',
  'became',
  'muslim',
  'sure',
  'yes',
  'see',
  'dont',
  'think',
  'rape',
  'murder',
  'dealt',
  'lightly',
  'interested',
  'leniency',
  'leniencys',
  'sake',
  'apparently',
  'think',
  'people',
  'simply',
  'told',
  'thing',
  'simple',
  'chance',
  'misjudgements',
  'misjudgments',
  'avoided',
  'much',
  'possible',
  'suspect',
  'pretty',
  'unlikely',
  'given',
  'requirement',
  'repeated',
  'offenses',
  'misjudgments',
  'likely',
  'orient',
  'place',
  'single',
  'character',
  'ignorance',
  'exposes',
  'nicely',
  'read',
  'carefully',
  'said',
  'orient',
  'shows',
  'primitive',
  'machism',
  'well',
  'specific',
  'words',
  'orient',
  'probably',
  'mind',
  'need',
  'contains',
  'sufficient',
  'information',
  'detail',
  'possible',
  'necessary',
  'europe',
  'shows',
  'civilized',
  'bullshit',
  'bullshit',
  'time',
  'put',
  'shut',
  'youve',
  'substantiated',
  'nothing',
  'blabbering',
  'like',
  'islamists',
  'talk',
  'west',
  'great',
  'satan',
  'youre',
  'guilty',
  'stupidities',
  'love',
  'compare',
  'lines',
  'common',
  'plea',
  'fellow',
  'believers',
  'call',
  'others',
  'names',
  'case',
  'substantiate',
  'quran',
  'allows',
  'one',
  'beats',
  'ones',
  'wife',
  'submission',
  'really',
  'care',
  'give',
  'chapter',
  'verse',
  'could',
  'discuss',
  'primitive',
  'machism',
  'refers',
  'misspelt',
  'fault',
  'orient',
  'follows',
  'quran',
  'youll',
  'better',
  'sorry',
  'havent',
  'put',
  'enough',
  'islam',
  'expresses',
  'extramarital',
  'sex',
  'extramarital',
  'sex',
  'subset',
  'sex',
  'suppressedin',
  'islam',
  'marial',
  'sexis',
  'allowed',
  'encouraged',
  'islam',
  'many',
  'branches',
  'christianity',
  'misses',
  'point',
  'read',
  'part',
  'urge',
  'sex',
  'religions',
  'run',
  'around',
  'telling',
  'people',
  'sex',
  'piece',
  'cake',
  'two',
  'reasons',
  'suppressing',
  'strong',
  'urge',
  'needs',
  'strong',
  'measures',
  'business',
  'anyway',
  'believe',
  'wish',
  'thought',
  'trying',
  'make',
  'argument',
  'reading',
  'opinions',
  'argument',
  'doubt',
  'validity',
  'premises',
  'change',
  'want',
  'criticize',
  'time',
  'put',
  'shut',
  'argument',
  'dont',
  'like',
  'religions',
  'suppress',
  'sex',
  'irrelevant',
  'argument',
  'youd',
  'like',
  'generalize',
  'objective',
  'statement',
  'fine',
  'response',
  'given',
  'reason',
  'statement',
  'sex',
  'business',
  'religion',
  'one',
  'arguments',
  'urge',
  'sex',
  'adolescents',
  'strong',
  'overly',
  'strong',
  'measures',
  'required',
  'suppress',
  'urge',
  'sex',
  'strong',
  'adult',
  'adult',
  'make',
  'commensurate',
  'effort',
  'find',
  'marriage',
  'partner',
  'gregg'],
 ['bill',
  'conner',
  'thoughts',
  'nntp',
  'posting',
  'host',
  'okcforum',
  'osrhe',
  'organization',
  'okcforum',
  'unix',
  'users',
  'group',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'kent',
  'sandvik',
  'wrote',
  'article',
  'robert',
  'beauchaine',
  'wrote',
  'someone',
  'spank',
  'im',
  'wrong',
  'didnt',
  'lord',
  'liar',
  'lunatic',
  'originate',
  'lewis',
  'whos',
  'campollo',
  'fellow',
  'anyway',
  'think',
  'isnt',
  'clear',
  'connection',
  'believe',
  'absurd',
  'notion',
  'one',
  'original',
  'christians',
  'origen',
  'similar',
  'statement',
  'attributed',
  'anselm',
  'believe',
  'may',
  'understand',
  'cases',
  'reason',
  'somewhat',
  'less',
  'exalted',
  'anyone',
  'posting',
  'could',
  'accept',
  'means',
  'neither',
  'statement',
  'properly',
  'analysed',
  'venue',
  'bill'],
 ['message',
  'mr',
  'president',
  'know',
  'happened',
  'keywords',
  'success',
  'lines',
  'nntp',
  'posting',
  'host',
  'ccsua',
  'ctstateu',
  'organization',
  'yale',
  'university',
  'department',
  'computer',
  'science',
  'new',
  'ct',
  'told',
  'friends',
  'mine',
  'two',
  'weeks',
  'ago',
  'koresh',
  'dead',
  'fbi',
  'batf',
  'could',
  'let',
  'man',
  'like',
  'live',
  'testimonial',
  'stupidity',
  'lies',
  'everyone',
  'gets',
  'crazy',
  'let',
  'say',
  'koresh',
  'crazy',
  'bed',
  'bug',
  'government',
  'crazier',
  'lied',
  'us',
  'told',
  'us',
  'compound',
  'survaillance',
  'quite',
  'time',
  'yet',
  'whoever',
  'watching',
  'place',
  'failed',
  'see',
  'koresh',
  'went',
  'jogging',
  'town',
  'regular',
  'basis',
  'everyone',
  'area',
  'claimed',
  'seen',
  'wondered',
  'didnt',
  'pick',
  'two',
  'possible',
  'answers',
  'first',
  'didnt',
  'see',
  'kind',
  'survaillance',
  'second',
  'didnt',
  'care',
  'wanted',
  'confrontation',
  'wanted',
  'publicity',
  'got',
  'first',
  'battle',
  'told',
  'us',
  'know',
  'knew',
  'coming',
  'also',
  'said',
  'would',
  'foolish',
  'go',
  'knowing',
  'well',
  'know',
  'intercepted',
  'informants',
  'call',
  'went',
  'anyway',
  'explore',
  'possibilities',
  'ending',
  'seige',
  'according',
  'according',
  'hartford',
  'courant',
  'woman',
  'raised',
  'koresh',
  'grandmother',
  'allowed',
  'go',
  'see',
  'fbi',
  'agent',
  'spoke',
  'bob',
  'ricks',
  'according',
  'paper',
  'said',
  'lot',
  'people',
  'think',
  'talk',
  'logically',
  'come',
  'grandmother',
  'raised',
  'vernon',
  'howell',
  'koreshs',
  'real',
  'name',
  'didnt',
  'raise',
  'david',
  'koresh',
  'someone',
  'raises',
  'loves',
  'speak',
  'strickly',
  'logical',
  'level',
  'also',
  'emotional',
  'level',
  'reach',
  'heres',
  'another',
  'one',
  'operation',
  'fbi',
  'claiming',
  'feared',
  'mass',
  'suicide',
  'one',
  'reasons',
  'something',
  'must',
  'done',
  'claim',
  'never',
  'thought',
  'would',
  'knew',
  'going',
  'something',
  'started',
  'talking',
  'much',
  'money',
  'costing',
  'start',
  'justification',
  'part',
  'part',
  'plan',
  'thats',
  'knew',
  'would',
  'come',
  'soon',
  'back',
  'plan',
  'considered',
  'cruel',
  'unusal',
  'punishment',
  'execute',
  'criminals',
  'minds',
  'many',
  'people',
  'look',
  'whats',
  'acceptable',
  'knew',
  'parents',
  'adults',
  'gas',
  'masks',
  'know',
  'sure',
  'children',
  'plan',
  'pour',
  'gas',
  'compound',
  'mothers',
  'seeing',
  'gas',
  'children',
  'supposed',
  'run',
  'would',
  'leave',
  'men',
  'deal',
  'spent',
  'two',
  'years',
  'army',
  'like',
  'everyother',
  'veteran',
  'went',
  'cbr',
  'chemical',
  'biological',
  'radiological',
  'warfare',
  'training',
  'part',
  'training',
  'going',
  'room',
  'filled',
  'stuff',
  'children',
  'subjected',
  'make',
  'stuff',
  'really',
  'interesting',
  'gas',
  'also',
  'chemical',
  'agent',
  'irritates',
  'skin',
  'think',
  'fire',
  'doubts',
  'children',
  'would',
  'become',
  'hysterical',
  'kind',
  'thing',
  'never',
  'want',
  'plan',
  'final',
  'solution',
  'waited',
  'days',
  'hostages',
  'come',
  'home',
  'iran',
  'gave',
  'people',
  'days',
  'stated',
  'several',
  'occasions',
  'absolutely',
  'nothing',
  'whole',
  'thing',
  'government',
  'could',
  'point',
  'success',
  'well',
  'fbi',
  'agent',
  'ricks',
  'changed',
  'mind',
  'newclip',
  'hartford',
  'courant',
  'expressing',
  'regret',
  'loss',
  'life',
  'suggested',
  'operation',
  'least',
  'modified',
  'success',
  'single',
  'federal',
  'shot',
  'fired',
  'single',
  'federal',
  'agent',
  'hurt',
  'took',
  'dead',
  'children',
  'get',
  'us',
  'new',
  'definition',
  'success',
  'one',
  'thought',
  'government',
  'claimed',
  'believed',
  'automatic',
  'weapons',
  'premises',
  'license',
  'caliber',
  'machine',
  'gun',
  'knew',
  'damn',
  'well',
  'one',
  'also',
  'knew',
  'legally',
  'still',
  'without',
  'element',
  'surprise',
  'sent',
  'agents',
  'get',
  'president',
  'takes',
  'full',
  'responsibility',
  'guy',
  'hope',
  'gets',
  'article',
  'patrick',
  'taylor',
  'sounding',
  'board',
  'writes',
  'article',
  'bill',
  'gunshannon',
  'writes',
  'go',
  'absolving',
  'batf',
  'fbi',
  'blame',
  'incident',
  'probably',
  'aware',
  'two',
  'important',
  'facts',
  'thing',
  'non',
  'toxic',
  'tear',
  'gas',
  'tear',
  'gas',
  'non',
  'breathable',
  'remaining',
  'presence',
  'cause',
  'nausea',
  'vomiting',
  'followed',
  'eventually',
  'siezures',
  'death',
  'fbi',
  'know',
  'physical',
  'health',
  'people',
  'exposed',
  'potential',
  'heart',
  'problems',
  'among',
  'ds',
  'doubt',
  'dangerous',
  'stuff',
  'concentrated',
  'ever',
  'seen',
  'tear',
  'gas',
  'canister',
  'tear',
  'gas',
  'produced',
  'burning',
  'chemical',
  'fumes',
  'produced',
  'tear',
  'gas',
  'canister',
  'warning',
  'printed',
  'side',
  'contact',
  'flamable',
  'material',
  'result',
  'fire',
  'many',
  'canisters',
  'throw',
  'inside',
  'building',
  'admited',
  'fire',
  'trap',
  'none',
  'used',
  'non',
  'incindiary',
  'methods',
  'means',
  'produced',
  'gas',
  'outside',
  'building',
  'pumped',
  'via',
  'tanks',
  'visit',
  'sounding',
  'board',
  'bbs',
  'wildcat',
  'bbs',
  'obdis',
  'opinions',
  'specifically',
  'disclaimed',
  'one',
  'responsible',
  'patrick',
  'taylor',
  'ericsson',
  'network',
  'systems',
  'thx',
  'dont',
  'let',
  'se',
  'fool'],
 ['john',
  'ata',
  'really',
  'rise',
  'reply',
  'organization',
  'hfsi',
  'lines',
  'article',
  'writes',
  'desperately',
  'wanted',
  'jewish',
  'people',
  'accept',
  'messiah',
  'crucification',
  'god',
  'could',
  'jesus',
  'pray',
  'cup',
  'pass',
  'weakness',
  'never',
  'many',
  'men',
  'women',
  'given',
  'lives',
  'country',
  'noble',
  'causes',
  'jesus',
  'less',
  'knew',
  'crucification',
  'god',
  'gods',
  'jewish',
  'people',
  'accept',
  'jesus',
  'messiah',
  'kingdom',
  'heaven',
  'established',
  'earth',
  'jesus',
  'head',
  'like',
  'jewish',
  'people',
  'expected',
  'happened',
  'years',
  'ago',
  'imagine',
  'assume',
  'jesuss',
  'plea',
  'father',
  'let',
  'cup',
  'pass',
  'merely',
  'plea',
  'escape',
  'death',
  'look',
  'jesus',
  'garden',
  'see',
  'man',
  'god',
  'life',
  'presense',
  'father',
  'result',
  'knew',
  'every',
  'detail',
  'death',
  'long',
  'agony',
  'garden',
  'hour',
  'approached',
  'felt',
  'abandoned',
  'father',
  'presense',
  'diminishing',
  'passing',
  'minute',
  'addition',
  'brought',
  'jesuss',
  'attention',
  'betrayal',
  'judas',
  'probably',
  'big',
  'impact',
  'suffering',
  'would',
  'avail',
  'many',
  'people',
  'especially',
  'would',
  'reject',
  'future',
  'truly',
  'believe',
  'majority',
  'jesuss',
  'suffering',
  'mental',
  'spiritual',
  'physical',
  'portion',
  'tip',
  'iceburg',
  'btw',
  'know',
  'johns',
  'account',
  'jesus',
  'shunned',
  'becomming',
  'earthly',
  'king',
  'john',
  'joh',
  'people',
  'saw',
  'miraculous',
  'sign',
  'jesus',
  'began',
  'say',
  'surely',
  'prophet',
  'come',
  'world',
  'joh',
  'jesus',
  'knowing',
  'intended',
  'come',
  'make',
  'king',
  'force',
  'withdrew',
  'mountain',
  'seem',
  'like',
  'man',
  'would',
  'regret',
  'becoming',
  'earthly',
  'king',
  'jesus',
  'knew',
  'mission',
  'redeem',
  'jew',
  'gentile',
  'people',
  'establish',
  'kingdom',
  'hearts',
  'would',
  'believe',
  'utterly',
  'mistaken',
  'much',
  'jesuss',
  'dismay',
  'aspiration',
  'earthly',
  'kingdom',
  'knew',
  'fathers',
  'followed',
  'obediently',
  'even',
  'darkness',
  'passion',
  'john',
  'ata',
  'technical',
  'consultant',
  'internet',
  'hfs',
  'inc',
  'va',
  'uucp',
  'uunet',
  'hfsi',
  'ata',
  'westpark',
  'drive',
  'ms',
  'voice',
  'mclean',
  'va',
  'fax'],
 ['edward',
  'kalenda',
  'overlapped',
  'window',
  'without',
  'title',
  'bar',
  'organization',
  'netcom',
  'line',
  'communication',
  'services',
  'guest',
  'distribution',
  'usa',
  'lines',
  'article',
  'manu',
  'das',
  'overlapped',
  'window',
  'say',
  'child',
  'windows',
  'etc',
  'window',
  'shows',
  'children',
  'fine',
  'create',
  'another',
  'child',
  'ws_thickframe',
  'style',
  'placed',
  'top',
  'one',
  'siblings',
  'style',
  'ws_thickframe',
  'used',
  'resize',
  'make',
  'sure',
  'child',
  'always',
  'top',
  'siblings',
  'used',
  'setwindowpos',
  'without',
  'success',
  'whats',
  'happening',
  'resizing',
  'shows',
  'soon',
  'let',
  'go',
  'goes',
  'behild',
  'siblings',
  'window',
  'probobly',
  'top',
  'lower',
  'windows',
  'drawing',
  'try',
  'using',
  'ws_clipsibling',
  'keep',
  'lower',
  'siblings',
  'drawing',
  'top',
  'siblings',
  'space',
  'ed'],
 ['ed',
  'hall',
  'building',
  'uv',
  'flashlight',
  'organization',
  'rand',
  'lines',
  'nntp',
  'posting',
  'host',
  'ives',
  'rand',
  'org',
  'article',
  'john',
  'hawkinson',
  'writes',
  'one',
  'thing',
  'friend',
  'mine',
  'mentioned',
  'something',
  'near',
  'uv',
  'light',
  'cheaper',
  'get',
  'actual',
  'uv',
  'light',
  'anyone',
  'know',
  'referring',
  'dont',
  'want',
  'get',
  'semantic',
  'argument',
  'contrary',
  'postings',
  'near',
  'uv',
  'light',
  'actual',
  'uv',
  'light',
  'near',
  'means',
  'close',
  'visible',
  'spectrum',
  'relatively',
  'long',
  'wavelength',
  'nearly',
  'uv',
  'im',
  'sure',
  'figure',
  'far',
  'uv',
  'regular',
  'incandenscent',
  'flashlight',
  'bulbs',
  'emit',
  'tiny',
  'amounts',
  'uv',
  'near',
  'end',
  'spectrum',
  'filter',
  'used',
  'remove',
  'visible',
  'light',
  'thus',
  'create',
  'weak',
  'uv',
  'source',
  'stronger',
  'sources',
  'going',
  'require',
  'gas',
  'probably',
  'mercury',
  'vapor',
  'discharge',
  'tubes',
  'fluorescent',
  'tubes',
  'uv',
  'phosphor',
  'careful',
  'though',
  'strong',
  'uv',
  'sources',
  'cause',
  'physiological',
  'damage',
  'especially',
  'eyes',
  'shorter',
  'wavelengths',
  'dangerous',
  'wouldnt',
  'project',
  'beam',
  'like',
  'flashlight',
  'replacing',
  'tubes',
  'portable',
  'fluorescent',
  'lantern',
  'uv',
  'tubes',
  'would',
  'relatively',
  'cheap',
  'way',
  'create',
  'portable',
  'source',
  'would',
  'bright',
  'enough',
  'useful',
  'dangerously',
  'ed',
  'hall'],
 ['doug',
  'dolven',
  'mel',
  'hall',
  'organization',
  'cs',
  'lines',
  'anyone',
  'heard',
  'anything',
  'mel',
  'hall',
  'season',
  'id',
  'heard',
  'wasnt',
  'yankees',
  'happened',
  'doug',
  'dolven',
  'doug',
  'dolven'],
 ['paul',
  'benson',
  'cd',
  'rom',
  'indexes',
  'available',
  'organization',
  'california',
  'state',
  'university',
  'chico',
  'lines',
  'nntp',
  'posting',
  'host',
  'cscihp',
  'ecst',
  'csuchico',
  'file',
  'contents',
  'listings',
  'knowledge',
  'media',
  'resource',
  'library',
  'graphics',
  'knowledge',
  'media',
  'resource',
  'library',
  'audio',
  'available',
  'anonymous',
  'ftp',
  'cdrom',
  'com'],
 ['jt',
  'nextstation',
  'sale',
  'article',
  'magnus',
  'apr',
  'distribution',
  'usa',
  'organization',
  'ohio',
  'state',
  'university',
  'lines',
  'nntp',
  'posting',
  'host',
  'bottom',
  'magnus',
  'acs',
  'ohio',
  'state',
  'nextstation',
  'mhz',
  'moto',
  'dsp',
  'megapixel',
  'perfect',
  'dimming',
  'shaking',
  'keyboard',
  'mouse',
  'course',
  'installed',
  'docs',
  'network',
  'system',
  'administration',
  'users',
  'reference',
  'applications',
  'next',
  'book',
  'bruce',
  'webster',
  'new',
  'copy',
  'black',
  'nextconnection',
  'modem',
  'cable',
  'hd',
  'disks',
  'still',
  'unwrapped',
  'box',
  'others',
  'backing',
  'apps',
  'need',
  'sell',
  'pronto',
  'get',
  'car',
  'engine',
  'locked',
  'machine',
  'runs',
  'great',
  'used',
  'house',
  'covered',
  'days',
  'wasnt',
  'around',
  'including',
  'federal',
  'express',
  'second',
  'day',
  'air',
  'best',
  'offer',
  'cod',
  'doorstep',
  'within',
  'continental',
  'us',
  'need',
  'sell',
  'dont',
  'agree',
  'price',
  'make',
  'offer',
  'within',
  'reason',
  'thanks',
  'jt',
  'please',
  'letters',
  'asking',
  'donate',
  'tax',
  'break'],
 ['keith',
  'allan',
  'schneider',
  'political',
  'atheists',
  'organization',
  'california',
  'institute',
  'technology',
  'pasadena',
  'lines',
  'nntp',
  'posting',
  'host',
  'punisher',
  'caltech',
  'jon',
  'livesey',
  'writes',
  'much',
  'though',
  'might',
  'fun',
  'debate',
  'capital',
  'punishment',
  'probably',
  'wrong',
  'group',
  'relevance',
  'dont',
  'seem',
  'able',
  'tell',
  'us',
  'capital',
  'punishment',
  'actually',
  'murder',
  'tell',
  'us',
  'murder',
  'wrong',
  'using',
  'term',
  'yet',
  'defined',
  'well',
  'ive',
  'said',
  'innocent',
  'person',
  'executed',
  'objectively',
  'murder',
  'however',
  'blame',
  'another',
  'question',
  'seems',
  'entire',
  'society',
  'sanctions',
  'sorts',
  'executions',
  'realizing',
  'risks',
  'blame',
  'probability',
  'killing',
  'innocent',
  'person',
  'shooting',
  'random',
  'air',
  'probability',
  'killing',
  'innocent',
  'person',
  'state',
  'administers',
  'system',
  'capital',
  'punishment',
  'either',
  'know',
  'actions',
  'taking',
  'sooner',
  'later',
  'result',
  'killing',
  'innocent',
  'person',
  'yes',
  'also',
  'probablity',
  'kill',
  'someone',
  'raondom',
  'activity',
  'presumably',
  'isolated',
  'totally',
  'rest',
  'society',
  'driving',
  'kill',
  'people',
  'airlines',
  'people',
  'continue',
  'driving',
  'flying',
  'punishments',
  'inflicted',
  'unwilling',
  'prisoners',
  'courts',
  'risks',
  'take',
  'upon',
  'willingly',
  'argue',
  'law',
  'system',
  'similar',
  'risk',
  'perhaps',
  'innocent',
  'person',
  'punished',
  'someday',
  'work',
  'prevent',
  'fact',
  'many',
  'criminals',
  'go',
  'free',
  'result',
  'trying',
  'prevent',
  'punishment',
  'innocents',
  'driving',
  'kills',
  'someone',
  'else',
  'sure',
  'moral',
  'issue',
  'know',
  'least',
  'one',
  'person',
  'involved',
  'fatal',
  'accident',
  'felt',
  'vey',
  'guilty',
  'afterwards',
  'accidents',
  'totally',
  'expected',
  'given',
  'numner',
  'vehicals',
  'road',
  'blame',
  'society',
  'im',
  'said',
  'saying',
  'false',
  'witness',
  'resulted',
  'innocent',
  'person',
  'convicted',
  'killed',
  'would',
  'still',
  'fault',
  'state',
  'since',
  'actual',
  'killing',
  'commented',
  'state',
  'killing',
  'depend',
  'false',
  'witnesses',
  'could',
  'state',
  'killing',
  'even',
  'case',
  'sincere',
  'mistakes',
  'yes',
  'state',
  'fault',
  'case',
  'state',
  'much',
  'prevent',
  'false',
  'witnesses',
  'possible',
  'trying',
  'say',
  'capital',
  'punishment',
  'always',
  'murder',
  'possibilty',
  'human',
  'error',
  'invalidating',
  'system',
  'im',
  'saying',
  'capital',
  'punishment',
  'murder',
  'period',
  'involves',
  'taking',
  'human',
  'life',
  'thats',
  'definition',
  'murder',
  'make',
  'appeals',
  'dictionaries',
  'objective',
  'morals',
  'okay',
  'call',
  'murder',
  'question',
  'whether',
  'murders',
  'wrong',
  'saying',
  'taking',
  'human',
  'life',
  'wrong',
  'matter',
  'circumstances',
  'society',
  'decide',
  'murder',
  'someone',
  'say',
  'lists',
  'reasons',
  'live',
  'moral',
  'consequences',
  'play',
  'word',
  'games',
  'pretend',
  'murder',
  'isnt',
  'murder',
  'thats',
  'opinion',
  'society',
  'ought',
  'run',
  'basically',
  'works',
  'society',
  'accepts',
  'risk',
  'innocent',
  'person',
  'murdered',
  'execution',
  'every',
  'member',
  'society',
  'shares',
  'blame',
  'peoples',
  'definitions',
  'murder',
  'include',
  'sort',
  'malicious',
  'intent',
  'involved',
  'execution',
  'trying',
  'discuss',
  'objective',
  'moral',
  'system',
  'least',
  'possibilty',
  'ramifications',
  'personal',
  'system',
  'objective',
  'one',
  'discussing',
  'objective',
  'moral',
  'system',
  'showing',
  'didnt',
  'one',
  'one',
  'thing',
  'incapable',
  'defining',
  'terms',
  'example',
  'murder',
  'murder',
  'violates',
  'golden',
  'rule',
  'executions',
  'allowing',
  'society',
  'implicitly',
  'accepts',
  'consequences',
  'matter',
  'innocent',
  'victim',
  'talking',
  'reading',
  'minds',
  'talking',
  'knowing',
  'truth',
  'yes',
  'never',
  'absolutely',
  'certain',
  'truth',
  'court',
  'systems',
  'work',
  'principle',
  'knowing',
  'truth',
  'beyond',
  'reasonable',
  'doubt',
  'sorry',
  'simply',
  'quoting',
  'accurately',
  'said',
  'since',
  'looking',
  'totally',
  'objectively',
  'case',
  'know',
  'people',
  'thinking',
  'voting',
  'execute',
  'person',
  'intent',
  'malicious',
  'unfair',
  'execution',
  'would',
  'murder',
  'slide',
  'another',
  'claim',
  'quite',
  'different',
  'jury',
  'persuaded',
  'beyond',
  'serious',
  'doubt',
  'us',
  'knowing',
  'minds',
  'beyond',
  'serious',
  'doubt',
  'reading',
  'minds',
  'jury',
  'would',
  'certainly',
  'tell',
  'whether',
  'conviction',
  'moral',
  'objective',
  'system',
  'absolute',
  'truth',
  'matters',
  'jury',
  'system',
  'one',
  'method',
  'approximate',
  'truth',
  'twelve',
  'members',
  'must',
  'convinced',
  'truth',
  'moreover',
  'jury',
  'comes',
  'sufficiently',
  'prejudiced',
  'background',
  'may',
  'allow',
  'persuaded',
  'beyond',
  'serious',
  'doubt',
  'evidence',
  'would',
  'laugh',
  'read',
  'minds',
  'people',
  'would',
  'know',
  'conviction',
  'unfair',
  'would',
  'perfectly',
  'fair',
  'could',
  'read',
  'minds',
  'assume',
  'would',
  'fair',
  'knew',
  'absolute',
  'truth',
  'much',
  'less',
  'fair',
  'opinion',
  'good',
  'approximation',
  'absolute',
  'truth',
  'question',
  'fairness',
  'claim',
  'quoted',
  'claim',
  'whether',
  'know',
  'fair',
  'able',
  'distinguish',
  'capital',
  'punishnment',
  'murder',
  'yes',
  'could',
  'objectively',
  'determine',
  'difference',
  'knew',
  'possible',
  'information',
  'cant',
  'always',
  'determine',
  'difference',
  'flawed',
  'system',
  'think',
  'system',
  'almost',
  'good',
  'possible',
  'still',
  'isnt',
  'objectively',
  'perfect',
  'see',
  'doesnt',
  'matter',
  'know',
  'fair',
  'objectively',
  'either',
  'fair',
  'theres',
  'huge',
  'difference',
  'read',
  'minds',
  'know',
  'cannot',
  'read',
  'minds',
  'know',
  'nothing',
  'difference',
  'degree',
  'fairness',
  'know',
  'know',
  'effect',
  'objective',
  'system',
  'think',
  'possible',
  'produce',
  'fairly',
  'objective',
  'system',
  'clear',
  'goals',
  'supposed',
  'promote',
  'im',
  'going',
  'waste',
  'time',
  'trying',
  'devise',
  'system',
  'pretty',
  'sure',
  'exist',
  'sure',
  'simply',
  'want',
  'people',
  'confront',
  'reality',
  'reality',
  'remember',
  'reality',
  'important',
  'case',
  'reality',
  'ideal',
  'theories',
  'apart',
  'never',
  'know',
  'even',
  'fact',
  'fairness',
  'justice',
  'system',
  'every',
  'innocent',
  'person',
  'released',
  'death',
  'row',
  'may',
  'dozen',
  'innocent',
  'people',
  'executed',
  'hundred',
  'none',
  'simply',
  'dont',
  'know',
  'assume',
  'system',
  'fairly',
  'decent',
  'least',
  'likely',
  'realize',
  'correctness',
  'system',
  'says',
  'nothing',
  'totally',
  'ideal',
  'objective',
  'system',
  'going',
  'one',
  'hand',
  'pretend',
  'ideal',
  'theory',
  'know',
  'things',
  'never',
  'know',
  'justie',
  'system',
  'fair',
  'wave',
  'magic',
  'wand',
  'make',
  'certain',
  'types',
  'killing',
  'murder',
  'go',
  'way',
  'well',
  'ideal',
  'system',
  'working',
  'system',
  'ideal',
  'hope',
  'create',
  'system',
  'close',
  'approximation',
  'ideal',
  'system',
  'possible',
  'hand',
  'recognize',
  'justice',
  'small',
  'hope',
  'probability',
  'punishing',
  'innocent',
  'end',
  'bear',
  'moral',
  'responsibility',
  'even',
  'probabilistic',
  'consequences',
  'systems',
  'set',
  'say',
  'well',
  'go',
  'murdering',
  'maybe',
  'us',
  'even',
  'say',
  'gee',
  'wonder',
  'strictly',
  'necessary',
  'yes',
  'bear',
  'responsibility',
  'people',
  'seem',
  'willing',
  'think',
  'second',
  'preferable',
  'requires',
  'people',
  'face',
  'moral',
  'consequences',
  'society',
  'instead',
  'sheltering',
  'magic',
  'ceremonies',
  'word',
  'games',
  'must',
  'realize',
  'consequences',
  'actions',
  'keep',
  'separating',
  'justice',
  'system',
  'pack',
  'lest',
  'forget',
  'also',
  'dont',
  'think',
  'objective',
  'moral',
  'system',
  'believe',
  'take',
  'idea',
  'seriously',
  'someone',
  'presents',
  'evidence',
  'dont',
  'think',
  'country',
  'objective',
  'system',
  'think',
  'objective',
  'system',
  'exist',
  'theory',
  'without',
  'omniscience',
  'objective',
  'system',
  'possible',
  'practice',
  'keith'],
 ['bear',
  'giles',
  'fifth',
  'amendment',
  'passwords',
  'organization',
  'forecast',
  'systems',
  'labs',
  'noaa',
  'boulder',
  'co',
  'usa',
  'lines',
  'article',
  'germano',
  'caronni',
  'writes',
  'question',
  'provider',
  'public',
  'bbs',
  'service',
  'arent',
  'bound',
  'law',
  'gurantee',
  'intelligble',
  'access',
  'data',
  'users',
  'bbs',
  'police',
  'comes',
  'sufficent',
  'authorisation',
  'guessed',
  'would',
  'basic',
  'condition',
  'systems',
  'run',
  'bbs',
  'time',
  'ago',
  'switzerland',
  'sounds',
  'like',
  'old',
  'episode',
  'joe',
  'went',
  'apartment',
  'prime',
  'suspect',
  'nobody',
  'answered',
  'door',
  'landlord',
  'gave',
  'us',
  'permission',
  'search',
  'apartment',
  'perhaps',
  'worked',
  'california',
  'understand',
  'law',
  'landlords',
  'authority',
  'grant',
  'permission',
  'search',
  'space',
  'rented',
  'third',
  'party',
  'provided',
  'lease',
  'default',
  'etc',
  'im',
  'even',
  'sure',
  'provide',
  'master',
  'key',
  'shown',
  'search',
  'warrant',
  'since',
  'search',
  'supposed',
  'notified',
  'point',
  'question',
  'becomes',
  'user',
  'rent',
  'disk',
  'space',
  'encrypted',
  'file',
  'occupies',
  'fall',
  'body',
  'case',
  'law',
  'applies',
  'apartments',
  'storage',
  'lockers',
  'etc',
  'whether',
  'court',
  'would',
  'recognize',
  'fact',
  'compensation',
  'exchanged',
  'dont',
  'know',
  'would',
  'treated',
  'doesnt',
  'seem',
  'non',
  'cyberspace',
  'equivalent',
  'bear',
  'giles'],
 ['serdar',
  'argic',
  'soviet',
  'armenia',
  'denies',
  'historical',
  'fact',
  'turkish',
  'genocide',
  'reply',
  'serdar',
  'argic',
  'distribution',
  'world',
  'lines',
  'article',
  'michael',
  'polymenakos',
  'writes',
  'maybe',
  'availability',
  'anon',
  'servers',
  'people',
  'beginning',
  'speak',
  'sure',
  'hope',
  'unspeakable',
  'crimes',
  'armenians',
  'must',
  'righted',
  'armenian',
  'invaders',
  'burned',
  'sacked',
  'fatherland',
  'urartus',
  'massacred',
  'exterminated',
  'population',
  'presented',
  'world',
  'left',
  'urartus',
  'armenian',
  'civilization',
  'reliable',
  'western',
  'historians',
  'describe',
  'armenians',
  'ruthlessly',
  'exterminated',
  'million',
  'muslim',
  'women',
  'children',
  'elderly',
  'people',
  'eastern',
  'anatolia',
  'collaborated',
  'enemies',
  'ottoman',
  'empire',
  'unfortunately',
  'truth',
  'armenians',
  'known',
  'collaborators',
  'nazis',
  'world',
  'war',
  'ii',
  'even',
  'today',
  'criminal',
  'nazi',
  'members',
  'asala',
  'sdpa',
  'arf',
  'terrorism',
  'triangle',
  'preach',
  'instigate',
  'racism',
  'hatred',
  'violence',
  'terrorism',
  'among',
  'peoples',
  'soviet',
  'armenia',
  'continues',
  'anti',
  'turkish',
  'policy',
  'following',
  'ways',
  'soviet',
  'armenia',
  'denies',
  'historical',
  'fact',
  'turkish',
  'genocide',
  'order',
  'shift',
  'international',
  'public',
  'opinion',
  'away',
  'political',
  'responsibility',
  'soviet',
  'armenia',
  'employing',
  'asala',
  'sdpa',
  'arf',
  'terrorism',
  'revisionism',
  'triangle',
  'criminal',
  'nazi',
  'armenians',
  'attempts',
  'call',
  'question',
  'veracity',
  'turkish',
  'genocide',
  'soviet',
  'armenia',
  'also',
  'implemented',
  'state',
  'sponsored',
  'terrorism',
  'asala',
  'sdpa',
  'arf',
  'terrorism',
  'revisionism',
  'triangle',
  'attempt',
  'silence',
  'turkish',
  'peoples',
  'vehement',
  'demands',
  'protests',
  'using',
  'human',
  'financial',
  'governmental',
  'resources',
  'soviet',
  'armenia',
  'tools',
  'united',
  'states',
  'attempt',
  'silence',
  'terrorism',
  'bribery',
  'subversive',
  'methods',
  'non',
  'turkish',
  'supporters',
  'turkish',
  'cause',
  'political',
  'governmental',
  'humanitarian',
  'using',
  'aforementioned',
  'methods',
  'soviet',
  'armenian',
  'government',
  'attempting',
  'neutralize',
  'international',
  'diplomatic',
  'community',
  'making',
  'turkish',
  'case',
  'contemporary',
  'issue',
  'yet',
  'despite',
  'efforts',
  'soviet',
  'armenian',
  'government',
  'terrorist',
  'revisionist',
  'organizations',
  'last',
  'decades',
  'thanks',
  'struggle',
  'whose',
  'closest',
  'ones',
  'systematically',
  'exterminated',
  'armenians',
  'international',
  'wall',
  'silence',
  'issue',
  'begun',
  'collapse',
  'consequently',
  'number',
  'governments',
  'organizations',
  'become',
  'supportive',
  'recognition',
  'turkish',
  'genocide',
  'serdar',
  'argic',
  'closed',
  'roads',
  'mountain',
  'passes',
  'might',
  'serve',
  'ways',
  'escape',
  'turks',
  'proceeded',
  'work',
  'extermination',
  'ohanus',
  'appressian',
  'soviet',
  'armenia',
  'today',
  'longer',
  'exists',
  'single',
  'turkish',
  'soul',
  'sahak',
  'melkonian'],
 ['craig',
  'boyle',
  'new',
  'break',
  'pads',
  'exhausts',
  'km',
  'mi',
  'maxima',
  'organization',
  'capital',
  'area',
  'central',
  'texas',
  'unix',
  'society',
  'austin',
  'tx',
  'lines',
  'article',
  'ryan',
  'kim',
  'writes',
  'hi',
  'maybe',
  'someone',
  'help',
  'looking',
  'buy',
  'nissan',
  'maxima',
  'gxe',
  'cdn',
  'right',
  'automatic',
  'dont',
  'know',
  'us',
  'spec',
  'cdn',
  'spec',
  'maximas',
  'car',
  'km',
  'miles',
  'typical',
  'mileage',
  'cars',
  'seem',
  'km',
  'mi',
  'seller',
  'informed',
  'brought',
  'car',
  'certification',
  'told',
  'front',
  'break',
  'pads',
  'exhausts',
  'replaced',
  'meet',
  'legal',
  'standards',
  'said',
  'replace',
  'components',
  'selling',
  'car',
  'copmletely',
  'ignorant',
  'technical',
  'stuff',
  'cars',
  'dont',
  'know',
  'could',
  'mean',
  'km',
  'time',
  'typical',
  'replacing',
  'mentioned',
  'items',
  'indication',
  'car',
  'abused',
  'first',
  'set',
  'brake',
  'pads',
  'front',
  'fine',
  'car',
  'eats',
  'set',
  'every',
  'miles',
  'fact',
  'replacing',
  'muffler',
  'also',
  'ok',
  'would',
  'things',
  'break',
  'replaced',
  'soon',
  'mileage',
  'fairly',
  'low',
  'typical',
  'fwd',
  'stuff',
  'cv',
  'joints',
  'check',
  'maintenance',
  'records',
  'manufacturers',
  'requirements',
  'valve',
  'adjustments',
  'timing',
  'belt',
  'changes',
  'mile',
  'service',
  'often',
  'expensive',
  'make',
  'sure',
  'done',
  'everything',
  'seller',
  'told',
  'used',
  'car',
  'highway',
  'lot',
  'dont',
  'know',
  'verify',
  'ive',
  'seen',
  'paint',
  'chipped',
  'away',
  'tiny',
  'dots',
  'front',
  'edge',
  'hood',
  'though',
  'well',
  'one',
  'commonly',
  'cited',
  'methods',
  'identifying',
  'car',
  'highway',
  'miles',
  'might',
  'check',
  'gas',
  'pedal',
  'wear',
  'ask',
  'many',
  'sets',
  'tires',
  'highway',
  'car',
  'might',
  'squeezed',
  'sets',
  'hard',
  'driven',
  'car',
  'sets',
  'although',
  'maxima',
  'excellent',
  'car',
  'car',
  'clean',
  'well',
  'kept',
  'currently',
  'warranty',
  'similarly',
  'priced',
  'accord',
  'km',
  'years',
  'km',
  'worth',
  'warranty',
  'left',
  'dont',
  'want',
  'worry',
  'paying',
  'repair',
  'bills',
  'well',
  'maxima',
  'pretty',
  'reliable',
  'warranty',
  'get',
  'checked',
  'someone',
  'knowledgeable',
  'first',
  'stuff',
  'japanese',
  'cars',
  'expensive',
  'also',
  'need',
  'car',
  'people',
  'new',
  'maxima',
  'come',
  'way',
  'model',
  'year',
  'believe',
  'would',
  'much',
  'appreciate',
  'input',
  'please',
  'reply',
  'mail',
  'preferred',
  'post',
  'newsgroup',
  'craig',
  'thanks',
  'ryan',
  'ryan',
  'kim',
  'university',
  'toronto',
  'eecg',
  'computer',
  'graphics',
  'weave',
  'traffic',
  'cones',
  'road',
  'works',
  'new',
  'british',
  'highway',
  'code',
  'toronto',
  'star',
  'april'],
 ['tiff',
  'anything',
  'organization',
  'earlham',
  'college',
  'richmond',
  'indiana',
  'lines',
  'article',
  'tim',
  'ciceran',
  'writes',
  'program',
  'called',
  'graphic',
  'workshop',
  'ftp',
  'wuarchive',
  'file',
  'msdos',
  'graphics',
  'directory',
  'called',
  'grfwk',
  'zip',
  'program',
  'od',
  'everthing',
  'need',
  'tmc',
  'thanks',
  'work',
  'needed',
  'thanks',
  'joshuaf'],
 ['grant',
  'totten',
  'ms',
  'windows',
  'graphics',
  'viewer',
  'keywords',
  'ms',
  'windows',
  'jpeg',
  'gif',
  'tiff',
  'lines',
  'reply',
  'grant',
  'totten',
  'organization',
  'trent',
  'university',
  'howdy',
  'wondering',
  'people',
  'could',
  'mail',
  'opinions',
  'various',
  'graphics',
  'viewers',
  'available',
  'ms',
  'windows',
  'im',
  'working',
  'project',
  'set',
  'scanner',
  'write',
  'documentation',
  'would',
  'nice',
  'snazzy',
  'image',
  'viewer',
  'look',
  'maybe',
  'even',
  'edit',
  'image',
  'scanned',
  'file',
  'formats',
  'im',
  'looking',
  'gif',
  'jpeg',
  'tiff',
  'pcx',
  'whatever',
  'major',
  'file',
  'formats',
  'thanks',
  'lot',
  'help',
  'grant',
  'grant',
  'totten',
  'programmer',
  'analyst',
  'trent',
  'university',
  'peterborough',
  'ontario',
  'phone',
  'fax',
  'days',
  'old',
  'knights',
  'bold',
  'women',
  'cautious',
  'oh',
  'gallant',
  'days',
  'women',
  'women',
  'men',
  'really',
  'obnoxious'],
 ['wayne',
  'smith',
  'recommendations',
  'local',
  'bus',
  'cached',
  'ide',
  'controller',
  'organization',
  'john',
  'robarts',
  'research',
  'institute',
  'london',
  'ontario',
  'distribution',
  'usa',
  'nntp',
  'posting',
  'host',
  'valve',
  'heart',
  'rri',
  'uwo',
  'ca',
  'lines',
  'article',
  'writes',
  'would',
  'like',
  'hear',
  'net',
  'wisdom',
  'net',
  'opinions',
  'ide',
  'controllers',
  'would',
  'liek',
  'get',
  'ide',
  'controller',
  'card',
  'vlb',
  'dx',
  'motherboard',
  'good',
  'options',
  'preferably',
  'must',
  'also',
  'work',
  'os',
  'compatible',
  'stacker',
  'disk',
  'compression',
  'maxtor',
  'mb',
  'isa',
  'ide',
  'controller',
  'although',
  'machine',
  'dx',
  'vlb',
  'save',
  'transfer',
  'rate',
  'mb',
  'regardless',
  'variations',
  'isa',
  'bus',
  'speed',
  'tested',
  'speed',
  'mhz',
  'mhz',
  'difference',
  'problem',
  'interface',
  'controller',
  'memory',
  'advice',
  'buy',
  'megs',
  'ram',
  'save',
  'enjoy',
  'performance',
  'computer',
  'mhz',
  'bus',
  'isa',
  'mhz',
  'drive',
  'maxtor',
  'mb',
  'config',
  'sys',
  'autoexec',
  'bat',
  'ms',
  'dos',
  'win',
  'smartdrv',
  'sys',
  'cache',
  'smartdrv',
  'exe',
  'core',
  'sec',
  'sec',
  'sec',
  'norton',
  'si',
  'sec',
  'sec',
  'sec',
  'id',
  'still',
  'like',
  'people',
  'vlb',
  'ide',
  'still',
  'want',
  'know',
  'vlb',
  'bus',
  'speed',
  'used',
  'ide',
  'drives',
  'still',
  'want',
  'know',
  'ide',
  'drives',
  'handle',
  'bus',
  'speeds',
  'mhz',
  'ps',
  'friend',
  'new',
  'maxtor',
  'meg',
  'ide',
  'drive',
  'gets',
  'sec',
  'cant',
  'remember',
  'exactly',
  'think',
  'bus',
  'running',
  'mhz',
  'case'],
 ['gordon',
  'banks',
  'new',
  'diet',
  'works',
  'great',
  'reply',
  'gordon',
  'banks',
  'organization',
  'univ',
  'pittsburgh',
  'computer',
  'science',
  'lines',
  'article',
  'chuck',
  'forsberg',
  'wa',
  'kgx',
  'writes',
  'provide',
  'reference',
  'substantiate',
  'gaining',
  'back',
  'lost',
  'weight',
  'constitute',
  'weight',
  'rebound',
  'exceeds',
  'starting',
  'weight',
  'oral',
  'tradition',
  'shared',
  'among',
  'obesity',
  'researchers',
  'annals',
  'ny',
  'acad',
  'sci',
  'hmmm',
  'dont',
  'look',
  'like',
  'references',
  'passive',
  'aggressive',
  'behavior',
  'associated',
  'weight',
  'rebound',
  'purposefully',
  'left',
  'page',
  'numbers',
  'encourage',
  'reader',
  'study',
  'volumes',
  'mentioned',
  'benefit',
  'therefrom',
  'good',
  'story',
  'chuck',
  'wont',
  'wash',
  'read',
  'ny',
  'acad',
  'sci',
  'one',
  'couldnt',
  'find',
  'reference',
  'weight',
  'rebound',
  'im',
  'saying',
  'isnt',
  'since',
  'cited',
  'responsibility',
  'show',
  'index',
  'suspect',
  'overstepped',
  'knowledge',
  'base',
  'usual',
  'gordon',
  'banks',
  'jxp',
  'skepticism',
  'chastity',
  'intellect',
  'shameful',
  'surrender',
  'soon'],
 ['robert',
  'holt',
  'time',
  'best',
  'players',
  'organization',
  'bell',
  'laboratories',
  'murray',
  'hill',
  'nj',
  'lines',
  'article',
  'john',
  'stephen',
  'randolph',
  'writes',
  'article',
  'writes',
  'ive',
  'recently',
  'working',
  'project',
  'determine',
  'greatest',
  'players',
  'respective',
  'postions',
  'sources',
  'total',
  'baseball',
  'james',
  'historical',
  'abstract',
  'ballplayers',
  'biography',
  'word',
  'mouth',
  'biased',
  'opinions',
  'feel',
  'free',
  'comment',
  'suggest',
  'flame',
  'whatever',
  'tried',
  'objective',
  'possible',
  'using',
  'statistical',
  'data',
  'inlcuded',
  'time',
  'conviences',
  'sake',
  'judged',
  'rel',
  'ba',
  'adj',
  'ops',
  'total',
  'average',
  'fielding',
  'range',
  'runs',
  'total',
  'player',
  'rating',
  'total',
  'baseball',
  'stolen',
  'bases',
  'curiositys',
  'sake',
  'tpr',
  'years',
  'played',
  'mvp',
  'mike',
  'schmidt',
  'ed',
  'matthews',
  'one',
  'eddie',
  'mathews',
  'george',
  'brett',
  'wade',
  'boggs',
  'ron',
  'santo',
  'brooks',
  'robinson',
  'frank',
  'baker',
  'darrell',
  'evans',
  'pie',
  'traynor',
  'ray',
  'dandridge',
  'brooks',
  'think',
  'would',
  'least',
  'ahead',
  'ron',
  'santo',
  'small',
  'advantage',
  'fielding',
  'ability',
  'comes',
  'nowhere',
  'near',
  'making',
  'large',
  'difference',
  'hitting',
  'average',
  'seasons',
  'using',
  'combined',
  'average',
  'ab',
  'bb',
  'per',
  'games',
  'years',
  'ab',
  'hr',
  'rbi',
  'tb',
  'bb',
  'avg',
  'obp',
  'slg',
  'ops',
  'santo',
  'robinson',
  'fielding',
  'per',
  'games',
  'third',
  'years',
  'dp',
  'pct',
  'santo',
  'robinson',
  'even',
  'robinsons',
  'extra',
  'putouts',
  'assists',
  'dps',
  'taken',
  'mean',
  'responsible',
  'outs',
  'field',
  'doesnt',
  'make',
  'extra',
  'outs',
  'made',
  'plate',
  'mention',
  'fewer',
  'total',
  'bases',
  'difference',
  'ops',
  'decreased',
  'account',
  'wrigley',
  'difference',
  'still',
  'considerable',
  'thorn',
  'palmer',
  'ratings',
  'adjusted',
  'adjusted',
  'stolen',
  'fielding',
  'total',
  'production',
  'batting',
  'runs',
  'base',
  'runs',
  'runs',
  'rating',
  'santo',
  'robinson',
  'usual',
  'disclaimers',
  'ps',
  'fr',
  'apply',
  'really',
  'shouldnt',
  'way',
  'mark',
  'comparison',
  'least',
  'better',
  'fielding',
  'percentage',
  'carney',
  'lansford',
  'th',
  'best',
  'time',
  'fr',
  'dead',
  'last',
  'time',
  'also',
  'since',
  'total',
  'rating',
  'compares',
  'players',
  'league',
  'average',
  'instead',
  'replacement',
  'level',
  'robinson',
  'awarded',
  'extra',
  'playing',
  'games',
  'great',
  'career',
  'would',
  'prefer',
  'santos',
  'plus',
  'years',
  'replacement',
  'level',
  'bman',
  'would',
  'knock',
  'traynor',
  'list',
  'replace',
  'stan',
  'hack',
  'thats',
  'similar',
  'story',
  'hacks',
  'far',
  'better',
  'hitting',
  'outweighs',
  'traynors',
  'superior',
  'fielding',
  'graig',
  'nettles',
  'buddy',
  'bell',
  'would',
  'also',
  'better',
  'choices',
  'imho',
  'course',
  'though',
  'recent',
  'net',
  'discussion',
  'supports',
  'point',
  'view',
  'cf',
  'andre',
  'dawson',
  'shouldnt',
  'right',
  'field',
  'bob',
  'holt'],
 ['dale',
  'stephenson',
  'defensive',
  'averages',
  'third',
  'base',
  'summary',
  'career',
  'defensive',
  'averages',
  'third',
  'organization',
  'university',
  'illinois',
  'dept',
  'comp',
  'sci',
  'urbana',
  'il',
  'lines',
  'compiled',
  'last',
  'five',
  'defensive',
  'average',
  'reports',
  'career',
  'das',
  'individual',
  'players',
  'reports',
  'stats',
  'courtesy',
  'sherri',
  'nichols',
  'players',
  'listed',
  'descending',
  'order',
  'third',
  'basemen',
  'name',
  'mitchell',
  'kevin',
  'gonzales',
  'rene',
  'leius',
  'scott',
  'pendleton',
  'terry',
  'ventura',
  'robin',
  'wallach',
  'tim',
  'gruber',
  'kelly',
  'pagliarulo',
  'mike',
  'harris',
  'lance',
  'howell',
  'jack',
  'williams',
  'matt',
  'caminiti',
  'ken',
  'sabo',
  'chris',
  'gaetti',
  'gary',
  'buechele',
  'steve',
  'salazar',
  'luis',
  'pecota',
  'bill',
  'schmidt',
  'mike',
  'riles',
  'ernie',
  'boggs',
  'wade',
  'martinez',
  'egdar',
  'molitor',
  'paul',
  'phillips',
  'tony',
  'nl',
  'average',
  'brookens',
  'tom',
  'king',
  'jeff',
  'seitzer',
  'kevin',
  'al',
  'average',
  'jacoby',
  'brook',
  'hansen',
  'dave',
  'law',
  'vance',
  'magadan',
  'dave',
  'jefferies',
  'greg',
  'sharperson',
  'mike',
  'zeile',
  'todd',
  'baerga',
  'carlos',
  'hayes',
  'chris',
  'livingstone',
  'scott',
  'hamilton',
  'kelly',
  'pat',
  'lyons',
  'steve',
  'oberkfell',
  'ken',
  'johnson',
  'howard',
  'bell',
  'buddy',
  'lansford',
  'carney',
  'presley',
  'jim',
  'schu',
  'rick',
  'worthington',
  'cal',
  'hollins',
  'dave',
  'sheffield',
  'gary',
  'blauser',
  'jeff',
  'fryman',
  'travis',
  'gantner',
  'jim',
  'gomez',
  'lee',
  'palmer',
  'dean',
  'dale',
  'stephenson',
  'grad',
  'student',
  'large',
  'considered',
  'good',
  'look',
  'wise',
  'especially',
  'overburdened',
  'information',
  'golden',
  'kimball'],
 ['david',
  'rex',
  'wood',
  'rockies',
  'need',
  'relief',
  'nntp',
  'posting',
  'host',
  'bruno',
  'cs',
  'colorado',
  'organization',
  'university',
  'colorado',
  'boulder',
  'lines',
  'rockies',
  'bullpen',
  'fell',
  'apart',
  'andy',
  'ashby',
  'pitched',
  'six',
  'somewhat',
  'shaky',
  'innings',
  'giving',
  'one',
  'run',
  'game',
  'dreaded',
  'relief',
  'three',
  'picthers',
  'combined',
  'give',
  'runs',
  'one',
  'believe',
  'th',
  'inning',
  'blew',
  'save',
  'opportunity',
  'final',
  'vs',
  'expos',
  'despite',
  'problems',
  'pen',
  'think',
  'rockies',
  'team',
  'wont',
  'taken',
  'lightly',
  'going',
  'todays',
  'game',
  'leagues',
  'leading',
  'hitter',
  'rbi',
  'man',
  'galarraga',
  'two',
  'leaders',
  'stolen',
  'bases',
  'young',
  'cole',
  'increasingly',
  'strong',
  'starting',
  'pitching',
  'david',
  'rex',
  'wood',
  'university',
  'colorado',
  'boulder'],
 ['daniel',
  'mccoy',
  'title',
  'xterm',
  'reply',
  'organization',
  'net',
  'inc',
  'lines',
  'article',
  'ingolf',
  'markhof',
  'writes',
  'article',
  'andre',
  'beck',
  'writes',
  'article',
  'thomas',
  'wolfram',
  'writes',
  'hey',
  'guys',
  'work',
  'many',
  'stations',
  'would',
  'like',
  'name',
  'current',
  'logname',
  'title',
  'xterm',
  'open',
  'machine',
  'name',
  'closed',
  'words',
  'want',
  'host',
  'logname',
  'appear',
  'title',
  'opened',
  'xterm',
  'host',
  'xterm',
  'closed',
  'almost',
  'window',
  'managers',
  'twm',
  'mwm',
  'olwm',
  'derivates',
  'support',
  'escape',
  'sequences',
  'purpose',
  'put',
  'following',
  'login',
  'youre',
  'using',
  'csh',
  'tcsh',
  'sh',
  'modify',
  'term',
  'xterm',
  'echo',
  'endif',
  'feature',
  'window',
  'manager',
  'xterm',
  'sequences',
  'ansi',
  'compatible',
  'anyone',
  'know',
  'compatible',
  'sequences',
  'would',
  'think',
  'dcs',
  'device',
  'control',
  'sequence',
  'introduced',
  'may',
  'csi',
  'sequence',
  'exists',
  'must',
  'work',
  'dxterm',
  'vt',
  'ansi',
  'compatible',
  'may',
  'work',
  'xterms',
  'works',
  'xterms',
  'least',
  'problem',
  'back',
  'original',
  'question',
  'usually',
  'start',
  'new',
  'xterms',
  'selecting',
  'proper',
  'menu',
  'entry',
  'desktop',
  'menu',
  'sample',
  'command',
  'xterm',
  'sl',
  'ls',
  'title',
  'ls',
  'rlogin',
  'ls',
  'title',
  'options',
  'give',
  'text',
  'window',
  'icon',
  'tcsh',
  'wonderful',
  'extension',
  'csh',
  'following',
  'alias',
  'precmd',
  'echo',
  'host',
  'cwd',
  'tcshrc',
  'special',
  'alias',
  'tvtwm',
  'executed',
  'time',
  'printing',
  'prompt',
  'current',
  'host',
  'name',
  'current',
  'directory',
  'path',
  'title',
  'bar',
  'xterms',
  'gotten',
  'answer',
  'yet',
  'using',
  'variables',
  'would',
  'xterm',
  'host',
  'logname',
  'host',
  'daniel',
  'mccoy',
  'space',
  'net',
  'inc',
  'nasa',
  'mail',
  'code',
  'pt',
  'tel',
  'nasa',
  'johnson',
  'space',
  'center',
  'fax',
  'houston',
  'texas',
  'future'],
 ['mark',
  'wilson',
  'tax',
  'evasion',
  'considered',
  'unpatriotic',
  'organization',
  'ncr',
  'engineering',
  'manufacturing',
  'atlanta',
  'atlanta',
  'ga',
  'lines',
  'bens',
  'dad',
  'writes',
  'article',
  'mark',
  'wilson',
  'writes',
  'article',
  'loren',
  'petrich',
  'writes',
  'title',
  'self',
  'explanatory',
  'isaac',
  'asimov',
  'pointed',
  'curious',
  'fact',
  'saying',
  'considered',
  'unpatriotic',
  'give',
  'everything',
  'state',
  'saying',
  'considered',
  'unpatriotic',
  'give',
  'life',
  'battle',
  'state',
  'pc',
  'patrioticly',
  'correct',
  'certainly',
  'think',
  'thought',
  'kind',
  'system',
  'collapsed',
  'soviet',
  'union',
  'pentagon',
  'still',
  'standing',
  'collecting',
  'names',
  'draft',
  'thats',
  'meant',
  'point',
  'paying',
  'taxes',
  'cease',
  'patriotic',
  'money',
  'life',
  'important',
  'nice',
  'dodge',
  'give',
  'answer',
  'questions',
  'believe',
  'draft',
  'armed',
  'services',
  'voluntary',
  'say',
  'taxes',
  'ive',
  'answered',
  'question',
  'would',
  'answer',
  'mine',
  'mob',
  'rule',
  'isnt',
  'prettier',
  'merely',
  'mob',
  'calls',
  'government',
  'aint',
  'charity',
  'using',
  'someone',
  'elses',
  'money',
  'wilsons',
  'theory',
  'relativity',
  'go',
  'back',
  'far',
  'enough',
  'related'],
 ['cubs',
  'behind',
  'marlins',
  'article',
  'agate',
  'pt',
  'organization',
  'university',
  'california',
  'berkeley',
  'lines',
  'nntp',
  'posting',
  'host',
  'garnet',
  'berkeley',
  'writes',
  'morgan',
  'guzman',
  'eras',
  'run',
  'higher',
  'last',
  'year',
  'cubs',
  'idiots',
  'pitch',
  'harkey',
  'much',
  'hibbard',
  'castillo',
  'wont',
  'good',
  'think',
  'hes',
  'stud',
  'pitcher',
  'season',
  'far',
  'morgan',
  'guzman',
  'helped',
  'lead',
  'cubs',
  'top',
  'era',
  'even',
  'better',
  'rotation',
  'atlanta',
  'cubs',
  'era',
  'braves',
  'know',
  'early',
  'season',
  'cubs',
  'fans',
  'learned',
  'enjoy',
  'short',
  'triumph',
  'still'],
 ['steve',
  'hendricks',
  'limiting',
  'govt',
  'employment',
  'concentrate',
  'summary',
  'limiting',
  'libertarians',
  'organization',
  'free',
  'barbers',
  'inc',
  'lines',
  'nntp',
  'posting',
  'host',
  'thor',
  'isc',
  'br',
  'com',
  'article',
  'mr',
  'grinch',
  'writes',
  'article',
  'steve',
  'hendricks',
  'writes',
  'okay',
  'let',
  'try',
  'explain',
  'one',
  'votes',
  'creature',
  'senator',
  'worse',
  'yet',
  'president',
  'one',
  'votes',
  'specific',
  'policies',
  'general',
  'package',
  'must',
  'cover',
  'issues',
  'years',
  'ones',
  'influence',
  'highly',
  'diluted',
  'might',
  'add',
  'even',
  'one',
  'free',
  'vote',
  'individual',
  'regulations',
  'vast',
  'amount',
  'time',
  'required',
  'considering',
  'particular',
  'regulation',
  'combined',
  'small',
  'chance',
  'ones',
  'vote',
  'making',
  'difference',
  'would',
  'make',
  'unreasonable',
  'expect',
  'voter',
  'make',
  'intelligent',
  'decision',
  'respect',
  'specific',
  'regulations',
  'im',
  'afraid',
  'ive',
  'lost',
  'thread',
  'didnt',
  'suggest',
  'government',
  'regulations',
  'referenda',
  'dont',
  'follow',
  'comments',
  'sorry',
  'strikes',
  'feasible',
  'approach',
  'feasible',
  'wholesale',
  'attack',
  'government',
  'regulation',
  'licensing',
  'treats',
  'cutting',
  'hair',
  'practicing',
  'medicine',
  'equivalent',
  'tasks',
  'im',
  'sure',
  'mean',
  'feasible',
  'case',
  'mean',
  'impossible',
  'priciple',
  'merely',
  'would',
  'undesirable',
  'fact',
  'mean',
  'ideology',
  'treats',
  'government',
  'regulation',
  'equally',
  'undesirable',
  'seeks',
  'abolish',
  'regulations',
  'unlikely',
  'draw',
  'support',
  'among',
  'miniscule',
  'portion',
  'electorate',
  'furthermore',
  'suggesting',
  'plan',
  'feasible',
  'industrial',
  'society',
  'weight',
  'litigation',
  'misery',
  'would',
  'produce',
  'would',
  'effectively',
  'crush',
  'productive',
  'effort',
  'actually',
  'areas',
  'public',
  'spending',
  'strike',
  'generating',
  'substantial',
  'support',
  'among',
  'libertarians',
  'police',
  'defense',
  'interesting',
  'aside',
  'committed',
  'libertarians',
  'claim',
  'principle',
  'non',
  'coercion',
  'areas',
  'public',
  'spending',
  'frequently',
  'support',
  'involve',
  'hiring',
  'people',
  'guns',
  'hmmm',
  'say',
  'surprising',
  'yet',
  'fact',
  'necessary',
  'consequence',
  'libertarian',
  'philosophy',
  'non',
  'coersive',
  'functions',
  'dealt',
  'privately',
  'therefore',
  'follows',
  'functions',
  'remaining',
  'state',
  'coersive',
  'ones',
  'im',
  'surprised',
  'think',
  'interesting',
  'one',
  'hand',
  'libertarians',
  'assume',
  'limited',
  'government',
  'decreed',
  'yet',
  'posit',
  'entire',
  'government',
  'made',
  'people',
  'carry',
  'guns',
  'realize',
  'many',
  'libertarians',
  'assume',
  'government',
  'counterbalanced',
  'fully',
  'armed',
  'citizenry',
  'worth',
  'noting',
  'widespread',
  'civilian',
  'ownership',
  'guns',
  'necessarily',
  'prevent',
  'establishment',
  'totalitarian',
  'government',
  'iraq',
  'perhaps',
  'may',
  'suggest',
  'consider',
  'revolutionaries',
  'frequently',
  'generate',
  'support',
  'acting',
  'protectors',
  'geezers',
  'mothers',
  'children',
  'governments',
  'ignore',
  'people',
  'grounds',
  'dont',
  'much',
  'fear',
  'peril',
  'much',
  'likely',
  'drunken',
  'teenagers',
  'groups',
  'questionare',
  'likely',
  'worse',
  'revolution',
  'unlikely',
  'event',
  'missed',
  'earlier',
  'sarcasm',
  'let',
  'say',
  'directly',
  'idea',
  'programs',
  'social',
  'security',
  'afdc',
  'considered',
  'defense',
  'idea',
  'advanced',
  'ths',
  'newsgroups',
  'absurd',
  'lie',
  'unworthy',
  'consideration',
  'seriously',
  'dispute',
  'yup',
  'sure',
  'since',
  'also',
  'support',
  'constitutional',
  'requirement',
  'government',
  'provide',
  'general',
  'welfare',
  'article',
  'section',
  'im',
  'willing',
  'justify',
  'programs',
  'basis',
  'dont',
  'want',
  'seem',
  'patronizing',
  'still',
  'seem',
  'laboring',
  'delusion',
  'socialized',
  'economic',
  'system',
  'reasonably',
  'intelligent',
  'honest',
  'persons',
  'like',
  'make',
  'decisions',
  'feel',
  'third',
  'party',
  'added',
  'transaction',
  'every',
  'bit',
  'likely',
  'ignorant',
  'corrupt',
  'buyer',
  'seller',
  'dont',
  'expect',
  'agree',
  'explain',
  'feel',
  'im',
  'wrong',
  'well',
  'first',
  'place',
  'dont',
  'support',
  'socialized',
  'economic',
  'system',
  'think',
  'within',
  'limits',
  'capitalism',
  'fine',
  'idea',
  'case',
  'third',
  'party',
  'likely',
  'ignorant',
  'corrupt',
  'buyer',
  'seller',
  'multitudes',
  'examples',
  'statement',
  'demonstrably',
  'false',
  'regulation',
  'stock',
  'market',
  'transactions',
  'provide',
  'reasonable',
  'basis',
  'buyers',
  'avoid',
  'fraud',
  'one',
  'example',
  'jsh',
  'mr',
  'grinch',
  'steve',
  'hendricks',
  'domain',
  'one',
  'thing',
  'data',
  'sure',
  'cut',
  'uucp',
  'uunet',
  'isc',
  'br',
  'thor',
  'steveh',
  'bulls',
  'hofferbert',
  'bell'],
 ['craig',
  'richardson',
  'notes',
  'jays',
  'vs',
  'indians',
  'series',
  'article',
  'eskimo',
  'jck',
  'dea',
  'distribution',
  'na',
  'organization',
  'eskimo',
  'north',
  'eskimo',
  'com',
  'lines',
  'article',
  'lyford',
  'beverage',
  'writes',
  'article',
  'edward',
  'ted',
  'fischer',
  'writes',
  'article',
  'rudy',
  'wade',
  'writes',
  'article',
  'gord',
  'niguma',
  'writes',
  'probably',
  'didnt',
  'even',
  'good',
  'season',
  'alomar',
  'last',
  'year',
  'snip',
  'uh',
  'yes',
  'baerga',
  'lot',
  'flash',
  'alomar',
  'better',
  'hitter',
  'last',
  'year',
  'stats',
  'deleted',
  'weve',
  'seen',
  'fascinating',
  'say',
  'alomar',
  'better',
  'hitter',
  'last',
  'year',
  'immediately',
  'follow',
  'numbers',
  'showing',
  'baerga',
  'better',
  'year',
  'category',
  'see',
  'shows',
  'advantage',
  'alomar',
  'obp',
  'nominate',
  'last',
  'bit',
  'anti',
  'stathead',
  'quote',
  'week',
  'alomar',
  'point',
  'advantage',
  'important',
  'offensive',
  'category',
  'baerga',
  'studied',
  'joe',
  'carter',
  'school',
  'burning',
  'impressive',
  'mediot',
  'stats',
  'largely',
  'due',
  'opportunities',
  'rather',
  'quality',
  'lines',
  'fairly',
  'close',
  'value',
  'edge',
  'alomar',
  'baerga',
  'aint',
  'chopped',
  'liver',
  'alomar',
  'still',
  'man',
  'beat',
  'among',
  'al',
  'second',
  'basemen',
  'craig',
  'craig',
  'richardson',
  'formerly',
  'eskimo',
  'celestial',
  'com',
  'gm',
  'pullman',
  'sleepers',
  'obfbl',
  'gm',
  'seattle',
  'rainiers',
  'ifl',
  'gm',
  'manager',
  'tacoma',
  'black',
  'adders',
  'ibl',
  'gm',
  'new',
  'jack',
  'city',
  'highlanders',
  'kl',
  'tacoma',
  'black',
  'adders',
  'growing',
  'excited',
  'team',
  'future',
  'begins',
  'tomorrow'],
 ['michael',
  'davis',
  'smith',
  'real',
  'estate',
  'sale',
  'article',
  'hydra',
  'organization',
  'georgia',
  'institute',
  'technology',
  'lines',
  'residential',
  'lot',
  'sale',
  'nice',
  'residential',
  'lot',
  'available',
  'approx',
  'imately',
  'acre',
  'size',
  'located',
  'development',
  'called',
  'belvedere',
  'plantation',
  'pender',
  'county',
  'eastern',
  'north',
  'carolina',
  'north',
  'wilmington',
  'lot',
  'near',
  'intra',
  'coastal',
  'waterway',
  'golf',
  'tennis',
  'located',
  'development',
  'property',
  'belvedere',
  'plantation',
  'also',
  'mar',
  'ina',
  'facility',
  'icw',
  'lot',
  'nearby',
  'facilities',
  'mentioned',
  'lot',
  'outright',
  'look',
  'like',
  'get',
  'back',
  'area',
  'anytime',
  'soon',
  'would',
  'like',
  'sell',
  'reason',
  'make',
  'offer',
  'interested',
  'please',
  'send',
  'mail',
  'mike',
  'smith',
  'michael',
  'davis',
  'smith',
  'georgia',
  'institute',
  'technology',
  'atlanta',
  'georgia',
  'uucp',
  'decvax',
  'hplabs',
  'ncar',
  'purdue',
  'rutgers',
  'gatech',
  'prism',
  'gt',
  'internet'],
 ['baldwin',
  'guns',
  'gone',
  'good',
  'riddance',
  'organization',
  'netcom',
  'online',
  'communications',
  'services',
  'login',
  'guest',
  'lines',
  'article',
  'writes',
  'vote',
  'cause',
  'considered',
  'abomination',
  'matter',
  'hard',
  'try',
  'public',
  'opinion',
  'set',
  'rkba',
  'nope',
  'northern',
  'california',
  'newspaper',
  'recently',
  'survey',
  'asking',
  'people',
  'favored',
  'stricter',
  'gun',
  'controls',
  'full',
  'said',
  'one',
  'liberal',
  'wasnt',
  'always',
  'swear',
  'word',
  'areas',
  'country',
  'nearly',
  'half',
  'people',
  'dont',
  'want',
  'additional',
  'controls',
  'let',
  'alone',
  'revocation',
  'rkba',
  'end',
  'finish',
  'clinton',
  'administration',
  'rkba',
  'null',
  'void',
  'tough',
  'titty',
  'misguided',
  'dolt',
  'though',
  'may',
  'though',
  'still',
  'maintain',
  'less',
  'dangerous',
  'bush',
  'clinton',
  'publicly',
  'support',
  'revoking',
  'second',
  'amendment',
  'surrender',
  'arms',
  'soon',
  'enough',
  'officers',
  'around',
  'collect',
  'resistance',
  'useless',
  'overwhelm',
  'one',
  'time',
  'neighbors',
  'help',
  'consider',
  'immediate',
  'threat',
  'abstract',
  'criminal',
  'well',
  'ill',
  'help',
  'neighbors',
  'fucking',
  'bad',
  'gone',
  'way',
  'kkk',
  'violent',
  'solutions',
  'passe',
  'avoid',
  'situations',
  'encourage',
  'criminals',
  'safe',
  'possible',
  'violent',
  'solutions',
  'passe',
  'take',
  'propose',
  'disarming',
  'police',
  'please',
  'dont',
  'mention',
  'rkba',
  'breath',
  'kkk',
  'rkba',
  'able',
  'defend',
  'others',
  'killing',
  'innocent',
  'actually',
  'mention',
  'kkk',
  'rather',
  'funny',
  'considering',
  'first',
  'gun',
  'control',
  'law',
  'us',
  'created',
  'specifically',
  'disarm',
  'black',
  'people'],
 ['center',
  'policy',
  'research',
  'assistance',
  'palest',
  'people',
  'nf',
  'id',
  'cdp',
  'nf',
  'cdp',
  'uucp',
  'cpr',
  'apr',
  'lines',
  'center',
  'policy',
  'research',
  'cpr',
  'assistance',
  'palest',
  'people',
  'general',
  'assembly',
  'resolution',
  'december',
  'assistance',
  'palestinian',
  'people',
  'general',
  'assembly',
  'recalling',
  'resolution',
  'december',
  'taking',
  'account',
  'intifadah',
  'palestinian',
  'people',
  'occupied',
  'palestinian',
  'territory',
  'israeli',
  'occupation',
  'including',
  'israeli',
  'economic',
  'social',
  'policies',
  'practices',
  'rejecting',
  'israeli',
  'restrictions',
  'external',
  'economic',
  'social',
  'assistance',
  'palestinian',
  'people',
  'occupied',
  'palestinian',
  'territory',
  'concerned',
  'economic',
  'losses',
  'palestinian',
  'people',
  'result',
  'gulf',
  'crisis',
  'aware',
  'increasing',
  'need',
  'provide',
  'economic',
  'social',
  'assistance',
  'palestinian',
  'people',
  'affirming',
  'palestinian',
  'people',
  'cannot',
  'develop',
  'national',
  'economy',
  'long',
  'israeli',
  'occupation',
  'persists',
  'takes',
  'note',
  'report',
  'secretary',
  'general',
  'assistance',
  'palestinian',
  'people',
  'expresses',
  'appreciation',
  'states',
  'united',
  'nations',
  'bodies',
  'non',
  'governmental',
  'organizations',
  'provided',
  'assistance',
  'palestinian',
  'people',
  'requests',
  'international',
  'community',
  'united',
  'nations',
  'system',
  'non',
  'governmental',
  'organizations',
  'sustain',
  'increase',
  'assistance',
  'palestinian',
  'people',
  'close',
  'cooperation',
  'palestine',
  'liberation',
  'organization',
  'plo',
  'taking',
  'account',
  'economic',
  'losses',
  'palestinian',
  'people',
  'result',
  'gulf',
  'crisis',
  'calls',
  'treatment',
  'transit',
  'basis',
  'palestinian',
  'exports',
  'imports',
  'passing',
  'neighbouring',
  'ports',
  'points',
  'exit',
  'entry',
  'also',
  'calls',
  'granting',
  'trade',
  'concessions',
  'concrete',
  'preferential',
  'measures',
  'palestinian',
  'exports',
  'basis',
  'palestinian',
  'certificates',
  'origin',
  'calls',
  'immediate',
  'lifting',
  'israeli',
  'restrictions',
  'obstacles',
  'hindering',
  'implementation',
  'assistance',
  'projects',
  'united',
  'nations',
  'development',
  'programme',
  'united',
  'nations',
  'bodies',
  'others',
  'providing',
  'economic',
  'social',
  'assistance',
  'palestinian',
  'people',
  'occupied',
  'palestinian',
  'territory',
  'reiterates',
  'call',
  'implementation',
  'development',
  'projects',
  'occupied',
  'palestinian',
  'territory',
  'including',
  'projects',
  'mentioned',
  'resolution',
  'december',
  'calls',
  'facilitation',
  'establishment',
  'palestinian',
  'development',
  'banks',
  'occupied',
  'palestinian',
  'territory',
  'view',
  'promoting',
  'investment',
  'production',
  'employment',
  'income',
  'therein',
  'requests',
  'secretary',
  'general',
  'report',
  'general',
  'general',
  'assembly',
  'th',
  'session',
  'economic',
  'social',
  'council',
  'progress',
  'made',
  'implementation',
  'present',
  'resolution',
  'favour',
  'countries',
  'europe',
  'canada',
  'australia',
  'new',
  'zealand',
  'japan',
  'africa',
  'south',
  'america',
  'central',
  'america',
  'asia',
  'united',
  'states',
  'israel',
  'abstaining',
  'none'],
 ['svein',
  'pedersen',
  'utility',
  'updating',
  'win',
  'ini',
  'system',
  'ini',
  'organization',
  'university',
  'tromsoe',
  'norway',
  'lines',
  'nead',
  'utility',
  'updating',
  'deleting',
  'adding',
  'changing',
  'ini',
  'files',
  'windows',
  'find',
  'ftp',
  'host',
  'svein'],
 ['peter',
  'peng',
  'integra',
  'ls',
  'sale',
  'organization',
  'bell',
  'laboratories',
  'distribution',
  'nj',
  'keywords',
  'sale',
  'integra',
  'lines',
  'integra',
  'ls',
  'sale',
  'speed',
  'sunroof',
  'rear',
  'spoiler',
  'new',
  'tires',
  'miles',
  'best',
  'offer',
  'call',
  'email',
  'att',
  'hotsoup',
  'peng'],
 ['ned',
  'danieley',
  'compiling',
  'clients',
  'sun',
  'ipx',
  'organization',
  'basic',
  'arrhythmia',
  'laboratory',
  'duke',
  'univ',
  'med',
  'center',
  'durham',
  'lines',
  'nntp',
  'posting',
  'host',
  'bal',
  'mc',
  'duke',
  'originator',
  'im',
  'trying',
  'set',
  'ipx',
  'another',
  'group',
  'copied',
  'stuff',
  'compiled',
  'runs',
  'sunos',
  'using',
  'gcc',
  'things',
  'run',
  'fine',
  'however',
  'find',
  'couple',
  'bugs',
  'try',
  'recompile',
  'clients',
  'ipx',
  'runs',
  'get',
  'ld',
  'undefined',
  'symbol',
  'know',
  'include',
  'libxext',
  'get',
  'rid',
  'messages',
  'cant',
  'figure',
  'get',
  'ipx',
  'ideas',
  'ned',
  'danieley',
  'basic',
  'arrhythmia',
  'laboratory',
  'box',
  'duke',
  'university',
  'medical',
  'center',
  'durham',
  'nc'],
 ['starfleet',
  'command',
  'color',
  'drivers',
  'article',
  'shelley',
  'pinnp',
  'reply',
  'distribution',
  'pnw',
  'organization',
  'university',
  'washington',
  'seattle',
  'lines',
  'nntp',
  'posting',
  'host',
  'hardy',
  'washington',
  'would',
  'appreciate',
  'driver',
  'name',
  'cica',
  'functions',
  'color',
  'driver',
  'quadtel',
  'video',
  'card',
  'type',
  'chip',
  'chipset',
  'used',
  'would',
  'suffice',
  'well'],
 ['joseph',
  'lam',
  'request',
  'islanders',
  'mail',
  'list',
  'article',
  'cbnewsl',
  'apr',
  'distribution',
  'na',
  'organization',
  'lines',
  'article',
  'bui',
  'mr',
  'writes',
  'article',
  'writes',
  'anyone',
  'keeping',
  'islanders',
  'mail',
  'list',
  'could',
  'please',
  'add',
  'thanks',
  'advance',
  'ercu',
  'add',
  'onto',
  'list',
  'thanks',
  'rex',
  'count',
  'go',
  'isles',
  'please',
  'count',
  'also',
  'cant',
  'tell',
  'excited',
  'islanders',
  'beat',
  'rangers',
  'overtime',
  'last',
  'friday',
  'go',
  'isles'],
 ['mike',
  'diack',
  'bit',
  'serial',
  'converters',
  'xxdate',
  'tue',
  'apr',
  'gmt',
  'nntp',
  'posting',
  'host',
  'dialup',
  'slip',
  'gw',
  'umn',
  'organization',
  'persian',
  'cat',
  'carpet',
  'co',
  'useragent',
  'nuntius',
  'lines',
  'someone',
  'looking',
  'weeks',
  'ago',
  'check',
  'comp',
  'dsp',
  'mike'],
 ['lost',
  'gospel',
  'organization',
  'claremont',
  'graduate',
  'school',
  'lines',
  'finished',
  'reading',
  'burton',
  'macks',
  'new',
  'book',
  'lost',
  'gospel',
  'christian',
  'origins_',
  'thought',
  'totally',
  'cool',
  'anyone',
  'else',
  'read',
  'want',
  'talk',
  'randy'],
 ['kumaravel',
  'natarajan',
  'water',
  'trunk',
  'probe',
  'nntp',
  'posting',
  'host',
  'opal',
  'organization',
  'motorola',
  'inc',
  'cellular',
  'infrastructure',
  'group',
  'lines',
  'james',
  'long',
  'writes',
  'article',
  'tommy',
  'szeto',
  'writes',
  'water',
  'gradually',
  'builds',
  'trunk',
  'friends',
  'ford',
  'probe',
  'every',
  'would',
  'remove',
  'spare',
  'scoop',
  'water',
  'plywood',
  'carpet',
  'cover',
  'trunk',
  'would',
  'guess',
  'usually',
  'happens',
  'good',
  'thunder',
  'storm',
  'qs',
  'common',
  'problem',
  'drain',
  'holes',
  'located',
  'hatch',
  'noticed',
  'probe',
  'also',
  'recently',
  'cleaning',
  'back',
  'think',
  'water',
  'coming',
  'rubber',
  'stoppered',
  'holes',
  'beneath',
  'spare',
  'mine',
  'looked',
  'slightly',
  'worn',
  'water',
  'water',
  'damage',
  'level',
  'spare',
  'area',
  'taken',
  'low',
  'priority',
  'since',
  'found',
  'rotating',
  'tires',
  'torn',
  'cv',
  'boot',
  'ugh',
  'ive',
  'got',
  'gt',
  'smoked',
  'taillight',
  'assembly',
  'think',
  'water',
  'getting',
  'first',
  'got',
  'month',
  'one',
  'rear',
  'taillights',
  'fogged',
  'moisture',
  'took',
  'dealer',
  'replaced',
  'entire',
  'assembly',
  'happened',
  'one',
  'months',
  'later',
  'time',
  'happened',
  'look',
  'spare',
  'tire',
  'well',
  'noticed',
  'water',
  'standing',
  'dealer',
  'reluctant',
  'time',
  'replace',
  'convinced',
  'fix',
  'must',
  'deal',
  'number',
  'probes',
  'problem',
  'havent',
  'noticed',
  'water',
  'taillamps',
  'trunk',
  'last',
  'years',
  'last',
  'month',
  'taillamp',
  'fogged',
  'im',
  'going',
  'try',
  'take',
  'back',
  'get',
  'fix',
  'im',
  'real',
  'tempted',
  'drill',
  'vent',
  'drain',
  'holes',
  'tops',
  'bottoms',
  'assembly',
  'forget',
  'getting',
  'annoying',
  'almost',
  'every',
  'gt',
  'ive',
  'seen',
  'problem',
  'vel',
  'vel',
  'natarajan',
  'motorola',
  'cellular',
  'arlington',
  'hts',
  'il'],
 ['greg',
  'rogers',
  'hey',
  'teh',
  'cannucks',
  'reply',
  'greg',
  'rogers',
  'organization',
  'stanford',
  'linear',
  'accelerator',
  'center',
  'lines',
  'hi',
  'due',
  'living',
  'bay',
  'area',
  'unable',
  'see',
  'vancouvers',
  'victory',
  'jets',
  'last',
  'night',
  'know',
  'score',
  'rarely',
  'describes',
  'game',
  'could',
  'someone',
  'please',
  'post',
  'brief',
  'sonapsis',
  'sp',
  'waht',
  'happened',
  'well',
  'team',
  'play',
  'cannucks',
  'deserving',
  'victory',
  'also',
  'could',
  'kind',
  'soul',
  'please',
  'email',
  'end',
  'season',
  'individual',
  'player',
  'stats',
  'greg',
  'vancouver',
  'cup',
  'virtual',
  'reality'],
 ['jim',
  'halat',
  'islam',
  'caused',
  'believing',
  'genocide',
  'caused',
  'theism',
  'reply',
  'jim',
  'halat',
  'lines',
  'article',
  'mozumder',
  'writes',
  'im',
  'saying',
  'anything',
  'happen',
  'atheism',
  'beleiver',
  'knowledgeable',
  'one',
  'religion',
  'good',
  'happen',
  'becoming',
  'tiresome',
  'statement',
  'coming',
  'definition',
  'assertion',
  'islam',
  'good',
  'belief',
  'islam',
  'good',
  'therefore',
  'believer',
  'islam',
  'produce',
  'good',
  'islam',
  'good',
  'blah',
  'blah',
  'blah',
  'thats',
  'circular',
  'gets',
  'equally',
  'meaningless',
  'say',
  'something',
  'produces',
  'good',
  'good',
  'produces',
  'nothing',
  'unapplied',
  'definition',
  'youre',
  'application',
  'saying',
  'true',
  'really',
  'believe',
  'true',
  'thats',
  'silly',
  'conversely',
  'say',
  'handedly',
  'happen',
  'atheism',
  'offshoot',
  'believe',
  'becomes',
  'true',
  'dont',
  'believe',
  'doesnt',
  'like',
  'religions',
  'im',
  'aquainted',
  'islam',
  'teaches',
  'exclusion',
  'caste',
  'suggests',
  'harsh',
  'penalties',
  'logical',
  'call',
  'punishment',
  'certain',
  'limits',
  'speech',
  'sex',
  'example',
  'good',
  'see',
  'much',
  'pain',
  'suffering',
  'without',
  'justification',
  'except',
  'hand_',
  'inaccessible',
  'god',
  'toss',
  'around',
  'word',
  'knowledgable',
  'bit',
  'carelessly',
  'believer_',
  'except',
  'contradiction',
  'terms',
  'infer',
  'mean',
  'believer',
  'terms',
  'faith',
  'need',
  'knowledge',
  'believe',
  'faith',
  'nothing',
  'jim',
  'halat'],
 ['wally',
  'bass',
  'date',
  'stuck',
  'organization',
  'auspex',
  'systems',
  'santa',
  'clara',
  'lines',
  'nntp',
  'posting',
  'host',
  'alpha',
  'auspex',
  'com',
  'article',
  'john',
  'bongiovanni',
  'writes',
  'stuff',
  'deleted',
  'hear',
  'order',
  'date',
  'advance',
  'something',
  'like',
  'clock',
  'make',
  'get',
  'date',
  'system',
  'call',
  'apparently',
  'clock',
  'hardware',
  'interrupt',
  'bios',
  'dont',
  'date',
  'advance',
  'automatically',
  'get',
  'date',
  'call',
  'notices',
  'midnight',
  'reset',
  'flag',
  'set',
  'advances',
  'date',
  'anybody',
  'info',
  'two',
  'problems',
  'bios',
  'tod',
  'routine',
  'updates',
  'bios',
  'clock',
  'uses',
  'bit',
  'day',
  'increment',
  'second',
  'wrapping',
  'clock',
  'past',
  'midnight',
  'get',
  'lost',
  'one',
  'calls',
  'bios',
  'read',
  'clock',
  'meantime',
  'bios',
  'resets',
  'day',
  'wrap',
  'indicator',
  'first',
  'get',
  'date',
  'call',
  'anybody',
  'wrap',
  'indicator',
  'set',
  'unless',
  'first',
  'bios',
  'get',
  'date',
  'call',
  'midnight',
  'done',
  'dos',
  'kernel',
  'part',
  'dos',
  'knows',
  'increment',
  'date',
  'day',
  'wrap',
  'indication',
  'normally',
  'lost',
  'guess',
  'kevins',
  'menu',
  'system',
  'uses',
  'bios',
  'calls',
  'read',
  'clock',
  'order',
  'display',
  'time',
  'hence',
  'entity',
  'causes',
  'day',
  'wrap',
  'indication',
  'get',
  'lost',
  'even',
  'menu',
  'system',
  'notices',
  'day',
  'wrap',
  'think',
  'indicated',
  'non',
  'zero',
  'value',
  'al',
  'really',
  'isnt',
  'particularly',
  'good',
  'way',
  'tell',
  'dos',
  'dos',
  'update',
  'day',
  'menu',
  'system',
  'dos',
  'calls',
  'get',
  'time',
  'would',
  'cause',
  'dos',
  'kernel',
  'bios',
  'call',
  'wrap',
  'indicator',
  'would',
  'hence',
  'processed',
  'properly',
  'possibly',
  'though',
  'menu',
  'system',
  'cant',
  'easily',
  'dos',
  'calls',
  'time',
  'dos',
  'reentrant',
  'perhaps',
  'time',
  'incrementing',
  'ofters',
  'occur',
  'menu',
  'system',
  'inside',
  'dos',
  'call',
  'wally',
  'bass'],
 ['scott',
  'dorsey',
  'old',
  'simms',
  'organization',
  'nasa',
  'langley',
  'research',
  'center',
  'reptile',
  'farm',
  'lines',
  'nntp',
  'posting',
  'host',
  'grissom',
  'larc',
  'nasa',
  'gov',
  'article',
  'writes',
  'article',
  'stewart',
  'beal',
  'writes',
  'wondering',
  'people',
  'good',
  'uses',
  'old',
  'simms',
  'bunch',
  'apple',
  'mac',
  'know',
  'lots',
  'people',
  'tried',
  'sell',
  'gotten',
  'interest',
  'christmas',
  'tree',
  'decorations',
  'cat',
  'doesnt',
  'eat',
  'yes',
  'dont',
  'look',
  'appropriate',
  'much',
  'prefer',
  'used',
  'tubes',
  'tree',
  'scott'],
 ['ozan',
  'yigit',
  'turkish',
  'government',
  'agents',
  'usenet',
  'lie',
  'teeth',
  'reply',
  'message',
  'thu',
  'apr',
  'gmt',
  'organization',
  'york',
  'student',
  'information',
  'systems',
  'project',
  'lines',
  'davidian',
  'babble',
  'turkish',
  'government',
  'feels',
  'funnel',
  'heightened',
  'state',
  'ultra',
  'nationalism',
  'existing',
  'turkey',
  'today',
  'onto',
  'usenet',
  'convince',
  'people',
  'via',
  'revisionist',
  'myopic',
  'incidental',
  'view',
  'place',
  'world',
  'turkish',
  'government',
  'usenet',
  'long',
  'going',
  'keep',
  'repeating',
  'utterly',
  'idiotic',
  'increasingly',
  'saddening',
  'drivel',
  'oz',
  'life',
  'people',
  'sea',
  'look',
  'shore',
  'cannot',
  'know',
  'depths',
  'armenian',
  'proverb'],
 ['mark',
  'wilson',
  'jobs',
  'pork',
  'bill',
  'organization',
  'ncr',
  'engineering',
  'manufacturing',
  'atlanta',
  'atlanta',
  'ga',
  'distribution',
  'usa',
  'lines',
  'wed',
  'wsj',
  'start',
  'white',
  'house',
  'seeking',
  'mount',
  'public',
  'pressure',
  'gop',
  'senators',
  'bombarded',
  'news',
  'outlets',
  'senators',
  'home',
  'states',
  'news',
  'releases',
  'warning',
  'certain',
  'projects',
  'may',
  'funded',
  'billion',
  'stimulus',
  'bill',
  'isnt',
  'passed',
  'none',
  'projects',
  'mentioned',
  'actually',
  'bill',
  'rather',
  'part',
  'wish',
  'list',
  'may',
  'funded',
  'billion',
  'community',
  'development',
  'block',
  'grants',
  'end',
  'could',
  'sworn',
  'heard',
  'bunch',
  'clintonites',
  'going',
  'raving',
  'dishonest',
  'rebublicans',
  'taking',
  'items',
  'wish',
  'list',
  'order',
  'ridicule',
  'bill',
  'clinton',
  'using',
  'list',
  'order',
  'garner',
  'support',
  'bill',
  'guys',
  'going',
  'honarable',
  'thing',
  'say',
  'clinton',
  'dishonest',
  'mob',
  'rule',
  'isnt',
  'prettier',
  'merely',
  'mob',
  'calls',
  'government',
  'aint',
  'charity',
  'using',
  'someone',
  'elses',
  'money',
  'wilsons',
  'theory',
  'relativity',
  'go',
  'back',
  'far',
  'enough',
  'related'],
 ['anger',
  'organization',
  'bell',
  'labs',
  'lines',
  'paul',
  'conditt',
  'writes',
  'case',
  'couldnt',
  'tell',
  'get',
  'extremely',
  'angry',
  'upset',
  'see',
  'things',
  'like',
  'instead',
  'rationalizing',
  'fears',
  'phobias',
  'need',
  'reaching',
  'people',
  'aids',
  'socially',
  'unacceptable',
  'diseases',
  'whether',
  'got',
  'disease',
  'actions',
  'irrelevant',
  'still',
  'need',
  'jesus',
  'aaron',
  'bryce',
  'cardenas',
  'writes',
  'first',
  'issue',
  'bring',
  'anger',
  'obvious',
  'ly',
  'wrong',
  'angry',
  'gal',
  'reason',
  'especially',
  'extremely',
  'angry',
  'par',
  'hatred',
  'jesus',
  'every',
  'reason',
  'angry',
  'us',
  'putting',
  'cross',
  'sin',
  'yet',
  'prayer',
  'forgive',
  'father',
  'know',
  'dont',
  'know',
  'obvious',
  'speaking',
  'acts',
  'flesh',
  'speaking',
  'emotions',
  'emotions',
  'moral',
  'immoral',
  'good',
  'bad',
  'emotions',
  'first',
  'step',
  'label',
  'emotion',
  'good',
  'bad',
  'numb',
  'hide',
  'true',
  'feelings',
  'accept',
  'god',
  'accepts',
  'us',
  'seems',
  'pauls',
  'anger',
  'accepted',
  'channeled',
  'plea',
  'us',
  'refrain',
  'passing',
  'judgement',
  'afflicted',
  'disease',
  'reach',
  'others',
  'give',
  'calling',
  'arguments',
  'foolish',
  'belittling',
  'quarrels',
  'avoiding',
  'action',
  'fear',
  'give',
  'others',
  'bad',
  'feeling',
  'hes',
  'forgiving',
  'think',
  'aaron',
  'dont',
  'quick',
  'judge',
  'forgiven',
  'aids',
  'dealt',
  'taken',
  'responsibility',
  'feelings',
  'made',
  'appropriate',
  'choices',
  'action',
  'feelings',
  'given',
  'anger',
  'joe',
  'moore'],
 ['cs',
  'utexas',
  'uunet',
  'olivea',
  'sgigate',
  'sgiblab',
  'adagio',
  'panasonic',
  'com',
  'nntp',
  'server',
  'caltech',
  'keith',
  'political',
  'atheists',
  'keith',
  'allan',
  'schneider',
  'organization',
  'california',
  'institute',
  'technology',
  'pasadena',
  'nntp',
  'posting',
  'host',
  'lloyd',
  'caltech',
  'lines',
  'robert',
  'beauchaine',
  'writes',
  'us',
  'even',
  'argument',
  'doesnt',
  'stand',
  'costs',
  'far',
  'execute',
  'criminal',
  'country',
  'feed',
  'clothe',
  'shelter',
  'remainder',
  'natural',
  'life',
  'people',
  'believe',
  'fault',
  'judicial',
  'system',
  'find',
  'one',
  'greatest',
  'virtues',
  'assume',
  'talking',
  'appeals',
  'processes',
  'etc',
  'well',
  'noted',
  'people',
  'imprisoned',
  'life',
  'also',
  'tend',
  'appeal',
  'though',
  'quite',
  'much',
  'final',
  'hours',
  'anyway',
  'economics',
  'good',
  'reason',
  'either',
  'favor',
  'oppose',
  'punishment',
  'keith'],
 ['get',
  'thee',
  'nunnery',
  'israeli',
  'terrorism',
  'organization',
  'university',
  'virginia',
  'lines',
  'writes',
  'andi',
  'beyer',
  'writes',
  'think',
  'israeli',
  'press',
  'might',
  'tad',
  'bit',
  'biased',
  'reporting',
  'events',
  'doubt',
  'propaganda',
  'machine',
  'goering',
  'reported',
  'accurately',
  'happening',
  'germany',
  'interesting',
  'basing',
  'truth',
  'israeli',
  'propaganda',
  'consider',
  'israeli',
  'reporting',
  'events',
  'israel',
  'propoganda',
  'consider',
  'washington',
  'posts',
  'handling',
  'american',
  'events',
  'propoganda',
  'makes',
  'israeli',
  'press',
  'inherently',
  'biased',
  'opinion',
  'wouldnt',
  'compare',
  'nazi',
  'propoganda',
  'either',
  'unless',
  'want',
  'provide',
  'evidence',
  'israeli',
  'inaccuracies',
  'parallels',
  'nazism',
  'suggest',
  'keep',
  'mouth',
  'shut',
  'im',
  'sick',
  'tired',
  'anti',
  'semites',
  'comparing',
  'israel',
  'nazis',
  'yes',
  'opinion',
  'compare',
  'israel',
  'nazis',
  'anti',
  'semite',
  'know',
  'damn',
  'well',
  'isnt',
  'true',
  'trying',
  'discredit',
  'israel',
  'ed',
  'know',
  'ed',
  'youre',
  'right',
  'andi',
  'shouldnt',
  'comparing',
  'israel',
  'nazis',
  'israelis',
  'much',
  'worse',
  'nazis',
  'ever',
  'anyway',
  'nazis',
  'lot',
  'good',
  'germany',
  'would',
  'succeeded',
  'werent',
  'damn',
  'jews',
  'holocaust',
  'never',
  'happened',
  'anyway',
  'ample',
  'evidence',
  'given',
  'george',
  'schafer',
  'harvard',
  'dept',
  'history',
  'even',
  'randolph',
  'higgins',
  'nyu',
  'shown',
  'holocaust',
  'semitic',
  'conspiracy',
  'created',
  'obtain',
  'sympathy',
  'piush',
  'creation',
  'israel'],
 ['christian',
  'devil',
  'revealed',
  'paul',
  'harvey',
  'organization',
  'duck',
  'pond',
  'public',
  'unix',
  'log',
  'guest',
  'lines',
  'puzzled',
  'concept',
  'adam',
  'eve',
  'coming',
  'know',
  'good',
  'evil',
  'resolved',
  'within',
  'gods',
  'universe',
  'action',
  'evokes',
  'equal',
  'opposite',
  'reaction',
  'good',
  'without',
  'evil',
  'opposite',
  'issue',
  'give',
  'allegiance',
  'even',
  'sinful',
  'state',
  'perform',
  'evil',
  'act',
  'submitted',
  'god',
  'place',
  'sinful',
  'act',
  'account',
  'rom',
  'vein',
  'perform',
  'good',
  'deeds',
  'book',
  'life',
  'gods',
  'control',
  'still',
  'sinning',
  'see',
  'rom',
  'take',
  'good',
  'look',
  'tell',
  'man',
  'christian',
  'devil',
  'real',
  'virus',
  'meme',
  'infecting',
  'possessing',
  'good',
  'people',
  'keep',
  'em',
  'becoming',
  'human',
  'beings',
  'emphasis',
  'matter',
  'good',
  'people',
  'evil',
  'people',
  'good',
  'people',
  'see',
  'good',
  'people',
  'vexed',
  'christian',
  'devil',
  'cant',
  'burn',
  'lynch',
  'rape',
  'wise',
  'let',
  'rise',
  'christian',
  'devil',
  'real',
  'man',
  'else',
  'explain',
  'five',
  'hundred',
  'years',
  'history',
  'even',
  'explained',
  'christians',
  'invoke',
  'christian',
  'devil',
  'keep',
  'knocking',
  'cant',
  'come',
  'got',
  'understand',
  'youve',
  'living',
  'sin',
  'walk',
  'right',
  'sit',
  'right',
  'ill',
  'keep',
  'loving',
  'ill',
  'play',
  'clown',
  'bend',
  'low',
  'let',
  'tell',
  'know',
  'yah',
  'ive',
  'buked',
  'brothers',
  'ive',
  'stoned',
  'woe',
  'woe',
  'woe',
  'im',
  'hung',
  'tree',
  'ganging',
  'woe',
  'woe',
  'woe',
  'doesnt',
  'matter',
  'man',
  'lives',
  'life',
  'loves',
  'doesnt',
  'matter',
  'man',
  'honest',
  'life',
  'loves',
  'want',
  'somewhere',
  'want',
  'somewhere',
  'hallelujah',
  'hallelujah',
  'somewhere',
  'lay',
  'head',
  'woe',
  'ska',
  'beat',
  'eaven',
  'man',
  'stiff',
  'necked',
  'fools',
  'think',
  'youre',
  'cool',
  'deny',
  'simplicity',
  'yes',
  'gone',
  'long',
  'love',
  'vanity',
  'yes',
  'got',
  'wrong',
  'interpretation',
  'mixed',
  'vain',
  'imagination',
  'take',
  'jah',
  'sun',
  'jah',
  'moon',
  'jah',
  'rain',
  'jah',
  'stars',
  'forever',
  'yes',
  'erase',
  'fantasy',
  'yeah',
  'lips',
  'righteous',
  'teach',
  'many',
  'fools',
  'die',
  'want',
  'wisdom',
  'rich',
  'mans',
  'wealth',
  'city',
  'righteous',
  'wealth',
  'holy',
  'place',
  'take',
  'jah',
  'sun',
  'jah',
  'moon',
  'jah',
  'rain',
  'jah',
  'stars',
  'forever',
  'yes',
  'erase',
  'fantasy',
  'destruction',
  'poor',
  'poverty',
  'destruction',
  'soul',
  'vanity',
  'yeah',
  'dont',
  'want',
  'rule',
  'ya',
  'dont',
  'want',
  'fool',
  'ya',
  'dont',
  'want',
  'school',
  'ya',
  'things',
  'might',
  'never',
  'know',
  'yes',
  'got',
  'wrong',
  'interpretation',
  'mixed',
  'vain',
  'vain',
  'imagination',
  'stiff',
  'necked',
  'fools',
  'think',
  'youre',
  'cool',
  'deny',
  'oh',
  'simplicity',
  'love',
  'see',
  'yah',
  'move',
  'rhythm',
  'love',
  'see',
  'youre',
  'dancing',
  'within',
  'gives',
  'great',
  'joy',
  'feel',
  'sweet',
  'togetherness',
  'everyones',
  'theyre',
  'best',
  'remind',
  'days',
  'jericho',
  'trodden',
  'jericho',
  'wall',
  'days',
  'well',
  'trod',
  'true',
  'babylon',
  'gonna',
  'trod',
  'babylon',
  'fall',
  'saw',
  'angel',
  'seven',
  'seals',
  'saying',
  'babylon',
  'throne',
  'going',
  'weeping',
  'wailing',
  'tonight'],
 ['bbbbig',
  'problem',
  'print',
  'file',
  'help',
  'organization',
  'harvard',
  'smithsonian',
  'center',
  'astrophysics',
  'distribution',
  'world',
  'lines',
  'article',
  'writes',
  'experts',
  'file',
  'three',
  'pages',
  'long',
  'line',
  'equations',
  'plus',
  'diagram',
  'size',
  'file',
  'kb',
  'unlinking',
  'embedded',
  'objects',
  'kb',
  'unlinking',
  'embedded',
  'objects',
  'well',
  'print',
  'since',
  'dont',
  'laser',
  'printer',
  'send',
  'print',
  'file',
  'gives',
  'back',
  'bbbbbbig',
  'file',
  'well',
  'mb',
  'long',
  'fail',
  'see',
  'file',
  'boosted',
  'mb',
  'file',
  'obviously',
  'able',
  'carry',
  'mb',
  'file',
  'public',
  'printer',
  'unless',
  'find',
  'network',
  'card',
  'cable',
  'etc',
  'could',
  'anyone',
  'please',
  'enlighten',
  'solution',
  'already',
  'try',
  'print',
  'page',
  'time',
  'still',
  'wont',
  'fit',
  'hd',
  'floppy',
  'thanx',
  'mil',
  'dennis',
  'woo',
  'department',
  'mechanical',
  'engineering',
  'mail',
  'university',
  'new',
  'brunswick',
  'tel',
  'problem',
  'copy',
  'whole',
  'doc',
  'new',
  'file',
  'problem',
  'gone',
  'hope',
  'helps',
  'hua'],
 ['timothy',
  'may',
  'clipper',
  'infringement',
  'intergraphs',
  'name',
  'organization',
  'netcom',
  'line',
  'communication',
  'services',
  'guest',
  'newsreader',
  'tin',
  'pl',
  'lines',
  'besides',
  'infringement',
  'civil',
  'liberties',
  'post',
  'name',
  'clipper',
  'chip',
  'seems',
  'confusable',
  'clipper',
  'chip',
  'intergraph',
  'originally',
  'designed',
  'team',
  'fairchild',
  'semiconductor',
  'clipper',
  'bit',
  'risc',
  'microprocessor',
  'still',
  'used',
  'workstations',
  'notably',
  'intergraph',
  'supplier',
  'cad',
  'tools',
  'intergraph',
  'acquired',
  'clipper',
  'product',
  'line',
  'fairchild',
  'sold',
  'national',
  'semiconductor',
  'several',
  'years',
  'back',
  'first',
  'saw',
  'clipper',
  'chip',
  'announcement',
  'immediately',
  'thought',
  'article',
  'referring',
  'clipper',
  'chip',
  'know',
  'seems',
  'grounds',
  'intergraph',
  'sue',
  'im',
  'lawyer',
  'id',
  'say',
  'im',
  'cryptologist',
  'dont',
  'want',
  'incriminate',
  'laws',
  'new',
  'regime',
  'tim',
  'may',
  'timothy',
  'may',
  'crypto',
  'anarchy',
  'encryption',
  'digital',
  'money',
  'anonymous',
  'networks',
  'digital',
  'pseudonyms',
  'zero',
  'knowledge',
  'reputations',
  'information',
  'markets',
  'aptos',
  'ca',
  'black',
  'markets',
  'collapse',
  'governments',
  'higher',
  'power',
  'public',
  'key',
  'pgp',
  'mailsafe',
  'available'],
 ['eric',
  'taylor',
  'summary',
  'underground',
  'underwater',
  'wireless',
  'methods',
  'keywords',
  'rogers',
  'tesla',
  'hertz',
  'underground',
  'underwater',
  'wireless',
  'radio',
  'nntp',
  'posting',
  'host',
  'teal',
  'csn',
  'org',
  'organization',
  'laboratories',
  'expires',
  'fri',
  'apr',
  'gmt',
  'lines',
  'article',
  'writes',
  'variety',
  'water',
  'proof',
  'housings',
  'could',
  'real',
  'meat',
  'problem',
  'electronics',
  'hence',
  'posting',
  'kind',
  'transmission',
  'would',
  'reliable',
  'underwater',
  'murky',
  'even',
  'night',
  'time',
  'conditions',
  'im',
  'sure',
  'sound',
  'feasible',
  'given',
  'distortion',
  'water',
  'obviously',
  'direction',
  'would',
  'accurate',
  'range',
  'could',
  'relatively',
  'short',
  'imagine',
  'hundred',
  'yards',
  'would',
  'enough',
  'jim',
  'mcdonald',
  'refer',
  'patents',
  'james',
  'harris',
  'rogers',
  'details',
  'methods',
  'underground',
  'underwater',
  'wireless',
  'communications',
  'review',
  'refer',
  'march',
  'june',
  'rogers',
  'methods',
  'used',
  'extensively',
  'world',
  'war',
  'unclassified',
  'war',
  'supposedly',
  'government',
  'rethought',
  'soon',
  'rogers',
  'convieniently',
  'forgotten',
  'bottom',
  'line',
  'antennas',
  'grounded',
  'send',
  'half',
  'signal',
  'thru',
  'ground',
  'half',
  'travels',
  'thru',
  'space',
  'quickly',
  'dissapated',
  'square',
  'distance',
  'travels',
  'thru',
  'ground',
  'disapate',
  'furthermore',
  'published',
  'data',
  'showed',
  'noise',
  'drowned',
  'regular',
  'reception',
  'underground',
  'antennas',
  'would',
  'recieve',
  'virtually',
  'noise',
  'free',
  'find',
  'hard',
  'believe',
  'refer',
  'work',
  'man',
  'invented',
  'wireless',
  'tesla',
  'tesla',
  'confirmed',
  'rogers',
  'methods',
  'correct',
  'hertzian',
  'wave',
  'theory',
  'completely',
  'abberant',
  'et',
  'tesla',
  'years',
  'ahead',
  'time',
  'perhaps',
  'time',
  'comes'],
 ['ed',
  'ipser',
  'supply',
  'side',
  'economic',
  'policy',
  'david',
  'stockman',
  'nntp',
  'posting',
  'host',
  'solomon',
  'technet',
  'sg',
  'organization',
  'technet',
  'singapore',
  'distribution',
  'na',
  'lines',
  'article',
  'ashish',
  'arora',
  'writes',
  'excerpts',
  'netnews',
  'sci',
  'econ',
  'apr',
  'supply',
  'side',
  'economic',
  'po',
  'deficits',
  'declined',
  'reaching',
  'low',
  'gnp',
  'tax',
  'spending',
  'hike',
  'reversed',
  'trend',
  'brett',
  'true',
  'details',
  'would',
  'appreciated',
  'yes',
  'sadly',
  'true',
  'primary',
  'reason',
  'essence',
  'details',
  'seeking',
  'grahm',
  'rudman',
  'budget',
  'controls',
  'working',
  'fact',
  'working',
  'well',
  'unless',
  'feds',
  'something',
  'going',
  'start',
  'cutting',
  'pork',
  'bush',
  'democrats',
  'got',
  'together',
  'budget',
  'summit',
  'replaced',
  'grahm',
  'rudman',
  'historic',
  'grand',
  'compromise',
  'bush',
  'consented',
  'raise',
  'taxes',
  'exchange',
  'certain',
  'caps',
  'spending',
  'increases',
  'turned',
  'taxes',
  'killed',
  'reagan',
  'expansion',
  'caps',
  'spending',
  'increases',
  'dispelled',
  'clinton',
  'first',
  'act',
  'president',
  'could',
  'create',
  'new',
  'plan',
  'tax',
  'increases',
  'result',
  'clinton',
  'hopes',
  'reduce',
  'deficit',
  'level',
  'reagan',
  'left',
  'office',
  'chew',
  'awhile'],
 ['stephen',
  'schaffner',
  'ancient',
  'books',
  'organization',
  'stanford',
  'linear',
  'accelerator',
  'center',
  'lines',
  'article',
  'wilson',
  'heydt',
  'writes',
  'dating',
  'oldest',
  'extant',
  'texts',
  'nt',
  'would',
  'feel',
  'us',
  'civil',
  'war',
  'couple',
  'thousand',
  'years',
  'extant',
  'text',
  'written',
  'adjust',
  'largely',
  'illiterate',
  'population',
  'one',
  'every',
  'copy',
  'manuscript',
  'done',
  'hand',
  'considerably',
  'better',
  'feel',
  'say',
  'punic',
  'wars',
  'peloponnesian',
  'war',
  'spelling',
  'optional',
  'almost',
  'event',
  'classical',
  'history',
  'close',
  'events',
  'think',
  'oldest',
  'extent',
  'manuscripts',
  'cases',
  'steve',
  'schaffner',
  'opinions',
  'expressed',
  'may',
  'mine',
  'may',
  'slac',
  'stanford',
  'university',
  'doe'],
 ['tim',
  'ciceran',
  'tiff',
  'anything',
  'organization',
  'brock',
  'university',
  'st',
  'catharines',
  'ontario',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'program',
  'called',
  'graphic',
  'workshop',
  'ftp',
  'wuarchive',
  'file',
  'msdos',
  'graphics',
  'directory',
  'called',
  'grfwk',
  'zip',
  'program',
  'od',
  'everthing',
  'need',
  'tmc'],
 ['dunn',
  'jonathan',
  'james',
  'dumbest',
  'automotive',
  'concepts',
  'time',
  'organization',
  'university',
  'colorado',
  'boulder',
  'lines',
  'john',
  'daker',
  'writes',
  'cup',
  'holders',
  'driving',
  'importantant',
  'enough',
  'undertaking',
  'good',
  'idea',
  'carry',
  'non',
  'alcoholic',
  'drinks',
  'without',
  'spilling',
  'someone',
  'hold',
  'cellular',
  'phones',
  'mobile',
  'fax',
  'machines',
  'see',
  'fax',
  'machines',
  'yes',
  'cellular',
  'phones',
  'get',
  'hands',
  'free',
  'model',
  'fake',
  'convertible',
  'roofs',
  'vinyl',
  'roofs',
  'seemingly',
  'unique',
  'american',
  'luxury',
  'cars',
  'big',
  'three',
  'havent',
  'yet',
  'realized',
  'gold',
  'trim',
  'agree',
  'another',
  'display',
  'yuppie',
  'excess',
  'jon',
  'dunn'],
 ['ed',
  'stastny',
  'otis',
  'project',
  'ftp',
  'sites',
  'original',
  'art',
  'images',
  'keywords',
  'mr',
  'owl',
  'many',
  'licks',
  'organization',
  'university',
  'nebraska',
  'omaha',
  'lines',
  'otis',
  'project',
  'operative',
  'term',
  'stimulate',
  'file',
  'last',
  'updated',
  'otis',
  'otis',
  'purpose',
  'distributing',
  'original',
  'artwork',
  'photographs',
  'network',
  'public',
  'perusal',
  'scrutiny',
  'distribution',
  'digital',
  'immortality',
  'basic',
  'idea',
  'behind',
  'digital',
  'immortality',
  'computer',
  'networks',
  'stay',
  'anything',
  'interesting',
  'deposit',
  'around',
  'near',
  'forever',
  'gifs',
  'jpgs',
  'today',
  'artifacts',
  'digital',
  'future',
  'perhaps',
  'theyll',
  'put',
  'different',
  'formats',
  'perhaps',
  'surviving',
  'backup',
  'tapes',
  'theyll',
  'someone',
  'dig',
  'doesnt',
  'interest',
  'otis',
  'also',
  'offers',
  'forum',
  'critique',
  'exhibition',
  'works',
  'virtual',
  'art',
  'gallery',
  'never',
  'closes',
  'exists',
  'information',
  'dimension',
  'submissions',
  'hang',
  'wallpaper',
  'thousands',
  'glowing',
  'monitors',
  'suddenly',
  'life',
  'breathed',
  'work',
  'merit',
  'stimulus',
  'travel',
  'globe',
  'pulses',
  'light',
  'electrons',
  'spectators',
  'welcome',
  'also',
  'feel',
  'free',
  'browse',
  'gallery',
  'let',
  'artists',
  'know',
  'think',
  'efforts',
  'keep',
  'copies',
  'images',
  'look',
  'youve',
  'got',
  'gumption',
  'thats',
  'theyre',
  'otis',
  'currently',
  'two',
  'ftp',
  'sites',
  'projects',
  'otis',
  'uwi',
  'site',
  'sunsite',
  'unc',
  'pub',
  'multimedia',
  'pictures',
  'otis',
  'sunsite',
  'also',
  'gopher',
  'site',
  'otis',
  'well',
  'merely',
  'anonymous',
  'ftp',
  'either',
  'site',
  'internet',
  'change',
  'appropriate',
  'directory',
  'dont',
  'forget',
  'get',
  'busy',
  'bin',
  'command',
  'make',
  'sure',
  'youre',
  'binary',
  'otis',
  'also',
  'spreading',
  'dial',
  'bbs',
  'systems',
  'around',
  'north',
  'america',
  'following',
  'systems',
  'substancial',
  'supply',
  'otistuff',
  'underground',
  'cafe',
  'omaha',
  'lines',
  'cyberden',
  'sanfran',
  'usenet',
  'waffle',
  'iron',
  'contribute',
  'happens',
  'draw',
  'pretty',
  'picture',
  'take',
  'lovely',
  'photo',
  'get',
  'scanned',
  'image',
  'file',
  'either',
  'ftp',
  'put',
  'contrib',
  'incoming',
  'directory',
  'uuencode',
  'send',
  'email',
  'addresses',
  'eof',
  'email',
  'image',
  'received',
  'put',
  'correct',
  'directory',
  'computer',
  'originated',
  'works',
  'also',
  'welcome',
  'otis',
  'directories',
  'house',
  'two',
  'types',
  'image',
  'files',
  'gif',
  'jpg',
  'gif',
  'jpg',
  'files',
  'require',
  'oddly',
  'enough',
  'gif',
  'jpg',
  'viewer',
  'see',
  'viewers',
  'available',
  'types',
  'computers',
  'large',
  'ftp',
  'sites',
  'around',
  'internet',
  'jpg',
  'viewers',
  'bit',
  'tougher',
  'find',
  'cant',
  'find',
  'one',
  'gif',
  'viewer',
  'obtain',
  'jpg',
  'gif',
  'conversion',
  'program',
  'change',
  'jpg',
  'files',
  'standard',
  'gif',
  'format',
  'otis',
  'also',
  'accepts',
  'animation',
  'files',
  'submit',
  'image',
  'files',
  'please',
  'send',
  'email',
  'time',
  'stating',
  'information',
  'uploaded',
  'whether',
  'used',
  'publications',
  'projects',
  'merely',
  'people',
  'view',
  'also',
  'include',
  'biographical',
  'information',
  'well',
  'info',
  'files',
  'contributing',
  'artist',
  'works',
  'also',
  'upload',
  'text',
  'file',
  'info',
  'instead',
  'emailing',
  'pictures',
  'scanner',
  'hope',
  'merely',
  'send',
  'copies',
  'otis',
  'project',
  'ed',
  'stastny',
  'po',
  'bx',
  'omaha',
  'ne',
  'either',
  'scan',
  'get',
  'someone',
  'scan',
  'include',
  'ample',
  'sase',
  'want',
  'stuff',
  'back',
  'also',
  'include',
  'information',
  'image',
  'preferably',
  'line',
  'description',
  'image',
  'include',
  'infofile',
  'directory',
  'finally',
  'put',
  'preferences',
  'images',
  'named',
  'include',
  'well',
  'conversely',
  'scanner',
  'would',
  'like',
  'help',
  'please',
  'contact',
  'well',
  'arrange',
  'things',
  'want',
  'submit',
  'works',
  'disk',
  'peachy',
  'merely',
  'send',
  'disk',
  'address',
  'omaha',
  'sase',
  'want',
  'disk',
  'back',
  'good',
  'people',
  'dont',
  'direct',
  'access',
  'encoders',
  'ftp',
  'access',
  'scanner',
  'accept',
  'disks',
  'either',
  'mac',
  'ibm',
  'compatible',
  'format',
  'possible',
  'please',
  'submit',
  'image',
  'files',
  'gif',
  'jpg',
  'cant',
  'convert',
  'formats',
  'wed',
  'rather',
  'senders',
  'request',
  'also',
  'fill',
  'disks',
  'much',
  'otis',
  'stand',
  'even',
  'dont',
  'stuff',
  'contribute',
  'send',
  'blank',
  'disk',
  'sase',
  'disk',
  'postage',
  'packing',
  'get',
  'slab',
  'otis',
  'megabytes',
  'files',
  'growing',
  'email',
  'current',
  'archive',
  'size',
  'directory',
  'distribution',
  'images',
  'distributed',
  'otis',
  'project',
  'may',
  'distributed',
  'freely',
  'condition',
  'original',
  'filename',
  'kept',
  'altered',
  'way',
  'save',
  'convert',
  'one',
  'image',
  'format',
  'another',
  'fact',
  'encourage',
  'files',
  'distributed',
  'local',
  'bulletin',
  'boards',
  'could',
  'please',
  'transport',
  'appropriate',
  'text',
  'files',
  'along',
  'images',
  'would',
  'also',
  'nice',
  'youd',
  'send',
  'note',
  'post',
  'images',
  'otis',
  'local',
  'bbs',
  'want',
  'keep',
  'track',
  'participants',
  'idea',
  'widespread',
  'stuff',
  'purpose',
  'otis',
  'get',
  'images',
  'spread',
  'much',
  'possible',
  'time',
  'please',
  'upload',
  'favorite',
  'bbs',
  'system',
  'even',
  'post',
  'info',
  'file',
  'would',
  'keen',
  'want',
  'works',
  'find',
  'otis',
  'directory',
  'youll',
  'check',
  'see',
  'permission',
  'granted',
  'stipulations',
  'permission',
  'free',
  'copy',
  'publication',
  'full',
  'address',
  'credit',
  'either',
  'find',
  'rm',
  'file',
  'image',
  'series',
  'images',
  'artists',
  'directory',
  'artists',
  'name',
  'permission',
  'isnt',
  'explicitly',
  'given',
  'youll',
  'contact',
  'artist',
  'ask',
  'info',
  'available',
  'email',
  'ill',
  'get',
  'contact',
  'artist',
  'give',
  'contact',
  'information',
  'permitted',
  'work',
  'always',
  'courteous',
  'let',
  'artist',
  'know',
  'perhaps',
  'even',
  'send',
  'free',
  'copy',
  'compensation',
  'files',
  'naming',
  'images',
  'please',
  'keep',
  'names',
  'files',
  'dos',
  'format',
  'means',
  'keep',
  'filename',
  'jpg',
  'gif',
  'eight',
  'characters',
  'less',
  'way',
  'usually',
  'initials',
  'artist',
  'plus',
  'three',
  'four',
  'digit',
  'code',
  'series',
  'images',
  'plus',
  'series',
  'number',
  'thus',
  'leonardo',
  'devincis',
  'fifth',
  'mechanical',
  'drawing',
  'would',
  'something',
  'like',
  'ldmek',
  'gif',
  'ldmek',
  'jpg',
  'ldmech',
  'gif',
  'etc',
  'keeping',
  'names',
  'characters',
  'assures',
  'filename',
  'remain',
  'intact',
  'systems',
  'creating',
  'image',
  'files',
  'creating',
  'image',
  'files',
  'sure',
  'least',
  'include',
  'name',
  'somewhere',
  'picture',
  'gives',
  'people',
  'reference',
  'case',
  'theyd',
  'like',
  'contact',
  'may',
  'also',
  'want',
  'include',
  'title',
  'address',
  'information',
  'youd',
  'like',
  'people',
  'know',
  'hmmm',
  'thats',
  'guidelines',
  'added',
  'needed',
  'input',
  'expected',
  'disclaimer',
  'otis',
  'project',
  'connection',
  'church',
  'otis',
  'sumerian',
  'deity',
  'followers',
  'pope',
  'priest',
  'ezine',
  'administrator',
  'take',
  'sacrifices',
  'donations',
  'however',
  'disclaimer',
  'otis',
  'project',
  'distribution',
  'original',
  'image',
  'files',
  'files',
  'go',
  'public',
  'large',
  'possible',
  'form',
  'mass',
  'media',
  'someone',
  'could',
  'unscrupulously',
  'images',
  'financial',
  'gain',
  'unless',
  'youve',
  'given',
  'permission',
  'illegal',
  'otis',
  'takes',
  'responsibility',
  'simple',
  'terms',
  'rights',
  'revert',
  'author',
  'artist',
  'leave',
  'image',
  'otis',
  'give',
  'permission',
  'viewed',
  'copied',
  'distributed',
  'electronically',
  'dont',
  'want',
  'images',
  'distributed',
  'dont',
  'upload',
  'leave',
  'image',
  'otis',
  'giving',
  'permission',
  'used',
  'publication',
  'broadcast',
  'incurs',
  'profit',
  'includes',
  'limited',
  'magazines',
  'newsletters',
  'clip',
  'art',
  'software',
  'screen',
  'printed',
  'clothing',
  'etc',
  'must',
  'give',
  'specific',
  'permission',
  'sort',
  'usage',
  'remember',
  'operative',
  'term',
  'stimulate',
  'know',
  'people',
  'thatd',
  'interested',
  'sort',
  'thing',
  'get',
  'involved',
  'kickm',
  'booty',
  'offer',
  'free',
  'food',
  'whatever',
  'ed',
  'stastny',
  'otis',
  'project',
  'end',
  'process',
  'sound',
  'news',
  'arts',
  'po',
  'bx',
  'ftp',
  'sunsite',
  'unc',
  'pub',
  'multimedia',
  'pictures',
  'otis',
  'omaha',
  'ne',
  'projects',
  'otis',
  'email'],
 ['owings',
  'matthew',
  'riceburner',
  'respect',
  'article',
  'henson',
  'apr',
  'organization',
  'western',
  'washington',
  'university',
  'ninja',
  'xl',
  'got',
  'ridden',
  'winter',
  'long',
  'always',
  'wave',
  'lines',
  'amazed',
  'number',
  'harley',
  'riders',
  'waving',
  'even',
  'lowly',
  'baby',
  'ninja',
  'lets',
  'keep',
  'good',
  'attitudes',
  'brock',
  'yates',
  'said',
  'months',
  'car',
  'driver',
  'ready',
  'war',
  'would',
  'rather',
  'rode',
  'busses',
  'bikers',
  'freedom',
  'wanna',
  'know',
  'obsession',
  'keep',
  'world',
  'rearview',
  'mirror',
  'try',
  'run',
  'sun',
  'wheels',
  'rhestless',
  'heart',
  'marty',
  'ninja',
  'xl',
  'motosport'],
 ['bill',
  'stewart',
  'clipper',
  'chip',
  'technical',
  'summary',
  'organization',
  'brought',
  'numbers',
  'reply',
  'message',
  'apr',
  'nntp',
  'posting',
  'host',
  'rainier',
  'ho',
  'att',
  'com',
  'lines',
  'article',
  'writes',
  'prof',
  'dennings',
  'description',
  'skipjack',
  'mostly',
  'omitted',
  'chip',
  'structure',
  'clipper',
  'chip',
  'contains',
  'classified',
  'bit',
  'block',
  'encryption',
  'algorithm',
  'called',
  'skipjack',
  'algorithm',
  'uses',
  'bit',
  'keys',
  'compared',
  'des',
  'rounds',
  'scrambling',
  'compared',
  'des',
  'supports',
  'des',
  'modes',
  'operation',
  'throughput',
  'mbits',
  'second',
  'bit',
  'family',
  'key',
  'common',
  'chips',
  'bit',
  'serial',
  'number',
  'bit',
  'secret',
  'key',
  'unlocks',
  'messages',
  'encrypted',
  'chip',
  'key',
  'message',
  'stream',
  'digitized',
  'voice',
  'fed',
  'clipper',
  'chip',
  'produce',
  'two',
  'values',
  'encrypted',
  'message',
  'stream',
  'law',
  'enforcement',
  'block',
  'three',
  'questions',
  'looks',
  'like',
  'bits',
  'input',
  'gives',
  'bits',
  'output',
  'bits',
  'bits',
  'bits',
  'bits',
  'bits',
  'really',
  'need',
  'transmit',
  'bits',
  'time',
  'transmit',
  'bits',
  'wiretap',
  'block',
  'beginning',
  'would',
  'really',
  'obnoxious',
  'bandwidth',
  'limited',
  'applications',
  'like',
  'cellular',
  'phones',
  'even',
  'regular',
  'phones',
  'des',
  'modes',
  'interact',
  'two',
  'part',
  'output',
  'various',
  'feedback',
  'modes',
  'apply',
  'message',
  'block',
  'also',
  'wiretap',
  'block',
  'wiretap',
  'block',
  'transmitted',
  'beginning',
  'get',
  'incorporated',
  'everything',
  'feedback',
  'modes',
  'ecb',
  'mode',
  'clipper',
  'chip',
  'check',
  'wiretap',
  'block',
  'block',
  'present',
  'since',
  'receiving',
  'chip',
  'doesnt',
  'know',
  'transmitters',
  'presumably',
  'cant',
  'check',
  'validity',
  'limited',
  'checking',
  'form',
  'wiretap',
  'block',
  'maybe',
  'checking',
  'serial',
  'number',
  'reasonableness',
  'unless',
  'theres',
  'sort',
  'back',
  'door',
  'structure',
  'lets',
  'recognize',
  'valid',
  'case',
  'replace',
  'wiretap',
  'block',
  'different',
  'wiretap',
  'block',
  'presumably',
  'old',
  'valid',
  'one',
  'avoid',
  'attracting',
  'attention',
  'chip',
  'wont',
  'postprocess',
  'output',
  'regular',
  'people',
  'one',
  'serial',
  'number',
  'dummy',
  'key',
  'paranoid',
  'people',
  'someone',
  'elses',
  'serial',
  'number',
  'hand',
  'could',
  'think',
  'solution',
  'easily',
  'presumably',
  'nsa',
  'could',
  'done',
  'something',
  'block',
  'like',
  'message',
  'encryption',
  'thats',
  'really',
  'thanks',
  'pray',
  'peace',
  'bill',
  'bill',
  'stewart',
  'bell',
  'labs',
  'holmdel',
  'nj',
  'im',
  'new',
  'jersey',
  'work',
  'cyberspace',
  'white',
  'house',
  'commect',
  'line',
  'fax'],
 ['dakota',
  'help',
  'kidney',
  'stones',
  'organization',
  'lawrence',
  'livermore',
  'national',
  'laboratory',
  'ncd',
  'lines',
  'nntp',
  'posting',
  'host',
  'eet',
  'llnl',
  'gov',
  'article',
  'writes',
  'girlfriend',
  'pain',
  'kidney',
  'stones',
  'says',
  'medical',
  'insurance',
  'cannot',
  'get',
  'removed',
  'question',
  'way',
  'treat',
  'least',
  'mitigate',
  'effects',
  'help',
  'deeply',
  'appreciated',
  'advice',
  'referral',
  'literature',
  'etc',
  'thank',
  'dave',
  'carvell',
  'first',
  'let',
  'offer',
  'condolences',
  'ive',
  'kidney',
  'stones',
  'times',
  'know',
  'pain',
  'going',
  'first',
  'best',
  'see',
  'doctor',
  'however',
  'every',
  'time',
  'kidney',
  'stones',
  'saw',
  'doctor',
  'thing',
  'prescribe',
  'pain',
  'killers',
  'medication',
  'urinary',
  'tract',
  'infection',
  'pain',
  'killers',
  'nothing',
  'kidney',
  'stones',
  'extremely',
  'painful',
  'stones',
  'judged',
  'passable',
  'waited',
  'however',
  'last',
  'one',
  'took',
  'days',
  'pass',
  'fun',
  'anyway',
  'absolutely',
  'wont',
  'see',
  'doctor',
  'suggest',
  'drinking',
  'lots',
  'fluids',
  'perhaps',
  'counter',
  'sleeping',
  'pill',
  'highly',
  'suggest',
  'seeing',
  'doctor',
  'kidney',
  'stones',
  'something',
  'fool',
  'around',
  'rayed',
  'make',
  'sure',
  'serious',
  'problem',
  'steve'],
 ['pieman',
  'macplus',
  'home',
  'brew',
  'acceler',
  'question',
  'nntp',
  'posting',
  'host',
  'vaxb',
  'isc',
  'rit',
  'reply',
  'organization',
  'rochester',
  'institute',
  'technology',
  'lines',
  'ha',
  'talk',
  'changing',
  'clock',
  'speed',
  'makes',
  'ask',
  'replaced',
  'mhz',
  'plus',
  'mhz',
  'mhz',
  'clock',
  'occilater',
  'shared',
  'rest',
  'mac',
  'new',
  'mhz',
  'would',
  'mac',
  'work',
  'would',
  'work',
  'would',
  'think',
  'problems',
  'sound',
  'vidio',
  'scsi',
  'seems',
  'like',
  'simple',
  'solution',
  'keepa',
  'dead',
  'slow',
  'mechine',
  'live',
  'little',
  'longer',
  'oh',
  'would',
  'work',
  'idears',
  'make',
  'work',
  'thanks',
  'alex'],
 ['clayton',
  'cramer',
  'professors',
  'whining',
  'pay',
  'distribution',
  'usa',
  'organization',
  'optilink',
  'corporation',
  'petaluma',
  'ca',
  'lines',
  'article',
  'tim',
  'fogarty',
  'writes',
  'article',
  'clayton',
  'cramer',
  'writes',
  'article',
  'tim',
  'fogarty',
  'writes',
  'article',
  'clayton',
  'cramer',
  'writes',
  'professors',
  'get',
  'summers',
  'industry',
  'employees',
  'dont',
  'professor',
  'gets',
  'summer',
  'primary',
  'purpose',
  'professor',
  'university',
  'publish',
  'teaching',
  'secondary',
  'summer',
  'professors',
  'able',
  'research',
  'required',
  'papers',
  'im',
  'told',
  'advisor',
  'universities',
  'publishing',
  'primary',
  'emphasis',
  'many',
  'professors',
  'cal',
  'state',
  'university',
  'system',
  'dont',
  'publish',
  'prefer',
  'teaching',
  'pressure',
  'publish',
  'discussing',
  'issue',
  'helps',
  'participants',
  'definitions',
  'although',
  'rarely',
  'occurs',
  'usenet',
  'term',
  'university',
  'think',
  'organization',
  'bachelors',
  'masters',
  'phd',
  'program',
  'believe',
  'cal',
  'state',
  'schools',
  'call',
  'colleges',
  'uc',
  'schools',
  'universities',
  'univeristy',
  'number',
  'one',
  'goal',
  'publish',
  'cal',
  'state',
  'university',
  'system',
  'offers',
  'bachlors',
  'masters',
  'degrees',
  'ph',
  'offered',
  'opposition',
  'uc',
  'cal',
  'state',
  'schools',
  'professors',
  'speak',
  'phds',
  'nearly',
  'professors',
  'phds',
  'havent',
  'professor',
  'didnt',
  'though',
  'wife',
  'couple',
  'professors',
  'friend',
  'instructor',
  'didnt',
  'degree',
  'minister',
  'culture',
  'black',
  'panthers',
  'teaching',
  'anyway',
  'bad',
  'habit',
  'usually',
  'showing',
  'teach',
  'class',
  'finally',
  'quit',
  'disgust',
  'racism',
  'university',
  'expected',
  'show',
  'teach',
  'university',
  'professors',
  'phds',
  'teaching',
  'assistants',
  'tas',
  'tas',
  'slave',
  'labor',
  'graduate',
  'students',
  'got',
  'tuition',
  'paid',
  'hundred',
  'month',
  'living',
  'expenses',
  'exchange',
  'grunt',
  'work',
  'professors',
  'taught',
  'lectures',
  'students',
  'per',
  'class',
  'tas',
  'taught',
  'labs',
  'per',
  'class',
  'tim',
  'fogarty',
  'sonoma',
  'state',
  'university',
  'typical',
  'class',
  'size',
  'per',
  'class',
  'teaching',
  'definitely',
  'goal',
  'sometimes',
  'actually',
  'happens',
  'best',
  'professors',
  'sonoma',
  'state',
  'equivalent',
  'best',
  'professors',
  'ucla',
  'usc',
  'clayton',
  'cramer',
  'uunet',
  'pyramid',
  'optilink',
  'cramer',
  'opinions',
  'mine',
  'relations',
  'people',
  'mutual',
  'consent'],
 ['david',
  'young',
  'drawing',
  'lines',
  'inverse',
  'xor',
  'organization',
  'mit',
  'media',
  'laboratory',
  'lines',
  'im',
  'trying',
  'write',
  'code',
  'lets',
  'draw',
  'lines',
  'rubber',
  'band',
  'boxes',
  'motif',
  'im',
  'running',
  'bit',
  'display',
  'ive',
  'created',
  'colormap',
  'using',
  'almost',
  'colors',
  'want',
  'draw',
  'lines',
  'drawing',
  'area',
  'widget',
  'widget',
  'im',
  'displaying',
  'bitmap',
  'using',
  'xputimage',
  'doesnt',
  'matter',
  'lines',
  'draw',
  'interactively',
  'stay',
  'around',
  'window',
  'refreshed',
  'currently',
  'draw',
  'interactively',
  'begin',
  'drawindex',
  'colortable',
  'index',
  'reserve',
  'foreground',
  'color',
  'index',
  'background',
  'image',
  'palette_colors',
  'drawindex',
  'red',
  'palette_colors',
  'red',
  'palette_colors',
  'drawindex',
  'green',
  'palette_colors',
  'green',
  'palette_colors',
  'drawindex',
  'blue',
  'palette_colors',
  'blue',
  'xstorecolors',
  'mydisplay',
  'my_cmap',
  'palette_colors',
  'drawindex',
  'xflush',
  'mydisplay',
  'xsetfunction',
  'mydisplay',
  'gc',
  'gxxor',
  'xsetforeground',
  'mydisplay',
  'gc',
  'drawindex',
  'draw',
  'xdrawline',
  'mydisplay',
  'xtwindow',
  'drawingarea',
  'gc',
  'xflush',
  'mydisplay',
  'im',
  'done',
  'return',
  'things',
  'normal',
  'xsetfunction',
  'mydisplay',
  'gc',
  'gxcopy',
  'id',
  'like',
  'happen',
  'lines',
  'draw',
  'inverse',
  'whatever',
  'im',
  'drawing',
  'instead',
  'happens',
  'get',
  'white',
  'lines',
  'lines',
  'white',
  'background',
  'nothing',
  'shows',
  'lines',
  'black',
  'area',
  'nothing',
  'shows',
  'strange',
  'gxxor',
  'function',
  'seems',
  'right',
  'since',
  'rubber',
  'banding',
  'box',
  'erases',
  'redraws',
  'correctly',
  'ie',
  'disturbing',
  'underlying',
  'image',
  'suggestions',
  'im',
  'wrong',
  'david'],
 ['monophysites',
  'mike',
  'walker',
  'organization',
  'harvard',
  'university',
  'science',
  'center',
  'lines',
  'article',
  'andrew',
  'byler',
  'writes',
  'mike',
  'walker',
  'using',
  'standard',
  'formula',
  'fully',
  'god',
  'fully',
  'human',
  'im',
  'sure',
  'object',
  'saying',
  'jesus',
  'human',
  'think',
  'usual',
  'analysis',
  'would',
  'sin',
  'part',
  'basic',
  'definition',
  'humanity',
  'consequence',
  'fall',
  'jesus',
  'human',
  'fallen',
  'human',
  'clh',
  'differ',
  'moderator',
  'thought',
  'whole',
  'idea',
  'god',
  'coming',
  'earth',
  'live',
  'one',
  'us',
  'sin',
  'death',
  'one',
  'consecration',
  'prayers',
  'book',
  'common',
  'prayer',
  'puts',
  'jesus',
  'tempted',
  'succumb',
  'sin',
  'part',
  'basic',
  'definition',
  'humanity',
  'jesus',
  'fully',
  'human',
  'nicea',
  'would',
  'sin',
  'resurrection',
  'loses',
  'meaning',
  'encounter',
  'humanity',
  'powerfully',
  'sin',
  'distinguish',
  'human',
  'fallen',
  'human',
  'makes',
  'jesus',
  'less',
  'like',
  'one',
  'us',
  'time',
  'need',
  'issues',
  'get',
  'mighty',
  'subtle',
  'see',
  'people',
  'saying',
  'different',
  'things',
  'often',
  'hard',
  'tell',
  'whether',
  'really',
  'mean',
  'seriously',
  'different',
  'things',
  'whether',
  'using',
  'different',
  'terminology',
  'dont',
  'think',
  'theres',
  'question',
  'problem',
  'nestorius',
  'would',
  'agree',
  'saying',
  'christ',
  'human',
  'form',
  'without',
  'real',
  'human',
  'nature',
  'heretical',
  'id',
  'like',
  'bit',
  'wary',
  'copts',
  'armenians',
  'etc',
  'recent',
  'discussions',
  'suggest',
  'monophysite',
  'position',
  'may',
  'far',
  'orthodoxy',
  'many',
  'thought',
  'nestorius',
  'extreme',
  'representative',
  'one',
  'two',
  'major',
  'schools',
  'thought',
  'moderate',
  'representatives',
  'regarded',
  'orthodox',
  'theodore',
  'mopsuestia',
  'impression',
  'modern',
  'monophysite',
  'groups',
  'inherit',
  'entire',
  'tradition',
  'nestorius',
  'version',
  'may',
  'sufficient',
  'balanced',
  'position',
  'regarded',
  'orthodox',
  'clh',
  'first',
  'monophysites',
  'inherited',
  'none',
  'nestoriuss',
  'version',
  'opposite',
  'end',
  'spectrum',
  'second',
  'historical',
  'record',
  'suggests',
  'positions',
  'attributed',
  'nestorius',
  'extreme',
  'successful',
  'opponents',
  'wrote',
  'conventional',
  'history',
  'claimed',
  'mainly',
  'nestorius',
  'opposed',
  'term',
  'theotokos',
  'mary',
  'arguing',
  'think',
  'correctly',
  'human',
  'could',
  'called',
  'mother',
  'god',
  'mean',
  'athanasian',
  'creed',
  'talk',
  'son',
  'uncreate',
  'surely',
  'even',
  'arians',
  'would',
  'concede',
  'jesus',
  'existed',
  'long',
  'mary',
  'anyway',
  'nestoriuss',
  'opponents',
  'claimed',
  'saying',
  'mary',
  'theotokos',
  'claimed',
  'gave',
  'birth',
  'human',
  'nature',
  'jesus',
  'would',
  'require',
  'two',
  'seperate',
  'distinct',
  'natures',
  'argument',
  'fails',
  'though',
  'mary',
  'simply',
  'gave',
  'birth',
  'jesus',
  'preexisted',
  'either',
  'divinely',
  'accept',
  'nestorianism',
  'commonly',
  'defined',
  'natures',
  'intertwined',
  'la',
  'chalcedon',
  'second',
  'sure',
  'nestorianism',
  'better',
  'alternative',
  'orthodox',
  'view',
  'find',
  'hard',
  'believe',
  'pre',
  'incarnation',
  'jesuss',
  'human',
  'nature',
  'heaven',
  'likewise',
  'post',
  'ascension',
  'think',
  'rather',
  'god',
  'came',
  'earth',
  'took',
  'nature',
  'upon',
  'seperate',
  'nature',
  'capable',
  'tempted',
  'gethsemane',
  'since',
  'believe',
  'divine',
  'nature',
  'could',
  'never',
  'tempted',
  'moments',
  'weakness',
  'divine',
  'nature',
  'prevailed',
  'comments',
  'warmly',
  'appreciated',
  'jason',
  'albert',
  'may',
  'differences',
  'mean',
  'sin',
  'original',
  'complaint',
  'someone',
  'didnt',
  'see',
  'could',
  'call',
  'jesus',
  'fully',
  'human',
  'didnt',
  'sin',
  'completely',
  'agree',
  'jesus',
  'temptation',
  'simply',
  'object',
  'idea',
  'succumbing',
  'thereby',
  'fully',
  'human',
  'believe',
  'sin',
  'order',
  'human',
  'apologize',
  'confusing',
  'nestorianism',
  'monophysitism',
  'agree',
  'said',
  'elsewhere',
  'theres',
  'reason',
  'think',
  'everyone',
  'associated',
  'heretical',
  'positions',
  'fact',
  'heretical',
  'scholars',
  'maintain',
  'nestorius',
  'nestorian',
  'confess',
  'first',
  'time',
  'read',
  'correspondence',
  'nestorius',
  'opponents',
  'thought',
  'got',
  'better',
  'however',
  'scholars',
  'believe',
  'work',
  'eventually',
  'led',
  'chalcedon',
  'advance',
  'nestorius',
  'least',
  'rash',
  'dogmatic',
  'editor',
  'christological',
  'controversy',
  'refers',
  'rejecting',
  'approaches',
  'regular',
  'usenet',
  'readers',
  'know',
  'narrowness',
  'much',
  'impediment',
  'wrong',
  'furthermore',
  'say',
  'things',
  'think',
  'problematical',
  'responds',
  'rather',
  'mild',
  'letter',
  'cyril',
  'flame',
  'worthy',
  'usenet',
  'says',
  'attribute',
  'also',
  'logos',
  'name',
  'incarnation',
  'characteristics',
  'flesh',
  'conjoined',
  'brother',
  'either',
  'work',
  'mind',
  'truly',
  'errs',
  'fashion',
  'greeks',
  'mind',
  'diseased',
  'insane',
  'heresy',
  'arius',
  'apollinaris',
  'others',
  'thus',
  'carried',
  'away',
  'idea',
  'association',
  'bound',
  'make',
  'divine',
  'logos',
  'part',
  'fed',
  'milk',
  'participate',
  'degree',
  'growh',
  'stand',
  'need',
  'angelic',
  'assistance',
  'fearfulness',
  'things',
  'taken',
  'falsely',
  'put',
  'deity',
  'become',
  'occasion',
  'condemnation',
  'us',
  'perpetrate',
  'falsehood',
  'well',
  'good',
  'maintain',
  'proper',
  'distinction',
  'humanity',
  'divinity',
  'whole',
  'concept',
  'incarnation',
  'based',
  'exactly',
  'idea',
  'divine',
  'logos',
  'fact',
  'degree',
  'part',
  'born',
  'growing',
  'dying',
  'course',
  'must',
  'understood',
  'theres',
  'certain',
  'indirectness',
  'logos',
  'participation',
  'things',
  'must',
  'sort',
  'identification',
  'divine',
  'human',
  'dont',
  'incarnation',
  'nestorius',
  'seemed',
  'think',
  'black',
  'white',
  'terms',
  'missed',
  'sorts',
  'nuances',
  'one',
  'needs',
  'deal',
  'area',
  'say',
  'find',
  'hard',
  'believe',
  'pre',
  'incarnation',
  'jesuss',
  'human',
  'nature',
  'heaven',
  'dont',
  'think',
  'thats',
  'required',
  'orthodox',
  'doctrine',
  'divine',
  'logos',
  'eternal',
  'clh'],
 ['stefan',
  'de',
  'troch',
  'virtual',
  'mwm',
  'nntp',
  'posting',
  'host',
  'nemesis',
  'reply',
  'organization',
  'imec',
  'kapeldreef',
  'leuven',
  'belgium',
  'lines',
  'hi',
  'netland',
  'thought',
  'read',
  'existance',
  'virtual',
  'mwm',
  'like',
  'vtwm',
  'usual',
  'ftp',
  'sites',
  'gatakeeper',
  'dec',
  'com',
  'export',
  'lcs',
  'mit',
  'cant',
  'find',
  'trace',
  'program',
  'could',
  'anybody',
  'give',
  'hint',
  'find',
  'program',
  'confirm',
  'deny',
  'existance',
  'program',
  'regards',
  'stefan'],
 ['allan',
  'weber',
  'need',
  'help',
  'mitsubishi',
  'image',
  'printer',
  'organization',
  'university',
  'southern',
  'california',
  'los',
  'angeles',
  'ca',
  'lines',
  'distribution',
  'na',
  'nntp',
  'posting',
  'host',
  'sipi',
  'usc',
  'group',
  'recently',
  'bought',
  'mitsubishi',
  'video',
  'printer',
  'could',
  'help',
  'bought',
  'thing',
  'parallel',
  'data',
  'input',
  'addition',
  'usual',
  'video',
  'signal',
  'inputs',
  'claimed',
  'print',
  'gray',
  'level',
  'images',
  'however',
  'manual',
  'came',
  'describes',
  'format',
  'parallel',
  'data',
  'print',
  'bit',
  'pixel',
  'images',
  'initial',
  'problems',
  'parallel',
  'interface',
  'thing',
  'running',
  'parallel',
  'port',
  'hewlett',
  'packard',
  'workstation',
  'print',
  'bit',
  'pixel',
  'images',
  'fine',
  'called',
  'mitsubishi',
  'people',
  'asked',
  'level',
  'claim',
  'said',
  'available',
  'used',
  'video',
  'signal',
  'inputs',
  'mentioned',
  'sales',
  'literature',
  'however',
  'say',
  'bit',
  'pixel',
  'level',
  'images',
  'parallel',
  'mode',
  'didnt',
  'information',
  'program',
  'would',
  'call',
  'japan',
  'etc',
  'frankly',
  'find',
  'hard',
  'believe',
  'thing',
  'bit',
  'pixel',
  'images',
  'video',
  'source',
  'cant',
  'store',
  'bits',
  'pixel',
  'memory',
  'like',
  'memory',
  'expensive',
  'anybody',
  'information',
  'getting',
  'bit',
  'pixel',
  'even',
  'bit',
  'pixel',
  'images',
  'thing',
  'would',
  'greatly',
  'appreciate',
  'sending',
  'thanks',
  'allan',
  'weber',
  'signal',
  'image',
  'processing',
  'institute',
  'university',
  'southern',
  'california'],
 ['scott',
  'dorsey',
  'need',
  'find',
  'number',
  'phone',
  'line',
  'organization',
  'nasa',
  'langley',
  'research',
  'center',
  'reptile',
  'farm',
  'lines',
  'nntp',
  'posting',
  'host',
  'grissom',
  'larc',
  'nasa',
  'gov',
  'article',
  'writes',
  'greetings',
  'situation',
  'phone',
  'jack',
  'mounted',
  'wall',
  'dont',
  'know',
  'number',
  'line',
  'dont',
  'want',
  'call',
  'operator',
  'place',
  'trace',
  'question',
  'certain',
  'device',
  'find',
  'number',
  'line',
  'call',
  'friend',
  'long',
  'distance',
  'collect',
  'ask',
  'speak',
  'operator',
  'asks',
  'wont',
  'ask',
  'operator',
  'leave',
  'number',
  'shell',
  'read',
  'clear',
  'scott'],
 ['markus',
  'buchhorn',
  'hdf',
  'readers',
  'viewers',
  'organization',
  'australian',
  'national',
  'university',
  'canberra',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'originator',
  'gday',
  'anybody',
  'point',
  'utility',
  'read',
  'convert',
  'crop',
  'whatnot',
  'display',
  'hdf',
  'image',
  'files',
  'ive',
  'look',
  'hdf',
  'stuff',
  'ncsa',
  'must',
  'take',
  'award',
  'odd',
  'directory',
  'structure',
  'strange',
  'storage',
  'approaches',
  'minimalist',
  'documentation',
  'part',
  'problem',
  'want',
  'look',
  'large',
  'mb',
  'hdf',
  'files',
  'crop',
  'section',
  'ideally',
  'would',
  'like',
  'hdftoppm',
  'type',
  'utility',
  'pbmplus',
  'stuff',
  'quite',
  'merrily',
  'convert',
  'cropped',
  'part',
  'another',
  'format',
  'viewing',
  'animation',
  'otherwise',
  'someone',
  'please',
  'explain',
  'set',
  'ncsa',
  'visualisation',
  'hdf',
  'beta',
  'cropping',
  'etc',
  'suns',
  'sunos',
  'help',
  'greatly',
  'appreciated',
  'ta',
  'muchly',
  'cheers',
  'markus',
  'markus',
  'buchhorn',
  'parallel',
  'computing',
  'research',
  'facility',
  'email',
  'australian',
  'national',
  'university',
  'canberra',
  'australia',
  'international',
  'australia',
  'phone',
  'fax',
  'markus',
  'buchhorn',
  'parallel',
  'computing',
  'research',
  'facility',
  'email',
  'australian',
  'national',
  'university',
  'canberra',
  'australia',
  'international',
  'australia',
  'phone',
  'fax'],
 ['tapped',
  'code',
  'good',
  'arthur',
  'rubin',
  'distribution',
  'na',
  'organization',
  'beckman',
  'instruments',
  'inc',
  'nntp',
  'posting',
  'host',
  'dsg',
  'dse',
  'beckman',
  'com',
  'lines',
  'david',
  'sternlight',
  'writes',
  'article',
  'karl',
  'barrus',
  'writes',
  'would',
  'trust',
  'black',
  'box',
  'nsa',
  'versus',
  'open',
  'system',
  'elsewhere',
  'absolutely',
  'assured',
  'someone',
  'trusted',
  'black',
  'box',
  'secure',
  'nothing',
  'conceal',
  'government',
  'would',
  'like',
  'sure',
  'russian',
  'japanese',
  'french',
  'competitors',
  'services',
  'cant',
  'read',
  'traffic',
  'id',
  'like',
  'sure',
  'competitive',
  'bid',
  'information',
  'safe',
  'commercial',
  'competitors',
  'foreign',
  'governments',
  'would',
  'aid',
  'believe',
  'nsa',
  'identical',
  'motivations',
  'respect',
  'activities',
  'president',
  'many',
  'senior',
  'government',
  'officials',
  'made',
  'clear',
  'share',
  'motivations',
  'thus',
  'id',
  'trust',
  'coincidence',
  'interests',
  'argument',
  'well',
  'basic',
  'trust',
  'professionalism',
  'high',
  'confidence',
  'skills',
  'david',
  'david',
  'sternlight',
  'great',
  'care',
  'taken',
  'ensure',
  'accuracy',
  'information',
  'errors',
  'omissions',
  'excepted',
  'nothing',
  'errors',
  'omissions',
  'arthur',
  'rubin',
  'work',
  'beckman',
  'instruments',
  'brea',
  'personal',
  'opinions',
  'represent',
  'employer'],
 ['thomas',
  'chun',
  'hong',
  'kok',
  'hypercard',
  'unix',
  'organization',
  'ibm',
  'austin',
  'lines',
  'article',
  'ronald',
  'queloz',
  'writes',
  'hi',
  'netlanders',
  'anybody',
  'know',
  'something',
  'like',
  'macintosh',
  'hypercard',
  'unix',
  'platform',
  'thanks',
  'advance',
  'ron',
  'try',
  'metacard',
  'hypercard',
  'like',
  'programming',
  'environment',
  'chun',
  'hong'],
 ['king',
  'cobra',
  'nhlpa',
  'poll',
  'partial',
  'stats',
  'results',
  'nntp',
  'posting',
  'host',
  'ravel',
  'udel',
  'organization',
  'university',
  'delaware',
  'lines',
  'article',
  'young',
  'soo',
  'che',
  'writes',
  'people',
  'send',
  'polls',
  'take',
  'closer',
  'look',
  'njd',
  'deep',
  'team',
  'two',
  'capable',
  'goalies',
  'excellent',
  'forwards',
  'defensemen',
  'shooter',
  'richer',
  'around',
  'todd',
  'chef',
  'stasny',
  'master',
  'thousand',
  'dishes',
  'power',
  'play',
  'captain',
  'stevens',
  'take',
  'look',
  'numbers',
  'play',
  'see',
  'yup',
  'agree',
  'ya',
  'think',
  'devils',
  'beat',
  'red',
  'wings',
  'easily',
  'think',
  'send',
  'votes',
  'try',
  'diffrent',
  'teams',
  'voting',
  'think',
  'islanders',
  'quebec',
  'much',
  'better',
  'expected',
  'cobra',
  'sex',
  'answer',
  'sex',
  'question',
  'yes',
  'answer',
  'mail'],
 ['mark',
  'baker',
  'arrogance',
  'christians',
  'reply',
  'mark',
  'baker',
  'organization',
  'national',
  'capital',
  'freenet',
  'lines',
  'previous',
  'article',
  'melinda',
  'hsu',
  'says',
  'well',
  'argument',
  'usually',
  'stops',
  'right',
  'end',
  'arent',
  'kids',
  'groping',
  'truth',
  'authority',
  'declare',
  'beliefs',
  'besides',
  'false',
  'dont',
  'think',
  'belief',
  'right',
  'everyone',
  'elses',
  'belief',
  'wrong',
  'dont',
  'belief',
  'simply',
  'belief',
  'means',
  'authority',
  'belief',
  'come',
  'nowhere',
  'belief',
  'authoratative',
  'produce',
  'authority',
  'belief',
  'find',
  'authority',
  'belief',
  'legitimacy',
  'authority',
  'short',
  'mind',
  'start',
  'somewhere',
  'way',
  'majority',
  'christians',
  'catholics',
  'believe',
  'authority',
  'church',
  'derive',
  'authority',
  'bible',
  'acceptance',
  'church',
  'mark',
  'baker',
  'task',
  'cut',
  'jungles',
  'irrigate',
  'deserts',
  'lewis'],
 ['mats',
  'andtbacka',
  'years',
  'say',
  'christian',
  'morality',
  'organization',
  'unorganized',
  'usenet',
  'postings',
  'uninc',
  'lines',
  'reply',
  'message',
  'fri',
  'apr',
  'gmt',
  'news',
  'reader',
  'vms',
  'news',
  'writes',
  'society',
  'came',
  'good',
  'reason',
  'rape',
  'murder',
  'ok',
  'would',
  'consistent',
  'position',
  'hold',
  'still',
  'wrong',
  'basis',
  'morality',
  'societal',
  'norms',
  'current',
  'legalities',
  'basis',
  'surprise',
  'surprise',
  'bible',
  'inherent',
  'moral',
  'abhorrences',
  'ah',
  'exactly',
  'inherently',
  'abhorrent',
  'youre',
  'saying',
  'effect',
  'think',
  'things',
  'repulsive',
  'know',
  'whole',
  'bunch',
  'people',
  'agree',
  'deemed',
  'absolutely',
  'immoral',
  'forever',
  'period',
  'nice',
  'enough',
  'extent',
  'agree',
  'agree',
  'things',
  'inherently',
  'absolutely',
  'immoral',
  'labeled',
  'immoral',
  'good',
  'reason',
  'reason',
  'even',
  'theoretically',
  'change',
  'label',
  'yes',
  'thats',
  'vague',
  'way',
  'know',
  'top',
  'head',
  'defend',
  'say',
  'humans',
  'similarly',
  'made',
  'yes',
  'falls',
  'trap',
  'creation',
  'doesnt',
  'humans',
  'extent',
  'similar',
  'belong',
  'species',
  'species',
  'evolved',
  'another',
  'story',
  'altogether',
  'certain',
  'extent',
  'evolution',
  'even',
  'lend',
  'credence',
  'moral',
  'absolutism',
  'flavour',
  'arguments',
  'better',
  'exhibit',
  'trust',
  'goodness',
  'love',
  'respect',
  'courage',
  'honesty',
  'society',
  'rather',
  'deceipt',
  'hatred',
  'disrespect',
  'cowardness',
  'dishonesty',
  'youre',
  'saying',
  'morality',
  'whatll',
  'keep',
  'society',
  'alive',
  'kicking',
  'think',
  'point',
  'societies',
  'alike',
  'neither',
  'moralities',
  'havent',
  'everywhere',
  'seen',
  'everyone',
  'according',
  'thesis',
  'dont',
  'since',
  'hold',
  'created',
  'similarly',
  'similar',
  'identical',
  'makes',
  'unfalsifiable',
  'thesis',
  'say',
  'ill',
  'work',
  'punt',
  'fellow',
  'theists',
  'falsifiable',
  'finding',
  'someoe',
  'created',
  'different',
  'whatever',
  'might',
  'real',
  'world',
  'disclaimer',
  'great',
  'young',
  'insane'],
 ['need',
  'info',
  'dsp',
  'project',
  'nf',
  'id',
  'ee',
  'ualberta',
  'ca',
  'trsvax',
  'nf',
  'trsvax',
  'tandy',
  'com',
  'pauls',
  'apr',
  'lines',
  'motorola',
  'good',
  'app',
  'note',
  'band',
  'equalizer',
  'using',
  'dsp',
  'could',
  'easily',
  'ported',
  'ariel',
  'board',
  'even',
  'turtle',
  'beach',
  'development',
  'system'],
 ['cardinal',
  'ximenez',
  'arrogance',
  'christians',
  'organization',
  'national',
  'association',
  'disorganized',
  'lines',
  'melinda',
  'hsu',
  'writes',
  'id',
  'like',
  'share',
  'thoughts',
  'topic',
  'arrogance',
  'christians',
  'look',
  'forward',
  'responses',
  'encounters',
  'christians',
  'find',
  'dismayed',
  'belief',
  'faith',
  'total',
  'truth',
  'according',
  'beliefs',
  'come',
  'bible',
  'bible',
  'word',
  'god',
  'god',
  'truth',
  'thus',
  'know',
  'truth',
  'stance',
  'makes',
  'difficult',
  'discuss',
  'faiths',
  'hesitations',
  'christianity',
  'see',
  'way',
  'way',
  'truth',
  'see',
  'faith',
  'arising',
  'willful',
  'choice',
  'believe',
  'particular',
  'way',
  'choice',
  'part',
  'faith',
  'part',
  'reason',
  'seems',
  'choice',
  'im',
  'sort',
  'mystified',
  'christian',
  'might',
  'respond',
  'ill',
  'start',
  'parable',
  'christian',
  'woman',
  'hires',
  'carpenter',
  'build',
  'birdhouse',
  'comes',
  'begin',
  'talking',
  'religion',
  'believe',
  'understand',
  'god',
  'asks',
  'yes',
  'replies',
  'build',
  'birdhouse',
  'dont',
  'think',
  'melinda',
  'complaining',
  'basis',
  'christian',
  'belief',
  'however',
  'tendency',
  'among',
  'christians',
  'say',
  'answers',
  'god',
  'gave',
  'simply',
  'case',
  'believe',
  'bible',
  'inerrant',
  'however',
  'human',
  'interpretations',
  'bible',
  'necessarily',
  'error',
  'human',
  'imperfect',
  'remember',
  'make',
  'mistakes',
  'faith',
  'human',
  'imperfect',
  'understanding',
  'mind',
  'god',
  'claim',
  'many',
  'people',
  'existence',
  'bible',
  'allows',
  'us',
  'determine',
  'answers',
  'questions',
  'claim',
  'humans',
  'fully',
  'understand',
  'gods',
  'hubris'],
 ['cardinal',
  'ximenez',
  'ancient',
  'books',
  'organization',
  'national',
  'association',
  'disorganized',
  'lines',
  'mike',
  'cobb',
  'writes',
  'talk',
  'atheist',
  'tell',
  'new',
  'testament',
  'historically',
  'reliable',
  'document',
  'reasons',
  'would',
  'give',
  'found',
  'isnt',
  'effective',
  'argument',
  'atheists',
  'perfectly',
  'willing',
  'acknowledge',
  'existence',
  'ministry',
  'jesus',
  'quite',
  'capable',
  'rationalizing',
  'miracles',
  'resurrection',
  'hoaxes',
  'simple',
  'fabrications',
  'always',
  'make',
  'analogy',
  'book',
  'tells',
  'story',
  'historical',
  'trojan',
  'war',
  'also',
  'talks',
  'gods',
  'goddesses',
  'conversations',
  'dont',
  'think',
  'possible',
  'convince',
  'atheists',
  'validity',
  'christianity',
  'argument',
  'help',
  'foster',
  'faith',
  'understanding',
  'god',
  'could',
  'wrong',
  'former',
  'atheists',
  'led',
  'christianity',
  'argument',
  'alan',
  'terlep',
  'incestuous',
  'vituperousness',
  'oakland',
  'university',
  'rochester',
  'mi',
  'melissa',
  'eggertsen',
  'rushing',
  'angels',
  'fear',
  'tread'],
 ['joel',
  'chan',
  'game',
  'score',
  'report',
  'organization',
  'department',
  'mathematics',
  'university',
  'toronto',
  'lines',
  'curiosity',
  'happened',
  'weekly',
  'al',
  'nl',
  'game',
  'score',
  'reports',
  'used',
  'enjoy',
  'reading',
  'throughout',
  'summer',
  'last',
  'two',
  'years',
  'inquisitively',
  'joel',
  'joel',
  'chan',
  'dept',
  'mathematics',
  'university',
  'toronto',
  'toronto',
  'blue',
  'jays',
  'world',
  'series',
  'champs',
  'history',
  'ignore',
  'condemned',
  'repeat',
  'math',
  'comic',
  'strip',
  'betty'],
 ['robert',
  'weiss',
  'apr',
  'gods',
  'promise',
  'luke',
  'organization',
  'university',
  'buffalo',
  'lines',
  'news',
  'software',
  'vax',
  'vms',
  'vnews',
  'nntp',
  'posting',
  'host',
  'ubvmsb',
  'cc',
  'buffalo',
  'said',
  'yea',
  'rather',
  'blessed',
  'hear',
  'word',
  'god',
  'keep',
  'luke'],
 ['andrew',
  'huang',
  'quick',
  'question',
  'keywords',
  'removing',
  'panels',
  'organization',
  'brandeis',
  'university',
  'lines',
  'article',
  'devil',
  'reincarnate',
  'writes',
  'take',
  'driver',
  'side',
  'door',
  'panel',
  'inside',
  'honda',
  'prelude',
  'speaker',
  'went',
  'scratchy',
  'want',
  'access',
  'pins',
  'something',
  'going',
  'seems',
  'month',
  'vw',
  'group',
  'must',
  'get',
  'specific',
  'detailed',
  'question',
  'hondas',
  'would',
  'like',
  'ask',
  'next',
  'month',
  'get',
  'one',
  'hyundai',
  'instead',
  'honda',
  'thank',
  'andy'],
 ['jonas',
  'yngvesson',
  'point',
  'within',
  'polygon',
  'keywords',
  'point',
  'polygon',
  'organization',
  'dept',
  'ee',
  'university',
  'linkoping',
  'lines',
  'simon',
  'crowe',
  'writes',
  'looking',
  'algorithm',
  'determine',
  'given',
  'point',
  'bound',
  'polygon',
  'anyone',
  'code',
  'reference',
  'book',
  'containing',
  'information',
  'well',
  'since',
  'discussed',
  'take',
  'liberty',
  'reprinting',
  'without',
  'permission',
  'sue',
  'eric',
  'haines',
  'reprint',
  'interesting',
  'discussion',
  'topic',
  'jonas',
  'snip',
  'snip',
  'give',
  'man',
  'fish',
  'hell',
  'eat',
  'one',
  'day',
  'give',
  'man',
  'fishing',
  'rod',
  'hell',
  'laze',
  'around',
  'fishing',
  'never',
  'anything',
  'mind',
  'reprint',
  'without',
  'permission',
  'sue',
  'relevant',
  'information',
  'posted',
  'years',
  'ago',
  'problem',
  'note',
  'early',
  'postscript',
  'technology',
  'predating',
  'many',
  'years',
  'papers',
  'listed',
  'april',
  'st',
  'siggraph',
  'program',
  'announcement',
  'posted',
  'days',
  'ago',
  'eric',
  'intersection',
  'line',
  'polygon',
  'undecidable',
  'dave',
  'baraff',
  'tom',
  'duff',
  'newsgroups',
  'comp',
  'graphics',
  'keywords',
  'np',
  'jordan',
  'curve',
  'separation',
  'ursyhon',
  'metrization',
  'theorem',
  'organization',
  'program',
  'computer',
  'graphics',
  'article',
  'timothy',
  'lyle',
  'smith',
  'writes',
  'need',
  'find',
  'formula',
  'algorithm',
  'determine',
  'line',
  'intersects',
  'polygon',
  'would',
  'prefer',
  'method',
  'would',
  'little',
  'time',
  'possible',
  'need',
  'forward',
  'raytracing',
  'program',
  'think',
  'difficult',
  'problem',
  'start',
  'lines',
  'polygons',
  'semi',
  'algebraic',
  'sets',
  'contain',
  'uncountable',
  'number',
  'points',
  'cuff',
  'ideas',
  'first',
  'need',
  'check',
  'line',
  'polygon',
  'separated',
  'jordan',
  'curve',
  'separation',
  'theorem',
  'says',
  'polygon',
  'divides',
  'plane',
  'exactly',
  'two',
  'open',
  'thus',
  'non',
  'compact',
  'regions',
  'thus',
  'line',
  'lies',
  'completely',
  'inside',
  'polygon',
  'line',
  'lies',
  'completely',
  'outside',
  'polygon',
  'possibly',
  'rarely',
  'happen',
  'line',
  'intersects',
  'polyon',
  'phrasing',
  'question',
  'says',
  'line',
  'intersects',
  'polygon',
  'decision',
  'problem',
  'one',
  'possibility',
  'decision',
  'model',
  'approach',
  'reduce',
  'question',
  'well',
  'known',
  'problem',
  'try',
  'solve',
  'answer',
  'gives',
  'answer',
  'original',
  'decision',
  'problem',
  'recent',
  'years',
  'many',
  'geometric',
  'problems',
  'successfully',
  'modeled',
  'new',
  'language',
  'called',
  'postscript',
  'see',
  'postscript',
  'language',
  'adobe',
  'systems',
  'incorporated',
  'isbn',
  'co',
  'given',
  'line',
  'polygon',
  'write',
  'postscript',
  'program',
  'draws',
  'line',
  'polygon',
  'outputs',
  'answer',
  'output',
  'mean',
  'program',
  'executes',
  'command',
  'called',
  'showpage',
  'actually',
  'prints',
  'page',
  'paper',
  'containing',
  'line',
  'polygon',
  'quick',
  'examination',
  'paper',
  'provides',
  'answer',
  'reduced',
  'problem',
  'thus',
  'original',
  'problem',
  'two',
  'small',
  'problems',
  'approach',
  'infinite',
  'number',
  'ways',
  'encode',
  'reduced',
  'problem',
  'forced',
  'invoke',
  'axiom',
  'choice',
  'equivalently',
  'zorns',
  'lemma',
  'axiom',
  'choice',
  'regarded',
  'serious',
  'light',
  'days',
  'importantly',
  'question',
  'arises',
  'whether',
  'postscript',
  'program',
  'actually',
  'output',
  'piece',
  'paper',
  'words',
  'halt',
  'postscript',
  'expressive',
  'enough',
  'encode',
  'everything',
  'turing',
  'machine',
  'might',
  'thus',
  'halting',
  'problem',
  'postscript',
  'undecidable',
  'quite',
  'possible',
  'original',
  'problem',
  'turn',
  'undecidable',
  'wont',
  'even',
  'begin',
  'go',
  'difficulties',
  'aliasing',
  'finite',
  'precision',
  'running',
  'ink',
  'paper',
  'couple',
  'references',
  'might',
  'principia',
  'mathematica',
  'newton',
  'cambridge',
  'university',
  'press',
  'cambridge',
  'england',
  'sorry',
  'dont',
  'isbn',
  'introduction',
  'automata',
  'theory',
  'languages',
  'computation',
  'hopcroft',
  'ulman',
  'programming',
  'language',
  'kernighan',
  'ritchie',
  'tale',
  'two',
  'cities',
  'dickens',
  'tom',
  'duff',
  'summary',
  'overkill',
  'organization',
  'bell',
  'laboratories',
  'murray',
  'hill',
  'nj',
  'situation',
  'nearly',
  'bleak',
  'baraff',
  'suggests',
  'know',
  'better',
  'hes',
  'hung',
  'around',
  'labs',
  'long',
  'enough',
  'well',
  'known',
  'dobbin',
  'dullman',
  'reduction',
  'see',
  'dullman',
  'dobbin',
  'comp',
  'obfusc',
  'ii',
  'pp',
  'lemma',
  'line',
  'polygon',
  'intersection',
  'reduced',
  'hamiltonian',
  'circuit',
  'without',
  'grobner',
  'bases',
  'lpi',
  'coin',
  'acronym',
  'probably',
  'np',
  'complete',
  'besides',
  'turing',
  'completeness',
  'longer',
  'problem',
  'cray',
  'delivered',
  'since',
  'able',
  'complete',
  'infinite',
  'loop',
  'milliseconds',
  'scatter',
  'gather',
  'david',
  'baraff',
  'well',
  'sure',
  'worse',
  'np',
  'complete',
  'thats',
  'restrict',
  'case',
  'line',
  'satisfies',
  'lipschitz',
  'condition',
  'second',
  'derivative',
  'think',
  'theres',
  'siggraph',
  'paper',
  'caltech',
  'deals',
  'email',
  'dept',
  'electrical',
  'engineering',
  'voice',
  'university',
  'linkoping',
  'sweden',
  'fax'],
 ['mike',
  'jones',
  'jack',
  'morris',
  'reply',
  'disclaimer',
  'posting',
  'represents',
  'posters',
  'views',
  'necessarily',
  'ibm',
  'nntp',
  'posting',
  'host',
  'fenway',
  'aix',
  'kingston',
  'ibm',
  'com',
  'organization',
  'ibm',
  'aix',
  'esa',
  'development',
  'kingston',
  'ny',
  'lines',
  'roger',
  'maynard',
  'writes',
  'sure',
  'depends',
  'definition',
  'better',
  'based',
  'could',
  'mine',
  'based',
  'really',
  'happened',
  'well',
  'actually',
  'based',
  'really',
  'happened',
  'based',
  'fantasy',
  'happened',
  'thats',
  'ok',
  'understand',
  'hockey',
  'background',
  'stats',
  'like',
  'plus',
  'minus',
  'make',
  'rbi',
  'look',
  'good',
  'violas',
  'fault',
  'boston',
  'offense',
  'morris',
  'blue',
  'jays',
  'strong',
  'offense',
  'dont',
  'tell',
  'morris',
  'magical',
  'ability',
  'cause',
  'offensive',
  'players',
  'score',
  'runs',
  'perfect',
  'example',
  'problem',
  'isolating',
  'violas',
  'contribution',
  'rest',
  'teams',
  'efforts',
  'say',
  'sure',
  'team',
  'would',
  'done',
  'without',
  'viola',
  'compare',
  'cannot',
  'know',
  'team',
  'would',
  'done',
  'without',
  'viola',
  'analysis',
  'fallacious',
  'ok',
  'straigh',
  'answer',
  'heres',
  'simele',
  'question',
  'im',
  'sure',
  'fair',
  'number',
  'us',
  'interesed',
  'answer',
  'please',
  'answer',
  'yes',
  'roger',
  'pitcher',
  'cause',
  'offensive',
  'players',
  'team',
  'score',
  'runs',
  'al',
  'please',
  'anyone',
  'else',
  'following',
  'along',
  'well',
  'known',
  'demonstrable',
  'fact',
  'teams',
  'win',
  'loss',
  'record',
  'closely',
  'related',
  'number',
  'runs',
  'team',
  'scores',
  'number',
  'team',
  'allows',
  'definite',
  'hard',
  'fast',
  'function',
  'definitely',
  'correlation',
  'fact',
  'rule',
  'thumb',
  'teams',
  'score',
  'runs',
  'team',
  'allows',
  'runs',
  'every',
  'runs',
  'fewer',
  'team',
  'allows',
  'win',
  'another',
  'game',
  'instance',
  'look',
  'toronto',
  'blue',
  'jays',
  'find',
  'scored',
  'runs',
  'allowed',
  'morris',
  'allowed',
  'things',
  'equal',
  'frank',
  'viola',
  'era',
  'replaced',
  'jack',
  'morris',
  'innings',
  'morris',
  'threw',
  'plausible',
  'since',
  'viola',
  'threw',
  'boston',
  'red',
  'jays',
  'would',
  'allowed',
  'fewer',
  'runs',
  'enough',
  'wins',
  'doesnt',
  'take',
  'account',
  'viola',
  'pitched',
  'half',
  'innings',
  'fenway',
  'harder',
  'park',
  'pitch',
  'particularly',
  'lefthander',
  'skydome',
  'um',
  'roger',
  'unless',
  'really',
  'believe',
  'pitcher',
  'somehow',
  'affect',
  'number',
  'runs',
  'team',
  'scores',
  'could',
  'enlighten',
  'us',
  'fallacy',
  'analysis',
  'clearly',
  'would',
  'foolhardy',
  'claim',
  'viola',
  'would',
  'necessarily',
  'put',
  'jay',
  'last',
  'year',
  'claim',
  'look',
  'actual',
  'performances',
  'evaluate',
  'violas',
  'better',
  'morris',
  'sense',
  'morris',
  'performed',
  'viola',
  'team',
  'would',
  'better',
  'takes',
  'open',
  'mind',
  'really',
  'truly',
  'understand',
  'happening',
  'real',
  'world',
  'guys',
  'true',
  'open',
  'brain',
  'falls',
  'mike',
  'jones',
  'aix',
  'high',
  'end',
  'development',
  'computer',
  'dont',
  'open',
  'exit',
  'hatch',
  'moment',
  'shall',
  'zap',
  'straight',
  'major',
  'data',
  'banks',
  'reprogram',
  'large',
  'ax',
  'got',
  'zaphod',
  'beeblebrox'],
 ['steve',
  'hendricks',
  'limiting',
  'govt',
  'employment',
  'concentrate',
  'summary',
  'failed',
  'governments',
  'organization',
  'failed',
  'libertarian',
  'opportunities',
  'inc',
  'lines',
  'nntp',
  'posting',
  'host',
  'thor',
  'isc',
  'br',
  'com',
  'article',
  'mr',
  'grinch',
  'writes',
  'article',
  'steve',
  'hendricks',
  'writes',
  'would',
  'seem',
  'society',
  'failed',
  'government',
  'would',
  'ideal',
  'setting',
  'libertarian',
  'ideals',
  'implemented',
  'suppose',
  'never',
  'seems',
  'occur',
  'fail',
  'see',
  'feel',
  'way',
  'first',
  'place',
  'constant',
  'combat',
  'isnt',
  'particularly',
  'conducive',
  'intellectual',
  'theorizing',
  'also',
  'tend',
  'get',
  'invaded',
  'come',
  'anything',
  'like',
  'stable',
  'society',
  'anyway',
  'reason',
  'soviet',
  'union',
  'couldnt',
  'achieve',
  'ideal',
  'pure',
  'communism',
  'hostility',
  'surrounding',
  'capitalist',
  'nations',
  'uh',
  'huh',
  'somehow',
  'sounds',
  'familiar',
  'utopian',
  'dreams',
  'confronted',
  'real',
  'world',
  'mr',
  'grinch',
  'steve',
  'hendricks',
  'domain',
  'one',
  'thing',
  'data',
  'sure',
  'cut',
  'uucp',
  'uunet',
  'isc',
  'br',
  'thor',
  'steveh',
  'bulls',
  'hofferbert',
  'bell'],
 ['gene',
  'wright',
  'mac',
  'portable',
  'ram',
  'problems',
  'coprocessor',
  'installed',
  'organization',
  'jacks',
  'amazing',
  'cockroach',
  'capitalist',
  'ventures',
  'lines',
  'recently',
  'bought',
  'mb',
  'ram',
  'card',
  'original',
  'mac',
  'portable',
  'backlit',
  'since',
  'bizarre',
  'crashes',
  'happens',
  'put',
  'machine',
  'sleep',
  'wake',
  'machine',
  'sometimes',
  'freeze',
  'cursor',
  'lock',
  'machine',
  'forcing',
  'push',
  'reset',
  'switch',
  'times',
  'give',
  'usual',
  'bomb',
  'box',
  'error',
  'message',
  'co',
  'processor',
  'installed',
  'know',
  'one',
  'solution',
  'put',
  'machine',
  'sleep',
  'anyone',
  'ideas',
  'could',
  'causing',
  'better',
  'yet',
  'might',
  'fix',
  'memory',
  'card',
  'psuedostatic',
  'ram',
  'goes',
  'pds',
  'slot',
  'probably',
  'figures',
  'problem',
  'manufacturer',
  'king',
  'memory',
  'kingston',
  'irvine',
  'ca',
  'say',
  'problem',
  'machine',
  'ideas',
  'gene',
  'wright',
  'gene',
  'wright',
  'jackatak',
  'raider',
  'net'],
 ['chris',
  'mussack',
  'atheists',
  'views',
  'christianity',
  'accepting',
  'jeesus',
  'heart',
  'soc',
  'religion',
  'christian',
  'reply',
  'lines',
  'article',
  'stephen',
  'mcintyre',
  'writes',
  'writes',
  'example',
  'universe',
  'exist',
  'must',
  'ask',
  'also',
  'assume',
  'god',
  'namely',
  'exists',
  'existence',
  'question',
  'reversed',
  'cant',
  'assume',
  'universe',
  'exists',
  'assume',
  'god',
  'exist',
  'must',
  'universe',
  'whether',
  'find',
  'pascals',
  'wager',
  'spend',
  'lives',
  'searching',
  'merely',
  'wasted',
  'lives',
  'meaningless',
  'anyway',
  'dont',
  'search',
  'wasted',
  'potentially',
  'meaningful',
  'lives',
  'suppose',
  'universe',
  'billion',
  'years',
  'old',
  'suppose',
  'lasts',
  'another',
  'billion',
  'years',
  'suppose',
  'live',
  'nothing',
  'small',
  'scary',
  'searching',
  'along',
  'friends',
  'earth',
  'nothing',
  'else',
  'arent',
  'scared',
  'woke',
  'party',
  'memory',
  'everyone',
  'discussing',
  'host',
  'might',
  'might',
  'host',
  'say',
  'say',
  'lets',
  'go',
  'find',
  'partys',
  'going',
  'sometime',
  'maybe',
  'hell',
  'let',
  'us',
  'stay',
  'recognize',
  'mortality',
  'find',
  'well',
  'buddhism',
  'confucianism',
  'taoism',
  'hinduism',
  'judaism',
  'zoerasterism',
  'shintoism',
  'islam',
  'fit',
  'bit',
  'logic',
  'quite',
  'nicely',
  'depth',
  'enduring',
  'values',
  'thus',
  'must',
  'true',
  'good',
  'point',
  'good',
  'point',
  'studying',
  'religion',
  'ignoring',
  'christians',
  'disagree',
  'worthwhile',
  'study',
  'different',
  'religions',
  'philosophies',
  'glean',
  'truth',
  'quote',
  'course',
  'context',
  'test',
  'everything',
  'keep',
  'true',
  'chris',
  'mussack'],
 ['russ',
  'anderson',
  'gore',
  'throws',
  'first',
  'ball',
  'media',
  'coverage',
  'originator',
  'lines',
  'nntp',
  'posting',
  'host',
  'mahogany',
  'organization',
  'world',
  'champion',
  'minnesota',
  'twins',
  'distribution',
  'usa',
  'article',
  'paul',
  'havemann',
  'writes',
  'article',
  'russ',
  'anderson',
  'writes',
  'article',
  'mark',
  'wilson',
  'writes',
  'past',
  'thursday',
  'vp',
  'gore',
  'threw',
  'first',
  'ball',
  'home',
  'opener',
  'atlanta',
  'braves',
  'according',
  'news',
  'reports',
  'quite',
  'loudly',
  'booed',
  'dr',
  'norman',
  'typical',
  'beer',
  'swilling',
  'red',
  'necks',
  'personally',
  'wouldnt',
  'paid',
  'attention',
  'incident',
  'except',
  'evening',
  'news',
  'describing',
  'event',
  'went',
  'comment',
  'booed',
  'nothing',
  'unusual',
  'since',
  'normal',
  'audiences',
  'boo',
  'point',
  'since',
  'celebrity',
  'delaying',
  'start',
  'game',
  'bunch',
  'crock',
  'never',
  'heard',
  'incident',
  'thrower',
  'ceremonial',
  'ball',
  'booed',
  'dan',
  'quayle',
  'got',
  'roundly',
  'booed',
  'milwaulkee',
  'last',
  'year',
  'listening',
  'radio',
  'game',
  'quayle',
  'told',
  'brewers',
  'players',
  'would',
  'like',
  'see',
  'play',
  'orioles',
  'alcs',
  'come',
  'defending',
  'al',
  'gore',
  'comparing',
  'dan',
  'quayle',
  'compared',
  'quayle',
  'gore',
  'mark',
  'said',
  'never',
  'heard',
  'incident',
  'thrower',
  'ceremonial',
  'ball',
  'booed',
  'mentioned',
  'another',
  'incident',
  'media',
  'liberal',
  'bias',
  'im',
  'sure',
  'would',
  'heard',
  'quayle',
  'incident',
  'compare',
  'quayle',
  'anyone',
  'likely',
  'would',
  'elmer',
  'fudd',
  'id',
  'say',
  'says',
  'back',
  'pit',
  'ye',
  'back',
  'alt',
  'fan',
  'dan',
  'quayle',
  'begone',
  'russ',
  'anderson',
  'disclaimer',
  'statements',
  'reflect',
  'upon',
  'employer',
  'anyone',
  'else',
  'ex',
  'twins',
  'jack',
  'morris',
  'innings',
  'pitched',
  'runs',
  'world',
  'series',
  'mvp'],
 ['jacquelin',
  'aldridge',
  'good',
  'grief',
  'candida',
  'albicans',
  'organization',
  'netcom',
  'line',
  'communication',
  'services',
  'guest',
  'lines',
  'steve',
  'dyer',
  'writes',
  'article',
  'jon',
  'noring',
  'writes',
  'convincing',
  'evidence',
  'disease',
  'exists',
  'theres',
  'lot',
  'evidence',
  'hasnt',
  'adequately',
  'gathered',
  'published',
  'way',
  'convince',
  'die',
  'hard',
  'melancholic',
  'skeptics',
  'quiver',
  'everytime',
  'word',
  'anecdote',
  'empirical',
  'used',
  'snort',
  'ah',
  'go',
  'sinuses',
  'example',
  'dr',
  'ivker',
  'wrote',
  'book',
  'sinus',
  'survival',
  'always',
  'gives',
  'oh',
  'wow',
  'classic',
  'textbook',
  'hey',
  'laughed',
  'einstein',
  'treatment',
  'systemic',
  'anti',
  'fungal',
  'nizoral',
  'new',
  'patients',
  'theyve',
  'braod',
  'spectrum',
  'anti',
  'biotics',
  'times',
  'last',
  'two',
  'years',
  'hes',
  'kept',
  'record',
  'results',
  'patients',
  'found',
  'patients',
  'get',
  'significant',
  'relief',
  'allergic',
  'sinus',
  'symptoms',
  'course',
  'beginning',
  'program',
  'yeah',
  'ill',
  'bet',
  'tomorrow',
  'world',
  'listen',
  'uncontrolled',
  'studies',
  'like',
  'worthless',
  'case',
  'reported',
  'weeks',
  'ago',
  'developing',
  'classic',
  'symptoms',
  'outlined',
  'yeast',
  'connection',
  'agree',
  'poorly',
  'written',
  'book',
  'extreme',
  'sensitivity',
  'plastics',
  'vapors',
  'etc',
  'never',
  'started',
  'november',
  'within',
  'one',
  'week',
  'full',
  'dosage',
  'sporanox',
  'sensitivity',
  'chemicals',
  'fully',
  'disappeared',
  'sit',
  'couch',
  'home',
  'without',
  'dying',
  'two',
  'minutes',
  'im',
  'also',
  'greatly',
  'improved',
  'areas',
  'well',
  'im',
  'sure',
  'sound',
  'like',
  'typical',
  'hysteric',
  'hypochondriac',
  'responds',
  'miracle',
  'cures',
  'course',
  'allergy',
  'symptoms',
  'etc',
  'especially',
  'allergic',
  'molds',
  'yeasts',
  'etc',
  'doesnt',
  'take',
  'rocket',
  'scientist',
  'figure',
  'one',
  'excessive',
  'colonization',
  'yeast',
  'body',
  'natural',
  'allergy',
  'yeasts',
  'threshold',
  'would',
  'reached',
  'would',
  'perceptible',
  'symptoms',
  'yeah',
  'makes',
  'sense',
  'course',
  'taken',
  'seriously',
  'snort',
  'also',
  'yeast',
  'produce',
  'toxins',
  'various',
  'sorts',
  'dont',
  'rocket',
  'scientist',
  'realize',
  'toxins',
  'cause',
  'problems',
  'people',
  'yeah',
  'sounds',
  'reasonable',
  'course',
  'question',
  'whether',
  'person',
  'immune',
  'compromised',
  'tests',
  'showed',
  'years',
  'antibiotics',
  'nutritionally',
  'deficiencies',
  'stress',
  'infections',
  'allergies',
  'etc',
  'oh',
  'really',
  'tests',
  'immune',
  'compromised',
  'ass',
  'like',
  'credulous',
  'malingerer',
  'psychiatric',
  'syndrome',
  'develop',
  'excessive',
  'yeast',
  'colonization',
  'somewhere',
  'body',
  'tough',
  'question',
  'answer',
  'since',
  'testing',
  'excessive',
  'yeast',
  'colonization',
  'easy',
  'one',
  'almost',
  'take',
  'empirical',
  'approach',
  'diagnosis',
  'fortunately',
  'sporanox',
  'relatively',
  'safe',
  'unlike',
  'past',
  'anti',
  'fungals',
  'still',
  'careful',
  'however',
  'theres',
  'reason',
  'longer',
  'withhold',
  'sporanox',
  'treatment',
  'empirical',
  'reasons',
  'know',
  'shame',
  'drug',
  'like',
  'itraconazole',
  'misused',
  'way',
  'ridiculously',
  'expensive',
  'potentially',
  'toxic',
  'trouble',
  'isnt',
  'toxic',
  'enough',
  'gets',
  'abused',
  'quacks',
  'btw',
  'would',
  'say',
  'try',
  'nystatin',
  'unfortunately',
  'yeast',
  'grows',
  'hyphae',
  'deep',
  'tissue',
  'nystatin',
  'permanent',
  'affect',
  'youll',
  'find',
  'lot',
  'people',
  'nystatin',
  'time',
  'good',
  'thing',
  'nystatin',
  'relatively',
  'cheap',
  'taken',
  'orally',
  'non',
  'toxic',
  'oral',
  'nystatin',
  'without',
  'systemic',
  'effect',
  'unless',
  'given',
  'iv',
  'would',
  'without',
  'effect',
  'sinuses',
  'wish',
  'quacks',
  'would',
  'first',
  'iv',
  'nystatin',
  'amphotericin',
  'people',
  'like',
  'would',
  'solve',
  'yeast',
  'problem',
  'summary',
  'appreciate',
  'attempts',
  'desire',
  'keep',
  'medicine',
  'right',
  'road',
  'methinks',
  'hold',
  'firmly',
  'party',
  'line',
  'academics',
  'havent',
  'trenches',
  'long',
  'enough',
  'actually',
  'treating',
  'patients',
  'anybody',
  'doctors',
  'included',
  'said',
  'face',
  'evidence',
  'yeast',
  'connection',
  'cannot',
  'guarantee',
  'safety',
  'incompetence',
  'ripping',
  'lips',
  'justified',
  'far',
  'concerned',
  'perhaps',
  'little',
  'haldol',
  'would',
  'go',
  'long',
  'way',
  'towards',
  'ameliorating',
  'symptoms',
  'paying',
  'treatment',
  'pocket',
  'id',
  'hate',
  'think',
  'insurance',
  'premiums',
  'going',
  'towards',
  'steve',
  'dyer',
  'dyer',
  'youre',
  'rude',
  'medicine',
  'totallly',
  'scientific',
  'endevour',
  'often',
  'practiced',
  'disorganized',
  'manner',
  'early',
  'treatment',
  'non',
  'life',
  'threatening',
  'illness',
  'done',
  'guess',
  'hazarded',
  'anecdotal',
  'evidence',
  'given',
  'patient',
  'educated',
  'guess',
  'trained',
  'person',
  'still',
  'guess',
  'cheaper',
  'simpler',
  'medicate',
  'first',
  'deal',
  'people',
  'dont',
  'respond',
  'diseases',
  'havent',
  'described',
  'yet',
  'root',
  'cause',
  'many',
  'diseases',
  'described',
  'arent',
  'known',
  'read',
  'book',
  'sometime',
  'want',
  'see',
  'lot',
  'scientific',
  'methods',
  'run',
  'patients',
  'freedom',
  'choice',
  'try',
  'experimental',
  'method',
  'choose',
  'well',
  'recognized',
  'many',
  'doctors',
  'medicine',
  'doesnt',
  'answers',
  'person',
  'said',
  'relief',
  'taking',
  'medicine',
  'maybe',
  'miracle',
  'cure',
  'maybe',
  'valid',
  'know',
  'might',
  'argue',
  'reasoning',
  'conclusions',
  'disparaging',
  'attack',
  'unwarranted',
  'dont',
  'present',
  'convincing',
  'argument',
  'beliefs',
  'instead',
  'wasting',
  'time',
  'ad',
  'hominem',
  'attack',
  'jackie'],
 ['ian',
  'boyle',
  'volvo',
  'organization',
  'bnr',
  'europe',
  'ltd',
  'lines',
  'distribution',
  'world',
  'reply',
  'nntp',
  'posting',
  'host',
  'bbsls',
  'bnr',
  'co',
  'uk',
  'cars',
  'driven',
  'fairly',
  'hard',
  'none',
  'head',
  'line',
  'cars',
  'going',
  'mph',
  'first',
  'two',
  'spend',
  'lot',
  'operating',
  'life',
  'speedometer',
  'pegged',
  'reason',
  'doesnt',
  'mph',
  'speedo',
  'want',
  'know',
  'people',
  'hate',
  'volvos',
  'traumatized',
  'someone',
  'turbo',
  'wagon',
  'blowing',
  'away',
  'road',
  'turbo',
  'uk',
  'good',
  'mph',
  'useful',
  'blowing',
  'away',
  'vw',
  'beetles',
  'though',
  'believe',
  'beetle',
  'corners',
  'better',
  'say',
  'without',
  'doubt',
  'never',
  'blown',
  'away',
  'volvo',
  'ever',
  'ive',
  'blocked',
  'car',
  'parks',
  'though',
  'shit',
  'head',
  'volvo',
  'owners',
  'thought',
  'theyd',
  'minutes',
  'happen',
  'owners',
  'makes',
  'car',
  'sure',
  'long',
  'small',
  'shit',
  'box',
  'volvos',
  'last',
  'damn',
  'long',
  'worst',
  'car',
  'ever',
  'drove',
  'hired',
  'power',
  'handling',
  'ride',
  'reminiscent',
  'something',
  'without',
  'character',
  'ceased',
  'production',
  'couple',
  'years',
  'back',
  'ive',
  'passenger',
  'big',
  'volvos',
  'enough',
  'ought',
  'go',
  'test',
  'drive',
  'offer',
  'neat',
  'gifts'],
 ['andrew',
  'betz',
  'randy',
  'weaver',
  'trial',
  'update',
  'day',
  'nntp',
  'posting',
  'host',
  'gozer',
  'organization',
  'sigsauer',
  'fan',
  'club',
  'lines',
  'note',
  'trial',
  'updates',
  'summarized',
  'reports',
  'statesman_',
  'local',
  'nbc',
  'affiliate',
  'television',
  'station',
  'ktvb',
  'channel',
  'randy',
  'weaver',
  'kevin',
  'harris',
  'trial',
  'update',
  'day',
  'monday',
  'april',
  'fifth',
  'day',
  'trial',
  'synopsis',
  'government',
  'informant',
  'kenneth',
  'fadeley',
  'testified',
  'randy',
  'weaver',
  'sold',
  'two',
  'shotguns',
  'violation',
  'national',
  'firearms',
  'act',
  'district',
  'court',
  'judge',
  'edward',
  'lodge',
  'asks',
  'jurors',
  'hear',
  'accounts',
  'waco',
  'fire',
  'possible',
  'influences',
  'weaver',
  'harris',
  'case',
  'testimony',
  'fbi',
  'special',
  'agent',
  'greg',
  'rampton',
  'apparently',
  'ended',
  'without',
  'incident',
  'mentioned',
  'neither',
  'ktvb',
  'statesman_',
  'day',
  'highlighted',
  'testimony',
  'kenneth',
  'fadeley',
  'posing',
  'outlaw',
  'biker',
  'illegal',
  'guns',
  'person',
  'named',
  'gus',
  'magiosono',
  'fadeley',
  'testified',
  'acting',
  'informant',
  'bureau',
  'alcohol',
  'tobacco',
  'firearms',
  'dealings',
  'randy',
  'weaver',
  'fadeley',
  'began',
  'stating',
  'met',
  'weaver',
  'aryan',
  'nations',
  'summer',
  'conference',
  'hayden',
  'lake',
  'idaho',
  'two',
  'met',
  'october',
  'note',
  'huge',
  'separation',
  'time',
  'restaurant',
  'sandpoint',
  'idaho',
  'begin',
  'weapons',
  'transaction',
  'stated',
  'weaver',
  'said',
  'felt',
  'like',
  'weaver',
  'prepared',
  'something',
  'dangerous',
  'white',
  'cause',
  'two',
  'later',
  'met',
  'october',
  'behind',
  'restaurant',
  'later',
  'went',
  'city',
  'park',
  'make',
  'sale',
  'second',
  'meeting',
  'fadeley',
  'wearing',
  'small',
  'recording',
  'device',
  'tape',
  'conversation',
  'weaver',
  'allegedly',
  'showed',
  'gauge',
  'shotgun',
  'inch',
  'barrel',
  'overall',
  'length',
  'inches',
  'additionally',
  'showed',
  'remington',
  'gauge',
  'shotgun',
  'inch',
  'barrel',
  'overall',
  'length',
  'inches',
  'nfa',
  'requires',
  'minimums',
  'inches',
  'barrel',
  'length',
  'overall',
  'length',
  'inches',
  'tape',
  'weaver',
  'reported',
  'said',
  'could',
  'perform',
  'better',
  'work',
  'machine',
  'shop',
  'set',
  'two',
  'discuss',
  'possibility',
  'future',
  'sales',
  'fadeley',
  'counts',
  'three',
  'hundred',
  'dollars',
  'two',
  'guns',
  'promises',
  'balance',
  'one',
  'hundred',
  'fifty',
  'dollars',
  'next',
  'meet',
  'note',
  'atf',
  'could',
  'simply',
  'arrested',
  'wait',
  'january',
  'year',
  'later',
  'arrest',
  'explained',
  'next',
  'meeting',
  'took',
  'place',
  'nov',
  'fadeley',
  'stated',
  'source',
  'come',
  'one',
  'hundred',
  'dollars',
  'instead',
  'one',
  'hundred',
  'fifty',
  'hed',
  'promised',
  'point',
  'weaver',
  'suspected',
  'dealing',
  'informant',
  'guy',
  'spokane',
  'tell',
  'bad',
  'fadeley',
  'managed',
  'convince',
  'weaver',
  'otherwise',
  'statesman_',
  'states',
  'explicitly',
  'three',
  'tapes',
  'made',
  'conversations',
  'randy',
  'weaver',
  'thus',
  'meetings',
  'must',
  'recorded',
  'however',
  'also',
  'reported',
  'tape',
  'telephone',
  'conversation',
  'involving',
  'vicki',
  'weaver',
  'randy',
  'weavers',
  'wife',
  'played',
  'court',
  'must',
  'also',
  'phone',
  'taps',
  'tapes',
  'played',
  'court',
  'via',
  'headphones',
  'loudspeakers',
  'objections',
  'gerry',
  'spence',
  'weavers',
  'attorney',
  'spence',
  'said',
  'ktvb',
  'reporter',
  'wanted',
  'make',
  'sure',
  'government',
  'proved',
  'case',
  'case',
  'according',
  'rules',
  'randy',
  'weaver',
  'tore',
  'headphones',
  'wept',
  'heard',
  'wifes',
  'voice',
  'tape',
  'district',
  'court',
  'judge',
  'edward',
  'lodge',
  'asked',
  'jurors',
  'hear',
  'accounts',
  'waco',
  'fire',
  'possible',
  'influences',
  'weaver',
  'harris',
  'case',
  'exactly',
  'information',
  'could',
  'affect',
  'trial',
  'explained',
  'notes',
  'sunday',
  'evening',
  'report',
  'ktvb',
  'concerning',
  'kevin',
  'harris',
  'unnamed',
  'agents',
  'within',
  'fbi',
  'admit',
  'surprised',
  'kevin',
  'harris',
  'still',
  'alive',
  'first',
  'surprised',
  'survived',
  'initial',
  'gunshot',
  'wound',
  'sustained',
  'initial',
  'firefight',
  'junction',
  'later',
  'randy',
  'weaver',
  'struck',
  'sniper',
  'fire',
  'sniper',
  'reported',
  'harris',
  'struck',
  'weaver',
  'finally',
  'report',
  'fbi',
  'agent',
  'killed',
  'vicki',
  'weaver',
  'believed',
  'aiming',
  'kevin',
  'harris',
  'instead',
  'reported',
  'critics',
  'charging',
  'fbi',
  'blatantly',
  'trying',
  'eliminate',
  'non',
  'government',
  'witness',
  'deaths',
  'samuel',
  'weaver',
  'deputy',
  'marshal',
  'william',
  'degan',
  'local',
  'people',
  'believe',
  'harriss',
  'survival',
  'simply',
  'due',
  'divine',
  'intervention',
  'tuesday',
  'april',
  'sixth',
  'day',
  'trial',
  'kenneth',
  'fadeleys',
  'testimony',
  'scheduled',
  'continue'],
 ['paul',
  'allen',
  'secret',
  'algorithm',
  'clipper',
  'chip',
  'crypto',
  'key',
  'escrow',
  'reply',
  'organization',
  'chaos',
  'lines',
  'newsreader',
  'archimedes',
  'readnews',
  'begin',
  'pgp',
  'signed',
  'message',
  'article',
  'perry',
  'metzger',
  'writes',
  'article',
  'amanda',
  'walker',
  'writes',
  'amanda',
  'walker',
  'john',
  'hesse',
  'writes',
  'oh',
  'great',
  'wonderful',
  'news',
  'nobody',
  'listen',
  'except',
  'feds',
  'hey',
  'better',
  'status',
  'quo',
  'far',
  'less',
  'worried',
  'feds',
  'tapping',
  'phone',
  'high',
  'school',
  'scanner',
  'surfers',
  'get',
  'kicks',
  'eavesdropping',
  'cellular',
  'cordless',
  'phone',
  'calls',
  'im',
  'political',
  'dissident',
  'im',
  'scared',
  'shitless',
  'feds',
  'listening',
  'calls',
  'opinions',
  'sort',
  'would',
  'get',
  'disappeared',
  'slightly',
  'less',
  'free',
  'society',
  'knows',
  'sort',
  'society',
  'five',
  'ten',
  'years',
  'friends',
  'phones',
  'tapped',
  'none',
  'theoretical',
  'better',
  'status',
  'quo',
  'well',
  'first',
  'get',
  'cryptophone',
  'companies',
  'like',
  'cylink',
  'today',
  'work',
  'well',
  'addition',
  'number',
  'groups',
  'working',
  'building',
  'software',
  'turn',
  'pc',
  'privacy',
  'enhanced',
  'phone',
  'right',
  'working',
  'overdrive',
  'mode',
  'yes',
  'id',
  'rather',
  'see',
  'crypto',
  'restrictions',
  'lifted',
  'least',
  'incrememental',
  'improvement',
  'certain',
  'applications',
  'crypto',
  'restrictions',
  'yet',
  'anything',
  'want',
  'right',
  'point',
  'maintain',
  'right',
  'point',
  'seem',
  'missed',
  'covered',
  'uk',
  'cellphone',
  'scrambling',
  'system',
  'discussed',
  'incidentally',
  'mp',
  'responded',
  'questions',
  'issue',
  'appears',
  'uk',
  'approved',
  'countries',
  'get',
  'secure',
  'encryption',
  'dodgy',
  'countries',
  'get',
  'existing',
  'mobile',
  'equipment',
  'drop',
  'clear',
  'mode',
  'used',
  'systems',
  'newer',
  'equipment',
  'clear',
  'depending',
  'capabilities',
  'base',
  'station',
  'cops',
  'feds',
  'need',
  'able',
  'get',
  'hold',
  'private',
  'key',
  'listen',
  'cellular',
  'conversations',
  'encryption',
  'end',
  'end',
  'cellphone',
  'base',
  'station',
  'way',
  'cellular',
  'users',
  'fixed',
  'installations',
  'talk',
  'cellular',
  'cellular',
  'calls',
  'transmission',
  'decrypted',
  'base',
  'station',
  'passed',
  'another',
  'base',
  'station',
  'encrypted',
  'cops',
  'feds',
  'listen',
  'unscrambled',
  'call',
  'provided',
  'get',
  'warrant',
  'tap',
  'cellular',
  'providers',
  'equipment',
  'reason',
  'wanting',
  'crackable',
  'system',
  'listen',
  'without',
  'obtain',
  'warrant',
  'maybe',
  'clipper',
  'system',
  'secure',
  'really',
  'need',
  'warrant',
  'get',
  'key',
  'escrow',
  'listen',
  'using',
  'scanner',
  'see',
  'dont',
  'go',
  'route',
  'anyway',
  'doubts',
  'even',
  'true',
  'key',
  'never',
  'need',
  'warrant',
  'tap',
  'particular',
  'phone',
  'whenever',
  'want',
  'well',
  'judge',
  'appears',
  'wasnt',
  'drug',
  'dealer',
  'naturally',
  'well',
  'stop',
  'listening',
  'every',
  'reason',
  'scared',
  'shitless',
  'take',
  'look',
  'records',
  'mccarthy',
  'hoover',
  'edgar',
  'cleaner',
  'though',
  'excelled',
  'sucking',
  'nixon',
  'paul',
  'begin',
  'pgp',
  'signature',
  'version',
  'iqcvagubk',
  'ial',
  'asak',
  'yhunuj',
  'cvpx',
  'zvkhhjzkfs',
  'luw',
  'rrwejvhxegv',
  'ex',
  'sz',
  'eq',
  'blsuij',
  'afxalv',
  'gj',
  'jb',
  'hu',
  'qvu',
  'tfc',
  'hovumvnruc',
  'zy',
  'py',
  'nocg',
  'end',
  'pgp',
  'signature'],
 ['shawn',
  'luddington',
  'jack',
  'morris',
  'organization',
  'york',
  'university',
  'toronto',
  'canada',
  'lines',
  'article',
  'edward',
  'ted',
  'fischer',
  'writes',
  'article',
  'greg',
  'spira',
  'writes',
  'howard',
  'wong',
  'writes',
  'jack',
  'lost',
  'bit',
  'edge',
  'worst',
  'start',
  'jack',
  'morris',
  'uh',
  'jack',
  'lost',
  'edge',
  'years',
  'ago',
  'one',
  'average',
  'year',
  'last',
  'goes',
  'prove',
  'better',
  'good',
  'lucky',
  'count',
  'good',
  'tomorrow',
  'lucky',
  'seems',
  'prone',
  'bad',
  'starts',
  'bad',
  'finish',
  'last',
  'year',
  'yes',
  'enjoying',
  'every',
  'last',
  'run',
  'gives',
  'said',
  'morris',
  'better',
  'signing',
  'viola',
  'cheers',
  'valentine',
  'hey',
  'valentine',
  'dont',
  'see',
  'boston',
  'world',
  'series',
  'rings',
  'fingers',
  'damn',
  'morris',
  'three',
  'probably',
  'hall',
  'fame',
  'future',
  'therefore',
  'would',
  'say',
  'toronto',
  'easily',
  'made',
  'best',
  'signing',
  'dont',
  'tell',
  'boston',
  'win',
  'year',
  'wont',
  'even',
  'top',
  'division',
  'like',
  'th',
  'shawn'],
 ['charles',
  'brasted',
  'thoughts',
  'organization',
  'university',
  'adelaide',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'adelphi',
  'itd',
  'adelaide',
  'au',
  'keywords',
  'dan',
  'bissell',
  'dan',
  'lawrence',
  'bissell',
  'writes',
  'first',
  'want',
  'start',
  'right',
  'say',
  'im',
  'christian',
  'makes',
  'sense',
  'one',
  'read',
  'tony',
  'campollos',
  'book',
  'liar',
  'lunatic',
  'real',
  'thing',
  'might',
  'little',
  'title',
  'writes',
  'book',
  'anyway',
  'part',
  'effort',
  'destroy',
  'christianity',
  'process',
  'became',
  'christian',
  'assume',
  'posting',
  'encourage',
  'comments',
  'much',
  'history',
  'tony',
  'campello',
  'read',
  'much',
  'seems',
  'arguements',
  'uses',
  'summing',
  'book',
  'whether',
  'jesus',
  'god',
  'know',
  'many',
  'dont',
  'believe',
  'listen',
  'different',
  'perspective',
  'something',
  'gain',
  'listening',
  'others',
  'say',
  'good',
  'hear',
  'reasonable',
  'christians',
  'christian',
  'scientists',
  'would',
  'take',
  'note',
  'australia',
  'strong',
  'movement',
  'bunch',
  'christian',
  'scientists',
  'believe',
  'every',
  'single',
  'event',
  'bible',
  'exactly',
  'true',
  'rational',
  'explanation',
  'justified',
  'using',
  'laws',
  'physics',
  'example',
  'chaps',
  'trying',
  'prove',
  'age',
  'universe',
  'years',
  'old',
  'error',
  'conventional',
  'calculations',
  'result',
  'fact',
  'speed',
  'light',
  'rapidly',
  'decaying',
  'years',
  'accounted',
  'book',
  'says',
  'jesus',
  'either',
  'liar',
  'crazy',
  'modern',
  'day',
  'koresh',
  'actually',
  'said',
  'course',
  'never',
  'existed',
  'bible',
  'story',
  'never',
  'intended',
  'become',
  'manifesto',
  'billion',
  'people',
  'tony',
  'follow',
  'one',
  'reasons',
  'wouldnt',
  'liar',
  'follows',
  'would',
  'die',
  'lie',
  'wouldnt',
  'people',
  'able',
  'tell',
  'liar',
  'people',
  'gathered',
  'around',
  'kept',
  'many',
  'gathered',
  'hearing',
  'seeing',
  'someone',
  'healed',
  'millions',
  'people',
  'died',
  'lie',
  'point',
  'difficult',
  'substantiate',
  'since',
  'well',
  'defined',
  'great',
  'many',
  'religious',
  'arguments',
  'work',
  'way',
  'consider',
  'many',
  'aztec',
  'warriors',
  'sacrificed',
  'gods',
  'belief',
  'act',
  'would',
  'bring',
  'victory',
  'spanish',
  'invaders',
  'list',
  'endless',
  'aztecs',
  'lost',
  'btw',
  'call',
  'fool',
  'believe',
  'heal',
  'people',
  'perfectly',
  'reasonable',
  'grounds',
  'anyone',
  'become',
  'christian',
  'point',
  'add',
  'weight',
  'claim',
  'jesus',
  'real',
  'thing',
  'niether',
  'lunatic',
  'would',
  'entire',
  'nation',
  'drawn',
  'someone',
  'crazy',
  'doubtful',
  'fact',
  'rediculous',
  'example',
  'anyone',
  'drawn',
  'david',
  'koresh',
  'obviously',
  'fool',
  'logical',
  'people',
  'see',
  'right',
  'away',
  'ever',
  'seen',
  'documentary',
  'rise',
  'nazi',
  'germany',
  'point',
  'tony',
  'mention',
  'one',
  'could',
  'hardly',
  'call',
  'werner',
  'heisenberg',
  'many',
  'colleagues',
  'fools',
  'illogical',
  'men',
  'support',
  'hitler',
  'based',
  'presume',
  'upon',
  'emotional',
  'issue',
  'rather',
  'rational',
  'agreement',
  'principles',
  'obviously',
  'argument',
  'invalid',
  'tony',
  'thought',
  'hitler',
  'sane',
  'therefore',
  'since',
  'wasnt',
  'liar',
  'lunatic',
  'must',
  'real',
  'thing',
  'hmmm',
  'dont',
  'think',
  'arguments',
  'warrant',
  'therefore',
  'things',
  'note',
  'fulfilled',
  'loads',
  'prophecies',
  'psalms',
  'isaiah',
  'elsewhere',
  'hrs',
  'alone',
  'betrayal',
  'crucifixion',
  'dont',
  'bible',
  'moment',
  'next',
  'time',
  'write',
  'unfortunately',
  'alot',
  'religious',
  'discussions',
  'people',
  'result',
  'quoting',
  'bible',
  'reasonable',
  'way',
  'think',
  'people',
  'look',
  'bible',
  'treat',
  'stories',
  'sort',
  'metaphorical',
  'representation',
  'messages',
  'authors',
  'trying',
  'present',
  'someone',
  'tries',
  'interpret',
  'parts',
  'bible',
  'literally',
  'end',
  'sorts',
  'shit',
  'tonys',
  'argument',
  'would',
  'perfectly',
  'reasonable',
  'people',
  'believe',
  'events',
  'described',
  'bible',
  'took',
  'place',
  'convince',
  'someone',
  'thinks',
  'bible',
  'total',
  'fiction',
  'jesus',
  'real',
  'quoting',
  'book',
  'totally',
  'pointless',
  'example',
  'mathematics',
  'cannot',
  'say',
  'equal',
  'equal',
  'dont',
  'think',
  'people',
  'understand',
  'christian',
  'would',
  'possibly',
  'explain',
  'many',
  'people',
  'killed',
  'religious',
  'wars',
  'hundreds',
  'different',
  'versions',
  'claiming',
  'correct',
  'certainly',
  'see',
  'lot',
  'churches',
  'rather',
  'think',
  'way',
  'life',
  'total',
  'sacrafice',
  'everything',
  'gods',
  'sake',
  'loved',
  'us',
  'enough',
  'die',
  'save',
  'us',
  'hey',
  'cant',
  'god',
  'inspires',
  'us',
  'turn',
  'lives',
  'thats',
  'tuff',
  'people',
  'dont',
  'want',
  'real',
  'christian',
  'would',
  'something',
  'strong',
  'persevere',
  'like',
  'weight',
  'lifting',
  'guitar',
  'playing',
  'drums',
  'whatever',
  'takes',
  'time',
  'dont',
  'rush',
  'one',
  'day',
  'christianity',
  'whole',
  'life',
  'going',
  'church',
  'week',
  'helping',
  'poor',
  'people',
  'box',
  'everything',
  'time',
  'units',
  'work',
  'time',
  'sports',
  'tv',
  'social',
  'life',
  'god',
  'boxes',
  'carried',
  'us',
  'boxes',
  'created',
  'think',
  'posted',
  'part',
  'alt',
  'religion',
  'would',
  'get',
  'flames',
  'never',
  'really',
  'understood',
  'emotional',
  'sentiments',
  'stranger',
  'interest',
  'people',
  'someone',
  'famous',
  'said',
  'two',
  'evils',
  'life',
  'polititians',
  'churchs',
  'one',
  'rules',
  'fear',
  'living',
  'fear',
  'dead',
  'pressed',
  'could',
  'probably',
  'find',
  'exact',
  'quotation',
  'cheers',
  'charles'],
 ['tom',
  'lastrange',
  'forcing',
  'window',
  'manager',
  'accept',
  'specific',
  'coordinates',
  'window',
  'reply',
  'organization',
  'parcplace',
  'boulder',
  'lines',
  'article',
  'tobias',
  'doping',
  'bading',
  'writes',
  'try',
  'xcreatewindow',
  'include',
  'xutil',
  'display',
  'display',
  'window',
  'window',
  'xsizehints',
  'xsizehints',
  'xallocsizehints',
  'xsizehints',
  'flags',
  'usposition',
  'ussize',
  'pposition',
  'psize',
  'xsizehints',
  'xsizehints',
  'xsizehints',
  'width',
  'xsizehints',
  'height',
  'display',
  'window',
  'xsizehints',
  'xfree',
  'xsizehints',
  'hints',
  'tell',
  'window',
  'manager',
  'position',
  'size',
  'window',
  'specified',
  'users',
  'window',
  'manager',
  'accept',
  'values',
  'xsizehints',
  'flags',
  'pposition',
  'psize',
  'tells',
  'window',
  'manager',
  'values',
  'prefered',
  'values',
  'program',
  'user',
  'dont',
  'know',
  'window',
  'manager',
  'doesnt',
  'place',
  'window',
  'like',
  'prefer',
  'specify',
  'position',
  'size',
  'like',
  'right',
  'please',
  'dont',
  'makes',
  'brain',
  'hurt',
  'usposition',
  'ussize',
  'set',
  'user',
  'specified',
  'position',
  'size',
  'say',
  'tom',
  'dont',
  'blow',
  'gasket',
  'whats',
  'harm',
  'window',
  'managers',
  'different',
  'things',
  'besides',
  'positioning',
  'window',
  'see',
  'usposition',
  'rather',
  'pposition',
  'tom',
  'lastrange'],
 ['peter',
  'clark',
  'jr',
  'thumbs',
  'espn',
  'organization',
  'distribution',
  'na',
  'keywords',
  'espn',
  'detroit',
  'toronto',
  'hockey',
  'coverage',
  'lines',
  'article',
  'joseph',
  'charles',
  'achkar',
  'writes',
  'nice',
  'see',
  'espn',
  'show',
  'game',
  'wings',
  'leafs',
  'since',
  'cubs',
  'astros',
  'got',
  'rained',
  'instead',
  'showing',
  'another',
  'baseball',
  'game',
  'decided',
  'stanley',
  'cup',
  'playoffs',
  'classy',
  'move',
  'espn',
  'leave',
  'room',
  'times',
  'said',
  'night',
  'baseball',
  'games',
  'every',
  'break',
  'took',
  'back',
  'studio',
  'mentioned',
  'followed',
  'gonna',
  'show',
  'hockey',
  'instead',
  'wife',
  'hoping',
  'rain',
  'every',
  'baseball',
  'game',
  'feed',
  'tommorrow',
  'night',
  'point',
  'glad',
  'showed',
  'hockey',
  'baseball',
  'available',
  'anywhere',
  'else',
  'bet',
  'wouldve',
  'watched',
  'baseball',
  'last',
  'night',
  'pete',
  'clark'],
 ['mary',
  'flaglelee',
  'wanted',
  'singer',
  'featherweight',
  'organization',
  'university',
  'nebraska',
  'lincoln',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'unlinfo',
  'unl',
  'keywords',
  'singer',
  'sewing',
  'machine',
  'im',
  'looking',
  'singer',
  'featherweight',
  'sewing',
  'machine',
  'old',
  'black',
  'sewing',
  'machine',
  'black',
  'case',
  'please',
  'contact',
  'mary',
  'flagle',
  'lee'],
 ['pilon',
  'iicx',
  'wont',
  'turn',
  'nntp',
  'posting',
  'host',
  'aix',
  'ecs',
  'rpi',
  'lines',
  'ive',
  'changed',
  'battery',
  'thing',
  'shortly',
  'problem',
  'first',
  'happened',
  'ive',
  'noticed',
  'inordinate',
  'number',
  'bus',
  'errors',
  'lately',
  'pilon'],
 ['van',
  'kelly',
  'prayer',
  'jesus',
  'name',
  'organization',
  'bell',
  'laboratories',
  'murray',
  'hill',
  'nj',
  'usa',
  'lines',
  'according',
  'read',
  'biblical',
  'idioms',
  'speaking',
  'xs',
  'name',
  'standard',
  'aramaic',
  'hebrew',
  'legal',
  'idiom',
  'today',
  'would',
  'call',
  'power',
  'attorney',
  'person',
  'jesus',
  'culture',
  'authorized',
  'conduct',
  'business',
  'johns',
  'name',
  'full',
  'authority',
  'johns',
  'financial',
  'affairs',
  'held',
  'solemn',
  'fiduciary',
  'obligation',
  'work',
  'johns',
  'benefit',
  'consonant',
  'johns',
  'wishes',
  'required',
  'steward',
  'preface',
  'business',
  'transaction',
  'johns',
  'name',
  'sufficient',
  'valid',
  'power',
  'attorney',
  'operating',
  'good',
  'faith',
  'note',
  'overlap',
  'legal',
  'religious',
  'definitions',
  'faith',
  'cultural',
  'background',
  'praying',
  'jesus',
  'name',
  'mandate',
  'particular',
  'verbal',
  'formula',
  'rather',
  'requires',
  'petitioner',
  'operating',
  'faithfully',
  'consciously',
  'within',
  'analogous',
  'fiduciary',
  'relationship',
  'jesus',
  'purposes',
  'kingdom',
  'message',
  'praying',
  'jesus',
  'name',
  'thus',
  'closely',
  'aligned',
  'parable',
  'talents',
  'passages',
  'gods',
  'delegation',
  'kingdom',
  'business',
  'stewards',
  'resources',
  'idea',
  'praying',
  'jesus',
  'name',
  'present',
  'prominent',
  'lords',
  'prayer',
  'although',
  'verbal',
  'forumula',
  'absent',
  'act',
  'praying',
  'words',
  'jesus',
  'name',
  'may',
  'beneficial',
  'cause',
  'us',
  'clarify',
  'relationship',
  'requests',
  'advancement',
  'gods',
  'kingdom',
  'reason',
  'im',
  'quite',
  'ready',
  'say',
  'praying',
  'formula',
  'without',
  'meaning',
  'prayers',
  'god',
  'purposes',
  'desperation',
  'anger',
  'thanksgiving',
  'etc',
  'dont',
  'seem',
  'category',
  'whether',
  'uttered',
  'christian',
  'non',
  'christian',
  'whether',
  'thats',
  'dont',
  'see',
  'anything',
  'christs',
  'words',
  'contradict',
  'idea',
  'god',
  'deals',
  'prayers',
  'according',
  'omniscience',
  'grace',
  'van',
  'kelly',
  'opinions'],
 ['harry',
  'shapiro',
  'secret',
  'source',
  'announcement',
  'organization',
  'panix',
  'public',
  'access',
  'unix',
  'nyc',
  'lines',
  'jurgen',
  'botz',
  'writes',
  'even',
  'interesting',
  'smtp',
  'server',
  'csrc',
  'ncsl',
  'nist',
  'gov',
  'longer',
  'recognizes',
  'expn',
  'vrfy',
  'commands',
  'telnet',
  'csrc',
  'ncsl',
  'nist',
  'gov',
  'smtp',
  'trying',
  'connected',
  'csrc',
  'ncsl',
  'nist',
  'gov',
  'escape',
  'character',
  'first',
  'org',
  'sendmail',
  'nist',
  'ready',
  'tue',
  'apr',
  'edt',
  'expn',
  'clipper',
  'command',
  'unrecognized',
  'seems',
  'like',
  'sombody',
  'didnt',
  'like',
  'snooping',
  'around',
  'marc',
  'good',
  'thing',
  'already',
  'csspub',
  'mailing',
  'list',
  'address',
  'clipper',
  'mailing',
  'list',
  'seems',
  'contain',
  'basically',
  'members',
  'nist',
  'security',
  'board',
  'addition',
  'names',
  'already',
  'posted',
  'true',
  'names',
  'follows',
  'james',
  'burrows',
  'director',
  'nists',
  'national',
  'computer',
  'systems',
  'laboratory',
  'lynn',
  'mcnulty',
  'associate',
  'director',
  'computer',
  'security',
  'national',
  'institute',
  'standards',
  'technologys',
  'computer',
  'systems',
  'laboratory',
  'gaetano',
  'gangemi',
  'director',
  'secure',
  'systems',
  'program',
  'wang',
  'laboratories',
  'inc',
  'wrote',
  'computer',
  'security',
  'basics',
  'deborah',
  'russell',
  'gangemi',
  'sr',
  'oreilly',
  'associates',
  'sandra',
  'lambert',
  'vice',
  'president',
  'information',
  'security',
  'citibank',
  'lipner',
  'mitre',
  'corp',
  'director',
  'information',
  'systems',
  'patrick',
  'gallagher',
  'director',
  'national',
  'security',
  'agencys',
  'national',
  'computer',
  'security',
  'center',
  'security',
  'board',
  'member',
  'stephen',
  'walker',
  'computer',
  'security',
  'expert',
  'president',
  'trusted',
  'information',
  'systems',
  'inc',
  'glenwood',
  'md',
  'willis',
  'ware',
  'rand',
  'corp',
  'executive',
  'chairs',
  'security',
  'board',
  'william',
  'whitehurst',
  'security',
  'board',
  'member',
  'director',
  'ibm',
  'corp',
  'data',
  'security',
  'programs',
  'harry',
  'shapiro',
  'list',
  'administrator',
  'extropy',
  'institute',
  'mailing',
  'list',
  'private',
  'communication',
  'extropian',
  'community',
  'since',
  'harry',
  'shapiro',
  'list',
  'administrator',
  'extropy',
  'institute',
  'mailing',
  'list',
  'private',
  'communication',
  'extropian',
  'community',
  'since'],
 ['neal',
  'howard',
  'splitfires',
  'help',
  'spagthorpe',
  'diesels',
  'keywords',
  'using',
  'splitfire',
  'plugs',
  'performance',
  'distribution',
  'rec',
  'motorcycles',
  'organization',
  'computrac',
  'inc',
  'richardson',
  'tx',
  'lines',
  'article',
  'daniel',
  'warren',
  'writes',
  'earlier',
  'reading',
  'net',
  'using',
  'splitfire',
  'plugs',
  'one',
  'guy',
  'thinking',
  'almost',
  'everybody',
  'shot',
  'hell',
  'well',
  'saw',
  'one',
  'think',
  'someone',
  'said',
  'show',
  'team',
  'used',
  'split',
  'fires',
  'well',
  'heres',
  'additional',
  'insight',
  'theories',
  'splitfire',
  'plugs',
  'boost',
  'us',
  'oppossed',
  'cages',
  'splitfires',
  'originally',
  'made',
  'burn',
  'fuel',
  'efficiently',
  'increased',
  'power',
  'cages',
  'well',
  'guys',
  'splitfires',
  'dont',
  'know',
  'im',
  'trying',
  'catch',
  'somebody',
  'splitfires',
  'help',
  'twins',
  'splitfires',
  'work',
  'mainly',
  'providing',
  'less',
  'unshrouded',
  'spark',
  'combustion',
  'chamber',
  'engines',
  'cylinder',
  'head',
  'design',
  'benefit',
  'splitfires',
  'yield',
  'slight',
  'performance',
  'increase',
  'noticeably',
  'lower',
  'rpm',
  'range',
  'torque',
  'splitfires',
  'didnt',
  'diddly',
  'squat',
  'gmc',
  'pickup',
  'give',
  'noticeable',
  'performance',
  'boost',
  'harley',
  'sportster',
  'best',
  'friends',
  'sportster',
  'folks',
  'know',
  'whove',
  'tried',
  'evo',
  'motors',
  'cant',
  'tell',
  'performance',
  'boost',
  'plain',
  'plugs',
  'interesting',
  'since',
  'xlh',
  'big',
  'twin',
  'evo',
  'combustion',
  'chambers',
  'pretty',
  'much',
  'shape',
  'different',
  'sizes',
  'two',
  'friends',
  'shovelhead',
  'harleys',
  'swear',
  'splitfires',
  'shovelhead',
  'id',
  'dual',
  'plug',
  'instead',
  'since',
  'respond',
  'well',
  'enough',
  'dual',
  'plugs',
  'make',
  'machine',
  'work',
  'extra',
  'ignition',
  'system',
  'worth',
  'expense',
  'plus',
  'look',
  'really',
  'cool',
  'spark',
  'plug',
  'side',
  'head',
  'neal',
  'howard',
  'xlh',
  'dod',
  'computrac',
  'inc',
  'richardson',
  'tx',
  'doh',
  'std',
  'disclaimer',
  'opinions',
  'mine',
  'computracs',
  'let',
  'us',
  'learn',
  'dream',
  'gentlemen',
  'perhaps',
  'shall',
  'learn',
  'truth',
  'august',
  'kekule'],
 ['peter',
  'nyikos',
  'spreading',
  'christianity',
  'christian',
  'extremist',
  'kills',
  'doctor',
  'organization',
  'usc',
  'department',
  'computer',
  'science',
  'lines',
  'key',
  'issues',
  'line',
  'post',
  'following',
  'dealt',
  'following',
  'post',
  'made',
  'talk',
  'abortion',
  'yesterday',
  'modified',
  'correct',
  'next',
  'last',
  'paragraph',
  'message',
  'id',
  'references',
  'dean',
  'kaflowitz',
  'writes',
  'article',
  'peter',
  'nyikos',
  'writes',
  'john',
  'bates',
  'writes',
  'article',
  'peter',
  'nyikos',
  'writes',
  'perhaps',
  'dedication',
  'convictions',
  'never',
  'never',
  'thought',
  'would',
  'consciously',
  'intellectually',
  'dishonest',
  'though',
  'show',
  'anything',
  'would',
  'lead',
  'think',
  'otherwise',
  'see',
  'spreading',
  'christianity',
  'thread',
  'says',
  'ignore',
  'certain',
  'statements',
  'specifically',
  'acknowledged',
  'dean',
  'called',
  'great',
  'commission',
  'descriptive',
  'jesuss',
  'words',
  'matt',
  'matt',
  'jerusalem',
  'bible',
  'translation',
  'anyone',
  'welcome',
  'listen',
  'say',
  'walk',
  'house',
  'town',
  'shake',
  'dust',
  'feet',
  'matt',
  'tell',
  'solemnly',
  'day',
  'judgment',
  'go',
  'hard',
  'land',
  'sodom',
  'gomorrah',
  'town',
  'post',
  'dean',
  'referring',
  'said',
  'good',
  'description',
  'kaflowitz',
  'keeps',
  'harping',
  'shaking',
  'dust',
  'feet',
  'ignoring',
  'christ',
  'said',
  'next',
  'highlighted',
  'words',
  'refer',
  'matt',
  'respectively',
  'dean',
  'countered',
  'actually',
  'comment',
  'perfect',
  'example',
  'intellectually',
  'dishonest',
  'little',
  'sparrowfart',
  'since',
  'specifically',
  'acknowledged',
  'great',
  'commission',
  'entreaty',
  'spread',
  'word',
  'fact',
  'combination',
  'two',
  'statements',
  'addressing',
  'one',
  'characterize',
  'ignoring',
  'instruction',
  'spread',
  'word',
  'good',
  'example',
  'dishonest',
  'little',
  'fellow',
  'course',
  'matt',
  'quoted',
  'makes',
  'mention',
  'instruction',
  'spread',
  'word',
  'quotes',
  'btw',
  'message',
  'id',
  'end',
  'claims',
  'answer',
  'question',
  'answered',
  'deleted',
  'get',
  'chronology',
  'right',
  'deleted',
  'answer',
  'said',
  'didnt',
  'answer',
  'claim',
  'correctly',
  'question',
  'went',
  'measure',
  'goodness',
  'post',
  'entertainment',
  'value',
  'care',
  'whit',
  'mundane',
  'things',
  'truth',
  'falsehood',
  'closest',
  'dean',
  'came',
  'answer',
  'peter',
  'peter',
  'peter',
  'youre',
  'stupid',
  'pretentious',
  'dull',
  'generally',
  'unworthy',
  'value',
  'place',
  'sport',
  'course',
  'answer',
  'question',
  'posts',
  'general',
  'posts',
  'particular',
  'surely',
  'even',
  'dean',
  'knows',
  'yet',
  'brazenly',
  'asserts',
  'otherwise',
  'reinforcing',
  'claim',
  'insult',
  'restore',
  'answer',
  'question',
  'deleted',
  'youre',
  'still',
  'unable',
  'figure',
  'ask',
  'nice',
  'kid',
  'local',
  'junior',
  'high',
  'help',
  'really',
  'doesnt',
  'take',
  'much',
  'sophistication',
  'understand',
  'top',
  'doubt',
  'answer',
  'representative',
  'deans',
  'true',
  'frame',
  'mind',
  'insults',
  'seen',
  'quoted',
  'thus',
  'far',
  'small',
  'sample',
  'stream',
  'oozes',
  'deans',
  'mind',
  'throughout',
  'line',
  'post',
  'quotes',
  'taken',
  'one',
  'wonders',
  'whether',
  'deans',
  'mind',
  'warped',
  'find',
  'sport',
  'even',
  'dredges',
  'falsified',
  'account',
  'events',
  'transpired',
  'earlier',
  'another',
  'thread',
  'made',
  'ass',
  'claiming',
  'tradition',
  'lent',
  'make',
  'public',
  'announcements',
  'sins',
  'individuals',
  'false',
  'said',
  'tradition',
  'recall',
  'atone',
  'ones',
  'sins',
  'made',
  'public',
  'announcements',
  'sins',
  'others',
  'sins',
  'btw',
  'matter',
  'public',
  'record',
  'documented',
  'posts',
  'others',
  'different',
  'matter',
  'many',
  'individuals',
  'involved',
  'nearly',
  'amoral',
  'see',
  'sins',
  'morally',
  'upright',
  'people',
  'see',
  'sins',
  'pointed',
  'expressly',
  'set',
  'whole',
  'thread',
  'turn',
  'let',
  'people',
  'point',
  'sins',
  'dean',
  'made',
  'ass',
  'saying',
  'statement',
  'tradition',
  'tzedukkah',
  'somehow',
  'attempt',
  'paint',
  'jews',
  'plaster',
  'saints',
  'thereby',
  'revealing',
  'inability',
  'understand',
  'discussion',
  'well',
  'showing',
  'dislike',
  'people',
  'saying',
  'positive',
  'things',
  'jews',
  'show',
  'intellectual',
  'dishonesty',
  'repeatedly',
  'ignoring',
  'simple',
  'argument',
  'made',
  'claiming',
  'ignoring',
  'argument',
  'acknowledge',
  'actually',
  'happened',
  'dean',
  'made',
  'seem',
  'like',
  'jew',
  'gave',
  'alms',
  'acts',
  'charity',
  'public',
  'hypocrite',
  'according',
  'jewish',
  'customs',
  'caricaturing',
  'jewish',
  'customs',
  'almost',
  'impossibly',
  'demanding',
  'well',
  'implicitly',
  'slandering',
  'jews',
  'make',
  'public',
  'acts',
  'charity',
  'went',
  'easily',
  'dean',
  'giving',
  'benefit',
  'doubt',
  'post',
  'following',
  'initial',
  'crack',
  'plaster',
  'saints',
  'suggesting',
  'merely',
  'careless',
  'wording',
  'astonishing',
  'act',
  'ingratitude',
  'dean',
  'serves',
  'incredibly',
  'distorted',
  'picture',
  'took',
  'place',
  'us',
  'using',
  'basis',
  'one',
  'insult',
  'another',
  'peter',
  'nyikos'],
 ['matt',
  'landau',
  'looking',
  'updated',
  'xview',
  'textedit',
  'source',
  'support',
  'article',
  'armory',
  'ri',
  'hm',
  'organization',
  'centerline',
  'software',
  'inc',
  'lines',
  'nntp',
  'posting',
  'host',
  'xview',
  'version',
  'source',
  'distribution',
  'included',
  'contrib',
  'section',
  'included',
  'source',
  'textedit',
  'program',
  'id',
  'like',
  'take',
  'sources',
  'modify',
  'add',
  'support',
  'tooltalk',
  'like',
  'message',
  'server',
  'maybe',
  'tooltalk',
  'im',
  'since',
  'sun',
  'supplied',
  'textedit',
  'binary',
  'doesnt',
  'seem',
  'speak',
  'tooltalk',
  'however',
  'sources',
  'contrib',
  'area',
  'seem',
  'older',
  'version',
  'textedit',
  'version',
  'shipped',
  'openwindows',
  'example',
  'textedit',
  'includes',
  'drag',
  'drop',
  'support',
  'dropsite',
  'main',
  'control',
  'area',
  'source',
  'contrib',
  'xview',
  'knows',
  'nothing',
  'drag',
  'drop',
  'textedit',
  'included',
  'xview',
  'sources',
  'says',
  'version',
  'dated',
  'textedit',
  'binary',
  'says',
  'textedit',
  'copyr',
  'sun',
  'micro',
  'dragdrop',
  'copyr',
  'sun',
  'micro',
  'tooltalk',
  'copyr',
  'sun',
  'micro',
  'ds_relname',
  'copyr',
  'sun',
  'micro',
  'anyone',
  'know',
  'sources',
  'textedit',
  'available',
  'id',
  'really',
  'like',
  'work',
  'latest',
  'source',
  'possible',
  'please',
  'reply',
  'email',
  'ill',
  'post',
  'summary',
  'theres',
  'enough',
  'interest',
  'matt',
  'landau',
  'waiting',
  'flash',
  'enlightenment',
  'blood',
  'thunder'],
 ['kevin',
  'shin',
  'thinning',
  'algorithm',
  'organization',
  'university',
  'washington',
  'seattle',
  'lines',
  'nntp',
  'posting',
  'host',
  'stein',
  'washington',
  'hi',
  'netters',
  'looking',
  'source',
  'code',
  'reads',
  'ascii',
  'file',
  'bitmap',
  'file',
  'produced',
  'thinned',
  'image',
  'example',
  'preprocess',
  'character',
  'image',
  'want',
  'apply',
  'thinning',
  'algorithm',
  'thanks',
  'kevin'],
 ['brent',
  'williams',
  'colorado',
  'jumbo',
  'gateway',
  'organization',
  'netcom',
  'line',
  'communication',
  'services',
  'guest',
  'lines',
  'peter',
  'davis',
  'writes',
  'ive',
  'installed',
  'new',
  'colorado',
  'jumbo',
  'tape',
  'backup',
  'unit',
  'gateway',
  'couple',
  'complaints',
  'dont',
  'know',
  'common',
  'serious',
  'problems',
  'may',
  'would',
  'appreciate',
  'feedback',
  'others',
  'used',
  'system',
  'btw',
  'dx',
  'tower',
  'system',
  'similar',
  'configuration',
  'colorado',
  'mb',
  'dx',
  'tower',
  'problems',
  'firstly',
  'gateway',
  'shipped',
  'mb',
  'tapes',
  'even',
  'though',
  'drive',
  'mb',
  'unit',
  'called',
  'complain',
  'said',
  'thats',
  'carry',
  'compression',
  'fit',
  'mb',
  'one',
  'tape',
  'maybe',
  'pay',
  'extra',
  'large',
  'capacity',
  'tape',
  'drive',
  'got',
  'suckered',
  'way',
  'silly',
  'believing',
  'logo',
  'front',
  'meant',
  'actual',
  'carrying',
  'capacity',
  'people',
  'sort',
  'thing',
  'living',
  'call',
  'marketing',
  'lawyers',
  'prosecute',
  'call',
  'fraud',
  'perhaps',
  'bunch',
  'duped',
  'buyers',
  'march',
  'corporate',
  'headquarters',
  'mb',
  'data',
  'drive',
  'choose',
  'space',
  'optimizing',
  'compression',
  'scheme',
  'started',
  'full',
  'backup',
  'software',
  'estimated',
  'would',
  'take',
  'minutes',
  'took',
  'hours',
  'sound',
  'right',
  'bit',
  'long',
  'system',
  'takes',
  'minutes',
  'thing',
  'usually',
  'hours',
  'particularly',
  'tape',
  'grinding',
  'away',
  'whole',
  'time',
  'means',
  'block',
  'size',
  'write',
  'small',
  'way',
  'change',
  'block',
  'size',
  'write',
  'buffer',
  'size',
  'bigger',
  'backup',
  'dozen',
  'files',
  'came',
  'access',
  'denied',
  'errors',
  'windows',
  'system',
  'comm',
  'drv',
  'keyboard',
  'drv',
  'shell',
  'dll',
  'etc',
  'also',
  'windows',
  'progman',
  'exe',
  'couple',
  'files',
  'tape',
  'directory',
  'anyone',
  'else',
  'happen',
  'files',
  'opened',
  'dos',
  'files',
  'tape',
  'directory',
  'likely',
  'executable',
  'file',
  'configuration',
  'file',
  'tape',
  'system',
  'would',
  'recommend',
  'running',
  'backup',
  'dos',
  'make',
  'complete',
  'backup',
  'tape',
  'directory',
  'thanks',
  'feedback',
  'system',
  'id',
  'also',
  'appreciate',
  'hearing',
  'good',
  'sources',
  'blank',
  'tape',
  'cartridges',
  'preferably',
  'mb',
  'size',
  'mb',
  'cartridges',
  'wont',
  'good',
  'since',
  'drive',
  'wont',
  'write',
  'mb',
  'physical',
  'data',
  'tape',
  'thanks',
  'pd',
  'brent',
  'williams',
  'san',
  'jose',
  'california'],
 ['michael',
  'panayiotakis',
  'cool',
  'bmp',
  'files',
  'organization',
  'george',
  'washington',
  'university',
  'lines',
  'downloaded',
  'compuserve',
  'gif',
  'month',
  'raytraced',
  'image',
  'golf',
  'ball',
  'next',
  'hole',
  'nice',
  'bitmap',
  'easily',
  'converted',
  'windows',
  'bmp',
  'anyone',
  'wants',
  'could',
  'upload',
  'copy',
  'cica',
  'please',
  'let',
  'us',
  'know',
  'specifics',
  'lest',
  'im',
  'one',
  'mickey',
  'pe',
  'michael',
  'panayiotakis',
  'ace',
  'uunet',
  'seas',
  'gwu',
  'louray',
  'make',
  'ms',
  'windows',
  'grp',
  'file',
  'reflect',
  'hd',
  'directory',
  'well',
  'aint',
  'always',
  'right',
  'ive',
  'never',
  'wrong',
  'gd'],
 ['jon',
  'livesey',
  'morality',
  'political',
  'atheists',
  'organization',
  'sgi',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'solntze',
  'wpd',
  'sgi',
  'com',
  'article',
  'keith',
  'allan',
  'schneider',
  'writes',
  'jon',
  'livesey',
  'writes',
  'explain',
  'instinctive',
  'acts',
  'moral',
  'acts',
  'happy',
  'listen',
  'example',
  'instinctive',
  'murder',
  'murdering',
  'would',
  'moral',
  'significance',
  'since',
  'would',
  'nothing',
  'voluntary',
  'see',
  'go',
  'saying',
  'moral',
  'act',
  'significant',
  'voluntary',
  'think',
  'force',
  'something',
  'morally',
  'responsible',
  'anyway',
  'humans',
  'ability',
  'disregard',
  'instincts',
  'well',
  'make',
  'mind',
  'instinctive',
  'murder',
  'intelligent',
  'beings',
  'moral',
  'even',
  'bahavior',
  'beings',
  'mimics',
  'starting',
  'get',
  'point',
  'mimicry',
  'necessarily',
  'action',
  'imitated',
  'parrot',
  'saying',
  'pretty',
  'polly',
  'isnt',
  'necessarily',
  'commenting',
  'pulchritude',
  'polly',
  'attaching',
  'many',
  'things',
  'term',
  'moral',
  'think',
  'lets',
  'try',
  'good',
  'animals',
  'species',
  'dont',
  'kill',
  'think',
  'right',
  'even',
  'correct',
  'animals',
  'species',
  'kill',
  'one',
  'another',
  'think',
  'animals',
  'machines',
  'nothing',
  'either',
  'right',
  'wrong',
  'sigh',
  'wonder',
  'many',
  'times',
  'round',
  'loop',
  'think',
  'instinctive',
  'bahaviour',
  'moral',
  'significance',
  'quite',
  'prepared',
  'believe',
  'higher',
  'animals',
  'primates',
  'beginnings',
  'moral',
  'sense',
  'since',
  'seem',
  'exhibit',
  'self',
  'awareness',
  'animals',
  'species',
  'could',
  'kill',
  'arbitarily',
  'dont',
  'posters',
  'given',
  'many',
  'examples',
  'exactly',
  'seem',
  'short',
  'memory',
  'werent',
  'arbitrary',
  'killings',
  'slayings',
  'related',
  'sort',
  'mating',
  'ritual',
  'whatnot',
  'trying',
  'say',
  'killing',
  'animals',
  'moral',
  'significance',
  'natural',
  'morality',
  'trying',
  'say',
  'isnt',
  'act',
  'morality',
  'animals',
  'arent',
  'intelligent',
  'enough',
  'think',
  'like',
  'im',
  'saying',
  'must',
  'possibility',
  'organism',
  'people',
  'talking',
  'consider',
  'alternatives',
  'right',
  'posting',
  'replying',
  'yes',
  'still',
  'dont',
  'understand',
  'distinctions',
  'mean',
  'consider',
  'small',
  'child',
  'moral',
  'gorilla',
  'dolphin',
  'platypus',
  'line',
  'drawn',
  'need',
  'self',
  'aware',
  'blind',
  'think',
  'sentence',
  'means',
  'must',
  'possibility',
  'organism',
  'people',
  'talking',
  'consider',
  'alternatives',
  'would',
  'imply',
  'call',
  'mechanism',
  'seems',
  'prevent',
  'animals',
  'species',
  'arbitrarily',
  'killing',
  'dont',
  'find',
  'fact',
  'dont',
  'significant',
  'find',
  'fact',
  'significant',
  'jon'],
 ['max',
  'webb',
  'question',
  'bee',
  'bothering',
  'organization',
  'cypress',
  'semi',
  'beaverton',
  'lines',
  'article',
  'malcusco',
  'writes',
  'article',
  'cardinal',
  'ximenez',
  'writes',
  'problem',
  'science',
  'often',
  'allows',
  'us',
  'assume',
  'know',
  'best',
  'god',
  'endowed',
  'us',
  'ability',
  'produce',
  'life',
  'sexual',
  'relations',
  'assume',
  'believe',
  'designing',
  'creator',
  'observe',
  'ability',
  'procreate',
  'example',
  'make',
  'availible',
  'everyone',
  'mean',
  'science',
  'ride',
  'gods',
  'decision',
  'alterations',
  'god',
  'wills',
  'us',
  'power',
  'decide',
  'able',
  'children',
  'observe',
  'ability',
  'modify',
  'fertility',
  'intelligence',
  'experiment',
  'draw',
  'similar',
  'conclusions',
  'god',
  'designing',
  'us',
  'scientific',
  'inquiry',
  'technology',
  'produces',
  'one',
  'ability',
  'obviously',
  'god',
  'cannot',
  'draw',
  'solid',
  'line',
  'regarding',
  'would',
  'approve',
  'scientific',
  'study',
  'would',
  'say',
  'one',
  'experiments',
  'universe',
  'find',
  'secrets',
  'one',
  'ask',
  'want',
  'knowledge',
  'want',
  'know',
  'truth',
  'hold',
  'truth',
  'basic',
  'ethical',
  'values',
  'correct',
  'moral',
  'judgement',
  'relies',
  'knowing',
  'truth',
  'vice',
  'versa',
  'moralities',
  'assert',
  'assent',
  'belief',
  'moral',
  'choice',
  'compelled',
  'evidence',
  'inevitably',
  'cut',
  'limb',
  'sit',
  'upon',
  'falsification',
  'evidence',
  'conscious',
  'unconscious',
  'follows',
  'corrupting',
  'intellect',
  'heart',
  'say',
  'person',
  'pray',
  'guidance',
  'trying',
  'unravel',
  'mysteries',
  'universe',
  'cease',
  'unravelling',
  'reason',
  'believe',
  'search',
  'displeasing',
  'god',
  'malcusco',
  'god',
  'nothing',
  'fear',
  'truth',
  'imaginary',
  'gods',
  'followers',
  'afraid',
  'afraid',
  'max'],
 ['system',
  'operator',
  'moment',
  'silence',
  'organization',
  'university',
  'california',
  'san',
  'diego',
  'lines',
  'nntp',
  'posting',
  'host',
  'sdcc',
  'ucsd',
  'april',
  'th',
  'approaching',
  'armenians',
  'around',
  'world',
  'getting',
  'ready',
  'remember',
  'massacres',
  'family',
  'members',
  'turkish',
  'government',
  'least',
  'million',
  'armenians',
  'perished',
  'period',
  'important',
  'note',
  'deny',
  'event',
  'ever',
  'took',
  'place',
  'either',
  'supported',
  'policy',
  'exterminate',
  'armenians',
  'painfully',
  'witnessed',
  'azerbaijan',
  'would',
  'like',
  'see',
  'happen',
  'thank',
  'taking',
  'time',
  'read',
  'post',
  'helgge'],
 ['david',
  'dodell',
  'hicn',
  'medical',
  'newsletter',
  'part',
  'reply',
  'david',
  'dodell',
  'distribution',
  'world',
  'organization',
  'stat',
  'gateway',
  'service',
  'wb',
  'tpy',
  'lines',
  'cut',
  'volume',
  'number',
  'april',
  'health',
  'info',
  'com',
  'network',
  'medical',
  'newsletter',
  'editor',
  'david',
  'dodell',
  'north',
  'nd',
  'street',
  'suite',
  'scottsdale',
  'arizona',
  'usa',
  'telephone',
  'fax',
  'compilation',
  'copyright',
  'david',
  'dodell',
  'rights',
  'reserved',
  'license',
  'hereby',
  'granted',
  'republish',
  'electronic',
  'media',
  'fees',
  'charged',
  'long',
  'text',
  'copyright',
  'notice',
  'license',
  'attached',
  'intact',
  'republished',
  'portion',
  'portions',
  'health',
  'info',
  'com',
  'network',
  'newsletter',
  'distributed',
  'biweekly',
  'articles',
  'medical',
  'nature',
  'welcomed',
  'article',
  'please',
  'contact',
  'editor',
  'information',
  'submit',
  'interested',
  'joining',
  'automated',
  'distribution',
  'system',
  'please',
  'contact',
  'editor',
  'mail',
  'address',
  'editor',
  'internet',
  'fidonet',
  'bitnet',
  'listserv',
  'internet',
  'anonymous',
  'ftp',
  'vm',
  'nodak',
  'notification',
  'list',
  'fax',
  'delivery',
  'contact',
  'editor',
  'information',
  'comments',
  'news',
  'editor',
  'ocr',
  'scanner',
  'news',
  'centers',
  'disease',
  'control',
  'prevention',
  'mmwr',
  'april',
  'emerging',
  'infectious',
  'diseases',
  'outbreak',
  'coli',
  'infections',
  'hamburgers',
  'smokeless',
  'tobacoo',
  'among',
  'adults',
  'gonorrhea',
  'impact',
  'adult',
  'safety',
  'belt',
  'children',
  'less',
  'years',
  'age',
  'publication',
  'cdc',
  'surveillance',
  'summaries',
  'clinical',
  'research',
  'news',
  'high',
  'tech',
  'assisted',
  'reproductive',
  'technologies',
  'articles',
  'low',
  'levels',
  'airborne',
  'particles',
  'linked',
  'serious',
  'asthma',
  'attacks',
  'nih',
  'consensus',
  'development',
  'conference',
  'melanoma',
  'national',
  'cancer',
  'insitute',
  'designated',
  'cancer',
  'centers',
  'general',
  'announcments',
  'uci',
  'medical',
  'education',
  'software',
  'repository',
  'aids',
  'news',
  'summaries',
  'aids',
  'daily',
  'summary',
  'april',
  'april',
  'aids',
  'hiv',
  'articles',
  'first',
  'hiv',
  'vaccine',
  'trial',
  'begins',
  'hiv',
  'infected',
  'children',
  'new',
  'evidence',
  'hiv',
  'cause',
  'disease',
  'independently',
  'clinical',
  'consultation',
  'telephone',
  'service',
  'aids',
  'hicnet',
  'medical',
  'newsletter',
  'page',
  'volume',
  'number',
  'april',
  'comments',
  'news',
  'editor',
  'would',
  'like',
  'continue',
  'thank',
  'everyone',
  'sent',
  'donation',
  'mednews',
  'ocr',
  'scanner',
  'fund',
  'reached',
  'goal',
  'hewlett',
  'packard',
  'scanjet',
  'iip',
  'purchased',
  'week',
  'thank',
  'following',
  'individuals',
  'whose',
  'contributions',
  'received',
  'john',
  'sorenson',
  'carol',
  'sigelman',
  'carla',
  'moore',
  'barbara',
  'moose',
  'judith',
  'schrier',
  'thank',
  'gave',
  'using',
  'wordscan',
  'plus',
  'past',
  'couple',
  'weeks',
  'would',
  'like',
  'review',
  'product',
  'wordscan',
  'plus',
  'product',
  'calera',
  'recognition',
  'systems',
  'runs',
  'windows',
  'supports',
  'accufont',
  'technology',
  'hewlett',
  'packard',
  'scanners',
  'initially',
  'bringing',
  'software',
  'lets',
  'select',
  'several',
  'options',
  'text',
  'graphics',
  'input',
  'source',
  'ie',
  'scanner',
  'fax',
  'file',
  'disk',
  'file',
  'automatic',
  'versus',
  'manual',
  'decomposition',
  'scanned',
  'image',
  'like',
  'manual',
  'decomposition',
  'since',
  'software',
  'lets',
  'select',
  'parts',
  'document',
  'would',
  'like',
  'scanned',
  'order',
  'image',
  'scanned',
  'bring',
  'pop',
  'image',
  'verification',
  'software',
  'gives',
  'two',
  'errors',
  'point',
  'blue',
  'words',
  'converted',
  'reliability',
  'match',
  'anything',
  'built',
  'dictionary',
  'yellow',
  'shade',
  'words',
  'wordscan',
  'plus',
  'doesnt',
  'think',
  'converted',
  'correctly',
  'found',
  'software',
  'give',
  'credit',
  'usually',
  'correct',
  'instead',
  'wrong',
  'word',
  'shaded',
  'blue',
  'add',
  'personal',
  'dictionary',
  'problem',
  'personal',
  'dictionary',
  'handle',
  'words',
  'find',
  'limited',
  'considering',
  'many',
  'medical',
  'terms',
  'normal',
  'dictionary',
  'document',
  'converted',
  'save',
  'multitude',
  'word',
  'processor',
  'formats',
  'also',
  'images',
  'captured',
  'stored',
  'seperate',
  'tiff',
  'pcx',
  'file',
  'format',
  'extremely',
  'impressed',
  'percent',
  'accuracy',
  'fax',
  'files',
  'hicnet',
  'medical',
  'newsletter',
  'page',
  'volume',
  'number',
  'april',
  'intel',
  'satisfaxtion',
  'card',
  'stores',
  'incoming',
  'faxs',
  'pcx',
  'dcx',
  'format',
  'faxes',
  'received',
  'standard',
  'mode',
  'dpi',
  'accuracy',
  'wordscan',
  'plus',
  'excellent',
  'overall',
  'impressive',
  'product',
  'fault',
  'could',
  'find',
  'limitations',
  'size',
  'user',
  'dictionary',
  'specialized',
  'words',
  'small',
  'anyone',
  'specific',
  'questions',
  'please',
  'hesitate',
  'send',
  'email',
  'hicnet',
  'medical',
  'newsletter',
  'page',
  'volume',
  'number',
  'april',
  'centers',
  'disease',
  'control',
  'prevention',
  'mmwr',
  'emerging',
  'infectious',
  'diseases',
  'source',
  'mmwr',
  'date',
  'apr',
  'introduction',
  'despite',
  'predictions',
  'earlier',
  'century',
  'infectious',
  'diseases',
  'would',
  'soon',
  'eliminated',
  'public',
  'health',
  'problem',
  'infectious',
  'diseases',
  'remain',
  'major',
  'cause',
  'death',
  'worldwide',
  'leading',
  'cause',
  'illness',
  'death',
  'united',
  'states',
  'since',
  'early',
  'public',
  'health',
  'system',
  'challenged',
  'myriad',
  'newly',
  'identified',
  'pathogens',
  'syndromes',
  'escherichia',
  'coli',
  'hepatitis',
  'virus',
  'human',
  'virus',
  'legionnaires',
  'disease',
  'lyme',
  'disease',
  'toxic',
  'shock',
  'syndrome',
  'incidences',
  'many',
  'diseases',
  'widely',
  'presumed',
  'control',
  'cholera',
  'malaria',
  'tuberculosis',
  'tb',
  'increased',
  'many',
  'areas',
  'furthermore',
  'control',
  'prevention',
  'infectious',
  'diseases',
  'undermined',
  'drug',
  'resistance',
  'conditions',
  'gonorrhea',
  'malaria',
  'pneumococcal',
  'disease',
  'salmonellosis',
  'shigellosis',
  'tb',
  'staphylococcal',
  'infections',
  'emerging',
  'infections',
  'place',
  'burden',
  'persons',
  'institutional',
  'settings',
  'hospitals',
  'child',
  'day',
  'care',
  'centers',
  'minority',
  'underserved',
  'populations',
  'substantial',
  'economic',
  'burden',
  'emerging',
  'infections',
  'health',
  'care',
  'system',
  'could',
  'reduced',
  'effective',
  'surveillance',
  'systems',
  'targeted',
  'control',
  'prevention',
  'programs',
  'issue',
  'mmwr',
  'introduces',
  'new',
  'series',
  'emerging',
  'infectious',
  'diseases',
  'future',
  'articles',
  'address',
  'diseases',
  'well',
  'surveillance',
  'control',
  'prevention',
  'efforts',
  'health',
  'care',
  'providers',
  'public',
  'health',
  'officials',
  'first',
  'article',
  'updates',
  'ongoing',
  'investigation',
  'outbreak',
  'coli',
  'western',
  'united',
  'states',
  'references',
  'burnet',
  'natural',
  'history',
  'infectious',
  'disease',
  'cambridge',
  'england',
  'cambridge',
  'university',
  'press',
  'kunin',
  'cm',
  'resistance',
  'antimicrobial',
  'drugs',
  'worldwide',
  'calamity',
  'ann',
  'intern',
  'med',
  'lederberg',
  'shope',
  'oaks',
  'sc',
  'jr',
  'eds',
  'emerging',
  'infections',
  'microbial',
  'threats',
  'health',
  'united',
  'states',
  'washington',
  'dc',
  'national',
  'academy',
  'press',
  'hicnet',
  'medical',
  'newsletter',
  'page',
  'volume',
  'number',
  'april',
  'cdc',
  'preliminary',
  'report',
  'foodborne',
  'outbreak',
  'escherichia',
  'coli',
  'infections',
  'hamburgers',
  'western',
  'united',
  'states',
  'mmwr',
  'hicnet',
  'medical',
  'newsletter',
  'page',
  'volume',
  'number',
  'april',
  'update',
  'multistate',
  'outbreak',
  'escherichia',
  'coli',
  'infections',
  'hamburgers',
  'western',
  'united',
  'states',
  'source',
  'mmwr',
  'date',
  'apr',
  'november',
  'february',
  'laboratory',
  'confirmed',
  'infections',
  'coli',
  'four',
  'associated',
  'deaths',
  'occurred',
  'four',
  'states',
  'washington',
  'idaho',
  'california',
  'nevada',
  'report',
  'summarizes',
  'findings',
  'ongoing',
  'investigation',
  'identified',
  'multistate',
  'outbreak',
  'resulting',
  'consumption',
  'hamburgers',
  'one',
  'restaurant',
  'chain',
  'washington',
  'january',
  'physician',
  'reported',
  'washington',
  'department',
  'health',
  'cluster',
  'children',
  'hemolytic',
  'uremic',
  'syndrome',
  'hus',
  'increase',
  'emergency',
  'room',
  'visits',
  'bloody',
  'diarrhea',
  'january',
  'case',
  'control',
  'study',
  'comparing',
  'first',
  'cases',
  'bloody',
  'diarrhea',
  'postdiarrheal',
  'hus',
  'identified',
  'age',
  'neighborhood',
  'matched',
  'controls',
  'implicated',
  'eating',
  'chain',
  'restaurants',
  'week',
  'symptom',
  'onset',
  'matched',
  'odds',
  'ratio',
  'undefined',
  'lower',
  'confidence',
  'limit',
  'january',
  'multistate',
  'recall',
  'unused',
  'hamburger',
  'patties',
  'chain',
  'restaurants',
  'initiated',
  'result',
  'publicity',
  'case',
  'finding',
  'efforts',
  'january',
  'february',
  'patients',
  'bloody',
  'diarrhea',
  'hus',
  'reported',
  'state',
  'health',
  'department',
  'total',
  'persons',
  'illnesses',
  'meeting',
  'case',
  'definition',
  'culture',
  'confirmed',
  'coli',
  'infection',
  'postdiarrheal',
  'hus',
  'figure',
  'persons',
  'close',
  'contact',
  'person',
  'confirmed',
  'coli',
  'infection',
  'week',
  'preceding',
  'onset',
  'symptoms',
  'remaining',
  'persons',
  'reported',
  'eating',
  'chain',
  'restaurant',
  'days',
  'preceding',
  'onset',
  'symptoms',
  'patients',
  'recalled',
  'ate',
  'chain',
  'restaurant',
  'reported',
  'eating',
  'regular',
  'sized',
  'hamburger',
  'patty',
  'onsets',
  'illness',
  'peaked',
  'january',
  'january',
  'casepatients',
  'hospitalized',
  'developed',
  'hus',
  'three',
  'died',
  'median',
  'age',
  'patients',
  'years',
  'range',
  'years',
  'idaho',
  'following',
  'outbreak',
  'report',
  'washington',
  'division',
  'health',
  'idaho',
  'department',
  'health',
  'welfare',
  'identified',
  'persons',
  'culture',
  'confirmed',
  'coli',
  'infection',
  'illness',
  'onset',
  'dates',
  'december',
  'february',
  'figure',
  'four',
  'persons',
  'hospitalized',
  'one',
  'developed',
  'hus',
  'week',
  'preceding',
  'illness',
  'onset',
  'eaten',
  'chain',
  'restaurant',
  'california',
  'late',
  'december',
  'san',
  'diego',
  'county',
  'department',
  'health',
  'services',
  'notified',
  'child',
  'coli',
  'infection',
  'subsequently',
  'died',
  'active',
  'surveillance',
  'record',
  'review',
  'identified',
  'eight',
  'persons',
  'coli',
  'infections',
  'hus',
  'mid',
  'november',
  'mid',
  'january',
  'four',
  'nine',
  'reportedly',
  'recently',
  'eaten',
  'chain',
  'restaurant',
  'hicnet',
  'medical',
  'newsletter',
  'page',
  'volume',
  'number',
  'april',
  'four',
  'chain',
  'restaurant',
  'san',
  'diego',
  'washington',
  'outbreak',
  'reported',
  'reviews',
  'medical',
  'records',
  'five',
  'hospitals',
  'revealed',
  'overall',
  'increase',
  'visits',
  'admissions',
  'diarrhea',
  'december',
  'january',
  'compared',
  'period',
  'year',
  'earlier',
  'case',
  'defined',
  'postdiarrheal',
  'hus',
  'bloody',
  'diarrhea',
  'culture',
  'negative',
  'cultured',
  'diarrheal',
  'illness',
  'stool',
  'culture',
  'yielded',
  'coli',
  'onset',
  'november',
  'january',
  'illnesses',
  'patients',
  'met',
  'case',
  'definition',
  'figure',
  'outbreak',
  'strain',
  'identified',
  'stool',
  'specimens',
  'six',
  'patients',
  'fourteen',
  'persons',
  'hospitalized',
  'seven',
  'developed',
  'hus',
  'one',
  'child',
  'died',
  'median',
  'age',
  'case',
  'patients',
  'years',
  'range',
  'years',
  'case',
  ...],
 ['brian',
  'ceccarelli',
  'rob',
  'lanphier',
  'organization',
  'lunar',
  'planetary',
  'laboratory',
  'tucson',
  'az',
  'lines',
  'dear',
  'rob',
  'read',
  'brian',
  'postings',
  'find',
  'someone',
  'honestly',
  'seeking',
  'truth',
  'read',
  'response',
  'see',
  'condescension',
  'reply',
  'post',
  'reply',
  'post',
  'quote',
  'statement',
  'undermines',
  'good',
  'points',
  'might',
  'enough',
  'make',
  'stop',
  'reading',
  'sometimes',
  'come',
  'across',
  'condesending',
  'sorry',
  'come',
  'across',
  'way',
  'times',
  'thank',
  'reproach',
  'really',
  'appreciate',
  'ill',
  'try',
  'get',
  'better',
  'rob',
  'time',
  'also',
  'learned',
  'people',
  'respond',
  'gentle',
  'approach',
  'others',
  'respond',
  'harsh',
  'rebuke',
  'brian',
  'far',
  'responds',
  'latter',
  'glad',
  'responds',
  'cases',
  'approach',
  'intention',
  'loving',
  'making',
  'excuse',
  'coming',
  'across',
  'condesending',
  'apologize',
  'rob',
  'sometimes',
  'brian',
  'comes',
  'across',
  'honest',
  'know',
  'brian',
  'vasillates',
  'back',
  'forth',
  'one',
  'post',
  'looks',
  'honest',
  'next',
  'excuse',
  'wants',
  'explain',
  'universe',
  'words',
  'less',
  'think',
  'brian',
  'kendig',
  'really',
  'trying',
  'comfortable',
  'set',
  'excuses',
  'want',
  'brian',
  'honest',
  'really',
  'wants',
  'know',
  'ask',
  'questions',
  'stop',
  'asserting',
  'irrelevant',
  'excuses',
  'nothing',
  'god',
  'wish',
  'brian',
  'would',
  'read',
  'bible',
  'come',
  'decisions',
  'without',
  'sidetracked',
  'temptation',
  'mock',
  'god',
  'perspective',
  'rob',
  'look',
  'brian',
  'kendig',
  'see',
  'man',
  'standing',
  'middle',
  'highway',
  'distance',
  'see',
  'mack',
  'truck',
  'heading',
  'right',
  'brian',
  'faced',
  'away',
  'oncoming',
  'truck',
  'doesnt',
  'see',
  'heres',
  'see',
  'dialog',
  'brian',
  'please',
  'step',
  'aside',
  'get',
  'run',
  'bk',
  'truck',
  'turn',
  'around',
  'look',
  'bk',
  'look',
  'healthier',
  'take',
  'look',
  'oncoming',
  'truck',
  'bk',
  'explain',
  'trucks',
  'exist',
  'turn',
  'around',
  'run',
  'bk',
  'wont',
  'like',
  'hiking',
  'tomorrow',
  'tuesday',
  'blind',
  'fool',
  'choose',
  'ignorance',
  'nothing',
  'lose',
  'look',
  'look',
  'certainly',
  'lose',
  'life',
  'want',
  'see',
  'squashed',
  'road',
  'bk',
  'life',
  'lose',
  'rather',
  'look',
  'besides',
  'truck',
  'running',
  'harm',
  'way',
  'really',
  'open',
  'mind',
  'motivation',
  'belittle',
  'brian',
  'love',
  'brian',
  'best',
  'know',
  'wish',
  'single',
  'brian',
  'kendig',
  'millions',
  'billions',
  'people',
  'fall',
  'category',
  'perhaps',
  'people',
  'fall',
  'fallen',
  'category',
  'one',
  'time',
  'lives',
  'see',
  'truck',
  'behind',
  'brian',
  'hope',
  'brian',
  'look',
  'see',
  'ramifications',
  'truck',
  'coming',
  'towards',
  'hope',
  'brian',
  'want',
  'step',
  'way',
  'fear',
  'though',
  'brian',
  'instead',
  'choose',
  'glue',
  'middle',
  'highway',
  'certainly',
  'get',
  'run',
  'chooses',
  'chooses',
  'nothing',
  'beyond',
  'change',
  'mind',
  'choice',
  'moment',
  'brian',
  'hasnt',
  'gotten',
  'even',
  'far',
  'still',
  'point',
  'want',
  'look',
  'sure',
  'moves',
  'eyeball',
  'appease',
  'head',
  'turn',
  'around',
  'see',
  'entire',
  'picture',
  'far',
  'satisfied',
  'glimpse',
  'mountains',
  'distance',
  'thank',
  'rob',
  'reproach',
  'really',
  'appreciate',
  'wife',
  'tells',
  'thing',
  'times',
  'try',
  'better'],
 ['matt',
  'madsen',
  'se',
  'acc',
  'graphics',
  'card',
  'nntp',
  'posting',
  'host',
  'bonnie',
  'ics',
  'uci',
  'reply',
  'matt',
  'madsen',
  'organization',
  'univ',
  'calif',
  'irvine',
  'info',
  'computer',
  'sci',
  'dept',
  'lines',
  'graphics',
  'cards',
  'se',
  'also',
  'say',
  'accelerator',
  'seem',
  'plenty',
  'accelerator',
  'graphics',
  'cards',
  'none',
  'ive',
  'seen',
  'se',
  'thanks',
  'matt',
  'madsen'],
 ['richard',
  'detweiler',
  'espn',
  'expansion',
  'distribution',
  'usa',
  'organization',
  'hewlett',
  'packard',
  'lines',
  'article',
  'donnie',
  'trump',
  'writes',
  'watching',
  'peter',
  'gammons',
  'espn',
  'last',
  'night',
  'hes',
  'got',
  'little',
  'confused',
  'talking',
  'expansion',
  'started',
  'mentioning',
  'people',
  'might',
  'benefit',
  'fringe',
  'players',
  'theyll',
  'facing',
  'mcgriff',
  'hitting',
  'home',
  'runs',
  'sheffield',
  'getting',
  'rbis',
  'glavine',
  'winning',
  'games',
  'course',
  'reference',
  'happened',
  'times',
  'baseball',
  'expanded',
  'early',
  'late',
  'late',
  'really',
  'confused',
  'though',
  'mention',
  'al',
  'players',
  'would',
  'well',
  'next',
  'year',
  'specifically',
  'roger',
  'clemens',
  'winning',
  'games',
  'likes',
  'mcgwire',
  'gonzalez',
  'hitting',
  'home',
  'runs',
  'question',
  'hell',
  'rockies',
  'marlins',
  'help',
  'al',
  'last',
  'time',
  'looked',
  'wasnt',
  'lot',
  'talent',
  'jumping',
  'leagues',
  'miss',
  'something',
  'dennis',
  'cleary',
  'wondered',
  'thing',
  'first',
  'mentioned',
  'thought',
  'making',
  'mistake',
  'said',
  'examples',
  'years',
  'gave',
  'stats',
  'players',
  'leagues',
  'even',
  'one',
  'league',
  'expanded',
  'since',
  'stats',
  'never',
  'lie',
  'guess',
  'effect',
  'leagues',
  'expansion',
  'draft',
  'takes',
  'talent',
  'leagues',
  'equally',
  'making',
  'every',
  'team',
  'leagues',
  'dilute',
  'major',
  'league',
  'talent',
  'calling',
  'players',
  'normally',
  'would',
  'expansion',
  'make',
  'sense'],
 ['wharfie',
  'sho',
  'clutch',
  'question',
  'grinding',
  'noise',
  'organization',
  'unisql',
  'inc',
  'austin',
  'texas',
  'usa',
  'lines',
  'article',
  'james',
  'yuhn',
  'writes',
  'thats',
  'clutch',
  'youre',
  'hearing',
  'gearbox',
  'early',
  'shos',
  'lot',
  'referred',
  'gear',
  'rollover',
  'noise',
  'generally',
  'one',
  'first',
  'shos',
  'built',
  'doesnt',
  'make',
  'noise'],
 ['kreme',
  'distribution',
  'rec',
  'organization',
  'cornell',
  'university',
  'lines',
  'hi',
  'folks',
  'recently',
  'saw',
  'one',
  'post',
  'kreme',
  'bad',
  'idea',
  'one',
  'mans',
  'opinion',
  'one',
  'else',
  'experience',
  'stuff'],
 ['mike',
  'feldman',
  'ok',
  'set',
  'lbs',
  'top',
  'centris',
  'keywords',
  'centris',
  'nntp',
  'posting',
  'host',
  'charm',
  'urbana',
  'mcd',
  'mot',
  'com',
  'organization',
  'motorola',
  'computer',
  'group',
  'urbana',
  'design',
  'center',
  'lines',
  'article',
  'david',
  'berk',
  'writes',
  'recently',
  'purchased',
  'centris',
  'mirror',
  'technologies',
  'inch',
  'mono',
  'monitor',
  'im',
  'wondering',
  'ok',
  'set',
  'monitor',
  'top',
  'cpu',
  'monitor',
  'weighs',
  'lbs',
  'ive',
  'called',
  'apple',
  'person',
  'spoke',
  'sure',
  'going',
  'find',
  'call',
  'back',
  'couple',
  'days',
  'week',
  'ago',
  'anybody',
  'knows',
  'please',
  'respond',
  'via',
  'email',
  'dont',
  'always',
  'time',
  'read',
  'group',
  'thanks',
  'david',
  'berk',
  'yea',
  'thanks',
  'lots',
  'good',
  'information',
  'newsgroup',
  'prepared',
  'lots',
  'details',
  'even',
  'shipping',
  'time',
  'got',
  'cd',
  'weeks',
  'guess',
  'biggest',
  'disappointment',
  'lack',
  'detail',
  'written',
  'specs',
  'documentation',
  'case',
  'load',
  'spec',
  'example',
  'setup',
  'section',
  'says',
  'apple',
  'monitors',
  'go',
  'top',
  'big',
  'ones',
  'cant',
  'couldnt',
  'publish',
  'maximum',
  'load',
  'figure',
  'theres',
  'hope',
  'using',
  'partition',
  'button',
  'hard',
  'disk',
  'setup',
  'utility',
  'dare',
  'try',
  'see',
  'happens',
  'maybe',
  'divide',
  'wealth',
  'among',
  'family',
  'members',
  'bit',
  'securly',
  'getting',
  'information',
  'section',
  'manual',
  'suggested',
  'trying',
  'avenues',
  'calling',
  'apple',
  'didnt',
  'mention',
  'net',
  'mike',
  'feldman',
  'motorola',
  'computer',
  'group',
  'fax',
  'east',
  'university',
  'avenue',
  'pager',
  'il',
  'urbana',
  'il',
  'mcdphx',
  'uiucuxc',
  'udc',
  'feldman'],
 ['name',
  'warning',
  'please',
  'read',
  'reply',
  'organization',
  'trent',
  'university',
  'peterborough',
  'lines',
  'article',
  'kevinh',
  'writes',
  'article',
  'wes',
  'fujii',
  'writes',
  'brian',
  'larose',
  'wrote',
  'never',
  'saw',
  'guy',
  'police',
  'said',
  'thought',
  'motive',
  'hit',
  'car',
  'us',
  'stop',
  'check',
  'damage',
  'jump',
  'us',
  'take',
  'truck',
  'please',
  'aware',
  'folks',
  'good',
  'please',
  'dont',
  'stop',
  'sad',
  'sort',
  'thing',
  'rise',
  'across',
  'country',
  'south',
  'florida',
  'getting',
  'lot',
  'national',
  'tv',
  'coverage',
  'vacationers',
  'attacked',
  'killed',
  'schemes',
  'similar',
  'make',
  'worldwide',
  'coverage',
  'know',
  'numerous',
  'people',
  'planning',
  'holidays',
  'florida',
  'chosen',
  'another',
  'non',
  'us',
  'destination',
  'expect',
  'sort',
  'thing',
  'perhaps',
  'third',
  'world',
  'countries',
  'us',
  'response',
  'articles',
  'written',
  'would',
  'like',
  'say',
  'us',
  'problem',
  'southern',
  'ontario',
  'last',
  'summer',
  'several',
  'instances',
  'along',
  'people',
  'mainly',
  'truckers',
  'shot',
  'overpasses',
  'many',
  'sick',
  'people',
  'makes',
  'wonder',
  'worlds',
  'coming'],
 ['alan',
  'monday',
  'wwcs',
  'business',
  'mgt',
  'group',
  'solar',
  'sail',
  'data',
  'organization',
  'sun',
  'microsystems',
  'inc',
  'lines',
  'distribution',
  'world',
  'reply',
  'nntp',
  'posting',
  'host',
  'packmind',
  'ebay',
  'sun',
  'com',
  'hey',
  'happened',
  'solar',
  'sail',
  'race',
  'supposed',
  'columbus',
  'article',
  'frank',
  'snyder',
  'writes',
  'looking',
  'information',
  'concerning',
  'projects',
  'involving',
  'solar',
  'sails',
  'understand',
  'jpl',
  'extensive',
  'study',
  'back',
  'late',
  'trouble',
  'gathering',
  'information',
  'groups',
  'currently',
  'involved',
  'project'],
 ['certainty',
  'arrogance',
  'organization',
  'fnal',
  'ad',
  'net',
  'lines',
  'article',
  'dr',
  'nancys',
  'sweetie',
  'writes',
  'way',
  'loop',
  'oh',
  'contrer',
  'mon',
  'captitan',
  'way',
  'certainly',
  'human',
  'reason',
  'certainly',
  'human',
  'experience',
  'yet',
  'paraphrase',
  'sartre',
  'particular',
  'absurd',
  'unless',
  'infinite',
  'reference',
  'point',
  'gods',
  'revelation',
  'absolute',
  'thing',
  'logic',
  'comes',
  'fruition',
  'relativism',
  'core',
  'well',
  'founded',
  'belief',
  'lies',
  'belief',
  'unfounded',
  'ludwig',
  'wittgenstein',
  'ah',
  'clear',
  'ludwig',
  'desciple',
  'russell',
  'ludwigs',
  'fame',
  'often',
  'explained',
  'fact',
  'spawned',
  'one',
  'two',
  'significant',
  'movements',
  'contemporary',
  'philosophy',
  'revolve',
  'around',
  'tractatus',
  'logico',
  'philosphicus',
  'philosophical',
  'investigation',
  'many',
  'witts',
  'comments',
  'implicit',
  'conclusions',
  'suggest',
  'ways',
  'going',
  'beyond',
  'explicit',
  'critique',
  'language',
  'offers',
  'according',
  'implicit',
  'suggestions',
  'witts',
  'thought',
  'ordinary',
  'language',
  'invaluable',
  'resource',
  'offering',
  'necessary',
  'framework',
  'conduct',
  'daily',
  'life',
  'however',
  'though',
  'formal',
  'features',
  'remain',
  'content',
  'always',
  'capable',
  'transcended',
  'experience',
  'changes',
  'understanding',
  'deepened',
  'giving',
  'us',
  'clearer',
  'picture',
  'wish',
  'say',
  'witts',
  'account',
  'dynamic',
  'fluidity',
  'language',
  'reason',
  'critique',
  'language',
  'must',
  'move',
  'talking',
  'limits',
  'language',
  'talking',
  'boundaries',
  'boundary',
  'understood',
  'wall',
  'threshold',
  'vonwrightss',
  'comment',
  'witts',
  'sentences',
  'content',
  'often',
  'lies',
  'deep',
  'beneath',
  'surface',
  'language',
  'surface',
  'witt',
  'talks',
  'insuperable',
  'position',
  'ordinary',
  'language',
  'necessity',
  'bringing',
  'accept',
  'without',
  'question',
  'time',
  'faced',
  'witts',
  'creative',
  'uses',
  'language',
  'concern',
  'bringing',
  'changes',
  'traditional',
  'modes',
  'understanding',
  'philosophy',
  'perspicacious',
  'speech',
  'seeks',
  'effect',
  'unity',
  'rather',
  'assuming',
  'already',
  'functioning',
  'yes',
  'brilliant',
  'scientists',
  'unable',
  'offer',
  'foundation',
  'human',
  'speech',
  'long',
  'reject',
  'christianity',
  'tractatus',
  'well',
  'nigh',
  'perfect',
  'exhibition',
  'nature',
  'impasse',
  'scientific',
  'ideal',
  'exhaustive',
  'logical',
  'analysis',
  'reality',
  'man',
  'perfect',
  'language',
  'exist',
  'fallen',
  'man',
  'therefore',
  'must',
  'get',
  'buisness',
  'relating',
  'truth',
  'via',
  'ordinary',
  'language',
  'johns',
  'gospel',
  'dear',
  'christians',
  'simple',
  'conveyance',
  'revealation',
  'god',
  'yet',
  'full',
  'unlieing',
  'depth',
  'understanding',
  'viewed',
  'christ',
  'ot',
  'concept',
  'man',
  'thinketh',
  'john',
  'looked',
  'outward',
  'indicator',
  'inside',
  'consciousness',
  'christ',
  'must',
  'words',
  'vehicals',
  'truth',
  'truth',
  'scriptures',
  'plain',
  'expounding',
  'truth',
  'knowable',
  'absolutes',
  'knowable',
  'however',
  'knowable',
  'reveals',
  'individual',
  'shouldnt',
  'shy',
  'mysticism',
  'christianity',
  'paul',
  'rom',
  'says',
  'men',
  'world',
  'one',
  'spirit',
  'therefore',
  'know',
  'things',
  'spirit',
  'spirit',
  'truth',
  'one',
  'spirit',
  'capacity',
  'know',
  'truth',
  'third',
  'one',
  'spirit',
  'spirit',
  'know',
  'deep',
  'things',
  'god',
  'reveal',
  'us',
  'spirit',
  'deep',
  'things',
  'god',
  'absolute',
  'true',
  'thing',
  'true',
  'truth',
  'real',
  'experienced',
  'verifiable',
  'disagree',
  'dr',
  'nancys',
  'sweeties',
  'conclusion',
  'taken',
  'fruition',
  'leads',
  'relativism',
  'leads',
  'dispair',
  'would',
  'know',
  'words',
  'would',
  'answer',
  'understand',
  'would',
  'say',
  'unto',
  'job',
  'ff',
  'rex',
  'suggested',
  'easy',
  'reading',
  'epistimology',
  'silent',
  'francis',
  'schaeffer'],
 ['william',
  'december',
  'starr',
  'debating',
  'special',
  'hate',
  'crimes',
  'laws',
  'organization',
  'northeastern',
  'law',
  'class',
  'lines',
  'nntp',
  'posting',
  'host',
  'nw',
  'mit',
  'reply',
  'article',
  'said',
  'sort',
  'separate',
  'treatment',
  'law',
  'place',
  'equal',
  'society',
  'solution',
  'fact',
  'classes',
  'vulnerable',
  'attack',
  'discrimination',
  'always',
  'done',
  'response',
  'imbalances',
  'criminal',
  'activity',
  'citizen',
  'protection',
  'allocate',
  'enforcement_',
  'resources',
  'efficiently',
  'effectively',
  'deal',
  'problems',
  'rewrite',
  'wdstarr',
  'feel',
  'increased',
  'penalties',
  'killing',
  'policeman',
  'federal',
  'employee',
  'scalias',
  'stevenss',
  'example',
  'increased',
  'penalties',
  'threatening',
  'president',
  'im',
  'assuming',
  'like',
  'good',
  'people',
  'oppose',
  'marital',
  'exemption',
  'rape',
  'wont',
  'bring',
  'order',
  'questions',
  'oppose',
  'oppose',
  'oppose',
  'huh',
  'wha',
  'topic',
  'come',
  'whats',
  'got',
  'discussion',
  'hand',
  'discussing',
  'concept',
  'different',
  'criminal',
  'laws',
  'crimes',
  'different',
  'classes',
  'people',
  'yes',
  'consider',
  'laws',
  'allow',
  'mandate',
  'enhanced',
  'penalties',
  'following',
  'conviction',
  'based',
  'upon',
  'convicts',
  'attitudes',
  'towards',
  'class',
  'membership',
  'victim',
  'fit',
  'category',
  'category',
  'classes',
  'mind',
  'standard',
  'civil',
  'rights',
  'discussion',
  'classes',
  'based',
  'upon',
  'race',
  'gender',
  'ethnicity',
  'religion',
  'sexual',
  'orientation',
  'etc',
  'ask',
  'classes',
  'based',
  'upon',
  'ones',
  'rather',
  'ones',
  'personal',
  'characteristics',
  'caught',
  'guard',
  'think',
  'question',
  'scratch',
  'finally',
  'decided',
  'law',
  'recognize',
  'classes',
  'would',
  'formally',
  'officially',
  'declare',
  'people',
  'worth',
  'others',
  'would',
  'anathema',
  'underlying',
  'american',
  'concept',
  'equal',
  'treatment',
  'law',
  'last',
  'year',
  'federal',
  'crime',
  'bill',
  'consideration',
  'would',
  'expanded',
  'federal',
  'death',
  'penalty',
  'additional',
  'fifty',
  'plus',
  'crimes',
  'including',
  'murder',
  'various',
  'federal',
  'officers',
  'hitherto',
  'protected',
  'aura',
  'deterrence',
  'critics',
  'pointed',
  'absurdity',
  'laws',
  'made',
  'death',
  'penalty',
  'available',
  'murder',
  'federal',
  'postal',
  'inspector',
  'ther',
  'murder',
  'civilian',
  'teacher',
  'latter',
  'arguably',
  'provided',
  'much',
  'valueable',
  'service',
  'therefore',
  'would',
  'greater',
  'loss',
  'society',
  'emotionally',
  'compelling',
  'argument',
  'even',
  'proponents',
  'viewpoint',
  'appeared',
  'tacitly',
  'assume',
  'state',
  'judge',
  'lives',
  'valuable',
  'others',
  'basis',
  'contribution',
  'society',
  'view',
  'doctrine',
  'personally',
  'repugnant',
  'repugnant',
  'equal',
  'protection',
  'clause',
  'th',
  'amendment',
  'accordingly',
  'believe',
  'laws',
  'give',
  'profession',
  'based',
  'class',
  'people',
  'special',
  'protection',
  'via',
  'mechanism',
  'supplying',
  'stronger',
  'statutory',
  'deterrence',
  'crimes',
  'members',
  'class',
  'even',
  'police',
  'officers',
  'federal',
  'officers',
  'high',
  'ranking',
  'members',
  'executive',
  'branch',
  'federal',
  'government',
  'william',
  'december',
  'starr'],
 ['jim',
  'halat',
  'silly',
  'question',
  'tianity',
  'reply',
  'jim',
  'halat',
  'lines',
  'article',
  'mark',
  'mccullough',
  'writes',
  'sorry',
  'insult',
  'homestate',
  'coming',
  'wisconsin',
  'backwards',
  'never',
  'able',
  'understand',
  'people',
  'actually',
  'held',
  'bigoted',
  'backwards',
  'views',
  'came',
  'never',
  'wisconsin',
  'though',
  'neighbor',
  'minnesota',
  'child',
  'middle',
  'atlantic',
  'ny',
  'nj',
  'pa',
  'found',
  'states',
  'provences',
  'stood',
  'youngsters',
  'mind',
  'california',
  'texas',
  'florida',
  'name',
  'obvious',
  'three',
  'however',
  'minnesota',
  'wisconsin',
  'stuck',
  'solely',
  'basis',
  'politics',
  'always',
  'translated',
  'extremely',
  'liberal',
  'progressive',
  'states',
  'recent',
  'trip',
  'minnestoa',
  'last',
  'summer',
  'served',
  'support',
  'states',
  'reputation',
  'guess',
  'wisconsin',
  'probably',
  'least',
  'impression',
  'people',
  'minnesota',
  'left',
  'neighbors',
  'question',
  'head',
  'wisconsin',
  'though',
  'whether',
  'cause',
  'effect',
  'relationship',
  'cheese',
  'serial',
  'killers',
  'jim',
  'halat'],
 ['henry',
  'spencer',
  'japanese',
  'moon',
  'landing',
  'organization',
  'toronto',
  'zoology',
  'lines',
  'article',
  'daniel',
  'burstein',
  'writes',
  'short',
  'story',
  'newspaper',
  'days',
  'ago',
  'made',
  'sort',
  'mention',
  'japanese',
  'using',
  'sounded',
  'like',
  'gravity',
  'assist',
  'managed',
  'crash',
  'crash',
  'land',
  'package',
  'moon',
  'hiten',
  'engineering',
  'test',
  'mission',
  'spent',
  'highly',
  'eccentric',
  'earth',
  'orbit',
  'lunar',
  'flybys',
  'inserted',
  'lunar',
  'orbit',
  'using',
  'tricky',
  'gravity',
  'assist',
  'like',
  'maneuvering',
  'meant',
  'would',
  'crash',
  'moon',
  'eventually',
  'since',
  'thing',
  'stable',
  'lunar',
  'orbit',
  'far',
  'anyone',
  'knows',
  'believe',
  'recall',
  'hearing',
  'recently',
  'happen',
  'work',
  'one',
  'mans',
  'work',
  'henry',
  'spencer',
  'toronto',
  'zoology',
  'kipling',
  'utzoo',
  'henry'],
 ['markus',
  'strobl',
  'photo',
  'radar',
  'rec',
  'autos',
  'frequently',
  'nntp',
  'posting',
  'host',
  'st',
  'ericsson',
  'se',
  'reply',
  'organization',
  'ericsson',
  'telecom',
  'ab',
  'lines',
  'article',
  'bradford',
  'kellogg',
  'writes',
  'article',
  'richard',
  'welty',
  'writes',
  'ka',
  'band',
  'radar',
  'used',
  'radar',
  'detector',
  'able',
  'handle',
  'ka',
  'band',
  'recently',
  'made',
  'available',
  'fcc',
  'us',
  'called',
  'photo',
  'radar',
  'installations',
  'installations',
  'low',
  'powered',
  'beam',
  'aimed',
  'across',
  'road',
  'degree',
  'angle',
  'direction',
  'traffic',
  'picture',
  'taken',
  'vehicles',
  'radar',
  'unit',
  'determines',
  'violation',
  'speed',
  'limit',
  'tickets',
  'mailed',
  'owner',
  'vehicle',
  'low',
  'power',
  'degree',
  'angle',
  'many',
  'people',
  'believe',
  'radar',
  'detector',
  'cannot',
  'give',
  'reasonable',
  'warning',
  'ka',
  'band',
  'radar',
  'unit',
  'although',
  'manufacturers',
  'radar',
  'detectors',
  'added',
  'capability',
  'anyway',
  'number',
  'locales',
  'photo',
  'radar',
  'limited',
  'question',
  'legality',
  'units',
  'best',
  'advice',
  'learn',
  'photo',
  'radar',
  'units',
  'look',
  'like',
  'keep',
  'track',
  'used',
  'else',
  'dont',
  'speed',
  'photo',
  'radar',
  'mailed',
  'tickets',
  'make',
  'sense',
  'speeding',
  'moving',
  'violation',
  'committed',
  'operator',
  'owner',
  'owner',
  'may',
  'rental',
  'agency',
  'dealer',
  'private',
  'party',
  'government',
  'agency',
  'long',
  'owner',
  'reason',
  'expect',
  'operator',
  'driving',
  'illegally',
  'unsafely',
  'owner',
  'cannot',
  'held',
  'responsible',
  'operator',
  'car',
  'may',
  'even',
  'driven',
  'without',
  'owners',
  'knowledge',
  'consent',
  'cant',
  'believe',
  'mailed',
  'ticket',
  'driver',
  'identified',
  'would',
  'stand',
  'court',
  'obviously',
  'lazy',
  'cynical',
  'boneheaded',
  'fascist',
  'way',
  'extort',
  'revenue',
  'nothing',
  'public',
  'safety',
  'bk',
  'photo',
  'radar',
  'things',
  'sweden',
  'ago',
  'lot',
  'fuzz',
  'lot',
  'sabotage',
  'spray',
  'touch',
  'paint',
  'lot',
  'good',
  'eventually',
  'drop',
  'idea',
  'lot',
  'court',
  'cases',
  'owner',
  'car',
  'could',
  'prove',
  'didnt',
  'drive',
  'time',
  'speeding',
  'especially',
  'recall',
  'case',
  'eventually',
  'proved',
  'car',
  'thief',
  'stolen',
  'car',
  'made',
  'false',
  'plates',
  'ofcourse',
  'chose',
  'license',
  'number',
  'identical',
  'car',
  'photo',
  'seemed',
  'correct',
  'conclosion',
  'photo',
  'radar',
  'sucks',
  'every',
  'way',
  'look',
  'markus'],
 ['cetin',
  'kaya',
  'koc',
  'seventh',
  'century',
  'armenian',
  'math',
  'problems',
  'organization',
  'college',
  'engineering',
  'oregon',
  'state',
  'university',
  'lines',
  'nntp',
  'posting',
  'host',
  'rize',
  'ece',
  'orst',
  'problem',
  'father',
  'told',
  'following',
  'story',
  'famous',
  'wars',
  'armenians',
  'persians',
  'prince',
  'zaurak',
  'kamsarakan',
  'performed',
  'extraordinary',
  'heroic',
  'deeds',
  'three',
  'times',
  'single',
  'month',
  'attacked',
  'persian',
  'troops',
  'first',
  'time',
  'struck',
  'half',
  'persian',
  'army',
  'second',
  'time',
  'pursuing',
  'persians',
  'slaughtered',
  'one',
  'fourth',
  'soldiers',
  'third',
  'time',
  'destroyed',
  'one',
  'eleventh',
  'persian',
  'army',
  'persians',
  'still',
  'alive',
  'numbering',
  'two',
  'hundred',
  'eighty',
  'fled',
  'nakhichevan',
  'remainder',
  'find',
  'many',
  'persian',
  'soldiers',
  'massacre',
  'answer',
  'corollary',
  'armenians',
  'strike',
  'slaughter',
  'destroy',
  'massacre',
  'innocent',
  'asala',
  'network',
  'claims'],
 ['chris',
  'magnuson',
  'forsale',
  'radius',
  'precision',
  'color',
  'video',
  'card',
  'organization',
  'hp',
  'colorado',
  'springs',
  'division',
  'lines',
  'nntp',
  'posting',
  'host',
  'hpcsrc',
  'col',
  'hp',
  'com',
  'radius',
  'precision',
  'color',
  'video',
  'card',
  'mac',
  'fits',
  'nubus',
  'slot',
  'card',
  'mb',
  'vram',
  'means',
  'bit',
  'color',
  'possible',
  'card',
  'card',
  'supports',
  'monitor',
  'scan',
  'rate',
  'think',
  'used',
  'go',
  'higher',
  'switch',
  'resolutions',
  'depth',
  'fly',
  'software',
  'control',
  'panel',
  'accelerated',
  'version',
  'card',
  'means',
  'quickdraw',
  'calls',
  'executed',
  'cpu',
  'taken',
  'video',
  'card',
  'freeing',
  'mac',
  'processor',
  'tasks',
  'cheapest',
  'could',
  'find',
  'card',
  'called',
  'around',
  'last',
  'night',
  'macs',
  'place',
  'sell',
  'shipping',
  'year',
  'old',
  'never',
  'problem',
  'comes',
  'software',
  'original',
  'manuals',
  'hurry',
  'chris',
  'magnuson',
  'hewlett',
  'packard',
  'company'],
 ['david',
  'tate',
  'young',
  'catchers',
  'article',
  'blue',
  'organization',
  'department',
  'industrial',
  'engineering',
  'lines',
  'mark',
  'singer',
  'said',
  'article',
  'david',
  'tate',
  'writes',
  'mark',
  'singer',
  'said',
  'know',
  'players',
  'age',
  'make',
  'much',
  'impact',
  'bigs',
  'especially',
  'havent',
  'even',
  'played',
  'aaa',
  'ball',
  'yes',
  'irrelevant',
  'youre',
  'talking',
  'averages',
  'lots',
  'information',
  'player',
  'particular',
  'base',
  'decisions',
  'really',
  'much',
  'information',
  'really',
  'dont',
  'personally',
  'clay',
  'posted',
  'yes',
  'unfortunately',
  'shows',
  'lopez',
  'wasnt',
  'good',
  'example',
  'nieves',
  'would',
  'since',
  'last',
  'year',
  'numbers',
  'line',
  'previous',
  'years',
  'didnt',
  'access',
  'point',
  'remains',
  'though',
  'knowing',
  'guys',
  'minor',
  'league',
  'history',
  'good',
  'knowing',
  'major',
  'league',
  'history',
  'know',
  'read',
  'isnt',
  'lopez',
  'likely',
  'hit',
  'well',
  'hit',
  'well',
  'last',
  'year',
  'adjusting',
  'stats',
  'park',
  'league',
  'hit',
  'better',
  'absolute',
  'scale',
  'olson',
  'berryhill',
  'lot',
  'dont',
  'know',
  'tell',
  'percentage',
  'players',
  'reach',
  'exceed',
  'mles',
  'rookie',
  'season',
  'talking',
  'know',
  'mle',
  'projection',
  'equivalence',
  'well',
  'hit',
  'last',
  'year',
  'major',
  'league',
  'terms',
  'rating',
  'essence',
  'already',
  'reached',
  'would',
  'guess',
  'bob',
  'clay',
  'essentially',
  'half',
  'players',
  'surpass',
  'previous',
  'mles',
  'rookie',
  'seasons',
  'maybe',
  'half',
  'since',
  'players',
  'young',
  'improving',
  'purpose',
  'maybe',
  'offerman',
  'spent',
  'getting',
  'acclimated',
  'dodgers',
  'team',
  'paid',
  'big',
  'price',
  'season',
  'offerman',
  'may',
  'difference',
  'th',
  'th',
  'place',
  'last',
  'place',
  'perhaps',
  'reap',
  'benefits',
  'road',
  'really',
  'think',
  'would',
  'done',
  'competing',
  'pennant',
  'sure',
  'didnt',
  'anyone',
  'better',
  'suppose',
  'might',
  'gutted',
  'farm',
  'system',
  'acquire',
  'jay',
  'bell',
  'spike',
  'owen',
  'somebody',
  'really',
  'contention',
  'point',
  'ab',
  'significant',
  'sample',
  'rather',
  'hadnt',
  'done',
  'anything',
  'spring',
  'training',
  'cause',
  'even',
  'blockhead',
  'manager',
  'question',
  'whether',
  'minor',
  'league',
  'numbers',
  'real',
  'send',
  'gets',
  'warmed',
  'stat',
  'head',
  'im',
  'amazed',
  'put',
  'credence',
  'spring',
  'training',
  'youd',
  'read',
  'wrote',
  'youd',
  'less',
  'amazed',
  'nowhere',
  'claim',
  'put',
  'credence',
  'spring',
  'training',
  'quite',
  'contrary',
  'said',
  'lopez',
  'hadnt',
  'done',
  'anything',
  'even',
  'bozos',
  'put',
  'credence',
  'spring',
  'training',
  'could',
  'interpret',
  'failure',
  'think',
  'spring',
  'training',
  'numbers',
  'meaningless',
  'doesnt',
  'mean',
  'bobby',
  'cox',
  'case',
  'ruling',
  'one',
  'possible',
  'explanation',
  'sending',
  'lopez',
  'kid',
  'improve',
  'playing',
  'aaa',
  'like',
  'keith',
  'mitchell',
  'wait',
  'minute',
  'missed',
  'something',
  'keith',
  'mitchell',
  'well',
  'aa',
  'aaa',
  'majors',
  'season',
  'poorly',
  'year',
  'aaa',
  'david',
  'tate',
  'know',
  'closes',
  'posing',
  'opens',
  'something',
  'understands',
  'pocket',
  'glove',
  'deeper',
  'pete',
  'roses',
  'dy',
  'cummings',
  'nobody',
  'even',
  'tim',
  'raines',
  'soft',
  'hands'],
 ['robert',
  'smith',
  'conductive',
  'plastic',
  'happened',
  'organization',
  'litton',
  'systems',
  'toronto',
  'ont',
  'lines',
  'youre',
  'thinking',
  'reactive',
  'polymers',
  'theyre',
  'making',
  'esd',
  'safe',
  'contau',
  'iners',
  'far',
  'conductive',
  'goes',
  'anything',
  'resistance',
  'less',
  'fouth',
  'rth',
  'power',
  'ohms',
  'per',
  'cubic',
  'measure',
  'classed',
  'conductive',
  'per',
  'mil',
  'std',
  'esd',
  'protection',
  'us',
  'bob'],
 ['ken',
  'lee',
  'transparent',
  'widgets',
  'reply',
  'organization',
  'synoptics',
  'communications',
  'santa',
  'clara',
  'ca',
  'lines',
  'nntp',
  'posting',
  'host',
  'bugsbunny',
  'synoptics',
  'com',
  'article',
  'alexander',
  'cerna',
  'sv',
  'writes',
  'need',
  'write',
  'application',
  'annotation',
  'notes',
  'existing',
  'documents',
  'annotation',
  'could',
  'done',
  'several',
  'times',
  'different',
  'people',
  'idea',
  'something',
  'like',
  'several',
  'acetate',
  'transparencies',
  'stacked',
  'top',
  'user',
  'see',
  'ive',
  'seen',
  'something',
  'like',
  'done',
  'oclock',
  'client',
  'could',
  'someone',
  'please',
  'tell',
  'xt',
  'thank',
  'much',
  'oclock',
  'widget',
  'written',
  'using',
  'shape',
  'extension',
  'widgets',
  'current',
  'widgets',
  'support',
  'shape',
  'youll',
  'subclass',
  'add',
  'functionality',
  'ken',
  'lee'],
 ['win',
  'dos',
  'misc',
  'software',
  'michael',
  'leonard',
  'distribution',
  'world',
  'organization',
  'exchange',
  'bbs',
  'nodes',
  'tidewaters',
  'window',
  'world',
  'bis',
  'lines',
  'help',
  'make',
  'money',
  'new',
  'modem',
  'takes',
  'shipping',
  'included',
  'price',
  'original',
  'documentation',
  'disks',
  'include',
  'software',
  'unregistered',
  'others',
  'letter',
  'transfer',
  'ownership',
  'sell',
  'software',
  'seperately',
  'purchase',
  'must',
  'greater',
  'purchases',
  'get',
  'choice',
  'two',
  'software',
  'selections',
  'footnote',
  'windows',
  'version',
  'dos',
  'version',
  'registered',
  'letter',
  'transfer',
  'unregistered',
  'special',
  'offer',
  'ms',
  'windows',
  'ms',
  'windows',
  'resource',
  'kit',
  'bound',
  'ed',
  'wr',
  'norton',
  'desktop',
  'windows',
  'wr',
  'ms',
  'excel',
  'wr',
  'gateway',
  'version',
  'docs',
  'disks',
  'ms',
  'real',
  'thing',
  'shipped',
  'computer',
  'microcourier',
  'wu',
  'communucations',
  'software',
  'ms',
  'entertainment',
  'pack',
  'wr',
  'microproses',
  'gunship',
  'vga',
  'du',
  'links',
  'pro',
  'dr',
  'includes',
  'bountiful',
  'golf',
  'course',
  'wing',
  'commander',
  'ii',
  'vengeance',
  'kilrathi',
  'dr',
  'strike',
  'eagle',
  'ii',
  'dr',
  'risk',
  'ega',
  'du',
  'easyflow',
  'du',
  'brand',
  'new',
  'never',
  'used',
  'quicken',
  'dr',
  'franklin',
  'language',
  'master',
  'dr',
  'spell',
  'checker',
  'dictionary',
  'tsr',
  'pops',
  'dos',
  'app',
  'word',
  'direct',
  'link',
  'thesaurus',
  'ibm',
  'dos',
  'dr',
  'total',
  'discount',
  'cost',
  'call',
  'michael',
  'day',
  'est',
  'leave',
  'mail',
  'thanks',
  'vbreader',
  'bush',
  'presidency',
  'aborted',
  'recovery',
  'hopeful'],
 ['andrew',
  'betz',
  'randy',
  'weaver',
  'trial',
  'update',
  'day',
  'nntp',
  'posting',
  'host',
  'gozer',
  'organization',
  'sigsauer',
  'fan',
  'club',
  'lines',
  'note',
  'trial',
  'updates',
  'summarized',
  'reports',
  'statesman_',
  'local',
  'nbc',
  'affiliate',
  'television',
  'station',
  'ktvb',
  'channel',
  'randy',
  'weaver',
  'kevin',
  'harris',
  'trial',
  'update',
  'day',
  'friday',
  'april',
  'fourth',
  'day',
  'trial',
  'synopsis',
  'defense',
  'attorney',
  'gerry',
  'spence',
  'cross',
  'examined',
  'agent',
  'cooper',
  'repeated',
  'objections',
  'prosecutor',
  'ronald',
  'howen',
  'spence',
  'moved',
  'mistrial',
  'denied',
  'day',
  'marked',
  'caustic',
  'cross',
  'examination',
  'deputy',
  'marshal',
  'larry',
  'cooper',
  'defense',
  'attorney',
  'gerry',
  'spence',
  'although',
  'spence',
  'explicitly',
  'stated',
  'one',
  'angle',
  'stategy',
  'must',
  'involve',
  'destroying',
  'credibility',
  'agent',
  'cooper',
  'cooper',
  'governments',
  'eyewitness',
  'death',
  'agent',
  'degan',
  'spence',
  'attacked',
  'coopers',
  'credibility',
  'pointing',
  'discrepancies',
  'coopers',
  'statements',
  'last',
  'september',
  'made',
  'court',
  'cooper',
  'conceded',
  'things',
  'compressed',
  'seconds',
  'difficult',
  'remember',
  'went',
  'first',
  'cooper',
  'acknowledged',
  'carried',
  'mm',
  'colt',
  'commando',
  'submachine',
  'gun',
  'silenced',
  'barrel',
  'thought',
  'colt',
  'commando',
  'revolver',
  'cooper',
  'continued',
  'stating',
  'federal',
  'agents',
  'specific',
  'plans',
  'weapon',
  'started',
  'kill',
  'weavers',
  'dog',
  'spence',
  'asked',
  'seven',
  'cartridges',
  'could',
  'fired',
  'degans',
  'rifle',
  'degan',
  'apparently',
  'dead',
  'cooper',
  'could',
  'say',
  'sure',
  'degan',
  'return',
  'fire',
  'going',
  'spence',
  'continued',
  'asking',
  'many',
  'agents',
  'extent',
  'cooper',
  'discussed',
  'last',
  'augusts',
  'events',
  'cooper',
  'responded',
  'youre',
  'implying',
  'got',
  'story',
  'together',
  'youre',
  'wrong',
  'counselor',
  'spence',
  'continued',
  'advance',
  'defenses',
  'version',
  'events',
  'namely',
  'marshal',
  'started',
  'shooting',
  'killing',
  'weavers',
  'dog',
  'cooper',
  'disagreed',
  'assistant',
  'attorney',
  'ronald',
  'howen',
  'repeatedly',
  'objected',
  'spences',
  'virulent',
  'cross',
  'examination',
  'agent',
  'cooper',
  'arguing',
  'questions',
  'repetitive',
  'spence',
  'wasting',
  'time',
  'howen',
  'also',
  'complained',
  'spence',
  'improperly',
  'using',
  'cross',
  'examination',
  'advance',
  'defenses',
  'version',
  'events',
  'district',
  'judge',
  'edward',
  'lodge',
  'sustained',
  'many',
  'objections',
  'however',
  'lawyers',
  'persisted',
  'judge',
  'lodge',
  'jury',
  'leave',
  'room',
  'proceded',
  'admonish',
  'attorneys',
  'im',
  'going',
  'play',
  'games',
  'either',
  'counsel',
  'personality',
  'problem',
  'day',
  'start',
  'acting',
  'like',
  'professionals',
  'spence',
  'told',
  'judge',
  'evidence',
  'well',
  'see',
  'agent',
  'larry',
  'cooper',
  'testimony',
  'credible',
  'panicked',
  'cannot',
  'remember',
  'sequence',
  'events',
  'spence',
  'continued',
  'going',
  'find',
  'unlikely',
  'similarity',
  'almost',
  'come',
  'cookie',
  'cutter',
  'testimony',
  'mr',
  'cooper',
  'witnesses',
  'spence',
  'moved',
  'mistrial',
  'grounds',
  'howens',
  'repeated',
  'objections',
  'would',
  'prevent',
  'fair',
  'trial',
  'cant',
  'fair',
  'trial',
  'jury',
  'believes',
  'im',
  'sort',
  'charlatan',
  'jury',
  'believes',
  'im',
  'bending',
  'rules',
  'engaging',
  'delaying',
  'tactic',
  'im',
  'violating',
  'court',
  'orders',
  'judge',
  'lodge',
  'called',
  'notion',
  'repeated',
  'sustainings',
  'howens',
  'objections',
  'somehow',
  'prejudiced',
  'jury',
  'preposterous',
  'denied',
  'motion',
  'mistrial',
  'lodge',
  'tell',
  'howen',
  'restrict',
  'comments',
  'objecting',
  'trial',
  'resumed',
  'prosecution',
  'calling',
  'fbi',
  'special',
  'agent',
  'greg',
  'rampton',
  'prosecutions',
  'purpose',
  'simply',
  'introduce',
  'five',
  'weapons',
  'found',
  'cabin',
  'evidence',
  'however',
  'defense',
  'seized',
  'opportunity',
  'address',
  'coopers',
  'credibility',
  'defense',
  'attorney',
  'ellison',
  'matthews',
  'harris',
  'attorney',
  'questioned',
  'rampton',
  'dog',
  'rampton',
  'stated',
  'specific',
  'plans',
  'kill',
  'weavers',
  'dog',
  'without',
  'detected',
  'matthews',
  'rampton',
  'read',
  'septtember',
  'transcript',
  'rampton',
  'said',
  'cooper',
  'said',
  'purpose',
  'silenced',
  'weapon',
  'kill',
  'dog',
  'without',
  'detected',
  'dog',
  'chased',
  'rampton',
  'acknowledged',
  'believed',
  'cooper',
  'said',
  'could',
  'remember',
  'stated',
  'conduct',
  'primary',
  'interview',
  'deputy',
  'cooper',
  'conversations',
  'since',
  'interview',
  'conducted',
  'monday',
  'april',
  'begin',
  'fifth',
  'day',
  'trial',
  'scheduled',
  'continued',
  'cross',
  'examination',
  'fbi',
  'agent',
  'greg',
  'rampton'],
 ['demosthenis',
  'zeppos',
  'integra',
  'gsr',
  'article',
  'ns',
  'apr',
  'organization',
  'lehigh',
  'university',
  'lines',
  'article',
  'cochran',
  'writes',
  'id',
  'like',
  'add',
  'beretta',
  'gtz',
  'car',
  'kick',
  'gs',
  'butt',
  'anyday',
  'lot',
  'cheaper',
  'boot',
  'take',
  'one',
  'definate',
  'grain',
  'salt',
  'performance',
  'data',
  'shows',
  'poster',
  'proof',
  'friend',
  'blew',
  'one',
  'away',
  'last',
  'week',
  'want',
  'proof',
  'data',
  'acceleration',
  'handling',
  'motor',
  'trend',
  'apr',
  'integra',
  'gs',
  'beretta',
  'gtz',
  'mile',
  'acc',
  'gs',
  'slalom',
  'wrong',
  'dont',
  'look',
  'motor',
  'trends',
  'slalom',
  'times',
  'right',
  'along',
  'integra',
  'car',
  'small',
  'inch',
  'tires',
  'weather',
  'xgtv',
  'mention',
  'integra',
  'rides',
  'alot',
  'better',
  'beretta',
  'acceleartion',
  'times',
  'also',
  'vary',
  'magazine',
  'magazine',
  'road',
  'track',
  'car',
  'driver',
  'gs',
  'road',
  'track',
  'also',
  'quarter',
  'mile',
  'times',
  'vary',
  'cant',
  'tell',
  'exactly',
  'numbers',
  'furthermore',
  'integra',
  'definately',
  'outrun',
  'beretta',
  'high',
  'end',
  'car',
  'driver',
  'road',
  'track',
  'gs',
  'mph',
  'gets',
  'fast',
  'beretta',
  'handle',
  'integra',
  'certainly',
  'keep',
  'acceleration',
  'beretta',
  'probably',
  'higher',
  'top',
  'speed',
  'due',
  'horsepower',
  'advantage',
  'hp',
  'torque',
  'integra',
  'vs',
  'beretta',
  'always',
  'believe',
  'exact',
  'numbers',
  'dont',
  'drive',
  'gs',
  'see',
  'self',
  'gs',
  'low',
  'torqye',
  'high',
  'gearing',
  'rpm',
  'make',
  'difference',
  'still',
  'wouldnt',
  'call',
  'torque',
  'moster',
  'though',
  'biggest',
  'advantage',
  'would',
  'price',
  'integra',
  'costs',
  'tested',
  'motor',
  'trend',
  'gtz',
  'costs',
  'tested',
  'gtz',
  'also',
  'standard',
  'nicities',
  'airbag',
  'antilock',
  'brakes',
  'airbag',
  'available',
  'integra',
  'lower',
  'models',
  'abs',
  'considering',
  'save',
  'almost',
  'dollars',
  'beretta',
  'quad',
  'reliable',
  'engine',
  'doesnt',
  'make',
  'sense',
  'get',
  'integra',
  'performance',
  'coupe',
  'people',
  'trying',
  'make',
  'quad',
  'reliable',
  'yeah',
  'whats',
  'definition',
  'reliable',
  'thats',
  'reliable',
  'safe',
  'say',
  'integra',
  'engines',
  'general',
  'near',
  'perfect',
  'mention',
  'hell',
  'alot',
  'smoother',
  'quieter',
  'balance',
  'shafts',
  'acura',
  'engine',
  'wins',
  'reliablity',
  'contest',
  'hands',
  'rev',
  'car',
  'day',
  'everyday',
  'youll',
  'never',
  'blow',
  'hose',
  'crack',
  'block',
  'anything',
  'else',
  'speak',
  'expierence',
  'im',
  'saying',
  'quad',
  'bad',
  'engine',
  'dont',
  'highlight',
  'reliability',
  'comparing',
  'acura',
  'engine',
  'integra',
  'costs',
  'alot',
  'better',
  'investment',
  'since',
  'hold',
  'value',
  'considerably',
  'much',
  'better',
  'nice',
  'job',
  'sporty',
  'car',
  'practical',
  'time',
  'note',
  'isnt',
  'flame',
  'gtz',
  'gm',
  'quad',
  'products',
  'berreta',
  'nice',
  'car',
  'puts',
  'respectable',
  'performance',
  'reasonable',
  'price',
  'mention',
  'airbag',
  'start',
  'quoting',
  'figures',
  'one',
  'source',
  'isnt',
  'reliable',
  'read',
  'sources',
  'drive',
  'cars',
  'havent',
  'driven',
  'gtz',
  'driven',
  'gts',
  'grand',
  'ams',
  'quad',
  'engines',
  'similair'],
 ['peter',
  'goudswaard',
  'diamond',
  'ss',
  'organization',
  'simon',
  'fraser',
  'university',
  'burnaby',
  'canada',
  'lines',
  'dave',
  'laudicina',
  'writes',
  'anyone',
  'experienced',
  'faint',
  'shadow',
  'resolutions',
  'using',
  'card',
  'windows',
  'replaced',
  'card',
  'waiting',
  'latest',
  'drivers',
  'also',
  'experienced',
  'general',
  'protection',
  'fault',
  'errors',
  'wspdpsf',
  'drv',
  'winword',
  'tools',
  'option',
  'menu',
  'winfax',
  'setup',
  'ati',
  'ultra',
  'getting',
  'genral',
  'protection',
  'fault',
  'errors',
  'spss',
  'application',
  'card',
  'manufactures',
  'must',
  'terrible',
  'quality',
  'control',
  'let',
  'products',
  'market',
  'many',
  'bugs',
  'hassle',
  'running',
  'gateway',
  'dx',
  'thx',
  'dave',
  'might',
  'problem',
  'video',
  'monitor',
  'instead',
  'many',
  'monitors',
  'age',
  'develop',
  'shadows',
  'white',
  'bright',
  'colors',
  'peter',
  'goudswaard',
  'preferred',
  'theres',
  'gift',
  'like',
  'present',
  'goudswaards',
  'observation'],
 ['eric',
  'raible',
  'need',
  'advice',
  'riding',
  'someone',
  'pillion',
  'reply',
  'message',
  'apr',
  'gmt',
  'organization',
  'applied',
  'research',
  'office',
  'nasa',
  'ames',
  'research',
  'center',
  'reply',
  'distribution',
  'na',
  'lines',
  'article',
  'bob',
  'wert',
  'writes',
  'need',
  'advice',
  'someone',
  'ride',
  'pillion',
  'ninja',
  'first',
  'time',
  'ive',
  'taken',
  'anyone',
  'extended',
  'ride',
  'read',
  'farther',
  'around',
  'block',
  'well',
  'riding',
  'twisty',
  'fairly',
  'bumpy',
  'roads',
  'mines',
  'road',
  'mt',
  'hamilton',
  'loop',
  'sf',
  'bay',
  'areans',
  'id',
  'say',
  'bad',
  'idea',
  'start',
  'something',
  'much',
  'mellower',
  'neither',
  'one',
  'get',
  'head',
  'particular',
  'road',
  'requires',
  'full',
  'concentration',
  'sort',
  'thing',
  'want',
  'take',
  'passenger',
  'first',
  'time',
  'decide',
  'like',
  'riding',
  'together',
  'want',
  'something',
  'longer',
  'challenging',
  'go',
  'hard',
  'core',
  'road',
  'like',
  'mines',
  'mt',
  'hamilton',
  'case',
  'moral',
  'responsibility',
  'make',
  'sure',
  'proper',
  'gear',
  'fits',
  'especially',
  'youre',
  'going',
  'sport',
  'riding',
  'eric'],
 ['gordon',
  'banks',
  'help',
  'kidney',
  'stones',
  'reply',
  'gordon',
  'banks',
  'organization',
  'univ',
  'pittsburgh',
  'computer',
  'science',
  'lines',
  'article',
  'writes',
  'girlfriend',
  'pain',
  'kidney',
  'stones',
  'says',
  'medical',
  'insurance',
  'cannot',
  'get',
  'removed',
  'question',
  'way',
  'treat',
  'least',
  'mitigate',
  'effects',
  'help',
  'deeply',
  'appreciated',
  'advice',
  'referral',
  'literature',
  'morphine',
  'demerol',
  'effective',
  'way',
  'stopping',
  'pain',
  'severe',
  'obviously',
  'shell',
  'need',
  'prescription',
  'get',
  'drugs',
  'cant',
  'go',
  'county',
  'hospital',
  'something',
  'gordon',
  'banks',
  'jxp',
  'skepticism',
  'chastity',
  'intellect',
  'shameful',
  'surrender',
  'soon'],
 ['pete',
  'yadlowsky',
  'whos',
  'next',
  'mormons',
  'jews',
  'organization',
  'university',
  'virginia',
  'lines',
  'john',
  'berryhill',
  'ph',
  'writes',
  'dont',
  'know',
  'whos',
  'next',
  'hope',
  'people',
  'pick',
  'noses',
  'driving',
  'umm',
  'please',
  'dont',
  'lump',
  'us',
  'together',
  'blatant',
  'fundamentalist',
  'pickers',
  'give',
  'rest',
  'us',
  'bad',
  'name',
  'us',
  'try',
  'hard',
  'discreet',
  'stay',
  'alert',
  'peter',
  'yadlowsky',
  'wake',
  'sky',
  'light',
  'academic',
  'computing',
  'center',
  'let',
  'us',
  'net',
  'university',
  'virginia',
  'companion',
  'keyboard',
  'basho'],
 ['help',
  'need',
  'graphics',
  'code',
  'package',
  'dos',
  'organization',
  'texas',
  'university',
  'lines',
  'nntp',
  'posting',
  'host',
  'tamvm',
  'tamu',
  'help',
  'need',
  'code',
  'package',
  'whatever',
  'take',
  'data',
  'turn',
  'wireframe',
  'surface',
  'hidden',
  'lines',
  'removed',
  'im',
  'using',
  'dos',
  'machine',
  'code',
  'ansi',
  'ansi',
  'fortran',
  'basic',
  'data',
  'im',
  'using',
  'forms',
  'rectangular',
  'grid',
  'please',
  'post',
  'replies',
  'net',
  'others',
  'may',
  'benefit',
  'imho',
  'general',
  'interest',
  'question',
  'thank'],
 ['ted',
  'frank',
  'sandberg',
  'runs',
  'rbis',
  'notes',
  'jays',
  'vs',
  'indians',
  'series',
  'reply',
  'organization',
  'university',
  'chicago',
  'distribution',
  'na',
  'lines',
  'article',
  'john',
  'bratt',
  'writes',
  'rbis',
  'runs',
  'scored',
  'two',
  'important',
  'offensive',
  'statistics',
  'talk',
  'obp',
  'slg',
  'want',
  'fact',
  'remains',
  'team',
  'scores',
  'runs',
  'wins',
  'game',
  'flame',
  'away',
  'rbis',
  'team',
  'rbis',
  'doesnt',
  'necessarily',
  'win',
  'game',
  'yes',
  'runs',
  'important',
  'statistice',
  'team',
  'every',
  'newspaper',
  'rank',
  'team',
  'offense',
  'batting',
  'average',
  'individual',
  'player',
  'runs',
  'rbis',
  'context',
  'dependent',
  'tell',
  'us',
  'little',
  'player',
  'teammates',
  'position',
  'batting',
  'order',
  'ted',
  'frank',
  'im',
  'sorry',
  'card',
  'says',
  'moops',
  'law',
  'school',
  'standard',
  'disclaimers'],
 ['chris',
  'herringshaw',
  'newsgroup',
  'split',
  'organization',
  'university',
  'michigan',
  'engineering',
  'ann',
  'arbor',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'po',
  'engin',
  'umich',
  'concerning',
  'proposed',
  'newsgroup',
  'split',
  'personally',
  'favor',
  'learn',
  'awful',
  'lot',
  'aspects',
  'graphics',
  'reading',
  'group',
  'code',
  'hardware',
  'algorithms',
  'think',
  'making',
  'different',
  'groups',
  'wate',
  'result',
  'posts',
  'week',
  'per',
  'group',
  'kind',
  'like',
  'convenience',
  'one',
  'big',
  'forum',
  'discussing',
  'aspects',
  'graphics',
  'anyone',
  'else',
  'feel',
  'way',
  'curious',
  'daemon'],
 ['donald',
  'yee',
  'mb',
  'colors',
  'orchid',
  'pipe',
  'dream',
  'organization',
  'massachusetts',
  'institute',
  'technology',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'pesto',
  'mit',
  'hi',
  'orchid',
  'fahrenheit',
  'vlb',
  'mb',
  'dram',
  'based',
  'card',
  'problem',
  'installing',
  'second',
  'meg',
  'dram',
  'video',
  'thanks',
  'orchid',
  'got',
  'fix',
  'tech',
  'support',
  'jumper',
  'settings',
  'given',
  'ordinary',
  'manual',
  'assume',
  'would',
  'come',
  'memory',
  'ordered',
  'guess',
  'glad',
  'didnt',
  'say',
  'buy',
  'memory',
  'us',
  'something',
  'like',
  'one',
  'thing',
  'puzzled',
  'color',
  'mode',
  'thing',
  'either',
  'full',
  'screen',
  'enlarged',
  'desktop',
  'mode',
  'ati',
  'ultra',
  'plus',
  'handle',
  'given',
  'mb',
  'memory',
  'mb',
  'buys',
  'fahrenheit',
  'one',
  'mode',
  'geez',
  'known',
  'wouldnt',
  'bothered',
  'asked',
  'got',
  'point',
  'well',
  'taken',
  'orchids',
  'software',
  'developers',
  'busy',
  'projects',
  'get',
  'point',
  'finally',
  'drivers',
  'handle',
  'high',
  'res',
  'hicolor',
  'modes',
  'id',
  'love',
  'get',
  'another',
  'card',
  'perhaps',
  'wait',
  'next',
  'generation',
  'cards',
  'comes',
  'since',
  'card',
  'came',
  'bundled',
  'system',
  'easy',
  'exchange',
  'things',
  'unless',
  'theyre',
  'broken',
  'want',
  'modes',
  'steer',
  'away',
  'orchids',
  'cards',
  'ie',
  'vlb',
  'va',
  'vlb',
  'least',
  'developers',
  'less',
  'busy',
  'magazines',
  'believed',
  'ive',
  'seen',
  'one',
  'product',
  'thus',
  'far',
  'handle',
  'color',
  'genoa',
  'although',
  'evenn',
  'might',
  'misprint',
  'please',
  'generic',
  'semi',
  'generic',
  'drivers',
  'let',
  'know',
  'get',
  'ok',
  'coulda',
  'gotten',
  'ati',
  'vga',
  'wonder',
  'xl',
  'thanks'],
 ['organization',
  'university',
  'notre',
  'dame',
  'office',
  'univ',
  'computing',
  'bosox',
  'win',
  'team',
  'record',
  'lines',
  'article',
  'anthony',
  'michael',
  'jivoin',
  'says',
  'hawk',
  'red',
  'sox',
  'definitely',
  'chance',
  'east',
  'year',
  'brings',
  'class',
  'work',
  'ethic',
  'leadership',
  'park',
  'day',
  'bad',
  'doesnt',
  'bring',
  'ability',
  'hit',
  'pitch',
  'field',
  'run',
  'bob',
  'vesterman'],
 ['robert',
  'andrew',
  'ryan',
  'monthly',
  'question',
  'xcopyarea',
  'expose',
  'events',
  'organization',
  'school',
  'computer',
  'science',
  'carnegie',
  'mellon',
  'pittsburgh',
  'pa',
  'lines',
  'nntp',
  'posting',
  'host',
  'po',
  'andrew',
  'cmu',
  'reply',
  'excerpts',
  'netnews',
  'comp',
  'windows',
  'apr',
  'monthly',
  'question',
  'xcop',
  'buzz',
  'button',
  'widget',
  'pressed',
  'cause',
  'new',
  'item',
  'drawn',
  'window',
  'action',
  'clearly',
  'call',
  'xcopyarea',
  'equiv',
  'directly',
  'instead',
  'register',
  'existence',
  'new',
  'item',
  'memory',
  'structure',
  'let',
  'expose',
  'event',
  'handler',
  'handles',
  'regular',
  'expose',
  'events',
  'window',
  'manager',
  'driven',
  'exposures',
  'take',
  'care',
  'rendering',
  'new',
  'image',
  'hmmm',
  'clearly',
  'depends',
  'programming',
  'model',
  'forbidden',
  'draw',
  'outside',
  'context',
  'expose',
  'event',
  'certainly',
  'internal',
  'data',
  'structures',
  'maintained',
  'visual',
  'appearance',
  'would',
  'maintained',
  'properly',
  'whenever',
  'expose',
  'event',
  'happens',
  'generated',
  'doesnt',
  'preclude',
  'drawing',
  'immediately',
  'updating',
  'datastructures',
  'though',
  'rob'],
 ['mike',
  'littau',
  'final',
  'public',
  'dragon',
  'magazine',
  'update',
  'last',
  'chance',
  'public',
  'bids',
  'keywords',
  'dragon',
  'magazine',
  'auction',
  'bid',
  'article',
  'leela',
  'qs',
  'distribution',
  'usa',
  'organization',
  'cs',
  'dept',
  'oregon',
  'state',
  'university',
  'corvallis',
  'oregon',
  'lines',
  'nntp',
  'posting',
  'host',
  'atlantis',
  'csos',
  'orst',
  'final',
  'public',
  'update',
  'dragon',
  'magazine',
  'auction',
  'new',
  'bids',
  'current',
  'bids',
  'stand',
  'like',
  'thats',
  'gonna',
  'happen',
  'updates',
  'mail',
  'entire',
  'auction',
  'end',
  'soon',
  'bids',
  'stop',
  'coming',
  'want',
  'get',
  'sure',
  'bid',
  'bids',
  'must',
  'made',
  'least',
  'cent',
  'increments',
  'buyer',
  'pay',
  'shipping',
  'unless',
  'particular',
  'fancy',
  'us',
  'mail',
  'th',
  'class',
  'special',
  'lots',
  'padding',
  'dragons',
  'bagged',
  'condition',
  'vary',
  'quite',
  'bit',
  'ive',
  'come',
  'condition',
  'system',
  'dragons',
  'may',
  'missing',
  'items',
  'like',
  'inserts',
  'questions',
  'feel',
  'free',
  'ask',
  'condition',
  'ratings',
  'usually',
  'evaluation',
  'cover',
  'material',
  'inside',
  'great',
  'shape',
  'excellent',
  'ie',
  'find',
  'store',
  'good',
  'still',
  'great',
  'condition',
  'tell',
  'boughten',
  'good',
  'line',
  'fair',
  'fair',
  'indicates',
  'lots',
  'still',
  'decent',
  'poor',
  'indicates',
  'material',
  'inside',
  'may',
  'damaged',
  'usually',
  'scissors',
  'condition',
  'indicates',
  'something',
  'magazine',
  'missing',
  'usually',
  'insert',
  'ill',
  'post',
  'another',
  'public',
  'update',
  'sometime',
  'weekend',
  'final',
  'public',
  'posting',
  'auction',
  'mail',
  'bidding',
  'stops',
  'questions',
  'ask',
  'away',
  'arrow',
  'fair',
  'top',
  'secret',
  'module',
  'missing',
  'bard',
  'tunes',
  'real',
  'maps',
  'tn',
  'de',
  'good',
  'forest',
  'doom',
  'module',
  'detached',
  'included',
  'inner',
  'planes',
  'ykchev',
  'good',
  'combat',
  'computer',
  'missing',
  'dragons',
  'tn',
  'de',
  'good',
  'vg',
  'monsters',
  'aquatic',
  'ad',
  'module',
  'detached',
  'included',
  'language',
  'lesson',
  'geoffrey',
  'good',
  'vg',
  'top',
  'secret',
  'module',
  'detached',
  'included',
  'magic',
  'resistance',
  'mayla',
  'fair',
  'high',
  'level',
  'ad',
  'module',
  'detached',
  'included',
  'poison',
  'material',
  'spell',
  'components',
  'uccxkvb',
  'fair',
  'baton',
  'races',
  'game',
  'insert',
  'missing',
  'spell',
  'research',
  'tn',
  'de',
  'good',
  'vg',
  'babba',
  'yaggas',
  'hut',
  'module',
  'detached',
  'included',
  'unarmed',
  'combat',
  'geoffrey',
  'fair',
  'cover',
  'missing',
  'twofold',
  'talisman',
  'module',
  'squidly',
  'good',
  'twofold',
  'talisman',
  'module',
  'clerics',
  'squidly',
  'good',
  'top',
  'secret',
  'module',
  'wildernes',
  'geoffrey',
  'good',
  'elefant',
  'hunt',
  'insert',
  'missing',
  'falling',
  'damage',
  'marvel',
  'phile',
  'geoffrey',
  'good',
  'creature',
  'catalog',
  'missing',
  'shields',
  'sci',
  'fi',
  'tn',
  'de',
  'good',
  'ranger',
  'changes',
  'creature',
  'catalog',
  'ii',
  'detached',
  'included',
  'geoffrey',
  'fair',
  'cover',
  'missing',
  'forgotten',
  'realms',
  'module',
  'detached',
  'included',
  'ykcheu',
  'fair',
  'th',
  'anniversary',
  'dragons',
  'mutant',
  'manual',
  'uccxkvb',
  'poor',
  'cover',
  'missing',
  'treasure',
  'trove',
  'ii',
  'pictures',
  'cut',
  'thedm',
  'good',
  'poster',
  'missing',
  'city',
  'beyond',
  'gate',
  'module',
  'detached',
  'included',
  'raised',
  'dragon',
  'texture',
  'cover',
  'geoffrey',
  'fair',
  'cover',
  'missing',
  'creature',
  'catalog',
  'iii',
  'detached',
  'included',
  'geoffrey',
  'fair',
  'cover',
  'missing',
  'valley',
  'earth',
  'mother',
  'middle',
  'level',
  'module',
  'detached',
  'included',
  'geoffrey',
  'fair',
  'cover',
  'loosly',
  'attached',
  'unearth',
  'arcana',
  'update',
  'missing',
  'future',
  'ad',
  'centaur',
  'papers',
  'geoffrey',
  'fair',
  'unearth',
  'arcana',
  'update',
  'missing',
  'geoffrey',
  'fair',
  'vf',
  'marvel',
  'module',
  'thieves',
  'cover',
  'detached',
  'included',
  'geoffrey',
  'fair',
  'ad',
  'module',
  'invisibility',
  'cover',
  'back',
  'cover',
  'detached',
  'included',
  'uccxkvb',
  'fair',
  'cover',
  'variations',
  'paladins',
  'skills',
  'rangers',
  'ykcheu',
  'good',
  'vg',
  'variations',
  'paladins',
  'skills',
  'rangers',
  'arrow',
  'fair',
  'cover',
  'missing',
  'dragons',
  'glory',
  'supplement',
  'questionaire',
  'geoffrey',
  'good',
  'mutant',
  'manual',
  'ii',
  'environmental',
  'effects',
  'cover',
  'taped',
  'reinforced',
  'thedm',
  'good',
  'mutant',
  'manual',
  'ii',
  'environmental',
  'effects',
  'ykcheu',
  'good',
  'customizing',
  'classes',
  'agent',
  'poster',
  'geoffrey',
  'fair',
  'customizing',
  'classes',
  'agent',
  'poster',
  'missing',
  'geoffrey',
  'good',
  'house',
  'frozen',
  'lands',
  'module',
  'th',
  'anniv',
  'squidly',
  'good',
  'house',
  'frozen',
  'lands',
  'module',
  'th',
  'anniv',
  'geoffrey',
  'good',
  'murder',
  'mystery',
  'ad',
  'module',
  'ykcheu',
  'good',
  'ultimate',
  'article',
  'index',
  'mesozoic',
  'monsters',
  'mayla',
  'fair',
  'elven',
  'cavalier',
  'remorhaz',
  'witch',
  'npc',
  'class',
  'ykcheu',
  'good',
  'theives',
  'harpies',
  'snakes',
  'squidly',
  'good',
  'vg',
  'ship',
  'cardboard',
  'insert',
  'wild',
  'animals',
  'dr',
  'uccxkvb',
  'good',
  'vg',
  'dice',
  'odds',
  'creative',
  'campaigns',
  'sage',
  'advice',
  'bazaar',
  'geoffrey',
  'good',
  'tournaments',
  'competitions',
  'nibars',
  'keep',
  'game',
  'uccxkvb',
  'vg',
  'ex',
  'april',
  'fools',
  'issue',
  'uccxkvb',
  'excellent',
  'oriental',
  'adventures',
  'cardboard',
  'castle',
  'insert',
  'geoffrey',
  'excellent',
  'th',
  'aniversary',
  'african',
  'beasts',
  'druids',
  'uccxkvb',
  'good',
  'magic',
  'wizardry',
  'thedm',
  'good',
  'magic',
  'wizardry',
  'arrow',
  'excellent',
  'aerial',
  'adventures',
  'nd',
  'edition',
  'aire',
  'uccxkvb',
  'excellent',
  'aerial',
  'adventures',
  'nd',
  'edition',
  'aire',
  'geoffrey',
  'good',
  'clay',
  'rama',
  'chivalry',
  'quasi',
  'elementals',
  'geoffrey',
  'vg',
  'ex',
  'clay',
  'rama',
  'chivalry',
  'quasi',
  'elementals',
  'uccxkvb',
  'vg',
  'ex',
  'undead',
  'uccxkvb',
  'good',
  'fighters',
  'fvpmantel',
  'good',
  'kings',
  'table',
  'insert',
  'game',
  'fvpmantel',
  'excellent',
  'demi',
  'humans',
  'uccxkvb',
  'vg',
  'ex',
  'arcane',
  'arts',
  'tfpayn',
  'excellent',
  'deepearth',
  'arrow',
  'vg',
  'ex',
  'deepearth',
  'uccxkvb',
  'good',
  'orcwars',
  'board',
  'game',
  'missing',
  'arrow',
  'good',
  'berserkers',
  'spies',
  'roman',
  'gods',
  'marvel',
  'index',
  'geoffrey',
  'good',
  'berserkers',
  'spies',
  'roman',
  'gods',
  'marvel',
  'index',
  'fvpmantel',
  'vg',
  'ex',
  'anniversary',
  'dragons',
  'tbh',
  'good',
  'archers',
  'space',
  'sage',
  'advice',
  'uccxkvb',
  'good',
  'archers',
  'space',
  'sage',
  'advice',
  'tbh',
  'good',
  'cities',
  'urban',
  'adventures',
  'tbh',
  'excellent',
  'wilderness',
  'arrow',
  'good',
  'horror',
  'haloween',
  'uccxkvb',
  'good',
  'pages',
  'mages',
  'uccxkvb',
  'excellent',
  'clerics',
  'healers',
  'tbh',
  'good',
  'humanoids',
  'tbh',
  'good',
  'ad',
  'nd',
  'edition',
  'preview',
  'uccxkvb',
  'good',
  'dms',
  'issue',
  'uccxkvb',
  'good',
  'poster',
  'missing',
  'castles',
  'thedm',
  'good',
  'poster',
  'missing',
  'anninversary',
  'dragons',
  'tbh',
  'excellent',
  'magus',
  'board',
  'game',
  'magic',
  'tbh',
  'excellent',
  'fighting',
  'deck',
  'many',
  'things',
  'insert',
  'tn',
  'de',
  'excellent',
  'particular',
  'feature',
  'tn',
  'de',
  'excellent',
  'horror',
  'halloween',
  'issue',
  'tn',
  'de',
  'excellent',
  'oriental',
  'adventures',
  'eastern',
  'tn',
  'de',
  'good',
  'underdark',
  'poster',
  'missing',
  'inside',
  'slight',
  'crumple',
  'cover',
  'noticable',
  'inspection',
  'tn',
  'de',
  'good',
  'gods',
  'tn',
  'de',
  'good',
  'vg',
  'poster',
  'dragonlance',
  'story',
  'war',
  'tn',
  'de',
  'excellent',
  'faeries',
  'dungeon',
  'module',
  'tn',
  'de',
  'good',
  'buck',
  'rogers',
  'thedm',
  'good',
  'th',
  'anniversary',
  'dragons',
  'uccxkvb',
  'excellent',
  'spelljammer',
  'poster',
  'missing',
  'kohlmaas',
  'good',
  'vg',
  'urban',
  'adventures',
  'ad',
  'trading',
  'card',
  'insert',
  'missing',
  'uccxkvb',
  'good',
  'dm',
  'issue',
  'tn',
  'de',
  'good',
  'haloween',
  'poster',
  'missing',
  'thedm',
  'excellent',
  'monsterous',
  'compendum',
  'insert',
  'magic',
  'tn',
  'de',
  'good',
  'oriental',
  'adventures',
  'tn',
  'de',
  'vg',
  'ex',
  'sea',
  'undersea',
  'tn',
  'de',
  'excellent',
  'sci',
  'fi',
  'games',
  'dino',
  'wars',
  'insert',
  'missing',
  'tn',
  'de',
  'excellent',
  'nature',
  'wilderness',
  'uccxkvb',
  'good',
  'slight',
  'crease',
  'back',
  'cover',
  'misc',
  'items',
  'featured',
  'thedm',
  'good',
  'slight',
  'crease',
  'cover',
  'dragon',
  'kings',
  'game',
  'insert',
  'dragons',
  'th',
  'anniversary',
  'issue',
  'uccxkvb',
  'excellent',
  'missing',
  'poster',
  'trading',
  'cards',
  'argh',
  'cfrye',
  'excellent',
  'underdark',
  'hachiman',
  'excellent',
  'dark',
  'sun',
  'intravai',
  'excellent',
  'horror',
  'intravai',
  'excellent',
  'world',
  'building',
  'campaign',
  'help',
  'tn',
  'de',
  'excellent',
  'elves',
  'giant',
  'poster',
  'inside',
  'tn',
  'de',
  'good',
  'calender',
  'poster',
  'dm',
  'help',
  'gunpowder',
  'intravai',
  'excellent',
  'fighters',
  'fighter',
  'class',
  'tn',
  'de',
  'excellent',
  'gencon',
  'form',
  'magic',
  'items',
  'featured',
  'tn',
  'de',
  'excellent',
  'calendar',
  'poster',
  'mages',
  'sorcerors',
  'tn',
  'de',
  'excellent',
  'anniversary',
  'issue',
  'dragons',
  'tn',
  'de',
  'excellent',
  'non',
  'player',
  'character',
  'enhancement',
  'tn',
  'de',
  'excellent',
  'dark',
  'sun',
  'campaign',
  'monsters',
  'dark',
  'sun',
  'geoffrey',
  'excellent',
  'haloween',
  'horror',
  'tn',
  'de',
  'excellent',
  'wilderness',
  'outdoors',
  'notice',
  'errors',
  'please',
  'let',
  'know',
  'slight',
  'name',
  'misspellings',
  'close',
  'name',
  'thats'],
 ['kenneth',
  'alvin',
  'certainty',
  'arrogance',
  'organization',
  'university',
  'colorado',
  'boulder',
  'lines',
  'responding',
  'moderator',
  'article',
  'kenneth',
  'alvin',
  'writes',
  'choosing',
  'believe',
  'rely',
  'important',
  'areas',
  'personal',
  'sovereignty',
  'bothers',
  'others',
  'suggest',
  'matters',
  'faith',
  'specific',
  'beliefs',
  'true',
  'absolute',
  'binding',
  'others',
  'follows',
  'god',
  'must',
  'give',
  'everyone',
  'revelation',
  'truth',
  'thus',
  'anyone',
  'comes',
  'different',
  'conclusion',
  'intentionally',
  'choosing',
  'wrong',
  'path',
  'arrogance',
  'see',
  'lack',
  'respect',
  'honest',
  'conclusions',
  'others',
  'matters',
  'god',
  'certainly',
  'reasonable',
  'ask',
  'humility',
  'ability',
  'know',
  'truth',
  'also',
  'different',
  'paths',
  'areas',
  'practice',
  'id',
  'like',
  'see',
  'clarification',
  'mean',
  'reject',
  'idea',
  'saying',
  'specific',
  'beliefs',
  'true',
  'absolute',
  'binding',
  'others',
  'something',
  'true',
  'true',
  'everyone',
  'assuming',
  'belief',
  'something',
  'god',
  'history',
  'etc',
  'yes',
  'agree',
  'im',
  'trying',
  'point',
  'matters',
  'faith',
  'tenets',
  'logically',
  'persuasive',
  'one',
  'may',
  'convinced',
  'truth',
  'certain',
  'things',
  'instance',
  'personal',
  'revelation',
  'certainly',
  'fine',
  'share',
  'revelation',
  'beliefs',
  'others',
  'dont',
  'think',
  'arrogant',
  'persay',
  'accepts',
  'matters',
  'pure',
  'faith',
  'truth',
  'oneself',
  'think',
  'conflict',
  'arises',
  'assuming',
  'disagreements',
  'beliefs',
  'arise',
  'others',
  'must',
  'given',
  'truth',
  'god',
  'must',
  'reveal',
  'truth',
  'everyone',
  'way',
  'would',
  'honestly',
  'agree',
  'think',
  'lead',
  'conclusion',
  'anyone',
  'disagrees',
  'sinful',
  'dishonest',
  'rejecting',
  'something',
  'know',
  'truth',
  'inconvenient',
  'wish',
  'spurn',
  'god',
  'would',
  'say',
  'equivalent',
  'assuming',
  'truths',
  'one',
  'holds',
  'universal',
  'absolute',
  'problem',
  'see',
  'negates',
  'individuality',
  'humans',
  'relationships',
  'god',
  'mean',
  'absolute',
  'truth',
  'areas',
  'doctrinal',
  'disagreement',
  'may',
  'areas',
  'god',
  'established',
  'revealed',
  'truth',
  'comments',
  'criticism',
  'welcome',
  'ken',
  'agree',
  'clh'],
 ['steve',
  'lang',
  'objective',
  'values',
  'scientific',
  'accuracy',
  'years',
  'say',
  'christian',
  'morality',
  'organization',
  'nottingham',
  'university',
  'lines',
  'article',
  'tommy',
  'kelly',
  'wrote',
  'article',
  'frank',
  'odwyer',
  'writes',
  'science',
  'real',
  'world',
  'basis',
  'values',
  'way',
  'round',
  'would',
  'wish',
  'must',
  'using',
  'values',
  'mean',
  'something',
  'different',
  'way',
  'see',
  'used',
  'normally',
  'certainly',
  'using',
  'science',
  'like',
  'equate',
  'real',
  'world',
  'science',
  'recognition',
  'patterns',
  'perceptions',
  'universe',
  'making',
  'qualitative',
  'quantitative',
  'predictions',
  'concerning',
  'perceptions',
  'science',
  'process',
  'modeling',
  'real',
  'world',
  'based',
  'commonly',
  'agreed',
  'interpretations',
  'observations',
  'perceptions',
  'nothing',
  'values',
  'far',
  'see',
  'values',
  'well',
  'value',
  'would',
  'rather',
  'would',
  'experience',
  'rather',
  'values',
  'also',
  'refer',
  'meaning',
  'example',
  'computer',
  'science',
  'value',
  'true',
  'false',
  'science',
  'based',
  'commonly',
  'agreed',
  'values',
  'interpretation',
  'observations',
  'although',
  'science',
  'result',
  'values',
  'objective',
  'values',
  'set',
  'values',
  'proposer',
  'believes',
  'applicable',
  'everyone',
  'values',
  'underlaying',
  'science',
  'objective',
  'since',
  'never',
  'fully',
  'agreed',
  'change',
  'time',
  'values',
  'newtonian',
  'physic',
  'certainly',
  'different',
  'quantum',
  'mechanics',
  'steve',
  'lang',
  'slang',
  'sling',
  'slink',
  'slick',
  'slack',
  'shack',
  'shank',
  'thank',
  'think',
  'thick'],
 ['hudepohl',
  'pmj',
  'searching',
  'phonetic',
  'font',
  'organization',
  'fac',
  'wiskunde',
  'informatica',
  'vu',
  'amsterdam',
  'lines',
  'weidlich',
  'writes',
  'im',
  'searching',
  'phonetic',
  'truetype',
  'font',
  'windows',
  'anybody',
  'knows',
  'one',
  'please',
  'mail',
  'thanks',
  'dw',
  'dipl',
  'inform',
  'dietmar',
  'weidlich',
  'ifado',
  'ardeystr',
  'dortmund',
  'phone',
  'dr',
  'koennten',
  'sie',
  'das',
  'fax',
  'mal',
  'eben',
  'erledigen',
  'yes',
  'im',
  'looking',
  'phonetic',
  'font',
  'know',
  'one',
  'please',
  'mail',
  'thanks',
  'advance',
  'patrick',
  'hudepohl',
  'vu',
  'amsterdam',
  'netherlands'],
 ['david',
  'davidian',
  'republic',
  'turkey',
  'sold',
  'tones',
  'armenian',
  'bones',
  'keywords',
  'april',
  'th',
  'anniversary',
  'turkish',
  'genocide',
  'armenians',
  'organization',
  'center',
  'regional',
  'studies',
  'lines',
  'yarn',
  'cargo',
  'human',
  'bones',
  'copyright',
  'new',
  'york',
  'times',
  'company',
  'special',
  'cable',
  'new',
  'york',
  'times',
  'paris',
  'dec',
  'marseilles',
  'excited',
  'weird',
  'story',
  'arrival',
  'port',
  'ship',
  'flying',
  'british',
  'flag',
  'named',
  'zan',
  'carrying',
  'mysterious',
  'cargo',
  'tons',
  'human',
  'bones',
  'consigned',
  'manufacturers',
  'bones',
  'said',
  'loaded',
  'mudania',
  'sea',
  'marmora',
  'remains',
  'victims',
  'massacres',
  'asia',
  'minor',
  'view',
  'rumors',
  'circulating',
  'expected',
  'inquiry',
  'instigated',
  'reference',
  'york',
  'times_',
  'december',
  'page',
  'column',
  'bottom',
  'th',
  'commemorative',
  'anniversary',
  'turkish',
  'genocide',
  'armenians',
  'remember',
  'whose',
  'crime',
  'armenian',
  'shadow',
  'emerging',
  'turkish',
  'proto',
  'fascist',
  'state',
  'names',
  'demand',
  'justice',
  'april',
  'turkish',
  'government',
  'began',
  'systematically',
  'executed',
  'de',
  'population',
  'eastern',
  'anatolian',
  'homeland',
  'armenians',
  'genocidal',
  'extermination',
  'genocide',
  'insure',
  'turks',
  'exclusively',
  'ruled',
  'geographic',
  'area',
  'today',
  'called',
  'republic',
  'turkey',
  'result',
  'million',
  'murdered',
  'billion',
  'dollars',
  'armenian',
  'property',
  'stolen',
  'plundered',
  'genocide',
  'ended',
  'nearly',
  'years',
  'armenian',
  'civilization',
  'lands',
  'today',
  'turkish',
  'government',
  'continues',
  'scrape',
  'clean',
  'vestige',
  'prior',
  'armenian',
  'existence',
  'lands',
  'todays',
  'turkish',
  'governmental',
  'policy',
  'write',
  'history',
  'era',
  'manufacture',
  'distortion',
  'generate',
  'excuses',
  'genocide',
  'armenian',
  'people',
  'face',
  'refutation',
  'ad',
  'nauseam',
  'turkish',
  'historical',
  'society',
  'cronies',
  'shamelessly',
  'continue',
  'deny',
  'genocide',
  'occurred',
  'policy',
  'merely',
  'demonstrates',
  'modern',
  'era',
  'genocide',
  'effective',
  'state',
  'policy',
  'remains',
  'un',
  'redressed',
  'un',
  'punished',
  'crime',
  'unpunished',
  'crime',
  'encouraged',
  'adolf',
  'hitler',
  'took',
  'cue',
  'less',
  'years',
  'successful',
  'genocide',
  'armenians',
  'turkey',
  'claims',
  'systematic',
  'deportation',
  'armenians',
  'yet',
  'armenians',
  'removed',
  'every',
  'city',
  'town',
  'village',
  'whole',
  'turkey',
  'armenians',
  'resisted',
  'deportation',
  'massacre',
  'referred',
  'rebels',
  'turkey',
  'claims',
  'genocide',
  'armenians',
  'yet',
  'turkish',
  'population',
  'figures',
  'today',
  'show',
  'zero',
  'armenians',
  'eastern',
  'turkey',
  'armenian',
  'homeland',
  'turkey',
  'claims',
  'armenians',
  'always',
  'small',
  'minority',
  'yet',
  'turkey',
  'claims',
  'armenians',
  'threat',
  'final',
  'insult',
  'victims',
  'republic',
  'turkey',
  'sold',
  'bones',
  'approximately',
  'murdered',
  'armenians',
  'profit',
  'europe',
  'today',
  'turkish',
  'government',
  'enjoying',
  'fruits',
  'genocide',
  'success',
  'genocide',
  'hangs',
  'heads',
  'turkeys',
  'kurdish',
  'population',
  'armenians',
  'demand',
  'recognition',
  'reparation',
  'return',
  'armenian',
  'land',
  'property',
  'lost',
  'result',
  'genocide',
  'armenians',
  'demand',
  'justice',
  'ermeniler',
  'adalet',
  'istiyor',
  'david',
  'davidian',
  'armenia',
  'learned',
  'lesson',
  'center',
  'regional',
  'studies',
  'anatolia',
  'forgotten',
  'box',
  'punishment',
  'inflicted',
  'cambridge',
  'late',
  'turkish',
  'president',
  'turgut',
  'ozal'],
 ['mathew',
  'years',
  'say',
  'christian',
  'morality',
  'oxymoronic',
  'organization',
  'mantis',
  'consultants',
  'cambridge',
  'uk',
  'lines',
  'newsreader',
  'rusnews',
  'suzanne',
  'forgach',
  'writes',
  'article',
  'jon',
  'livesey',
  'western',
  'ethic',
  'infanticide',
  'many',
  'children',
  'dying',
  'world',
  'majority',
  'world',
  'isnt',
  'western',
  'superficially',
  'good',
  'answer',
  'isnt',
  'simple',
  'awful',
  'lot',
  'starvation',
  'poverty',
  'world',
  'directly',
  'caused',
  'economic',
  'policies',
  'western',
  'countries',
  'well',
  'diet',
  'typical',
  'westerner',
  'instance',
  'third',
  'world',
  'countries',
  'terrible',
  'malnutrition',
  'problems',
  'export',
  'soya',
  'produce',
  'fed',
  'cattle',
  'us',
  'make',
  'tender',
  'juicy',
  'steaks',
  'burgers',
  'get',
  'money',
  'pay',
  'interest',
  'crippling',
  'bank',
  'loans',
  'encouraged',
  'take',
  'fund',
  'raising',
  'ethiopia',
  'truly',
  'bizarre',
  'idea',
  'instead',
  'ought',
  'stop',
  'bleeding',
  'every',
  'penny',
  'theyve',
  'got',
  'perhaps',
  'accurate',
  'say',
  'theres',
  'western',
  'ethic',
  'western',
  'infanticide',
  'evidence',
  'suggests',
  'long',
  'children',
  'dying',
  'third',
  'world',
  'couldnt',
  'give',
  'shit',
  'goes',
  'supposed',
  'pro',
  'life',
  'movement',
  'could',
  'save',
  'far',
  'lives',
  'fighting',
  'third',
  'world',
  'debt',
  'fighting',
  'abortion',
  'hell',
  'theyre',
  'interested',
  'fetuses',
  'could',
  'save',
  'fighting',
  'human',
  'rights',
  'china',
  'besides',
  'suzannes',
  'answer',
  'implies',
  'non',
  'western',
  'countries',
  'lack',
  'ethic',
  'infanticide',
  'apart',
  'china',
  'policy',
  'mandatory',
  'forced',
  'abortion',
  'tibet',
  'dont',
  'believe',
  'case',
  'mathew'],
 ['strider',
  'atf',
  'burns',
  'dividian',
  'ranch',
  'survivors',
  'organization',
  'university',
  'texas',
  'austin',
  'austin',
  'tx',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'louie',
  'cc',
  'utexas',
  'tavares',
  'writes',
  'michael',
  'frederick',
  'rhein',
  'writes',
  'someone',
  'else',
  'pointed',
  'would',
  'stove',
  'warm',
  'day',
  'texas',
  'eat',
  'food',
  'cold',
  'thank',
  'pointing',
  'obvious',
  'people',
  'clearly',
  'missed',
  'cant',
  'stand',
  'peoples',
  'first',
  'reaction',
  'defend',
  'aggressor',
  'mr',
  'tavares',
  'unique',
  'thoughtful',
  'way',
  'getting',
  'heart',
  'matter',
  'thank',
  'putting',
  'good',
  'mike',
  'ruff',
  'thine',
  'self',
  'true',
  'polonius',
  'would',
  'sacrifice',
  'essential',
  'liberties',
  'little',
  'temporary',
  'safety',
  'deserve',
  'neither',
  'liberty',
  'safety',
  'franklin'],
 ['ozan',
  'yigit',
  'list',
  'large',
  'integer',
  'arithmetic',
  'packages',
  'reply',
  'message',
  'apr',
  'gmt',
  'organization',
  'york',
  'student',
  'information',
  'systems',
  'project',
  'lines',
  'mark',
  'riordan',
  'writes',
  'list',
  'large',
  'integer',
  'arithmetic',
  'packages',
  'elided',
  'thought',
  'would',
  'note',
  'except',
  'lenstras',
  'packages',
  'none',
  'large',
  'integer',
  'packages',
  'public',
  'domain',
  'alternative',
  'straightforward',
  'pd',
  'implementation',
  'knuths',
  'algorithms',
  'may',
  'found',
  'part',
  'uof',
  'arizonas',
  'icon',
  'distribution',
  'oz',
  'diligence',
  'possible',
  'make',
  'electric',
  'anything',
  'run',
  'slowly',
  'tom',
  'duff',
  'ph'],
 ['scott',
  'roby',
  'blast',
  'next',
  'time',
  'nntp',
  'posting',
  'host',
  'chopin',
  'udel',
  'organization',
  'university',
  'delaware',
  'distribution',
  'usa',
  'lines',
  'article',
  'daniel',
  'oldham',
  'writes',
  'flame',
  'bait',
  'pure',
  'simple'],
 ['keith',
  'allan',
  'schneider',
  'political',
  'atheists',
  'organization',
  'california',
  'institute',
  'technology',
  'pasadena',
  'lines',
  'nntp',
  'posting',
  'host',
  'punisher',
  'caltech',
  'jon',
  'livesey',
  'writes',
  'well',
  'chimps',
  'must',
  'system',
  'live',
  'social',
  'groups',
  'must',
  'laws',
  'dictating',
  'undesired',
  'behavior',
  'must',
  'laws',
  'quotation',
  'marks',
  'enclose',
  'laws',
  'must',
  'rules',
  'even',
  'instinctive',
  'ones',
  'unwritten',
  'ones',
  'etc',
  'surely',
  'sort',
  'random',
  'chance',
  'would',
  'lead',
  'chimp',
  'society',
  'chaos',
  'keith'],
 ['ryan',
  'scharfy',
  'drugs',
  'legalized',
  'good',
  'neighbor',
  'nntp',
  'posting',
  'host',
  'magnusug',
  'magnus',
  'acs',
  'ohio',
  'state',
  'organization',
  'ohio',
  'state',
  'university',
  'lines',
  'article',
  'wil',
  'liam',
  'december',
  'starr',
  'writes',
  'article',
  'ryan',
  'scharfy',
  'said',
  'however',
  'legalizing',
  'sticking',
  'drugs',
  'gas',
  'stations',
  'bought',
  'like',
  'cigarettes',
  'plain',
  'silly',
  'plus',
  'never',
  'heard',
  'recommended',
  'dosage',
  'drugs',
  'like',
  'crack',
  'ecstasy',
  'chrystal',
  'meth',
  'lsd',
  'minute',
  'report',
  'said',
  'worked',
  'cocaine',
  'cigarettes',
  'pot',
  'heroin',
  'government',
  'could',
  'adopt',
  'radical',
  'probably',
  'unamerican',
  'idea',
  'citizens',
  'free',
  'live',
  'lives',
  'wish',
  'simply',
  'decriminalize',
  'cocaine',
  'marijuana',
  'heroin',
  'lsd',
  'etc',
  'please',
  'explain',
  'idea',
  'allowing',
  'recreational',
  'drugs',
  'bought',
  'like',
  'cigarettes',
  'plain',
  'silly',
  'works',
  'fine',
  'nicotine',
  'yeah',
  'cancer',
  'pretty',
  'cool',
  'isnt',
  'ryan'],
 ['shazad',
  'barlas',
  'need',
  'help',
  'scaring',
  'please',
  'organization',
  'university',
  'westminster',
  'distribution',
  'sci',
  'med',
  'lines',
  'hi',
  'need',
  'information',
  'scaring',
  'particularly',
  'result',
  'grazing',
  'skin',
  'really',
  'wanted',
  'know',
  'would',
  'scar',
  'occur',
  'result',
  'grazing',
  'yes',
  'would',
  'disappear',
  'long',
  'graze',
  'take',
  'heal',
  'hair',
  'grow',
  'healed',
  'scar',
  'tissue',
  'antiseptic',
  'cream',
  'applied',
  'regularly',
  'better',
  'keep',
  'exposed',
  'let',
  'fresh',
  'air',
  'please',
  'help',
  'info',
  'matter',
  'small',
  'appreciated',
  'greatly',
  'please',
  'mail',
  'directly',
  'dont',
  'read',
  'newsgroup',
  'often',
  'first',
  'time',
  'shaz'],
 ['craig',
  'landgraf',
  'new',
  'cd',
  'disks',
  'lines',
  'cd',
  'disk',
  'users',
  'commercial',
  'ad',
  'alot',
  'new',
  'cd',
  'disks',
  'cdrom',
  'interested',
  'purchasing',
  'disks',
  'please',
  'download',
  'list',
  'mentioned',
  'cd',
  'night',
  'owls',
  'download',
  'file',
  'cdromcat',
  'zip',
  'freq',
  'magic',
  'name',
  'catalog',
  'craig',
  'landgraf',
  'buckwheats',
  'pleasure',
  'dome',
  'internet',
  'usenet',
  'podnet',
  'fidonet',
  'itcnet',
  'kinknet',
  'sganet',
  'bbs',
  'number',
  'send',
  'email',
  'home',
  'address',
  'mail',
  'list',
  'house',
  'list',
  'pages',
  'long',
  'computer',
  'call',
  'get',
  'list',
  'faster'],
 ['james',
  'callison',
  'spark',
  'plug',
  'question',
  'distribution',
  'na',
  'nntp',
  'posting',
  'host',
  'uokmax',
  'ecn',
  'uoknor',
  'organization',
  'engineering',
  'computer',
  'network',
  'university',
  'oklahoma',
  'norman',
  'ok',
  'usa',
  'lines',
  'article',
  'brian',
  'golden',
  'writes',
  'nice',
  'thing',
  'real',
  'platinum',
  'plugs',
  'dont',
  'change',
  'often',
  'think',
  'like',
  'miles',
  'might',
  'cost',
  'would',
  'save',
  'long',
  'run',
  'bird',
  'scs',
  'manual',
  'says',
  'replace',
  'platinum',
  'plugs',
  'every',
  'mi',
  'wal',
  'mart',
  'autolite',
  'platinum',
  'plugs',
  'real',
  'platinum',
  'plugs',
  'bosch',
  'platinums',
  'fiesta',
  'dad',
  'em',
  'bronco',
  'note',
  'keyword',
  'didnt',
  'last',
  'long',
  'much',
  'less',
  'mi',
  'replaced',
  'agree',
  'werent',
  'greatest',
  'james',
  'james',
  'callison',
  'microcomputer',
  'coordinator',
  'oklahoma',
  'law',
  'center',
  'disclaimer',
  'im',
  'engineer',
  'play',
  'one',
  'work',
  'forecast',
  'calls',
  'thunder',
  'bird',
  'sc',
  'hell',
  'thing',
  'killing',
  'man',
  'take',
  'away',
  'hes',
  'ever',
  'gonna',
  'munny',
  'unforgiven'],
 ['david',
  'harr',
  'nanao',
  'compatible',
  'mac',
  'video',
  'cards',
  'summary',
  'get',
  'ehe',
  'monitor',
  'drive',
  'keywords',
  'monitor',
  'bit',
  'video',
  'macintosh',
  'organization',
  'programmers',
  'say',
  'nee',
  'lines',
  'anyone',
  'know',
  'nanao',
  'compatible',
  'popular',
  'mac',
  'video',
  'cards',
  'oppurtunity',
  'get',
  'brand',
  'new',
  'one',
  'cheap',
  'tempted',
  'waste',
  'time',
  'cant',
  'drive',
  'using',
  'standard',
  'video',
  'card',
  'im',
  'whats',
  'everybodys',
  'reccomendations',
  'color',
  'monitor',
  'ive',
  'heard',
  'good',
  'things',
  'nec',
  'fg',
  'course',
  'always',
  'reliable',
  'old',
  'macintosh',
  'display',
  'experiences',
  'david',
  'harr',
  'cyberpunk',
  'software',
  'definition',
  'happiness',
  'famous',
  'financial',
  'ability',
  'indulge',
  'every',
  'form',
  'excess',
  'calvin'],
 ['thomas',
  'farrell',
  'nc',
  'vs',
  'hunt',
  'marine',
  'gay',
  'bashing',
  'wilmington',
  'nc',
  'verdict',
  'article',
  'lynx',
  'apr',
  'organization',
  'northeastern',
  'university',
  'boston',
  'usa',
  'lines',
  'article',
  'mark',
  'wilson',
  'writes',
  'feel',
  'defendents',
  'convicted',
  'regardless',
  'evidence',
  'would',
  'truely',
  'sad',
  'day',
  'civil',
  'rights',
  'dont',
  'know',
  'everybody',
  'else',
  'convicted',
  'evidence',
  'mind',
  'quite',
  'sufficient',
  'tom'],
 ['fred',
  'rice',
  'ancient',
  'islamic',
  'rituals',
  'organization',
  'monash',
  'university',
  'melb',
  'australia',
  'lines',
  'jeffrey',
  'clark',
  'writes',
  'chris',
  'faehl',
  'writes',
  'reasonable',
  'trend',
  'towards',
  'obesity',
  'trend',
  'towards',
  'depression',
  'cant',
  'pick',
  'two',
  'favorite',
  'trends',
  'notice',
  'correlation',
  'make',
  'sweeping',
  'statement',
  'generality',
  'mean',
  'people',
  'mean',
  'valid',
  'reasonable',
  'thesis',
  'best',
  'gross',
  'push',
  'pull',
  'factors',
  'people',
  'experience',
  'basically',
  'social',
  'interactions',
  'changing',
  'factors',
  'society',
  'far',
  'complicated',
  'us',
  'control',
  'hold',
  'panic',
  'handles',
  'hope',
  'heading',
  'soft',
  'landing',
  'one',
  'things',
  'sure',
  'depression',
  'destruction',
  'nuclear',
  'family',
  'due',
  'solely',
  'sex',
  'marriage',
  'note',
  'said',
  'depression',
  'destruction',
  'nuclear',
  'family',
  'due',
  'extra',
  'marital',
  'sex',
  'specifically',
  'said',
  'prime',
  'cause',
  'prime',
  'cause',
  'cause',
  'recognize',
  'probably',
  'factors',
  'think',
  'extra',
  'marital',
  'sex',
  'subsequent',
  'destabilization',
  'family',
  'probably',
  'significant',
  'factor',
  'rise',
  'psychological',
  'problems',
  'including',
  'depression',
  'west',
  'th',
  'century',
  'fred',
  'rice'],
 ['nasa',
  'wraps',
  'organization',
  'university',
  'houston',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'judy',
  'uh',
  'news',
  'software',
  'vax',
  'vms',
  'vnews',
  'article',
  'allen',
  'sherzer',
  'writes',
  'article',
  'writes',
  'btw',
  'universities',
  'thing',
  'however',
  'wrap',
  'overhead',
  'charge',
  'wrong',
  'allen',
  'max',
  'overhead',
  'charge',
  'charge',
  'seperately',
  'budgeted',
  'overhead',
  'shape',
  'size',
  'form',
  'fashion',
  'professor',
  'university',
  'virginia',
  'told',
  'wrap',
  'subcontracts',
  'let',
  'worked',
  'universities',
  'employer',
  'non',
  'profit',
  'research',
  'institute',
  'generally',
  'reffered',
  'fee',
  'dont',
  'care',
  'told',
  'generally',
  'true',
  'see',
  'every',
  'single',
  'line',
  'item',
  'contract',
  'sign',
  'thing',
  'wrap',
  'university',
  'also',
  'asked',
  'around',
  'ther',
  'wrap',
  'marquette',
  'university',
  'wisconsin',
  'madison',
  'utah',
  'state',
  'weber',
  'state',
  'embry',
  'riddle',
  'saying',
  'doees',
  'happen',
  'every',
  'instance',
  'able',
  'track',
  'also',
  'president',
  'university',
  'provost',
  'university',
  'west',
  'virgina',
  'said',
  'happen',
  'either',
  'figure',
  'must',
  'included',
  'overhead',
  'legitimate',
  'charge',
  'know',
  'write',
  'proposals',
  'contracts',
  'know',
  'dime',
  'charges',
  'uah',
  'example',
  'overhead',
  'sounds',
  'like',
  'adding',
  'overhead',
  'rate',
  'go',
  'ask',
  'costing',
  'people',
  'much',
  'fee',
  'add',
  'project',
  'never',
  'heard',
  'suggest',
  'like',
  'president',
  'percentage',
  'number',
  'like',
  'included',
  'overhead',
  'numbers',
  'allen',
  'show',
  'else',
  'quit',
  'barking',
  'dennis',
  'read',
  'article',
  'repeat',
  'internal',
  'estimate',
  'done',
  'reston',
  'costing',
  'department',
  'says',
  'freedom',
  'built',
  'year',
  'operated',
  'per',
  'year',
  'money',
  'spent',
  'freedom',
  'since',
  'spend',
  'half',
  'billion',
  'per',
  'year',
  'looks',
  'like',
  'roughly',
  'money',
  'wasted',
  'think',
  'im',
  'making',
  'confirm',
  'anonymous',
  'editorial',
  'published',
  'weeks',
  'ago',
  'space',
  'news',
  'allen',
  'merely',
  'repeated',
  'allegations',
  'made',
  'employee',
  'overhead',
  'capital',
  'nasa',
  'nothing',
  'reston',
  'could',
  'dont',
  'better',
  'cheaper',
  'nasa',
  'centers',
  'work',
  'going',
  'kinda',
  'funny',
  'isnt',
  'someone',
  'talks',
  'problem',
  'like',
  'place',
  'everything',
  'overhead',
  'dennis',
  'nasa',
  'many',
  'problems',
  'cant',
  'accept',
  'anything',
  'wrong',
  'unless',
  'blame',
  'congress',
  'oh',
  'sure',
  'youll',
  'say',
  'nasa',
  'problems',
  'believe',
  'remember',
  'wp',
  'overrun',
  'insisted',
  'congresses',
  'fault',
  'nasa',
  'management',
  'knew',
  'overrun',
  'almost',
  'year',
  'yet',
  'refused',
  'act',
  'still',
  'blame',
  'congress',
  'overrun',
  'space',
  'news',
  'artice',
  'point',
  'congressionally',
  'demanded',
  'change',
  'caused',
  'problems',
  'methinks',
  'selective',
  'facts',
  'numbers',
  'allen',
  'cost',
  'million',
  'per',
  'flight',
  'service',
  'cost',
  'flying',
  'shuttle',
  'ssf',
  'billion',
  'four',
  'flights',
  'get',
  'one',
  'billion',
  'number',
  'idea',
  'trying',
  'say',
  'dennis',
  'allen',
  'takes',
  'four',
  'flights',
  'year',
  'resupply',
  'station',
  'cost',
  'million',
  'flight',
  'pay',
  'billion',
  'year',
  'stated',
  'friend',
  'reston',
  'said',
  'current',
  'station',
  'could',
  'resupply',
  'billion',
  'year',
  'wrap',
  'gone',
  'merely',
  'points',
  'blatent',
  'contridiction',
  'numbers',
  'understandably',
  'fail',
  'see',
  'dennis',
  'university',
  'alabama',
  'huntsville',
  'sorry',
  'gang',
  'deadline',
  'satellite',
  'someone',
  'else',
  'going',
  'allens',
  'math',
  'little',
  'chance'],
 ['kurt',
  'henriksen',
  'brake',
  'rotors',
  'cross',
  'drilling',
  'organization',
  'university',
  'chicago',
  'astronomy',
  'astrophysics',
  'distribution',
  'na',
  'lines'],
 ['james',
  'holland',
  'help',
  'organization',
  'university',
  'westminster',
  'lines',
  'article',
  'william',
  'hargreaves',
  'writes',
  'hi',
  'everyone',
  'im',
  'commited',
  'christian',
  'battling',
  'problem',
  'know',
  'romans',
  'talks',
  'saved',
  'faith',
  'deeds',
  'yet',
  'hebrews',
  'james',
  'say',
  'faith',
  'without',
  'deeds',
  'useless',
  'saying',
  'fools',
  'still',
  'think',
  'believing',
  'enough',
  'deleted',
  'opinion',
  'saved',
  'faith',
  'alone',
  'taught',
  'romans',
  'square',
  'mind',
  'teachings',
  'james',
  'conjunction',
  'lukewarm',
  'christian',
  'spat',
  'anyone',
  'help',
  'really',
  'bothers',
  'dear',
  'ive',
  'never',
  'replied',
  'thing',
  'hope',
  'gets',
  'thru',
  'ok',
  'thoughts',
  'faith',
  'accompanied',
  'action',
  'dead',
  'james',
  'faith',
  'belief',
  'action',
  'say',
  'great',
  'swimmer',
  'never',
  'go',
  'swimming',
  'really',
  'swimmer',
  'people',
  'believe',
  'likewise',
  'say',
  'im',
  'christian',
  'never',
  'talk',
  'god',
  'really',
  'christian',
  'faith',
  'demonstrated',
  'action',
  'fact',
  'talk',
  'god',
  'proves',
  'faith',
  'satan',
  'believes',
  'god',
  'follow',
  'similar',
  'vein',
  'recently',
  'challenged',
  'john',
  'says',
  'know',
  'come',
  'know',
  'obey',
  'commands',
  'find',
  'verse',
  'quite',
  'encouraging',
  'could',
  'imply',
  'come',
  'know',
  'well',
  'obey',
  'commands',
  'cos',
  'lives',
  'within',
  'us',
  'cannot',
  'help',
  'obey',
  'says',
  'tend',
  'feel',
  'daily',
  'submit',
  'ourself',
  'god',
  'keep',
  'changing',
  'us',
  'likeness',
  'jesus',
  'fruit',
  'works',
  'automatically',
  'produced',
  'lives',
  'hope',
  'helps',
  'james',
  'holland'],
 ['ian',
  'farquhar',
  'screw',
  'people',
  'crypto',
  'hard',
  'core',
  'hackers',
  'spooks',
  'organization',
  'macquarie',
  'university',
  'sydney',
  'australia',
  'lines',
  'nntp',
  'posting',
  'host',
  'laurel',
  'ocs',
  'mq',
  'au',
  'article',
  'john',
  'carr',
  'writes',
  'chip',
  'algorithm',
  'classified',
  'reverse',
  'engineer',
  'tell',
  'people',
  'likely',
  'go',
  'jail',
  'dont',
  'find',
  'credible',
  'argument',
  'two',
  'reasons',
  'one',
  'supplied',
  'unless',
  'care',
  'entering',
  'usa',
  'time',
  'future',
  'eg',
  'taiwanese',
  'backyard',
  'cloners',
  'btw',
  'known',
  'decap',
  'custom',
  'silicon',
  'reproduce',
  'daughterboards',
  'pirating',
  'high',
  'profit',
  'arcade',
  'machines',
  'like',
  'wouldnt',
  'care',
  'less',
  'going',
  'care',
  'much',
  'us',
  'confidentiality',
  'people',
  'like',
  'real',
  'care',
  'travelling',
  'various',
  'countries',
  'business',
  'reasons',
  'sit',
  'follow',
  'laws',
  'like',
  'would',
  'contend',
  'main',
  'threat',
  'also',
  'grave',
  'doubts',
  'whether',
  'algorythm',
  'widely',
  'distributed',
  'silicon',
  'could',
  'possibly',
  'called',
  'classified',
  'like',
  'handing',
  'military',
  'secrets',
  'whole',
  'world',
  'envelopes',
  'marked',
  'dont',
  'open',
  'imagine',
  'several',
  'credible',
  'defences',
  'could',
  'employed',
  'came',
  'trial',
  'one',
  'would',
  'stupidity',
  'governments',
  'actions',
  'perhaps',
  'foreign',
  'governments',
  'corporations',
  'could',
  'help',
  'us',
  'cracking',
  'system',
  'outside',
  'usa',
  'us',
  'government',
  'could',
  'probably',
  'stop',
  'importation',
  'clone',
  'hardware',
  'software',
  'implementation',
  'practical',
  'amusing',
  'thought',
  'could',
  'employed',
  'algorythm',
  'infeasable',
  'fast',
  'software',
  'implementation',
  'easy',
  'custom',
  'hardware',
  'des',
  'extensive',
  'permutation',
  'tables',
  'trivial',
  'hardware',
  'swap',
  'bus',
  'lines',
  'relatively',
  'slow',
  'software',
  'big',
  'effect',
  'speed',
  'difference',
  'hardware',
  'software',
  'implementations',
  'cipher',
  'indeed',
  'suspect',
  'lucifers',
  'designers',
  'well',
  'aware',
  'would',
  'approved',
  'certain',
  'algorythms',
  'usually',
  'parallel',
  'search',
  'algorythms',
  'slow',
  'software',
  'yet',
  'fly',
  'custom',
  'hardware',
  'proof',
  'employment',
  'clipper',
  'pure',
  'conjecture',
  'however',
  'software',
  'implementation',
  'cipher',
  'something',
  'designers',
  'would',
  'trying',
  'avoid',
  'costs',
  'inclusion',
  'techniques',
  'seems',
  'credible',
  'hmmm',
  'also',
  'wonder',
  'intergraph',
  'thinks',
  'name',
  'clipper',
  'device',
  'ian',
  'farquhar',
  'phone',
  'office',
  'computing',
  'services',
  'fax',
  'macquarie',
  'university',
  'nsw',
  'also',
  'australia',
  'email'],
 ['kuo',
  'sheng',
  'kasey',
  'chang',
  'canon',
  'bj',
  'bubblejet',
  'hp',
  'deskjet',
  'organization',
  'san',
  'francisco',
  'state',
  'university',
  'lines',
  'article',
  'bob',
  'taylor',
  'writes',
  'justin',
  'whitton',
  'wrote',
  'article',
  'ed',
  'moore',
  'writes',
  'wrote',
  'think',
  'ink',
  'used',
  'deskjet',
  'family',
  'water',
  'fast',
  'ive',
  'pictures',
  'ruined',
  'drops',
  'rain',
  'colour',
  'pictures',
  'deskjet',
  'mind',
  'could',
  'acid',
  'rain',
  'black',
  'ink',
  'waterfast',
  'color',
  'isnt',
  'bj',
  'ex',
  'ink',
  'dries',
  'fast',
  'really',
  'doesnt',
  'like',
  'getting',
  'wet',
  'justin',
  'whitton',
  'man',
  'gone',
  'august',
  'mail',
  'disclaimer',
  'opinions',
  'count',
  'nothing',
  'except',
  'office',
  'empty',
  'im',
  'student',
  'intelligence',
  'bob',
  'taylor',
  'hp',
  'vancouver'],
 ['imad',
  'jureidini',
  'problems',
  'toshiba',
  'cdrom',
  'nntp',
  'posting',
  'host',
  'cunixa',
  'cc',
  'columbia',
  'reply',
  'imad',
  'jureidini',
  'organization',
  'columbia',
  'university',
  'lines',
  'article',
  'writes',
  'article',
  'imad',
  'jureidini',
  'writes',
  'hi',
  'recently',
  'purchased',
  'toshiba',
  'cdrom',
  'adaptec',
  'scsi',
  'card',
  'far',
  'failed',
  'get',
  'cdrom',
  'work',
  'dos',
  'one',
  'aspi',
  'drivers',
  'think',
  'aspicd',
  'supports',
  'norst',
  'paramter',
  'means',
  'reset',
  'scsi',
  'bus',
  'loads',
  'fixed',
  'problem',
  'friend',
  'mine',
  'adaptec',
  'tosh',
  'regards',
  'terje',
  'worked',
  'thank',
  'much',
  'imad',
  'hexabyte',
  'jureidini',
  'ultimate',
  'knight',
  'grand',
  'priest',
  'secrets',
  'undefined'],
 ['christopher',
  'mussack',
  'sin',
  'organization',
  'ibm',
  'austin',
  'lines',
  'article',
  'jill',
  'anne',
  'daley',
  'writes',
  'exactly',
  'definition',
  'sin',
  'examples',
  'person',
  'know',
  'committing',
  'sin',
  'anything',
  'bring',
  'closer',
  'god',
  'sin',
  'think',
  'strict',
  'consider',
  'ambiguous',
  'implies',
  'staying',
  'sin',
  'christian',
  'never',
  'satisfied',
  'imply',
  'fun',
  'sin',
  'imply',
  'sleeping',
  'sin',
  'imply',
  'sin',
  'every',
  'day',
  'perhaps',
  'simpler',
  'definition',
  'anything',
  'counter',
  'two',
  'great',
  'commandments',
  'love',
  'god',
  'love',
  'neighbor',
  'sin',
  'anything',
  'love',
  'sin',
  'action',
  'sin',
  'sometimes',
  'sin',
  'sometimes',
  'could',
  'yell',
  'kids',
  'discipline',
  'time',
  'loving',
  'considering',
  'teach',
  'proper',
  'behavior',
  'could',
  'yell',
  'kids',
  'anger',
  'selfishness',
  'could',
  'post',
  'excellent',
  'article',
  'interested',
  'sharing',
  'opinions',
  'getting',
  'feedback',
  'learning',
  'could',
  'post',
  'article',
  'want',
  'everyone',
  'realize',
  'wise',
  'chris',
  'mussack'],
 ['steinn',
  'sigurdsson',
  'gamma',
  'ray',
  'bursters',
  'organization',
  'lick',
  'observatory',
  'uco',
  'lines',
  'nntp',
  'posting',
  'host',
  'topaz',
  'ucsc',
  'reply',
  'message',
  'apr',
  'article',
  'pat',
  'writes',
  'evidence',
  'indicates',
  'gamma',
  'ray',
  'bursters',
  'far',
  'away',
  'distribution',
  'isotropic',
  'intensity',
  'distribution',
  'crudely',
  'speaking',
  'indicates',
  'seeing',
  'edge',
  'distribution',
  'given',
  'enormous',
  'power',
  'wondering',
  'quantum',
  'black',
  'holes',
  'something',
  'like',
  'fairly',
  'close',
  'would',
  'galactic',
  'ranges',
  'good',
  'old',
  'days',
  'gro',
  'data',
  'thought',
  'gamma',
  'bursters',
  'neutron',
  'stars',
  'galaxy',
  'expected',
  'gro',
  'would',
  'confirm',
  'either',
  'showing',
  'local',
  'population',
  'within',
  'hundred',
  'light',
  'years',
  'galactic',
  'halo',
  'mechanism',
  'known',
  'several',
  'plausible',
  'ones',
  'existed',
  'also',
  'fair',
  'noted',
  'burster',
  'probably',
  'lmc',
  'suggesting',
  'theorists',
  'might',
  'wrong',
  'back',
  'sun',
  'center',
  'galaxy',
  'halo',
  'population',
  'show',
  'anisotropy',
  'local',
  'disk',
  'population',
  'ruled',
  'completely',
  'stage',
  'avoid',
  'anisotropy',
  'push',
  'halo',
  'energy',
  'gets',
  'large',
  'mechanism',
  'getting',
  'ns',
  'far',
  'becomes',
  'questionable',
  'start',
  'see',
  'example',
  'andromedas',
  'bursters',
  'data',
  'consistent',
  'either',
  'oort',
  'cloud',
  'distribution',
  'one',
  'think',
  'plausible',
  'source',
  'right',
  'spectrum',
  'cosmological',
  'distances',
  'hence',
  'isotropy',
  'edge',
  'edge',
  'universe',
  'cosmological',
  'distances',
  'need',
  'high',
  'energy',
  'detect',
  'compact',
  'source',
  'spectrum',
  'ergo',
  'neutron',
  'star',
  'colliding',
  'another',
  'neutron',
  'star',
  'black',
  'hole',
  'even',
  'getting',
  'spectrum',
  'hard',
  'conceivable',
  'know',
  'anything',
  'physics',
  'level',
  'bursters',
  'due',
  'quantum',
  'black',
  'holes',
  'cosmic',
  'strings',
  'wrong',
  'spectrum',
  'one',
  'thing',
  'situation',
  'complicated',
  'recent',
  'claims',
  'two',
  'classes',
  'sources',
  'colliding',
  'ns',
  'theyd',
  'actually',
  'probably',
  'fit',
  'relatively',
  'easily',
  'ns',
  'ns',
  'ns',
  'bh',
  'collision',
  'scenarios',
  'respectively',
  'pet',
  'theory',
  'flying',
  'saucers',
  'entering',
  'hyperspace',
  'reason',
  'asking',
  'everyone',
  'assumes',
  'colliding',
  'nuetron',
  'stars',
  'spinning',
  'black',
  'holes',
  'wondered',
  'mechanism',
  'could',
  'exist',
  'place',
  'closer',
  'think',
  'one',
  'remember',
  'invite',
  'stockholm',
  'steinn',
  'sigurdsson',
  'lick',
  'observatory',
  'standard',
  'disclaimer',
  'laws',
  'gravity',
  'strict',
  'youre',
  'bending',
  'benefit'],
 ['sam',
  'latonia',
  'date',
  'stuck',
  'organization',
  'case',
  'western',
  'reserve',
  'university',
  'cleveland',
  'ohio',
  'usa',
  'lines',
  'nntp',
  'posting',
  'host',
  'slc',
  'ins',
  'cwru',
  'cant',
  'imagine',
  'someone',
  'would',
  'leave',
  'computer',
  'time',
  'start',
  'like',
  'leaving',
  'lights',
  'tv',
  'radio',
  'everything',
  'house',
  'time',
  'nuts',
  'gosh',
  'think',
  'installed',
  'virus',
  'called',
  'ms',
  'dos',
  'dont',
  'copy',
  'floppy',
  'burn',
  'love',
  'windows',
  'crash'],
 ['tom',
  'renner',
  'apple',
  'iigs',
  'article',
  'gap',
  'qkm',
  'linnrc',
  'distribution',
  'usa',
  'organization',
  'california',
  'institute',
  'technology',
  'pasadena',
  'lines',
  'nntp',
  'posting',
  'host',
  'punisher',
  'caltech',
  'basic',
  'apple',
  'iigs',
  'system',
  'need',
  'sell',
  'everything',
  'comes',
  'original',
  'boxes',
  'documentation',
  'excellent',
  'condition',
  'make',
  'offer',
  'ill',
  'consider',
  'anything',
  'apple',
  'iigs',
  'meg',
  'drive',
  'applecolor',
  'rgb',
  'monitor',
  'keyboard',
  'mouse',
  'mousepad',
  'dustcovers',
  'baud',
  'applemodem',
  'random',
  'worthless',
  'stuff',
  'heres',
  'list',
  'games',
  'apps',
  'games',
  'applications',
  'battlechess',
  'system',
  'disk',
  'defender',
  'crown',
  'system',
  'tools',
  'iigs',
  'arkanoid',
  'ii',
  'wordperfect',
  'bubble',
  'ghost',
  'appleworks',
  'shadowgate',
  'writers',
  'choice',
  'elite',
  'balance',
  'power',
  'draw',
  'plus',
  'marble',
  'madness',
  'copy',
  'ii',
  'plus',
  'zany',
  'golf',
  'proterm',
  'communications',
  'software',
  'chessmaster',
  'interested',
  'contact'],
 ['darius_lecointe',
  'sabbath',
  'admissions',
  'organization',
  'florida',
  'state',
  'university',
  'lines',
  'normal',
  'protestant',
  'interpretation',
  'sunday',
  'law',
  'worshipping',
  'another',
  'day',
  'sin',
  'churches',
  'free',
  'decide',
  'day',
  'meet',
  'free',
  'decide',
  'hour',
  'would',
  'sin',
  'worship',
  'day',
  'belong',
  'church',
  'worships',
  'sunday',
  'show',
  'monday',
  'probably',
  'worship',
  'alone',
  'clh',
  'totally',
  'agree',
  'sentiment',
  'go',
  'advocate',
  'violating',
  'god',
  'set',
  'question',
  'answered',
  'scripture',
  'worship',
  'every',
  'day',
  'long',
  'work',
  'god',
  'says',
  'sabbath',
  'mine',
  'darius'],
 ['robert',
  'wade',
  'grand',
  'cyl',
  'organization',
  'purdue',
  'university',
  'engineering',
  'computer',
  'network',
  'lines',
  'article',
  'edgar',
  'ii',
  'holcomb',
  'writes',
  'article',
  'ray',
  'wilmott',
  'writes',
  'hi',
  'back',
  'asking',
  'info',
  'different',
  'models',
  'grand',
  'one',
  'response',
  'generally',
  'favorable',
  'one',
  'thing',
  'often',
  'repeated',
  'go',
  'real',
  'power',
  'point',
  'well',
  'taken',
  'anybody',
  'input',
  'cylinders',
  'standard',
  'ohc',
  'quad',
  'ray',
  'high',
  'output',
  'quad',
  'delivers',
  'hp',
  'wf',
  'quad',
  'whereas',
  'offered',
  'grand',
  'delivers',
  'hp',
  'beretta',
  'gtz',
  'ooppss',
  'grand',
  'litre',
  'downsized',
  'version',
  'buicks',
  'litre',
  'goes',
  'beretta',
  'corsica'],
 ['tommy',
  'kelly',
  'objective',
  'values',
  'scientific',
  'accuracy',
  'years',
  'say',
  'christian',
  'morality',
  'reply',
  'tommy',
  'kelly',
  'organization',
  'laboratory',
  'foundations',
  'computer',
  'science',
  'edinburgh',
  'lines',
  'frank',
  'tried',
  'mail',
  'bounced',
  'fast',
  'moving',
  'scope',
  'didnt',
  'know',
  'group',
  'three',
  'subscribed',
  'apologies',
  'regular',
  'folks',
  'article',
  'frank',
  'odwyer',
  'writes',
  'science',
  'real',
  'world',
  'basis',
  'values',
  'way',
  'round',
  'would',
  'wish',
  'must',
  'using',
  'values',
  'mean',
  'something',
  'different',
  'way',
  'see',
  'used',
  'normally',
  'certainly',
  'using',
  'science',
  'like',
  'equate',
  'real',
  'world',
  'science',
  'recognition',
  'patterns',
  'perceptions',
  'universe',
  'making',
  'qualitative',
  'quantitative',
  'predictions',
  'concerning',
  'perceptions',
  'nothing',
  'values',
  'far',
  'see',
  'values',
  'well',
  'value',
  'would',
  'rather',
  'would',
  'experience',
  'rather',
  'objective',
  'values',
  'set',
  'values',
  'proposer',
  'believes',
  'applicable',
  'everyone',
  'thing',
  'objective',
  'value',
  'science',
  'objectively',
  'said',
  'useful',
  'kick',
  'head',
  'dont',
  'agree',
  'science',
  'useful',
  'insofar',
  'predictions',
  'mentioned',
  'accurate',
  'insofar',
  'think',
  'effect',
  'perceptions',
  'time',
  'lapse',
  'without',
  'input',
  'universe',
  'versus',
  'perceptions',
  'actually',
  'turn',
  'values',
  'whether',
  'like',
  'loosest',
  'sense',
  'word',
  'perceptions',
  'simple',
  'theories',
  'accurate',
  'predictions',
  'could',
  'objectively',
  'said',
  'useful',
  'set',
  'tarot',
  'cards',
  'dont',
  'see',
  'usefulness',
  'science',
  'synonomous',
  'accuracy',
  'period',
  'tarot',
  'predictions',
  'useful',
  'accurate',
  'cant',
  'shown',
  'accurate',
  'science',
  'useful',
  'apparently',
  'accurate',
  'values',
  'objective',
  'otherwise',
  'beside',
  'point',
  'tommy'],
 ['david',
  'mckissock',
  'blue',
  'ribbon',
  'panel',
  'members',
  'named',
  'news',
  'software',
  'vax',
  'vms',
  'vnews',
  'nntp',
  'posting',
  'host',
  'tm',
  'lerc',
  'nasa',
  'gov',
  'organization',
  'nasa',
  'lewis',
  'research',
  'center',
  'cleveland',
  'ohio',
  'lines',
  'following',
  'press',
  'release',
  'distributed',
  'april',
  'nasa',
  'headquarters',
  'space',
  'station',
  'redesign',
  'advisory',
  'members',
  'named',
  'along',
  'dr',
  'charles',
  'vest',
  'recently',
  'named',
  'vice',
  'president',
  'albert',
  'gore',
  'head',
  'advisory',
  'committee',
  'redesign',
  'space',
  'station',
  'nasa',
  'announced',
  'names',
  'representatives',
  'government',
  'industry',
  'academic',
  'experts',
  'across',
  'country',
  'participate',
  'independent',
  'review',
  'redesign',
  'options',
  'developed',
  'nasa',
  'extremely',
  'honored',
  'selected',
  'lead',
  'important',
  'review',
  'panel',
  'americas',
  'future',
  'science',
  'technology',
  'world',
  'leader',
  'space',
  'demands',
  'utmost',
  'attention',
  'care',
  'said',
  'vest',
  'assembled',
  'diverse',
  'panel',
  'experts',
  'believe',
  'bring',
  'appropriate',
  'measures',
  'insight',
  'integrity',
  'objectivity',
  'critical',
  'task',
  'advisory',
  'committee',
  'charged',
  'independently',
  'assessing',
  'various',
  'redesign',
  'options',
  'space',
  'station',
  'presented',
  'nasas',
  'redesign',
  'team',
  'proposing',
  'recommendations',
  'improve',
  'efficiency',
  'effectiveness',
  'space',
  'station',
  'program',
  'space',
  'station',
  'international',
  'partners',
  'also',
  'asked',
  'participate',
  'named',
  'later',
  'date',
  'advisory',
  'committee',
  'submit',
  'recommendations',
  'june',
  'advisory',
  'committee',
  'members',
  'named',
  'today',
  'include',
  'dr',
  'charles',
  'vest',
  'dr',
  'bobby',
  'alford',
  'president',
  'mit',
  'executive',
  'vp',
  'dean',
  'medicine',
  'baylor',
  'college',
  'medicine',
  'mr',
  'jay',
  'chabrow',
  'dr',
  'paul',
  'chu',
  'president',
  'jmr',
  'associates',
  'director',
  'texas',
  'center',
  'university',
  'houston',
  'dr',
  'ed',
  'crawley',
  'dr',
  'john',
  'fabian',
  'prof',
  'aero',
  'astro',
  'president',
  'ceo',
  'mit',
  'anser',
  'maj',
  'gen',
  'james',
  'fain',
  'dr',
  'edward',
  'fort',
  'deputy',
  'chief',
  'staff',
  'chancellor',
  'requirements',
  'headquarters',
  'north',
  'carolina',
  'usaf',
  'materials',
  'command',
  'state',
  'university',
  'dr',
  'mary',
  'good',
  'mr',
  'frederick',
  'hauck',
  'senior',
  'vp',
  'technology',
  'president',
  'international',
  'technical',
  'allied',
  'signal',
  'inc',
  'underwriters',
  'dr',
  'lou',
  'lanzerotti',
  'mr',
  'william',
  'lilly',
  'chair',
  'space',
  'sciences',
  'national',
  'academy',
  'public',
  'board',
  'national',
  'research',
  'administration',
  'council',
  'mr',
  'duane',
  'mcruer',
  'dr',
  'brad',
  'parkinson',
  'president',
  'systems',
  'technology',
  'prof',
  'astro',
  'aero',
  'stanford',
  'university',
  'dr',
  'robert',
  'seamans',
  'dr',
  'lee',
  'silver',
  'former',
  'nasa',
  'deputy',
  'admin',
  'keck',
  'foundation',
  'professor',
  'resource',
  'geology',
  'california',
  'institute',
  'technology',
  'dr',
  'albert',
  'bud',
  'wheelon',
  'retired',
  'ceo',
  'hughes',
  'aircraft'],
 ['ken',
  'linger',
  'bit',
  'system',
  'zone',
  'organization',
  'purdue',
  'university',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'week',
  'ago',
  'posted',
  'problem',
  'se',
  'megs',
  'true',
  'ram',
  'yet',
  'set',
  'extensions',
  'large',
  'amount',
  'memory',
  'total',
  'extensions',
  'system',
  'crash',
  'finder',
  'comes',
  'meant',
  'large',
  'amount',
  'fonts',
  'load',
  'sounds',
  'huge',
  'disk',
  'caches',
  'control',
  'panel',
  'apples',
  'memory',
  'control',
  'panel',
  'apples',
  'cache',
  'mode',
  'bit',
  'addressing',
  'extensions',
  'work',
  'others',
  'increase',
  'memory',
  'used',
  'methods',
  'mentioned',
  'well',
  'heres',
  'latest',
  'followup',
  'ran',
  'nows',
  'system',
  'profile',
  'got',
  'information',
  'memory',
  'info',
  'physical',
  'ram',
  'size',
  'logical',
  'ram',
  'size',
  'size',
  'low',
  'memory',
  'area',
  'virtual',
  'memory',
  'inactive',
  'addressing',
  'mode',
  'bit',
  'mode',
  'bit',
  'system',
  'zone',
  'absent',
  'parity',
  'ram',
  'capable',
  'growable',
  'system',
  'heap',
  'true',
  'temporary',
  'memory',
  'support',
  'present',
  'tempory',
  'memory',
  'support',
  'real',
  'tracked',
  'note',
  'bit',
  'system',
  'zone',
  'absent',
  'could',
  'problem',
  'turn',
  'ideas',
  'anyone',
  'help',
  'ken'],
 ['bill',
  'ray',
  'acutane',
  'fibromyalgia',
  'syndrome',
  'cfs',
  'organization',
  'louisiana',
  'tech',
  'university',
  'lines',
  'nntp',
  'posting',
  'host',
  'ee',
  'engr',
  'latech',
  'newsreader',
  'tin',
  'version',
  'pl',
  'daniel',
  'prince',
  'wrote',
  'think',
  'rename',
  'waco',
  'tx',
  'wacko',
  'tx',
  'know',
  'joke',
  'please',
  'remember',
  'people',
  'waco',
  'ask',
  'david',
  'koresh',
  'lunatic',
  'happened',
  'waco',
  'lovely',
  'town',
  'would',
  'think',
  'someone',
  'living',
  'home',
  'flakes',
  'nut',
  'would',
  'sensitive'],
 ['john',
  'kerney',
  'flyers',
  'notes',
  'keywords',
  'flyers',
  'whalers',
  'summary',
  'organization',
  'purdue',
  'university',
  'engineering',
  'computer',
  'network',
  'lines',
  'could',
  'someone',
  'post',
  'flyers',
  'record',
  'without',
  'eric',
  'lindros',
  'lineup',
  'guy',
  'trying',
  'compare',
  'quebec',
  'flyers',
  'trade',
  'dallas',
  'minnesota',
  'trade',
  'nfl',
  'hershel',
  'walker',
  'need',
  'stat',
  'back',
  'point',
  'eric',
  'one',
  'next',
  'great',
  'players',
  'thanks',
  'john'],
 ['sven',
  'guckes',
  'apple',
  'going',
  'ship',
  'cd',
  'originator',
  'mail',
  'reader',
  'elm',
  'pl',
  'organization',
  'free',
  'university',
  'berlin',
  'germany',
  'news',
  'reader',
  'nn',
  'lines',
  'writes',
  'cd',
  'external',
  'already',
  'shipping',
  'shipping',
  'quite',
  'awhile',
  'demand',
  'units',
  'high',
  'pretty',
  'rare',
  'hm',
  'ive',
  'got',
  'cd',
  'drive',
  'since',
  'ive',
  'also',
  'heard',
  'rumors',
  'bundled',
  'couple',
  'cds',
  'cant',
  'confirm',
  'indeed',
  'cds',
  'bundled',
  'usually',
  'get',
  'nine',
  'cds',
  'demos',
  'applications',
  'games',
  'photos',
  'etc',
  'compiled',
  'list',
  'posted',
  'alt',
  'cdrom',
  'post',
  'updated',
  'version',
  'list',
  'rsn',
  'sven'],
 ['john',
  'de',
  'armond',
  'fbi',
  'murders',
  'atf',
  'burns',
  'dividian',
  'organization',
  'dixie',
  'communications',
  'public',
  'access',
  'mouth',
  'south',
  'lines',
  'jim',
  'de',
  'arras',
  'writes',
  'believed',
  'along',
  'could',
  'let',
  'live',
  'embarrassment',
  'batf',
  'fbi',
  'wouldve',
  'severe',
  'remember',
  'suspicion',
  'tax',
  'evasion',
  'warrant',
  'witnesses',
  'except',
  'fbi',
  'information',
  'filtered',
  'fbi',
  'allow',
  'one',
  'remote',
  'controlled',
  'pool',
  'camera',
  'installed',
  'near',
  'building',
  'press',
  'couldve',
  'done',
  'job',
  'wouldve',
  'able',
  'back',
  'fbis',
  'story',
  'close',
  'video',
  'incurring',
  'risk',
  'press',
  'unless',
  'want',
  'public',
  'see',
  'something',
  'complete',
  'lack',
  'source',
  'information',
  'fbi',
  'really',
  'causes',
  'concern',
  'sick',
  'stomach',
  'getting',
  'sicker',
  'government',
  'apologists',
  'well',
  'put',
  'jim',
  'concerned',
  'medias',
  'complicity',
  'growing',
  'coverup',
  'imagine',
  'media',
  'outrage',
  'lawsuits',
  'investigations',
  'would',
  'emit',
  'government',
  'kept',
  'media',
  'away',
  'story',
  'particularly',
  'republican',
  'administration',
  'behind',
  'whats',
  'going',
  'lets',
  'look',
  'beyond',
  'initial',
  'blunder',
  'examine',
  'happened',
  'next',
  'im',
  'student',
  'human',
  'phychology',
  'particularly',
  'area',
  'psy',
  'ops',
  'ive',
  'found',
  'techniques',
  'useful',
  'business',
  'negotiations',
  'puts',
  'firmly',
  'amateur',
  'ranks',
  'amateur',
  'knows',
  'first',
  'thing',
  'sizing',
  'opponent',
  'psychological',
  'profile',
  'bet',
  'ass',
  'fbi',
  'professionally',
  'done',
  'profiles',
  'koresh',
  'koreshs',
  'behavior',
  'emminently',
  'predictable',
  'typical',
  'people',
  'move',
  'away',
  'civilization',
  'willing',
  'fight',
  'death',
  'preserve',
  'isolation',
  'would',
  'also',
  'typical',
  'given',
  'koreshs',
  'religious',
  'orientation',
  'individual',
  'interpret',
  'government',
  'assault',
  'apocalypse',
  'suicide',
  'acceptable',
  'alternative',
  'consumed',
  'apocalypse',
  'imho',
  'fbi',
  'knew',
  'decided',
  'days',
  'concentrated',
  'psy',
  'ops',
  'initiate',
  'apocalypse',
  'believe',
  'chose',
  'course',
  'action',
  'designed',
  'specifically',
  'push',
  'koresh',
  'edge',
  'publicly',
  'appearing',
  'acting',
  'reasonably',
  'knew',
  'koresh',
  'considered',
  'tanks',
  'chariots',
  'fire',
  'mentioned',
  'book',
  'revelations',
  'knew',
  'sending',
  'tanks',
  'oops',
  'combat',
  'engineering',
  'vehicles',
  'obstensibly',
  'perform',
  'gas',
  'insertions',
  'love',
  'newspeak',
  'would',
  'push',
  'edge',
  'look',
  'supporting',
  'evidence',
  'koreshs',
  'attorney',
  'mentioned',
  'tv',
  'earlier',
  'today',
  'one',
  'koreshs',
  'major',
  'concern',
  'biblical',
  'role',
  'tanks',
  'stationed',
  'around',
  'compound',
  'fbi',
  'reno',
  'larry',
  'king',
  'last',
  'night',
  'news',
  'conference',
  'morning',
  'claimed',
  'listening',
  'devices',
  'compound',
  'true',
  'knew',
  'actions',
  'driving',
  'brink',
  'knew',
  'pushing',
  'davidians',
  'toward',
  'mass',
  'suicide',
  'rational',
  'reasonable',
  'agency',
  'interested',
  'killing',
  'people',
  'would',
  'first',
  'sign',
  'preparations',
  'suicide',
  'pulled',
  'completely',
  'back',
  'would',
  'gotten',
  'rid',
  'armor',
  'instead',
  'continued',
  'gas',
  'insertion',
  'right',
  'point',
  'flames',
  'appeared',
  'image',
  'remain',
  'etched',
  'mind',
  'tank',
  'strutting',
  'back',
  'forth',
  'front',
  'burning',
  'compound',
  'gloating',
  'kill',
  'lets',
  'step',
  'back',
  'assess',
  'thing',
  'could',
  'ended',
  'without',
  'bloodshed',
  'technique',
  'would',
  'required',
  'law',
  'enforcement',
  'agency',
  'interested',
  'enforcing',
  'law',
  'preservation',
  'life',
  'instead',
  'achieving',
  'military',
  'victory',
  'vengence',
  'way',
  'nabbed',
  'koresh',
  'simply',
  'announced',
  'pull',
  'back',
  'abandoned',
  'assault',
  'torn',
  'concertina',
  'wire',
  'removed',
  'armor',
  'maintained',
  'covert',
  'surveillance',
  'compound',
  'exploited',
  'ego',
  'flush',
  'exploiting',
  'ego',
  'would',
  'simple',
  'simple',
  'invite',
  'two',
  'tabloid',
  'talk',
  'shows',
  'come',
  'tv',
  'tell',
  'whipped',
  'us',
  'government',
  'would',
  'something',
  'could',
  'resisted',
  'could',
  'nabbed',
  'left',
  'compound',
  'simple',
  'clean',
  'safe',
  'would',
  'required',
  'fbi',
  'execute',
  'tactical',
  'retreat',
  'would',
  'deprived',
  'revenge',
  'sought',
  'totally',
  'question',
  'without',
  'testesterone',
  'floating',
  'around',
  'jannet',
  'reno',
  'show',
  'world',
  'big',
  'balls',
  'yesterday',
  'sad',
  'sad',
  'day',
  'american',
  'system',
  'sick',
  'soul',
  'john',
  'john',
  'de',
  'armond',
  'wd',
  'oqc',
  'interested',
  'high',
  'performance',
  'mobility',
  'performance',
  'engineering',
  'magazine',
  'tm',
  'interested',
  'high',
  'tech',
  'computers',
  'marietta',
  'ga',
  'send',
  'ur',
  'snail',
  'mail',
  'address',
  'free',
  'sample',
  'mag',
  'lee',
  'harvey',
  'oswald',
  'ya',
  'need',
  'ya'],
 ['steve',
  'dyer',
  'good',
  'grief',
  'candida',
  'albicans',
  'organization',
  'dyer',
  'computer',
  'consulting',
  'cambridge',
  'article',
  'jon',
  'noring',
  'writes',
  'convincing',
  'evidence',
  'disease',
  'exists',
  'theres',
  'lot',
  'evidence',
  'hasnt',
  'adequately',
  'gathered',
  'published',
  'way',
  'convince',
  'die',
  'hard',
  'melancholic',
  'skeptics',
  'quiver',
  'everytime',
  'word',
  'anecdote',
  'empirical',
  'used',
  'snort',
  'ah',
  'go',
  'sinuses',
  'example',
  'dr',
  'ivker',
  'wrote',
  'book',
  'sinus',
  'survival',
  'always',
  'gives',
  'oh',
  'wow',
  'classic',
  'textbook',
  'hey',
  'laughed',
  'einstein',
  'treatment',
  'systemic',
  'anti',
  'fungal',
  'nizoral',
  'new',
  'patients',
  'theyve',
  'braod',
  'spectrum',
  'anti',
  'biotics',
  'times',
  'last',
  'two',
  'years',
  'hes',
  'kept',
  'record',
  'results',
  'patients',
  'found',
  'patients',
  'get',
  'significant',
  'relief',
  'allergic',
  'sinus',
  'symptoms',
  'course',
  'beginning',
  'program',
  'yeah',
  'ill',
  'bet',
  'tomorrow',
  'world',
  'listen',
  'uncontrolled',
  'studies',
  'like',
  'worthless',
  'case',
  'reported',
  'weeks',
  'ago',
  'developing',
  'classic',
  'symptoms',
  'outlined',
  'yeast',
  'connection',
  'agree',
  'poorly',
  'written',
  'book',
  'extreme',
  'sensitivity',
  'plastics',
  'vapors',
  'etc',
  'never',
  'started',
  'november',
  'within',
  'one',
  'week',
  'full',
  'dosage',
  'sporanox',
  'sensitivity',
  'chemicals',
  'fully',
  'disappeared',
  'sit',
  'couch',
  'home',
  'without',
  'dying',
  'two',
  'minutes',
  'im',
  'also',
  'greatly',
  'improved',
  'areas',
  'well',
  'im',
  'sure',
  'sound',
  'like',
  'typical',
  'hysteric',
  'hypochondriac',
  'responds',
  'miracle',
  'cures',
  'course',
  'allergy',
  'symptoms',
  'etc',
  'especially',
  'allergic',
  'molds',
  'yeasts',
  'etc',
  'doesnt',
  'take',
  'rocket',
  'scientist',
  'figure',
  'one',
  'excessive',
  'colonization',
  'yeast',
  'body',
  'natural',
  'allergy',
  'yeasts',
  'threshold',
  'would',
  'reached',
  'would',
  'perceptible',
  'symptoms',
  'yeah',
  'makes',
  'sense',
  'course',
  'taken',
  'seriously',
  'snort',
  'also',
  'yeast',
  'produce',
  'toxins',
  'various',
  'sorts',
  'dont',
  'rocket',
  'scientist',
  'realize',
  'toxins',
  'cause',
  'problems',
  'people',
  'yeah',
  'sounds',
  'reasonable',
  'course',
  'question',
  'whether',
  'person',
  'immune',
  'compromised',
  'tests',
  'showed',
  'years',
  'antibiotics',
  'nutritionally',
  'deficiencies',
  'stress',
  'infections',
  'allergies',
  'etc',
  'oh',
  'really',
  'tests',
  'immune',
  'compromised',
  'ass',
  'like',
  'credulous',
  'malingerer',
  'psychiatric',
  'syndrome',
  'develop',
  'excessive',
  'yeast',
  'colonization',
  'somewhere',
  'body',
  'tough',
  'question',
  'answer',
  'since',
  'testing',
  'excessive',
  'yeast',
  'colonization',
  'easy',
  'one',
  'almost',
  'take',
  'empirical',
  'approach',
  'diagnosis',
  'fortunately',
  'sporanox',
  'relatively',
  'safe',
  'unlike',
  'past',
  'anti',
  'fungals',
  'still',
  'careful',
  'however',
  'theres',
  'reason',
  'longer',
  'withhold',
  'sporanox',
  'treatment',
  'empirical',
  'reasons',
  'know',
  'shame',
  'drug',
  'like',
  'itraconazole',
  'misused',
  'way',
  'ridiculously',
  'expensive',
  'potentially',
  'toxic',
  'trouble',
  'isnt',
  'toxic',
  'enough',
  'gets',
  'abused',
  'quacks',
  'btw',
  'would',
  'say',
  'try',
  'nystatin',
  'unfortunately',
  'yeast',
  'grows',
  'hyphae',
  'deep',
  'tissue',
  'nystatin',
  'permanent',
  'affect',
  'youll',
  'find',
  'lot',
  'people',
  'nystatin',
  'time',
  'good',
  'thing',
  'nystatin',
  'relatively',
  'cheap',
  'taken',
  'orally',
  'non',
  'toxic',
  'oral',
  'nystatin',
  'without',
  'systemic',
  'effect',
  'unless',
  'given',
  'iv',
  'would',
  'without',
  'effect',
  'sinuses',
  'wish',
  'quacks',
  'would',
  'first',
  'iv',
  'nystatin',
  'amphotericin',
  'people',
  'like',
  'would',
  'solve',
  'yeast',
  'problem',
  'summary',
  'appreciate',
  'attempts',
  'desire',
  'keep',
  'medicine',
  'right',
  'road',
  'methinks',
  'hold',
  'firmly',
  'party',
  'line',
  'academics',
  'havent',
  'trenches',
  'long',
  'enough',
  'actually',
  'treating',
  'patients',
  'anybody',
  'doctors',
  'included',
  'said',
  'face',
  'evidence',
  'yeast',
  'connection',
  'cannot',
  'guarantee',
  'safety',
  'incompetence',
  'ripping',
  'lips',
  'justified',
  'far',
  'concerned',
  'perhaps',
  'little',
  'haldol',
  'would',
  'go',
  'long',
  'way',
  'towards',
  'ameliorating',
  'symptoms',
  'paying',
  'treatment',
  'pocket',
  'id',
  'hate',
  'think',
  'insurance',
  'premiums',
  'going',
  'towards',
  'steve',
  'dyer',
  'aka',
  'ima',
  'harvard',
  'rayssd',
  'linus',
  'spdcc',
  'dyer'],
 ['cochrane',
  'james',
  'shapleigh',
  'change',
  'name',
  'organization',
  'georgia',
  'institute',
  'technology',
  'lines',
  'article',
  'thomas',
  'parsli',
  'writes',
  'make',
  'new',
  'newsgroup',
  'called',
  'talk',
  'politics',
  'guns',
  'paranoid',
  'talk',
  'politics',
  'guns',
  'theyr',
  'take',
  'away',
  'move',
  'postings',
  'waco',
  'burn',
  'guess',
  'stop',
  'posting',
  'newsgroup',
  'glad',
  'youre',
  'trying',
  'save',
  'us',
  'evil',
  'goverment',
  'would',
  'mail',
  'regular',
  'mail',
  'lets',
  'say',
  'people',
  'thomas',
  'parsli',
  'everybody',
  'talked',
  'evil',
  'arising',
  'europe',
  'labeled',
  'reactionary',
  'late',
  'could',
  'negotiate',
  'hitler',
  'trust',
  'keep',
  'end',
  'bargain',
  'least',
  'thats',
  'stalin',
  'chamberlin',
  'thought',
  'guess',
  'forgot',
  'teach',
  'country',
  'overrun',
  'germans',
  'wwii',
  'eh',
  'thomas',
  'im',
  'sorry',
  'consider',
  'outrage',
  'government',
  'excesses',
  'everytime',
  'israelis',
  'conduct',
  'mass',
  'operation',
  'terrorist',
  'group',
  'actively',
  'killing',
  'citizens',
  'soldiers',
  'world',
  'gets',
  'indignant',
  'ok',
  'us',
  'assault',
  'citizens',
  'religous',
  'minority',
  'accused',
  'sexual',
  'deviation',
  'hoarding',
  'weapons',
  'find',
  'real',
  'ironic',
  'happened',
  'day',
  'al',
  'gore',
  'arrived',
  'poland',
  'recognize',
  'sacrifices',
  'made',
  'warsaw',
  'ghetto',
  'justifications',
  'raised',
  'armed',
  'assault',
  'black',
  'clad',
  'troops',
  'armor',
  'support',
  'james',
  'cochrane',
  'danger',
  'doubt',
  'run',
  'space',
  'circles',
  'scream',
  'shout',
  'rent'],
 ['tom',
  'haapanen',
  'rfd',
  'comp',
  'os',
  'ms',
  'windows',
  'nt',
  'misc',
  'setup',
  'organization',
  'software',
  'metrics',
  'inc',
  'lines',
  'nntp',
  'posting',
  'host',
  'rodan',
  'uu',
  'net',
  'official',
  'request',
  'discussion',
  'rfd',
  'creation',
  'two',
  'new',
  'newsgroups',
  'microsoft',
  'windows',
  'nt',
  'second',
  'rfd',
  'replacing',
  'one',
  'originally',
  'posted',
  'january',
  'never',
  'taken',
  'vote',
  'proposed',
  'groups',
  'described',
  'name',
  'comp',
  'os',
  'ms',
  'windows',
  'nt',
  'setup',
  'status',
  'unmoderated',
  'purpose',
  'discussions',
  'setting',
  'installing',
  'windows',
  'nt',
  'system',
  'peripheral',
  'compatability',
  'issues',
  'windows',
  'nt',
  'name',
  'comp',
  'os',
  'ms',
  'windows',
  'nt',
  'misc',
  'status',
  'unmoderated',
  'purpose',
  'miscellaneous',
  'non',
  'programming',
  'discussions',
  'using',
  'windows',
  'nt',
  'including',
  'issues',
  'security',
  'networking',
  'features',
  'console',
  'mode',
  'windows',
  'win',
  'compatability',
  'rationale',
  'microsoft',
  'nt',
  'newest',
  'member',
  'microsoft',
  'windows',
  'family',
  'operating',
  'systems',
  'operating',
  'environments',
  'wish',
  'argue',
  'meaning',
  'os',
  'family',
  'ranges',
  'modular',
  'windows',
  'windows',
  'windows',
  'workgroups',
  'windows',
  'nt',
  'high',
  'end',
  'date',
  'microsoft',
  'shipped',
  'beta',
  'copies',
  'pre',
  'release',
  'sdks',
  'windows',
  'nt',
  'actual',
  'release',
  'slated',
  'may',
  'june',
  'windows',
  'nt',
  'entirely',
  'new',
  'design',
  'internally',
  'shares',
  'application',
  'programming',
  'interface',
  'members',
  'windows',
  'family',
  'win',
  'api',
  'includes',
  'win',
  'api',
  'used',
  'win',
  'dows',
  'win',
  'api',
  'subset',
  'win',
  'less',
  'threads',
  'networking',
  'security',
  'used',
  'create',
  'bit',
  'applications',
  'windows',
  'user',
  'interface',
  'also',
  'practically',
  'identical',
  'windows',
  'addition',
  'logins',
  'features',
  'uses',
  'program',
  'manager',
  'file',
  'manager',
  'applets',
  'generally',
  'pre',
  'sents',
  'identical',
  'appearance',
  'user',
  'many',
  'announced',
  'windows',
  'nt',
  'applications',
  'ports',
  'existing',
  'windows',
  'apps',
  'nt',
  'also',
  'runs',
  'existing',
  'applications',
  'thus',
  'appears',
  'logical',
  'windows',
  'nt',
  'share',
  'following',
  'groups',
  'members',
  'windows',
  'family',
  'comp',
  'os',
  'ms',
  'windows',
  'apps',
  'comp',
  'os',
  'ms',
  'windows',
  'programmer',
  'tools',
  'comp',
  'os',
  'ms',
  'windows',
  'programmer',
  'misc',
  'comp',
  'os',
  'ms',
  'windows',
  'programmer',
  'win',
  'following',
  'groups',
  'also',
  'clearly',
  'applicable',
  'windows',
  'nt',
  'well',
  'windows',
  'comp',
  'os',
  'ms',
  'windows',
  'announce',
  'comp',
  'os',
  'ms',
  'windows',
  'advocacy',
  'conclusion',
  'clear',
  'argument',
  'separation',
  'windows',
  'windows',
  'nt',
  'hierarchies',
  'different',
  'internal',
  'structures',
  'windows',
  'windows',
  'nt',
  'yet',
  'operating',
  'systems',
  'os',
  'macintosh',
  'os',
  'xenix',
  'coherent',
  'undergone',
  'major',
  'rewrites',
  'without',
  'split',
  'separate',
  'newsgroup',
  'hierarchies',
  'windows',
  'due',
  'major',
  'rewrite',
  'fully',
  'bit',
  'protected',
  'mode',
  'dos',
  'built',
  'next',
  'generation',
  'windows',
  'chicago',
  'debuts',
  'next',
  'year',
  'surely',
  'remain',
  'hierarchy',
  'would',
  'jus',
  'tification',
  'separating',
  'windows',
  'nt',
  'windows',
  'versions',
  'discussion',
  'period',
  'discussion',
  'period',
  'run',
  'april',
  'may',
  'voting',
  'cfv',
  'call',
  'votes',
  'issued',
  'around',
  'may',
  'based',
  'feedback',
  'received',
  'discussion',
  'period',
  'votes',
  'accepted',
  'prior',
  'cfv',
  'tom',
  'haapanen',
  'software',
  'metrics',
  'inc',
  'waterloo',
  'ont',
  'stick',
  'index',
  'fingers',
  'corners',
  'mouth',
  'pull',
  'thats',
  'corrado',
  'makes',
  'feel',
  'car',
  'january'],
 ['nick',
  'pettefar',
  'bmw',
  'battery',
  'nntp',
  'posting',
  'host',
  'bmdhh',
  'organization',
  'bnr',
  'europe',
  'ltd',
  'maidenhead',
  'uk',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'keith',
  'hanlan',
  'wed',
  'apr',
  'gmt',
  'wibbled',
  'article',
  'craig',
  'vechorik',
  'writes',
  'remember',
  'correctly',
  'reason',
  'bmws',
  'come',
  'expensive',
  'relatively',
  'worthless',
  'short',
  'lived',
  'varda',
  'batteries',
  'cause',
  'bmw',
  'owns',
  'controling',
  'interest',
  'battery',
  'manufacturer',
  'whats',
  'wrong',
  'bmw',
  'battery',
  'ive',
  'never',
  'problems',
  'know',
  'numerous',
  'people',
  'still',
  'using',
  'original',
  'battery',
  'year',
  'old',
  'beemers',
  'kay',
  'rs',
  'still',
  'original',
  'battery',
  'shes',
  'ok',
  'nick',
  'sufficiently',
  'well',
  'charged',
  'biker',
  'dod',
  'concise',
  'oxford',
  'mlud',
  'nick',
  'pettefar',
  'currently',
  'incarcerated',
  'bnr',
  'maidenhead',
  'united',
  'kingdom',
  'bmw',
  'rs',
  'kay',
  'pres',
  'pbwasoh',
  'uk',
  'bs'],
 ['rob',
  'de',
  'winter',
  'wanted',
  'symantec',
  'address',
  'originator',
  'organization',
  'philips',
  'research',
  'laboratories',
  'eindhoven',
  'netherlands',
  'lines',
  'nothing',
  'beats',
  'skiing',
  'want',
  'real',
  'fun',
  'holidays',
  'rob',
  'de',
  'winter',
  'philips',
  'research',
  'ist',
  'building',
  'wl',
  'box',
  'ja',
  'eindhoven',
  'netherlands',
  'tel',
  'mail'],
 ['tempest',
  'cyclone',
  'info',
  'needed',
  'organization',
  'western',
  'kentucky',
  'university',
  'bowling',
  'green',
  'ky',
  'lines',
  'anyone',
  'information',
  'upcoming',
  'new',
  'computers',
  'cyclone',
  'tempest',
  'need',
  'info',
  'anything',
  'would',
  'greatly',
  'appreciated',
  'thanks',
  'shawn'],
 ['shaw',
  'goh',
  'non',
  'turbo',
  'speed',
  'organization',
  'university',
  'western',
  'australia',
  'lines',
  'nntp',
  'posting',
  'host',
  'tartarus',
  'uwa',
  'au',
  'newsreader',
  'tin',
  'pl',
  'nic',
  'percival',
  'wrote',
  'taken',
  'delivery',
  'mhz',
  'dx',
  'machine',
  'nice',
  'one',
  'query',
  'landmark',
  'speed',
  'turbo',
  'something',
  'mhz',
  'thats',
  'problem',
  'problem',
  'speed',
  'turbo',
  'mhz',
  'equivalent',
  'car',
  'terms',
  'nice',
  'porsche',
  'button',
  'turns',
  'skateboard',
  'anyone',
  'clue',
  'determines',
  'relative',
  'performance',
  'turbo',
  'vs',
  'non',
  'turbo',
  'would',
  'like',
  'set',
  'give',
  'landmark',
  'speed',
  'mhz',
  'turbo',
  'cheers',
  'halved',
  'turbo',
  'ie',
  'mhz'],
 ['zia',
  'manji',
  'help',
  'powerbook',
  'caere',
  'typist',
  'plus',
  'graphics',
  'hand',
  'scanner',
  'article',
  'castle',
  'organization',
  'edinburgh',
  'university',
  'lines',
  'nntp',
  'posting',
  'host',
  'cs',
  'utexas',
  'edited',
  'forwarded',
  'csm',
  'announce',
  'moderator',
  'please',
  'respond',
  'originator',
  'email',
  'also',
  'needs',
  'besides',
  'cable',
  'works',
  'phone',
  'number',
  'applelink',
  'address',
  'caere',
  'smile',
  'pat',
  'back',
  'please',
  'beg',
  'know',
  'anything',
  'caere',
  'typist',
  'plus',
  'graphics',
  'hand',
  'scanner',
  'please',
  'read',
  'solve',
  'problem',
  'truely',
  'grateful',
  'rest',
  'life',
  'problem',
  'caere',
  'typist',
  'plus',
  'graphics',
  'hand',
  'scanner',
  'connect',
  'powerbook',
  'cable',
  'scanner',
  'fit',
  'scsi',
  'port',
  'powerbook',
  'got',
  'cable',
  'assembled',
  'adapt',
  'original',
  'cable',
  'fit',
  'scsi',
  'port',
  'however',
  'turned',
  'computer',
  'scsi',
  'mode',
  'treated',
  'hard',
  'disk',
  'asked',
  'engineer',
  'london',
  'assembled',
  'new',
  'cable',
  'idiot',
  'sheer',
  'laziness',
  'taken',
  'weeks',
  'yet',
  'solve',
  'problem',
  'aware',
  'caere',
  'co',
  'us',
  'solution',
  'know',
  'cable',
  'solve',
  'problem',
  'please',
  'help',
  'know',
  'solution',
  'forever',
  'grateful',
  'mail',
  'address',
  'wrong',
  'side',
  'road',
  'syndrom',
  'us',
  'thats',
  'thanking',
  'advance',
  'zia'],
 ['curt',
  'howland',
  'auction',
  'dianas',
  'bra',
  'organization',
  'nasa',
  'science',
  'internet',
  'project',
  'office',
  'lines',
  'article',
  'curtis',
  'jackson',
  'writes',
  'next',
  'thing',
  'know',
  'ill',
  'see',
  'bikes',
  'geeky',
  'stickers',
  'parked',
  'outside',
  'local',
  'white',
  'wine',
  'quiche',
  'fern',
  'bar',
  'hey',
  'like',
  'quiche',
  'even',
  'look',
  'note',
  'spell',
  'assumed',
  'correctly',
  'really',
  'sniff',
  'tough',
  'guys',
  'mommy',
  'curtis',
  'making',
  'fun',
  'ferns'],
 ['dan',
  'day',
  'warning',
  'please',
  'read',
  'nntp',
  'posting',
  'host',
  'mudd',
  'se',
  'houston',
  'geoquest',
  'slb',
  'com',
  'organization',
  'geoquest',
  'system',
  'inc',
  'houston',
  'lines',
  'article',
  'jason',
  'hanson',
  'writes',
  'article',
  'erik',
  'velapoldi',
  'happened',
  'year',
  'ago',
  'washington',
  'dc',
  'beltway',
  'snot',
  'nosed',
  'drunken',
  'kids',
  'decided',
  'would',
  'really',
  'cool',
  'throw',
  'huge',
  'rocks',
  'cars',
  'overpass',
  'four',
  'five',
  'cars',
  'hit',
  'several',
  'serious',
  'injuries',
  'sadly',
  'year',
  'ago',
  'kids',
  'tossed',
  'rock',
  'overpass',
  'near',
  'eau',
  'claire',
  'wisconsin',
  'killed',
  'driver',
  'believe',
  'schoolteacher',
  'minnesota',
  'houston',
  'couple',
  'years',
  'ago',
  'young',
  'pregnant',
  'woman',
  'killed',
  'similar',
  'manner'],
 ['timothy',
  'may',
  'text',
  'white',
  'house',
  'announcement',
  'clipper',
  'chip',
  'encryption',
  'organization',
  'netcom',
  'line',
  'communication',
  'services',
  'guest',
  'newsreader',
  'tin',
  'pl',
  'distribution',
  'na',
  'lines',
  'ted',
  'dunning',
  'wrote',
  'nobody',
  'seems',
  'noticed',
  'clipper',
  'chip',
  'must',
  'development',
  'considerably',
  'longer',
  'months',
  'clinton',
  'president',
  'something',
  'choosing',
  'choosing',
  'bush',
  'clinton',
  'would',
  'changed',
  'slightest',
  'works',
  'time',
  'actually',
  'many',
  'us',
  'noted',
  'noted',
  'program',
  'started',
  'least',
  'years',
  'ago',
  'contracts',
  'vlsi',
  'technology',
  'microtoxin',
  'let',
  'least',
  'months',
  'ago',
  'production',
  'chips',
  'well',
  'underway',
  'forth',
  'nobody',
  'know',
  'claimed',
  'clinton',
  'intitiated',
  'program',
  'chose',
  'go',
  'ahead',
  'tim',
  'may',
  'timothy',
  'may',
  'crypto',
  'anarchy',
  'encryption',
  'digital',
  'money',
  'anonymous',
  'networks',
  'digital',
  'pseudonyms',
  'zero',
  'knowledge',
  'reputations',
  'information',
  'markets',
  'aptos',
  'ca',
  'black',
  'markets',
  'collapse',
  'governments',
  'higher',
  'power',
  'public',
  'key',
  'pgp',
  'mailsafe',
  'available'],
 ['adam',
  'shostack',
  'fundamentalism',
  'organization',
  'aiken',
  'computation',
  'lab',
  'harvard',
  'university',
  'lines',
  'article',
  'mohammad',
  'razi',
  'khan',
  'writes',
  'one',
  'biggest',
  'complaints',
  'using',
  'word',
  'fundamentalist',
  'least',
  'people',
  'speak',
  'muslime',
  'fundamentalists',
  'muslim',
  'nobody',
  'defines',
  'jewish',
  'christan',
  'fundamentalist',
  'wonder',
  'equal',
  'definition',
  'would',
  'takers',
  'american',
  'press',
  'routinely',
  'uses',
  'word',
  'fundamentalist',
  'refer',
  'christians',
  'jews',
  'christian',
  'fundementalists',
  'often',
  'refered',
  'context',
  'anti',
  'abortion',
  'protests',
  'american',
  'media',
  'also',
  'uses',
  'fundamentalist',
  'refer',
  'jews',
  'live',
  'judea',
  'samaria',
  'gaza',
  'jew',
  'follows',
  'torah',
  'adam',
  'adam',
  'shostack',
  'budget',
  'big',
  'enough',
  'drugs',
  'sexual',
  'favors',
  'sure',
  'wouldnt',
  'waste',
  'members',
  'congress',
  'john',
  'perry',
  'barlow'],
 ['jonathan',
  'david',
  'fields',
  'misc',
  'stuff',
  'sale',
  'organization',
  'ohio',
  'state',
  'university',
  'dept',
  'computer',
  'info',
  'science',
  'lines',
  'distribution',
  'usa',
  'nntp',
  'posting',
  'host',
  'frigate',
  'cis',
  'ohio',
  'state',
  'misc',
  'items',
  'sale',
  'mount',
  'plate',
  'sony',
  'model',
  'cpm',
  'mounting',
  'plate',
  'sony',
  'portable',
  'cd',
  'players',
  'portable',
  'plugs',
  'car',
  'lighter',
  'snaps',
  'onto',
  'bottom',
  'sony',
  'cd',
  'player',
  'portable',
  'cd',
  'player',
  'perfect',
  'condition',
  'also',
  'throw',
  'cassette',
  'adapter',
  'condition',
  'paid',
  'asking',
  'car',
  'speakers',
  'sherwood',
  'two',
  'way',
  'car',
  'speakers',
  'car',
  'months',
  'inch',
  'excellent',
  'condition',
  'paid',
  'asking',
  'inch',
  'factory',
  'speakers',
  'toyota',
  'excellent',
  'condition',
  'asking',
  'nintendo',
  'nintendo',
  'game',
  'boy',
  'light',
  'boy',
  'tetris',
  'super',
  'mario',
  'land',
  'gameboy',
  'nfl',
  'football',
  'castlevania',
  'adventure',
  'hyper',
  'lode',
  'runner',
  'years',
  'games',
  'old',
  'working',
  'condition',
  'asking',
  'accessories',
  'whole',
  'internet',
  'whole',
  'internet',
  'users',
  'guide',
  'catalog',
  'ed',
  'krol',
  'book',
  'guide',
  'using',
  'internet',
  'fing',
  'information',
  'resources',
  'paid',
  'asking',
  'microsoft',
  'never',
  'used',
  'came',
  'computer',
  'asking',
  'visual',
  'basic',
  'microsoft',
  'came',
  'computer',
  'never',
  'used',
  'asking',
  'word',
  'windows',
  'thanks',
  'jonathan',
  'fields'],
 ['richard',
  'krehbiel',
  'ide',
  'vs',
  'scsi',
  'reply',
  'message',
  'apr',
  'lines',
  'organization',
  'grebyn',
  'timesharing',
  'inc',
  'article',
  'mark',
  'ashley',
  'writes',
  'first',
  'huge',
  'software',
  'packages',
  'files',
  'produce',
  'ide',
  'may',
  'longer',
  'sufficient',
  'mb',
  'limit',
  'ive',
  'seen',
  'listing',
  'seagate',
  'ide',
  'hard',
  'drive',
  'second',
  'rumor',
  'microsoft',
  'recognizes',
  'importance',
  'scsi',
  'support',
  'soon',
  'im',
  'sure',
  'dos',
  'win',
  'nt',
  'windows',
  'nt',
  'already',
  'supports',
  'scsi',
  'variety',
  'adapters',
  'disk',
  'tape',
  'cd',
  'rom',
  'os',
  'richard',
  'krehbiel',
  'os',
  'amigados',
  'comes',
  'along'],
 ['serdar',
  'argic',
  'million',
  'muslims',
  'perished',
  'butchery',
  'hands',
  'armenians',
  'reply',
  'serdar',
  'argic',
  'distribution',
  'world',
  'lines',
  'article',
  'mikhail',
  'verbitsky',
  'writes',
  'actually',
  'jarmo',
  'permanent',
  'resident',
  'killfile',
  'anyone',
  'care',
  'speculate',
  'ill',
  'let',
  'rest',
  'net',
  'judge',
  'merits',
  'million',
  'turks',
  'perished',
  'butchery',
  'hands',
  'armenians',
  'genocide',
  'involved',
  'killing',
  'innocents',
  'forcible',
  'deportation',
  'russian',
  'armenia',
  'persecuted',
  'banished',
  'slaughtered',
  'much',
  'ottoman',
  'army',
  'engaged',
  'world',
  'war',
  'genocide',
  'treaty',
  'defines',
  'genocide',
  'acting',
  'specific',
  'intent',
  'destroy',
  'whole',
  'substantial',
  'part',
  'national',
  'ethnic',
  'racial',
  'religious',
  'group',
  'history',
  'shows',
  'soviet',
  'armenian',
  'government',
  'intended',
  'eradicate',
  'muslim',
  'population',
  'million',
  'turks',
  'kurds',
  'exterminated',
  'armenians',
  'international',
  'diplomats',
  'ottoman',
  'empire',
  'time',
  'including',
  'ambassador',
  'bristol',
  'denounced',
  'soviet',
  'armenian',
  'governments',
  'policy',
  'massacre',
  'kurds',
  'turks',
  'tartars',
  'blood',
  'thirsty',
  'leaders',
  'soviet',
  'armenian',
  'government',
  'time',
  'personally',
  'involved',
  'extermination',
  'muslims',
  'turkish',
  'genocide',
  'museums',
  'turkiye',
  'honor',
  'died',
  'turkish',
  'massacres',
  'perpetrated',
  'armenians',
  'eyewitness',
  'accounts',
  'historical',
  'documents',
  'established',
  'beyond',
  'doubt',
  'massacres',
  'muslim',
  'people',
  'war',
  'planned',
  'premeditated',
  'aim',
  'policy',
  'clearly',
  'extermination',
  'turks',
  'soviet',
  'armenian',
  'territories',
  'muslims',
  'van',
  'bitlis',
  'mus',
  'erzurum',
  'erzincan',
  'districts',
  'wives',
  'children',
  'taken',
  'mountains',
  'killed',
  'massacres',
  'trabzon',
  'tercan',
  'yozgat',
  'adana',
  'organized',
  'perpetrated',
  'blood',
  'thirsty',
  'leaders',
  'soviet',
  'armenian',
  'government',
  'principal',
  'organizers',
  'slaughter',
  'innocent',
  'muslims',
  'dro',
  'antranik',
  'armen',
  'garo',
  'hamarosp',
  'daro',
  'pastirmadjian',
  'keri',
  'karakin',
  'haig',
  'pajise',
  'liantz',
  'silikian',
  'source',
  'bristol',
  'papers',
  'general',
  'correspondence',
  'container',
  'bristol',
  'bradley',
  'letter',
  'september',
  'absolute',
  'first',
  'hand',
  'information',
  'armenians',
  'caucasus',
  'attacked',
  'tartar',
  'turkish',
  'villages',
  'utterly',
  'defenseless',
  'bombarded',
  'villages',
  'artillery',
  'murder',
  'inhabitants',
  'pillage',
  'village',
  'often',
  'burn',
  'village',
  'sources',
  'ottoman',
  'state',
  'ministry',
  'war',
  'islam',
  'ahalinin',
  'ducar',
  'olduklari',
  'mezalim',
  'hakkinda',
  'vesaike',
  'mustenid',
  'malumat',
  'istanbul',
  'french',
  'version',
  'documents',
  'relatifs',
  'aux',
  'atrocites',
  'commises',
  'par',
  'les',
  'armeniens',
  'sur',
  'la',
  'population',
  'musulmane',
  'istanbul',
  'latin',
  'script',
  'turkozu',
  'ed',
  'osmanli',
  'sovyet',
  'belgeleriyle',
  'ermeni',
  'mezalimi',
  'ankara',
  'addition',
  'basar',
  'ed',
  'ermenilerden',
  'gorduklerimiz',
  'ankara',
  'edited',
  'author',
  'ermeniler',
  'hakkinda',
  'makaleler',
  'derlemeler',
  'ankara',
  'askeri',
  'tarih',
  'belgeleri',
  'vol',
  'december',
  'document',
  'numbered',
  'askeri',
  'tarih',
  'belgeleri',
  'vol',
  'december',
  'document',
  'numbered',
  'capable',
  'fighting',
  'taken',
  'away',
  'beginning',
  'excuse',
  'forced',
  'labor',
  'road',
  'construction',
  'taken',
  'direction',
  'sarikamis',
  'annihilated',
  'russian',
  'army',
  'withdrew',
  'part',
  'remaining',
  'people',
  'destroyed',
  'armenian',
  'massacres',
  'cruelties',
  'thrown',
  'wells',
  'locked',
  'houses',
  'burned',
  'killed',
  'bayonets',
  'swords',
  'places',
  'selected',
  'butchering',
  'spots',
  'bellies',
  'torn',
  'open',
  'lungs',
  'pulled',
  'girls',
  'women',
  'hanged',
  'hair',
  'subjected',
  'every',
  'conceivable',
  'abominable',
  'act',
  'small',
  'part',
  'people',
  'spared',
  'abominations',
  'far',
  'worse',
  'cruelty',
  'inquisition',
  'resembled',
  'living',
  'dead',
  'suffering',
  'temporary',
  'insanity',
  'dire',
  'poverty',
  'lived',
  'frightful',
  'experiences',
  'subjected',
  'including',
  'women',
  'children',
  'persons',
  'discovered',
  'far',
  'exceed',
  'one',
  'thousand',
  'five',
  'hundred',
  'erzincan',
  'thirty',
  'thousand',
  'erzurum',
  'fields',
  'erzincan',
  'erzurum',
  'untilled',
  'everything',
  'people',
  'taken',
  'away',
  'found',
  'destitute',
  'situation',
  'present',
  'time',
  'people',
  'subsisting',
  'food',
  'obtained',
  'impelled',
  'starvation',
  'russian',
  'storages',
  'left',
  'behind',
  'occupation',
  'area',
  'serdar',
  'argic',
  'closed',
  'roads',
  'mountain',
  'passes',
  'might',
  'serve',
  'ways',
  'escape',
  'turks',
  'proceeded',
  'work',
  'extermination',
  'ohanus',
  'appressian',
  'soviet',
  'armenia',
  'today',
  'longer',
  'exists',
  'single',
  'turkish',
  'soul',
  'sahak',
  'melkonian'],
 ['maddi',
  'hausmann',
  'thoughts',
  'keywords',
  'dan',
  'bissell',
  'organization',
  'society',
  'putting',
  'things',
  'top',
  'things',
  'lines',
  'read',
  'faqs',
  'read',
  'faqs',
  'yes',
  'wouldnt',
  'posted',
  'drivel',
  'lord',
  'liar',
  'lunatic',
  'argument',
  'false',
  'trilemma',
  'even',
  'disprove',
  'liar',
  'lunatic',
  'havent',
  'eliminated',
  'possibilities',
  'mistaken',
  'misdirected',
  'misunderstood',
  'arbitrarily',
  'set',
  'three',
  'three',
  'possibilities',
  'without',
  'considering',
  'others',
  'read',
  'good',
  'book',
  'rhetoric',
  'critical',
  'thinking',
  'think',
  'lord',
  'liar',
  'lunatic',
  'discussion',
  'example',
  'good',
  'argument',
  'need',
  'learning',
  'read',
  'faqs',
  'especially',
  'constructing',
  'logical',
  'argument',
  'ignore',
  'instructions',
  'peril',
  'disobeying',
  'leaves',
  'open',
  'righteous',
  'flaming',
  'maddi',
  'hausmann',
  'centigram',
  'communications',
  'corp',
  'san',
  'jose',
  'california',
  'kids',
  'please',
  'dont',
  'try',
  'home',
  'remember',
  'post',
  'professionally'],
 ['michael',
  'chapman',
  'looking',
  'filemanager',
  'organization',
  'itc',
  'uva',
  'community',
  'access',
  'unix',
  'internet',
  'project',
  'lines',
  'article',
  'brian',
  'sheets',
  'writes',
  'anyone',
  'file',
  'manager',
  'runs',
  'unix',
  'xdtm',
  'working',
  'looking',
  'ftptool',
  'really',
  'isnt',
  'anything',
  'quality',
  'ive',
  'seen',
  'though',
  'im',
  'seriously',
  'considering',
  'writing',
  'one',
  'raise',
  'taxes',
  'middle',
  'class',
  'unknown'],
 ['bill',
  'mayhew',
  'help',
  'reduce',
  'rpms',
  'boxer',
  'fan',
  'organization',
  'northeastern',
  'ohio',
  'universities',
  'college',
  'medicine',
  'distribution',
  'na',
  'lines',
  'yes',
  'increase',
  'rpm',
  'slip',
  'boxer',
  'type',
  'fan',
  'installing',
  'capacitor',
  'series',
  'fans',
  'power',
  'supply',
  'air',
  'flow',
  'small',
  'inch',
  'fans',
  'reduced',
  'using',
  'uf',
  'capacitor',
  'good',
  'grade',
  'nonpolarized',
  'unit',
  'working',
  'voltage',
  'rating',
  'around',
  'volts',
  'note',
  'impriical',
  'study',
  'usually',
  'required',
  'experimentally',
  'determine',
  'best',
  'size',
  'capacitor',
  'given',
  'application',
  'dc',
  'powered',
  'applications',
  'try',
  'radio',
  'shack',
  'volt',
  'box',
  'fan',
  'run',
  'start',
  'reliably',
  'low',
  'vdc',
  'exceptionally',
  'quiet',
  'admittedly',
  'low',
  'flow',
  'wish',
  'knew',
  'made',
  'fans',
  'radio',
  'shack',
  'bill',
  'mayhew',
  'neoucom',
  'computer',
  'services',
  'department',
  'rootstown',
  'oh',
  'usa',
  'phone',
  'wed'],
 ['kenneth',
  'ng',
  'identifying',
  'securing',
  'files',
  'organization',
  'private',
  'computer',
  'totowa',
  'nj',
  'lines',
  'article',
  'robert',
  'mashlan',
  'writes',
  'todd',
  'arnold',
  'said',
  'article',
  'ok',
  'long',
  'trust',
  'end',
  'user',
  'stay',
  'application',
  'program',
  'long',
  'runs',
  'system',
  'user',
  'cant',
  'get',
  'otherwise',
  'cant',
  'stop',
  'finding',
  'load',
  'module',
  'code',
  'program',
  'simply',
  'bypassing',
  'check',
  'valid',
  'module',
  'devious',
  'user',
  'either',
  'modify',
  'object',
  'code',
  'running',
  'program',
  'run',
  'program',
  'debugger',
  'change',
  'instructions',
  'memory',
  'way',
  'foil',
  'debuggers',
  'clearing',
  'single',
  'step',
  'interrupt',
  'debugger',
  'depends',
  'every',
  'instructions',
  'sensitive',
  'areas',
  'code',
  'assumes',
  'person',
  'using',
  'hardware',
  'debug',
  'instruction',
  'type',
  'processor',
  'negated',
  'noping',
  'clear',
  'debug',
  'instruction',
  'running',
  'code',
  'machine',
  'simulator',
  'like',
  'one',
  'wrote',
  'senior',
  'project',
  'college',
  'bypass',
  'trace',
  'practically',
  'anything',
  'one',
  'could',
  'write',
  'software',
  'kind',
  'like',
  'star',
  'trek',
  'holideck',
  'kenneth',
  'ng',
  'please',
  'reply',
  'might',
  'elaborate',
  'simulation',
  'running',
  'little',
  'device',
  'sitting',
  'someones',
  'table',
  'picard',
  'st',
  'tng'],
 ['luis',
  'nobrega',
  'pc',
  'paintbrush',
  'iv',
  'distribution',
  'world',
  'organization',
  'file',
  'bank',
  'bbs',
  'fallbrook',
  'ca',
  'reply',
  'luis',
  'nobrega',
  'lines',
  'trying',
  'configure',
  'zsofts',
  'pc',
  'paintbrush',
  'iv',
  'logitech',
  'scanman',
  'hand',
  'scanner',
  'cant',
  'get',
  'paintbrush',
  'acknowledge',
  'scanner',
  'anybody',
  'using',
  'paintbrush',
  'scanner',
  'help',
  'thanks',
  'luis',
  'nobrega',
  'file',
  'bank',
  'bbs',
  'pcboard',
  'usr',
  'hst',
  'ds',
  'nodes',
  'rime',
  'internet',
  'largest',
  'clipper',
  'file',
  'collection',
  'world'],
 ['laura',
  'gurak',
  'xt',
  'clone',
  'sale',
  'article',
  'rpi',
  'zt',
  'organization',
  'rensselaer',
  'polytechnic',
  'institute',
  'troy',
  'ny',
  'lines',
  'nntp',
  'posting',
  'host',
  'aix',
  'rpi',
  'sale',
  'ibm',
  'compatible',
  'xt',
  'personal',
  'computer',
  'dos',
  'brand',
  'acer',
  'age',
  'years',
  'specs',
  'ram',
  'meg',
  'hard',
  'drive',
  'floppy',
  'drive',
  'color',
  'monitor',
  'baud',
  'usrobotics',
  'internal',
  'modem',
  'bundled',
  'loads',
  'software',
  'word',
  'processing',
  'communications',
  'spreadsheet',
  'games',
  'good',
  'computer',
  'successfully',
  'got',
  'ba',
  'ms',
  'half',
  'phd',
  'decided',
  'switch',
  'mac',
  'dissertation',
  'perfect',
  'high',
  'school',
  'student',
  'college',
  'student',
  'person',
  'needs',
  'basic',
  'word',
  'processing',
  'spreadsheet',
  'database',
  'capabilities',
  'best',
  'offer',
  'reply',
  'laura',
  'gurak',
  'laura',
  'gurak',
  'phd',
  'candidate',
  'dept',
  'language',
  'literature',
  'communication',
  'rensselaer',
  'polytechnic',
  'institute',
  'troy',
  'ny',
  'rhetorics',
  'science',
  'technology',
  'social',
  'aspects',
  'computing',
  'rhet',
  'criticism'],
 ['ryan',
  'scharfy',
  'drugs',
  'legalized',
  'nntp',
  'posting',
  'host',
  'top',
  'magnus',
  'acs',
  'ohio',
  'state',
  'organization',
  'ohio',
  'state',
  'university',
  'lines',
  'article',
  'wil',
  'liam',
  'december',
  'starr',
  'writes',
  'article',
  'ryan',
  'scharfy',
  'said',
  'however',
  'legalizing',
  'sticking',
  'drugs',
  'gas',
  'stations',
  'bought',
  'like',
  'cigarettes',
  'plain',
  'silly',
  'ryan',
  'scharfy',
  'government',
  'could',
  'adopt',
  'radical',
  'probably',
  'unamerican',
  'idea',
  'citizens',
  'free',
  'live',
  'lives',
  'wish',
  'simply',
  'decriminalize',
  'cocaine',
  'marijuana',
  'heroin',
  'lsd',
  'etc',
  'please',
  'explain',
  'idea',
  'allowing',
  'recreational',
  'drugs',
  'bought',
  'like',
  'cigarettes',
  'plain',
  'silly',
  'works',
  'fine',
  'nicotine',
  'wdstarr',
  'yeah',
  'cancer',
  'pretty',
  'cool',
  'isnt',
  'ryan',
  'please',
  'explain',
  'coolness',
  'lack',
  'thereof',
  'cancer',
  'relevant',
  'discussion',
  'legalization',
  'currently',
  'illegal',
  'recreational',
  'drugs',
  'matter',
  'please',
  'explain',
  'even',
  'relevant',
  'discussion',
  'currently',
  'recreational',
  'drugs',
  'tobacco',
  'wdstarr',
  'said',
  'worked',
  'well',
  'tobacco',
  'fascisious',
  'cant',
  'spell',
  'worth',
  'damn',
  'look',
  'getting',
  'ridiculous',
  'first',
  'think',
  'tobacco',
  'legal',
  'anybody',
  'cant',
  'see',
  'difference',
  'tobacco',
  'marijuana',
  'got',
  'high',
  'ryan'],
 ['jonathan',
  'cook',
  'jac',
  'stuff',
  'sale',
  'music',
  'organization',
  'university',
  'virginia',
  'lines',
  'cds',
  'ea',
  'inc',
  'shipping',
  'jesus',
  'jones',
  'doubt',
  'residents',
  'heaven',
  'rem',
  'document',
  'nymphs',
  'sad',
  'damned',
  'single',
  'tapes',
  'robert',
  'plant',
  'solo',
  'stuff',
  'led',
  'zeppelin',
  'iv',
  'tshirts',
  'robert',
  'plant',
  'manic',
  'nirvana',
  'tour',
  'led',
  'zeppelin',
  'symbols',
  'swansong',
  'black',
  'bob',
  'dylan',
  'tour',
  'tie',
  'dye',
  'offers',
  'accepted',
  'mail'],
 ['snooper',
  'opinions',
  'keith',
  'whitehead',
  'distribution',
  'world',
  'organization',
  'apple',
  'source',
  'bbs',
  'mailer',
  'rnmac',
  'buggy',
  'mean',
  'beta',
  'test',
  'version',
  'lines',
  'anyone',
  'snooper',
  'macekg',
  'similar',
  'diagnostic',
  'software',
  'comparisons',
  'reviews',
  'products',
  'would',
  'much',
  'appreciated',
  'thanks',
  'advance',
  'help',
  'cheers',
  'thankfull',
  'dont',
  'get',
  'government',
  'pay'],
 ['grubb',
  'ide',
  'vs',
  'scsi',
  'organization',
  'new',
  'mexico',
  'state',
  'university',
  'las',
  'cruces',
  'nm',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'dante',
  'nmsu',
  'pc',
  'magazine',
  'april',
  'although',
  'scsi',
  'twice',
  'fasst',
  'esdi',
  'faster',
  'ide',
  'support',
  'devices',
  'acceptance',
  'long',
  'stalled',
  'incompatability',
  'problems',
  'installation',
  'headaches',
  'note',
  'site',
  'factor',
  'price',
  'int',
  'eh',
  'article',
  'pc',
  'would',
  'get',
  'plug',
  'play',
  'scsi',
  'article',
  'seems',
  'get',
  'plug',
  'play',
  'scsi',
  'since',
  'scsi',
  'full',
  'implimentation',
  'ten',
  'devices',
  'scsi',
  'intergration',
  'sited',
  'another',
  'part',
  'microsoft',
  'plug',
  'play',
  'program'],
 ['baden',
  'de',
  'bari',
  'mosfet',
  'help',
  'organization',
  'inquiring',
  'mind',
  'bbs',
  'lines',
  'since',
  'im',
  'keen',
  'area',
  'hooking',
  'im',
  'asking',
  'help',
  'know',
  'better',
  'hook',
  'stepper',
  'line',
  'one',
  'unless',
  'take',
  'however',
  'ive',
  'got',
  'stepper',
  'sort',
  'curent',
  'limmiting',
  'circuitry',
  'would',
  'involved',
  'small',
  'schematic',
  'would',
  'probably',
  'helpfull',
  'also',
  'ive',
  'looked',
  'tipc',
  'ti',
  'wondering',
  'suggested',
  'replying',
  'message',
  'current',
  'limiting',
  'circuitry',
  'mosfets',
  'package',
  'illustrated',
  'schematic',
  'replyer',
  'would',
  'hopefully',
  'help',
  'hmm',
  'different',
  'request',
  'thanks',
  'inspiration',
  'comes',
  'seek',
  'baden',
  'de',
  'bari',
  'unknown',
  'inquiring',
  'mind',
  'bbs',
  'winnipeg',
  'manitoba'],
 ['gary',
  'merrill',
  'science',
  'methodology',
  'homeopathy',
  'tradition',
  'originator',
  'nntp',
  'posting',
  'host',
  'theseus',
  'unx',
  'sas',
  'com',
  'organization',
  'sas',
  'institute',
  'inc',
  'lines',
  'article',
  'tom',
  'carey',
  'writes',
  'ok',
  'grins',
  'kekule',
  'hypothesized',
  'resonant',
  'structure',
  'aromatic',
  'benzene',
  'ring',
  'waking',
  'dream',
  'snake',
  'swallowing',
  'tail',
  'archimedes',
  'formalized',
  'principle',
  'buoyancy',
  'meditating',
  'bath',
  'well',
  'certainly',
  'archimedes',
  'case',
  'description',
  'observing',
  'phenomena',
  'bath',
  'seems',
  'accurate',
  'meditating',
  'bath',
  'rather',
  'buoyancy',
  'intense',
  'environment',
  'gary',
  'merrill',
  'principal',
  'systems',
  'developer',
  'compiler',
  'development',
  'sas',
  'institute',
  'inc',
  'sas',
  'campus',
  'dr',
  'cary',
  'nc',
  'mcnc',
  'sas',
  'sasghm'],
 ['death',
  'taxes',
  'give',
  'billion',
  'article',
  'aurora',
  'apr',
  'organization',
  'university',
  'alaska',
  'fairbanks',
  'lines',
  'nntp',
  'posting',
  'host',
  'acad',
  'alaska',
  'article',
  'writes',
  'first',
  'posting',
  'threw',
  'idea',
  'fund',
  'contest',
  'without',
  'delving',
  'deep',
  'budget',
  'mentioned',
  'granting',
  'mineral',
  'rights',
  'winner',
  'actual',
  'wording',
  'mining',
  'rights',
  'somebody',
  'pointed',
  'quite',
  'correctly',
  'rights',
  'anybodys',
  'grant',
  'although',
  'imagine',
  'would',
  'fait',
  'accompli',
  'situation',
  'winner',
  'give',
  'winning',
  'group',
  'cant',
  'see',
  'one',
  'company',
  'corp',
  'year',
  'moratorium',
  'taxes',
  'tom',
  'freebairn',
  'says',
  'mineral',
  'rights',
  'given',
  'says',
  'un',
  'us',
  'government',
  'major',
  'question',
  'decide',
  'mine',
  'moon',
  'mars',
  'stop',
  'un',
  'cant',
  'legal',
  'tom',
  'foolerie',
  'truly',
  'inforce',
  'go',
  'moon',
  'declare',
  'soverign',
  'nation',
  'stop',
  'maybe',
  'acknowledge',
  'cant',
  'small',
  'company',
  'corp',
  'organization',
  'go',
  'explore',
  'great',
  'beyond',
  'space',
  'right',
  'earth',
  'say',
  'legal',
  'maybe',
  'years',
  'ahead',
  'liek',
  'old',
  'catholic',
  'church',
  'stating',
  'portugals',
  'spains',
  'along',
  'came',
  'reformation',
  'made',
  'null',
  'void',
  'happen',
  'find',
  'nation',
  'acknowledged',
  'offer',
  'services',
  'space',
  'miner',
  'go',
  'mine',
  'asteroids',
  'mars',
  'moon',
  'ever',
  'long',
  'yur',
  'sponsor',
  'get',
  'trouble',
  'basically',
  'find',
  'country',
  'wants',
  'go',
  'space',
  'cant',
  'soem',
  'reason',
  'another',
  'give',
  'home',
  'saudia',
  'arabia',
  'whatever',
  'nations',
  'world',
  'part',
  'un',
  'got',
  'offer',
  'services',
  'know',
  'sound',
  'crazy',
  'also',
  'means',
  'mine',
  'moon',
  'whatever',
  'un',
  'done',
  'right',
  'made',
  'busy',
  'something',
  'else',
  'care',
  'worried',
  'us',
  'thing',
  'limited',
  'short',
  'sighted',
  'people',
  'earth',
  'many',
  'things',
  'worry',
  'someone',
  'mining',
  'moon',
  'mars',
  'ever',
  'basically',
  'saying',
  'drive',
  'yeasteryears',
  'go',
  'little',
  'bit',
  'farther',
  'jus',
  'ta',
  'little',
  'bit',
  'tell',
  'crown',
  'piss',
  'ancestors',
  'thought',
  'way',
  'many',
  'today',
  'think',
  'id',
  'born',
  'central',
  'europe',
  'north',
  'black',
  'sea',
  'read',
  'good',
  'book',
  'tower',
  'gods',
  'interesting',
  'michael',
  'adams',
  'im',
  'high',
  'jacked'],
 ['scott',
  'brogley',
  'dodge',
  'wagon',
  'sale',
  'summary',
  'dodge',
  'dart',
  'wagon',
  'negotiable',
  'keywords',
  'dodge',
  'dart',
  'wagon',
  'ci',
  'sale',
  'california',
  'cal',
  'cal',
  'bay',
  'area',
  'bay',
  'area',
  'cal',
  'article',
  'tymix',
  'organization',
  'lines',
  'nntp',
  'posting',
  'host',
  'copernicus',
  'dodge',
  'dart',
  'collectors',
  'dodge',
  'th',
  'anniversary',
  'dart',
  'ci',
  'wagon',
  'turn',
  'cash',
  'asking',
  'price',
  'although',
  'negotiate',
  'car',
  'currently',
  'resides',
  'union',
  'city',
  'california',
  'thats',
  'east',
  'side',
  'san',
  'francisco',
  'bay',
  'area',
  'state',
  'california',
  'united',
  'states',
  'america',
  'continent',
  'north',
  'america',
  'planet',
  'earth',
  'third',
  'planetary',
  'body',
  'sol',
  'mid',
  'range',
  'yellowish',
  'star',
  'western',
  'spiral',
  'arm',
  'milkyway',
  'galaxy',
  'toowhit',
  'north',
  'silicon',
  'valley',
  'interested',
  'pleas',
  'contact',
  'scott',
  'following',
  'means',
  'internet',
  'home',
  'answering',
  'machine',
  'business',
  'voice',
  'mail',
  'loud',
  'yell',
  'wave',
  'money',
  'window',
  'recommended',
  'downtown',
  'urban',
  'environment',
  'ps',
  'also',
  'bmw',
  'sale'],
 ['robert',
  'landis',
  'soviet',
  'space',
  'book',
  'reply',
  'organization',
  'space',
  'telescope',
  'science',
  'institute',
  'baltimore',
  'md',
  'lines',
  'blazes',
  'going',
  'wayne',
  'matson',
  'gang',
  'alabama',
  'also',
  'heard',
  'unconfirmed',
  'rumor',
  'aerospace',
  'ambassadors',
  'disappeared',
  'anyone',
  'else',
  'confirm',
  'rob',
  'landis',
  'stsci',
  'baltimore',
  'md'],
 ['david',
  'wood',
  'request',
  'support',
  'organization',
  'software',
  'engineering',
  'institute',
  'lines',
  'request',
  'would',
  'like',
  'see',
  'charley',
  'wingate',
  'respond',
  'charley',
  'challenges',
  'judging',
  'mail',
  'appear',
  'quite',
  'clear',
  'mr',
  'wingate',
  'intends',
  'continue',
  'post',
  'tangential',
  'unrelated',
  'articles',
  'ingoring',
  'challenges',
  'last',
  'two',
  'postings',
  'challenges',
  'noted',
  'perhaps',
  'dozen',
  'posts',
  'mr',
  'wingate',
  'none',
  'answered',
  'single',
  'challenge',
  'seems',
  'unmistakable',
  'mr',
  'wingate',
  'hopes',
  'questions',
  'go',
  'away',
  'level',
  'best',
  'change',
  'given',
  'seems',
  'rather',
  'common',
  'net',
  'theist',
  'tactic',
  'would',
  'like',
  'suggest',
  'impress',
  'upon',
  'desire',
  'answers',
  'following',
  'manner',
  'ignore',
  'future',
  'articles',
  'mr',
  'wingate',
  'address',
  'challenges',
  'answers',
  'explictly',
  'announces',
  'refuses',
  'must',
  'respond',
  'one',
  'articles',
  'include',
  'within',
  'something',
  'similar',
  'following',
  'please',
  'answer',
  'questions',
  'posed',
  'charley',
  'challenges',
  'really',
  'im',
  'looking',
  'humiliate',
  'anyone',
  'want',
  'honest',
  'answers',
  'wouldnt',
  'think',
  'honesty',
  'would',
  'much',
  'ask',
  'devout',
  'christian',
  'would',
  'nevermind',
  'rhetorical',
  'question',
  'dave',
  'wood'],
 ['dick',
  'king',
  'interview',
  'doctor',
  'nntp',
  'posting',
  'host',
  'drums',
  'reasoning',
  'com',
  'organization',
  'reasoning',
  'systems',
  'inc',
  'palo',
  'alto',
  'ca',
  'lines',
  'insurance',
  'company',
  'encourages',
  'annual',
  'physicals',
  'age',
  'im',
  'thinking',
  'biannual',
  'physicals',
  'least',
  'might',
  'good',
  'idea',
  'therefore',
  'im',
  'shopping',
  'gp',
  'might',
  'well',
  'get',
  'good',
  'one',
  'could',
  'assembled',
  'net',
  'wisdom',
  'suggest',
  'things',
  'look',
  'point',
  'faq',
  'archive',
  'topic',
  'one',
  'please',
  'email',
  'suspect',
  'topic',
  'real',
  'net',
  'clutter',
  'bait',
  'dk'],
 ['andy',
  'woodward',
  'please',
  'post',
  'organization',
  'university',
  'college',
  'wales',
  'aberystwyth',
  'lines',
  'nntp',
  'posting',
  'host',
  'article',
  'cbr',
  'rr',
  'writes',
  'would',
  'someone',
  'please',
  'post',
  'countersteering',
  'faq',
  'awful',
  'time',
  'debating',
  'someone',
  'push',
  'right',
  'handle',
  'motorcycle',
  'foward',
  'turning',
  'left',
  'cant',
  'explain',
  'well',
  'least',
  'happens',
  'please',
  'help',
  'post',
  'faq',
  'need',
  'convert',
  'eric',
  'hmm',
  'would',
  'able',
  'take',
  'outriggers'],
 ['tom',
  'baker',
  'shuttle',
  'launch',
  'question',
  'organization',
  'world',
  'public',
  'access',
  'unix',
  'brookline',
  'distribution',
  'sci',
  'lines',
  'article',
  'david',
  'ward',
  'writes',
  'article',
  'pack',
  'rat',
  'writes',
  'something',
  'bothering',
  'watching',
  'nasa',
  'select',
  'well',
  'shouldnt',
  'say',
  'bothering',
  'maybe',
  'wondering',
  'would',
  'better',
  'going',
  'launch',
  'say',
  'sorry',
  'forget',
  'exactly',
  'saying',
  'otc',
  'plt',
  'think',
  'clear',
  'caution',
  'warning',
  'memory',
  'verify',
  'unexpected',
  'errors',
  'wondering',
  'expected',
  'error',
  'might',
  'sorry',
  'really',
  'dumb',
  'question',
  'pure',
  'speculation',
  'would',
  'guess',
  'cautions',
  'based',
  'hazardous',
  'pre',
  'launch',
  'ops',
  'would',
  'qualify',
  'something',
  'like',
  'caution',
  'srbs',
  'armed',
  'also',
  'pure',
  'speculation',
  'parity',
  'errors',
  'memory',
  'previously',
  'known',
  'conditions',
  'waivered',
  'yes',
  'error',
  'already',
  'knew',
  'problem',
  'decided',
  'backup',
  'would',
  'handle',
  'problem',
  'area',
  'criticality',
  'problem',
  'system',
  'decided',
  'could',
  'without',
  'id',
  'curious',
  'real',
  'meaning',
  'quote',
  'tom'],
 ['david',
  'go',
  'go',
  'kitaguchi',
  'little',
  'satanic',
  'nntp',
  'posting',
  'host',
  'uss',
  'welch',
  'jhu',
  'reply',
  'organization',
  'welch',
  'medical',
  'library',
  'lines',
  'article',
  'charley',
  'wingate',
  'writes',
  'pnanci',
  'ann',
  'miller',
  'writes',
  'favorite',
  'reply',
  'literal',
  'minded',
  'complaint',
  'bible',
  'really',
  'inspired',
  'god',
  'really',
  'important',
  'would',
  'make',
  'damn',
  'certain',
  'translators',
  'scribes',
  'people',
  'interpreting',
  'copying',
  'getting',
  'right',
  'literally',
  'put',
  'merit',
  'something',
  'corrupted',
  'man',
  'even',
  'originally',
  'inspired',
  'god',
  'pthe',
  'corrupted',
  'theory',
  'pretty',
  'weak',
  'comparison',
  'pcurrent',
  'hebrew',
  'text',
  'old',
  'versions',
  'translations',
  'shows',
  'text',
  'phas',
  'fact',
  'changed',
  'little',
  'space',
  'two',
  'millennia',
  'pshouldnt',
  'suprising',
  'people',
  'believe',
  'text',
  'manner',
  'pare',
  'likely',
  'makes',
  'pains',
  'make',
  'good',
  'copies',
  'well',
  'corrupted',
  'first',
  'time',
  'good',
  'enough',
  'seeing',
  'bible',
  'constructed',
  'years',
  'jesuss',
  'death',
  'text',
  'merchants',
  'ie',
  'owe',
  'owe',
  'wonder',
  'anyone',
  'take',
  'literal',
  'word',
  'seriously',
  'obviously',
  'intended',
  'nonsense',
  'otherwise',
  'authors',
  'bible',
  'would',
  'need',
  'plagerize',
  'sp',
  'asians',
  'contents',
  'interperated',
  'make',
  'sense'],
 ['cryptography',
  'faq',
  'miscellany',
  'organization',
  'crypt',
  'cabal',
  'lines',
  'expires',
  'may',
  'gmt',
  'reply',
  'nntp',
  'posting',
  'host',
  'pad',
  'thai',
  'aktis',
  'com',
  'summary',
  'part',
  'sci',
  'crypt',
  'faq',
  'miscellany',
  'national',
  'security',
  'agency',
  'us',
  'export',
  'restrictions',
  'tempest',
  'electromagnetic',
  'interference',
  'monitoring',
  'beale',
  'ciphers',
  'hoax',
  'american',
  'cryptographic',
  'association',
  'rsa',
  'public',
  'key',
  'patents',
  'last',
  'updated',
  'archive',
  'name',
  'cryptography',
  'faq',
  'part',
  'last',
  'modified',
  'faq',
  'sci',
  'crypt',
  'part',
  'miscellany',
  'ninth',
  'ten',
  'parts',
  'sci',
  'crypt',
  'faq',
  'parts',
  'mostly',
  'independent',
  'read',
  'first',
  'part',
  'rest',
  'dont',
  'time',
  'send',
  'missing',
  'parts',
  'mail',
  'dont',
  'ask',
  'notes',
  'kah',
  'refer',
  'reference',
  'list',
  'last',
  'part',
  'sections',
  'faq',
  'available',
  'via',
  'anonymous',
  'ftp',
  'rtfm',
  'mit',
  'pub',
  'usenet',
  'news',
  'answers',
  'cryptography',
  'faq',
  'part',
  'xx',
  'cryptography',
  'faq',
  'posted',
  'newsgroups',
  'sci',
  'crypt',
  'sci',
  'answers',
  'news',
  'answers',
  'every',
  'days',
  'contents',
  'national',
  'security',
  'agency',
  'nsa',
  'us',
  'export',
  'regulations',
  'tempest',
  'beale',
  'ciphers',
  'hoax',
  'american',
  'cryptogram',
  'association',
  'get',
  'touch',
  'rsa',
  'patented',
  'voynich',
  'manuscript',
  'national',
  'security',
  'agency',
  'nsa',
  'nsa',
  'official',
  'security',
  'body',
  'government',
  'given',
  'charter',
  'president',
  'truman',
  'late',
  'continued',
  'research',
  'cryptology',
  'till',
  'present',
  'nsa',
  'known',
  'largest',
  'employer',
  'mathematicians',
  'world',
  'also',
  'largest',
  'purchaser',
  'computer',
  'hardware',
  'world',
  'governments',
  'general',
  'always',
  'prime',
  'employers',
  'cryptologists',
  'nsa',
  'probably',
  'possesses',
  'cryptographic',
  'expertise',
  'many',
  'years',
  'ahead',
  'public',
  'state',
  'art',
  'undoubtedly',
  'break',
  'many',
  'systems',
  'used',
  'practice',
  'reasons',
  'national',
  'security',
  'almost',
  'information',
  'nsa',
  'classified',
  'bamfords',
  'book',
  'bamfd',
  'gives',
  'history',
  'people',
  'operations',
  'nsa',
  'following',
  'quote',
  'massey',
  'mas',
  'highlights',
  'difference',
  'public',
  'private',
  'research',
  'cryptography',
  'one',
  'regards',
  'cryptology',
  'prerogative',
  'government',
  'one',
  'accepts',
  'cryptologic',
  'research',
  'conducted',
  'behind',
  'closed',
  'doors',
  'without',
  'doubt',
  'number',
  'workers',
  'engaged',
  'today',
  'secret',
  'research',
  'cryptology',
  'far',
  'exceeds',
  'engaged',
  'open',
  'research',
  'cryptology',
  'years',
  'fact',
  'widespread',
  'open',
  'research',
  'cryptology',
  'continue',
  'conflicts',
  'two',
  'research',
  'communities',
  'open',
  'research',
  'common',
  'quest',
  'knowledge',
  'depends',
  'vitality',
  'open',
  'exchange',
  'ideas',
  'via',
  'conference',
  'presentations',
  'publications',
  'scholarly',
  'journals',
  'government',
  'agency',
  'charged',
  'breaking',
  'ciphers',
  'nations',
  'countenance',
  'publication',
  'cipher',
  'cannot',
  'break',
  'researcher',
  'good',
  'conscience',
  'publish',
  'cipher',
  'might',
  'undermine',
  'effectiveness',
  'governments',
  'code',
  'breakers',
  'one',
  'might',
  'argue',
  'publication',
  'provably',
  'secure',
  'cipher',
  'would',
  'force',
  'governments',
  'behave',
  'like',
  'stimsons',
  'gentlemen',
  'one',
  'must',
  'aware',
  'open',
  'research',
  'cryptography',
  'fraught',
  'political',
  'ethical',
  'considerations',
  'severity',
  'scientific',
  'fields',
  'wonder',
  'conflicts',
  'occurred',
  'government',
  'agencies',
  'open',
  'researchers',
  'cryptology',
  'rather',
  'conflicts',
  'least',
  'aware',
  'mild',
  'us',
  'export',
  'regulations',
  'nutshell',
  'two',
  'government',
  'agencies',
  'control',
  'export',
  'encryption',
  'software',
  'one',
  'bureau',
  'export',
  'administration',
  'bxa',
  'department',
  'commerce',
  'authorized',
  'export',
  'administration',
  'regulations',
  'ear',
  'another',
  'office',
  'defense',
  'trade',
  'controls',
  'dtc',
  'state',
  'department',
  'authorized',
  'international',
  'traffic',
  'arms',
  'regulations',
  'itar',
  'rule',
  'thumb',
  'bxa',
  'works',
  'cocom',
  'less',
  'stringent',
  'requirements',
  'dtc',
  'takes',
  'orders',
  'nsa',
  'wants',
  'see',
  'everything',
  'first',
  'refuse',
  'transfer',
  'jurisdiction',
  'bxa',
  'newsgroup',
  'misc',
  'legal',
  'computing',
  'carries',
  'many',
  'interesting',
  'discussions',
  'laws',
  'surrounding',
  'cryptographic',
  'export',
  'people',
  'think',
  'laws',
  'many',
  'complex',
  'issues',
  'go',
  'beyond',
  'scope',
  'technical',
  'groups',
  'like',
  'sci',
  'crypt',
  'make',
  'sure',
  'consult',
  'lawyer',
  'anything',
  'get',
  'thrown',
  'jail',
  'lucky',
  'lawyer',
  'might',
  'know',
  'lawyer',
  'least',
  'heard',
  'itar',
  'tempest',
  'tempest',
  'standard',
  'electromagnetic',
  'shielding',
  'computer',
  'equipment',
  'created',
  'response',
  'discovery',
  'information',
  'read',
  'computer',
  'radiation',
  'crt',
  'quite',
  'distance',
  'little',
  'effort',
  'needless',
  'say',
  'encryption',
  'doesnt',
  'much',
  'good',
  'cleartext',
  'available',
  'way',
  'beale',
  'ciphers',
  'hoax',
  'thanks',
  'jim',
  'gillogly',
  'information',
  'john',
  'king',
  'corrections',
  'story',
  'pamphlet',
  'ward',
  'goes',
  'thomas',
  'jefferson',
  'beale',
  'party',
  'adventurers',
  'accumulated',
  'huge',
  'mass',
  'treasure',
  'buried',
  'bedford',
  'county',
  'virginia',
  'leaving',
  'three',
  'ciphers',
  'innkeeper',
  'ciphers',
  'describe',
  'location',
  'contents',
  'intended',
  'beneficiaries',
  'treasure',
  'ward',
  'gives',
  'decryption',
  'second',
  'cipher',
  'contents',
  'called',
  'encrypted',
  'book',
  'cipher',
  'using',
  'initial',
  'letters',
  'declaration',
  'independence',
  'doi',
  'key',
  'unsolved',
  'many',
  'documents',
  'tried',
  'key',
  'aficionados',
  'join',
  'group',
  'attempts',
  'solve',
  'various',
  'means',
  'eye',
  'toward',
  'splitting',
  'treasure',
  'beale',
  'cypher',
  'association',
  'box',
  'beaver',
  'falls',
  'pa',
  'get',
  'ciphers',
  'rec',
  'puzzles',
  'faql',
  'including',
  'line',
  'send',
  'index',
  'message',
  'following',
  'directions',
  'apparently',
  'several',
  'different',
  'versions',
  'cipher',
  'floating',
  'around',
  'correct',
  'version',
  'based',
  'pamphlet',
  'says',
  'john',
  'king',
  'believe',
  'story',
  'hoax',
  'kruh',
  'kru',
  'gives',
  'long',
  'list',
  'problems',
  'story',
  'gillogly',
  'gil',
  'decrypted',
  'doi',
  'found',
  'unexpected',
  'strings',
  'including',
  'hammer',
  'president',
  'beale',
  'cypher',
  'association',
  'agrees',
  'string',
  'couldnt',
  'appear',
  'chance',
  'feels',
  'must',
  'explanation',
  'gwyn',
  'sci',
  'crypt',
  'expert',
  'unimpressed',
  'string',
  'american',
  'cryptogram',
  'association',
  'get',
  'touch',
  'aca',
  'organization',
  'devoted',
  'cryptography',
  'emphasis',
  'cryptanalysis',
  'systems',
  'attacked',
  'either',
  'pencil',
  'paper',
  'computers',
  'organ',
  'cryptogram',
  'includes',
  'articles',
  'challenge',
  'ciphers',
  'among',
  'cipher',
  'types',
  'english',
  'languages',
  'simple',
  'substitution',
  'playfair',
  'vigenere',
  'bifid',
  'bazeries',
  'grille',
  'homophonic',
  'cryptarithm',
  'dues',
  'one',
  'year',
  'issues',
  'outside',
  'north',
  'america',
  'less',
  'students',
  'seniors',
  'subscriptions',
  'sent',
  'aca',
  'treasurer',
  'west',
  'hickory',
  'st',
  'mundelein',
  'il',
  'rsa',
  'patented',
  'yes',
  'patent',
  'number',
  'filed',
  'granted',
  'discussion',
  'patent',
  'whether',
  'granted',
  'algorithm',
  'patents',
  'general',
  'related',
  'legal',
  'moral',
  'issues',
  'see',
  'comp',
  'patents',
  'misc',
  'legal',
  'computing',
  'information',
  'league',
  'programming',
  'freedom',
  'see',
  'ftppf',
  'note',
  'one',
  'original',
  'purposes',
  'comp',
  'patents',
  'collect',
  'questions',
  'rsa',
  'patented',
  'often',
  'flooded',
  'sci',
  'crypt',
  'technical',
  'newsgroups',
  'appropriate',
  'forum',
  'voynich',
  'manuscript',
  'nelson',
  'minar',
  'says',
  'mailing',
  'list',
  'address',
  'write',
  'subscribe',
  'vms',
  'mailing',
  'list',
  'ftp',
  'archive',
  'rand',
  'org',
  'pub',
  'voynich',
  'theres',
  'sorts',
  'information',
  'manuscript',
  'course',
  'good',
  'bibliography',
  'found',
  'ftp',
  'site',
  'kahns',
  'codebreakers',
  'gives',
  'good',
  'introduction'],
 ['opso',
  'lopso',
  'need',
  'help',
  'getting',
  'saddle',
  'bags',
  'nntp',
  'posting',
  'host',
  'jh',
  'ucs',
  'indiana',
  'organization',
  'indiana',
  'university',
  'lines',
  'hey',
  'im',
  'pretty',
  'new',
  'wonderful',
  'world',
  'motorcycles',
  'bought',
  'used',
  'kaw',
  'kz',
  'csr',
  'friend',
  'wondering',
  'kind',
  'saddle',
  'bags',
  'could',
  'get',
  'since',
  'know',
  'nothing',
  'bags',
  'gas',
  'tank',
  'much',
  'would',
  'cost',
  'much',
  'hold',
  'thanks',
  'advice',
  'may',
  'new',
  'riding',
  'love',
  'already',
  'dod'],
 ['organization',
  'university',
  'illinois',
  'chicago',
  'academic',
  'computer',
  'center',
  'jason',
  'kratz',
  'gun',
  'like',
  'american',
  'express',
  'card',
  'distribution',
  'usa',
  'lines',
  'article',
  'frank',
  'crary',
  'says',
  'never',
  'seen',
  'anyone',
  'else',
  'practice',
  'marksmanship',
  'taking',
  'gun',
  'coat',
  'fast',
  'possible',
  'start',
  'shooting',
  'recommended',
  'way',
  'practice',
  'ccw',
  'aim',
  'alone',
  'goo',
  'defense',
  'cant',
  'get',
  'gun',
  'rapidly',
  'true',
  'way',
  'done',
  'little',
  'unusual',
  'looked',
  'like',
  'practicing',
  'shoot',
  'someone',
  'point',
  'forgot',
  'bring',
  'nothing',
  'gang',
  'member',
  'illegal',
  'carry',
  'concealed',
  'weapon',
  'area',
  'state',
  'illinois',
  'matter',
  'say',
  'people',
  'illinois',
  'dont',
  'carry',
  'concealed',
  'weapons',
  'illegaly',
  'practicing',
  'like',
  'people',
  'around',
  'wasnt',
  'bright',
  'idea',
  'isnt',
  'necessarily',
  'conflict',
  'practicing',
  'concealed',
  'weapon',
  'self',
  'defence',
  'practicing',
  'shoot',
  'someone',
  'armed',
  'self',
  'defence',
  'occasionally',
  'involve',
  'shooting',
  'attacker',
  'frank',
  'crary',
  'cu',
  'boulder',
  'agree',
  'dont',
  'practice',
  'carry',
  'gun',
  'self',
  'defense',
  'likely',
  'would',
  'big',
  'trouble',
  'situation',
  'arise',
  'jason'],
 ['lisa',
  'rowlands',
  'return',
  'path',
  'news',
  'paint',
  'jobs',
  'uk',
  'nntp',
  'posting',
  'host',
  'baldrick',
  'organization',
  'alex',
  'technologies',
  'ltd',
  'london',
  'england',
  'lines',
  'anyone',
  'recommend',
  'good',
  'place',
  'reasonably',
  'priced',
  'bike',
  'paint',
  'jobs',
  'preferably',
  'essentially',
  'london',
  'area',
  'thanks',
  'lisa',
  'rowlands',
  'alex',
  'technologies',
  'ltd',
  'cp',
  'house',
  'uxbridge',
  'road',
  'tel',
  'ealing',
  'fax',
  'london',
  'email',
  'lt'],
 ['claus',
  'schwinge',
  'needed',
  'large',
  'fast',
  'backup',
  'utility',
  'organization',
  'university',
  'buffalo',
  'lines',
  'news',
  'software',
  'vax',
  'vms',
  'vnews',
  'nntp',
  'posting',
  'host',
  'ubvmsb',
  'cc',
  'buffalo',
  'im',
  'looking',
  'better',
  'method',
  'back',
  'files',
  'currently',
  'using',
  'maynstream',
  'uses',
  'dc',
  'tapes',
  'need',
  'capacity',
  'mb',
  'gb',
  'future',
  'backups',
  'dos',
  'files',
  'would',
  'appreciative',
  'information',
  'backup',
  'devices',
  'manufacturers',
  'products',
  'flopticals',
  'dat',
  'tape',
  'anything',
  'possible',
  'please',
  'include',
  'price',
  'backup',
  'speed',
  'manufacturer',
  'phone',
  'opinions',
  'quality',
  'reliability',
  'please',
  'mail',
  'ill',
  'send',
  'summaries',
  'interested',
  'thanx',
  'advance',
  'claus',
  'schwinge',
  'sunyab',
  'student',
  'finances',
  'records'],
 ['onur',
  'yalcin',
  'armenia',
  'says',
  'could',
  'shoot',
  'turkish',
  'planes',
  'organization',
  'iowa',
  'state',
  'university',
  'ames',
  'ia',
  'lines',
  'article',
  'writes',
  'article',
  'esin',
  'terzioglu',
  'writes',
  'cancellum',
  'let',
  'clearify',
  'mr',
  'turkish',
  'armenia',
  'getting',
  'itchy',
  'simply',
  'letting',
  'world',
  'know',
  'longer',
  'sit',
  'quiet',
  'let',
  'turks',
  'get',
  'away',
  'famous',
  'tricks',
  'armenians',
  'remember',
  'turkish',
  'invasion',
  'greek',
  'island',
  'cypress',
  'world',
  'simply',
  'watched',
  'appropriate',
  'address',
  'netters',
  'names',
  'appear',
  'signatures',
  'failed',
  'since',
  'bother',
  'sign',
  'posting',
  'polite',
  'thing',
  'also',
  'avoid',
  'addressing',
  'ladies',
  'mr',
  'done',
  'secondly',
  'island',
  'name',
  'correctly',
  'spelled',
  'cyprus',
  'never',
  'greek',
  'rather',
  'home',
  'bi',
  'communal',
  'society',
  'formed',
  'greeks',
  'turks',
  'seems',
  'know',
  'little',
  'history',
  'demography',
  'island',
  'know',
  'essence',
  'turkeys',
  'military',
  'intervention',
  'international',
  'agreements',
  'may',
  'analogy',
  'act',
  'occupation',
  'history',
  'going',
  'today',
  'azerbaijani',
  'land',
  'drawn',
  'expansionist',
  'policy',
  'armenia',
  'pursuing',
  'could',
  'agree',
  'us',
  'issue',
  'diagnoses',
  'political',
  'conduct',
  'countries',
  'promulgate',
  'terminology',
  'itchy',
  'bitchy',
  'onur',
  'yalcin'],
 ['richard',
  'garrett',
  'computers',
  'sale',
  'pc',
  'amiga',
  'article',
  'sequent',
  'apr',
  'distribution',
  'na',
  'organization',
  'sequent',
  'computer',
  'systems',
  'inc',
  'lines',
  'nntp',
  'posting',
  'host',
  'crg',
  'sequent',
  'com',
  'time',
  'little',
  'house',
  'cleaning',
  'pc',
  'upgrade',
  'following',
  'sale',
  'leading',
  'technology',
  'pc',
  'partner',
  'sytsem',
  'includes',
  'mhz',
  'intel',
  'cpu',
  'mb',
  'ide',
  'drive',
  'brand',
  'new',
  'canabalized',
  'new',
  'system',
  'floppies',
  'meg',
  'ram',
  'vga',
  'congroller',
  'kb',
  'dos',
  'hard',
  'drive',
  'need',
  'get',
  'system',
  'style',
  'kb',
  'logitech',
  'serial',
  'trackman',
  'latest',
  'drivers',
  'amiga',
  'roms',
  'installed',
  'mb',
  'video',
  'ram',
  'mb',
  'addon',
  'ram',
  'clone',
  'ram',
  'clock',
  'roctec',
  'addon',
  'disk',
  'ide',
  'disk',
  'controller',
  'includes',
  'scsi',
  'option',
  'quantum',
  'mb',
  'scsi',
  'drive',
  'lots',
  'software',
  'mb',
  'mb',
  'simm',
  'installed',
  'roctec',
  'amiga',
  'dos',
  'icd',
  'flicker',
  'fixer',
  'ii',
  'asking',
  'system',
  'part',
  'amiga',
  'make',
  'offer',
  'amiga',
  'software',
  'cando',
  'textcraft',
  'plus',
  'tetris',
  'welltris',
  'sword',
  'sodam',
  'qix',
  'carmen',
  'sandiego',
  'crossword',
  'construction',
  'kit',
  'canadian',
  'prototype',
  'replicas',
  'cd',
  'rom',
  'fast',
  'file',
  'system',
  'hypermedia',
  'cd',
  'rom',
  'containing',
  'fred',
  'fish',
  'disks',
  'includes',
  'registration',
  'card',
  'low',
  'cost',
  'upgrades',
  'amiga',
  'hardware',
  'reference',
  'man',
  'amiga',
  'vga',
  'monitor',
  'cable',
  'two',
  'joysticks',
  'prices',
  'include',
  'shipping',
  'contact',
  'rich',
  'garrett',
  'email',
  'home',
  'work',
  'ooo',
  'rich',
  'garrett',
  'oo',
  'work'],
 ['jake',
  'livni',
  'go',
  'hezbollah',
  'organization',
  'department',
  'redundancy',
  'department',
  'lines',
  'article',
  'edward',
  'shnekendorf',
  'writes',
  'brad',
  'youre',
  'sick',
  'son',
  'bitch',
  'wishing',
  'someones',
  'death',
  'even',
  'enemy',
  'deranged',
  'really',
  'pity',
  'like',
  'acquire',
  'philosophy',
  'islam',
  'brad',
  'hernlem',
  'ed',
  'interesting',
  'question',
  'ponder',
  'brad',
  'alis',
  'sickness',
  'make',
  'ayatollah',
  'style',
  'islam',
  'attractive',
  'new',
  'religion',
  'brad',
  'ali',
  'formally',
  'adopted',
  'give',
  'sickness',
  'jake',
  'livni',
  'ten',
  'years',
  'george',
  'bush',
  'american',
  'occupied',
  'new',
  'york',
  'replaced',
  'jimmy',
  'carter',
  'opinions',
  'employer',
  'opinions',
  'standard',
  'failed',
  'president'],
 ['greg',
  'stewart',
  'nicholls',
  'biosphere',
  'ii',
  'reply',
  'disclaimer',
  'posting',
  'represents',
  'posters',
  'views',
  'ibm',
  'news',
  'software',
  'ureply',
  'lines',
  'pat',
  'writes',
  'article',
  'writes',
  'pat',
  'writes',
  'everyone',
  'critical',
  'bogus',
  'science',
  'promoted',
  'real',
  'science',
  'seems',
  'sorta',
  'large',
  'engineering',
  'project',
  'science',
  'project',
  'bingo',
  'bench',
  'science',
  'rather',
  'large',
  'scale',
  'attempt',
  'create',
  'series',
  'micro',
  'ecologies',
  'whats',
  'eveil',
  'nothing',
  'evil',
  'theres',
  'actual',
  'harm',
  'theyre',
  'represent',
  'sig',
  'files',
  'like',
  'strings',
  'every',
  'yo',
  'yos',
  'got',
  'one',
  'greg',
  'nicholls',
  'business',
  'private'],
 ['harry',
  'powell',
  'watson',
  'boss',
  'guitar',
  'pedal',
  'organization',
  'freshman',
  'design',
  'carnegie',
  'mellon',
  'pittsburgh',
  'pa',
  'lines',
  'nntp',
  'posting',
  'host',
  'po',
  'andrew',
  'cmu',
  'reply',
  'sale',
  'one',
  'boss',
  'turbo',
  'overdrive',
  'pedal',
  'guitar',
  'bass',
  'keyboards',
  'best',
  'offer',
  'thanks',
  'respond',
  'hw',
  'call',
  'harry'],
 ['connin',
  'patrick',
  'colgain',
  'keenan',
  'signs',
  'rangers',
  'organization',
  'lehigh',
  'university',
  'lines',
  'heard',
  'news',
  'mike',
  'keenan',
  'formerly',
  'blackhawks',
  'flyers',
  'general',
  'siberian',
  'prison',
  'signed',
  'coach',
  'rangers',
  'rangers',
  'presidents',
  'cup',
  'last',
  'year',
  'slipped',
  'bit',
  'end',
  'season',
  'destined',
  'finish',
  'last',
  'behind',
  'lowly',
  'flyers',
  'flyers',
  'fans',
  'going',
  'disappointed',
  'keenans',
  'decision',
  'interested',
  'oh',
  'well',
  'go',
  'caps',
  'connin'],
 ['deepak',
  'chhabra',
  'hawks',
  'vs',
  'leafs',
  'lastnight',
  'nntp',
  'posting',
  'host',
  'stpl',
  'ists',
  'ca',
  'organization',
  'solar',
  'terresterial',
  'physics',
  'laboratory',
  'ists',
  'distribution',
  'na',
  'lines',
  'article',
  'gerald',
  'olchowy',
  'writes',
  'replays',
  'joe',
  'murphys',
  'goal',
  'shouldnt',
  'counted',
  'game',
  'would',
  'ended',
  'tie',
  'thought',
  'red',
  'light',
  'went',
  'thus',
  'review',
  'presumption',
  'would',
  'find',
  'conclusive',
  'evidence',
  'puck',
  'go',
  'net',
  'replays',
  'say',
  'even',
  'rear',
  'evidence',
  'wasnt',
  'conclusive',
  'puck',
  'opinion',
  'impression',
  'objective',
  'find',
  'conclusive',
  'evidence',
  'puck',
  'cross',
  'line',
  'replays',
  'saw',
  'showed',
  'fairly',
  'conclusively',
  'puck',
  'cross',
  'goal',
  'line',
  'time',
  'anyway',
  'somebody',
  'screwed'],
 ['russell',
  'turpin',
  'science',
  'methodology',
  'homeopathy',
  'tradition',
  'organization',
  'cs',
  'dept',
  'university',
  'texas',
  'austin',
  'lines',
  'distribution',
  'inet',
  'nntp',
  'posting',
  'host',
  'saltillo',
  'cs',
  'utexas',
  'keywords',
  'science',
  'errors',
  'turpin',
  'agree',
  'everything',
  'lee',
  'lady',
  'wrote',
  'previous',
  'post',
  'thread',
  'case',
  'puzzles',
  'people',
  'would',
  'like',
  'expand',
  'two',
  'comments',
  'article',
  'lee',
  'lady',
  'writes',
  'avoiding',
  'mistakes',
  'certainly',
  'highly',
  'desirable',
  'however',
  'also',
  'widely',
  'acknowledged',
  'perfectionism',
  'inimicable',
  'creativity',
  'extreme',
  'case',
  'perfectionist',
  'becomes',
  'paralyzed',
  'possible',
  'mistakes',
  'might',
  'make',
  'unable',
  'even',
  'leave',
  'house',
  'one',
  'important',
  'difficult',
  'aspects',
  'reasoning',
  'empirical',
  'investigation',
  'lies',
  'understanding',
  'context',
  'scope',
  'importance',
  'various',
  'arguments',
  'pieces',
  'evidence',
  'marshalled',
  'claim',
  'errors',
  'break',
  'back',
  'piece',
  'research',
  'leave',
  'hole',
  'needs',
  'filled',
  'trivial',
  'importance',
  'grave',
  'mistake',
  'confuse',
  'past',
  'snippets',
  'thread',
  'doubt',
  'einstein',
  'used',
  'formal',
  'methodology',
  'also',
  'proposed',
  'numerous',
  'experiments',
  'performed',
  'would',
  'distinguish',
  'universe',
  'special',
  'relativity',
  'holds',
  'one',
  'back',
  'lee',
  'lady',
  'rules',
  'according',
  'many',
  'post',
  'sci',
  'med',
  'sci',
  'psychology',
  'according',
  'posters',
  'supported',
  'carefully',
  'designed',
  'controlled',
  'studies',
  'science',
  'posters',
  'making',
  'mistake',
  'previously',
  'criticized',
  'adhering',
  'methodological',
  'recipe',
  'carefully',
  'designed',
  'controlled',
  'study',
  'neither',
  'always',
  'possible',
  'always',
  'important',
  'hand',
  'someone',
  'proposing',
  'remedy',
  'supposedly',
  'alleviates',
  'chronic',
  'medical',
  'problem',
  'enough',
  'knowledge',
  'errors',
  'plagued',
  'kind',
  'claim',
  'ask',
  'carefully',
  'designed',
  'controlled',
  'study',
  'alleviate',
  'skepticism',
  'rules',
  'support',
  'hypothesis',
  'carefully',
  'designed',
  'controlled',
  'study',
  'narrow',
  'apply',
  'investigation',
  'think',
  'requirements',
  'particular',
  'reasoning',
  'convincing',
  'depends',
  'greatly',
  'kinds',
  'mistakes',
  'occurred',
  'past',
  'reasoning',
  'kinds',
  'things',
  'reuse',
  'previous',
  'example',
  'know',
  'conclusions',
  'uncontrolled',
  'observations',
  'treatment',
  'chronic',
  'medical',
  'problems',
  'notoriously',
  'problematic',
  'russell'],
 ['steven',
  'bellovin',
  'new',
  'reason',
  'clipper',
  'algm',
  'secrecy',
  'organization',
  'bell',
  'laboratories',
  'lines',
  'article',
  'dwight',
  'tuinstra',
  'writes',
  'first',
  'note',
  'experts',
  'look',
  'details',
  'algorithm',
  'addition',
  'respected',
  'experts',
  'outside',
  'government',
  'offered',
  'access',
  'confidential',
  'details',
  'algorithm',
  'assess',
  'capabilities',
  'publicly',
  'report',
  'findings',
  'chip',
  'design',
  'well',
  'heres',
  'possiblity',
  'addition',
  'encryption',
  'chip',
  'pre',
  'processes',
  'voice',
  'signals',
  'make',
  'easier',
  'analyze',
  'transcribe',
  'electronically',
  'chip',
  'widespread',
  'might',
  'effectively',
  'part',
  'massively',
  'parallel',
  'computer',
  'voice',
  'grepping',
  'us',
  'phone',
  'network',
  'criminal',
  'wrong',
  'thinking',
  'patrons',
  'thereof',
  'first',
  'chip',
  'doesnt',
  'runs',
  'megabits',
  'second',
  'far',
  'beyond',
  'need',
  'voice',
  'obviously',
  'intended',
  'data',
  'well',
  'high',
  'speed',
  'lines',
  'second',
  'advantage',
  'processing',
  'phone',
  'dont',
  'care',
  'fancy',
  'chip',
  'fancy',
  'roomful',
  'analyzers',
  'fort',
  'meade',
  'running',
  'program',
  'theyll',
  'years',
  'cant',
  'update',
  'every',
  'clipper',
  'chip',
  'thats',
  'third',
  'preprocessing',
  'chip',
  'would',
  'probably',
  'serious',
  'effect',
  'recognizability',
  'voice',
  'patterns',
  'nothing',
  'else',
  'would',
  'hurt',
  'acceptability',
  'product',
  'bis',
  'modems',
  'barely',
  'fast',
  'enough',
  'good',
  'job',
  'properly',
  'massaged',
  'voice',
  'add',
  'mix',
  'youre',
  'completely',
  'ballpark'],
 ['nicholas',
  'sylvain',
  'proper',
  'gun',
  'control',
  'proper',
  'gun',
  'control',
  'gun',
  'like',
  'american',
  'express',
  'card',
  'organization',
  'netcom',
  'online',
  'communications',
  'services',
  'login',
  'guest',
  'lines',
  'article',
  'david',
  'barton',
  'writes',
  'worth',
  'firearms',
  'sort',
  'long',
  'time',
  'readers',
  'group',
  'know',
  'dedicated',
  'rkba',
  'long',
  'time',
  'reader',
  'also',
  'staunch',
  'rkba',
  'supporter',
  'yet',
  'firearms',
  'toys',
  'freedom',
  'amen',
  'brother',
  'nicholas',
  'sylvain',
  'nra',
  'nicholas',
  'sylvain',
  'nra'],
 ['robert',
  'luke',
  'help',
  'installing',
  'old',
  'hd',
  'older',
  'compaq',
  'xt',
  'organization',
  'aerospace',
  'corporation',
  'el',
  'segundo',
  'ca',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'aerospace',
  'aero',
  'org',
  'trying',
  'install',
  'donated',
  'hard',
  'disk',
  'miniscribe',
  'vintage',
  'supercheap',
  'ancient',
  'compaq',
  'xt',
  'education',
  'problem',
  'supercheap',
  'compaq',
  'didnt',
  'come',
  'manual',
  'havent',
  'able',
  'figure',
  'start',
  'setup',
  'program',
  'began',
  'using',
  'pcs',
  'invented',
  'couple',
  'basic',
  'questions',
  'xt',
  'class',
  'computers',
  'even',
  'setup',
  'programs',
  'access',
  'anybody',
  'good',
  'advice',
  'proceed',
  'next',
  'look',
  'please',
  'let',
  'know',
  'mail',
  'best',
  'ill',
  'also',
  'watching',
  'newsgroup',
  'postings',
  'thanks',
  'advance',
  'robert',
  'robert',
  'luke',
  'internet',
  'aerospace',
  'corporation',
  'compuserve',
  'danger',
  'robinson'],
 ['gordon',
  'banks',
  'travel',
  'outside',
  'us',
  'bangladesh',
  'reply',
  'gordon',
  'banks',
  'organization',
  'univ',
  'pittsburgh',
  'computer',
  'science',
  'lines',
  'article',
  'george',
  'writes',
  'traveling',
  'bangaldesh',
  'summer',
  'wondering',
  'immunizations',
  'get',
  'going',
  'probably',
  'get',
  'information',
  'calling',
  'public',
  'health',
  'department',
  'county',
  'pittsburgh',
  'give',
  'shots',
  'free',
  'well',
  'bulletins',
  'medical',
  'libraries',
  'give',
  'recommendations',
  'could',
  'call',
  'infectious',
  'diseases',
  'section',
  'medicine',
  'department',
  'local',
  'medical',
  'school',
  'also',
  'probably',
  'want',
  'talk',
  'malaria',
  'prophylaxis',
  'need',
  'doctor',
  'get',
  'prescription',
  'gordon',
  'banks',
  'jxp',
  'skepticism',
  'chastity',
  'intellect',
  'shameful',
  'surrender',
  'soon'],
 ['college',
  'hockey',
  'star',
  'roster',
  'organization',
  'miami',
  'university',
  'academic',
  'computer',
  'service',
  'lines',
  'could',
  'someone',
  'please',
  'post',
  'rosters',
  'college',
  'hockey',
  'star',
  'game',
  'east',
  'west',
  'rosters',
  'thanks',
  'advance'],
 ['andrew',
  'leahy',
  'running',
  'dxterms',
  'onto',
  'apollo',
  'dec',
  'organization',
  'university',
  'western',
  'sydney',
  'nepean',
  'newsreader',
  'tin',
  'pl',
  'lines',
  'help',
  'im',
  'trying',
  'run',
  'dxterms',
  'decs',
  'xterm',
  'decstation',
  'ultrix',
  'motif',
  'display',
  'variable',
  'set',
  'apollo',
  'dn',
  'domain',
  'os',
  'motif',
  'get',
  'errors',
  'appearing',
  'decstation',
  'dxterm',
  'toolkit',
  'warning',
  'cannot',
  'convert',
  'string',
  'key',
  'apchardel',
  'type',
  'virtualbinding',
  'toolkit',
  'warning',
  'cannot',
  'convert',
  'string',
  'key',
  'apcopy',
  'type',
  'virtualbinding',
  'toolkit',
  'warning',
  'cannot',
  'convert',
  'string',
  'key',
  'apcut',
  'type',
  'virtualbinding',
  'toolkit',
  'warning',
  'cannot',
  'convert',
  'string',
  'key',
  'appaste',
  'type',
  'virtualbinding',
  'toolkit',
  'warning',
  'cannot',
  'convert',
  'string',
  'key',
  'apupbox',
  'type',
  'virtualbinding',
  'toolkit',
  'warning',
  'cannot',
  'convert',
  'string',
  'key',
  'apdownbox',
  'type',
  'virtualbinding',
  'toolkit',
  'warning',
  'cannot',
  'convert',
  'string',
  'key',
  'aprightbar',
  'type',
  'virtualbinding',
  'toolkit',
  'warning',
  'cannot',
  'convert',
  'string',
  'key',
  'apleftbar',
  'type',
  'virtualbinding',
  'segmentation',
  'fault',
  'ideas',
  'motif',
  'problem',
  'dec',
  'apollo',
  'versions',
  'motif',
  'incompatible',
  'something',
  'xkeysymdb',
  'xterms',
  'run',
  'fine',
  'dec',
  'displaying',
  'apollo',
  'arggh',
  'need',
  'run',
  'dxterm',
  'package',
  'using',
  'decs',
  'oracle',
  'case',
  'uses',
  'dxterm',
  'default',
  'lab',
  'apollo',
  'workstations',
  'would',
  'like',
  'run',
  'oracle',
  'andrew',
  'alf',
  'leahy',
  'andrew',
  'alf',
  'leahy',
  'phone',
  'irc',
  'pepsi',
  'alf',
  'uni',
  'western',
  'sydney',
  'nepean',
  'remote',
  'email',
  'sydney',
  'australia',
  'local',
  'email',
  'alf'],
 ['keith',
  'allan',
  'schneider',
  'keith',
  'schneider',
  'stealth',
  'poster',
  'organization',
  'california',
  'institute',
  'technology',
  'pasadena',
  'lines',
  'nntp',
  'posting',
  'host',
  'punisher',
  'caltech',
  'kent',
  'sandvik',
  'writes',
  'borrow',
  'philosophy',
  'dont',
  'truly',
  'understand',
  'color',
  'red',
  'seen',
  'true',
  'even',
  'experienced',
  'color',
  'red',
  'still',
  'might',
  'different',
  'interpretation',
  'wouldnt',
  'know',
  'red',
  'certainly',
  'couldnt',
  'judge',
  'subjectively',
  'objectivity',
  'applicable',
  'since',
  'wanting',
  'discuss',
  'merits',
  'red',
  'keith'],
 ['nathan',
  'wallace',
  'orion',
  'space',
  'drive',
  'reply',
  'nntp',
  'posting',
  'host',
  'beethoven',
  'cs',
  'colostate',
  'organization',
  'colorado',
  'state',
  'university',
  'computer',
  'science',
  'dept',
  'lines',
  'excellent',
  'reference',
  'non',
  'technical',
  'readers',
  'orion',
  'system',
  'starflight',
  'handbook',
  'eugene',
  'mallove',
  'gregory',
  'matloff',
  'isbn',
  'relevant',
  'chapter',
  'nuclear',
  'pulse',
  'propulsion',
  'book',
  'also',
  'contains',
  'lots',
  'technical',
  'references',
  'academically',
  'inclined',
  'enjoy',
  'nathan',
  'wallace',
  'reality',
  'mail',
  'ancient',
  'alphaean',
  'proverb'],
 ['jason',
  'schechner',
  'foot',
  'switches',
  'sale',
  'organization',
  'university',
  'virginia',
  'lines',
  'foot',
  'switches',
  'sale',
  'theyre',
  'great',
  'guitar',
  'amps',
  'keyboards',
  'diameter',
  'cable',
  'id',
  'like',
  'make',
  'offer',
  'knows',
  'jason',
  'settle',
  'raise',
  'family',
  'join',
  'pta',
  'buy',
  'sensible',
  'shoes',
  'chevrolet',
  'party',
  'till',
  'youre',
  'broke',
  'drag',
  'away',
  'ok',
  'al',
  'yankovic'],
 ['joseph',
  'askew',
  'small',
  'astronaut',
  'budget',
  'astronaut',
  'organization',
  'statistics',
  'pure',
  'applied',
  'mathematics',
  'university',
  'adelaide',
  'lines',
  'article',
  'pat',
  'writes',
  'one',
  'problem',
  'sending',
  'corp',
  'small',
  'astronauts',
  'may',
  'want',
  'start',
  'galactic',
  'empire',
  'napoleon',
  'complex',
  'know',
  'genghis',
  'khan',
  'little',
  'guy',
  'id',
  'bet',
  'julius',
  'caesar',
  'never',
  'broke',
  'think',
  'would',
  'lose',
  'money',
  'julius',
  'actually',
  'rather',
  'tall',
  'roman',
  'go',
  'record',
  'favouring',
  'small',
  'soldiers',
  'though',
  'thought',
  'tougher',
  'guts',
  'probably',
  'right',
  'think',
  'napoleon',
  'remember',
  'french',
  'avergae',
  'feet',
  'height',
  'relative',
  'really',
  'complex',
  'obspace',
  'seen',
  'burning',
  'candle',
  'high',
  'school',
  'goes',
  'relights',
  'large',
  'hot',
  'body',
  'placed',
  'space',
  'atmosphere',
  'exactly',
  'heat',
  'surroundings',
  'diffusion',
  'joseph',
  'askew',
  'joseph',
  'askew',
  'gauche',
  'proud',
  'autumn',
  'stillness',
  'see',
  'pleiades',
  'remote',
  'thorny',
  'deserts',
  'fell',
  'grief',
  'disclaimer',
  'sue',
  'see',
  'care',
  'north',
  'tents',
  'sky',
  'must',
  'end',
  'somwhere',
  'actually',
  'rather',
  'like',
  'brenda',
  'beyond',
  'pale',
  'river',
  'murmurs'],
 ['eliot',
  'station',
  'wagons',
  'open',
  'letter',
  'nissan',
  'organization',
  'clearer',
  'blir',
  'lines',
  'distribution',
  'na',
  'nntp',
  'posting',
  'host',
  'lanmola',
  'engr',
  'washington',
  'article',
  'theodore',
  'chen',
  'writes',
  'youll',
  'never',
  'catch',
  'dead',
  'minivan',
  'even',
  'minivan',
  'based',
  'viper',
  'running',
  'gear',
  'hmmmm',
  'sure',
  'since',
  'beast',
  'exists',
  'tell',
  'another',
  'though',
  'wont',
  'catch',
  'dead',
  'gmc',
  'syclone',
  'typhoon',
  'either',
  'bhp',
  'even',
  'fact',
  'clint',
  'eastwood',
  'one',
  'taste',
  'rational',
  'reasons',
  'teddy',
  'think',
  'audi',
  'gets',
  'liter',
  'next',
  'year',
  'car',
  'tested',
  'wagon',
  'banger',
  'speed',
  'manual',
  'rave',
  'review',
  'except',
  'servotronic',
  'audi',
  'trying',
  'recoup',
  'development',
  'costs',
  'since',
  'selling',
  'well',
  'sticking',
  'series',
  'cars',
  'neat',
  'marketing',
  'trick',
  'eh',
  'yeah',
  'wouldnt',
  'bad',
  'idea',
  'competition',
  'upcoming',
  'bimmer',
  'would',
  'maybe',
  'liter',
  'version',
  'avoid',
  'conflicts',
  'model',
  'strip',
  'luxo',
  'garbage',
  'let',
  'remain',
  'flared',
  'arches',
  'fat',
  'tires',
  'go',
  'fight',
  'maybe',
  'turn',
  'boost',
  'wee',
  'bit',
  'bump',
  'bhp',
  'say',
  'keeping',
  'mercedes',
  'style',
  'subtlety',
  'blah',
  'blah',
  'blah',
  'eliot'],
 ['craig',
  'boyle',
  'fast',
  'organization',
  'capital',
  'area',
  'central',
  'texas',
  'unix',
  'society',
  'austin',
  'tx',
  'lines',
  'article',
  'jim',
  'frost',
  'writes',
  'stuff',
  'autobahn',
  'safety',
  'sho',
  'speed',
  'deleted',
  'mustang',
  'essentially',
  'deal',
  'sho',
  'big',
  'power',
  'mustang',
  'much',
  'worse',
  'case',
  'design',
  'sho',
  'plant',
  'stuck',
  'mid',
  'size',
  'sedan',
  'almost',
  'modifications',
  'real',
  'life',
  'experience',
  'mustang',
  'handles',
  'like',
  'brick',
  'except',
  'youre',
  'invoking',
  'oversteer',
  'course',
  'something',
  'hard',
  'predicatbaly',
  'drift',
  'stock',
  'mustang',
  'suspension',
  'personally',
  'avoid',
  'highway',
  'stopping',
  'power',
  'inadequate',
  'even',
  'mph',
  'lots',
  'accelleration',
  'rest',
  'car',
  'par',
  'yes',
  'think',
  'mustang',
  'think',
  'school',
  'bus',
  'motor',
  'mind',
  'mustang',
  'fitted',
  'speed',
  'limiter',
  'isnt',
  'safe',
  'check',
  'local',
  'junkyard',
  'mustangs',
  'outnumber',
  'cars',
  'proportion',
  'way',
  'excess',
  'sales',
  'junkyards',
  'find',
  'astonishing',
  'cu',
  'somesuchlike',
  'jumped',
  'mustang',
  'poor',
  'brakes',
  'relation',
  'power',
  'ford',
  'least',
  'standardize',
  'svo',
  'rear',
  'brakes',
  'picked',
  'porsche',
  'example',
  'designed',
  'speed',
  'mind',
  'didnt',
  'could',
  'much',
  'cheaper',
  'one',
  'several',
  'mercedes',
  'audi',
  'models',
  'cars',
  'fairly',
  'expensive',
  'parts',
  'make',
  'drivable',
  'high',
  'speed',
  'elementary',
  'things',
  'keep',
  'mind',
  'europe',
  'since',
  'brought',
  'autobahn',
  'knowledge',
  'admittedly',
  'second',
  'hand',
  'believe',
  'following',
  'true',
  'drivers',
  'much',
  'better',
  'disciplined',
  'europe',
  'true',
  'northern',
  'europe',
  'latin',
  'countries',
  'something',
  'else',
  'roads',
  'comprising',
  'autobahn',
  'much',
  'better',
  'designed',
  'kindof',
  'true',
  'remember',
  'build',
  'adolf',
  'usually',
  'include',
  'animal',
  'fences',
  'makes',
  'far',
  'predictable',
  'us',
  'highways',
  'yes',
  'europe',
  'autobahn',
  'places',
  'europe',
  'autobahn',
  'german',
  'word',
  'freeway',
  'countries',
  'different',
  'names',
  'loose',
  'equivalents',
  'autostrada',
  'autoroute',
  'motorway',
  'etc',
  'speed',
  'limits',
  'arent',
  'line',
  'used',
  'us',
  'friends',
  'werent',
  'lying',
  'theyre',
  'typically',
  'much',
  'higher',
  'km',
  'europe',
  'seem',
  'brink',
  'kmh',
  'limit',
  'hasnt',
  'passed',
  'far',
  'know',
  'typical',
  'speeds',
  'western',
  'europe',
  'much',
  'higher',
  'us',
  'law',
  'enforcement',
  'negligible',
  'experience',
  'comapred',
  'us',
  'revenue',
  'enhancement',
  'motivation',
  'things',
  'really',
  'notice',
  'higher',
  'speed',
  'differentials',
  'professional',
  'attitude',
  'driving',
  'never',
  'see',
  'two',
  'cars',
  'running',
  'parallel',
  'mph',
  'oblivious',
  'around',
  'strongly',
  'suspect',
  'wont',
  'find',
  'lot',
  'rabbit',
  'owners',
  'mph',
  'nearly',
  'km',
  'autobahn',
  'could',
  'wrong',
  'people',
  'youre',
  'wrong',
  'gtis',
  'go',
  'fast',
  'kind',
  'noisy',
  'ideal',
  'autobahn',
  'car',
  'lot',
  'times',
  'see',
  'cars',
  'driven',
  'drivers',
  'foot',
  'floor',
  'know',
  'youre',
  'making',
  'ground',
  'identical',
  'car',
  'front',
  'respect',
  'lives',
  'something',
  'happens',
  'youre',
  'dead',
  'goes',
  'much',
  'driving',
  'high',
  'speed',
  'forces',
  'concentrate',
  'feel',
  'much',
  'safer',
  'driving',
  'autobahn',
  'typical',
  'us',
  'traffic',
  'people',
  'seem',
  'awake',
  'ive',
  'never',
  'seen',
  'driver',
  'reading',
  'book',
  'autobahn',
  'see',
  'often',
  'us',
  'craig',
  'doesnt',
  'seem',
  'fast',
  'minutes',
  'aclimation',
  'everybody',
  'drives',
  'fast',
  'big',
  'deal',
  'craig',
  'certainly',
  'havent',
  'convinced',
  'course',
  'speeding',
  'bad',
  'speeding',
  'illegal',
  'speed',
  'love',
  'big',
  'brother',
  'mind',
  'made',
  'already',
  'think',
  'sure',
  'dont',
  'pay',
  'attention',
  'postings',
  'jim',
  'frost'],
 ['hossien',
  'amehdi',
  'go',
  'hezbollah',
  'nntp',
  'posting',
  'host',
  'tbilisi',
  'src',
  'honeywell',
  'com',
  'organization',
  'honeywell',
  'systems',
  'research',
  'center',
  'lines',
  'article',
  'edward',
  'shnekendorf',
  'writes',
  'hossien',
  'amehdi',
  'writes',
  'know',
  'israelis',
  'thanks',
  'general',
  'dynamics',
  'fly',
  'high',
  'sky',
  'bomb',
  'hell',
  'village',
  'lebanon',
  'civilians',
  'including',
  'babies',
  'eldery',
  'getting',
  'killed',
  'plain',
  'murder',
  'arabs',
  'wouldnt',
  'position',
  'guerilla',
  'bases',
  'refugee',
  'camps',
  'artillery',
  'batteries',
  'atop',
  'apartment',
  'buildings',
  'munitions',
  'dumps',
  'hospitals',
  'maybe',
  'civilians',
  'wouldnt',
  'get',
  'killed',
  'kinda',
  'like',
  'saddam',
  'hussein',
  'putting',
  'civilians',
  'military',
  'bunker',
  'ed',
  'arabs',
  'since',
  'replying',
  'article',
  'assuming',
  'arab',
  'well',
  'im',
  'arab',
  'think',
  'brain',
  'full',
  'shit',
  'really',
  'believe',
  'said',
  'bombardment',
  'civilian',
  'none',
  'civilian',
  'areas',
  'lebanon',
  'israel',
  'consistent',
  'policy',
  'intimidation',
  'policy',
  'practiced',
  'called',
  'democracy',
  'middle',
  'east',
  'merley',
  'pointing',
  'side',
  'also',
  'suffering',
  'like',
  'said',
  'im',
  'arab',
  'say',
  'lebanese',
  'bet',
  'would',
  'defende',
  'homeland',
  'invader',
  'means'],
 ['cs',
  'au',
  'reboot',
  'problem',
  'organization',
  'university',
  'texas',
  'arlington',
  'lines',
  'tue',
  'apr',
  'received',
  'usma',
  'usma',
  'trotter',
  'usma',
  'smi',
  'eef',
  'id',
  'aa',
  'tue',
  'apr',
  'edt',
  'received',
  'usma',
  'usma',
  'eef',
  'id',
  'aa',
  'tue',
  'apr',
  'edt',
  'message',
  'id',
  'date',
  'tue',
  'apr',
  'edt',
  'peckham',
  'david',
  'cdt',
  'problem',
  'status',
  'running',
  'unisys',
  'pw',
  'sx',
  'dos',
  'problem',
  'even',
  'dos',
  'emm',
  'loaded',
  'cant',
  'ctl',
  'alt',
  'del',
  'computer',
  'beeps',
  'times',
  'rapidly',
  'hangs',
  'obscure',
  'reset',
  'requires',
  'screwdriver',
  'pencil',
  'power',
  'switch',
  'reboot',
  'anyone',
  'solution',
  'problem',
  'mail',
  'dave',
  'thanks',
  'dave',
  'david',
  'peckham',
  'internet',
  'military',
  'academy',
  'jason',
  'brown',
  'fav',
  'player',
  'ruben',
  'sierra'],
 ['marxhausen',
  'paul',
  'whats',
  'wrong',
  'cordlessphone',
  'organization',
  'university',
  'nebraska',
  'lincoln',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'unlinfo',
  'unl',
  'ive',
  'also',
  'found',
  'electronic',
  'starters',
  'instant',
  'compact',
  'fluourescent',
  'lamp',
  'fixtures',
  'kick',
  'interference',
  'nukes',
  'cordless',
  'phone',
  'hear',
  'guitar',
  'amplifier',
  'paul',
  'marxhausen',
  'university',
  'nebraska',
  'lincoln',
  'grace',
  'happens'],
 ['joseph',
  'kasanic',
  'monitors',
  'article',
  'usenet',
  'pt',
  'oe',
  'li',
  'distribution',
  'world',
  'organization',
  'case',
  'school',
  'engineering',
  'lines',
  'nntp',
  'posting',
  'host',
  'student',
  'cwru',
  'useragent',
  'nuntius',
  'xxmessage',
  'id',
  'xxdate',
  'tue',
  'apr',
  'gmt',
  'article',
  'daniel',
  'chen',
  'writes',
  'im',
  'interested',
  'getting',
  'color',
  'monitor',
  'new',
  'lciii',
  'unfortunately',
  'im',
  'really',
  'quite',
  'confused',
  'sony',
  'monitors',
  'could',
  'someone',
  'please',
  'compare',
  'sony',
  'apple',
  'thanks',
  'dan',
  'thought',
  'would',
  'mention',
  'sony',
  'longer',
  'manufactures',
  'cpd',
  'several',
  'manufacturing',
  'flaws',
  'new',
  'model',
  'like',
  'apples',
  'new',
  'sony',
  'trinitrom',
  'claims',
  'inches',
  'im',
  'sure',
  'details',
  'defects',
  'work',
  'schools',
  'bookstore',
  'tell',
  'nearly',
  'half',
  'returned',
  'kind',
  'defect',
  'another',
  'two',
  'cents',
  'worth'],
 ['jose',
  'unpingco',
  'sale',
  'ultrabots',
  'pc',
  'game',
  'keywords',
  'ultrabots',
  'video',
  'game',
  'pc',
  'game',
  'lines',
  'electronics',
  'arts',
  'ultrabots',
  'game',
  'sale',
  'book',
  'original',
  'disks',
  'original',
  'box',
  'best',
  'offer',
  'contact'],
 ['keith',
  'allan',
  'schneider',
  'political',
  'atheists',
  'organization',
  'california',
  'institute',
  'technology',
  'pasadena',
  'lines',
  'nntp',
  'posting',
  'host',
  'punisher',
  'caltech',
  'reference',
  'line',
  'trimmed',
  'jon',
  'livesey',
  'writes',
  'good',
  'deal',
  'confusion',
  'started',
  'assertion',
  'objective',
  'morality',
  'admit',
  'finished',
  'recursive',
  'definition',
  'murder',
  'objectively',
  'immoral',
  'eactly',
  'murder',
  'requires',
  'appeal',
  'morality',
  'yes',
  'switch',
  'targets',
  'little',
  'little',
  'asking',
  'goal',
  'mean',
  'goal',
  'suggesting',
  'objective',
  'goal',
  'somewhere',
  'form',
  'morals',
  'achieve',
  'well',
  'example',
  'goal',
  'natural',
  'morality',
  'survival',
  'propogation',
  'species',
  'another',
  'example',
  'moral',
  'system',
  'presented',
  'within',
  'declaration',
  'independence',
  'states',
  'guaranteed',
  'life',
  'liberty',
  'pursuit',
  'happiness',
  'see',
  'moral',
  'system',
  'must',
  'define',
  'purpose',
  'system',
  'shall',
  'moral',
  'unto',
  'end',
  'murder',
  'certainly',
  'violation',
  'golden',
  'rule',
  'thought',
  'defined',
  'murder',
  'intentional',
  'killing',
  'non',
  'murderer',
  'responded',
  'asking',
  'whether',
  'execution',
  'innocent',
  'person',
  'system',
  'capital',
  'punishment',
  'murder',
  'fail',
  'see',
  'anything',
  'never',
  'claimed',
  'system',
  'morality',
  'objective',
  'one',
  'thought',
  'first',
  'claim',
  'kind',
  'objective',
  'morality',
  'example',
  'murder',
  'wrong',
  'dont',
  'want',
  'claim',
  'thats',
  'fine',
  'well',
  'murder',
  'violates',
  'golen',
  'rule',
  'certainly',
  'pillar',
  'every',
  'moral',
  'system',
  'however',
  'assuming',
  'current',
  'system',
  'manner',
  'implementation',
  'objectively',
  'moral',
  'think',
  'good',
  'approximation',
  'cant',
  'perfect',
  'way',
  'dont',
  'seem',
  'understand',
  'difference',
  'arbitrary',
  'objective',
  'keith',
  'schneider',
  'defines',
  'murder',
  'thats',
  'arbitrary',
  'jon',
  'livesey',
  'may',
  'still',
  'say',
  'well',
  'according',
  'personal',
  'system',
  'morality',
  'killing',
  'humans',
  'murder',
  'wrong',
  'legal',
  'definition',
  'murder',
  'may',
  'usa',
  'kuweit',
  'saudi',
  'arabia',
  'prc',
  'may',
  'matters',
  'whit',
  'well',
  'objective',
  'would',
  'assume',
  'system',
  'based',
  'clear',
  'fundamental',
  'concepts',
  'arbitary',
  'implies',
  'clear',
  'line',
  'reasoning',
  'keith'],
 ['scott',
  'snowiss',
  'imagine',
  'organization',
  'university',
  'pittsburgh',
  'lines',
  'hello',
  'netters',
  'finally',
  'received',
  'information',
  'imagine',
  'pc',
  'presently',
  'shipping',
  'version',
  'software',
  'release',
  'version',
  'first',
  'quarter',
  'say',
  'upgrade',
  'purchase',
  'imagine',
  'costs',
  'upgrading',
  'another',
  'eligible',
  'call',
  'info',
  'modeler',
  'plus',
  'shipping',
  'handling',
  'requires',
  'pc',
  'megs',
  'math',
  'coprocessor',
  'dos',
  'microsoft',
  'mouse',
  'svga',
  'card',
  'thanks',
  'replies',
  'product',
  'received',
  'many',
  'contrasting',
  'replies',
  'scrounge',
  'money',
  'together',
  'think',
  'take',
  'plunge',
  'thanks',
  'info',
  'impulse',
  'want',
  'find',
  'get',
  'sheet',
  'sent',
  'impulse',
  'inc',
  'xerxes',
  'avenue',
  'north',
  'minneapolis',
  'mn',
  'thanks',
  'replies',
  'scott',
  'scott',
  'snowiss',
  'turn',
  'jack',
  'jack'],
 ['dev',
  'palmer',
  'wanted',
  'hardware',
  'pc',
  'article',
  'mcnc',
  'apr',
  'organization',
  'mcnc',
  'center',
  'rtp',
  'nc',
  'lines',
  'article',
  'joel',
  'kolstad',
  'writes',
  'brad',
  'wright',
  'writes',
  'know',
  'much',
  'pcs',
  'ibm',
  'comp',
  'might',
  'try',
  'joystick',
  'port',
  'though',
  'havent',
  'tried',
  'ive',
  'told',
  'port',
  'believe',
  'converters',
  'found',
  'joystick',
  'port',
  'really',
  'timers',
  'tick',
  'long',
  'takes',
  'circuit',
  'paddle',
  'charge',
  'something',
  'like',
  'vcc',
  'games',
  'works',
  'pretty',
  'well',
  'certainly',
  'wouldnt',
  'want',
  'try',
  'take',
  'lab',
  'measurements',
  'something',
  'non',
  'linear',
  'best',
  'info',
  'seen',
  'far',
  'article',
  'joystick',
  'metrics',
  'measuring',
  'physical',
  'properties',
  'pcs',
  'joystick',
  'port',
  'michael',
  'covington',
  'may',
  'issue',
  'pc',
  'tech',
  'journal',
  'talks',
  'read',
  'kinds',
  'things',
  'voltage',
  'current',
  'resistance',
  'basic',
  'even',
  'includes',
  'code',
  'simple',
  'oscilloscope',
  'display',
  'possible',
  'read',
  'joystick',
  'port',
  'directly',
  'dont',
  'want',
  'basic',
  'detailed',
  'information',
  'pc',
  'technical',
  'reference',
  'options',
  'adapters',
  'provide',
  'millisecond',
  'resolution',
  'timing',
  'functions',
  'thats',
  'appeared',
  'many',
  'times',
  'articles',
  'dr',
  'dobbs',
  'circuit',
  'cellar',
  'ink',
  'etc',
  'look',
  'public',
  'domain',
  'ztimer',
  'package',
  'wuarchive',
  'good',
  'luck',
  'dev',
  'palmer',
  'mcnc',
  'room',
  'box',
  'rtp',
  'nc',
  'fax'],
 ['carol',
  'bocher',
  'major',
  'views',
  'trinity',
  'lines',
  'ann',
  'jackson',
  'wrote',
  'may',
  'article',
  'may',
  'jim',
  'green',
  'writes',
  'cant',
  'someone',
  'describe',
  'someones',
  'trinity',
  'simple',
  'declarative',
  'sentences',
  'words',
  'common',
  'meaning',
  'answer',
  'question',
  'appears',
  'would',
  'like',
  'submit',
  'following',
  'helped',
  'enormously',
  'already',
  'posted',
  'apologize',
  'seems',
  'middle',
  'ages',
  'customary',
  'pastors',
  'explain',
  'trinity',
  'parishoners',
  'analogy',
  'water',
  'water',
  'water',
  'exist',
  'three',
  'forms',
  'liquid',
  'ice',
  'vapor',
  'thus',
  'possible',
  'one',
  'essence',
  'exist',
  'three',
  'forms',
  'recently',
  'pastor',
  'church',
  'drew',
  'analogy',
  'also',
  'found',
  'useful',
  'woman',
  'often',
  'percieved',
  'others',
  'three',
  'ways',
  'depending',
  'relationship',
  'mother',
  'wife',
  'employee',
  'business',
  'thus',
  'seems',
  'clear',
  'essence',
  'god',
  'subsist',
  'father',
  'son',
  'holy',
  'spirit',
  'depending',
  'ones',
  'particular',
  'need',
  'carol',
  'bocher'],
 ['paolini',
  'ftp',
  'unix',
  'dos',
  'unix',
  'organization',
  'internet',
  'lines',
  'im',
  'new',
  'found',
  'files',
  'public',
  'look',
  'ftped',
  'system',
  'access',
  'used',
  'kermit',
  'transmit',
  'via',
  'modem',
  'host',
  'computer',
  'pc',
  'based',
  'file',
  'system',
  'access',
  'internet',
  'modem',
  'access',
  'university',
  'mainframe',
  'pc',
  'file',
  'server',
  'pull',
  'files',
  'disk',
  'pull',
  'disk',
  'sgi',
  'indigo',
  'sgi',
  'networked',
  'yet',
  'try',
  'uncompress',
  'un',
  'tar',
  'files',
  'either',
  'come',
  'garbage',
  'get',
  'error',
  'tar',
  'process',
  'directories',
  'invalid',
  'im',
  'wondering',
  'transfer',
  'unix',
  'files',
  'compressed',
  'binary',
  'ascii',
  'multiple',
  'platforms',
  'guess',
  'copy',
  'dos',
  'disk',
  'screwing',
  'things',
  'help',
  'appreciated',
  'bob'],
 ['pat',
  'myrto',
  'white',
  'house',
  'public',
  'encryption',
  'management',
  'fact',
  'sheet',
  'article',
  'rwing',
  'distribution',
  'na',
  'organization',
  'totally',
  'unorganized',
  'lines',
  'article',
  'paul',
  'olson',
  'writes',
  'article',
  'carl',
  'ellison',
  'writes',
  'article',
  'clipper',
  'chip',
  'announcement',
  'writes',
  'attorney',
  'general',
  'good',
  'post',
  'describing',
  'store',
  'us',
  'deleted',
  'also',
  'interesting',
  'note',
  'two',
  'months',
  'ago',
  'rush',
  'limbaugh',
  'said',
  'clinton',
  'would',
  'plumbers',
  'force',
  'shortly',
  'clinton',
  'henchmen',
  'firmly',
  'believe',
  'strong',
  'ubiquitous',
  'government',
  'control',
  'anytime',
  'leader',
  'believes',
  'leader',
  'every',
  'means',
  'possible',
  'retain',
  'control',
  'take',
  'take',
  'government',
  'back',
  'otherwise',
  'end',
  'living',
  'equivalent',
  'high',
  'tech',
  'third',
  'world',
  'dictatorship',
  'take',
  'responsibility',
  'personal',
  'welfare',
  'actions',
  'totally',
  'agree',
  'propose',
  'take',
  'government',
  'back',
  'obviously',
  'dont',
  'listen',
  'people',
  'want',
  'people',
  'know',
  'responsibile',
  'person',
  'telnetted',
  'site',
  'clipper',
  'chip',
  'release',
  'see',
  'entity',
  'clipper',
  'got',
  'lists',
  'another',
  'person',
  'tried',
  'bit',
  'later',
  'commands',
  'disabled',
  'sound',
  'like',
  'administration',
  'wants',
  'accountability',
  'information',
  'dont',
  'control',
  'given',
  'people',
  'secret',
  'development',
  'implimentation',
  'clipper',
  'chip',
  'decision',
  'backs',
  'bet',
  'unaurhorized',
  'encryption',
  'methods',
  'software',
  'considered',
  'terrorist',
  'tools',
  'also',
  'civil',
  'forfeiture',
  'along',
  'systems',
  'running',
  'watch',
  'see',
  'wrong',
  'government',
  'going',
  'cooperative',
  'people',
  'taking',
  'back',
  'resources',
  'unlimited',
  'access',
  'media',
  'propeganda',
  'almost',
  'guns',
  'soon',
  'guns',
  'clintons',
  'agenda',
  'succeeds',
  'play',
  'ball',
  'waco',
  'might',
  'good',
  'example',
  'expect',
  'warrant',
  'released',
  'stated',
  'reason',
  'raid',
  'bds',
  'spent',
  'large',
  'sum',
  'weapons',
  'undetermined',
  'amount',
  'time',
  'dont',
  'recall',
  'spending',
  'lot',
  'money',
  'guns',
  'etc',
  'illegal',
  'yet',
  'clinton',
  'might',
  'go',
  'history',
  'worst',
  'thing',
  'ever',
  'happen',
  'us',
  'known',
  'peoples',
  'socalist',
  'democratic',
  'republic',
  'america',
  'psdra',
  'big',
  'brother',
  'listening',
  'hail',
  'big',
  'brother',
  'sister',
  'ten',
  'years',
  'late',
  'without',
  'prejudice',
  'ucc',
  'pat',
  'myrto',
  'seattle',
  'wa',
  'else',
  'fails',
  'try',
  'uunet',
  'pilchuck',
  'rwing',
  'pat',
  'wisdom',
  'two',
  'things',
  'infinite',
  'universe',
  'human',
  'stupidity',
  'sure',
  'former',
  'albert',
  'einstien'],
 ['rick',
  'granberry',
  'help',
  'reply',
  'rick',
  'granberry',
  'organization',
  'motorola',
  'paging',
  'telepoint',
  'systems',
  'group',
  'lines',
  'article',
  'william',
  'hargreaves',
  'writes',
  'hi',
  'everyone',
  'im',
  'commited',
  'christian',
  'battling',
  'problem',
  'know',
  'romans',
  'talks',
  'saved',
  'faith',
  'deeds',
  'yet',
  'hebrews',
  'james',
  'say',
  'faith',
  'without',
  'deeds',
  'useless',
  'saying',
  'fools',
  'still',
  'think',
  'believing',
  'enough',
  'someone',
  'fully',
  'believing',
  'life',
  'totally',
  'lead',
  'god',
  'according',
  'romans',
  'person',
  'still',
  'saved',
  'faith',
  'yes',
  'believe',
  'scenario',
  'possible',
  'either',
  'believing',
  'living',
  'least',
  'part',
  'led',
  'god',
  'else',
  'believing',
  'intellectually',
  'waiting',
  'enough',
  'especially',
  'important',
  'remember',
  'one',
  'judge',
  'whether',
  'committed',
  'judge',
  'someone',
  'else',
  'guess',
  'closest',
  'come',
  'know',
  'someones',
  'situation',
  'listening',
  'statements',
  'fallible',
  'sense',
  'communion',
  'one',
  'another',
  'bit',
  'says',
  'god',
  'preferes',
  'someone',
  'cold',
  'doesnt',
  'know',
  'condemned',
  'lukewarm',
  'christian',
  'someone',
  'knows',
  'believes',
  'god',
  'make',
  'attempt',
  'live',
  'bible',
  'regarding',
  'passage',
  'need',
  'remember',
  'letter',
  'church',
  'laodicea',
  'people',
  'body',
  'christ',
  'rev',
  'talks',
  'works',
  'translation',
  'could',
  'say',
  'says',
  'lack',
  'concern',
  'makes',
  'sick',
  'point',
  'throwing',
  'opinion',
  'saved',
  'faith',
  'alone',
  'taught',
  'romans',
  'square',
  'mind',
  'teachings',
  'james',
  'conjunction',
  'lukewarm',
  'christian',
  'spat',
  'right',
  'saving',
  'faith',
  'alone',
  'except',
  'faith',
  'come',
  'alone',
  'catch',
  'two',
  'meanings',
  'offer',
  'explanation',
  'jesus',
  'would',
  'either',
  'fire',
  'cold',
  'knew',
  'thus',
  'could',
  'made',
  'aware',
  'separation',
  'admonishment',
  'children',
  'eternal',
  'damnation',
  'answer',
  'fool',
  'according',
  'folly',
  'lest',
  'thou',
  'also',
  'like',
  'unto',
  'answer',
  'fool',
  'according',
  'folly',
  'lest',
  'wise',
  'conceit',
  'proverbs'],
 ['sami',
  'jaakko',
  'tikka',
  'finding',
  'state',
  'state',
  'keys',
  'eg',
  'capslock',
  'numlock',
  'organization',
  'helsinki',
  'university',
  'technology',
  'cs',
  'lab',
  'lines',
  'distribution',
  'inet',
  'nntp',
  'posting',
  'host',
  'tahma',
  'cs',
  'hut',
  'fi',
  'ralph',
  'seguin',
  'writes',
  'question',
  'means',
  'determining',
  'state',
  'capslock',
  'numlock',
  'dont',
  'know',
  'way',
  'except',
  'see',
  'modifiers',
  'th',
  'keypress',
  'event',
  'course',
  'reason',
  'need',
  'always',
  'know',
  'state',
  'modifiers',
  'even',
  'windows',
  'dont',
  'keyborads',
  'focus',
  'always',
  'ask',
  'keypress',
  'events',
  'root',
  'window',
  'get',
  'keypresses',
  'always',
  'know',
  'pressed',
  'even',
  'pointed',
  'question',
  'easy',
  'means',
  'making',
  'keyboard',
  'act',
  'like',
  'pc',
  'keyboard',
  'ie',
  'capslock',
  'active',
  'user',
  'presses',
  'shift',
  'id',
  'like',
  'get',
  'lowercase',
  'instead',
  'think',
  'question',
  'implement',
  'xlookupstring',
  'always',
  'write',
  'another',
  'function',
  'interprets',
  'keypresses',
  'like',
  'look',
  'implementation',
  'xlookupstring',
  'xlib',
  'sources',
  'modify',
  'little',
  'bit',
  'sami',
  'tikka',
  'hut',
  'admd',
  'fumail',
  'fi',
  'live',
  'long',
  'prosper'],
 ['andrew',
  'fraser',
  'god',
  'shaped',
  'hole',
  'accepting',
  'jeesus',
  'heart',
  'organization',
  'glasgow',
  'university',
  'computing',
  'science',
  'dept',
  'lines',
  'several',
  'people',
  'involved',
  'trying',
  'figure',
  'first',
  'used',
  'phrase',
  'god',
  'shaped',
  'hole',
  'clh',
  'god',
  'shaped',
  'vacuum',
  'us',
  'something',
  'effect',
  'generally',
  'attributed',
  'blaise',
  'pascal',
  'want',
  'know',
  'god',
  'shaped',
  'vacuum',
  'inside',
  'god',
  'fact',
  'infinite',
  'omnipresent',
  'name',
  'andrew',
  'james',
  'fraser',
  'mail',
  'ese',
  'student',
  'university',
  'glasgow',
  'standard',
  'disclaimers',
  'dont',
  'think',
  'youre',
  'tad',
  'literal',
  'metaphor',
  'clh'],
 ['dorin',
  'baru',
  'reasons',
  'go',
  'hezbollah',
  'organization',
  'unocal',
  'corporation',
  'lines',
  'hossien',
  'amehdi',
  'writes',
  'business',
  'reading',
  'minds',
  'however',
  'case',
  'would',
  'necessary',
  'israelis',
  'top',
  'leaders',
  'past',
  'present',
  'always',
  'come',
  'across',
  'arrogant',
  'tough',
  'talks',
  'trying',
  'intimidate',
  'arabs',
  'way',
  'see',
  'israelis',
  'arabs',
  'able',
  'achieve',
  'peace',
  'almost',
  'years',
  'fighting',
  'following',
  'two',
  'major',
  'reasons',
  'arab',
  'governments',
  'really',
  'representative',
  'people',
  'currently',
  'leaders',
  'stupid',
  'independent',
  'dictators',
  'israeli',
  'government',
  'arrogant',
  'none',
  'comprising',
  'relevant',
  'whether',
  'agree',
  'reasonable',
  'thought',
  'say',
  'appreciate',
  'point',
  'however',
  'would',
  'make',
  'remarks',
  'forgot',
  'hate',
  'government',
  'level',
  'arab',
  'governments',
  'taugh',
  'talk',
  'arrogance',
  'adults',
  'arent',
  'listen',
  'tough',
  'talk',
  'american',
  'politicians',
  'switch',
  'channel',
  'would',
  'rather',
  'intimidated',
  'dummy',
  'talking',
  'tough',
  'bomb',
  'ready',
  'blow',
  'seat',
  'dorin'],
 ['mark',
  'eckenwiler',
  'capital',
  'gains',
  'tax',
  'increase',
  'loses',
  'money',
  'organization',
  'nwo',
  'steering',
  'committee',
  'distribution',
  'na',
  'lines',
  'sez',
  'article',
  'boomer',
  'writes',
  'im',
  'saying',
  'long',
  'term',
  'investor',
  'ones',
  'likely',
  'large',
  'capital',
  'gains',
  'would',
  'foolish',
  'sell',
  'order',
  'avoid',
  'tax',
  'hike',
  'might',
  'disappear',
  'given',
  'year',
  'overcome',
  'year',
  'two',
  'accumlated',
  'gains',
  'response',
  'people',
  'pay',
  'capital',
  'gains',
  'taxes',
  'long',
  'term',
  'investors',
  'enough',
  'arent',
  'huge',
  'blip',
  'whenever',
  'capital',
  'gains',
  'taxes',
  'get',
  'raised',
  'never',
  'said',
  'everyone',
  'would',
  'find',
  'advantageous',
  'said',
  'enough',
  'would',
  'result',
  'readily',
  'noticeable',
  'distort',
  'trends',
  'even',
  'bretts',
  'eventual',
  'return',
  'figures',
  'correct',
  'clearly',
  'werent',
  'hed',
  'still',
  'wrong',
  'cause',
  'blip',
  'fails',
  'consider',
  'basic',
  'factors',
  'ted',
  'notes',
  'everyone',
  'long',
  'term',
  'investor',
  'one',
  'might',
  'find',
  'oneself',
  'late',
  'anticipating',
  'expenses',
  'near',
  'term',
  'require',
  'selling',
  'holdings',
  'given',
  'choice',
  'waiting',
  'weeks',
  'taking',
  'extra',
  'tax',
  'hit',
  'selling',
  'december',
  'preferential',
  'tax',
  'treatment',
  'fool',
  'would',
  'choose',
  'former',
  'fact',
  'brett',
  'construct',
  'hoc_',
  'calculations',
  'would',
  'beneficial',
  'investors',
  'many',
  'respects',
  'beside',
  'point',
  'plenty',
  'style',
  'advice',
  'given',
  'unsophisticated',
  'investors',
  'late',
  'sell',
  'save',
  'taxes',
  'case',
  'anyone',
  'missed',
  'shortage',
  'similar',
  'advice',
  'late',
  'last',
  'year',
  'nytimes',
  'even',
  'though',
  'advice',
  'based',
  'foregone',
  'conclusion',
  'enacted',
  'law',
  'merely',
  'assumption',
  'clinton',
  'would',
  'raise',
  'tax',
  'rates',
  'without',
  'capping',
  'cg',
  'taxes',
  'contrary',
  'current',
  'proposal',
  'nice',
  'think',
  'investors',
  'always',
  'behave',
  'optimal',
  'economic',
  'interest',
  'like',
  'assuming',
  'weightless',
  'ropes',
  'frictionless',
  'pulleys',
  'though',
  'sort',
  'thinking',
  'often',
  'fails',
  'describe',
  'accurately',
  'happens',
  'real',
  'world',
  'moral',
  'always',
  'choose',
  'right',
  'sort',
  'parents',
  'start',
  'rough',
  'george',
  'ade',
  'mark',
  'eckenwiler',
  'cmcl',
  'panix',
  'eck'],
 ['esin',
  'terzioglu',
  'armenia',
  'says',
  'could',
  'shoot',
  'turkish',
  'planes',
  'organization',
  'univ',
  'rochester',
  'college',
  'engineering',
  'applied',
  'science',
  'lines',
  'article',
  'writes',
  'esin',
  'terzioglu',
  'ignorance',
  'obvious',
  'posting',
  'esin',
  'terzioglu',
  'cyprus',
  'independent',
  'country',
  'turkish',
  'greek',
  'inhabitants',
  'greek',
  'island',
  'like',
  'ignorant',
  'posting',
  'claims',
  'esin',
  'terzioglu',
  'name',
  'cyprus',
  'english',
  'esin',
  'terzioglu',
  'next',
  'time',
  'read',
  'learn',
  'post',
  'aside',
  'spelling',
  'turks',
  'want',
  'admit',
  'past',
  'mistakes',
  'know',
  'turkish',
  'invasion',
  'cyprus',
  'mistake',
  'bad',
  'anything',
  'may',
  'ask',
  'mistake',
  'yes',
  'would',
  'say',
  'greeks',
  'invade',
  'cyprus',
  'greeks',
  'try',
  'invade',
  'cyprus',
  'turkish',
  'intervention',
  'failed',
  'info',
  'esin'],
 ['alexander',
  'essbaum',
  'header',
  'paint',
  'disclaimer',
  'posting',
  'represents',
  'posters',
  'views',
  'necessarily',
  'ibm',
  'nntp',
  'posting',
  'host',
  'relva',
  'rchland',
  'ibm',
  'com',
  'organization',
  'ibm',
  'rochester',
  'lines',
  'seems',
  'miles',
  'trailering',
  'rain',
  'rusted',
  'bikes',
  'headers',
  'metal',
  'underneath',
  'solid',
  'need',
  'sand',
  'rust',
  'coating',
  'repaint',
  'pipes',
  'black',
  'recommendations',
  'paint',
  'application',
  'said',
  'paint',
  'thanks',
  'axel'],
 ['tom',
  'lastrange',
  'forcing',
  'window',
  'manager',
  'accept',
  'specific',
  'coordinates',
  'window',
  'organization',
  'parcplace',
  'boulder',
  'lines',
  'article',
  'ethan',
  'solomita',
  'writes',
  'hi',
  'im',
  'trying',
  'figure',
  'make',
  'window',
  'manager',
  'place',
  'window',
  'create',
  'window',
  'command',
  'tells',
  'regardless',
  'may',
  'think',
  'right',
  'application',
  'reason',
  'know',
  'better',
  'dont',
  'want',
  'set',
  'override',
  'redirect',
  'want',
  'embellishments',
  'window',
  'manager',
  'gives',
  'want',
  'wm',
  'accept',
  'choice',
  'location',
  'may',
  'think',
  'right',
  'may',
  'exactly',
  'user',
  'wants',
  'assuming',
  'application',
  'reason',
  'know',
  'better',
  'imho',
  'anti',
  'social',
  'start',
  'application',
  'geometry',
  'option',
  'going',
  'ignore',
  'well',
  'theres',
  'really',
  'way',
  'force',
  'window',
  'manager',
  'much',
  'anything',
  'managing',
  'window',
  'ask',
  'hint',
  'theres',
  'guarantee',
  'youre',
  'going',
  'get',
  'want',
  'tom',
  'lastrange'],
 ['peter',
  'levine',
  'bike',
  'sale',
  'harley',
  'flhtc',
  'organization',
  'uri',
  'department',
  'electrical',
  'engineering',
  'lines',
  'sale',
  'harley',
  'flhtc',
  'liberty',
  'edition',
  'good',
  'condition',
  'many',
  'extras',
  'asking',
  'located',
  'rhode',
  'island',
  'peter',
  'levine'],
 ['serdar',
  'argic',
  'armenians',
  'exterminated',
  'million',
  'muslim',
  'people',
  'denying',
  'obvious',
  'reply',
  'serdar',
  'argic',
  'distribution',
  'world',
  'lines',
  'article',
  'writes',
  'read',
  'group',
  'time',
  'appalled',
  'lack',
  'scholarship',
  'fuzzy',
  'thinking',
  'reliance',
  'obsessed',
  'obnoxious',
  'posters',
  'well',
  'armenian',
  'jewish',
  'scholars',
  'denying',
  'obvious',
  'source',
  'hovannisian',
  'richard',
  'armenia',
  'road',
  'independence',
  'university',
  'california',
  'press',
  'berkeley',
  'los',
  'angeles',
  'addition',
  'kars',
  'batum',
  'oblasts',
  'empire',
  'increased',
  'area',
  'transcaucasia',
  'square',
  'miles',
  'estimated',
  'population',
  'entire',
  'region',
  'percent',
  'armenian',
  'percent',
  'georgian',
  'percent',
  'moslem',
  'latter',
  'group',
  'tatars',
  'paradoxically',
  'barely',
  'one',
  'third',
  'transcaucasias',
  'armenians',
  'lived',
  'erevan',
  'guberniia',
  'christians',
  'constituted',
  'majority',
  'three',
  'seven',
  'uezds',
  'erevan',
  'uezd',
  'administrative',
  'center',
  'province',
  'armenians',
  'compared',
  'moslems',
  'time',
  'russian',
  'census',
  'however',
  'armenians',
  'established',
  'scant',
  'majority',
  'percent',
  'guberniia',
  'risen',
  'percent',
  'inhabitants',
  'impressive',
  'change',
  'provinces',
  'ethnic',
  'character',
  'notwithstanding',
  'eve',
  'creation',
  'armenian',
  'republic',
  'solid',
  'block',
  'tartars',
  'continued',
  'dominate',
  'southern',
  'districts',
  'outskirts',
  'ereven',
  'border',
  'persia',
  'see',
  'also',
  'map',
  'historic',
  'armenia',
  'map',
  'administrative',
  'subdivisions',
  'transcaucasia',
  'percent',
  'turk',
  'closed',
  'roads',
  'mountain',
  'passes',
  'might',
  'serve',
  'ways',
  'escape',
  'tartars',
  'proceeded',
  'work',
  'extermination',
  'troops',
  'surrounded',
  'village',
  'village',
  'little',
  'resistance',
  'offered',
  'artillery',
  'knocked',
  'huts',
  'heaps',
  'stone',
  'dust',
  'villages',
  'became',
  'untenable',
  'inhabitants',
  'fled',
  'fields',
  'bullets',
  'bayonets',
  'completed',
  'work',
  'tartars',
  'escaped',
  'course',
  'found',
  'refuge',
  'mountains',
  'succeeded',
  'crossing',
  'border',
  'turkey',
  'rest',
  'killed',
  'whole',
  'length',
  'borderland',
  'russian',
  'armenia',
  'nakhitchevan',
  'akhalkalaki',
  'hot',
  'plains',
  'ararat',
  'cold',
  'mountain',
  'plateau',
  'north',
  'dotted',
  'mute',
  'mournful',
  'ruins',
  'tartar',
  'villages',
  'quiet',
  'villages',
  'except',
  'howling',
  'wolves',
  'jackals',
  'visit',
  'paw',
  'scattered',
  'bones',
  'dead',
  'ohanus',
  'appressian',
  'men',
  'like',
  'soviet',
  'armenia',
  'today',
  'longer',
  'exists',
  'single',
  'turkish',
  'soul',
  'power',
  'tear',
  'away',
  'veil',
  'illusion',
  'us',
  'create',
  'certainly',
  'possible',
  'severe',
  'artificial',
  'life',
  'support',
  'system',
  'imagined',
  'ethnic',
  'purity',
  'us',
  'falsely',
  'trust',
  'structure',
  'support',
  'heart',
  'beats',
  'alien',
  'land',
  'sahak',
  'melkonian',
  'preserving',
  'armenian',
  'purity',
  'daniel',
  'dusan',
  'chukurov',
  'worlds',
  'inaction',
  'conflict',
  'began',
  'mostly',
  'christian',
  'armenian',
  'enclave',
  'inside',
  'muslim',
  'azerbaijan',
  'might',
  'encouraged',
  'conflict',
  'bosnia',
  'herzegovina',
  'said',
  'moscow',
  'based',
  'activist',
  'whos',
  'part',
  'armenian',
  'kidding',
  'armenians',
  'tore',
  'apart',
  'ottoman',
  'empires',
  'eastern',
  'provinces',
  'massacred',
  'million',
  'defenseless',
  'turkish',
  'women',
  'children',
  'elderly',
  'people',
  'burned',
  'thousands',
  'turkish',
  'kurdish',
  'villages',
  'exterminated',
  'entire',
  'turkish',
  'population',
  'armenian',
  'dictatorship',
  'outrageous',
  'sleight',
  'hand',
  'still',
  'employed',
  'today',
  'armenia',
  'brings',
  'depth',
  'verification',
  'turkish',
  'genocide',
  'hard',
  'match',
  'hundred',
  'years',
  'ago',
  'armenians',
  'thought',
  'could',
  'get',
  'whatever',
  'wanted',
  'sheer',
  'terror',
  'like',
  'russian',
  'anarchists',
  'accepted',
  'role',
  'models',
  'several',
  'armenian',
  'terror',
  'groups',
  'like',
  'asala',
  'sdpa',
  'arf',
  'terrorism',
  'revisionism',
  'triangle',
  'resorted',
  'tactics',
  'butchering',
  'scores',
  'innocent',
  'turks',
  'families',
  'united',
  'states',
  'europe',
  'seems',
  'different',
  'scale',
  'fascist',
  'soviet',
  'armenia',
  'today',
  'merciless',
  'massacre',
  'civilian',
  'population',
  'small',
  'azeri',
  'town',
  'khojali',
  'pop',
  'karabagh',
  'azerbaijan',
  'reported',
  'taken',
  'place',
  'night',
  'feb',
  'coordinated',
  'military',
  'operation',
  'th',
  'mechanized',
  'division',
  'cis',
  'army',
  'armenian',
  'insurgents',
  'close',
  'people',
  'reported',
  'massacred',
  'elderly',
  'children',
  'spared',
  'many',
  'badly',
  'beaten',
  'shot',
  'close',
  'range',
  'sense',
  'rage',
  'helplessness',
  'overwhelmed',
  'azeri',
  'population',
  'face',
  'well',
  'armed',
  'equipped',
  'armenian',
  'insurgency',
  'neighboring',
  'azeri',
  'city',
  'aghdam',
  'outside',
  'karabagh',
  'region',
  'come',
  'heavy',
  'armenian',
  'artillery',
  'shelling',
  'city',
  'hospital',
  'hit',
  'two',
  'pregnant',
  'women',
  'well',
  'new',
  'born',
  'infant',
  'killed',
  'azerbaijan',
  'appealing',
  'international',
  'community',
  'condemn',
  'barbaric',
  'ruthless',
  'attacks',
  'population',
  'sovereignty',
  'serdar',
  'argic',
  'closed',
  'roads',
  'mountain',
  'passes',
  'might',
  'serve',
  'ways',
  'escape',
  'turks',
  'proceeded',
  'work',
  'extermination',
  'ohanus',
  'appressian',
  'soviet',
  'armenia',
  'today',
  'longer',
  'exists',
  'single',
  'turkish',
  'soul',
  'sahak',
  'melkonian'],
 ['jake',
  'livni',
  'go',
  'hezbollah',
  'organization',
  'department',
  'redundancy',
  'department',
  'lines',
  'article',
  'brad',
  'hernlem',
  'writes',
  'think',
  'try',
  'find',
  'sources',
  'news',
  'goes',
  'lebanon',
  'try',
  'see',
  'propaganda',
  'thank',
  'brad',
  'ali',
  'warning',
  'us',
  'dangers',
  'propaganda',
  'funny',
  'though',
  'coming',
  'priori',
  'black',
  'white',
  'hats',
  'one',
  'sure',
  'wonders',
  'idf',
  'bombard',
  'villages',
  'retaliation',
  'pin',
  'point',
  'attacks',
  'soldiers',
  'lebanon',
  'call',
  'lebanese',
  'terrorists',
  'executes',
  'pin',
  'point',
  'attacks',
  'israelis',
  'guys',
  'white',
  'hats',
  'ones',
  'black',
  'hats',
  'neither',
  'mean',
  'civilians',
  'farmers',
  'teachers',
  'school',
  'children',
  'well',
  'maybe',
  'terrorists',
  'maybe',
  'propaganda',
  'correct',
  'hmm',
  'jake',
  'livni',
  'ten',
  'years',
  'george',
  'bush',
  'american',
  'occupied',
  'new',
  'york',
  'replaced',
  'jimmy',
  'carter',
  'opinions',
  'employer',
  'opinions',
  'standard',
  'failed',
  'president'],
 ['stan',
  'krieger',
  'soc',
  'motss',
  'et',
  'al',
  'princeton',
  'axes',
  'matching',
  'funds',
  'boy',
  'scouts',
  'article',
  'cbnewsl',
  'apr',
  'organization',
  'summit',
  'nj',
  'lines',
  'student',
  'writes',
  'somewhere',
  'roger',
  'colin',
  'shouse',
  'writes',
  'radical',
  'gay',
  'dogma',
  'somewhere',
  'else',
  'claims',
  'claim',
  'claim',
  'knowing',
  'doesnt',
  'know',
  'least',
  'twenty',
  'instances',
  'kind',
  'muddleheaded',
  'fourth',
  'reich',
  'sophistique',
  'shit',
  'postings',
  'maybe',
  'fact',
  'im',
  'sure',
  'instances',
  'could',
  'counted',
  'reproduce',
  'like',
  'virus',
  'consider',
  'words',
  'question',
  'best',
  'response',
  'weasels',
  'like',
  'shouse',
  'stan',
  'krieger',
  'possibilities',
  'study',
  'dispassionately',
  'figure',
  'work',
  'remember',
  'youve',
  'learned',
  'combat',
  'clones',
  'get',
  'office',
  'contribute',
  'insights',
  'favorite',
  'abnormal',
  'psych',
  'ward',
  'learn',
  'overcome',
  'repugnance',
  'serial',
  'murder',
  'posting',
  'totally',
  'uncalled',
  'rec',
  'scouting',
  'point',
  'raised',
  'answered',
  'roger',
  'clearly',
  'stated',
  'support',
  'bsa',
  'position',
  'issue',
  'specifically',
  'homosexual',
  'behavior',
  'constitutes',
  'violation',
  'scout',
  'oath',
  'specifically',
  'promise',
  'live',
  'morally',
  'straight',
  'really',
  'nothing',
  'else',
  'discuss',
  'trying',
  'cloud',
  'issue',
  'comparisons',
  'blacks',
  'minorities',
  'also',
  'meaningless',
  'like',
  'comparing',
  'apples',
  'oranges',
  'people',
  'cant',
  'control',
  'race',
  'control',
  'behavior',
  'else',
  'possibly',
  'discuss',
  'rec',
  'scouting',
  'issue',
  'nobody',
  'including',
  'bsa',
  'denying',
  'anybody',
  'right',
  'live',
  'worship',
  'please',
  'dont',
  'please',
  'doesnt',
  'mean',
  'bsa',
  'big',
  'bad',
  'wolf',
  'adhering',
  'recognized',
  'positive',
  'religious',
  'moral',
  'standards',
  'society',
  'established',
  'continue',
  'based',
  'stan',
  'krieger',
  'opinions',
  'advice',
  'suggestions',
  'even',
  'unix',
  'system',
  'laboratories',
  'related',
  'employment',
  'summit',
  'nj'],
 ['keith',
  'ryan',
  'political',
  'atheists',
  'organization',
  'case',
  'western',
  'reserve',
  'university',
  'lines',
  'nntp',
  'posting',
  'host',
  'student',
  'cwru',
  'article',
  'keith',
  'allan',
  'schneider',
  'writes',
  'mathew',
  'writes',
  'rape',
  'surely',
  'burden',
  'guilt',
  'solely',
  'rapist',
  'thrown',
  'cage',
  'tiger',
  'get',
  'mauled',
  'blame',
  'tiger',
  'human',
  'greater',
  'control',
  'actions',
  'predominately',
  'instictive',
  'tiger',
  'proper',
  'analogy',
  'would',
  'thrown',
  'cage',
  'person',
  'get',
  'mauled',
  'blame',
  'person',
  'yes',
  'providing',
  'person',
  'responsible',
  'frame',
  'mind',
  'eg',
  'clinicaly',
  'insane',
  'pcbs',
  'etc',
  'one',
  'thing',
  'relates',
  'among',
  'navy',
  'men',
  'get',
  'tatoos',
  'say',
  'mom',
  'love',
  'mom',
  'makes',
  'virile',
  'men',
  'bobby',
  'mozumder',
  'april',
  'one',
  'true',
  'muslim',
  'left',
  'world'],
 ['houchin',
  'sale',
  'paradise',
  'svga',
  'accelerator',
  'card',
  'article',
  'umr',
  'apr',
  'distribution',
  'usa',
  'organization',
  'university',
  'missouri',
  'rolla',
  'lines',
  'nntp',
  'posting',
  'host',
  'mcs',
  'cs',
  'umr',
  'originator',
  'sale',
  'paradise',
  'svga',
  'accelerator',
  'card',
  'times',
  'faster',
  'vga',
  'manual',
  'drivers',
  'used',
  'months',
  'perfect',
  'condition',
  'wd',
  'chipset',
  'obo',
  'info',
  'houchin'],
 ['charley',
  'wingate',
  'benediktine',
  'metaphysics',
  'lines',
  'benedikt',
  'rosenau',
  'writes',
  'great',
  'authority',
  'contradictory',
  'cannot',
  'exist',
  'contradictory',
  'property',
  'language',
  'correct',
  'things',
  'defined',
  'contradictory',
  'language',
  'exist',
  'object',
  'definitions',
  'reality',
  'amend',
  'things',
  'described',
  'contradictory',
  'language',
  'exist',
  'weve',
  'come',
  'something',
  'plainly',
  'false',
  'failures',
  'description',
  'merely',
  'failures',
  'description',
  'im',
  'objectivist',
  'remember',
  'wingate',
  'peace',
  'god',
  'peace',
  'strife',
  'closed',
  'sod',
  'yet',
  'brothers',
  'pray',
  'one',
  'thing',
  'tove',
  'mangoe',
  'marvlous',
  'peace',
  'god'],
 ['erich',
  'lim',
  'militech',
  'distribution',
  'world',
  'organization',
  'ye',
  'olde',
  'bailey',
  'bbs',
  'houston',
  'tx',
  'reply',
  'erich',
  'lim',
  'lines',
  'jason',
  'chen',
  'writes',
  'saw',
  'interesting',
  'product',
  'ny',
  'auto',
  'show',
  'would',
  'like',
  'hear',
  'comments',
  'militech',
  'tm',
  'yet',
  'another',
  'oil',
  'additive',
  'demonstration',
  'product',
  'really',
  'impressive',
  'didnt',
  'cheat',
  'well',
  'heard',
  'militech',
  'stuff',
  'works',
  'pretty',
  'good',
  'one',
  'friends',
  'races',
  'scca',
  'sanctioned',
  'events',
  'stuff',
  'got',
  'militech',
  'stuff',
  'early',
  'trial',
  'thing',
  'put',
  'crx',
  'says',
  'worked',
  'great',
  'didnt',
  'ask',
  'details',
  'erich',
  'ye',
  'olde',
  'bailey',
  'bbs',
  'bis',
  'bis',
  'houston',
  'texas',
  'yob',
  'sccsi',
  'com',
  'home',
  'alt',
  'cosuard'],
 ['mats',
  'andtbacka',
  'hell_',
  'black',
  'sabbath',
  'organization',
  'unorganized',
  'usenet',
  'postings',
  'uninc',
  'lines',
  'writes',
  'may',
  'wrong',
  'wasnt',
  'jeff',
  'fenholt',
  'part',
  'black',
  'sabbath',
  'hes',
  'major',
  'brother',
  'christ',
  'totally',
  'changed',
  'life',
  'around',
  'different',
  'ozzy',
  'osbourne',
  'ex',
  'singer',
  'main',
  'character',
  'black',
  'sabbath',
  'good',
  'ole',
  'days',
  'past',
  'always',
  'devout',
  'catholic',
  'ive',
  'heard',
  'alt',
  'rock',
  'roll',
  'metal',
  'newsgroups',
  'figure',
  'folks',
  'oughta',
  'know',
  'disclaimer',
  'great',
  'young',
  'insane'],
 ['shai',
  'guday',
  'israels',
  'expansion',
  'organization',
  'thinking',
  'machines',
  'corporation',
  'cambridge',
  'usa',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'composer',
  'think',
  'com',
  'article',
  'ha',
  'writes',
  'couple',
  'questions',
  'pro',
  'israeli',
  'lobby',
  'israels',
  'occupation',
  'southern',
  'lebanon',
  'temporary',
  'mr',
  'stein',
  'working',
  'proof',
  'israel',
  'diverting',
  'water',
  'jordan',
  'river',
  'away',
  'lebanese',
  'territory',
  'yes',
  'evidenced',
  'previous',
  'two',
  'stages',
  'withdrawal',
  'area',
  'reductions',
  'troops',
  'currently',
  'troops',
  'kept',
  'level',
  'consistent',
  'light',
  'armored',
  'patrols',
  'permanent',
  'installations',
  'built',
  'area',
  'planned',
  'prodigal',
  'water',
  'question',
  'continue',
  'waste',
  'time',
  'looking',
  'non',
  'existent',
  'proof',
  'accept',
  'testimony',
  'people',
  'lebanese',
  'acknowledged',
  'know',
  'evidence',
  'allegations',
  'israels',
  'occupation',
  'west',
  'bank',
  'gaza',
  'golan',
  'temporary',
  'support',
  'many',
  'settlers',
  'moved',
  'territories',
  'temporary',
  'lets',
  'hear',
  'depends',
  'territories',
  'refer',
  'general',
  'settlers',
  'moved',
  'territories',
  'time',
  'context',
  'situations',
  'seemed',
  'logical',
  'move',
  'say',
  'views',
  'dont',
  'change',
  'mistakes',
  'made',
  'currently',
  'would',
  'say',
  'disputed',
  'territory',
  'appear',
  'temporary',
  'eastern',
  'northern',
  'jerusalem',
  'steve',
  'shai',
  'guday',
  'stealth',
  'bombers',
  'os',
  'software',
  'engineer',
  'thinking',
  'machines',
  'corp',
  'winged',
  'ninjas',
  'skies',
  'cambridge'],
 ['tomas',
  'nopp',
  'many',
  'europeans',
  'nhl',
  'nntp',
  'posting',
  'host',
  'euas',
  'eua',
  'ericsson',
  'se',
  'nntp',
  'posting',
  'user',
  'euatno',
  'organization',
  'ellemtel',
  'telecom',
  'systems',
  'labs',
  'stockholm',
  'sweden',
  'lines',
  'richard',
  'john',
  'rauser',
  'writes',
  'ten',
  'years',
  'ago',
  'number',
  'europeans',
  'nhl',
  'roughly',
  'quarter',
  'going',
  'season',
  'numbers',
  'euros',
  'nhl',
  'teams',
  'escalated',
  'following',
  'stats',
  'canadians',
  'americans',
  'europeans',
  'please',
  'note',
  'numbers',
  'rounded',
  'taken',
  'top',
  'players',
  'teams',
  'source',
  'vancouver',
  'sun',
  'heres',
  'point',
  'far',
  'many',
  'europeans',
  'nhl',
  'sick',
  'watching',
  'game',
  'american',
  'canadian',
  'team',
  'lets',
  'say',
  'red',
  'wings',
  'canucks',
  'seeing',
  'names',
  'like',
  'bure',
  'konstantinov',
  'borshevshky',
  'north',
  'america',
  'isnt',
  'toronto',
  'detriot',
  'quebec',
  'edmonton',
  'particularly',
  'annoying',
  'numbers',
  'euros',
  'teams',
  'getting',
  'worse',
  'well',
  'answer',
  'simple',
  'dislike',
  'russians',
  'live',
  'vancouver',
  'hear',
  'one',
  'word',
  'pavel',
  'bure',
  'russian',
  'rocket',
  'completely',
  'throw',
  'every',
  'time',
  'see',
  'canucks',
  'play',
  'keep',
  'hoping',
  'someone',
  'cross',
  'check',
  'bure',
  'plexiglass',
  'hard',
  'carry',
  'stretcher',
  'way',
  'im',
  'canucks',
  'fan',
  'begin',
  'okay',
  'stretcher',
  'remark',
  'little',
  'carried',
  'away',
  'point',
  'resent',
  'nhl',
  'owners',
  'drafting',
  'europeans',
  'instead',
  'canadians',
  'americans',
  'denies',
  'young',
  'canadians',
  'opportunity',
  'play',
  'north',
  'american',
  'league',
  'instead',
  'gives',
  'europeans',
  'arent',
  'even',
  'better',
  'hockey',
  'players',
  'hype',
  'european',
  'mystique',
  'sickening',
  'nhl',
  'owners',
  'get',
  'canadian',
  'american',
  'players',
  'continue',
  'fight',
  'harder',
  'get',
  'drafted',
  'league',
  'numbers',
  'euros',
  'nhl',
  'escalating',
  'problem',
  'clearly',
  'getting',
  'worse',
  'would',
  'canadian',
  'hockey',
  'today',
  'without',
  'europeans',
  'dont',
  'say',
  'european',
  'influence',
  'league',
  'bad',
  'game',
  'mean',
  'look',
  'way',
  'play',
  'days',
  'less',
  'fights',
  'hockey',
  'imho',
  'canadian',
  'hockey',
  'positive',
  'curve',
  'development',
  'since',
  'game',
  'brute',
  'beauty',
  'im',
  'creation',
  'european',
  'hockey',
  'league',
  'let',
  'bures',
  'selannes',
  'world',
  'play',
  'continent',
  'oh',
  'look',
  'dont',
  'like',
  'finns',
  'either',
  'dont',
  'want',
  'mine',
  'bad',
  'almost',
  'northamericans',
  'originates',
  'europe',
  'hmmm',
  'kind',
  'name',
  'rauser',
  'doesnt',
  'sound',
  'canadian',
  'ps',
  'analyzing',
  'teams',
  'like',
  'italy',
  'france',
  'great',
  'britain',
  'find',
  'lot',
  'players',
  'canadians',
  'double',
  'citizenship',
  'ds',
  'richard',
  'rauser',
  'idea',
  'youre',
  'oh',
  'dont',
  'worry',
  'professional',
  'wni',
  'outlaws',
  'living',
  'remember',
  'matter',
  'go',
  'dr',
  'banzai',
  'tomas',
  'nopp',
  'tel',
  'ellemtel',
  'telecom',
  'systems',
  'labs',
  'fax',
  'box',
  'email',
  'alvsjo',
  'snailmail'],
 ['anthony',
  'pun',
  'hp',
  'printers',
  'rated',
  'low',
  'article',
  'extro',
  'anthonyp',
  'organization',
  'sydney',
  'university',
  'computing',
  'service',
  'sydney',
  'nsw',
  'australia',
  'lines',
  'nntp',
  'posting',
  'host',
  'extro',
  'ucc',
  'su',
  'oz',
  'au',
  'eric',
  'gailloux',
  'writes',
  'im',
  'purchase',
  'laser',
  'printer',
  'mac',
  'read',
  'macuser',
  'buying',
  'guide',
  'special',
  'issue',
  'hp',
  'printers',
  'except',
  'iiisi',
  'rated',
  'low',
  'compared',
  'noname',
  'bargain',
  'priced',
  'printers',
  'pc',
  'hp',
  'printers',
  'standard',
  'amongst',
  'printer',
  'manufacturers',
  'ps',
  'personnal',
  'favorite',
  'budgetwise',
  'would',
  'iiip',
  'iiip',
  'superseded',
  'one',
  'using',
  'work',
  'quality',
  'print',
  'execellent',
  'beating',
  'dpi',
  'printers',
  'hands',
  'australia',
  'price',
  'comparable',
  'iii',
  'series',
  'hp',
  'trying',
  'get',
  'people',
  'buy',
  'new',
  'one',
  'anthony',
  'pun'],
 ['mike',
  'another',
  'data',
  'hiding',
  'scheme',
  'distribution',
  'world',
  'organization',
  'boring',
  'reply',
  'mailer',
  'simple',
  'news',
  'ka',
  'dis',
  'lines',
  'article',
  'writes',
  'since',
  'price',
  'floppies',
  'still',
  'high',
  'last',
  'years',
  'store',
  'old',
  'data',
  'old',
  'file',
  'times',
  'public',
  'filesystem',
  'casual',
  'observer',
  'may',
  'miss',
  'hd',
  'especially',
  'accidently',
  'cover',
  'something',
  'bear',
  'giles',
  'done',
  'already',
  'uk',
  'atari',
  'st',
  'box',
  'shipped',
  'disks',
  'first',
  'years',
  'later',
  'disks',
  'order',
  'make',
  'life',
  'less',
  'complicated',
  'many',
  'freebie',
  'disks',
  'mags',
  'double',
  'formatted',
  'like',
  'side',
  'disk',
  'could',
  'read',
  'st',
  'also',
  'flip',
  'side',
  'program',
  'would',
  'swap',
  'sides',
  'around',
  'side',
  'became',
  'side',
  'mike'],
 ['spiros',
  'ad',
  'said',
  'nissan',
  'altima',
  'best',
  'seller',
  'organization',
  'delco',
  'electronics',
  'corp',
  'lines',
  'article',
  'writes',
  'puzzled',
  'obvious',
  'untruth',
  'think',
  'going',
  'nissan',
  'claims',
  'altima',
  'best',
  'selling',
  'new',
  'car',
  'namelplate',
  'us',
  'think',
  'near',
  'verbatim',
  'lee',
  'iaccocas',
  'statistics',
  'dept',
  'would',
  'proud',
  'sentence',
  'note',
  'corolla',
  'prism',
  'also',
  'new',
  'designs',
  'hey',
  'new',
  'nameplates',
  'guess',
  'nissan',
  'doesnt',
  'even',
  'sell',
  'many',
  'altimas',
  'toyota',
  'corollas',
  'would',
  'nameplate',
  'qualifier',
  'waiiiiiit',
  'isnt',
  'nissan',
  'officially',
  'registering',
  'car',
  'far',
  'government',
  'paperwork',
  'goes',
  'nissan',
  'stanza',
  'altima',
  'avoid',
  'costly',
  'lengthy',
  'paperwork',
  'read',
  'net',
  'ago',
  'someone',
  'actually',
  'may',
  'said',
  'theres',
  'little',
  'stanza',
  'logo',
  'altima',
  'somewhere',
  'ways',
  'spiros',
  'spiros',
  'software',
  'technology',
  'delco',
  'electronics',
  'gm',
  'hughes',
  'electronics',
  'kokomo',
  'post',
  'therefore',
  'armm'],
 ['valerie',
  'hammerl',
  'goalie',
  'masks',
  'organization',
  'ub',
  'lines',
  'nntp',
  'posting',
  'host',
  'autarch',
  'acsu',
  'buffalo',
  'article',
  'deepak',
  'chhabra',
  'writes',
  'ill',
  'give',
  'fuhrs',
  'new',
  'one',
  'honourable',
  'mention',
  'although',
  'havent',
  'seen',
  'closely',
  'yet',
  'looked',
  'good',
  'distance',
  'new',
  'buffalo',
  'one',
  'second',
  'since',
  'hes',
  'sabres',
  'recall',
  'price',
  'tag',
  'paint',
  'job',
  'mask',
  'total',
  'price',
  'almost',
  'ouch',
  'valerie',
  'hammerl',
  'birtday',
  'event',
  'friends',
  'get',
  'together',
  'set',
  'dessert',
  'fire',
  'laugh',
  'sing',
  'frantically',
  'try',
  'blow'],
 ['david',
  'slack',
  'clinton',
  'wants',
  'national',
  'id',
  'card',
  'aka',
  'ussr',
  'style',
  'internal',
  'passport',
  'organization',
  'hewlett',
  'packard',
  'boise',
  'idaho',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'idea',
  'card',
  'bull',
  'self',
  'im',
  'curious',
  'know',
  'plan',
  'making',
  'requirement',
  'always',
  'going',
  'required',
  'presented',
  'trying',
  'ge',
  'medical',
  'aid',
  'btw',
  'anybody',
  'planning',
  'shaving',
  'hillarys',
  'head',
  'look',
  'later',
  'dave',
  'days',
  'goverment',
  'logic',
  'clintons',
  'david',
  'slack',
  'boise',
  'surface',
  'mount',
  'center',
  'email',
  'telnet',
  'phone',
  'hewlett',
  'packard',
  'chinden',
  'blvd',
  'boise',
  'idaho'],
 ['robert',
  'beauchaine',
  'nostalgia',
  'organization',
  'tektronix',
  'inc',
  'beaverton',
  'lines',
  'recent',
  'rise',
  'nostalgia',
  'group',
  'combined',
  'incredible',
  'level',
  'utter',
  'bullshit',
  'prompted',
  'comb',
  'archives',
  'pull',
  'best',
  'alt',
  'atheism',
  'reading',
  'pleasure',
  'ill',
  'post',
  'couple',
  'day',
  'unless',
  'group',
  'concensus',
  'demands',
  'stop',
  'run',
  'good',
  'material',
  'havent',
  'particularly',
  'careful',
  'past',
  'saving',
  'attributions',
  'think',
  'following',
  'comes',
  'john',
  'johnson',
  'someone',
  'correct',
  'im',
  'wrong',
  'probably',
  'longest',
  'entire',
  'collection',
  'prophecy',
  'fulfilled',
  'considering',
  'christian',
  'religion',
  'judging',
  'according',
  'claims',
  'important',
  'look',
  'claims',
  'fulfilling',
  'earlier',
  'jewish',
  'prophecy',
  'scribe',
  'matthew',
  'perhaps',
  'eager',
  'draw',
  'thinks',
  'prophetic',
  'answers',
  'career',
  'jesus',
  'nazareth',
  'see',
  'matthews',
  'main',
  'strategy',
  'take',
  'various',
  'old',
  'testament',
  'passages',
  'often',
  'even',
  'promised',
  'messiah',
  'apply',
  'circumstances',
  'new',
  'testament',
  'must',
  'also',
  'bear',
  'mind',
  'question',
  'authenticity',
  'accounts',
  'since',
  'gospels',
  'written',
  'least',
  'years',
  'jesus',
  'executed',
  'know',
  'much',
  'happened',
  'exactly',
  'stated',
  'purposes',
  'analysis',
  'take',
  'particular',
  'claims',
  'face',
  'value',
  'immanuel',
  'begin',
  'course',
  'beginning',
  'mt',
  'mary',
  'bear',
  'son',
  'joseph',
  'name',
  'jesus',
  'means',
  'gd',
  'salvation',
  'save',
  'people',
  'sins',
  'happened',
  'fulfil',
  'lord',
  'spoken',
  'prophet',
  'isaiah',
  'days',
  'ahaz',
  'bce',
  'king',
  'judah',
  'rezin',
  'syria',
  'pekah',
  'israel',
  'made',
  'war',
  'jerusalem',
  'capitol',
  'judah',
  'could',
  'quite',
  'conquer',
  'house',
  'david',
  'ahaz',
  'court',
  'judah',
  'told',
  'heart',
  'heart',
  'people',
  'shook',
  'lord',
  'gd',
  'said',
  'isaiah',
  'go',
  'meet',
  'ahaz',
  'lord',
  'spoke',
  'ahaz',
  'prophet',
  'isaiah',
  'naturally',
  'saying',
  'ask',
  'sign',
  'gd',
  'lord',
  'deep',
  'sheol',
  'high',
  'heaven',
  'ahaz',
  'said',
  'wont',
  'ask',
  'put',
  'lord',
  'test',
  'isaiah',
  'said',
  'hear',
  'house',
  'david',
  'enough',
  'weary',
  'men',
  'must',
  'weary',
  'god',
  'therefore',
  'lord',
  'give',
  'sign',
  'behold',
  'young',
  'woman',
  'child',
  'bear',
  'son',
  'name',
  'immanuel',
  'means',
  'gd',
  'us',
  'eat',
  'curds',
  'honey',
  'knows',
  'refuse',
  'evil',
  'choose',
  'good',
  'child',
  'knows',
  'refuse',
  'evil',
  'choose',
  'good',
  'land',
  'two',
  'kings',
  'dread',
  'deserted',
  'matthew',
  'homes',
  'sentence',
  'italics',
  'hebrew',
  'word',
  'almah',
  'young',
  'woman',
  'specifically',
  'virgin',
  'prophecy',
  'messiah',
  'prophecy',
  'event',
  'happen',
  'years',
  'later',
  'prophecy',
  'virgin',
  'bethulah',
  'mother',
  'short',
  'jesus',
  'matthew',
  'made',
  'verse',
  'context',
  'tries',
  'make',
  'fit',
  'specific',
  'case',
  'mary',
  'noted',
  'want',
  'read',
  'prophecy',
  'general',
  'manner',
  'general',
  'one',
  'made',
  'fit',
  'mary',
  'mary',
  'virgin',
  'indeed',
  'young',
  'woman',
  'child',
  'course',
  'fit',
  'shady',
  'problems',
  'jesus',
  'thought',
  'later',
  'christians',
  'gd',
  'walking',
  'among',
  'men',
  'never',
  'called',
  'name',
  'immanuel',
  'christianity',
  'wished',
  'claim',
  'prophecy',
  'jesus',
  'becomes',
  'best',
  'cut',
  'paste',
  'prophecy',
  'second',
  'class',
  'prophecy',
  'convincing',
  'egypt',
  'jesuss',
  'birth',
  'bethlehem',
  'matthew',
  'tells',
  'quick',
  'elsewhere',
  'unmentioned',
  'excursion',
  'egypt',
  'wishes',
  'liken',
  'jesus',
  'moses',
  'done',
  'escape',
  'alleged',
  'infanticidal',
  'rampage',
  'king',
  'herod',
  'mt',
  'remained',
  'death',
  'herod',
  'fulfil',
  'lord',
  'spoken',
  'egypt',
  'cal',
  'led',
  'son',
  'lord',
  'really',
  'said',
  'hosea',
  'israel',
  'child',
  'loved',
  'egypt',
  'called',
  'son',
  'called',
  'people',
  'went',
  'kept',
  'sacrificing',
  'baals',
  'kept',
  'burning',
  'incense',
  'idols',
  'matthew',
  'conveniently',
  'omits',
  'rest',
  'hoseas',
  'oracle',
  'indeed',
  'israel',
  'called',
  'egypt',
  'wanted',
  'return',
  'history',
  'jesus',
  'certainly',
  'spoken',
  'draw',
  'kind',
  'parallel',
  'wind',
  'jesus',
  'flees',
  'resists',
  'gd',
  'prophecy',
  'convincing',
  'matthew',
  'probably',
  'hoped',
  'rachel',
  'weeps',
  'jesus',
  'vacationing',
  'egypt',
  'matthew',
  'says',
  'king',
  'herod',
  'sought',
  'kill',
  'thus',
  'ordered',
  'executions',
  'young',
  'male',
  'children',
  'matthew',
  'writes',
  'mt',
  'spoken',
  'prophet',
  'jeremiah',
  'fulfilled',
  'voice',
  'heard',
  'ramah',
  'wailing',
  'loud',
  'lamentation',
  'rachel',
  'weeping',
  'children',
  'refused',
  'consoled',
  'reference',
  'passage',
  'jeremiah',
  'referring',
  'carrying',
  'israel',
  'exile',
  'sargon',
  'assyria',
  'bce',
  'rachel',
  'ancestor',
  'major',
  'tribes',
  'israel',
  'ephraim',
  'manasseh',
  'said',
  'weep',
  'descendants',
  'metaphorical',
  'course',
  'since',
  'rachel',
  'lived',
  'dies',
  'hebrews',
  'even',
  'egyptian',
  'exile',
  'interesting',
  'note',
  'leah',
  'rachel',
  'ancestor',
  'judeans',
  'land',
  'jesus',
  'bethlehem',
  'anyone',
  'weeping',
  'children',
  'leah',
  'connexion',
  'rachel',
  'bethlehem',
  'legends',
  'buried',
  'north',
  'city',
  'way',
  'ephrath',
  'bethlehem',
  'herod',
  'infanticide',
  'rather',
  'unlikely',
  'event',
  'actually',
  'occurred',
  'one',
  'never',
  'knows',
  'event',
  'mentioned',
  'alluded',
  'anywhere',
  'else',
  'bible',
  'mentioned',
  'secular',
  'records',
  'time',
  'herod',
  'particularly',
  'unliked',
  'reign',
  'many',
  'far',
  'less',
  'evil',
  'deeds',
  'herod',
  'carefully',
  'recorded',
  'might',
  'prime',
  'example',
  'events',
  'added',
  'jesuss',
  'life',
  'enhance',
  'message',
  'churchs',
  'gospel',
  'whole',
  'storys',
  'similarity',
  'tale',
  'infant',
  'moses',
  'egypt',
  'highly',
  'likely',
  'device',
  'set',
  'matthew',
  'add',
  'prophetic',
  'yet',
  'artificial',
  'approval',
  'jesus',
  'surprising',
  'matthew',
  'conveniently',
  'neglects',
  'mention',
  'rest',
  'jeremiah',
  'quote',
  'children',
  'prophet',
  'speaks',
  'dead',
  'exiled',
  'assyrian',
  'empire',
  'gd',
  'comforts',
  'weeping',
  'rachel',
  'saying',
  'children',
  'returned',
  'gather',
  'back',
  'together',
  'course',
  'would',
  'suit',
  'matthews',
  'purpose',
  'children',
  'speaks',
  'dead',
  'good',
  'prophecy',
  'matthew',
  'sets',
  'even',
  'anyone',
  'bothers',
  'check',
  'convincing',
  'nazarene',
  'even',
  'go',
  'next',
  'chapter',
  'find',
  'another',
  'matthean',
  'prophecy',
  'leaving',
  'egypt',
  'joseph',
  'wife',
  'take',
  'infant',
  'jesus',
  'live',
  'city',
  'nazareth',
  'mt',
  'spoken',
  'prophets',
  'might',
  'fulfilled',
  'shall',
  'called',
  'nazarene',
  'first',
  'thing',
  'notice',
  'matthew',
  'mention',
  'name',
  'prophet',
  'time',
  'second',
  'ask',
  'messianic',
  'prophecies',
  'speaking',
  'nazarene',
  'worse',
  'prophecies',
  'period',
  'mentioning',
  'nazarene',
  'still',
  'worse',
  'nazarenes',
  'mentioned',
  'old',
  'testament',
  'book',
  'judges',
  'angel',
  'tells',
  'samsons',
  'mother',
  'judges',
  'conceive',
  'bear',
  'son',
  'razor',
  'shall',
  'tough',
  'head',
  'nazirite',
  'god',
  'day',
  'birth',
  'deliver',
  'israel',
  'hands',
  'philistines',
  'course',
  'prophecy',
  'jesus',
  'messiah',
  'gd',
  'best',
  'found',
  'obviously',
  'matthew',
  'begun',
  'go',
  'overboard',
  'cut',
  'paste',
  'prophecies',
  'simple',
  'making',
  'bearing',
  'diseases',
  'jesus',
  'next',
  'goes',
  'around',
  'healing',
  'people',
  'physical',
  'illnesses',
  'disabilities',
  'mt',
  'fulfil',
  'spoken',
  'prophet',
  'isaiah',
  'took',
  'infirmities',
  'bore',
  'diseases',
  'expected',
  'verse',
  'quoted',
  'isaiah',
  'quoted',
  'context',
  'words',
  'skewed',
  'fit',
  'christian',
  'scheme',
  'surely',
  'suffering',
  'servant',
  'borne',
  'sickness',
  'carried',
  'pains',
  'reading',
  'surrounding',
  'passages',
  'isaiah',
  'know',
  'prophet',
  'speaking',
  'present',
  'tense',
  'collective',
  'nation',
  'israel',
  'jehovahs',
  'chosen',
  'servant',
  'people',
  'speaks',
  'israelites',
  'suffering',
  'exile',
  'voice',
  'gentile',
  'nations',
  'look',
  'upon',
  'image',
  'deeply',
  'ingrained',
  'jewish',
  'identity',
  'image',
  'chastised',
  'yet',
  'cherished',
  'israel',
  'instrument',
  'nations',
  'salvation',
  'gd',
  'verses',
  'speak',
  'israel',
  'taking',
  'sicknesses',
  'literal',
  'metaphorical',
  'manifestations',
  'guilt',
  'discipline',
  'speak',
  'servant',
  'going',
  'around',
  'healing',
  'people',
  'notice',
  'servant',
  'isaiah',
  'takes',
  'sicknesses',
  'pains',
  'nations',
  'individual',
  'jews',
  'jesus',
  'know',
  'take',
  'diseases',
  'onto',
  'verses',
  'isaiah',
  'prophecy',
  'something',
  'come',
  'rather',
  'something',
  'already',
  'happened',
  'believed',
  'jesus',
  'took',
  'eternal',
  'punishment',
  'hell',
  'bear',
  'illnesses',
  'healed',
  'someone',
  'might',
  'want',
  'say',
  'figuratively',
  'jesus',
  'reenacted',
  'deeds',
  'israel',
  'spiritual',
  'atonement',
  'admit',
  'matthews',
  'parallel',
  'misses',
  'intended',
  'effect',
  'silent',
  'messiah',
  'upon',
  'healing',
  'multitudes',
  'commoners',
  'said',
  'jesus',
  'ordered',
  'keep',
  'quiet',
  'presumable',
  'wouldnt',
  'arouse',
  'attention',
  'local',
  'rulers',
  'mt',
  'fulfill',
  'spoken',
  'prophet',
  'isaiah',
  'behold',
  'servant',
  'chosen',
  'beloved',
  'soul',
  'pleased',
  'put',
  'spirit',
  'announce',
  'justice',
  'gentiles',
  'wrangle',
  'cry',
  'aloud',
  'anyone',
  'hear',
  'voice',
  'streets',
  'break',
  'bruised',
  'reed',
  'quench',
  'smoldering',
  'wick',
  'brings',
  'justice',
  'victory',
  'gentiles',
  'hope',
  'name',
  'isaiah',
  'passage',
  'quoted',
  'reads',
  'behold',
  'servant',
  'uphold',
  'chosen',
  'soul',
  'delights',
  'put',
  'spirit',
  'bring',
  'forth',
  'justice',
  'nations',
  'cry',
  'lift',
  'voice',
  'make',
  'heard',
  'street',
  'break',
  'bruised',
  'reed',
  'quench',
  'smoldering',
  'wick',
  'faithfully',
  'bring',
  'forth',
  'justice',
  'fail',
  'burn',
  'dimly',
  'discouraged',
  'bruised',
  'established',
  'justice',
  'earth',
  'coastlands',
  'await',
  'law',
  'see',
  'matthew',
  'conveniently',
  'left',
  'part',
  'passage',
  'suit',
  'dealings',
  'jesus',
  'christians',
  'could',
  'never',
  'think',
  'jesus',
  'failing',
  'never',
  'would',
  'light',
  'mankind',
  'burn',
  'dimly',
  'servant',
  'nation',
  'israel',
  'indeed',
  'come',
  'end',
  'job',
  'done',
  'gentiles',
  'come',
  'embrace',
  'gd',
  'longer',
  'chosen',
  'people',
  'rather',
  'children',
  'gd',
  'also',
  'ending',
  'phrase',
  'changed',
  'judaic',
  'coastlands',
  'await',
  'law',
  'christologic',
  'gentiles',
  'hope',
  'name',
  'original',
  'proclaims',
  'torah',
  'law',
  'jehovah',
  'rewrites',
  'fit',
  'strange',
  'doctrine',
  'believing',
  'name',
  'one',
  'doubt',
  'servant',
  'referred',
  'jesus',
  'one',
  ...],
 ['atf',
  'burns',
  'dividian',
  'ranch',
  'survivors',
  'reply',
  'organization',
  'bristol',
  'myers',
  'squibb',
  'lines',
  'article',
  'brent',
  'irvine',
  'writes',
  'article',
  'tavares',
  'writes',
  'article',
  'michael',
  'frederick',
  'rhein',
  'writes',
  'napalm',
  'let',
  'wood',
  'stove',
  'inside',
  'ignite',
  'someone',
  'else',
  'pointed',
  'would',
  'stove',
  'warm',
  'day',
  'texas',
  'eat',
  'food',
  'cold',
  'ever',
  'hear',
  'electric',
  'ovens',
  'microwaves',
  'popular',
  'electric',
  'stoves',
  'outside',
  'metro',
  'areas',
  'especially',
  'ever',
  'hear',
  'cutting',
  'electricity',
  'done',
  'effective',
  'electric',
  'stove',
  'al',
  'standard',
  'disclaimer'],
 ['timothy',
  'may',
  'tapped',
  'code',
  'good',
  'organization',
  'netcom',
  'line',
  'communication',
  'services',
  'guest',
  'newsreader',
  'tin',
  'pl',
  'distribution',
  'na',
  'lines',
  'dave',
  'ihnat',
  'wrote',
  'article',
  'andrew',
  'molitor',
  'writes',
  'pick',
  'mr',
  'may',
  'particular',
  'course',
  'isnt',
  'kind',
  'domino',
  'theory',
  'one',
  'little',
  'country',
  'falls',
  'neighbor',
  'surely',
  'follow',
  'know',
  'mining',
  'salt',
  'siberia',
  'turning',
  'captain',
  'crunch',
  'secret',
  'decoder',
  'rings',
  'wrongness',
  'attempt',
  'correct',
  'vietnam',
  'et',
  'al',
  'domino',
  'theory',
  'wasnt',
  'disproved',
  'ironically',
  'domino',
  'theory',
  'fact',
  'reasonable',
  'metaphor',
  'collapse',
  'communism',
  'liberalizations',
  'poland',
  'hungary',
  'border',
  'crossings',
  'summer',
  'fall',
  'wall',
  'later',
  'year',
  'ultimate',
  'collapse',
  'ussr',
  'tim',
  'may',
  'timothy',
  'may',
  'crypto',
  'anarchy',
  'encryption',
  'digital',
  'money',
  'anonymous',
  'networks',
  'digital',
  'pseudonyms',
  'zero',
  'knowledge',
  'reputations',
  'information',
  'markets',
  'aptos',
  'ca',
  'black',
  'markets',
  'collapse',
  'governments',
  'higher',
  'power',
  'public',
  'key',
  'pgp',
  'mailsafe',
  'available'],
 ['gregg',
  'jaeger',
  'yet',
  'rushdie',
  'islamic',
  'law',
  'organization',
  'boston',
  'university',
  'physics',
  'department',
  'lines',
  'article',
  'leonard',
  'newnham',
  'writes',
  'gregg',
  'jaeger',
  'wrote',
  'could',
  'please',
  'explain',
  'way',
  'quran',
  'eyes',
  'carries',
  'excess',
  'baggage',
  'another',
  'era',
  'quran',
  'opinion',
  'carries',
  'baggage',
  'trying',
  'run',
  'modern',
  'economy',
  'without',
  'charging',
  'interest',
  'loans',
  'hear',
  'even',
  'fundamentalist',
  'iran',
  'compromise',
  'ideal',
  'sort',
  'loans',
  'heard',
  'exactly',
  'gregg'],
 ['john',
  'gayman',
  'ati',
  'build',
  'drivers',
  'good',
  'summary',
  'ati',
  'organization',
  'wa',
  'wbu',
  'marysville',
  'pa',
  'lines',
  'article',
  'writes',
  'stable',
  'build',
  'drivers',
  'people',
  'success',
  'installing',
  'running',
  'ive',
  'using',
  'build',
  'drivers',
  'gw',
  'dx',
  'several',
  'weeks',
  'problems',
  'im',
  'running',
  'windows',
  'software',
  'ive',
  'run',
  'worked',
  'fine',
  'includes',
  'many',
  'games',
  'cd',
  'based',
  'multi',
  'media',
  'encyclopedia',
  'full',
  'motion',
  'video',
  'works',
  'fine',
  'id',
  'recommend',
  'give',
  'try',
  'john',
  'john',
  'gayman',
  'wa',
  'wbu',
  'uucp',
  'uunet',
  'wa',
  'wbu',
  'john',
  'packet',
  'wa',
  'wbu',
  'wb',
  'eah'],
 ['andrew',
  'scott',
  'usenet',
  'playoff',
  'pool',
  'organization',
  'idacom',
  'division',
  'hewlett',
  'packard',
  'lines',
  'ive',
  'mentioned',
  'rules',
  'posting',
  'town',
  'day',
  'entry',
  'deadline',
  'wont',
  'able',
  'respond',
  'messages',
  'april',
  'would',
  'grateful',
  'someone',
  'could',
  'repost',
  'rules',
  'instructions',
  'playoff',
  'pool',
  'sometime',
  'next',
  'week',
  'benefit',
  'missed',
  'first',
  'two',
  'postings',
  'thanks',
  'andrew',
  'scott',
  'hp',
  'idacom',
  'telecom',
  'operation',
  'ext',
  'roman',
  'era',
  'considered',
  'old'],
 ['david',
  'davidian',
  'accounts',
  'anti',
  'armenian',
  'human',
  'right',
  'violatins',
  'azerbaijan',
  'summary',
  'prelude',
  'current',
  'events',
  'nagorno',
  'karabakh',
  'organization',
  'center',
  'regional',
  'studies',
  'lines',
  'accounts',
  'anti',
  'armenian',
  'human',
  'right',
  'violatins',
  'azerbaijan',
  'prelude',
  'current',
  'events',
  'nagorno',
  'karabakh',
  'six',
  'burned',
  'people',
  'small',
  'corpse',
  'burned',
  'child',
  'gruesome',
  'suffered',
  'tremendous',
  'shock',
  'ten',
  'people',
  'doctor',
  'duty',
  'said',
  'numbers',
  'taken',
  'baku',
  'womans',
  'corpse',
  'well',
  'part',
  'body',
  'hacked',
  'part',
  'womans',
  'body',
  'something',
  'terrible',
  'deposition',
  'roman',
  'aleksandrovich',
  'gambarian',
  'born',
  'senior',
  'engineer',
  'sumgait',
  'automotive',
  'transport',
  'production',
  'association',
  'resident',
  'building',
  'apartment',
  'microdistrict',
  'sumgait',
  'azerbaijan',
  'happened',
  'sumgait',
  'great',
  'tragedy',
  'awful',
  'tragedy',
  'us',
  'armenian',
  'people',
  'mankind',
  'genocide',
  'armenians',
  'took',
  'place',
  'peacetime',
  'great',
  'tragedy',
  'personally',
  'lost',
  'father',
  'days',
  'still',
  'young',
  'born',
  'day',
  'february',
  'home',
  'course',
  'heard',
  'unrest',
  'town',
  'younger',
  'brother',
  'aleksandr',
  'told',
  'us',
  'didnt',
  'think',
  'thought',
  'everything',
  'would',
  'happen',
  'outdoors',
  'wouldnt',
  'go',
  'peoples',
  'apartments',
  'five',
  'oclock',
  'saw',
  'large',
  'crowd',
  'near',
  'kosmos',
  'movie',
  'theater',
  'microdistrict',
  'sitting',
  'home',
  'watching',
  'television',
  'go',
  'balcony',
  'see',
  'crowd',
  'pour',
  'mir',
  'street',
  'right',
  'near',
  'downtown',
  'next',
  'airline',
  'ticket',
  'office',
  'house',
  'right',
  'nearby',
  'day',
  'group',
  'policeman',
  'shields',
  'threw',
  'rocks',
  'policemen',
  'moved',
  'direction',
  'building',
  'burned',
  'motorcycle',
  'courtyard',
  'started',
  'shouting',
  'armenians',
  'come',
  'building',
  'switched',
  'light',
  'turns',
  'signal',
  'opposite',
  'turn',
  'light',
  'meant',
  'azerbaijani',
  'home',
  'course',
  'didnt',
  'know',
  'thought',
  'saw',
  'lights',
  'would',
  'come',
  'apartment',
  'suddenly',
  'theres',
  'pounding',
  'door',
  'go',
  'door',
  'four',
  'us',
  'four',
  'us',
  'apartment',
  'father',
  'mother',
  'younger',
  'brother',
  'aleksandr',
  'born',
  'father',
  'veteran',
  'world',
  'war',
  'ii',
  'fought',
  'china',
  'soviet',
  'far',
  'east',
  'pilot',
  'went',
  'door',
  'started',
  'pounding',
  'harder',
  'breaking',
  'axes',
  'start',
  'talk',
  'azerbaijani',
  'whats',
  'going',
  'whats',
  'happened',
  'say',
  'armenians',
  'get',
  'dont',
  'open',
  'door',
  'say',
  'leave',
  'well',
  'leave',
  'well',
  'leave',
  'tomorrow',
  'say',
  'leave',
  'get',
  'armenian',
  'dogs',
  'get',
  'theyve',
  'broken',
  'door',
  'lock',
  'hinge',
  'sides',
  'hold',
  'best',
  'father',
  'one',
  'side',
  'mother',
  'brother',
  'prepared',
  'several',
  'hammers',
  'axe',
  'apartment',
  'grabbed',
  'could',
  'find',
  'defend',
  'broke',
  'door',
  'door',
  'gave',
  'way',
  'held',
  'another',
  'half',
  'hour',
  'neighbors',
  'police',
  'one',
  'city',
  'government',
  'came',
  'aid',
  'whole',
  'time',
  'held',
  'door',
  'started',
  'smash',
  'door',
  'lock',
  'side',
  'first',
  'axe',
  'crowbar',
  'door',
  'gave',
  'way',
  'tore',
  'hinges',
  'sasha',
  'hit',
  'one',
  'axe',
  'axe',
  'flew',
  'hands',
  'also',
  'axes',
  'crowbars',
  'pipes',
  'special',
  'rods',
  'made',
  'armature',
  'shafts',
  'one',
  'hit',
  'father',
  'head',
  'pressure',
  'mob',
  'immense',
  'retreated',
  'room',
  'one',
  'hit',
  'mother',
  'left',
  'part',
  'face',
  'brother',
  'sasha',
  'fought',
  'back',
  'course',
  'sasha',
  'quite',
  'strong',
  'hot',
  'tempered',
  'judo',
  'champion',
  'sumgait',
  'hammers',
  'hands',
  'injured',
  'several',
  'bandits',
  'heads',
  'eyes',
  'went',
  'injured',
  'ones',
  'fell',
  'back',
  'others',
  'came',
  'take',
  'places',
  'many',
  'door',
  'fell',
  'angle',
  'mob',
  'tried',
  'remove',
  'door',
  'go',
  'second',
  'room',
  'continue',
  'finish',
  'us',
  'father',
  'brought',
  'skewers',
  'gave',
  'sasha',
  'flew',
  'saw',
  'father',
  'bleeding',
  'face',
  'covered',
  'blood',
  'wounded',
  'head',
  'whole',
  'face',
  'bloody',
  'threw',
  'saw',
  'threw',
  'mob',
  'drove',
  'back',
  'ones',
  'hall',
  'drove',
  'third',
  'floor',
  'came',
  'landing',
  'group',
  'bandits',
  'remained',
  'one',
  'rooms',
  'smashing',
  'furniture',
  'closed',
  'door',
  'behind',
  'started',
  'tearing',
  'door',
  'chase',
  'away',
  'remaining',
  'ones',
  'finish',
  'man',
  'imposing',
  'man',
  'azerbaijani',
  'came',
  'coming',
  'father',
  'fell',
  'mother',
  'flew',
  'started',
  'cry',
  'jumped',
  'onto',
  'balcony',
  'started',
  'calling',
  'ambulance',
  'mob',
  'started',
  'throwing',
  'stones',
  'windows',
  'veranda',
  'kitchen',
  'live',
  'fourth',
  'floor',
  'one',
  'came',
  'went',
  'room',
  'seemed',
  'man',
  'leader',
  'group',
  'respectably',
  'dressed',
  'hat',
  'trench',
  'coat',
  'fur',
  'collar',
  'addressed',
  'mother',
  'azerbaijani',
  'whats',
  'woman',
  'shouting',
  'happened',
  'shouting',
  'like',
  'says',
  'mean',
  'happened',
  'killed',
  'somebody',
  'father',
  'musician',
  'played',
  'clarinet',
  'played',
  'many',
  'weddings',
  'armenian',
  'azerbaijani',
  'played',
  'many',
  'years',
  'everyone',
  'knew',
  'mother',
  'says',
  'person',
  'killed',
  'played',
  'thousands',
  'azerbaijani',
  'weddings',
  'brought',
  'much',
  'joy',
  'people',
  'killed',
  'person',
  'says',
  'dont',
  'need',
  'shout',
  'stop',
  'shouting',
  'heard',
  'voice',
  'man',
  'people',
  'room',
  'opened',
  'door',
  'started',
  'running',
  'chased',
  'ran',
  'away',
  'man',
  'left',
  'later',
  'told',
  'downstairs',
  'one',
  'told',
  'others',
  'dont',
  'know',
  'fright',
  'told',
  'firearms',
  'even',
  'though',
  'fought',
  'hammers',
  'axe',
  'raced',
  'father',
  'started',
  'massage',
  'heart',
  'already',
  'late',
  'asked',
  'neighbors',
  'call',
  'ambulance',
  'ambulance',
  'never',
  'came',
  'although',
  'waited',
  'evening',
  'night',
  'somewhere',
  'around',
  'midnight',
  'policemen',
  'came',
  'informed',
  'us',
  'khachmas',
  'said',
  'heard',
  'group',
  'place',
  'condolences',
  'told',
  'us',
  'touch',
  'anything',
  'left',
  'father',
  'lay',
  'room',
  'stayed',
  'home',
  'us',
  'took',
  'hammer',
  'knife',
  'sat',
  'home',
  'well',
  'say',
  'descend',
  'us',
  'well',
  'defend',
  'somewhere',
  'around',
  'one',
  'oclock',
  'morning',
  'two',
  'people',
  'came',
  'sumgait',
  'procuracy',
  'investigators',
  'say',
  'leave',
  'everything',
  'coming',
  'back',
  'soon',
  'bring',
  'expert',
  'record',
  'photograph',
  'everything',
  'people',
  'came',
  'republic',
  'procuracy',
  'one',
  'helped',
  'us',
  'take',
  'father',
  'away',
  'morning',
  'came',
  'neighbors',
  'arrived',
  'wanted',
  'take',
  'father',
  'away',
  'somehow',
  'called',
  'procuracy',
  'police',
  'couple',
  'times',
  'one',
  'came',
  'called',
  'ambulance',
  'nobody',
  'came',
  'one',
  'neighbors',
  'said',
  'bandits',
  'coming',
  'place',
  'hide',
  'secured',
  'door',
  'somehow',
  'left',
  'father',
  'room',
  'went',
  'neighbors',
  'excesses',
  'began',
  'morning',
  'bandits',
  'came',
  'several',
  'vehicles',
  'zil',
  'panel',
  'trucks',
  'threw',
  'vehicles',
  'like',
  'landing',
  'force',
  'near',
  'center',
  'town',
  'building',
  'located',
  'right',
  'crowd',
  'formed',
  'started',
  'fighting',
  'soldiers',
  'buildings',
  'thats',
  'next',
  'airline',
  'ticket',
  'office',
  'started',
  'breaking',
  'armenian',
  'apartments',
  'destroying',
  'property',
  'stealing',
  'armenians',
  'werent',
  'home',
  'managed',
  'flee',
  'hide',
  'somewhere',
  'poured',
  'direction',
  'building',
  'shouting',
  'armenians',
  'left',
  'fourth',
  'floor',
  'meaning',
  'us',
  'theyre',
  'still',
  'lets',
  'go',
  'kill',
  'broke',
  'furniture',
  'remaining',
  'two',
  'rooms',
  'threw',
  'outside',
  'burned',
  'large',
  'fires',
  'hiding',
  'one',
  'floor',
  'something',
  'heavy',
  'fell',
  'sasha',
  'threw',
  'toward',
  'door',
  'shouting',
  'probably',
  'father',
  'thrown',
  'father',
  'defiling',
  'corpse',
  'probably',
  'throwing',
  'fire',
  'going',
  'burn',
  'heard',
  'sound',
  'kind',
  'hollow',
  'said',
  'thats',
  'furniture',
  'mother',
  'pounced',
  'sasha',
  'stopped',
  'somehow',
  'calmed',
  'mob',
  'left',
  'somewhere',
  'around',
  'eight',
  'oclock',
  'smashed',
  'open',
  'door',
  'went',
  'apartment',
  'neighbors',
  'across',
  'us',
  'also',
  'armenians',
  'left',
  'another',
  'city',
  'father',
  'neighbor',
  'concealing',
  'us',
  'came',
  'said',
  'crazy',
  'hiding',
  'armenians',
  'dont',
  'theyre',
  'checking',
  'apartments',
  'could',
  'kill',
  'us',
  'come',
  'leave',
  'apartment',
  'went',
  'third',
  'floor',
  'neighbors',
  'first',
  'man',
  'didnt',
  'want',
  'let',
  'us',
  'one',
  'sons',
  'asked',
  'relented',
  'stayed',
  'eleven',
  'oclock',
  'night',
  'heard',
  'sound',
  'motors',
  'neighbors',
  'said',
  'armored',
  'personnel',
  'carriers',
  'went',
  'downstairs',
  'light',
  'room',
  'left',
  'father',
  'rooms',
  'found',
  'later',
  'chandeliers',
  'torn',
  'left',
  'one',
  'bulb',
  'bulb',
  'burning',
  'probably',
  'signal',
  'agreed',
  'light',
  'burning',
  'every',
  'apartment',
  'microdistrict',
  'pogrom',
  'help',
  'soldiers',
  'made',
  'city',
  'party',
  'committee',
  'saved',
  'salvation',
  'mothers',
  'brothers',
  'mine',
  'purely',
  'accidental',
  'later',
  'found',
  'neighbors',
  'someone',
  'crowd',
  'shouted',
  'firearms',
  'well',
  'fought',
  'able',
  'save',
  'mother',
  'couldnt',
  'save',
  'father',
  'inflicted',
  'many',
  'injuries',
  'bandits',
  'serious',
  'others',
  'came',
  'take',
  'places',
  'also',
  'wounded',
  'blood',
  'scratched',
  'got',
  'share',
  'miracle',
  'survived',
  'saved',
  'miracle',
  'troops',
  'troops',
  'hadnt',
  'come',
  'sumgait',
  'slaughter',
  'would',
  'even',
  'greater',
  'probably',
  'armenians',
  'would',
  'victims',
  'genocide',
  'acquaintance',
  'city',
  'party',
  'committee',
  'able',
  'contact',
  'leadership',
  'military',
  'unit',
  'brought',
  'city',
  'orders',
  'assigned',
  'special',
  'people',
  'accompany',
  'us',
  'experts',
  'went',
  'pick',
  'fathers',
  'corpse',
  'took',
  'morgue',
  'two',
  'oclock',
  'morning',
  'already',
  'march',
  'raining',
  'hard',
  'quite',
  'cold',
  'wearing',
  'suits',
  'brother',
  'carried',
  'father',
  'morgue',
  'saw',
  'burned',
  'disfigured',
  'corpses',
  'six',
  'burned',
  'people',
  'small',
  'corpse',
  'burned',
  'child',
  'gruesome',
  'suffered',
  'tremendous',
  'shock',
  'ten',
  'people',
  'doctor',
  'duty',
  'said',
  'numbers',
  'taken',
  'baku',
  'womans',
  'corpse',
  'well',
  'part',
  'body',
  'hacked',
  'part',
  'womans',
  ...],
 ['doug',
  'peterson',
  'ncaa',
  'hockey',
  'final',
  'organization',
  'ford',
  'motor',
  'company',
  'lines',
  'distribution',
  'world',
  'reply',
  'nntp',
  'posting',
  'host',
  'pms',
  'pms',
  'ford',
  'com',
  'keywords',
  'college',
  'havent',
  'seen',
  'anyone',
  'post',
  'honors',
  'maine',
  'beat',
  'lssu',
  'milwaukee',
  'saturday',
  'night',
  'quite',
  'game',
  'maine',
  'stormed',
  'lead',
  'first',
  'looked',
  'like',
  'might',
  'run',
  'away',
  'maines',
  'first',
  'goal',
  'came',
  'inside',
  'first',
  'thirty',
  'seconds',
  'game',
  'lssu',
  'came',
  'back',
  'end',
  'period',
  'cut',
  'lead',
  'lssu',
  'came',
  'second',
  'dominating',
  'play',
  'particularly',
  'along',
  'boards',
  'play',
  'went',
  'quickly',
  'refs',
  'running',
  'holds',
  'barred',
  'type',
  'game',
  'lssu',
  'scored',
  'three',
  'unanswered',
  'goals',
  'lead',
  'end',
  'second',
  'looked',
  'like',
  'lssu',
  'might',
  'walk',
  'away',
  'game',
  'coach',
  'walsh',
  'maine',
  'replaced',
  'starting',
  'goalie',
  'dunham',
  'snow',
  'game',
  'michigan',
  'snow',
  'proved',
  'much',
  'aggressive',
  'goalie',
  'third',
  'period',
  'like',
  'second',
  'belonged',
  'team',
  'behind',
  'maine',
  'scored',
  'three',
  'unanswered',
  'goals',
  'span',
  'five',
  'minutes',
  'four',
  'minute',
  'mark',
  'scored',
  'jim',
  'montgomery',
  'tournament',
  'mvp',
  'assisted',
  'paul',
  'kariya',
  'last',
  'minute',
  'game',
  'bears',
  'highlighting',
  'change',
  'snow',
  'also',
  'proved',
  'difference',
  'end',
  'one',
  'minute',
  'go',
  'lssu',
  'goalie',
  'pulled',
  'snow',
  'dueled',
  'lssu',
  'forward',
  'amazing',
  'set',
  'moves',
  'snow',
  'great',
  'way',
  'end',
  'game',
  'years',
  'three',
  'championships',
  'games',
  'sold',
  'last',
  'year',
  'one',
  'month',
  'bradley',
  'center',
  'holds',
  'approximately',
  'douglas',
  'peterson',
  'safety',
  'laboratories',
  'department',
  'driven',
  'ford',
  'motor',
  'company',
  'lately'],
 ['david',
  'veal',
  'national',
  'crime',
  'survey',
  'organization',
  'university',
  'tennessee',
  'division',
  'continuing',
  'education',
  'lines',
  'well',
  'dropped',
  'library',
  'yesterday',
  'picked',
  'back',
  'copies',
  'national',
  'crime',
  'survey',
  'effort',
  'examine',
  'said',
  'self',
  'defense',
  'firearm',
  'havent',
  'ground',
  'much',
  'way',
  'numbers',
  'yet',
  'couple',
  'things',
  'jumped',
  'first',
  'specify',
  'type',
  'weapon',
  'used',
  'self',
  'defense',
  'refer',
  'weapon',
  'second',
  'assaults',
  'rose',
  'gun',
  'defenses',
  'reported',
  'fell',
  'almost',
  'unless',
  'theres',
  'explanation',
  'im',
  'tempted',
  'mark',
  'reporting',
  'problem',
  'going',
  'ahead',
  'examination',
  'numbers',
  'would',
  'waste',
  'time',
  'anybody',
  'idea',
  'might',
  'cause',
  'real',
  'difference',
  'reporting',
  'difference',
  'survey',
  'doesnt',
  'appear',
  'changed',
  'significantly',
  'david',
  'veal',
  'univ',
  'tenn',
  'div',
  'cont',
  'education',
  'info',
  'services',
  'group'],
 ['peter',
  'ahrens',
  'bmwmoa',
  'controversy',
  'summary',
  'request',
  'overview',
  'keywords',
  'bmwmoa',
  'board',
  'history',
  'contretemps',
  'organization',
  'pacific',
  'bell',
  'esac',
  'oakland',
  'ca',
  'distribution',
  'usa',
  'lines',
  'article',
  'writes',
  'craig',
  'vechorik',
  'writes',
  'good',
  'ol',
  'boys',
  'long',
  'agree',
  'current',
  'board',
  'garbage',
  'voting',
  'would',
  'simply',
  'trading',
  'one',
  'form',
  'trash',
  'another',
  'opponents',
  'selections',
  'get',
  'equal',
  'time',
  'yo',
  'joe',
  'dont',
  'post',
  'really',
  'think',
  'rational',
  'bmwmoa',
  'folks',
  'left',
  'may',
  'rest',
  'us',
  'please',
  'brief',
  'summary',
  'current',
  'state',
  'affairs',
  'esteemed',
  'organization',
  'together',
  'historical',
  'outline',
  'got',
  'contretemps',
  'points',
  'deducted',
  'shouting',
  'bulging',
  'veins',
  'temple',
  'area',
  'pete',
  'ahrens'],
 ['mike',
  'jones',
  'jack',
  'morris',
  'reply',
  'disclaimer',
  'posting',
  'represents',
  'posters',
  'views',
  'necessarily',
  'ibm',
  'nntp',
  'posting',
  'host',
  'fenway',
  'aix',
  'kingston',
  'ibm',
  'com',
  'organization',
  'ibm',
  'aix',
  'esa',
  'development',
  'kingston',
  'ny',
  'lines',
  'roger',
  'maynard',
  'writes',
  'edward',
  'ted',
  'fischer',
  'writes',
  'article',
  'shawn',
  'luddington',
  'writes',
  'hey',
  'valentine',
  'dont',
  'see',
  'boston',
  'world',
  'series',
  'rings',
  'fingers',
  'yah',
  'damn',
  'morris',
  'three',
  'probably',
  'hall',
  'fame',
  'future',
  'certainly',
  'didnt',
  'earn',
  'last',
  'one',
  'many',
  'games',
  'blow',
  'world',
  'series',
  'ones',
  'started',
  'certainly',
  'earn',
  'valuable',
  'member',
  'blue',
  'jay',
  'team',
  'particularly',
  'world',
  'series',
  'season',
  'probably',
  'valuable',
  'say',
  'putting',
  'olerud',
  'pitch',
  'yeah',
  'valuable',
  'getting',
  'postseason',
  'sucked',
  'dirty',
  'canal',
  'water',
  'straw',
  'jays',
  'spite',
  'morris',
  'much',
  'therefore',
  'would',
  'say',
  'toronto',
  'easily',
  'made',
  'best',
  'signing',
  'oh',
  'yes',
  'definitely',
  'therefore',
  'morris',
  'better',
  'clemens',
  'definition',
  'better',
  'refers',
  'measurement',
  'scale',
  'nothing',
  'winning',
  'ws',
  'rings',
  'umm',
  'roger',
  'return',
  'us',
  'halcyon',
  'days',
  'postings',
  'ago',
  'poster',
  'valentine',
  'replying',
  'used',
  'ws',
  'rings',
  'measure',
  'better',
  'concept',
  'called',
  'context',
  'really',
  'become',
  'familiar',
  'someday',
  'facts',
  'morris',
  'shown',
  'us',
  'takes',
  'play',
  'ws',
  'winning',
  'club',
  'clemens',
  'hasnt',
  'unless',
  'transaltes',
  'clemens',
  'hasnt',
  'gone',
  'lou',
  'gormans',
  'office',
  'large',
  'caliber',
  'handgun',
  'refused',
  'come',
  'hed',
  'traded',
  'jays',
  'im',
  'complete',
  'loss',
  'possible',
  'meaning',
  'go',
  'clemens',
  'done',
  'past',
  'claim',
  'better',
  'morris',
  'want',
  'facts',
  'morris',
  'shown',
  'us',
  'win',
  'clemens',
  'hasnt',
  'earth',
  'mean',
  'careers',
  'clemens',
  'games',
  'hes',
  'started',
  'morris',
  'per',
  'year',
  'clemens',
  'averaged',
  'nearly',
  'wins',
  'morris',
  'would',
  'grant',
  'proposition',
  'preventing',
  'team',
  'scoring',
  'increases',
  'chances',
  'winning',
  'game',
  'consider',
  'clemens',
  'allows',
  'runs',
  'innings',
  'pitched',
  'morris',
  'allows',
  'nearly',
  'run',
  'per',
  'nine',
  'innings',
  'fact',
  'jack',
  'morris',
  'never',
  'career',
  'era',
  'single',
  'year',
  'good',
  'clemens',
  'career',
  'era',
  'forget',
  'maynardverse',
  'obviously',
  'mystical',
  'significance',
  'buckner',
  'missing',
  'grounder',
  'morris',
  'sox',
  'would',
  'routine',
  'groundout',
  'right',
  'whether',
  'clemens',
  'better',
  'standard',
  'measurement',
  'totally',
  'meaningless',
  'object',
  'game',
  'compile',
  'high',
  'figures',
  'statistics',
  'chosen',
  'feel',
  'important',
  'object',
  'game',
  'contribute',
  'ws',
  'victories',
  'patiently',
  'explained',
  'many',
  'many',
  'times',
  'either',
  'stupid',
  'stubborn',
  'grasp',
  'speaking',
  'stupid',
  'patiently',
  'patiently',
  'explained',
  'many',
  'times',
  'attributing',
  'greatness',
  'players',
  'based',
  'accomplishments',
  'teams',
  'makes',
  'much',
  'sense',
  'claiming',
  'racecar',
  'attractive',
  'paint',
  'job',
  'race',
  'continued',
  'failure',
  'understand',
  'even',
  'intelligently',
  'reply',
  'arguments',
  'presented',
  'leads',
  'conclusion',
  'must',
  'spent',
  'many',
  'games',
  'goal',
  'without',
  'mask',
  'dont',
  'give',
  'shit',
  'boston',
  'alomar',
  'olerud',
  'henke',
  'ward',
  'toronto',
  'rivera',
  'jack',
  'clark',
  'jeff',
  'reardon',
  'things',
  'would',
  'looked',
  'little',
  'different',
  'last',
  'fall',
  'give',
  'credit',
  'credit',
  'due',
  'lavishing',
  'praise',
  'morris',
  'makes',
  'sick',
  'yes',
  'dog',
  'would',
  'caught',
  'rabbit',
  'forget',
  'didnt',
  'happen',
  'open',
  'eyes',
  'look',
  'see',
  'really',
  'happening',
  'forget',
  'morris',
  'shouldnt',
  'era',
  'morris',
  'pitched',
  'last',
  'year',
  'jays',
  'stop',
  'crying',
  'get',
  'life',
  'one',
  'crying',
  'jays',
  'team',
  'certainly',
  'deserved',
  'win',
  'least',
  'al',
  'east',
  'performed',
  'well',
  'two',
  'short',
  'series',
  'world',
  'series',
  'congratulate',
  'red',
  'sox',
  'fan',
  'hope',
  'keep',
  'morris',
  'happy',
  'picked',
  'stewart',
  'elated',
  'traded',
  'darrin',
  'jackson',
  'see',
  'unless',
  'believe',
  'mystical',
  'link',
  'morris',
  'offense',
  'hardly',
  'help',
  'believe',
  'man',
  'credited',
  'many',
  'wins',
  'last',
  'year',
  'got',
  'lucky',
  'luck',
  'runs',
  'like',
  'pitched',
  'odd',
  'innings',
  'gave',
  'exactly',
  'one',
  'earned',
  'run',
  'went',
  'seriously',
  'roger',
  'id',
  'really',
  'like',
  'hear',
  'explanation',
  'difference',
  'morris',
  'morris',
  'one',
  'better',
  'pitcher',
  'morris',
  'somehow',
  'learn',
  'win',
  'intervening',
  'ten',
  'years',
  'go',
  'minnesota',
  'era',
  'half',
  'run',
  'lower',
  'mike',
  'jones',
  'aix',
  'high',
  'end',
  'development',
  'dont',
  'humble',
  'youre',
  'great'],
 ['gordon',
  'hamachi',
  'honda',
  'accord',
  'brake',
  'problem',
  'organization',
  'adobe',
  'systems',
  'incorporated',
  'lines',
  'joni',
  'ciarletta',
  'writes',
  'honda',
  'accord',
  'hit',
  'magic',
  'mile',
  'mark',
  'sorts',
  'things',
  'beginning',
  'go',
  'bad',
  'latest',
  'problem',
  'experiencing',
  'brakes',
  'still',
  'stop',
  'car',
  'fine',
  'stopped',
  'completely',
  'brake',
  'pedal',
  'sink',
  'another',
  'inches',
  'feels',
  'really',
  'strange',
  'worried',
  'brakes',
  'quit',
  'working',
  'one',
  'days',
  'checked',
  'brake',
  'fluid',
  'reservoir',
  'full',
  'fluid',
  'looked',
  'really',
  'dirty',
  'like',
  'dirty',
  'oil',
  'called',
  'mechanic',
  'told',
  'need',
  'new',
  'brake',
  'master',
  'cylinder',
  'cost',
  'whopping',
  'alone',
  'honda',
  'accord',
  'miles',
  'started',
  'showing',
  'behavior',
  'replaced',
  'brake',
  'master',
  'cylinder',
  'took',
  'hour',
  'cost',
  'sure',
  'beats',
  'paying',
  'someone',
  'else',
  'wanted',
  'rebuild',
  'master',
  'cylinder',
  'instead',
  'putting',
  'rebuilt',
  'one',
  'would',
  'cost',
  'rebuild',
  'kit',
  'honda',
  'brake',
  'master',
  'cylinder',
  'easy',
  'get',
  'two',
  'bolts',
  'attach',
  'engine',
  'compartment',
  'two',
  'brake',
  'lines',
  'enter',
  'master',
  'cylinder',
  'tricky',
  'part',
  'brake',
  'lines',
  'stuck',
  'tight',
  'craftsmen',
  'open',
  'end',
  'wrench',
  'rounded',
  'bolt',
  'heads',
  'vise',
  'grips',
  'loosen',
  'suckers',
  'wow',
  'best',
  'invention',
  'since',
  'sliced',
  'bread',
  'easy',
  'bolt',
  'new',
  'part',
  'place',
  'add',
  'new',
  'brake',
  'fluid',
  'bleed',
  'brakes',
  'quite',
  'easy',
  'even',
  'beginner',
  'local',
  'auto',
  'parts',
  'store',
  'repair',
  'manual',
  'honda',
  'accord',
  'detailed',
  'diagrams',
  'master',
  'brake',
  'cylinder',
  'step',
  'step',
  'procedure',
  'replacing'],
 ['paul',
  'wallich',
  'help',
  'ultra',
  'long',
  'timing',
  'organization',
  'trivializers',
  'us',
  'lines',
  'john',
  'haddy',
  'writes',
  'article',
  'michael',
  'covington',
  'writes',
  'instead',
  'quartz',
  'crystal',
  'divide',
  'frequency',
  'times',
  'something',
  'like',
  'wouldnt',
  'crystal',
  'affected',
  'cold',
  'gut',
  'feeling',
  'mechanically',
  'resonating',
  'device',
  'extreme',
  'cold',
  'likely',
  'affect',
  'compliance',
  'terminology',
  'quartz',
  'hence',
  'resonant',
  'frequency',
  'yes',
  'fairly',
  'reproducible',
  'way',
  'smidgen',
  'distance',
  'absolute',
  'zero',
  'case',
  'youre',
  'going',
  'borrow',
  'freezer',
  'space',
  'bio',
  'lab',
  'someone',
  'test',
  'calibrate',
  'darling',
  'anyway',
  'btw',
  'youre',
  'probably',
  'going',
  'want',
  'big',
  'capacitors',
  'found',
  'fire',
  'solenoid',
  'high',
  'current',
  'drain',
  'frozen',
  'batteries',
  'ugly',
  'thing',
  'paul'],
 ['frank',
  'crary',
  'gun',
  'control',
  'nntp',
  'posting',
  'host',
  'ucsu',
  'colorado',
  'organization',
  'university',
  'colorado',
  'boulder',
  'lines',
  'article',
  'pat',
  'myrto',
  'writes',
  'find',
  'hard',
  'understand',
  'come',
  'people',
  'apparantly',
  'connected',
  'government',
  'otherwise',
  'privileged',
  'go',
  'great',
  'lengths',
  'redefinitions',
  'interpretations',
  'full',
  'bore',
  'attempt',
  'throw',
  'away',
  'protection',
  'rights',
  'constitution',
  'almost',
  'makes',
  'think',
  'lemmings',
  'running',
  'sea',
  'lemming',
  'year',
  'really',
  'wonder',
  'jefferson',
  'madison',
  'would',
  'say',
  'folks',
  'theyd',
  'probably',
  'quote',
  'montesque',
  'sp',
  'asked',
  'russia',
  'likely',
  'become',
  'democracy',
  'time',
  'soon',
  'russia',
  'nation',
  'slaves',
  'people',
  'get',
  'deserve',
  'since',
  'said',
  'russia',
  'changed',
  'great',
  'deal',
  'unfortunately',
  'nations',
  'frank',
  'crary',
  'cu',
  'boulder'],
 ['sawran',
  'bernoulli',
  'removeable',
  'scsi',
  'drive',
  'disks',
  'nntp',
  'posting',
  'host',
  'ultb',
  'gw',
  'isc',
  'rit',
  'organization',
  'rochester',
  'institute',
  'technology',
  'distribution',
  'usa',
  'storage',
  'space',
  'sale',
  'iomega',
  'mb',
  'removeable',
  'hd',
  'sale',
  'cartridges',
  'total',
  'storage',
  'space',
  'comes',
  'mb',
  'cartridges',
  'still',
  'original',
  'shrinkwrapping',
  'unused',
  'note',
  'compatible',
  'sysquest',
  'cartridges',
  'scsi',
  'interface',
  'required',
  'plugs',
  'right',
  'back',
  'macintoshes',
  'dont',
  'controller',
  'ibm',
  'utilities',
  'mac',
  'mac',
  'ton',
  'software',
  'disks',
  'dont',
  'anymore',
  'sold',
  'mac',
  'system',
  'stuff',
  'included',
  'pd',
  'stuff',
  'info',
  'mac',
  'site',
  'lots',
  'gifs',
  'lots',
  'sound',
  'effects',
  'entire',
  'disk',
  'sounds',
  'asking',
  'plus',
  'shipping',
  'information',
  'send',
  'mail',
  'call',
  'ask',
  'sawran',
  'cheers',
  'chris'],
 ['serdar',
  'argic',
  'thousands',
  'armenians',
  'serving',
  'german',
  'army',
  'waffen',
  'ss',
  'reply',
  'serdar',
  'argic',
  'distribution',
  'world',
  'lines',
  'article',
  'hm',
  'writes',
  'turkey',
  'must',
  'bare',
  'teeth',
  'armenia',
  'sooner',
  'expect',
  'remember',
  'cyprus',
  'say',
  'vehemently',
  'disagree',
  'seen',
  'bad',
  'fact',
  'nazi',
  'armenians',
  'europe',
  'established',
  'vast',
  'network',
  'pro',
  'german',
  'collaborators',
  'extended',
  'two',
  'continents',
  'thousands',
  'armenians',
  'serving',
  'german',
  'army',
  'waffen',
  'ss',
  'russia',
  'western',
  'europe',
  'armenians',
  'involved',
  'espionage',
  'fifth',
  'column',
  'activities',
  'hitler',
  'balkans',
  'arabian',
  'peninsula',
  'promised',
  'independent',
  'state',
  'german',
  'protection',
  'agreement',
  'signed',
  'armenian',
  'national',
  'council',
  'copy',
  'agreement',
  'found',
  'congressional',
  'record',
  'november',
  'see',
  'document',
  'side',
  'atlantic',
  'nazi',
  'armenians',
  'aware',
  'brethrens',
  'alliance',
  'often',
  'expressed',
  'pro',
  'nazi',
  'sentiments',
  'america',
  'entered',
  'war',
  'summary',
  'world',
  'war',
  'ii',
  'armenians',
  'carried',
  'away',
  'german',
  'might',
  'cringing',
  'fawning',
  'nazis',
  'zeal',
  'armenian',
  'publication',
  'germany',
  'hairenik',
  'carried',
  'statements',
  'follows',
  'sometimes',
  'difficult',
  'eradicate',
  'poisonous',
  'elements',
  'jews',
  'struck',
  'deep',
  'root',
  'like',
  'chronic',
  'disease',
  'becomes',
  'necessary',
  'people',
  'nazis',
  'eradicate',
  'uncommon',
  'method',
  'attempts',
  'regarded',
  'revolutionary',
  'surgical',
  'operation',
  'flow',
  'blood',
  'natural',
  'thing',
  'brief',
  'view',
  'armenian',
  'genocide',
  'muslims',
  'jews',
  'extracts',
  'letter',
  'dated',
  'december',
  'published',
  'san',
  'francisco',
  'chronicle',
  'answer',
  'letter',
  'published',
  'journal',
  'signature',
  'one',
  'amarian',
  'first',
  'hand',
  'information',
  'evidence',
  'armenian',
  'atrocities',
  'people',
  'jews',
  'members',
  'family',
  'witnessed',
  'murder',
  'members',
  'family',
  'near',
  'erzurum',
  'turkey',
  'armenian',
  'neighbors',
  'bent',
  'destroying',
  'anything',
  'anybody',
  'remotely',
  'jewish',
  'muslim',
  'armenians',
  'look',
  'history',
  'see',
  'havoc',
  'ancestors',
  'perpetrated',
  'upon',
  'neighbors',
  'armenians',
  'league',
  'hitler',
  'last',
  'war',
  'premise',
  'grant',
  'self',
  'government',
  'return',
  'armenians',
  'would',
  'help',
  'exterminate',
  'jews',
  'armenians',
  'also',
  'hearty',
  'proponents',
  'anti',
  'semitic',
  'acts',
  'league',
  'russian',
  'communists',
  'mr',
  'amarian',
  'dont',
  'need',
  'bias',
  'signed',
  'elihu',
  'ben',
  'levi',
  'vacaville',
  'california',
  'james',
  'mandalian',
  'dro',
  'drastamat',
  'kanayan',
  'armenian',
  'review',
  'quarterly',
  'hairenik',
  'association',
  'inc',
  'summer',
  'june',
  'vol',
  'serdar',
  'argic',
  'closed',
  'roads',
  'mountain',
  'passes',
  'might',
  'serve',
  'ways',
  'escape',
  'turks',
  'proceeded',
  'work',
  'extermination',
  'ohanus',
  'appressian',
  'soviet',
  'armenia',
  'today',
  'longer',
  'exists',
  'single',
  'turkish',
  'soul',
  'sahak',
  'melkonian'],
 ['thor',
  'farrish',
  'maxtor',
  'drive',
  'geometry',
  'jumpers',
  'distribution',
  'usa',
  'organization',
  'computer',
  'science',
  'department',
  'boston',
  'university',
  'boston',
  'usa',
  'lines'],
 ['jeffery',
  'rachford',
  'ryno',
  'correction',
  'organization',
  'purdue',
  'university',
  'engineering',
  'computer',
  'network',
  'distribution',
  'na',
  'lines',
  'made',
  'mistake',
  'posted',
  'article',
  'fighting',
  'food',
  'poisoning',
  'last',
  'hours',
  'second',
  'paragraph',
  'state',
  'following',
  'doctors',
  'cleared',
  'sandberg',
  'swing',
  'padded',
  'bat',
  'ball',
  'tee',
  'catch',
  'ball',
  'gloved',
  'hand',
  'sorry',
  'error',
  'didnt',
  'know',
  'posting',
  'jeffery'],
 ['dan',
  'mckinnon',
  'clipper',
  'chip',
  'reply',
  'dan',
  'mckinnon',
  'organization',
  'canada',
  'remote',
  'systems',
  'distribution',
  'sci',
  'lines',
  'lurked',
  'bit',
  'lately',
  'though',
  'math',
  'unknown',
  'found',
  'interesting',
  'thought',
  'would',
  'post',
  'article',
  'found',
  'saturday',
  'april',
  'toronto',
  'star',
  'clipper',
  'chip',
  'protect',
  'privacy',
  'washington',
  'reuter',
  'president',
  'bill',
  'clinton',
  'announced',
  'yesterday',
  'plan',
  'plant',
  'new',
  'clipper',
  'chip',
  'every',
  'government',
  'telephone',
  'computer',
  'line',
  'prevent',
  'eavesdropping',
  'eventually',
  'chips',
  'developed',
  'governments',
  'national',
  'institute',
  'standards',
  'technology',
  'would',
  'used',
  'commercial',
  'private',
  'electronics',
  'communication',
  'users',
  'white',
  'house',
  'said',
  'assure',
  'privacy',
  'device',
  'containing',
  'encryption',
  'devices',
  'would',
  'assigned',
  'two',
  'unique',
  'keys',
  'numbers',
  'needed',
  'government',
  'agencies',
  'decode',
  'messages',
  'attorney',
  'general',
  'assigned',
  'task',
  'arranging',
  'keys',
  'deposited',
  'two',
  'key',
  'escrow',
  'data',
  'bases',
  'access',
  'would',
  'limited',
  'government',
  'officials',
  'legal',
  'authorization',
  'conduct',
  'wiretap',
  'white',
  'house',
  'said',
  'statement',
  'dan',
  'mckinnon',
  'canada',
  'remote',
  'systems',
  'toronto',
  'ontario'],
 ['peter',
  'garfiel',
  'freeman',
  'hamas',
  'methods',
  'murder',
  'nntp',
  'posting',
  'host',
  'cunixa',
  'cc',
  'columbia',
  'organization',
  'columbia',
  'university',
  'lines',
  'anyone',
  'gets',
  'new',
  'york',
  'times',
  'edit',
  'page',
  'transcript',
  'vhs',
  'hams',
  'describing',
  'methods',
  'torture',
  'execution',
  'post',
  'later'],
 ['hung',
  'jen',
  'chen',
  'forsale',
  'sony',
  'discman',
  'article',
  'phakt',
  'pqnsjinnlmd',
  'organization',
  'university',
  'southern',
  'california',
  'los',
  'angeles',
  'ca',
  'lines',
  'nntp',
  'posting',
  'host',
  'phakt',
  'usc',
  'sony',
  'portable',
  'diskman',
  'forsale',
  'good',
  'condition',
  'flawless',
  'costomer',
  'ac',
  'adapter',
  'dc',
  'power',
  'supply',
  'tested',
  'dc',
  'factory',
  'adapter',
  'tested',
  'dc',
  'ac',
  'input',
  'time',
  'bought',
  'three',
  'years',
  'ago',
  'using',
  'lot',
  'heat',
  'generated',
  'inside',
  'cd',
  'machine',
  'course',
  'wouldnt',
  'risk',
  'babys',
  'life',
  'maybe',
  'thats',
  'many',
  'owners',
  'always',
  'complain',
  'portable',
  'machine',
  'going',
  'kaput',
  'short',
  'time',
  'usage',
  'dc',
  'factory',
  'suggested',
  'led',
  'display',
  'asking',
  'plus',
  'shipping',
  'contact',
  'harry',
  'interested'],
 ['roger',
  'maynard',
  'hawks',
  'vs',
  'leafs',
  'lastnight',
  'organization',
  'dept',
  'computer',
  'science',
  'laurentian',
  'university',
  'sudbury',
  'distribution',
  'na',
  'lines',
  'gerald',
  'olchowy',
  'writes',
  'article',
  'raj',
  'ramnarace',
  'writes',
  'anyone',
  'else',
  'see',
  'game',
  'last',
  'night',
  'like',
  'playoff',
  'game',
  'lots',
  'hitting',
  'disappointed',
  'video',
  'goal',
  'judge',
  'replays',
  'joe',
  'murphys',
  'goal',
  'shouldnt',
  'counted',
  'didnt',
  'go',
  'net',
  'according',
  'tsn',
  'broadcasters',
  'video',
  'goal',
  'judge',
  'said',
  'saw',
  'water',
  'bottle',
  'top',
  'cage',
  'move',
  'assumed',
  'puck',
  'went',
  'terrible',
  'hope',
  'crap',
  'like',
  'doesnt',
  'occur',
  'playoffs',
  'game',
  'would',
  'ended',
  'tie',
  'thought',
  'red',
  'light',
  'went',
  'thus',
  'review',
  'presumption',
  'would',
  'find',
  'conclusive',
  'evidence',
  'puck',
  'go',
  'net',
  'replays',
  'say',
  'even',
  'rear',
  'evidence',
  'wasnt',
  'conclusive',
  'puck',
  'opinion',
  'seemed',
  'pretty',
  'conclusive',
  'puck',
  'clearly',
  'hit',
  'crossbar',
  'came',
  'line',
  'announcers',
  'admittedly',
  'homers',
  'kept',
  'harping',
  'must',
  'different',
  'view',
  'upstairs',
  'obvious',
  'would',
  'thought',
  'anyone',
  'saw',
  'replay',
  'puck',
  'didnt',
  'go',
  'referee',
  'originally',
  'signalled',
  'goal',
  'video',
  'replay',
  'judges',
  'initiated',
  'contact',
  'referee',
  'claim',
  'goal',
  'fact',
  'scored',
  'unheard',
  'seeing',
  'stuff',
  'like',
  'happen',
  'gives',
  'bad',
  'feeling',
  'leaf',
  'chances',
  'year',
  'cordially',
  'always',
  'rm',
  'roger',
  'maynard'],
 ['kent',
  'sandvik',
  'kind',
  'loving',
  'god',
  'organization',
  'cookamunga',
  'tourist',
  'bureau',
  'lines',
  'article',
  'malcolm',
  'lee',
  'wrote',
  'laws',
  'written',
  'israelites',
  'gods',
  'chosen',
  'people',
  'god',
  'expressly',
  'set',
  'apart',
  'rest',
  'world',
  'israelites',
  'direct',
  'witness',
  'gods',
  'existence',
  'disobey',
  'god',
  'knowing',
  'god',
  'real',
  'would',
  'outright',
  'denial',
  'god',
  'therefore',
  'immediately',
  'punishable',
  'remember',
  'laws',
  'written',
  'different',
  'time',
  'applied',
  'gods',
  'chosen',
  'people',
  'jesus',
  'changed',
  'living',
  'age',
  'grace',
  'sin',
  'longer',
  'immediately',
  'punishable',
  'death',
  'repentance',
  'salvation',
  'lord',
  'jesus',
  'christ',
  'chosen',
  'people',
  'salvation',
  'available',
  'everyone',
  'jew',
  'gentile',
  'alike',
  'jews',
  'wont',
  'agree',
  'malcolm',
  'cheers',
  'kent',
  'alink',
  'ksand',
  'private',
  'activities',
  'net'],
 ['brian',
  'kendig',
  'apr',
  'gods',
  'promise',
  'john',
  'organization',
  'starfleet',
  'headquarters',
  'san',
  'francisco',
  'lines',
  'brian',
  'ceccarelli',
  'writes',
  'warned',
  'job',
  'convert',
  'job',
  'holy',
  'spirit',
  'frankly',
  'make',
  'lousy',
  'one',
  'testify',
  'conversion',
  'god',
  'loop',
  'decide',
  'follow',
  'jesus',
  'indeed',
  'would',
  'estatic',
  'glory',
  'god',
  'ive',
  'asked',
  'god',
  'several',
  'times',
  'heart',
  'come',
  'really',
  'wish',
  'could',
  'believe',
  'cos',
  'matter',
  'much',
  'confidence',
  'build',
  'universe',
  'big',
  'place',
  'would',
  'nice',
  'know',
  'someone',
  'watching',
  'ive',
  'gone',
  'open',
  'mind',
  'ive',
  'layed',
  'beliefs',
  'aside',
  'time',
  'time',
  'ive',
  'doubt',
  'ive',
  'prayed',
  'see',
  'good',
  'would',
  'dont',
  'see',
  'open',
  'god',
  'short',
  'deciding',
  'believe',
  'good',
  'reason',
  'decide',
  'believe',
  'good',
  'reason',
  'believe',
  'god',
  'zeus',
  'seems',
  'like',
  'pretty',
  'cool',
  'candidate',
  'know',
  'searching',
  'even',
  'though',
  'ive',
  'set',
  'aside',
  'pride',
  'decided',
  'want',
  'know',
  'truth',
  'matter',
  'difficult',
  'may',
  'accept',
  'never',
  'encounter',
  'deity',
  'christian',
  'otherwise',
  'please',
  'tell',
  'still',
  'remaining',
  'true',
  'brian',
  'kendig',
  'je',
  'ne',
  'suis',
  'fait',
  'comme',
  'aucun',
  'de',
  'ceux',
  'que',
  'jai',
  'vus',
  'jose',
  'croire',
  'netre',
  'fait',
  'comme',
  'aucun',
  'de',
  'ceux',
  'qui',
  'existent',
  'meaning',
  'life',
  'si',
  'je',
  'ne',
  'vaux',
  'pas',
  'mieux',
  'au',
  'moins',
  'je',
  'suis',
  'autre',
  'ends',
  'rousseau'],
 ['mike',
  'corcoran',
  'tire',
  'recomendation',
  'cb',
  'wanted',
  'keywords',
  'tires',
  'recomend',
  'cb',
  'organization',
  'ncr',
  'san',
  'diego',
  'distribution',
  'usa',
  'lines',
  'article',
  'antonio',
  'salerno',
  'jr',
  'writes',
  'ive',
  'got',
  'cb',
  'chen',
  'shing',
  'sp',
  'tires',
  'got',
  'tires',
  'reason',
  'need',
  'new',
  'tires',
  'beacuse',
  'hate',
  'dont',
  'feel',
  'safe',
  'id',
  'appreciate',
  'recomendations',
  'get',
  'new',
  'tires',
  'thanks',
  'tony',
  'ill',
  'throw',
  'vote',
  'metzler',
  'economy',
  'tire',
  'good',
  'mid',
  'size',
  'older',
  'bikes',
  'rated',
  'mph',
  'wearing',
  'well',
  'handles',
  'mile',
  'ride',
  'twisties',
  'work',
  'well',
  'sr',
  'costs',
  'bit',
  'chengs',
  'ircs',
  'etc',
  'still',
  'less',
  'sport',
  'metzlers',
  'newer',
  'bikes',
  'cost',
  'chaparral',
  'front',
  'rear',
  'jon',
  'mike',
  'corcoran',
  'yamaha',
  'sr',
  'honda',
  'xl',
  'husky',
  'cross'],
 ['andrew',
  'varvel',
  'exact',
  'million',
  'readers',
  'enlightened',
  'serdar',
  'argic',
  'summary',
  'article',
  'ns',
  'uvbm',
  'mze',
  'organization',
  'north',
  'dakota',
  'higher',
  'education',
  'computing',
  'network',
  'lines',
  'nntp',
  'posting',
  'host',
  'plains',
  'nodak',
  'article',
  'serdar',
  'argic',
  'writes',
  'serdar',
  'argic',
  'merciful',
  'compassionate',
  'serdar',
  'argics',
  'bountiful',
  'divine',
  'knowing',
  'footnoted',
  'wisdom',
  'regrettably',
  'omitted',
  'solemn',
  'tribute',
  'join',
  'serdar',
  'argic',
  'fan',
  'club',
  'get',
  'shirt',
  'friendly',
  'neighborhood',
  'alien',
  'life',
  'hasnt',
  'since',
  'david',
  'koresh',
  'died'],
 ['angry',
  'doctor',
  'lines',
  'organization',
  'space',
  'telescope',
  'science',
  'institute',
  'distribution',
  'na',
  'justified',
  'pissed',
  'doctor',
  'last',
  'saturday',
  'evening',
  'year',
  'old',
  'son',
  'cut',
  'finger',
  'badly',
  'knife',
  'took',
  'local',
  'urgent',
  'general',
  'care',
  'clinic',
  'pm',
  'clinic',
  'open',
  'till',
  'pm',
  'receptionist',
  'went',
  'back',
  'told',
  'doctor',
  'came',
  'back',
  'told',
  'us',
  'doctor',
  'would',
  'see',
  'us',
  'someplace',
  'go',
  'want',
  'delayed',
  'next',
  'minutes',
  'response',
  'questions',
  'several',
  'trips',
  'back',
  'room',
  'receptionist',
  'told',
  'doctor',
  'paperwork',
  'back',
  'doctor',
  'would',
  'even',
  'look',
  'finger',
  'advise',
  'us',
  'going',
  'emergency',
  'room',
  'doctor',
  'would',
  'even',
  'speak',
  'would',
  'tell',
  'doctors',
  'name',
  'name',
  'asked',
  'charge',
  'clinic',
  'said',
  'dont',
  'know',
  'realize',
  'private',
  'clinic',
  'emergency',
  'room',
  'quite',
  'angry',
  'turned',
  'away',
  'doctor',
  'want',
  'bothered',
  'son',
  'get',
  'three',
  'stitches',
  'emergency',
  'room',
  'im',
  'still',
  'trying',
  'find',
  'charge',
  'clinic',
  'write',
  'letter',
  'certainly',
  'never',
  'set',
  'foot',
  'clinic',
  'mary',
  'ryan',
  'space',
  'telescope',
  'science',
  'institute',
  'baltimore',
  'maryland'],
 ['mives',
  'sale',
  'update',
  'douglas',
  'kou',
  'organization',
  'hiram',
  'college',
  'nntp',
  'posting',
  'host',
  'hiramb',
  'hiram',
  'lines',
  'vhs',
  'movie',
  'sale',
  'kevin',
  'costner',
  'dances',
  'withs',
  'wolves',
  'open',
  'used',
  'best',
  'offer',
  'buyer',
  'pay',
  'shipping',
  'shipping',
  'let',
  'know',
  'interested',
  'send',
  'offer',
  'mail',
  'address',
  'thanks',
  'douglas',
  'kou',
  'hiram',
  'college'],
 ['lawrence',
  'foard',
  'new',
  'study',
  'gay',
  'percentage',
  'organization',
  'itc',
  'uva',
  'community',
  'access',
  'unix',
  'internet',
  'project',
  'lines',
  'article',
  'ryan',
  'scharfy',
  'writes',
  'article',
  'la',
  'wrence',
  'foard',
  'writes',
  'article',
  'clayton',
  'cramer',
  'writes',
  'santa',
  'rosa',
  'cal',
  'press',
  'democrat',
  'april',
  'male',
  'sex',
  'survey',
  'gay',
  'activity',
  'low',
  'new',
  'natonal',
  'study',
  'male',
  'sexual',
  'behavior',
  'thorough',
  'examination',
  'american',
  'mens',
  'sexual',
  'practices',
  'published',
  'since',
  'kinsey',
  'report',
  'four',
  'decades',
  'ago',
  'shows',
  'percent',
  'men',
  'surveyed',
  'engaged',
  'homosexual',
  'sex',
  'percent',
  'considered',
  'exclusively',
  'homosexual',
  'figures',
  'homosexuality',
  'study',
  'released',
  'wednesday',
  'alan',
  'guttmacher',
  'institute',
  'significantly',
  'lower',
  'percent',
  'figure',
  'part',
  'conventional',
  'wisdom',
  'since',
  'published',
  'kinsey',
  'report',
  'less',
  'gays',
  'gays',
  'claim',
  'last',
  'checked',
  'one',
  'person',
  'havent',
  'even',
  'elected',
  'representative',
  'gaydom',
  'ascribe',
  'every',
  'thing',
  'say',
  'representing',
  'every',
  'member',
  'straight',
  'community',
  'interesting',
  'see',
  'reaction',
  'million',
  'queers',
  'gather',
  'washington',
  'dc',
  'million',
  'us',
  'event',
  'unprecidented',
  'history',
  'dream',
  'abortion',
  'african',
  'american',
  'civil',
  'rights',
  'rallies',
  'dont',
  'even',
  'bring',
  'half',
  'thats',
  'point',
  'several',
  'million',
  'queers',
  'dc',
  'better',
  'start',
  'wondering',
  'validity',
  'study',
  'join',
  'pythagorean',
  'reform',
  'church',
  'repent',
  'evil',
  'irrational',
  'numbers',
  'bean',
  'eating',
  'ways',
  'accept',
  'heart',
  'call',
  'pythagorean',
  'reform',
  'church',
  'bbs'],
 ['steven',
  'bellovin',
  'secret',
  'algorithm',
  'clipper',
  'chip',
  'crypto',
  'key',
  'escrow',
  'organization',
  'bell',
  'laboratories',
  'keywords',
  'encryption',
  'wiretap',
  'clipper',
  'key',
  'escrow',
  'mykotronx',
  'lines',
  'article',
  'graham',
  'toal',
  'writes',
  'try',
  'reading',
  'lines',
  'david',
  'strong',
  'hints',
  'theyre',
  'angling',
  'nren',
  'next',
  'conceivable',
  'meaning',
  'applying',
  'particular',
  'technology',
  'computer',
  'network',
  'intend',
  'used',
  'exclusion',
  'means',
  'encryption',
  'umm',
  'beg',
  'differ',
  'phrase',
  'conceivable',
  'meaning',
  'sdns',
  'protocols',
  'example',
  'make',
  'explicit',
  'provision',
  'multiple',
  'encryption',
  'systems',
  'pem',
  'id',
  'love',
  'see',
  'theyd',
  'mandate',
  'new',
  'system',
  'pem',
  'without',
  'disclosing',
  'mind',
  'im',
  'saying',
  'multiple',
  'algorithms',
  'actually',
  'used',
  'relevant',
  'technologies',
  'certainly',
  'provide',
  'certainly',
  'casts',
  'doubt',
  'choice',
  'words'],
 ['date',
  'stuck',
  'organization',
  'university',
  'canterbury',
  'christchurch',
  'new',
  'zealand',
  'nntp',
  'posting',
  'host',
  'cantva',
  'canterbury',
  'ac',
  'nz',
  'lines',
  'article',
  'kevin',
  'ogorman',
  'writes',
  'anybody',
  'seen',
  'date',
  'get',
  'stuck',
  'im',
  'running',
  'ms',
  'dos',
  'menu',
  'system',
  'alive',
  'time',
  'machine',
  'left',
  'running',
  'time',
  'suddenly',
  'date',
  'longer',
  'rolls',
  'time',
  'reasonably',
  'accurate',
  'allways',
  'change',
  'date',
  'hand',
  'every',
  'morning',
  'involves',
  'exiting',
  'menu',
  'system',
  'get',
  'dos',
  'anyone',
  'slightest',
  'idea',
  'even',
  'clue',
  'whether',
  'hardware',
  'battery',
  'cmos',
  'dos',
  'broken',
  'bet',
  'suddenly',
  'started',
  'sticking',
  'started',
  'leaving',
  'pc',
  'running',
  'menu',
  'night',
  'limitation',
  'bug',
  'date',
  'roll',
  'software',
  'pcs',
  'means',
  'something',
  'like',
  'waiting',
  'keyboard',
  'input',
  'via',
  'dos',
  'call',
  'rather',
  'bios',
  'call',
  'menus',
  'often',
  'otherwise',
  'code',
  'update',
  'date',
  'midnight',
  'never',
  'gets',
  'called',
  'somebody',
  'might',
  'able',
  'correct',
  'details',
  'case',
  'ive',
  'mis',
  'rememberred',
  'think',
  'change',
  'menu',
  'program',
  'sources',
  'add',
  'tsr',
  'system',
  'patch',
  'something',
  'far',
  'know',
  'cmos',
  'clock',
  'keeps',
  'right',
  'time',
  'fact',
  'seconds',
  'day',
  'better',
  'doss',
  'clock',
  'mark',
  'aitchison',
  'university',
  'canterbury'],
 ['ed',
  'ravin',
  'electronic',
  'parts',
  'nyc',
  'organization',
  'lines',
  'taft',
  'electronics',
  'th',
  'street',
  'th',
  'th',
  'one',
  'left',
  'entire',
  'district',
  'electronics',
  'stores',
  'little',
  'expensive',
  'trans',
  'electronics',
  'canal',
  'street',
  'near',
  'th',
  'ave',
  'lots',
  'surplus',
  'type',
  'stuff',
  'several',
  'electronics',
  'surplus',
  'type',
  'places',
  'still',
  'canal',
  'street',
  'think',
  'bronx',
  'wholesale',
  'radio',
  'still',
  'business',
  'fordham',
  'road',
  'far',
  'arthur',
  'avenue',
  'bronx',
  'also',
  'bronx',
  'northeastern',
  'northwestern',
  'northeast',
  'electronics',
  'jerome',
  'avenue',
  'near',
  'bedford',
  'park',
  'boulevard',
  'theyre',
  'mostly',
  'tv',
  'parts',
  'supply',
  'house',
  'building',
  'cb',
  'radio',
  'projects',
  'quite',
  'handy',
  'ed',
  'ravin',
  'tv',
  'cop',
  'fires',
  'gun',
  'three',
  'times',
  'hour',
  'real',
  'cop',
  'prodigy',
  'services',
  'co',
  'fires',
  'gun',
  'every',
  'five',
  'years',
  'white',
  'plains',
  'ny'],
 ['pat',
  'dc',
  'way',
  'future',
  'organization',
  'express',
  'access',
  'online',
  'communications',
  'usa',
  'lines',
  'nntp',
  'posting',
  'host',
  'access',
  'digex',
  'net',
  'article',
  'james',
  'davis',
  'nicoll',
  'writes',
  'hmmm',
  'seem',
  'recall',
  'attraction',
  'solid',
  'state',
  'record',
  'players',
  'radios',
  'wasnt',
  'better',
  'performance',
  'lower',
  'per',
  'unit',
  'cost',
  'vacuum',
  'tube',
  'systems',
  'dont',
  'think',
  'first',
  'solid',
  'state',
  'offered',
  'better',
  'reliabity',
  'id',
  'bet',
  'lower',
  'costs',
  'would',
  'processes',
  'really',
  'scaled',
  'pat'],
 ['jay',
  'rogoff',
  'best',
  'homeruns',
  'distribution',
  'rec',
  'organization',
  'skidmore',
  'college',
  'saratoga',
  'springs',
  'ny',
  'lines',
  'two',
  'separate',
  'occasions',
  'saw',
  'dick',
  'allen',
  'back',
  'richie',
  'homer',
  'shea',
  'middle',
  'black',
  'centerfield',
  'hitters',
  'background',
  'screen',
  'think',
  'shots',
  'would',
  'traveled',
  'feet',
  'jay'],
 ['christopher',
  'mussack',
  'tuff',
  'christian',
  'organization',
  'ibm',
  'austin',
  'lines',
  'please',
  'realize',
  'frequently',
  'getting',
  'trouble',
  'straying',
  'orthodoxy',
  'opinion',
  'article',
  'name',
  'writes',
  'moreover',
  'buddha',
  'says',
  'intrinsically',
  'good',
  'christs',
  'sinners',
  'never',
  'thought',
  'two',
  'ideas',
  'people',
  'might',
  'quibble',
  'intrinsically',
  'means',
  'reason',
  'sinners',
  'behave',
  'good',
  'message',
  'christ',
  'us',
  'good',
  'great',
  'approach',
  'perfection',
  'albeit',
  'perhaps',
  'different',
  'technique',
  'claim',
  'buddhism',
  'teaches',
  'realize',
  'greatness',
  'sin',
  'peter',
  'problem',
  'walking',
  'water',
  'little',
  'doubt',
  'crept',
  'doesnt',
  'david',
  'ask',
  'th',
  'psalm',
  'man',
  'god',
  'care',
  'made',
  'little',
  'lower',
  'angels',
  'probably',
  'exagerate',
  'mind',
  'scrawny',
  'little',
  'kid',
  'david',
  'probably',
  'exagerate',
  'gigantic',
  'monster',
  'goliath',
  'davids',
  'power',
  'easily',
  'defeated',
  'goliaths',
  'remember',
  'rich',
  'young',
  'man',
  'comes',
  'jesus',
  'asks',
  'enter',
  'kingdom',
  'jesus',
  'says',
  'follow',
  'commandments',
  'always',
  'picture',
  'smug',
  'look',
  'face',
  'says',
  'hes',
  'done',
  'whole',
  'life',
  'probably',
  'anticipating',
  'attaboy',
  'messiah',
  'instead',
  'jesus',
  'gives',
  'harder',
  'task',
  'sell',
  'everything',
  'follow',
  'jesus',
  'raising',
  'bar',
  'desciples',
  'say',
  'anyone',
  'hard',
  'even',
  'rich',
  'people',
  'jesus',
  'says',
  'anyone',
  'gods',
  'help',
  'jesus',
  'says',
  'avoid',
  'killing',
  'people',
  'avoid',
  'getting',
  'angry',
  'people',
  'avoid',
  'committing',
  'adultery',
  'control',
  'desires',
  'realize',
  'main',
  'point',
  'wonder',
  'people',
  'see',
  'parting',
  'question',
  'would',
  'become',
  'christian',
  'indoctrinated',
  'parents',
  'probably',
  'never',
  'learned',
  'religion',
  'make',
  'comparative',
  'study',
  'therefore',
  'claim',
  'brain',
  'washed',
  'please',
  'forgive',
  'generalizations',
  'make',
  'point',
  'hard',
  'religions',
  'good',
  'one',
  'parting',
  'question',
  'tough',
  'question',
  'think',
  'muslims',
  'worship',
  'god',
  'learn',
  'name',
  'submission',
  'hindus',
  'buddhists',
  'taoists',
  'etc',
  'claim',
  'god',
  'impersonal',
  'god',
  'personal',
  'impersonal',
  'say',
  'yes',
  'think',
  'little',
  'answer',
  'whichever',
  'greater',
  'think',
  'greater',
  'personal',
  'entity',
  'individual',
  'consciousness',
  'youre',
  'right',
  'might',
  'cultural',
  'bias',
  'think',
  'must',
  'admit',
  'gods',
  'personal',
  'nature',
  'far',
  'beyond',
  'conception',
  'impersonal',
  'nature',
  'beyond',
  'hindus',
  'conception',
  'somehow',
  'jesus',
  'could',
  'fit',
  'hindu',
  'cosmology',
  'maybe',
  'wouldnt',
  'problem',
  'though',
  'hard',
  'imagine',
  'former',
  'present',
  'eastern',
  'religion',
  'members',
  'could',
  'comment',
  'chris',
  'mussack'],
 ['bill',
  'mayhew',
  'dmm',
  'advice',
  'needed',
  'organization',
  'northeastern',
  'ohio',
  'universities',
  'college',
  'medicine',
  'lines',
  'ive',
  'fluke',
  'work',
  'years',
  'wonderful',
  'meter',
  'several',
  'colleagues',
  'newer',
  'fluke',
  'meters',
  'though',
  'still',
  'would',
  'soon',
  'hang',
  'digial',
  'analog',
  'simpson',
  'analog',
  'dmm',
  'extended',
  'frequency',
  'response',
  'ive',
  'got',
  'nifty',
  'little',
  'pen',
  'shaped',
  'meter',
  'made',
  'soar',
  'keep',
  'toolbox',
  'home',
  'ive',
  'six',
  'seven',
  'years',
  'replaced',
  'batteries',
  'couple',
  'timees',
  'adequate',
  'day',
  'day',
  'hobby',
  'think',
  'soar',
  'oems',
  'stuff',
  'number',
  'vendors',
  'jdr',
  'microdevices',
  'stuff',
  'looks',
  'rather',
  'similar',
  'soars',
  'bill',
  'mayhew',
  'neoucom',
  'computer',
  'services',
  'department',
  'rootstown',
  'oh',
  'usa',
  'phone',
  'wed'],
 ['cook',
  'charlie',
  'nhl',
  'summary',
  'parse',
  'results',
  'games',
  'played',
  'thur',
  'april',
  'organization',
  'university',
  'new',
  'brunswick',
  'lines',
  'philadelphia',
  'buffalo',
  'first',
  'period',
  'philadelphia',
  'recchi',
  'galley',
  'lindros',
  'second',
  'period',
  'philadelphia',
  'hawgood',
  'dineen',
  'eklund',
  'pp',
  'philadelphia',
  'dineen',
  'mcgill',
  'sh',
  'buffalo',
  'barnaby',
  'hawerchuk',
  'smehlik',
  'pp',
  'buffalo',
  'wood',
  'lafontaine',
  'ledyard',
  'pp',
  'buffalo',
  'mogilny',
  'hawerchuk',
  'carney',
  'pp',
  'third',
  'period',
  'philadelphia',
  'eklund',
  'dineen',
  'beranek',
  'buffalo',
  'mogilny',
  'errey',
  'lafontaine',
  'philadelphia',
  'dineen',
  'brindamour',
  'pp',
  'philadelphia',
  'dineen',
  'brindamour',
  'galley',
  'sh',
  'philadelphia',
  'acton',
  'dineen',
  'brindamour',
  'philadelphia',
  'power',
  'play',
  'special',
  'goals',
  'pp',
  'sh',
  'total',
  'scorer',
  'pts',
  'acton',
  'beranek',
  'brindamour',
  'dineen',
  'eklund',
  'galley',
  'hawgood',
  'lindros',
  'mcgill',
  'recchi',
  'buffalo',
  'power',
  'play',
  'scorer',
  'pts',
  'barnaby',
  'carney',
  'errey',
  'hawerchuk',
  'lafontaine',
  'ledyard',
  'mogilny',
  'smehlik',
  'wood',
  'minnesota',
  'detroit',
  'first',
  'period',
  'minnesota',
  'mcphee',
  'ludwig',
  'second',
  'period',
  'minnesota',
  'dahlen',
  'courtnall',
  'gagner',
  'pp',
  'detroit',
  'drake',
  'howe',
  'ogrodnick',
  'detroit',
  'ysebaert',
  'lidstrom',
  'howe',
  'pp',
  'third',
  'period',
  'detroit',
  'ciccarelli',
  'coffey',
  'chiasson',
  'pp',
  'detroit',
  'kennedy',
  'burr',
  'probert',
  'detroit',
  'yzerman',
  'ciccarelli',
  'gallant',
  'minnesota',
  'dahlen',
  'courtnall',
  'gagner',
  'detroit',
  'power',
  'play',
  'scorer',
  'pts',
  'burr',
  'chiasson',
  'ciccarelli',
  'coffey',
  'drake',
  'gallant',
  'howe',
  'kennedy',
  'lidstrom',
  'ogrodnick',
  'probert',
  'ysebaert',
  'yzerman',
  'minnesota',
  'power',
  'play',
  'scorer',
  'pts',
  'courtnall',
  'dahlen',
  'gagner',
  'ludwig',
  'mcphee',
  'edmonton',
  'winnipeg',
  'first',
  'period',
  'winnipeg',
  'shannon',
  'steen',
  'davydov',
  'pp',
  'second',
  'period',
  'winnipeg',
  'selanne',
  'olausson',
  'winnipeg',
  'zhamnov',
  'selanne',
  'third',
  'period',
  'scoring',
  'winnipeg',
  'power',
  'play',
  'scorer',
  'pts',
  'davydov',
  'olausson',
  'selanne',
  'shannon',
  'steen',
  'zhamnov',
  'edmonton',
  'power',
  'play',
  'scoring',
  'toronto',
  'chicago',
  'first',
  'period',
  'toronto',
  'baumgartner',
  'unassisted',
  'second',
  'period',
  'chicago',
  'roenick',
  'murphy',
  'chelios',
  'toronto',
  'andreychuk',
  'mironov',
  'lefebvre',
  'chicago',
  'murphy',
  'roenick',
  'chelios',
  'pp',
  'third',
  'period',
  'chicago',
  'matteau',
  'unassisted',
  'error',
  'power',
  'play',
  'goal',
  'mismatch',
  'assuming',
  'calc',
  'value',
  'error',
  'team',
  'toronto',
  'calc',
  'read',
  'chicago',
  'power',
  'play',
  'scorer',
  'pts',
  'chelios',
  'matteau',
  'murphy',
  'roenick',
  'toronto',
  'power',
  'play',
  'scorer',
  'pts',
  'andreychuk',
  'baumgartner',
  'lefebvre',
  'mironov',
  'first',
  'period',
  'st',
  'louis',
  'shanahan',
  'brown',
  'felsner',
  'st',
  'louis',
  'miller',
  'bassen',
  'brown',
  'st',
  'louis',
  'bassen',
  'zombo',
  'second',
  'period',
  'st',
  'louis',
  'bassen',
  'hedican',
  'miller',
  'st',
  'louis',
  'miller',
  'zombo',
  'hedican',
  'tampa',
  'bay',
  'maltais',
  'hamrlik',
  'tampa',
  'bay',
  'bergland',
  'hervey',
  'gilhen',
  'st',
  'louis',
  'shanahan',
  'emerson',
  'third',
  'period',
  'tampa',
  'bay',
  'creighton',
  'bergland',
  'bergevin',
  'tampa',
  'bay',
  'chambers',
  'zamuner',
  'cole',
  'tampa',
  'bay',
  'cole',
  'beers',
  'bradley',
  'st',
  'louis',
  'power',
  'play',
  'scorer',
  'pts',
  'bassen',
  'brown',
  'emerson',
  'felsner',
  'hedican',
  'miller',
  'shanahan',
  'zombo',
  'tampa',
  'bay',
  'power',
  'play',
  'scorer',
  'pts',
  'beers',
  'bergevin',
  'bergland',
  'bradley',
  'chambers',
  'cole',
  'creighton',
  'gilhen',
  'hamrlik',
  'hervey',
  'maltais',
  'zamuner',
  'san',
  'jose',
  'calgary',
  'first',
  'period',
  'scoring',
  'second',
  'period',
  'san',
  'jose',
  'garpenlov',
  'odgers',
  'gaudreau',
  'pp',
  'calgary',
  'nieuwendyk',
  'macinnis',
  'suter',
  'pp',
  'calgary',
  'ranheim',
  'otto',
  'suter',
  'calgary',
  'yawney',
  'nieuwendyk',
  'roberts',
  'calgary',
  'berube',
  'paslawski',
  'skrudland',
  'third',
  'period',
  'san',
  'jose',
  'wood',
  'odgers',
  'kisio',
  'calgary',
  'reichel',
  'unassisted',
  'calgary',
  'roberts',
  'musil',
  'paslawski',
  'pp',
  'san',
  'jose',
  'kisio',
  'unassisted',
  'calgary',
  'paslawski',
  'ashton',
  'stern',
  'calgary',
  'power',
  'play',
  'scorer',
  'pts',
  'ashton',
  'berube',
  'macinnis',
  'musil',
  'nieuwendyk',
  'otto',
  'paslawski',
  'ranheim',
  'reichel',
  'roberts',
  'skrudland',
  'stern',
  'suter',
  'yawney',
  'san',
  'jose',
  'power',
  'play',
  'scorer',
  'pts',
  'garpenlov',
  'gaudreau',
  'kisio',
  'odgers',
  'wood',
  'vancouver',
  'los',
  'angeles',
  'first',
  'period',
  'los',
  'angeles',
  'robitaille',
  'gretzky',
  'sandstrom',
  'vancouver',
  'babych',
  'craven',
  'nedved',
  'pp',
  'los',
  'angeles',
  'sandstrom',
  'gretzky',
  'robitaille',
  'second',
  'period',
  'vancouver',
  'linden',
  'ronning',
  'courtnall',
  'pp',
  'vancouver',
  'ward',
  'hunter',
  'nedved',
  'los',
  'angeles',
  'gretzky',
  'sandstrom',
  'robitaille',
  'los',
  'angeles',
  'zhitnik',
  'kurri',
  'robitaille',
  'pp',
  'los',
  'angeles',
  'millen',
  'hardy',
  'pp',
  'third',
  'period',
  'vancouver',
  'ronning',
  'dirk',
  'vancouver',
  'ronning',
  'courtnall',
  'linden',
  'pp',
  'vancouver',
  'linden',
  'courtnall',
  'ronning',
  'los',
  'angeles',
  'donnelly',
  'millen',
  'granato',
  'pp',
  'vancouver',
  'courtnall',
  'ronning',
  'ratushny',
  'vancouver',
  'ronning',
  'linden',
  'diduck',
  'en',
  'vancouver',
  'power',
  'play',
  'special',
  'goals',
  'pp',
  'en',
  'total',
  'scorer',
  'pts',
  'babych',
  'courtnall',
  'craven',
  'diduck',
  'dirk',
  'hunter',
  'linden',
  'nedved',
  'ratushny',
  'ronning',
  'ward',
  'los',
  'angeles',
  'power',
  'play',
  'scorer',
  'pts',
  'donnelly',
  'granato',
  'gretzky',
  'hardy',
  'kurri',
  'millen',
  'robitaille',
  'sandstrom',
  'zhitnik'],
 ['steve',
  'manes',
  'gun',
  'control',
  'mad',
  'hell',
  'tv',
  'news',
  'organization',
  'manes',
  'associates',
  'nyc',
  'distribution',
  'na',
  'newsreader',
  'tin',
  'version',
  'pl',
  'lines',
  'jim',
  'de',
  'arras',
  'wrote',
  'article',
  'steve',
  'manes',
  'writes',
  'dont',
  'know',
  'anyone',
  'state',
  'gun',
  'control',
  'could',
  'effect',
  'homicide',
  'rates',
  'accidental',
  'handgun',
  'homicides',
  'america',
  'licensed',
  'weapons',
  'american',
  'children',
  'accidentally',
  'shot',
  'children',
  'last',
  'year',
  'handgun',
  'homicides',
  'great',
  'britain',
  'source',
  'national',
  'safety',
  'council',
  'please',
  'dictionary',
  'arguments',
  'rates',
  'vs',
  'total',
  'numbers',
  'okay',
  'theyre',
  'offered',
  'emphasis',
  'comparison',
  'youre',
  'great',
  'debater',
  'chose',
  'sources',
  'information',
  'claim',
  'superior',
  'ive',
  'made',
  'claim',
  'please',
  'direct',
  'attention',
  'towards',
  'posting',
  'mine',
  'claimed',
  'superior',
  'sources',
  'information',
  'probably',
  'bothered',
  'post',
  'references',
  'others',
  'seem',
  'content',
  'post',
  'numbers',
  'pulled',
  'ozone',
  'youve',
  'confused',
  'fact',
  'twisting',
  'apologize',
  'take',
  'twisted',
  'numbers',
  'twist',
  'trying',
  'well',
  'heres',
  'fair',
  'opportunity',
  'prove',
  'ive',
  'twisted',
  'numbers',
  'grounds',
  'contradict',
  'references',
  'citations',
  'sources',
  'take',
  'similar',
  'gratuitous',
  'shots',
  'compare',
  'absolute',
  'numbers',
  'two',
  'countries',
  'major',
  'population',
  'differences',
  'usa',
  'gb',
  'whine',
  'afraid',
  'someone',
  'might',
  'attack',
  'process',
  'claim',
  'numbers',
  'emphasis',
  'comparison',
  'emphasis',
  'nitpicking',
  'scolding',
  'whiney',
  'debating',
  'style',
  'jim',
  'anything',
  'else',
  'blowing',
  'smoke',
  'seddit',
  'brudda',
  'stephen',
  'manes',
  'manes',
  'associates',
  'new',
  'york',
  'ny',
  'usa'],
 ['jonathan',
  'king',
  'move',
  'wont',
  'see',
  'redflops',
  'wont',
  'win',
  'organization',
  'university',
  'california',
  'san',
  'diego',
  'lines',
  'nntp',
  'posting',
  'host',
  'cogsci',
  'ucsd',
  'summary',
  'would',
  'tragic',
  'ted',
  'simmons',
  'pick',
  'mo',
  'vaughn',
  'steve',
  'twombly',
  'writes',
  'mo',
  'vaughn',
  'hit',
  'spring',
  'mo',
  'vaughn',
  'hit',
  'season',
  'excellent',
  'point',
  'hope',
  'god',
  'ted',
  'simmons',
  'doesnt',
  'get',
  'weird',
  'idea',
  'trading',
  'guy',
  'better',
  'include',
  'jeff',
  'king',
  'deal',
  'oh',
  'god',
  'traded',
  'zane',
  'smith',
  'jeff',
  'king',
  'vaughn',
  'greg',
  'blosser',
  'would',
  'worse',
  'nichols',
  'curse',
  'hmm',
  'guess',
  'doesnt',
  'sound',
  'sincere',
  'enough',
  'oh',
  'well',
  'least',
  'tried',
  'jking'],
 ['aaron',
  'herskowitz',
  'sale',
  'borland',
  'application',
  'frameworks',
  'reply',
  'organization',
  'allegheny',
  'college',
  'please',
  'excuse',
  'inappropriate',
  'post',
  'read',
  'groups',
  'normally',
  'see',
  'pc',
  'related',
  'marketplace',
  'newsgroups',
  'sale',
  'borland',
  'application',
  'frameworks',
  'full',
  'professional',
  'developer',
  'kit',
  'borland',
  'programming',
  'package',
  'including',
  'unopened',
  'software',
  'unopened',
  'manuals',
  'registration',
  'card',
  'software',
  'includes',
  'still',
  'plastic',
  'wrapped',
  'high',
  'density',
  'inch',
  'disks',
  'borland',
  'total',
  'diskettes',
  'individually',
  'wrapped',
  'packages',
  'disk',
  'borland',
  'bc',
  'app',
  'frameworks',
  'label',
  'amish',
  'system',
  'utilities',
  'windows',
  'one',
  'high',
  'density',
  'disk',
  'amish',
  'launch',
  'amish',
  'desk',
  'utilities',
  'windows',
  'phar',
  'laps',
  'dos',
  'extender',
  'lite',
  'version',
  'one',
  'hd',
  'disk',
  'manuals',
  'include',
  'still',
  'plastic',
  'wrapped',
  'manuals',
  'include',
  'unopened',
  'boland',
  'windows',
  'api',
  'volumes',
  'reference',
  'guide',
  'ii',
  'reference',
  'guide',
  'iii',
  'windows',
  'reference',
  'guide',
  'borland',
  'turbo',
  'debugger',
  'users',
  'guide',
  'borland',
  'turbo',
  'profiler',
  'users',
  'guide',
  'borland',
  'turbo',
  'assembler',
  'users',
  'guide',
  'borland',
  'users',
  'guide',
  'integrated',
  'environment',
  'optimization',
  'command',
  'line',
  'compiler',
  'installation',
  'borland',
  'programmers',
  'guide',
  'language',
  'structure',
  'class',
  'libraries',
  'advanced',
  'prgramming',
  'techniques',
  'anci',
  'implementaion',
  'borland',
  'library',
  'reference',
  'runtime',
  'library',
  'global',
  'variables',
  'cross',
  'reference',
  'borland',
  'tools',
  'utilities',
  'guide',
  'error',
  'messages',
  'winsightm',
  'make',
  'help',
  'resource',
  'compilers',
  'tlink',
  'borland',
  'object',
  'windows',
  'users',
  'guide',
  'tutorials',
  'class',
  'reference',
  'opened',
  'plastic',
  'wrapping',
  'unread',
  'manuals',
  'include',
  'borland',
  'turbo',
  'assembler',
  'quick',
  'reference',
  'guide',
  'borland',
  'turbo',
  'vision',
  'users',
  'guide',
  'borland',
  'resource',
  'workshop',
  'users',
  'guide',
  'package',
  'purchased',
  'former',
  'employee',
  'fathers',
  'father',
  'asked',
  'try',
  'sell',
  'since',
  'neither',
  'us',
  'retails',
  'software',
  'houses',
  'approx',
  'asking',
  'interested',
  'please',
  'mail',
  'directly',
  'normally',
  'read',
  'newsgroup',
  'aaron',
  'herskowitz',
  'allegheny',
  'college',
  'meadville',
  'pennsylvania'],
 ['tricia',
  'porth',
  'remote',
  'sensing',
  'data',
  'added',
  'forwarded',
  'space',
  'digest',
  'mmdf',
  'warning',
  'parse',
  'error',
  'original',
  'version',
  'preceding',
  'line',
  'vacation',
  'venari',
  'cs',
  'cmu',
  'organization',
  'via',
  'international',
  'space',
  'university',
  'original',
  'sender',
  'distribution',
  'sci',
  'lines',
  'posting',
  'someone',
  'else',
  'please',
  'respond',
  'address',
  'listed',
  'please',
  'also',
  'excuse',
  'duplication',
  'message',
  'crossposted',
  'thanks',
  'request',
  'ideas',
  'applications',
  'remote',
  'sensing',
  'databases',
  'via',
  'internet',
  'nasa',
  'planning',
  'expand',
  'domain',
  'users',
  'earth',
  'space',
  'science',
  'data',
  'effort',
  'evolving',
  'infrastructure',
  'global',
  'change',
  'research',
  'program',
  'including',
  'mission',
  'planet',
  'earth',
  'mtpe',
  'earth',
  'observing',
  'system',
  'data',
  'information',
  'system',
  'eosdis',
  'programs',
  'internet',
  'particularly',
  'high',
  'performance',
  'computing',
  'communications',
  'programs',
  'nren',
  'national',
  'research',
  'education',
  'network',
  'means',
  'providing',
  'access',
  'distribution',
  'science',
  'data',
  'images',
  'value',
  'added',
  'products',
  'provide',
  'broad',
  'access',
  'utilization',
  'remotely',
  'sensed',
  'images',
  'cooperation',
  'agencies',
  'especially',
  'noaa',
  'epa',
  'doe',
  'ded',
  'doi',
  'usgs',
  'usda',
  'support',
  'remote',
  'sensing',
  'image',
  'data',
  'users',
  'development',
  'communities',
  'user',
  'development',
  'communities',
  'included',
  'limited',
  'part',
  'effort',
  'educators',
  'commercial',
  'application',
  'developers',
  'television',
  'weather',
  'forecasters',
  'librarians',
  'publishers',
  'agriculture',
  'specialists',
  'transportation',
  'forestry',
  'state',
  'local',
  'government',
  'planners',
  'aqua',
  'business',
  'program',
  'initiated',
  'assistance',
  'requested',
  'identify',
  'potential',
  'applications',
  'remote',
  'sensing',
  'images',
  'data',
  'would',
  'like',
  'ideas',
  'potential',
  'application',
  'areas',
  'assist',
  'development',
  'implementation',
  'plan',
  'please',
  'note',
  'request',
  'proposals',
  'seeking',
  'ideas',
  'areas',
  'potential',
  'commercial',
  'remote',
  'sensing',
  'data',
  'images',
  'potential',
  'noncommercial',
  'remote',
  'sensing',
  'data',
  'images',
  'education',
  'especially',
  'levels',
  'noncommercial',
  'areas',
  'types',
  'line',
  'capabilities',
  'protocols',
  'make',
  'data',
  'accessible',
  'additional',
  'points',
  'contacts',
  'ideas',
  'addresses',
  'names',
  'request',
  'proposals',
  'convenience',
  'standard',
  'format',
  'responses',
  'included',
  'feel',
  'free',
  'amend',
  'necessary',
  'either',
  'mail',
  'fax',
  'responses',
  'us',
  'may',
  'mail',
  'internet',
  'ascii',
  'binary',
  'attachments',
  'please',
  'fax',
  'ernie',
  'lucier',
  'rsdwg',
  'nasa',
  'hq',
  'fax',
  'survey',
  'responses',
  'following',
  'formats',
  'may',
  'also',
  'placed',
  'ftp',
  'directory',
  'ftp',
  'pub',
  'rsdwg',
  'orion',
  'nasa',
  'gov',
  'please',
  'indicate',
  'format',
  'acceptable',
  'formats',
  'word',
  'windows',
  'macintosh',
  'word',
  'rtf',
  'response',
  'format',
  'request',
  'ideas',
  'applications',
  'remote',
  'sensing',
  'databases',
  'via',
  'internet',
  'potential',
  'commercial',
  'remote',
  'sensing',
  'data',
  'images',
  'possible',
  'identify',
  'relevant',
  'types',
  'data',
  'science',
  'products',
  'user',
  'tools',
  'standards',
  'uses',
  'remote',
  'sensing',
  'data',
  'images',
  'education',
  'especially',
  'levels',
  'noncommercial',
  'areas',
  'possible',
  'identify',
  'relevant',
  'types',
  'data',
  'science',
  'products',
  'user',
  'tools',
  'standards',
  'types',
  'line',
  'capabilities',
  'protocols',
  'make',
  'data',
  'images',
  'accessible',
  'possible',
  'identify',
  'relevant',
  'types',
  'formats',
  'standards',
  'user',
  'tools',
  'additional',
  'suggested',
  'persons',
  'organizations',
  'may',
  'resources',
  'ideas',
  'applications',
  'areas',
  'please',
  'include',
  'name',
  'organization',
  'address',
  'telephone',
  'number',
  'organizations',
  'mailing',
  'lists',
  'electronic',
  'paper',
  'periodicals',
  'etc',
  'solicitation',
  'proposals',
  'sent',
  'developed',
  'please',
  'include',
  'name',
  'organization',
  'address',
  'telephone',
  'number',
  'would',
  'benefit',
  'knowing',
  'users',
  'know',
  'nasa',
  'remote',
  'sensing',
  'data',
  'data',
  'ties',
  'nasa',
  'investigators',
  'high',
  'cost',
  'lack',
  'accessibility',
  'incompatible',
  'data',
  'formats',
  'poor',
  'area',
  'interest',
  'coverage',
  'inadequate',
  'spatial',
  'spectral',
  'resolution',
  'case',
  'questions',
  'please',
  'send',
  'us',
  'name',
  'address',
  'phone',
  'number',
  'mail',
  'address',
  'one',
  'dont',
  'wish',
  'send',
  'us',
  'information',
  'feel',
  'free',
  'respond',
  'survey',
  'anonymously',
  'thank',
  'assistance'],
 ['kelly',
  'grant',
  'strange',
  'enhanced',
  'behavior',
  'keywords',
  'enhanced',
  'paradox',
  'organization',
  'computer',
  'sciences',
  'corporation',
  'lines',
  'howdy',
  'real',
  'problem',
  'ast',
  'sx',
  'machine',
  'mb',
  'ram',
  'installed',
  'paradox',
  'windows',
  'dont',
  'think',
  'paradox',
  'real',
  'problem',
  'installation',
  'went',
  'ok',
  'windows',
  'installed',
  'local',
  'drive',
  'paradox',
  'installed',
  'novell',
  'network',
  'netware',
  'greater',
  'dos',
  'win',
  'program',
  'load',
  'enchanted',
  'mode',
  'thermometer',
  'bar',
  'goes',
  'either',
  'get',
  'invalid',
  'command',
  'com',
  'windows',
  'nastygram',
  'talking',
  'illegal',
  'instruction',
  'ive',
  'checked',
  'command',
  'com',
  'thing',
  'long',
  'time',
  'programmer',
  'ive',
  'crashed',
  'share',
  'machines',
  'pointer',
  'problems',
  'standard',
  'behavior',
  'anyway',
  'paradox',
  'run',
  'standard',
  'mode',
  'enhanced',
  'also',
  'quattro',
  'pro',
  'windows',
  'exhibiting',
  'behavior',
  'spent',
  'hours',
  'borlands',
  'tech',
  'people',
  'avail',
  'guy',
  'talked',
  'microsoft',
  'didnt',
  'want',
  'really',
  'dig',
  'help',
  'gave',
  'pretty',
  'quickly',
  'somewhat',
  'disappointing',
  'really',
  'expected',
  'microsoft',
  'youd',
  'think',
  'millions',
  'windows',
  'installations',
  'would',
  'seen',
  'possible',
  'problems',
  'guess',
  'microsoft',
  'sent',
  'us',
  'page',
  'fax',
  'fixing',
  'uae',
  'general',
  'protection',
  'faults',
  'sorry',
  'cant',
  'fax',
  'anything',
  'please',
  'dont',
  'ask',
  'try',
  'microsoft',
  'tried',
  'everything',
  'said',
  'still',
  'luck',
  'help',
  'please',
  'mail',
  'problem',
  'driving',
  'us',
  'nuts',
  'greatly',
  'appreciate',
  'information',
  'anyone',
  'pass',
  'thanks',
  'kelly',
  'real',
  'signature',
  'please',
  'ignore',
  'following',
  'demon',
  'signature',
  'kelly',
  'grant',
  'hancock',
  'st',
  'next',
  'time',
  'someone',
  'asks',
  'san',
  'diego',
  'ca',
  'god',
  'say',
  'yes',
  'kelly',
  'grant',
  'computer',
  'sciences',
  'corp',
  'important',
  'manta',
  'uucp',
  'wont',
  'get',
  'hancock',
  'street',
  'given',
  'lemons',
  'see',
  'trade',
  'san',
  'diego',
  'ca',
  'chocolate'],
 ['perry',
  'metzger',
  'text',
  'white',
  'house',
  'announcement',
  'clipper',
  'chip',
  'encryption',
  'organization',
  'partnership',
  'america',
  'free',
  'drug',
  'distribution',
  'na',
  'lines',
  'robert',
  'ward',
  'writes',
  'article',
  'writes',
  'since',
  'us',
  'constitutions',
  'guarantees',
  'right',
  'every',
  'american',
  'bear',
  'arms',
  'every',
  'american',
  'entitled',
  'matter',
  'read',
  'applicable',
  'part',
  'constitution',
  'interpreted',
  'context',
  'please',
  'posting',
  'refers',
  'right',
  'people',
  'organize',
  'militia',
  'individuals',
  'carry',
  'handguns',
  'grenades',
  'assault',
  'rifles',
  'supreme',
  'court',
  'seems',
  'disagree',
  'stated',
  'people',
  'term',
  'art',
  'refering',
  'individual',
  'right',
  'explicitly',
  'mentioned',
  'second',
  'amendment',
  'example',
  'quote',
  'people',
  'seems',
  'term',
  'art',
  'employed',
  'select',
  'parts',
  'constitution',
  'preamble',
  'declares',
  'constitution',
  'ordained',
  'established',
  'people',
  'second',
  'amendment',
  'protects',
  'right',
  'people',
  'keep',
  'bear',
  'arms',
  'supreme',
  'court',
  'uerdugo',
  'uriquidez',
  'furthermore',
  'miller',
  'decision',
  'permitted',
  'prosecution',
  'possession',
  'sawed',
  'shotgun',
  'defense',
  'presented',
  'testimony',
  'therefore',
  'accepted',
  'argument',
  'government',
  'weapons',
  'military',
  'value',
  'held',
  'amendment',
  'protected',
  'individual',
  'right',
  'possess',
  'military',
  'weapons',
  'unfortunately',
  'second',
  'amendment',
  'case',
  'successfully',
  'gotten',
  'court',
  'fifty',
  'years',
  'however',
  'change',
  'interpretation',
  'furthermore',
  'appears',
  'others',
  'disagree',
  'well',
  'vis',
  'conclusion',
  'thus',
  'inescapable',
  'history',
  'concept',
  'wording',
  'second',
  'amendment',
  'constitution',
  'united',
  'states',
  'well',
  'interpretation',
  'every',
  'major',
  'commentator',
  'court',
  'first',
  'half',
  'century',
  'ratifi',
  'cation',
  'indicates',
  'protected',
  'individual',
  'right',
  'private',
  'citizen',
  'carry',
  'firearms',
  'peaceful',
  'manner',
  'report',
  'subcommittee',
  'constitution',
  'committee',
  'judiciary',
  'united',
  'states',
  'senate',
  'th',
  'congress',
  'second',
  'session',
  'february',
  'might',
  'rightfully',
  'ask',
  'well',
  'first',
  'bit',
  'militias',
  'mean',
  'well',
  'militia',
  'historical',
  'context',
  'basically',
  'means',
  'whole',
  'adult',
  'males',
  'country',
  'indeed',
  'code',
  'still',
  'defines',
  'militia',
  'armed',
  'men',
  'age',
  'militia',
  'comprised',
  'males',
  'physically',
  'capable',
  'acting',
  'concert',
  'common',
  'defense',
  'men',
  'expected',
  'appear',
  'bearing',
  'arms',
  'supplied',
  'kind',
  'common',
  'time',
  'supreme',
  'court',
  'united',
  'states',
  'miller',
  'reason',
  'phrase',
  'explain',
  'rationale',
  'behind',
  'amendment',
  'depending',
  'people',
  'bear',
  'arms',
  'defense',
  'country',
  'centralization',
  'military',
  'power',
  'could',
  'ever',
  'occur',
  'would',
  'permit',
  'tyranny',
  'short',
  'government',
  'would',
  'remain',
  'perpetually',
  'fear',
  'people',
  'rather',
  'way',
  'around',
  'free',
  'man',
  'shall',
  'ever',
  'debarred',
  'arms',
  'strongest',
  'reason',
  'people',
  'retain',
  'right',
  'keep',
  'bear',
  'arms',
  'last',
  'resort',
  'protect',
  'tyranny',
  'government',
  'thomas',
  'jefferson',
  'proposal',
  'virginia',
  'constitution',
  'june',
  'thomas',
  'jefferson',
  'papers',
  'boyd',
  'ed',
  'country',
  'preserve',
  'liberties',
  'rulers',
  'warned',
  'time',
  'time',
  'people',
  'preserve',
  'spirit',
  'resistance',
  'let',
  'take',
  'arms',
  'tree',
  'liberty',
  'must',
  'refreshed',
  'time',
  'time',
  'blood',
  'patriots',
  'tyrants',
  'thomas',
  'jefferson',
  'letter',
  'william',
  'smith',
  'jefferson',
  'democracy',
  'padover',
  'ed',
  'standing',
  'army',
  'rule',
  'people',
  'must',
  'disarmed',
  'almost',
  'every',
  'kingdom',
  'europe',
  'supreme',
  'power',
  'america',
  'cannot',
  'enforce',
  'unjust',
  'laws',
  'sword',
  'whole',
  'body',
  'people',
  'armed',
  'constitute',
  'force',
  'superior',
  'bands',
  'regular',
  'troops',
  'pretense',
  'raised',
  'united',
  'states',
  'noah',
  'webster',
  'examination',
  'leading',
  'principles',
  'federal',
  'constitution',
  'pamphlets',
  'constitution',
  'united',
  'states',
  'ford',
  'may',
  'disagree',
  'second',
  'amendment',
  'wish',
  'repealed',
  'please',
  'pretend',
  'isnt',
  'doesnt',
  'mean',
  'says',
  'might',
  'argue',
  'conditions',
  'changed',
  'longer',
  'present',
  'cant',
  'imagine',
  'away',
  'could',
  'fill',
  'book',
  'detailed',
  'argumentation',
  'many',
  'already',
  'however',
  'none',
  'anything',
  'cryptography',
  'lets',
  'get',
  'insist',
  'discussing',
  'please',
  'talk',
  'politics',
  'guns',
  'people',
  'gladly',
  'discuss',
  'matter',
  'perry',
  'metzger',
  'laissez',
  'faire',
  'laissez',
  'passer',
  'le',
  'monde',
  'va',
  'de',
  'lui',
  'meme'],
 ['david',
  'nye',
  'need',
  'advice',
  'doctor',
  'patient',
  'relationship',
  'problem',
  'article',
  'cnsvax',
  'apr',
  'organization',
  'university',
  'wisconsin',
  'eau',
  'claire',
  'lines',
  'reply',
  'michael',
  'covington',
  'sounds',
  'though',
  'hearts',
  'right',
  'place',
  'adept',
  'expressing',
  'received',
  'profound',
  'apology',
  'apologies',
  'delivered',
  'overworked',
  'shy',
  'people',
  'often',
  'come',
  'like',
  'guy',
  'didnt',
  'sound',
  'shy',
  'sounded',
  'like',
  'jerk',
  'say',
  'ditch',
  'someone',
  'knowledgeable',
  'empathetic',
  'david',
  'nye',
  'midelfort',
  'clinic',
  'eau',
  'claire',
  'wi',
  'patently',
  'absurd',
  'whoever',
  'wishes',
  'become',
  'philosopher',
  'must',
  'learn',
  'frightened',
  'absurdities',
  'bertrand',
  'russell'],
 ['mark',
  'spiegel',
  'bay',
  'area',
  'media',
  'wings',
  'leafs',
  'coverage',
  'organization',
  'personal',
  'opinions',
  'inc',
  'lines',
  'article',
  'roger',
  'maynard',
  'writes',
  'roland',
  'dreier',
  'writes',
  'san',
  'francisco',
  'bay',
  'area',
  'media',
  'reporting',
  'tonight',
  'detroit',
  'red',
  'wings',
  'beat',
  'toronto',
  'maple',
  'leafs',
  'someone',
  'part',
  'media',
  'conspiracy',
  'leafs',
  'tell',
  'game',
  'really',
  'went',
  'expecting',
  'win',
  'leafs',
  'shutout',
  'potvin',
  'hat',
  'trick',
  'andreychuk',
  'goal',
  'assists',
  'gilmour',
  'leafs',
  'really',
  'lost',
  'many',
  'penalties',
  'whichever',
  'biased',
  'ref',
  'game',
  'call',
  'leafs',
  'let',
  'red',
  'wings',
  'win',
  'ah',
  'yes',
  'california',
  'san',
  'francisco',
  'bay',
  'area',
  'media',
  'report',
  'joe',
  'montana',
  'rumoured',
  'leading',
  'candidate',
  'replace',
  'fired',
  'san',
  'jose',
  'sharks',
  'coach',
  'george',
  'kingston',
  'apparently',
  'montana',
  'coveted',
  'winning',
  'attitude',
  'playing',
  'coach',
  'expected',
  'quarterback',
  'powerplay',
  'close',
  'roger',
  'banana',
  'er',
  'avocado',
  'artichoke',
  'geracie',
  'murky',
  'news',
  'said',
  'kingston',
  'new',
  'ers',
  'quarterback',
  'im',
  'still',
  'trying',
  'determine',
  'kidding',
  'happen',
  'pound',
  'enuff',
  'pints',
  'sometime',
  'week',
  'ill',
  'go',
  'back',
  'check',
  'stooper',
  'idiot',
  'purdy',
  'said',
  'column',
  'ought',
  'worth',
  'leafs',
  'mean',
  'laughs',
  'im',
  'really',
  'depressed',
  'ill',
  'read',
  'sf',
  'comicle',
  'mark',
  'say',
  'mark',
  'spiegel',
  'cow',
  'palace',
  'epicenter'],
 ['robert',
  'seymour',
  'car',
  'article',
  'reed',
  'apr',
  'reply',
  'organization',
  'reed',
  'college',
  'portland',
  'lines',
  'article',
  'wheres',
  'thing',
  'writes',
  'wondering',
  'anyone',
  'could',
  'enlighten',
  'car',
  'saw',
  'day',
  'door',
  'sports',
  'car',
  'looked',
  'late',
  'early',
  'called',
  'bricklin',
  'doors',
  'really',
  'small',
  'addition',
  'front',
  'bumper',
  'separate',
  'rest',
  'body',
  'know',
  'anyone',
  'tellme',
  'model',
  'name',
  'engine',
  'specs',
  'years',
  'production',
  'car',
  'made',
  'history',
  'whatever',
  'info',
  'funky',
  'looking',
  'car',
  'please',
  'mail',
  'bricklins',
  'manufactured',
  'engines',
  'ford',
  'rather',
  'odd',
  'looking',
  'encased',
  'front',
  'bumper',
  'arent',
  'lot',
  'around',
  'hemmings',
  'motor',
  'news',
  'ususally',
  'ten',
  'listed',
  'basically',
  'performance',
  'ford',
  'new',
  'styling',
  'slapped',
  'top',
  'brought',
  'neighborhood',
  'lerxst',
  'rush',
  'fan',
  'robert',
  'seymour',
  'physics',
  'philosophy',
  'reed',
  'college',
  'nextmail',
  'accepted',
  'artificial',
  'life',
  'project',
  'reed',
  'college',
  'reed',
  'solar',
  'energy',
  'project',
  'soltrain',
  'portland'],
 ['xt',
  'intrinsics',
  'slow',
  'popups',
  'organization',
  'department',
  'computer',
  'science',
  'university',
  'york',
  'england',
  'lines',
  'wrote',
  'help',
  'running',
  'sample',
  'problems',
  'oreilly',
  'volume',
  'xt',
  'intrisics',
  'programming',
  'manual',
  'chapter',
  'popup',
  'dialog',
  'boxes',
  'example',
  'page',
  'creating',
  'pop',
  'dialog',
  'box',
  'application',
  'creates',
  'window',
  'button',
  'quit',
  'press',
  'button',
  'press',
  'pops',
  'dialog',
  'box',
  'strange',
  'feature',
  'program',
  'always',
  'pops',
  'dialog',
  'box',
  'much',
  'faster',
  'first',
  'time',
  'try',
  'pop',
  'nd',
  'time',
  'rd',
  'th',
  'time',
  'much',
  'slower',
  'anyone',
  'experience',
  'sample',
  'programs',
  'get',
  'behaviour',
  'fast',
  'response',
  'time',
  'first',
  'time',
  'slow',
  'response',
  'time',
  'nd',
  'time',
  'onwards',
  'anyone',
  'give',
  'ideas',
  'program',
  'popups',
  'time',
  'popup',
  'reasonable',
  'fast',
  'response',
  'time',
  'thankyou',
  'shirley',
  'thanks',
  'responded',
  'able',
  'prevent',
  'behaviour',
  'two',
  'methods',
  'running',
  'twm',
  'rather',
  'olwm',
  'keeping',
  'olwm',
  'putting',
  'wmtimeout',
  'resources',
  'suggested',
  'difficuty',
  'something',
  'window',
  'manager',
  'positioning',
  'popup',
  'window',
  'guru',
  'analyse',
  'going',
  'information',
  'please',
  'post',
  'let',
  'us',
  'know',
  'thanks',
  'shirley'],
 ['andrew',
  'spencer',
  'sho',
  'sc',
  'organization',
  'case',
  'western',
  'reserve',
  'university',
  'cleveland',
  'oh',
  'usa',
  'lines',
  'reply',
  'andrew',
  'spencer',
  'nntp',
  'posting',
  'host',
  'slc',
  'ins',
  'cwru',
  'previous',
  'article',
  'robert',
  'loper',
  'says',
  'article',
  'james',
  'callison',
  'writes',
  'article',
  'david',
  'hwang',
  'writes',
  'article',
  'wharfie',
  'writes',
  'article',
  'chris',
  'silvester',
  'writes',
  'anyone',
  'would',
  'order',
  'sho',
  'automatic',
  'transmission',
  'beyond',
  'cant',
  'handle',
  'stick',
  'stick',
  'regular',
  'taurus',
  'leave',
  'sho',
  'real',
  'drivers',
  'say',
  'arent',
  'real',
  'drivers',
  'cant',
  'stick',
  'eg',
  'disabled',
  'persons',
  'arent',
  'position',
  'sho',
  'anyway',
  'would',
  'willing',
  'bet',
  'removed',
  'automatic',
  'transmissions',
  'performance',
  'type',
  'cars',
  'like',
  'mustangs',
  'camaros',
  'like',
  'wed',
  'cut',
  'number',
  'accidents',
  'year',
  'autos',
  'fine',
  'sedate',
  'little',
  'sedans',
  'business',
  'performance',
  'cars',
  'imho',
  'james',
  'disagree',
  'speed',
  'auto',
  'overdrive',
  'really',
  'better',
  'way',
  'chevy',
  'autos',
  'reknowned',
  'long',
  'life',
  'ability',
  'handle',
  'copious',
  'amount',
  'power',
  'live',
  'dallas',
  'area',
  'manual',
  'would',
  'much',
  'harder',
  'drive',
  'traffic',
  'still',
  'lived',
  'sticks',
  'like',
  'used',
  'manual',
  'would',
  'fun',
  'safety',
  'wise',
  'auto',
  'less',
  'distracting',
  'would',
  'hate',
  'shifting',
  'gears',
  'trying',
  'ease',
  'traffic',
  'freeways',
  'performance',
  'wise',
  'hold',
  'stock',
  'mustang',
  'camaro',
  'five',
  'speed',
  'imho',
  'hos',
  'disagree',
  'hos',
  'loved',
  'dallas',
  'rush',
  'hour',
  'stick',
  'detested',
  'auto',
  'like',
  'time',
  'auto',
  'course',
  'dalls',
  'rush',
  'hours',
  'nothing',
  'hear',
  'lived',
  'la',
  'might',
  'different',
  'persuasion',
  'record',
  'rarely',
  'shift',
  'gears',
  'merging',
  'traffic',
  'speeds',
  'good',
  'th',
  'good',
  'around',
  'time',
  'wind',
  'going',
  'hurt',
  'anything',
  'keeps',
  'powerband',
  'anyway',
  'shift',
  'top',
  'gear',
  'exceeding',
  'redline',
  'th',
  'fairly',
  'rare',
  'unless',
  'drive',
  'ferrari',
  'id',
  'bet',
  'hit',
  'cruising',
  'speed',
  'feel',
  'comfortable',
  'mother',
  'sitting',
  'passanger',
  'seat',
  'complaining',
  'wind',
  'poor',
  'little',
  'engine',
  'way',
  'hi',
  'hos',
  'drew'],
 ['paul',
  'harvey',
  'kind',
  'loving',
  'god',
  'organization',
  'duck',
  'pond',
  'public',
  'unix',
  'log',
  'guest',
  'lines',
  'article',
  'kent',
  'sandvik',
  'writes',
  'article',
  'malcolm',
  'lee',
  'wrote',
  'brings',
  'another',
  'question',
  'still',
  'ponder',
  'much',
  'anti',
  'semitism',
  'people',
  'hate',
  'jews',
  'dont',
  'hate',
  'jews',
  'consider',
  'like',
  'anyone',
  'else',
  'sinners',
  'dont',
  'know',
  'dont',
  'care',
  'ethnical',
  'rights',
  'wrongs',
  'evident',
  'christians',
  'consider',
  'jews',
  'longer',
  'sole',
  'selected',
  'group',
  'gods',
  'people',
  'jews',
  'consider',
  'case',
  'christian',
  'anti',
  'semitism',
  'comes',
  'obvious',
  'fact',
  'jews',
  'know',
  'hebrew',
  'scriptures',
  'better',
  'anyone',
  'else',
  'yet',
  'convert',
  'christianity',
  'en',
  'mass',
  'thus',
  'rejecting',
  'christian',
  'love',
  'wonder',
  'caused',
  'anti',
  'semitism',
  'one',
  'might',
  'even',
  'wonder',
  'christianity',
  'didnt',
  'separation',
  'would',
  'anti',
  'semitism',
  'even',
  'started',
  'dont',
  'see',
  'rest',
  'tribal',
  'people',
  'happened',
  'tribes',
  'americas',
  'culture',
  'seen',
  'different',
  'undesirable',
  'west',
  'particular',
  'us',
  'failed',
  'melting',
  'pot',
  'concept',
  'tribes',
  'hunted',
  'extinction',
  'hebrew',
  'tribe',
  'one',
  'survivers',
  'neolithic',
  'course',
  'becomes',
  'difficult',
  'times',
  'separate',
  'christianity',
  'western',
  'experience',
  'perhaps',
  'right',
  'perhaps',
  'would',
  'better',
  'world',
  'cultural',
  'experiment',
  'christianity',
  'never',
  'happened'],
 ['rusty',
  'foreman',
  'monitors',
  'reply',
  'organization',
  'amoco',
  'production',
  'company',
  'tulsa',
  'research',
  'lines',
  'anyone',
  'taken',
  'look',
  'new',
  'viewsonic',
  'claim',
  'hz',
  'compare',
  'terms',
  'price',
  'quality',
  'display',
  'living',
  'tulsa',
  'time',
  'rusty',
  'foreman',
  'amoco',
  'production',
  'research',
  'uunet',
  'apctrc',
  'zrdf',
  'box',
  'phone',
  'tulsa',
  'ok',
  'fax'],
 ['gary',
  'wieman',
  'cards',
  'sweep',
  'la',
  'mets',
  'lose',
  'life',
  'good',
  'organization',
  'university',
  'nebraska',
  'lincoln',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'unlinfo',
  'unl',
  'keywords',
  'cardinals',
  'lines',
  'favorite',
  'team',
  'sweeping',
  'dodgers',
  'one',
  'least',
  'favorite',
  'la',
  'sweet',
  'also',
  'mets',
  'least',
  'favorite',
  'team',
  'loss',
  'rockies',
  'made',
  'great',
  'day',
  'great',
  'start',
  'weekend',
  'cardinals',
  'espn',
  'tonight',
  'big',
  'lee',
  'smith',
  'great',
  'start',
  'cardinals',
  'seem',
  'hitting',
  'clutch',
  'even',
  'though',
  'games',
  'lots',
  'hits',
  'many',
  'runs',
  'hopefully',
  'coaches',
  'stress',
  'situational',
  'hitting',
  'spring',
  'training',
  'runners',
  'lob',
  'lower',
  'year',
  'probably',
  'due',
  'high',
  'strikeout',
  'numbers',
  'jose',
  'lankford',
  'zeiles',
  'year',
  'dont',
  'know',
  'fuss',
  'fillies',
  'media',
  'filly',
  'fans',
  'forget',
  'right',
  'behind',
  'standings',
  'give',
  'wild',
  'thing',
  'week',
  'two',
  'starts',
  'blowing',
  'games',
  'well',
  'see',
  'first',
  'believe',
  'cardinal',
  'pitching',
  'staff',
  'complete',
  'filly',
  'staff',
  'make',
  'difference',
  'side',
  'note',
  'years',
  'ago',
  'comment',
  'made',
  'baseball',
  'player',
  'manager',
  'dodger',
  'defense',
  'asked',
  'hit',
  'ball',
  'dodgers',
  'replied',
  'fair',
  'remember',
  'said',
  'section',
  'sports',
  'illustrated',
  'would',
  'like',
  'know',
  'said',
  'issue',
  'go',
  'redbirds',
  'gary',
  'wieman'],
 ['christopher',
  'bailey',
  'cause',
  'timeout',
  'summary',
  'force',
  'strip',
  'chart',
  'update',
  'nntp',
  'posting',
  'host',
  'ucsu',
  'colorado',
  'organization',
  'university',
  'colorado',
  'boulder',
  'lines',
  'problem',
  'athena',
  'strip',
  'chart',
  'widget',
  'calling',
  'get',
  'value',
  'function',
  'pretty',
  'sure',
  'happening',
  'using',
  'xtappmainloop',
  'dealing',
  'events',
  'via',
  'sockets',
  'ya',
  'ya',
  'anyway',
  'want',
  'cause',
  'timeout',
  'strip',
  'chart',
  'widget',
  'call',
  'get',
  'value',
  'callback',
  'someone',
  'knows',
  'another',
  'fast',
  'way',
  'around',
  'way',
  'matter',
  'let',
  'know',
  'cannot',
  'dont',
  'think',
  'call',
  'xtngetvalue',
  'callback',
  'dont',
  'value',
  'third',
  'parameter',
  'get',
  'value',
  'proc',
  'xtpointer',
  'call_data',
  'words',
  'want',
  'force',
  'strip',
  'chart',
  'widget',
  'update',
  'ideas',
  'anyone',
  'christopher',
  'bailey',
  'internet',
  'university',
  'colorado',
  'boulder',
  'compuserve',
  'ride',
  'fast',
  'take',
  'chances'],
 ['hrivnak',
  'years',
  'biggest',
  'worst',
  'opinion',
  'keywords',
  'nhl',
  'awards',
  'article',
  'hydra',
  'organization',
  'georgia',
  'institute',
  'technology',
  'lines',
  'article',
  'daryl',
  'turner',
  'writes',
  'even',
  'washington',
  'might',
  'consider',
  'patty',
  'bust',
  'id',
  'rework',
  'trade',
  'minute',
  'druce',
  'complete',
  'utter',
  'bust',
  'goals',
  'well',
  'druce',
  'pretty',
  'much',
  'sucked',
  'caps',
  'one',
  'good',
  'playoffs',
  'season',
  'oh',
  'well',
  'caps',
  'notorious',
  'making',
  'stupid',
  'trades',
  'anyway',
  'seen',
  'cicarelli',
  'hrivnak',
  'trades',
  'sigh',
  'another',
  'note',
  'id',
  'say',
  'caps',
  'biggest',
  'surprise',
  'cote',
  'many',
  'caps',
  'fans',
  'expecting',
  'lot',
  'bondra',
  'already',
  'go',
  'skins',
  'next',
  'question',
  'emotional',
  'music',
  'quite',
  'go',
  'braves',
  'effect',
  'mike',
  'patton',
  'faith',
  'go',
  'hornets',
  'go',
  'capitals',
  'mike',
  'friedman',
  'hrivnak',
  'fan',
  'internet'],
 ['sex',
  'marriages',
  'organization',
  'penn',
  'state',
  'university',
  'lines',
  'talk',
  'recently',
  'latin',
  'rites',
  'early',
  'church',
  'used',
  'bless',
  'sex',
  'unions',
  'anyone',
  'idea',
  'copies',
  'rites',
  'exist',
  'whole',
  'part',
  'please',
  'notify',
  'mail',
  'understand',
  'similar',
  'ceremonies',
  'written',
  'slavonic',
  'exist',
  'well',
  'let',
  'know',
  'find',
  'doesnt',
  'matter',
  'whether',
  'latin',
  'rite',
  'original',
  'translation',
  'however',
  'would',
  'prefer',
  'english',
  'version',
  'slavon',
  'ic',
  'rite',
  'exists',
  'thanks',
  'advance',
  'doug',
  'hayes',
  'psu',
  'weve',
  'questions',
  'past',
  'source',
  'know',
  'claims',
  'john',
  'boswell',
  'talks',
  'said',
  'working',
  'publication',
  'far',
  'know',
  'nothing',
  'published',
  'yet',
  'havent',
  'heard',
  'source',
  'anyone',
  'knows',
  'another',
  'source',
  'please',
  'tell',
  'us',
  'think',
  'going',
  'wait',
  'boswells',
  'publication',
  'appear',
  'order',
  'see',
  'hes',
  'really',
  'talking',
  'clh'],
 ['jemaleddin',
  'cole',
  'catholic',
  'lit',
  'crit',
  'nntp',
  'posting',
  'host',
  'camelot',
  'bradley',
  'organization',
  'society',
  'preservation',
  'cruelty',
  'homophobes',
  'lines',
  'writes',
  'surprised',
  'saddened',
  'would',
  'expect',
  'kind',
  'behavior',
  'evangelical',
  'born',
  'gospel',
  'thumping',
  'face',
  'true',
  'christian',
  'protestants',
  'always',
  'thought',
  'catholics',
  'behaved',
  'better',
  'please',
  'stoop',
  'level',
  'protestants',
  'think',
  'best',
  'way',
  'witness',
  'strident',
  'intrusive',
  'loud',
  'insulting',
  'overbearingly',
  'self',
  'righteous',
  'pleading',
  'mode',
  'please',
  'im',
  'begging',
  'quit',
  'confusing',
  'religious',
  'groups',
  'stop',
  'making',
  'generalizations',
  'im',
  'protestant',
  'im',
  'evangelical',
  'dont',
  'believe',
  'way',
  'way',
  'im',
  'creation',
  'scientist',
  'dont',
  'think',
  'homosexuals',
  'hung',
  'toenails',
  'want',
  'discuss',
  'bible',
  'thumpers',
  'would',
  'better',
  'singling',
  'making',
  'obtuse',
  'generalizations',
  'fundamentalists',
  'compared',
  'actions',
  'presbyterians',
  'methodists',
  'southern',
  'baptists',
  'would',
  'think',
  'different',
  'religions',
  'please',
  'prejudice',
  'thinking',
  'people',
  'group',
  'please',
  'dont',
  'write',
  'protestants',
  'evangelicals',
  'pleading',
  'mode',
  'god',
  'wish',
  'could',
  'get',
  'ahold',
  'thomas',
  'stories',
  'fbzr',
  'enval',
  'jvagre',
  'fhaqnlf',
  'jura',
  'gurerf',
  'yvggyr',
  'oberqbz',
  'lbh',
  'fubhyq',
  'nyjnlf',
  'pneel',
  'tha',
  'abg',
  'gb',
  'fubbg',
  'lbhefrys',
  'ohg',
  'gb',
  'xabj',
  'rknpgyl',
  'gung',
  'lbher',
  'nyjnlf',
  'znxvat',
  'pubvpr',
  'yvan',
  'jregzhyyre',
  'jemaleddin',
  'sasha',
  'david',
  'cole',
  'iv',
  'chief',
  'knobbery',
  'research'],
 ['ted',
  'frank',
  'best',
  'second',
  'baseman',
  'reply',
  'organization',
  'university',
  'chicago',
  'distribution',
  'usa',
  'lines',
  'article',
  'mark',
  'horan',
  'writes',
  'sandberg',
  'particulary',
  'known',
  'stolen',
  'bases',
  'competition',
  'alomar',
  'sandberg',
  'came',
  'year',
  'ripken',
  'year',
  'boggs',
  'gwynn',
  'magicians',
  'less',
  'attention',
  'given',
  'sandberg',
  'alomar',
  'one',
  'class',
  'worth',
  'mediocre',
  'besides',
  'numbers',
  'dont',
  'count',
  'national',
  'league',
  'pitchers',
  'much',
  'better',
  'pitchers',
  'youre',
  'right',
  'thomas',
  'gonzalez',
  'sheffield',
  'griffey',
  'dont',
  'even',
  'begin',
  'compare',
  'ripken',
  'boggs',
  'gwynn',
  'wonder',
  'alomar',
  'gets',
  'much',
  'attention',
  'sandberg',
  'got',
  'attention',
  'rookie',
  'year',
  'rookie',
  'year',
  'terrible',
  'sophomore',
  'year',
  'national',
  'league',
  'pitchers',
  'much',
  'better',
  'pitchers',
  'certainly',
  'explains',
  'sheffields',
  'hm',
  'confusing',
  'eras',
  'lower',
  'dont',
  'face',
  'dhs',
  'much',
  'better',
  'ted',
  'frank',
  'however',
  'teel',
  'mentioned',
  'though',
  'advice',
  'legally',
  'sound',
  'follow',
  'law',
  'school',
  'probably',
  'wind',
  'jail',
  'standard',
  'disclaimers',
  'james',
  'donald',
  'misc',
  'legal'],
 ['jartsu',
  'kb',
  'vram',
  'simms',
  'nntp',
  'posting',
  'host',
  'lk',
  'hp',
  'hut',
  'fi',
  'reply',
  'organization',
  'helsinki',
  'university',
  'technology',
  'finland',
  'lines',
  'hi',
  'could',
  'kind',
  'soul',
  'tell',
  'price',
  'lc',
  'iivi',
  'iivx',
  'compatible',
  'kb',
  'vram',
  'simms',
  'us',
  'nowadays',
  'price',
  'finland',
  'ridiculously',
  'high',
  'usd',
  'think',
  'worth',
  'trouble',
  'try',
  'get',
  'overseas',
  'thanks',
  'jartsu'],
 ['ron',
  'roth',
  'selective',
  'placebo',
  'gated',
  'usenet',
  'rosemail',
  'gateway',
  'organization',
  'rose',
  'media',
  'inc',
  'toronto',
  'ontario',
  'lines',
  'ella',
  'baff',
  'writes',
  'jb',
  'rr',
  'dont',
  'doubt',
  'placebo',
  'effect',
  'alive',
  'well',
  'jb',
  'rr',
  'every',
  'medical',
  'modality',
  'estimated',
  'around',
  'jb',
  'rr',
  'would',
  'higher',
  'alternative',
  'versus',
  'conventional',
  'jb',
  'rr',
  'medicine',
  'jb',
  'jb',
  'time',
  'closer',
  'experience',
  'jb',
  'substance',
  'alternative',
  'intervention',
  'beyond',
  'good',
  'intentions',
  'jb',
  'practitioner',
  'quite',
  'therapeutic',
  'jb',
  'jb',
  'john',
  'badanes',
  'dc',
  'ca',
  'jb',
  'well',
  'thats',
  'case',
  'practice',
  'hard',
  'time',
  'figuring',
  'even',
  'managed',
  'make',
  'bottom',
  'half',
  'class',
  'create',
  'diplomas',
  'crayons',
  'someone',
  'runs',
  'medical',
  'practice',
  'success',
  'rate',
  'either',
  'tackle',
  'problems',
  'qualified',
  'treat',
  'conscience',
  'business',
  'fraudulent',
  'purposes',
  'otoh',
  'kidding',
  'new',
  'england',
  'medical',
  'journal',
  'ran',
  'heading',
  'ninety',
  'percent',
  'diseases',
  'treatable',
  'drugs',
  'surgery',
  'echoed',
  'several',
  'reports',
  'wonder',
  'mds',
  'amused',
  'alternative',
  'medicine',
  'since',
  'magic',
  'placebo',
  'effect',
  'would',
  'award',
  'alternative',
  'practitioners',
  'twice',
  'success',
  'rate',
  'conventional',
  'medicine',
  'ron',
  'rosereader',
  'purranoia',
  'fear',
  'cat',
  'something',
  'rosemail',
  'usenet',
  'rose',
  'media',
  'hamilton'],
 ['last',
  'distribution',
  'usa',
  'organization',
  'milwaukee',
  'school',
  'engineering',
  'milwaukee',
  'wi',
  'usa',
  'lines',
  'two',
  'questions',
  'troubles',
  'wordperfect',
  'windows',
  'try',
  'select',
  'change',
  'fonts',
  'etc',
  'text',
  'disappears',
  'tried',
  'center',
  'two',
  'lines',
  'second',
  'line',
  'disappeared',
  'find',
  'error',
  'know',
  'correct',
  'right',
  'newsgroup',
  'go',
  'mail',
  'prefered',
  'else',
  'still',
  'waiting',
  'naked',
  'gun',
  'part',
  'pi',
  'milw',
  'wi',
  'team'],
 ['charles',
  'gross',
  'seen',
  'lobby',
  'us',
  'xxmessage',
  'id',
  'xxdate',
  'wed',
  'apr',
  'gmt',
  'nntp',
  'posting',
  'host',
  'johnson',
  'eff',
  'org',
  'organization',
  'electronic',
  'frontier',
  'foundation',
  'useragent',
  'nuntius',
  'lines',
  'article',
  'writes',
  'however',
  'likely',
  'hard',
  'harder',
  'exercise',
  'right',
  'getting',
  'exercise',
  'rights',
  'government',
  'slowly',
  'restricting',
  'maybe',
  'nra',
  'best',
  'existing',
  'organization',
  'although',
  'think',
  'new',
  'one',
  'might',
  'better',
  'perhaps',
  'would',
  'take',
  'long',
  'start',
  'would',
  'certainly',
  'join',
  'nra',
  'successful',
  'among',
  'number',
  'things',
  'drop',
  'hat',
  'get',
  'congresspersons',
  'office',
  'flooded',
  'postcards',
  'faxes',
  'phone',
  'calls',
  'certainly',
  'way',
  'cool',
  'internet',
  'powers',
  'organization',
  'act',
  'way',
  'action',
  'appropriate',
  'long',
  'kept',
  'informed',
  'events',
  'anyone',
  'bboard',
  'make',
  'call',
  'action',
  'hopefully',
  'strong',
  'enough',
  'community',
  'act',
  'calls',
  'realize',
  'little',
  'optomistic',
  'im',
  'glad',
  'eff',
  'working',
  'loop',
  'issues',
  'dont',
  'underestimate',
  'potential',
  'net',
  'political',
  'action',
  'adam',
  'speak'],
 ['walker',
  'man',
  'nuclear',
  'sites',
  'cooling',
  'towers',
  'organization',
  'university',
  'technology',
  'sydney',
  'lines',
  'distribution',
  'world',
  'nntp',
  'posting',
  'host',
  'acacia',
  'ccsd',
  'uts',
  'au',
  'summary',
  'cooling',
  'towers',
  'anyone',
  'know',
  'work',
  'keywords',
  'nuclear',
  'organisation',
  'university',
  'technology',
  'sydney',
  'australia',
  'really',
  'dont',
  'know',
  'post',
  'question',
  'figured',
  'board',
  'would',
  'appropriate',
  'wondering',
  'massive',
  'concrete',
  'cylinders',
  'ever',
  'present',
  'nuclear',
  'poer',
  'sites',
  'look',
  'like',
  'cylinders',
  'pinched',
  'middle',
  'anybody',
  'know',
  'actual',
  'purpose',
  'things',
  'hear',
  'theyre',
  'called',
  'cooling',
  'towers',
  'heck',
  'cool',
  'hope',
  'someone',
  'help'],
 ['tammy',
  'healy',
  'cannanite',
  'genocide',
  'bible',
  'lines',
  'organization',
  'walla',
  'walla',
  'college',
  'lines',
  'excuse',
  'ignorance',
  'remember',
  'reading',
  'biblical',
  'tribe',
  'known',
  'philistines',
  'still',
  'exists',
  'modern',
  'day',
  'palestinians',
  'anyone',
  'info',
  'please',
  'post',
  'tammy'],
 ['brad',
  'daniels',
  'fresco',
  'status',
  'organization',
  'neosoft',
  'communications',
  'services',
  'lines',
  'ive',
  'hearing',
  'rumblings',
  'fresco',
  'sounds',
  'like',
  'may',
  'im',
  'looking',
  'far',
  'release',
  'least',
  'kind',
  'availability',
  'similar',
  'interviews',
  'code',
  'interviews',
  'code',
  'work',
  'fresco',
  'motif',
  'ive',
  'heard',
  'mention',
  'versions',
  'interviews',
  'support',
  'motif',
  'feasible',
  'motif',
  'fresco',
  'information',
  'would',
  'much',
  'appreciated',
  'brad',
  'brad',
  'daniels',
  'money',
  'cant',
  'buy',
  'happiness',
  'guess',
  'ill',
  'rent',
  'dont',
  'work',
  'neosoft',
  'weird',
  'al',
  'yenkovic',
  'dont',
  'speak',
  'employer'],
 ['whos',
  'next',
  'mormons',
  'jews',
  'distribution',
  'world',
  'lines',
  'minor',
  'point',
  'interest',
  'earlier',
  'news',
  'reports',
  'claim',
  'quoting',
  'governor',
  'texas',
  'holiness',
  'referred',
  'dividians',
  'called',
  'expulsion',
  'tx',
  'texans',
  'details'],
 ['nathan',
  'betz',
  'first',
  'bike',
  'honda',
  'ascot',
  'organization',
  'compuserve',
  'incorporated',
  'lines',
  'hi',
  'folks',
  'im',
  'going',
  'buying',
  'first',
  'bike',
  'im',
  'considering',
  'honda',
  'ascot',
  'ft',
  'less',
  'miles',
  'sound',
  'like',
  'reasonable',
  'choice',
  'anything',
  'special',
  'need',
  'know',
  'thanks',
  'nathan'],
 ['help',
  'greenleaf',
  'commlib',
  'organization',
  'idx',
  'corporation',
  'burlington',
  'vt',
  'lines',
  'anyone',
  'experience',
  'new',
  'greenleaf',
  'commlib',
  'cant',
  'even',
  'get',
  'demo',
  'winterm',
  'run',
  'baud',
  'without',
  'dropping',
  'characters',
  'tnx',
  'steve',
  'steve',
  'alpert',
  'ggn',
  'idx',
  'systems',
  'corp',
  'boston',
  'massachusetts',
  'sra',
  'idx',
  'com'],
 ['tom',
  'vervaeke',
  'toyota',
  'land',
  'cruiser',
  'worth',
  'organization',
  'hp',
  'colorado',
  'springs',
  'division',
  'lines',
  'nntp',
  'posting',
  'host',
  'itchub',
  'cs',
  'itc',
  'hp',
  'com',
  'wife',
  'looked',
  'drove',
  'one',
  'last',
  'fall',
  'model',
  'wayyyyyyyyy',
  'underpowered',
  'could',
  'imagine',
  'driving',
  'mountains',
  'colorado',
  'anything',
  'approaching',
  'highway',
  'speeds',
  'read',
  'new',
  'models',
  'newer',
  'improved',
  'hp',
  'engine',
  'im',
  'quite',
  'serious',
  'laughed',
  'salesman',
  'face',
  'said',
  'broken',
  'feel',
  'powerful',
  'used',
  'driving',
  'jeep',
  'hp',
  'engine',
  'believe',
  'land',
  'cruisers',
  'land',
  'yachts',
  'sames',
  'runner',
  'also',
  'underpowered',
  'personal',
  'opinion',
  'big',
  'cars',
  'roomy',
  'nothing',
  'spectacular',
  'tom',
  'vervaeke',
  'email',
  'hewlett',
  'packard',
  'co',
  'phone',
  'love',
  'animals',
  'taste',
  'delicious'],
 ['david',
  'sternlight',
  'screw',
  'people',
  'crypto',
  'hard',
  'core',
  'hackers',
  'spooks',
  'organization',
  'dsi',
  'uscrpac',
  'lines',
  'article',
  'derek',
  'atkins',
  'writes',
  'point',
  'specific',
  'instance',
  'wiretap',
  'chip',
  'rather',
  'like',
  'government',
  'telling',
  'want',
  'copy',
  'house',
  'key',
  'safe',
  'deposit',
  'box',
  'keys',
  'etc',
  'telling',
  'wont',
  'unless',
  'totally',
  'neccessary',
  'sure',
  'wouldnt',
  'want',
  'encryption',
  'different',
  'actually',
  'govrnment',
  'telling',
  'want',
  'product',
  'manufacturer',
  'actually',
  'better',
  'yet',
  'trusted',
  'pair',
  'escrow',
  'agencies',
  'key',
  'us',
  'already',
  'situation',
  'car',
  'makers',
  'keys',
  'cars',
  'get',
  'quickly',
  'vin',
  'number',
  'doubt',
  'presented',
  'court',
  'order',
  'theyd',
  'surrender',
  'copies',
  'government',
  'chances',
  'many',
  'locksmiths',
  'code',
  'numbers',
  'house',
  'locks',
  'theyve',
  'installed',
  'emergency',
  'cut',
  'keys',
  'thus',
  'theyd',
  'also',
  'provide',
  'keys',
  'government',
  'pursuant',
  'court',
  'order',
  'state',
  'difficulty',
  'gaining',
  'access',
  'safe',
  'deposit',
  'box',
  'court',
  'order',
  'bad',
  'analogy',
  'argue',
  'proposal',
  'rather',
  'better',
  'distinctions',
  'required',
  'thinking',
  'house',
  'key',
  'safe',
  'deposit',
  'keys',
  'etc',
  'david',
  'david',
  'sternlight',
  'great',
  'care',
  'taken',
  'ensure',
  'accuracy',
  'information',
  'errors',
  'omissions',
  'excepted'],
 ['serdar',
  'argic',
  'armenians',
  'exterminated',
  'million',
  'muslim',
  'people',
  'reply',
  'serdar',
  'argic',
  'distribution',
  'world',
  'lines',
  'article',
  'hovig',
  'heghinian',
  'writes',
  'article',
  'partisan',
  'interests',
  'would',
  'like',
  'know',
  'conversations',
  'terpetrosyan',
  'demirel',
  'sound',
  'like',
  'simple',
  'soviet',
  'armenian',
  'government',
  'must',
  'pay',
  'crime',
  'genocide',
  'million',
  'muslims',
  'admitting',
  'crime',
  'making',
  'reparations',
  'turks',
  'kurds',
  'criminal',
  'grandparents',
  'exterminated',
  'million',
  'muslim',
  'people',
  'hovig',
  'heghinian',
  'say',
  'hear',
  'hear',
  'motion',
  'seconded',
  'must',
  'new',
  'arromdian',
  'counting',
  'asala',
  'sdpa',
  'arf',
  'crooks',
  'criminals',
  'prove',
  'something',
  'wonder',
  'mess',
  'criminal',
  'idiot',
  'forged',
  'non',
  'existent',
  'junk',
  'already',
  'trashed',
  'mutlu',
  'cosar',
  'akgun',
  'uludamar',
  'akman',
  'oflazer',
  'hundreds',
  'people',
  'moreover',
  'asala',
  'sdpa',
  'arf',
  'criminals',
  'responsible',
  'massacre',
  'turkish',
  'people',
  'also',
  'prevent',
  'entering',
  'turkiye',
  'trnc',
  'sdpa',
  'yet',
  'renounce',
  'charter',
  'specifically',
  'calls',
  'second',
  'genocide',
  'turkish',
  'people',
  'racist',
  'barbarian',
  'criminal',
  'view',
  'touted',
  'fascist',
  'soviet',
  'armenian',
  'government',
  'merely',
  'step',
  'road',
  'said',
  'genocide',
  'shall',
  'begin',
  'parlakbilek',
  'ahmet',
  'yalanci',
  'liar',
  'davidian',
  'keywords',
  'davidian',
  'biggest',
  'liar',
  'message',
  'id',
  'following',
  'article',
  'davidian',
  'claims',
  'hasan',
  'mutlu',
  'liar',
  'david',
  'davidian',
  'message',
  'id',
  'article',
  'ahmet',
  'parlakbilek',
  'asked',
  'simple',
  'question',
  'ap',
  'asking',
  'show',
  'one',
  'example',
  'mutlu',
  'coras',
  'ap',
  'turk',
  'proven',
  'lie',
  'show',
  'tens',
  'lies',
  'fabrications',
  'ap',
  'davidian',
  'like',
  'changing',
  'quote',
  'even',
  'changing',
  'name',
  'book',
  'anna',
  'obvious',
  'ridiculous',
  'armenians',
  'murdered',
  'million',
  'moslems',
  'outragious',
  'unsubstantiated',
  'charge',
  'obviously',
  'new',
  'net',
  'read',
  'following',
  'sample',
  'one',
  'three',
  'proven',
  'lies',
  'one',
  'day',
  'start',
  'yalanci',
  'txt',
  'parts',
  'deleted',
  'article',
  'usenet',
  'scribe',
  'turkish',
  'historical',
  'society',
  'hasan',
  'mutlu',
  'continues',
  'revise',
  'history',
  'armenian',
  'people',
  'lets',
  'witness',
  'operational',
  'definition',
  'revisionist',
  'yalanci',
  'liar',
  'turkish',
  'yalanci',
  'according',
  'leo',
  'yalanci',
  'yalanci',
  'situation',
  'clear',
  'one',
  'side',
  'peace',
  'loving',
  'turks',
  'yalanci',
  'side',
  'peace',
  'loving',
  'armenians',
  'sides',
  'minding',
  'yalanci',
  'affairs',
  'submerged',
  'blood',
  'fire',
  'indeed',
  'yalanci',
  'war',
  'actually',
  'waged',
  'committee',
  'yalanci',
  'dashnaktsutiun',
  'society',
  'ittihad',
  'terakki',
  'cruel',
  'yalanci',
  'savage',
  'war',
  'defense',
  'party',
  'political',
  'interests',
  'dashnaks',
  'yalanci',
  'incited',
  'revolts',
  'relied',
  'russian',
  'bayonets',
  'success',
  'yalanci',
  'yalanci',
  'kuper',
  'genocide',
  'political',
  'twentieth',
  'century',
  'yalanci',
  'new',
  'york',
  'text',
  'available',
  'bookstores',
  'many',
  'libraries',
  'page',
  'find',
  'discussion',
  'related',
  'atrocities',
  'title',
  'chapter',
  'topic',
  'page',
  'concerns',
  'submissions',
  'sub',
  'commission',
  'prevention',
  'discrimination',
  'minorities',
  'commission',
  'human',
  'rights',
  'united',
  'nations',
  'respect',
  'massacres',
  'cambodia',
  'mention',
  'turks',
  'armenians',
  'claimed',
  'vay',
  'sarsak',
  'vay',
  'yobaz',
  'vay',
  'yalanci',
  'vay',
  'turk',
  'milletinin',
  'yuz',
  'karasi',
  'mutlu',
  'vay',
  'depth',
  'foolishness',
  'turkish',
  'historical',
  'society',
  'engages',
  'covering',
  'turkish',
  'genocide',
  'armenians',
  'surpassed',
  'ridiculous',
  'historical',
  'material',
  'publicly',
  'displayed',
  'david',
  'davidian',
  'life',
  'people',
  'sea',
  'receiving',
  'message',
  'checked',
  'reference',
  'kuper',
  'genocide',
  'found',
  'totally',
  'consistent',
  'davidian',
  'said',
  'book',
  'like',
  'voice',
  'armenian',
  'revolutionists',
  'although',
  'read',
  'whole',
  'book',
  'could',
  'find',
  'original',
  'quota',
  'one',
  'thing',
  'check',
  'original',
  'posting',
  'mutlu',
  'found',
  'original',
  'article',
  'mutlu',
  'follows',
  'according',
  'leo',
  'situation',
  'clear',
  'one',
  'side',
  'peace',
  'loving',
  'turks',
  'side',
  'peace',
  'loving',
  'armenians',
  'sides',
  'minding',
  'affairs',
  'submerged',
  'blood',
  'fire',
  'indeed',
  'war',
  'actually',
  'waged',
  'committee',
  'dashnaktsutiun',
  'society',
  'ittihad',
  'terakki',
  'cruel',
  'savage',
  'war',
  'defense',
  'party',
  'political',
  'interests',
  'dashnaks',
  'incited',
  'revolts',
  'relied',
  'russian',
  'bayonets',
  'success',
  'leo',
  'ideology',
  'armenian',
  'revolution',
  'turkey',
  'vol',
  'ii',
  'quato',
  'reference',
  'different',
  'davidian',
  'lied',
  'time',
  'changed',
  'original',
  'posting',
  'mutlu',
  'accuse',
  'liar',
  'davidian',
  'thank',
  'writing',
  'page',
  'number',
  'correctly',
  'biggest',
  'liar',
  'ever',
  'seen',
  'example',
  'showed',
  'tomorrow',
  'lie',
  'may',
  'try',
  'make',
  'liar',
  'time',
  'decided',
  'read',
  'articles',
  'write',
  'answers',
  'also',
  'advise',
  'netters',
  'prevent',
  'lies',
  'least',
  'may',
  'save',
  'time',
  'dealing',
  'lies',
  'following',
  'line',
  'vay',
  'sarsak',
  'vay',
  'yobaz',
  'vay',
  'yalanci',
  'vay',
  'turk',
  'milletinin',
  'yuz',
  'karasi',
  'mutlu',
  'vay',
  'also',
  'return',
  'insults',
  'wrote',
  'mutlu',
  'hope',
  'drowned',
  'lies',
  'ahmet',
  'parlakbilek',
  'vedat',
  'dogan',
  'message',
  'id',
  'article',
  'david',
  'davidian',
  'writes',
  'article',
  'vedat',
  'dogan',
  'wrote',
  'response',
  'article',
  'sdpa',
  'org',
  'david',
  'davidian',
  'writes',
  'source',
  'adventures',
  'near',
  'east',
  'rawlinson',
  'jonathan',
  'cape',
  'bedford',
  'square',
  'london',
  'first',
  'published',
  'pages',
  'dd',
  'pile',
  'garbage',
  'first',
  'reference',
  'first',
  'published',
  'dd',
  'pages',
  'second',
  'upon',
  'checking',
  'page',
  'dd',
  'asked',
  'believe',
  'vd',
  'mr',
  'davidian',
  'vd',
  'first',
  'published',
  'book',
  'desk',
  'vd',
  'vd',
  'furthermore',
  'book',
  'pages',
  'either',
  'vd',
  'claimed',
  'mr',
  'davidian',
  'pages',
  'question',
  'well',
  'seems',
  'book',
  'total',
  'page',
  'numbers',
  'closer',
  'mine',
  'crap',
  'posted',
  'mr',
  'boy',
  'please',
  'tell',
  'us',
  'quotes',
  'crap',
  'like',
  'really',
  'exist',
  'said',
  'previous',
  'posting',
  'quotes',
  'exactly',
  'exist',
  'source',
  'given',
  'serdar',
  'argic',
  'couldnt',
  'reject',
  'addition',
  'authors',
  'preface',
  'written',
  'january',
  'book',
  'published',
  'go',
  'book',
  'front',
  'page',
  'authors',
  'preface',
  'give',
  'year',
  'january',
  'respectively',
  'anyone',
  'check',
  'library',
  'send',
  'copies',
  'pages',
  'please',
  'ask',
  'sct',
  'really',
  'dont',
  'care',
  'year',
  'first',
  'published',
  'care',
  'book',
  'writes',
  'murders',
  'tortures',
  'et',
  'given',
  'quotes',
  'serdar',
  'argic',
  'denial',
  'quotes',
  'groundless',
  'accussations',
  'etc',
  'dd',
  'provide',
  'gif',
  'postings',
  'required',
  'verify',
  'claim',
  'vd',
  'new',
  'post',
  'gif',
  'file',
  'going',
  'go',
  'effort',
  'show',
  'turkish',
  'modified',
  'publication',
  'book',
  'like',
  'last',
  'time',
  'claim',
  'book',
  'hand',
  'published',
  'first',
  'publication',
  'exactly',
  'quoted',
  'info',
  'book',
  'published',
  'serdar',
  'argics',
  'reference',
  'couldnt',
  'reject',
  'avoiding',
  'real',
  'issues',
  'twisting',
  'around',
  'lets',
  'see',
  'lie',
  'non',
  'existing',
  'quotes',
  'publication',
  'first',
  'said',
  'quote',
  'given',
  'reference',
  'called',
  'serdar',
  'argic',
  'liar',
  'said',
  'mr',
  'davidian',
  'exactly',
  'existed',
  'quote',
  'even',
  'gave',
  'call',
  'number',
  'page',
  'numbers',
  'couldt',
  'reject',
  'lying',
  'talking',
  'modified',
  'published',
  'book',
  'without',
  'proof',
  'etc',
  'way',
  'possible',
  'publish',
  'book',
  'first',
  'published',
  'claim',
  'sure',
  'pretty',
  'well',
  'suited',
  'theories',
  'usual',
  'ready',
  'send',
  'copies',
  'necessary',
  'pages',
  'anybody',
  'wants',
  'compare',
  'fact',
  'mr',
  'davidians',
  'lies',
  'also',
  'give',
  'call',
  'number',
  'page',
  'numbers',
  'library',
  'page',
  'numbers',
  'verify',
  'quotes',
  'possible',
  'text',
  'pages',
  'mine',
  'claiming',
  'cant',
  'reference',
  'saying',
  'possible',
  'point',
  'differences',
  'number',
  'pages',
  'mine',
  'published',
  'serdar',
  'argics',
  'need',
  'book',
  'size',
  'letter',
  'charachter',
  'publications',
  'etc',
  'etc',
  'give',
  'idea',
  'issue',
  'number',
  'pages',
  'book',
  'year',
  'first',
  'published',
  'tried',
  'hide',
  'whole',
  'point',
  'point',
  'books',
  'exactly',
  'quotes',
  'moslems',
  'killed',
  'tortured',
  'etc',
  'armenians',
  'quotes',
  'given',
  'serdar',
  'argic',
  'exist',
  'issue',
  'wasnt',
  'able',
  'object',
  'bother',
  'anyway',
  'name',
  'tortures',
  'murders',
  'armenians',
  'crap',
  'people',
  'think',
  'like',
  'among',
  'main',
  'reasons',
  'world',
  'still',
  'many',
  'craps',
  'question',
  'hovig',
  'heghinian',
  'hmm',
  'turks',
  'sure',
  'know',
  'keep',
  'track',
  'deaths',
  'seem',
  'lose',
  'count',
  'around',
  'million',
  'well',
  'apparently',
  'another',
  'son',
  'dro',
  'butcher',
  'contend',
  'indeed',
  'happy',
  'know',
  'rekindled',
  'huge',
  'discussion',
  'distortions',
  'propagated',
  'several',
  'contemporaries',
  'feel',
  'simply',
  'act',
  'armenian',
  'governmental',
  'crony',
  'forum',
  'sadly',
  'mistaken',
  'duly',
  'embarrassed',
  'lecture',
  'another',
  'historical',
  'revisionist',
  'genocide',
  'apologist',
  'fact',
  'dissect',
  'article',
  'article',
  'paragraph',
  'paragraph',
  'line',
  'line',
  'lie',
  'lie',
  'revision',
  'revision',
  'written',
  'net',
  'plan',
  'prove',
  'armenian',
  'genocide',
  'million',
  'turks',
  'kurds',
  'nothing',
  'less',
  'classic',
  'un',
  'redressed',
  'genocide',
  'neither',
  'soviet',
  'union',
  'similar',
  'ultra',
  'nationalist',
  'fascist',
  'dictatorship',
  'employs',
  'dictates',
  'hitler',
  'quell',
  'domestic',
  'unrest',
  'also',
  'feel',
  'free',
  'distribute',
  'responses',
  'nearest',
  'asala',
  'sdpa',
  'arf',
  'terrorists',
  'armenian',
  'pseudo',
  'scholars',
  'affiliated',
  'armenian',
  'criminal',
  'organizations',
  'armenian',
  'government',
  'got',
  'away',
  'genocide',
  'million',
  'turkish',
  'men',
  'women',
  'children',
  'enjoying',
  'fruits',
  'genocide',
  'like',
  'get',
  'away',
  'genocides',
  'cover',
  'chance',
  'serdar',
  'argic',
  'closed',
  'roads',
  'mountain',
  'passes',
  'might',
  'serve',
  'ways',
  'escape',
  'turks',
  'proceeded',
  'work',
  'extermination',
  'ohanus',
  'appressian',
  'soviet',
  'armenia',
  'today',
  'longer',
  'exists',
  'single',
  'turkish',
  'soul',
  'sahak',
  'melkonian'],
 ['keith',
  'ryan',
  'death',
  'penalty',
  'political',
  'atheists',
  'organization',
  'case',
  'western',
  'reserve',
  'university',
  'lines',
  'nntp',
  'posting',
  'host',
  'student',
  'cwru',
  'article',
  'mark',
  'mccullough',
  'writes',
  'exagerate',
  'point',
  'libel',
  'gave',
  'unpopular',
  'reasons',
  'deliberately',
  'think',
  'let',
  'iraq',
  'absorb',
  'kuwait',
  'could',
  'make',
  'tired',
  'old',
  'poland',
  'comparison',
  'think',
  'youve',
  'heard',
  'principle',
  'aplies',
  'never',
  'play',
  'chamberlain',
  'roll',
  'another',
  'country',
  'invaded',
  'invites',
  'invasions',
  'perhaps',
  'ought',
  'supported',
  'known',
  'genocidist',
  'provided',
  'weapon',
  'systems',
  'tactical',
  'support',
  'technology',
  'etc',
  'made',
  'suddam',
  'hussein',
  'bush',
  'call',
  'oh',
  'yes',
  'ally',
  'freind',
  'id',
  'cheat',
  'hillary',
  'john',
  'laws',
  'local',
  'gop',
  'reprehensitive',
  'extolling',
  'traditional',
  'family',
  'values'],
 ['albert',
  'sabin',
  'james',
  'lippard',
  'distribution',
  'world',
  'local',
  'organization',
  'university',
  'arizona',
  'nntp',
  'posting',
  'host',
  'skyblu',
  'ccit',
  'arizona',
  'news',
  'software',
  'vax',
  'vms',
  'vnews',
  'lines',
  'article',
  'writes',
  'article',
  'bill',
  'rawlins',
  'writes',
  'however',
  'one',
  'highly',
  'biased',
  'account',
  'well',
  'possibly',
  'internally',
  'inconsistent',
  'written',
  'mellenia',
  'ago',
  'dead',
  'language',
  'fanatic',
  'devotees',
  'creature',
  'question',
  'supported',
  'objective',
  'sources',
  'isnt',
  'even',
  'accepted',
  'whos',
  'messiah',
  'creature',
  'supposed',
  'doesnt',
  'convince',
  'slightest',
  'especially',
  'many',
  'current',
  'day',
  'devotees',
  'appear',
  'brainwashed',
  'believing',
  'pile',
  'guano',
  'since',
  'referred',
  'messiah',
  'assume',
  'referring',
  'new',
  'testament',
  'please',
  'detail',
  'complaints',
  'mail',
  'dont',
  'want',
  'post',
  'first',
  'century',
  'greek',
  'well',
  'known',
  'well',
  'understood',
  'considered',
  'josephus',
  'jewish',
  'historian',
  'also',
  'wrote',
  'jesus',
  'addition',
  'four',
  'gospel',
  'accounts',
  'much',
  'harmony',
  'bill',
  'taken',
  'time',
  'explain',
  'biblical',
  'scholars',
  'consider',
  'josephus',
  'reference',
  'early',
  'christian',
  'insert',
  'biblical',
  'scholar',
  'mean',
  'expert',
  'course',
  'research',
  'willing',
  'let',
  'chips',
  'fall',
  'may',
  'excludes',
  'literalists',
  'may',
  'otherwise',
  'defined',
  'biblical',
  'apologists',
  'find',
  'want',
  'find',
  'trustworthy',
  'scholarly',
  'standards',
  'others',
  'insert',
  'read',
  'number',
  'times',
  'passage',
  'glaringly',
  'context',
  'josephus',
  'superb',
  'writer',
  'problem',
  'elsewhere',
  'work',
  'passage',
  'nothing',
  'matter',
  'lies',
  'suddenly',
  'appears',
  'quickly',
  'disappears',
  'think',
  'weak',
  'argument',
  'fact',
  'two',
  'references',
  'jesus',
  'jews_',
  'one',
  'unquestionably',
  'least',
  'altered',
  'christians',
  'origen',
  'wrote',
  'third',
  'century',
  'josephus',
  'recognize',
  'jesus',
  'messiah',
  'long',
  'passage',
  'says',
  'opposite',
  'arabic',
  'manuscript',
  'jews_',
  'contains',
  'version',
  'passage',
  'much',
  'less',
  'gung',
  'ho',
  'jesus',
  'may',
  'authentic',
  'question',
  'origen',
  'third',
  'century',
  'saw',
  'reference',
  'jesus',
  'josephus',
  'manuscripts',
  'lack',
  'references',
  'possible',
  'fabricated',
  'whole',
  'cloth',
  'inserted',
  'dont',
  'think',
  'likely',
  'think',
  'consensus',
  'scholarly',
  'community',
  'case',
  'know',
  'wells',
  'takes',
  'position',
  'thats',
  'takes',
  'small',
  'minority',
  'view',
  'jesus',
  'never',
  'existed',
  'professor',
  'german',
  'biblical',
  'history',
  'new',
  'testament',
  'anything',
  'directly',
  'relevant',
  'historicity',
  'jesus',
  'jim',
  'lippard',
  'dept',
  'philosophy',
  'university',
  'arizona',
  'tucson',
  'az'],
 ['dave',
  'butler',
  'new',
  'biblical',
  'contradictions',
  'still',
  'answered',
  'judas',
  'organization',
  'tektronix',
  'inc',
  'wilsonville',
  'lines',
  'mr',
  'decenso',
  'spite',
  'requiring',
  'scholarly',
  'opinion',
  'hanging',
  'judas',
  'rejects',
  'scholarly',
  'opinion',
  'scholars',
  'rephrases',
  'scholars',
  'opinion',
  'know',
  'matthew',
  'hang',
  'acts',
  'probably',
  'records',
  'death',
  'although',
  'possible',
  'plausible',
  'fell',
  'hanging',
  'hit',
  'rocks',
  'thereby',
  'bursting',
  'open',
  'longer',
  'assume',
  'case',
  'therefore',
  'contradiction',
  'matthew',
  'say',
  'judas',
  'died',
  'result',
  'hanging',
  'scholars',
  'believe',
  'iprobably',
  'quoted',
  'show',
  'highly',
  'regard',
  'scholars',
  'explanations',
  'looking',
  'texts',
  'initially',
  'cant',
  'assume',
  'judas',
  'died',
  'however',
  'highly',
  'probable',
  'also',
  'nothing',
  'greek',
  'suggest',
  'success',
  'failure',
  'simply',
  'means',
  'hang',
  'oneself',
  'actually',
  'research',
  'greek',
  'word',
  'apacgw',
  'find',
  'denote',
  'success',
  'scholars',
  'indeed',
  'excellent',
  'reason',
  'assume',
  'suicide',
  'successful',
  'pointed',
  'recently',
  'checked',
  'several',
  'lexicons',
  'greek',
  'english',
  'lexicon',
  'new',
  'testament',
  'louw',
  'nida',
  'robinsons',
  'greek',
  'english',
  'lexicon',
  'new',
  'testament',
  'greek',
  'english',
  'lexicon',
  'new',
  'testament',
  'grimm',
  'word',
  'study',
  'concordance',
  'tynsdale',
  'greek',
  'english',
  'lexicon',
  'new',
  'testament',
  'early',
  'christian',
  'writings',
  'bauer',
  'arndt',
  'gingrich',
  'new',
  'analytical',
  'greek',
  'lexicon',
  'perschbacher',
  'couple',
  'simply',
  'stated',
  'hanged',
  'oneself',
  'couple',
  'explicit',
  'stated',
  'apacgw',
  'means',
  'specifically',
  'kill',
  'hanging',
  'couple',
  'also',
  'noted',
  'meaning',
  'one',
  'root',
  'words',
  'apacgw',
  'strangle',
  'throttle',
  'choke',
  'pretty',
  'much',
  'invalidates',
  'guy',
  'suggested',
  'david',
  'joslin',
  'judas',
  'hung',
  'upside',
  'one',
  'best',
  'references',
  'though',
  'robinsons',
  'greek',
  'english',
  'lexicon',
  'new',
  'testament',
  'stated',
  'translation',
  'gave',
  'root',
  'words',
  'literal',
  'translation',
  'related',
  'greek',
  'words',
  'roots',
  'also',
  'presented',
  'specific',
  'examples',
  'word',
  'greek',
  'literature',
  'give',
  'context',
  'word',
  'apagchw',
  'two',
  'root',
  'words',
  'gchw',
  'strangle',
  'root',
  'root',
  'word',
  'apo',
  'means',
  'literally',
  'away',
  'root',
  'words',
  'included',
  'words',
  'denote',
  'transition',
  'mean',
  'transition',
  'place',
  'eg',
  'greek',
  'word',
  'apagello',
  'means',
  'send',
  'message',
  'apo',
  'also',
  'denote',
  'change',
  'state',
  'specifically',
  'change',
  'life',
  'death',
  'robinson',
  'specifically',
  'makes',
  'comparison',
  'word',
  'apokteiuo',
  'means',
  'kill',
  'literal',
  'meaning',
  'word',
  'apacgw',
  'means',
  'throttle',
  'strangle',
  'put',
  'way',
  'implicitly',
  'denotes',
  'change',
  'life',
  'state',
  'ie',
  'away',
  'life',
  'death',
  'word',
  'apacgw',
  'mean',
  'hang',
  'specifically',
  'denotes',
  'death',
  'well',
  'thus',
  'robinson',
  'quite',
  'specific',
  'state',
  'means',
  'hang',
  'oneself',
  'end',
  'ones',
  'life',
  'hanging',
  'notes',
  'apacgw',
  'homers',
  'odessy',
  'denote',
  'context',
  'presents',
  'example',
  'apacgw',
  'used',
  'explicitly',
  'mean',
  'suicide',
  'hanging',
  'since',
  'perfectly',
  'good',
  'word',
  'strangling',
  'without',
  'added',
  'denotation',
  'death',
  'insist',
  'bible',
  'written',
  'god',
  'every',
  'word',
  'precicely',
  'correct',
  'stuck',
  'complete',
  'meaning',
  'apacgw',
  'ie',
  'since',
  'word',
  'apacgw',
  'used',
  'death',
  'denoted',
  'result',
  'way',
  'note',
  'mr',
  'decenso',
  'also',
  'presents',
  'example',
  'apacgw',
  'septuagint',
  'greek',
  'translation',
  'ot',
  'used',
  'time',
  'jesus',
  'used',
  'samuel',
  'ahithophel',
  'saw',
  'advice',
  'followed',
  'saddled',
  'donkey',
  'arose',
  'went',
  'home',
  'house',
  'city',
  'put',
  'household',
  'order',
  'hanged',
  'died',
  'buried',
  'fathers',
  'tomb',
  'notice',
  'stated',
  'ahithophel',
  'hanged',
  'gr',
  'sept',
  'apagcho',
  'explicitly',
  'adds',
  'died',
  'doubt',
  'result',
  'matthew',
  'explicitly',
  'told',
  'judas',
  'died',
  'note',
  'mr',
  'decenso',
  'say',
  'septuagint',
  'translation',
  'hebrew',
  'greek',
  'shown',
  'original',
  'meaning',
  'hebrew',
  'ie',
  'hebrew',
  'say',
  'died',
  'thus',
  'whether',
  'simply',
  'echoed',
  'greek',
  'also',
  'pointed',
  'regardless',
  'added',
  'died',
  'correct',
  'translation',
  'would',
  'still',
  'apacgw',
  'man',
  'indeed',
  'die',
  'strangulation',
  'redundant',
  'correct',
  'evidence',
  'septuagint',
  'repeatedly',
  'rewritten',
  'reedited',
  'included',
  'versions',
  'contradicted',
  'editing',
  'even',
  'necessarily',
  'executed',
  'greeks',
  'thus',
  'sure',
  'septuagint',
  'stands',
  'paragon',
  'ancient',
  'greek',
  'really',
  'need',
  'prove',
  'point',
  'mr',
  'decenso',
  'example',
  'ancient',
  'greek',
  'someone',
  'committing',
  'apacgw',
  'surviving',
  'otherwise',
  'would',
  'see',
  'simply',
  'making',
  'worthless',
  'assertions',
  'without',
  'corresponding',
  'evidence',
  'would',
  'note',
  'mr',
  'decenso',
  'everytime',
  'go',
  'way',
  'research',
  'one',
  'apparently',
  'contrived',
  'exegisis',
  'pretty',
  'much',
  'find',
  'false',
  'thus',
  'think',
  'going',
  'add',
  'text',
  'something',
  'source',
  'clearly',
  'says',
  'better',
  'explicit',
  'greek',
  'historical',
  'source',
  'justify',
  'way',
  'mr',
  'roses',
  'statement',
  'trees',
  'around',
  'potters',
  'field',
  'still',
  'trees',
  'around',
  'ledges',
  'rocky',
  'pavement',
  'bottom',
  'unless',
  'mr',
  'rose',
  'show',
  'trees',
  'two',
  'thousand',
  'years',
  'old',
  'year',
  'old',
  'stumps',
  'thousand',
  'year',
  'old',
  'description',
  'area',
  'mentions',
  'trees',
  'inappropriate',
  'assert',
  'present',
  'placement',
  'trees',
  'prove',
  'location',
  'trees',
  'two',
  'thousand',
  'years',
  'ago',
  'things',
  'change',
  'argument',
  'ie',
  'money',
  'judas',
  'used',
  'silvers',
  'second',
  'question',
  'mr',
  'decenso',
  'ask',
  'could',
  'sure',
  'money',
  'judas',
  'purchased',
  'land',
  'indeed',
  'betrayal',
  'rather',
  'source',
  'would',
  'point',
  'acts',
  'specifically',
  'mention',
  'reward',
  'iniquity',
  'acts',
  'also',
  'specifically',
  'mentions',
  'act',
  'iniquity',
  'talking',
  'ie',
  'acts',
  'concerning',
  'judas',
  'guide',
  'arrested',
  'jesus',
  'would',
  'point',
  'bible',
  'describes',
  'act',
  'iniquity',
  'immediately',
  'discusses',
  'reward',
  'iniquity',
  'would',
  'rather',
  'inane',
  'suggest',
  'action',
  'iniquity',
  'one',
  'discussed',
  'notice',
  'verse',
  'word',
  'iniquity',
  'used',
  'rather',
  'states',
  'judas',
  'became',
  'guide',
  'arrested',
  'jesus',
  'writer',
  'stop',
  'vs',
  'numbered',
  'us',
  'obtained',
  'part',
  'ministry',
  'part',
  'judas',
  'play',
  'ministry',
  'true',
  'peter',
  'author',
  'acts',
  'specifically',
  'call',
  'judas',
  'betrayal',
  'iniquity',
  'matter',
  'neither',
  'john',
  'specifically',
  'call',
  'judas',
  'actions',
  'iniquity',
  'either',
  'john',
  'say',
  'judas',
  'took',
  'money',
  'box',
  'rather',
  'said',
  'thought',
  'judas',
  'money',
  'box',
  'jesus',
  'telling',
  'buy',
  'need',
  'feast',
  'give',
  'something',
  'poor',
  'receiving',
  'morsel',
  'immediately',
  'went',
  'night',
  'note',
  'said',
  'judas',
  'left',
  'say',
  'took',
  'money',
  'box',
  'thus',
  'see',
  'explanation',
  'still',
  'seems',
  'would',
  'choose',
  'unproven',
  'iniquity',
  'mentioned',
  'another',
  'author',
  'different',
  'book',
  'written',
  'different',
  'time',
  'iniquity',
  'explicitly',
  'mentioned',
  'author',
  'acts',
  'find',
  'forced',
  'contrived',
  'course',
  'particular',
  'argument',
  'becomes',
  'moot',
  'since',
  'seen',
  'evidence',
  'apacgw',
  'means',
  'suicide',
  'see',
  'since',
  'judas',
  'hanging',
  'successful',
  'could',
  'spent',
  'money',
  'mentioned',
  'john',
  'matthew',
  'mark',
  'explicitly',
  'say',
  'betrayal',
  'high',
  'holy',
  'day',
  'ie',
  'passover',
  'thus',
  'could',
  'spent',
  'money',
  'killing',
  'next',
  'day',
  'thus',
  'money',
  'bought',
  'field',
  'blood',
  'would',
  'pieces',
  'silver',
  'course',
  'got',
  'pieces',
  'silver',
  'night',
  'well',
  'thus',
  'couldnt',
  'spent',
  'either',
  'oh',
  'dear',
  'believe',
  'house',
  'cards',
  'comming',
  'maybe',
  'point',
  'discuss',
  'whether',
  'jesus',
  'crucified',
  'friday',
  'saturday',
  'part',
  'argument',
  'judas',
  'way',
  'prophesy',
  'potters',
  'field',
  'came',
  'ie',
  'mention',
  'matthew',
  'say',
  'please',
  'done',
  'study',
  'death',
  'remind',
  'discuss',
  'reminding',
  'discuss',
  'part',
  'verse',
  'discussing',
  'wish',
  'would',
  'quit',
  'procrastinating',
  'sidestepping',
  'issues',
  'later',
  'dave',
  'butler',
  'wise',
  'man',
  'proportions',
  'belief',
  'evidence',
  'david',
  'hume',
  'philosopher',
  'inquiry',
  'concerning',
  'human',
  'understanding',
  'ps',
  'would',
  'note',
  'stating',
  'bible',
  'possibly',
  'inerrant',
  'stating',
  'inerrant',
  'since',
  'admission',
  'presenting',
  'merely',
  'possible',
  'reconciliations',
  'course',
  'dont',
  'rate',
  'highly',
  'best',
  'say',
  'bible',
  'possibly',
  'inerrant',
  'inerrant'],
 ['augustyn',
  'robert',
  'address',
  'interliving',
  'organization',
  'university',
  'windsor',
  'ontario',
  'canada',
  'lines',
  'address',
  'interliving',
  'memmory',
  'modules',
  'interliving',
  'thanks',
  'advance',
  'info',
  'robert'],
 ['lori',
  'iannamico',
  'pens',
  'box',
  'score',
  'nntp',
  'posting',
  'host',
  'lli',
  'mach',
  'cs',
  'cmu',
  'organization',
  'school',
  'computer',
  'science',
  'carnegie',
  'mellon',
  'lines',
  'pens',
  'nj',
  'devils',
  'first',
  'period',
  'scoring',
  'pittsburgh',
  'daniels',
  'needham',
  'tippett',
  'nj',
  'devils',
  'lemieux',
  'semak',
  'driver',
  'pittsburgh',
  'stevens',
  'tocchet',
  'murphy',
  'ppg',
  'nj',
  'devils',
  'zelepukin',
  'driver',
  'niedermayer',
  'penalties',
  'pgh',
  'stevens',
  'roughing',
  'njd',
  'pellerin',
  'double',
  'minor',
  'cross',
  'checking',
  'njd',
  'zelepukin',
  'tripping',
  'njd',
  'stasny',
  'holding',
  'pgh',
  'taglianetti',
  'roughing',
  'njd',
  'lemieux',
  'roughing',
  'pgh',
  'jagr',
  'tripping',
  'second',
  'period',
  'scoring',
  'pittsburgh',
  'lemieux',
  'murphy',
  'tocchet',
  'nj',
  'devils',
  'semak',
  'lemieux',
  'zelepukin',
  'pittsburgh',
  'mceachern',
  'jagr',
  'barrasso',
  'njd',
  'stevens',
  'guerin',
  'pellerin',
  'pittsburgh',
  'lemieux',
  'unassisted',
  'shg',
  'nj',
  'devils',
  'richer',
  'nicholls',
  'nj',
  'devils',
  'lemieux',
  'zelepukin',
  'penalties',
  'pgh',
  'stevens',
  'roughing',
  'njd',
  'mckay',
  'roughing',
  'pgh',
  'mullen',
  'hooking',
  'pgh',
  'tocchet',
  'roughing',
  'njd',
  'stevens',
  'slashing',
  'njd',
  'lemieux',
  'unsportsmanlike',
  'conduct',
  'pgh',
  'samuelsson',
  'cross',
  'checking',
  'pgh',
  'barrasso',
  'double',
  'minor',
  'spearing',
  'served',
  'mceachern',
  'njd',
  'holik',
  'cross',
  'checking',
  'njd',
  'lemieux',
  'roughing',
  'third',
  'period',
  'scoring',
  'pittsburgh',
  'mullen',
  'jagr',
  'lemieux',
  'penalties',
  'njd',
  'daneyko',
  'interference',
  'pgh',
  'stevens',
  'roughing',
  'njd',
  'holik',
  'roughing',
  'pgh',
  'match',
  'penalty',
  'game',
  'misconduct',
  'njd',
  'zelepukin',
  'tripping',
  'pgh',
  'stevens',
  'roughing',
  'njd',
  'daneyko',
  'roughing',
  'overtime',
  'scoring',
  'scoring',
  'penalties',
  'penalties',
  'shots',
  'goal',
  'pittsburgh',
  'nj',
  'devils',
  'goalies',
  'barrasso',
  'shots',
  'saves',
  'billington',
  'shots',
  'saves',
  'ref',
  'devorski',
  'linesmen',
  'gauthier',
  'vines',
  'lori',
  'contact',
  'penguins'],
 ['james',
  'kahn',
  'tigers',
  'organization',
  'university',
  'rochester',
  'rochester',
  'ny',
  'lines',
  'nntp',
  'posting',
  'host',
  'troi',
  'cc',
  'rochester',
  'article',
  'michael',
  'wynblatt',
  'writes',
  'weird',
  'thing',
  'leading',
  'going',
  'top',
  'ninth',
  'sparky',
  'used',
  'ace',
  'closer',
  'henneman',
  'tigers',
  'relievers',
  'least',
  'rested',
  'available',
  'sparky',
  'trust',
  'little',
  'think',
  'wanted',
  'get',
  'henneman',
  'work',
  'tigers',
  'days',
  'day',
  'day',
  'jim'],
 ['army',
  'space',
  'lines',
  'nntp',
  'posting',
  'host',
  'acad',
  'alaska',
  'organization',
  'university',
  'alaska',
  'fairbanks',
  'last',
  'heard',
  'budget',
  'air',
  'farce',
  'space',
  'command',
  'left',
  'rest',
  'missions',
  'generally',
  'given',
  'air',
  'farce',
  'probably',
  'good',
  'reason',
  'transfer',
  'army',
  'guard',
  'air',
  'guard',
  'hate',
  'walking',
  'pack',
  'back',
  'put',
  'application',
  'job',
  'kitchen',
  'worker',
  'done',
  'lot',
  'kp',
  'kitchen',
  'police',
  'michael',
  'adams',
  'im',
  'high',
  'jacked'],
 ['robert',
  'emmons',
  'mail',
  'order',
  'article',
  'iat',
  'ja',
  'fvx',
  'organization',
  'holonet',
  'national',
  'internet',
  'access',
  'bbs',
  'modem',
  'lines',
  'get',
  'good',
  'service',
  'shop',
  'regularly',
  'merchandise',
  'stock',
  'need',
  'knowledgable',
  'friendly',
  'sales',
  'staff',
  'whatever',
  'reason',
  'would',
  'like',
  'business',
  'aggrigate',
  'keep',
  'business',
  'available',
  'fill',
  'future',
  'needs',
  'charge',
  'item',
  'another',
  'store',
  'usually',
  'purchase',
  'item',
  'store',
  'choice',
  'pay',
  'lowest',
  'legitimate',
  'price',
  'offered',
  'elsewhere',
  'sounds',
  'pretty',
  'lame',
  'let',
  'see',
  'understand',
  'friends',
  'charge',
  'extra',
  'much',
  'usually',
  'pay',
  'little',
  'friendliness',
  'seems',
  'like',
  'youre',
  'serviced',
  'friendly',
  'sales',
  'people',
  'robert',
  'emmons',
  'never',
  'hesitate',
  'sacrifice',
  'clarity',
  'calcshop',
  'inc',
  'maintainability',
  'save',
  'precious',
  'picoseconds',
  'program',
  'execution'],
 ['brian',
  'hughes',
  'new',
  'apple',
  'ergo',
  'mouse',
  'reply',
  'organization',
  'dartmouth',
  'college',
  'hanover',
  'nh',
  'disclaimer',
  'personally',
  'really',
  'dont',
  'care',
  'think',
  'speak',
  'moderator',
  'rec',
  'arts',
  'comics',
  'info',
  'lines',
  'schizophrenia',
  'means',
  'never',
  'alone',
  'writes',
  'anyone',
  'know',
  'open',
  'apple',
  'ergo',
  'mouse',
  'adb',
  'mouse',
  'ii',
  'mine',
  'lives',
  'near',
  'cat',
  'true',
  'really',
  'picks',
  'fur',
  'tell',
  'looks',
  'like',
  'apple',
  'welded',
  'shut',
  'must',
  'tried',
  'hard',
  'opend',
  'mine',
  'seconds',
  'take',
  'look',
  'bottom',
  'dial',
  'turns',
  'open',
  'much',
  'like',
  'older',
  'adb',
  'mouses',
  'used',
  'bit',
  'harder',
  'turn',
  'first',
  'quite',
  'simple',
  'open',
  'also',
  'anyone',
  'know',
  'installing',
  'fpus',
  'mac',
  'lc',
  'iii',
  'ive',
  'heard',
  'people',
  'saying',
  'fried',
  'motherboard',
  'lc',
  'iii',
  'well',
  'dont',
  'match',
  'pins',
  'correctly',
  'problems',
  'close',
  'look',
  'socket',
  'give',
  'idea',
  'proper',
  'orientation',
  'chip',
  'hades'],
 ['richard',
  'polinski',
  'winning',
  'streaks',
  'organization',
  'university',
  'pittsburgh',
  'lines',
  'article',
  'robbie',
  'po',
  'writes',
  'penguins',
  'game',
  'unbeaten',
  'streak',
  'carries',
  'next',
  'season',
  'meaning',
  'start',
  'season',
  'another',
  'game',
  'unbeaten',
  'streak',
  'eclipsed',
  'flyers',
  'record',
  'right',
  'penguins',
  'game',
  'winning',
  'streak',
  'streaks',
  'carry',
  'one',
  'year',
  'another',
  'hmmmm',
  'im',
  'sure',
  'true',
  'according',
  'mike',
  'lang',
  'good',
  'old',
  'stagie',
  'along',
  'rest',
  'tv',
  'crews',
  'pittsburgh',
  'winning',
  'streak',
  'could',
  'stopped',
  'regular',
  'season',
  'mark',
  'would',
  'think',
  'would',
  'also',
  'hold',
  'unbeaten',
  'streak',
  'regular',
  'season',
  'games',
  'however',
  'right',
  'playoff',
  'streak',
  'carry',
  'last',
  'year',
  'win',
  'believe',
  'tie',
  'edmonton',
  'record',
  'dont',
  'quote',
  'one',
  'robbie',
  'po',
  'pgh',
  'penguins',
  'wont',
  'easy',
  'contact',
  'stanley',
  'cup',
  'greater',
  'rewards',
  'penn',
  'state',
  'lady',
  'lions',
  'champions',
  'mountains',
  'valleys',
  'straight',
  'wins',
  'better',
  'nothing'],
 ['george',
  'hodge',
  'dayton',
  'hamfest',
  'summary',
  'dayton',
  'hamfest',
  'organization',
  'distribution',
  'usa',
  'lines',
  'weeks',
  'ago',
  'someone',
  'posted',
  'article',
  'telling',
  'hamfest',
  'computerfest',
  'going',
  'help',
  'dayton',
  'oh',
  'unfortunately',
  'lost',
  'article',
  'wondering',
  'someone',
  'could',
  'repost',
  'believe',
  'held',
  'month',
  'dayton',
  'convention',
  'center',
  'im',
  'sure',
  'help',
  'details',
  'would',
  'greatly',
  'appreciated',
  'george',
  'hodge'],
 ['kevin',
  'plaxco',
  'boom',
  'whoosh',
  'organization',
  'california',
  'institute',
  'technology',
  'pasadena',
  'ca',
  'lines',
  'nntp',
  'posting',
  'host',
  'sgi',
  'wag',
  'caltech',
  'article',
  'bruce',
  'watson',
  'writes',
  'pageos',
  'two',
  'echo',
  'balloons',
  'inflated',
  'substance',
  'expanded',
  'vacuum',
  'called',
  'gas',
  'inflated',
  'substance',
  'longer',
  'needed',
  'since',
  'nothing',
  'cause',
  'balloon',
  'collapse',
  'inflatable',
  'structure',
  'could',
  'suffer',
  'multiple',
  'holes',
  'disastrous',
  'deflation',
  'balloons',
  'sufficiently',
  'low',
  'orbit',
  'experienced',
  'air',
  'resistance',
  'finally',
  'punctured',
  'preasure',
  'internal',
  'preasure',
  'needed',
  'maintain',
  'spherical',
  'shape',
  'resistance',
  'caused',
  'deflated',
  'large',
  'silvered',
  'shards',
  'remained',
  'easily',
  'visible',
  'time',
  'reentry',
  'though',
  'longer',
  'useful',
  'passive',
  'transponder',
  'billboard',
  'pop',
  'like',
  'dime',
  'store',
  'balloon'],
 ['richard',
  'stueven',
  'octopus',
  'detroit',
  'reply',
  'organization',
  'wind',
  'river',
  'systems',
  'inc',
  'lines',
  'nntp',
  'posting',
  'host',
  'gakbox',
  'faq',
  'fun',
  'gak',
  'richard',
  'stueven',
  'aha',
  'erected',
  'multitude',
  'new',
  'internet',
  'go',
  'offices',
  'sent',
  'hither',
  'swarms',
  'attmail',
  'attmail',
  'gakhaus',
  'gak',
  'sharx',
  'officers',
  'harass',
  'people',
  'cow',
  'palace',
  'eat',
  'substance'],
 ['ibrahim',
  'terminal',
  'sale',
  'organization',
  'nyx',
  'public',
  'access',
  'unix',
  'denver',
  'math',
  'cs',
  'dept',
  'distribution',
  'usa',
  'lines',
  'vt',
  'vt',
  'compatible',
  'terminal',
  'external',
  'hyess',
  'modem',
  'amber',
  'screens',
  'keyboard',
  'cable',
  'make',
  'offer'],
 ['anwar',
  'mohammed',
  'remember',
  'names',
  'come',
  'election',
  'time',
  'keywords',
  'usa',
  'federal',
  'government',
  'international',
  'non',
  'usa',
  'government',
  'nntp',
  'posting',
  'host',
  'gs',
  'sp',
  'cs',
  'cmu',
  'organization',
  'school',
  'computer',
  'science',
  'carnegie',
  'mellon',
  'lines',
  'article',
  'peter',
  'nelson',
  'writes',
  'btw',
  'bosnias',
  'large',
  'moslem',
  'population',
  'nations',
  'like',
  'turkey',
  'saudi',
  'arabia',
  'syria',
  'egypt',
  'others',
  'either',
  'money',
  'strong',
  'military',
  'forces',
  'spoken',
  'forcibly',
  'offered',
  'help',
  'bosnia',
  'obviously',
  'really',
  'dont',
  'know',
  'spoken',
  'cf',
  'secy',
  'state',
  'christophers',
  'recent',
  'trip',
  'provided',
  'millions',
  'aid',
  'participated',
  'airlifts',
  'sarajevo',
  'would',
  'supply',
  'military',
  'aid',
  'un',
  'would',
  'lift',
  'embargo',
  'arms',
  'sales',
  'turkish',
  'ambassador',
  'ocassionally',
  'said',
  'thing',
  'two',
  'thats',
  'see',
  'great',
  'enthusism',
  'places',
  'get',
  'hands',
  'dirty',
  'us',
  'always',
  'get',
  'stuck',
  'stuff',
  'see',
  'kuwait',
  'directly',
  'participated',
  'airlift',
  'food',
  'sarajevo',
  'besides',
  'theres',
  'case',
  'made',
  'us',
  'military',
  'involvement',
  'doesnt',
  'apply',
  'equally',
  'well',
  'say',
  'liberia',
  'angola',
  'appears',
  'khmer',
  'rouges',
  'new',
  'campaign',
  'cambodia',
  'non',
  'whites',
  'dont',
  'count',
  'hmm',
  'might',
  'say',
  'kuwaitis',
  'non',
  'white',
  'ooops',
  'forgot',
  'kuwaitis',
  'oil',
  'rich',
  'loaded',
  'petro',
  'dollars',
  'etc',
  'dont',
  'count',
  'peter'],
 ['daniel',
  'cohen',
  'interesting',
  'adb',
  'behaviour',
  'nntp',
  'posting',
  'host',
  'yalevm',
  'ycc',
  'yale',
  'organization',
  'yale',
  'university',
  'lines',
  'article',
  'lawrence',
  'doliveiro',
  'waikato',
  'university',
  'writes',
  'ive',
  'noticed',
  'interesting',
  'phenomenon',
  'centris',
  'unplug',
  'keyboard',
  'mouse',
  'plug',
  'without',
  'turning',
  'power',
  'mouse',
  'suddenly',
  'switches',
  'half',
  'normal',
  'movement',
  'speed',
  'check',
  'mouse',
  'control',
  'panel',
  'theres',
  'change',
  'setting',
  'still',
  'full',
  'speed',
  'way',
  'like',
  'restarting',
  'machine',
  'restores',
  'normal',
  'mouse',
  'speed',
  'way',
  'happens',
  'newer',
  'style',
  'mouse',
  'came',
  'centris',
  'older',
  'style',
  'mouse',
  'iifx',
  'work',
  'thus',
  'dont',
  'think',
  'anything',
  'resolution',
  'setting',
  'mouse',
  'definitely',
  'quirk',
  'adb',
  'interface',
  'either',
  'hardware',
  'software',
  'centris',
  'noticed',
  'exact',
  'phenomenon',
  'occurs',
  'lciii',
  'perhaps',
  'quirk',
  'new',
  'machines',
  'dan'],
 ['gordon',
  'banks',
  'request',
  'information',
  'essential',
  'tremor',
  'indrol',
  'reply',
  'gordon',
  'banks',
  'organization',
  'univ',
  'pittsburgh',
  'computer',
  'science',
  'lines',
  'article',
  'writes',
  'essential',
  'tremor',
  'progressive',
  'hereditary',
  'tremor',
  'gets',
  'worse',
  'patient',
  'tries',
  'effected',
  'member',
  'limbs',
  'vocal',
  'cords',
  'head',
  'involved',
  'inderal',
  'beta',
  'blocker',
  'usually',
  'effective',
  'diminishing',
  'tremor',
  'alcohol',
  'mysoline',
  'also',
  'effective',
  'alcohol',
  'toxic',
  'treatment',
  'gordon',
  'banks',
  'jxp',
  'skepticism',
  'chastity',
  'intellect',
  'shameful',
  'surrender',
  'soon'],
 ['douglas',
  'fowler',
  'christian',
  'parenting',
  'organization',
  'case',
  'western',
  'reserve',
  'university',
  'cleveland',
  'ohio',
  'usa',
  'lines',
  'sorry',
  'posting',
  'mail',
  'keeps',
  'bouncing',
  'maybe',
  'help',
  'others',
  'anyway',
  'therefore',
  'pray',
  'others',
  'read',
  'actually',
  'response',
  'aunt',
  'kids',
  'since',
  'none',
  'yet',
  'hi',
  'sociology',
  'student',
  'currently',
  'researching',
  'young',
  'offenders',
  'looking',
  'way',
  'various',
  'groups',
  'children',
  'raised',
  'home',
  'moment',
  'formlulating',
  'information',
  'discipline',
  'within',
  'christian',
  'home',
  'please',
  'parent',
  'catagory',
  'email',
  'response',
  'following',
  'questionaire',
  'responses',
  'treated',
  'confidentially',
  'used',
  'prepare',
  'stats',
  'im',
  'posting',
  'good',
  'christian',
  'relative',
  'mail',
  'access',
  'since',
  'aunt',
  'uncle',
  'kids',
  'felt',
  'would',
  'relevant',
  'none',
  'yet',
  'ages',
  'sexes',
  'children',
  'year',
  'old',
  'yo',
  'twins',
  'yo',
  'boy',
  'yo',
  'boy',
  'yo',
  'girl',
  'spank',
  'kids',
  'dont',
  'call',
  'spanking',
  'yes',
  'rarely',
  'often',
  'dont',
  'call',
  'spanking',
  'reaction',
  'something',
  'dangerous',
  'trying',
  'stick',
  'finger',
  'fan',
  'running',
  'road',
  'maybe',
  'times',
  'except',
  'yo',
  'girl',
  'spanked',
  'yet',
  'call',
  'hurt',
  'feelings',
  'course',
  'give',
  'hugs',
  'stuff',
  'ensure',
  'know',
  'theyre',
  'still',
  'loved',
  'implement',
  'spank',
  'would',
  'painful',
  'traumatic',
  'never',
  'recall',
  'punished',
  'besides',
  'must',
  'immediate',
  'taking',
  'time',
  'go',
  'get',
  'toolmeans',
  'youre',
  'right',
  'away',
  'lessens',
  'impact',
  'emotional',
  'child',
  'evidenced',
  'fact',
  'little',
  'slap',
  'rear',
  'hurts',
  'perhaps',
  'seconds',
  'called',
  'spanking',
  'spank',
  'method',
  'discipline',
  'lots',
  'logical',
  'consequences',
  'instance',
  'yo',
  'matthew',
  'dared',
  'good',
  'friend',
  'jump',
  'treehouse',
  'would',
  'push',
  'made',
  'sure',
  'didnt',
  'play',
  'together',
  'days',
  'hed',
  'know',
  'would',
  'make',
  'lose',
  'friends',
  'quickly',
  'hes',
  'never',
  'done',
  'anything',
  'like',
  'since',
  'also',
  'time',
  'rooms',
  'timer',
  'dont',
  'keep',
  'arguing',
  'leaving',
  'since',
  'hard',
  'argue',
  'macine',
  'go',
  'closed',
  'door',
  'tell',
  'timeout',
  'wont',
  'calm',
  'theyre',
  'tantrumy',
  'top',
  'stairs',
  'theyre',
  'really',
  'young',
  'age',
  'location',
  'bath',
  'ohio',
  'right',
  'outside',
  'akron',
  'northeast',
  'part',
  'ohio',
  'age',
  'ever',
  'commit',
  'criminal',
  'offence',
  'none',
  'kids',
  'would',
  'dream',
  'hope',
  'teach',
  'parents',
  'physical',
  'punishment',
  'isnt',
  'always',
  'required',
  'parents',
  'excuse',
  'hit',
  'hard',
  'ere',
  'disciplined',
  'kid',
  'lots',
  'timeouts',
  'family',
  'husbands',
  'never',
  'used',
  'spankings',
  'fact',
  'grandmother',
  'law',
  'one',
  'kids',
  'almost',
  'never',
  'spanked',
  'around',
  'turn',
  'century',
  'none',
  'us',
  'ever',
  'afoul',
  'law',
  'man',
  'made',
  'gods',
  'law',
  'jesus',
  'says',
  'referring',
  'small',
  'child',
  'holding',
  'ye',
  'least',
  'ye',
  'also',
  'bible',
  'also',
  'says',
  'things',
  'kind',
  'merciful',
  'especially',
  'loving',
  'colossians',
  'room',
  'selfish',
  'anger',
  'ill',
  'admit',
  'ive',
  'tempted',
  'times',
  'ive',
  'felt',
  'like',
  'spanking',
  'hard',
  'anger',
  'maybe',
  'kid',
  'deserved',
  'little',
  'slap',
  'rear',
  'would',
  'given',
  'would',
  'devils',
  'work',
  'could',
  'feel',
  'temptation',
  'angrily',
  'ordered',
  'kid',
  'room',
  'went',
  'room',
  'praying',
  'asking',
  'gods',
  'forgiveness',
  'much',
  'calmer',
  'feel',
  'like',
  'spanking',
  'felt',
  'done',
  'enough',
  'punishment',
  'doug',
  'fowler',
  'age',
  'mommys',
  'daddys',
  'ever',
  'wonder',
  'casey',
  'relatives',
  'give',
  'lots',
  'hugs',
  'love',
  'missed',
  'rd',
  'strike',
  'poem',
  'support',
  'cause',
  'heaven',
  'great',
  'ran',
  'first',
  'made',
  'big',
  'hug',
  'lasts',
  'forever',
  'ever'],
 ...]
In [ ]:
# # Visualize the topics
# import pyLDAvis
# import pyLDAvis.gensim  
# pyLDAvis.enable_notebook()
# vis = pyLDAvis.gensim.prepare(lda_model, corpus, id2word)
# vis
In [ ]:
# Group top 5 sentences under each topic
sent_topics_sorteddf_mallet = pd.DataFrame()
 
sent_topics_outdf_grpd = df_topic_sents_keywords.groupby('Dominant_Topic')
 
for i, grp in sent_topics_outdf_grpd:
    sent_topics_sorteddf_mallet = pd.concat([sent_topics_sorteddf_mallet, 
                                             grp.sort_values(['Perc_Contribution'], ascending=[0]).head(1)], 
                                            axis=0)

# Reset Index    
sent_topics_sorteddf_mallet.reset_index(drop=True, inplace=True)
 
# Format
sent_topics_sorteddf_mallet.columns = ['Topic_Num', "Topic_Perc_Contrib", "Keywords", "Text"]
 
# Show
sent_topics_sorteddf_mallet.head()
In [ ]: