Skip to content

Instantly share code, notes, and snippets.

@fayeip
Created December 16, 2014 02:07
Show Gist options
  • Save fayeip/d97c73cb6d1d73f9fc02 to your computer and use it in GitHub Desktop.
Save fayeip/d97c73cb6d1d73f9fc02 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"worksheets": [
{
"cells": [
{
"metadata": {},
"cell_type": "code",
"input": "import nltk\nfrom nltk.corpus import PlaintextCorpusReader\nimport re\nfrom itertools import chain\nfrom nltk import tokenize\nfrom nltk.corpus import stopwords\nimport nltk.data\nimport json\nimport pdb\nfrom collections import defaultdict",
"prompt_number": 1,
"outputs": [],
"language": "python",
"trusted": true,
"collapsed": false
},
{
"metadata": {},
"cell_type": "code",
"input": "#Importing corpus\ncorpus_root = 'data'\nwordlists = PlaintextCorpusReader(corpus_root, '.*\\\\.txt')\nsent_detector = nltk.data.load('tokenizers/punkt/english.pickle')",
"prompt_number": 2,
"outputs": [],
"language": "python",
"trusted": true,
"collapsed": false
},
{
"metadata": {},
"cell_type": "code",
"input": "#Clean up Process - create date regex parameters \ndate_pattern = '((J(anuary|u(ne|ly))|February|Ma(rch|y)|A(pril|ugust)|(((Sept|Nov|Dec)em)|Octo)ber).*([0-9]))'\nmp = '(J(anuary|u(ne|ly))|February|Ma(rch|y)|A(pril|ugust)|(((Sept|Nov|Dec)em)|Octo)ber)'\nyp = '[0-9]{4}'",
"outputs": [],
"language": "python",
"trusted": false,
"collapsed": false
},
{
"metadata": {},
"cell_type": "code",
"input": "# Testing the patterns \ntest = \"This is the month of November 9, 2014\"\ndate = re.search(date_pattern,test)\nm = re.search(mp,date.group(0))\nmonth = m.group(0)\ny = re.search(yp,date.group(0))\nyear = y.group(0)",
"outputs": [],
"language": "python",
"trusted": false,
"collapsed": false
},
{
"metadata": {},
"cell_type": "code",
"input": "# start processing\n#Set the dictionaries \ncorpus_dict = {}\n\n#Putting it all together\nfor fileid in wordlists.fileids():\n #Part 1: split of xx of DOCUMENTS \n doc_list = re.split('((?m)^\\\\s+[0-9]+\\\\s*of\\\\s*[0-9]+\\\\s+DOCUMENTS)', wordlists.raw(fileid))\n doc_list.pop(0) #got rid of garbage first empty line\n master_list = list() # put all documents by id, header, footer\n #print len(doc_list) # keep for testing -- how many documents within a single file \n \n #Part 2: split into id, head and footer and create a triple tuple \n for idx in range(0, len(doc_list), 2):\n # add a new tuple of id, header, footer\n # split condition in order of importance\n split_conds = ['words\\r\\n\\r\\n', 'Edition\\r\\n\\r\\n', 'Society Desk\\r\\n\\r\\n','Society Desk\\r\\n\\r\\n\\r\\n','DATELINE: Camden, Me.,\\r\\n\\r\\n\\r\\n']\n doc_split = []\n for cond in split_conds:\n doc_split = re.split(cond,doc_list[idx+1], 1)\n if len(doc_split) == 2:\n break\n #Part 2 contd: Error check to see if any of the splits didn't go through \n if len(doc_split) < 2:\n doc_parts = (doc_list[idx], doc_split)\n print \"too few traces\"\n pdb.set_trace()\n elif len(doc_split) > 2:\n print \"too many splits\"\n else:\n doc_parts = (doc_list[idx], doc_split[0], doc_split[1])\n# print doc_split[0]\n# print '<><><><><><><><><>'\n# print doc_split[1]\n# print \"****************************************\"\n master_list.append(doc_parts) #Create that tuple triple \n \n year_counter = []\n #Part 3: Read the header and extract date \n for doc in master_list:\n #Part 3 a: Header cleaning steps \n clean_header = re.sub(r\"\\b(The New York Times|(DATELINE:.*)|(BYLINE.*)|(.*Correction Appended.*)|(SECTION:.*)|(LENGTH:.*)|(LOAD-DATE:.*)|(http:.*)|(LANGUAGE:.*)|(GRAPHIC:.*)|(Copyright.*)|(Late Edition - Final.*))\\b\", \"\", doc[1])\n clean_header = clean_header.replace(\"\\r\",\"\").strip()\n clean_header = [x for x in clean_header.split('\\n') if any(x.isalnum() for x in x)]\n header_final = ' '.join(clean_header)\n\n #Part 3b: Extracting the date\n date = re.search(date_pattern,header_final)\n m = re.search(mp,date.group(0))\n month = m.group(0)\n y = re.search(yp,date.group(0))\n year = y.group(0)\n year_counter.append(year) \n\n if \"Events\" not in header_final:\n body = doc[2]\n clean_sent = re.sub(r\"\\b(The New York Times|(DATELINE:.*)|(SECTION:.*)|(LENGTH:.*)|(LOAD-DATE:.*)|(http:.*)|(URL:.*)|(LANGUAGE:.*)|(PUBLICATION.*)|(GRAPHIC:.*)|(Copyright.*))\\b\", \"\", body)\n body = re.sub('\\r\\n(?!\\r\\n)', ' ',clean_sent)\n\n #Part 4 adding to the dictionary\n corpus_dict.setdefault(year,{}).setdefault(month, []).append((doc[0],header_final,body)) \n \n#Part 5: Write to a JSON file \nwith open('data/dict2014.json', 'wb') as fp:\n json.dump(corpus_dict, fp)\n ",
"outputs": [],
"language": "python",
"trusted": false,
"collapsed": false
},
{
"metadata": {},
"cell_type": "code",
"input": "print corpus_dict['1984']['March']",
"outputs": [],
"language": "python",
"trusted": false,
"collapsed": false
},
{
"metadata": {},
"cell_type": "code",
"input": "#Sent to AWS to tag",
"outputs": [],
"language": "python",
"trusted": false,
"collapsed": false
},
{
"metadata": {},
"cell_type": "code",
"input": "#Download Stanford NER taggers\nfrom nltk.tag.stanford import POSTagger\nfrom nltk.tag.stanford import NERTagger\npost = POSTagger('lib/stanford-postagger-2014-10-26/models/english-bidirectional-distsim.tagger',\n 'lib/stanford-postagger-2014-10-26/stanford-postagger.jar', 'utf-8')\n\nnert = NERTagger('lib/stanford-ner-2014-10-26/classifiers/english.all.3class.distsim.crf.ser.gz',\n 'lib/stanford-ner-2014-10-26/stanford-ner.jar', 'utf-8')",
"outputs": [],
"language": "python",
"trusted": false,
"collapsed": false
},
{
"metadata": {},
"cell_type": "code",
"input": "#Load the entity tagged file as a tuple of tuples \nfrom ast import literal_eval\n\ntagged_1984 = []\n\nwith open('1984_tagged.txt', 'r') as f:\n for line in f:\n line.split(',')\n tagged_1984.append(literal_eval(line.strip()))\n",
"outputs": [],
"language": "python",
"trusted": false,
"collapsed": false
},
{
"metadata": {},
"cell_type": "code",
"input": "#Customizing the tagger\n#assigning a custom tag in the word,tag \n\nfrom ast import literal_eval\n\ndef alter_source(sourcefile):\n f_before = open(sourcefile,'r')\n f_before_str = f_before.read()\n f_before.close()\n\n \"\"\"Customizing the tags labeled 'O'\n 1) Widow , Widower, Widowed >> label: W for widow\n 2) Mr., Mrs., Adm., Sgt., Dr. >> label: PERSON\n 3) Rev., Rabbi, priest >> label: R for religious \n 4) bride >> label: B for bride \n 5) bridegroom, groom >> label: G for groom\n\n \"\"\"\n\n f_after_str = ''\n # Adding the custom tag set 1 - widow\n f_after_str_1 = re.sub(r\"\\(\\'widow\\', \\'O\\'\\)\", \"('widow', 'W')\",f_before_str)\n f_after_str_2 = re.sub(r\"\\(\\'widower\\', \\'O\\'\\)\", \"('widower', 'W')\",f_after_str_1)\n f_after_str_3 = re.sub(r\"\\(\\'widowed\\', \\'O\\'\\)\", \"('widowed', 'W')\",f_after_str_2)\n\n #Adding the custom tag set 2 - person \n f_after_str_4 = re.sub(r\"\\(\\'Mr.\\', \\'O\\'\\)\", \"('Mr.', 'PERSON')\",f_after_str_3)\n f_after_str_5 = re.sub(r\"\\(\\'Mrs.\\', \\'O\\'\\)\", \"('Mrs.', 'PERSON')\",f_after_str_4)\n f_after_str_6 = re.sub(r\"\\(\\'Adm.\\', \\'O\\'\\)\", \"('Adm.', 'PERSON')\",f_after_str_5)\n f_after_str_7 = re.sub(r\"\\(\\'Sgt.\\', \\'O\\'\\)\", \"('Sgt.', 'PERSON')\",f_after_str_6)\n f_after_str_8 = re.sub(r\"\\(\\'Dr.\\', \\'O\\'\\)\", \"('Dr.', 'PERSON')\",f_after_str_7)\n\n\n #Adding the custom tag set 3 - religious head \n f_after_str_9 = re.sub(r\"\\(\\'Rev.\\', \\'O\\'\\)\", \"('Rev.', 'R')\",f_after_str_8)\n f_after_str_10 = re.sub(r\"\\(\\'\\bRabbi\\b\\', \\'O\\'\\)\", \"('Rabbi', 'R')\",f_after_str_9)\n f_after_str_11 = re.sub(r\"\\(\\'\\bpriest\\b\\', \\'O\\'\\)\", \"('priest','R')\",f_after_str_10)\n\n # Adding the custom tag set 4 - divorced\n f_after_str_12 = re.sub(r\"\\(\\'\\bdivorce\\b\\', \\'O\\'\\)\", \"('divorce', 'D')\",f_after_str_11)\n f_after_str_13 = re.sub(r\"\\(\\'\\bdivorced\\b\\', \\'O\\'\\)\", \"('divorced', 'D')\",f_after_str_12)\n\n # Adding the custom tag set 4 - divorced\n f_after_str_14 = re.sub(r\"\\(\\'divorce\\', \\'O\\'\\)\", \"sufia\", f_after_str_13)\n f_after_str_15 = re.sub(r\"\\(\\'divorced\\', \\'O\\'\\)\", \"('divorced', 'D')\",f_after_str_14)\n\n # Adding the custom tag set 5 - bride\n f_after_str_16 = re.sub(r\"\\(\\'\\bbride\\b\\', \\'O\\'\\)\", \"('bride', 'B')\",f_after_str_15)\n\n # Adding the custom tag set 6 - bridegroom\n f_after_str_17 = re.sub(r\"\\(\\'\\bbridegroom\\b\\', \\'O\\'\\)\", \"('bridegroom', 'G')\",f_after_str_16)\n f_after_str_final = re.sub(r\"\\(\\'\\bgroom\\b\\', \\'O\\'\\)\", \"('groom', 'G')\",f_after_str_17)\n \n return f_after_str_final\n\n\ndef apply_custom_tags (targetfile, custom_tags):\n f = open(targetfile,'w')\n f.write(custom_tags)\n f.close()\n\n custom_tag_list = []\n\n with open(targetfile, 'r') as g:\n for line in g:\n line.split('\\n')\n custom_tag_list.append(literal_eval(line.strip()))\n return custom_tag_list",
"prompt_number": 3,
"outputs": [],
"language": "python",
"trusted": true,
"collapsed": false
},
{
"metadata": {},
"cell_type": "code",
"input": "#Run custom tagger for all 5 years\n\ncustom_tagged_1984 = apply_custom_tags('data_tagged2/1984_tagged_custom.txt',alter_source('data_tagged/1984_tagged.txt'))\ncustom_tagged_1990 = apply_custom_tags('data_tagged2/1990_tagged_custom.txt',alter_source('data_tagged/1990_tagged.txt'))\ncustom_tagged_2000 = apply_custom_tags('data_tagged2/2000_tagged_custom.txt',alter_source('data_tagged/2000_tagged.txt'))\ncustom_tagged_2010 = apply_custom_tags('data_tagged2/2010_tagged_custom.txt',alter_source('data_tagged/2010_tagged.txt'))\ncustom_tagged_2014 = apply_custom_tags('data_tagged2/2014_tagged_custom.txt',alter_source('data_tagged/2014_tagged.txt'))",
"prompt_number": 4,
"outputs": [],
"language": "python",
"trusted": true,
"collapsed": false
},
{
"metadata": {},
"cell_type": "code",
"input": "print custom_tagged_1984 ",
"prompt_number": 5,
"outputs": [
{
"output_type": "stream",
"text": "[(('Adrienne', 'PERSON'), ('Sofia', 'PERSON'), ('Andretta', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Gaeton', 'PERSON'), ('J.', 'PERSON'), ('Andretta', 'PERSON'), ('of', 'O'), ('Stamford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Albert', 'PERSON'), ('J.', 'PERSON'), ('Viscio', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Viscio', 'PERSON'), ('of', 'O'), ('Eastchester', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('The', 'O'), ('Rev.', 'R'), ('George', 'PERSON'), ('Eckstein', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Long', 'ORGANIZATION'), ('Ridge', 'ORGANIZATION'), ('Congregational', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('.', 'O'), ('Susan', 'PERSON'), ('Hrvatin', 'PERSON'), ('and', 'O'), ('Paul', 'PERSON'), ('J.', 'PERSON'), ('Viscio', 'PERSON'), (',', 'O'), ('the', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('brother', 'O'), (',', 'O'), ('attended', 'O'), ('the', 'O'), ('couple', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Viscio', 'PERSON'), (',', 'O'), ('formerly', 'O'), ('an', 'O'), ('economist', 'O'), ('with', 'O'), ('Texaco', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('White', 'LOCATION'), ('Plains', 'LOCATION'), (',', 'O'), ('is', 'O'), ('studying', 'O'), ('for', 'O'), ('a', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('at', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Mary', 'ORGANIZATION'), ('Louis', 'ORGANIZATION'), ('Acadamy', 'ORGANIZATION'), ('and', 'O'), ('summa', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Manhattan', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('didgraduate', 'O'), ('work', 'O'), ('at', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (',', 'O'), ('s', 'O'), ('degree', 'O'), ('in', 'O'), ('economics', 'O'), ('from', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('in', 'O'), ('the', 'O'), ('corporate', 'O'), ('commercial', 'O'), ('banking', 'O'), ('division', 'O'), ('of', 'O'), ('the', 'O'), ('Connecticut', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Norwalk', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Viscio', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('economist', 'O'), ('in', 'O'), ('the', 'O'), ('finance', 'O'), ('and', 'O'), ('economics', 'O'), ('department', 'O'), ('of', 'O'), ('Texaco', 'ORGANIZATION'), ('in', 'O'), ('Harrison', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('an', 'O'), ('adjunct', 'O'), ('associate', 'O'), ('professor', 'O'), ('at', 'O'), ('the', 'O'), ('C.V.', 'ORGANIZATION'), ('Starr', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('for', 'ORGANIZATION'), ('Applied', 'ORGANIZATION'), ('Economics', 'ORGANIZATION'), ('at', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('College', 'O'), ('of', 'O'), ('the', 'O'), ('Holy', 'O'), ('Cross', 'O'), (',', 'O'), ('received', 'O'), ('an', 'O'), ('M.A.', 'O'), ('degree', 'O'), ('in', 'O'), ('education', 'O'), ('from', 'O'), ('Manhattanville', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('Ph.D.', 'O'), ('in', 'O'), ('ecomonics', 'O'), ('from', 'O'), ('N.Y.U.', 'ORGANIZATION'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('pharmacist', 'O'), (',', 'O'), ('is', 'O'), ('owner', 'O'), ('of', 'O'), ('Frank', 'PERSON'), (\"'s\", 'O'), ('Drugstore', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('Rochelle', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('N.Y.', 'LOCATION')), (('-1', 'O'), ('-14', 'O'), (',', 'O'), ('2', 'O'), ('lines', 'O'), ('Peg', 'PERSON'), ('Hackett', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('Hackett', 'PERSON'), ('of', 'O'), ('Stony', 'LOCATION'), ('Brook', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('David', 'PERSON'), ('W.', 'PERSON'), ('Fleming', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Lily', 'PERSON'), ('L.', 'PERSON'), ('McCarthy', 'PERSON'), ('of', 'O'), ('Palm', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('William', 'PERSON'), ('W.', 'PERSON'), ('Fleming', 'PERSON'), ('of', 'O'), ('Monte', 'LOCATION'), ('Vista', 'LOCATION'), (',', 'O'), ('Colo.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Herbert', 'PERSON'), ('Anderson', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Brick', 'O'), ('Presbyterian', 'O'), ('Church', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Diana', 'PERSON'), ('Hackett', 'PERSON'), ('was', 'O'), ('her', 'O'), ('sister-in', 'O'), ('-', 'O'), ('law', 'O'), (\"'s\", 'O'), ('matron', 'O'), ('of', 'O'), ('honor', 'O'), ('.', 'O'), ('David', 'PERSON'), ('W.', 'PERSON'), ('Fleming', 'PERSON'), ('2d', 'O'), ('was', 'O'), ('his', 'O'), ('father', 'O'), (\"'s\", 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('and', 'O'), ('Mr.', 'PERSON'), ('Fleming', 'PERSON'), ('are', 'O'), ('senior', 'O'), ('vice', 'O'), ('presidents', 'O'), ('at', 'O'), ('Moseley', 'LOCATION'), (',', 'O'), ('Hallgarten', 'LOCATION'), (',', 'O'), ('Estabrook', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Weeden', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('stock', 'O'), ('brokerage', 'O'), ('concern', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('at', 'O'), ('Stony', 'LOCATION'), ('Brook', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('head', 'O'), ('of', 'O'), ('operations', 'O'), ('at', 'O'), ('L.', 'ORGANIZATION'), ('F.', 'ORGANIZATION'), ('Rothschild', 'ORGANIZATION'), ('Unterberg', 'ORGANIZATION'), ('Towbin', 'ORGANIZATION'), (',', 'O'), ('stockbrokers', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Fleming', 'PERSON'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Connecticut', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('previous', 'O'), ('two', 'O'), ('marriages', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('lawyer', 'O'), ('in', 'O'), ('private', 'O'), ('practice', 'O'), ('in', 'O'), ('Monte', 'LOCATION'), ('Vista', 'LOCATION'), ('.', 'O')), (('Barbara', 'PERSON'), ('Bagden', 'PERSON'), ('Roberts', 'PERSON'), (',', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('and', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('equity', 'ORGANIZATION'), ('marketing', 'ORGANIZATION'), ('department', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Dean', 'ORGANIZATION'), ('Witter', 'ORGANIZATION'), ('Reynolds', 'ORGANIZATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('William', 'PERSON'), ('Lee', 'PERSON'), ('Pryor', 'PERSON'), ('3d', 'O'), (',', 'O'), ('founder', 'O'), (',', 'O'), ('chairman', 'O'), ('and', 'O'), ('chief', 'O'), ('executive', 'O'), ('officer', 'O'), ('of', 'O'), ('the', 'O'), ('Pryor', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('computer', 'O'), ('supplies', 'O'), ('concern', 'O'), ('in', 'O'), ('Chicago', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Richard', 'PERSON'), ('W.', 'PERSON'), ('Schell', 'PERSON'), (',', 'O'), ('headmaster', 'O'), ('of', 'O'), ('the', 'O'), ('Kent', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('from', 'O'), ('which', 'O'), ('the', 'O'), ('bridegroom', 'G'), ('graduated', 'O'), ('and', 'O'), ('of', 'O'), ('which', 'O'), ('he', 'O'), ('is', 'O'), ('a', 'O'), ('trustee', 'O'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Robert', 'PERSON'), ('Cowperthwaite', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('Episcopal', 'O'), ('ceremony', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Paul', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('Chapel', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Trinity', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('.', 'O'), ('Christine', 'PERSON'), ('Cozad', 'PERSON'), ('Berry', 'PERSON'), ('was', 'O'), ('the', 'O'), ('matron', 'O'), ('of', 'O'), ('honor', 'O'), ('and', 'O'), ('William', 'PERSON'), ('F.', 'PERSON'), ('Carr', 'PERSON'), ('was', 'O'), ('the', 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('retain', 'O'), ('her', 'O'), ('name', 'O'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Martin', 'PERSON'), ('A.', 'PERSON'), ('Bagden', 'PERSON'), ('of', 'O'), ('Little', 'LOCATION'), ('Falls', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('management', 'O'), ('consultant', 'O'), ('with', 'O'), ('the', 'O'), ('Western', 'ORGANIZATION'), ('Electric', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Kearny', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('Previous', 'O'), ('marriages', 'O'), ('for', 'O'), ('both', 'O'), ('bride', 'B'), ('and', 'O'), ('bridegroom', 'G'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('Mr.', 'PERSON'), ('Pryor', 'PERSON'), ('is', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Captain', 'O'), ('Pryor', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('U.S.N.', 'ORGANIZATION'), (',', 'O'), ('retired', 'O'), (',', 'O'), ('of', 'O'), ('Mystic', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mary', 'PERSON'), ('Day', 'PERSON'), ('Rouse', 'PERSON'), ('Pryor', 'PERSON'), ('.', 'O'), ('He', 'O'), ('also', 'O'), ('graduated', 'O'), ('from', 'O'), ('Northwestern', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O')), (('-2', 'O'), ('-18', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('James', 'PERSON'), ('Denham', 'PERSON'), ('Wiltshire', 'PERSON'), ('of', 'O'), ('Hamilton', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Elizabeth', 'PERSON'), ('Hartsfield', 'PERSON'), ('Wiltshire', 'PERSON'), ('to', 'O'), ('Jacques', 'PERSON'), ('Nicholas', 'PERSON'), ('Gordon', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Richard', 'PERSON'), ('Seymour', 'PERSON'), ('Gordon', 'PERSON'), ('of', 'O'), ('Tempe', 'LOCATION'), (',', 'O'), ('Ariz.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Rockport', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('A', 'O'), ('June', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('cum', 'O'), ('laude', 'O'), ('graduate', 'O'), ('of', 'O'), ('Harvard', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('research', 'O'), ('assistant', 'O'), ('at', 'O'), ('the', 'O'), ('Management', 'ORGANIZATION'), ('Analysis', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('in', 'O'), ('Cambridge', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('operations', 'O'), ('at', 'O'), ('Orion', 'ORGANIZATION'), ('Research', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('Cambridge', 'LOCATION'), ('manufacturer', 'O'), ('of', 'O'), ('electronic', 'O'), ('equipment', 'O'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Susan', 'PERSON'), ('Davis', 'PERSON'), ('Wiltshire', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('consultant', 'O'), ('at', 'O'), ('Research', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Planning', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('management', 'O'), ('consultants', 'O'), ('in', 'O'), ('Cambridge', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Gordon', 'PERSON'), (',', 'O'), ('a', 'O'), ('doctoral', 'O'), ('candidate', 'O'), ('in', 'O'), ('urban', 'O'), ('studies', 'O'), ('and', 'O'), ('planning', 'O'), ('at', 'O'), ('the', 'O'), ('Massachusetts', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('London', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Economics', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Political', 'ORGANIZATION'), ('Science', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('professor', 'O'), ('of', 'O'), ('agribusiness', 'O'), ('and', 'O'), ('biotechnology', 'O'), ('at', 'O'), ('Arizona', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('grandfather', 'O'), (',', 'O'), ('the', 'O'), ('late', 'O'), ('Jacques', 'PERSON'), ('Gordon', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('concert', 'O'), ('violinist', 'O'), (',', 'O'), ('concertmaster', 'O'), ('of', 'O'), ('the', 'O'), ('Chicago', 'ORGANIZATION'), ('Symphony', 'ORGANIZATION'), ('and', 'O'), ('founder', 'O'), ('of', 'O'), ('Music', 'O'), ('Mountain', 'O'), (',', 'O'), ('a', 'O'), ('chamber', 'O'), ('music', 'O'), ('performance', 'O'), ('and', 'O'), ('teaching', 'O'), ('center', 'O'), ('in', 'O'), ('Falls', 'LOCATION'), ('Village', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O')), (('CHRISTOPHER', 'PERSON'), ('CAVANAGH', 'PERSON'), ('Diane', 'PERSON'), ('Aronson', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Paul', 'PERSON'), ('J.', 'PERSON'), ('Aronson', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Ossining', 'LOCATION'), (',', 'O'), ('N.', 'PERSON'), ('Y.', 'PERSON'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Christopher', 'PERSON'), ('Cavanagh', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('D.', 'PERSON'), ('Cavanagh', 'PERSON'), ('of', 'O'), ('Ossining', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('The', 'O'), ('ceremony', 'O'), ('was', 'O'), ('performed', 'O'), ('by', 'O'), ('Town', 'O'), ('Justice', 'O'), ('Edward', 'PERSON'), ('Shapiro', 'PERSON'), ('of', 'O'), ('Ossining', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('at', 'O'), ('the', 'O'), ('Old', 'O'), ('Stone', 'O'), ('Inn', 'O'), ('in', 'O'), ('Peekskill', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('Mrs.', 'PERSON'), ('Cavanagh', 'PERSON'), ('is', 'O'), ('a', 'O'), ('first', 'O'), ('-', 'O'), ('and', 'O'), ('second-grade', 'O'), ('teacher', 'O'), ('at', 'O'), ('the', 'O'), ('Dalton', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('Skidmore', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('in', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('Aries', 'ORGANIZATION'), ('Group', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('men', 'O'), (\"'s\", 'O'), ('clothing', 'O'), ('company', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Cavanagh', 'PERSON'), ('is', 'O'), ('an', 'O'), ('office', 'O'), ('manager', 'O'), ('and', 'O'), ('graphic', 'O'), ('artist', 'O'), ('with', 'O'), ('Tom', 'ORGANIZATION'), ('Burns', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('graphic', 'O'), ('arts', 'O'), ('company', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Newhouse', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Public', 'ORGANIZATION'), ('Communications', 'ORGANIZATION'), ('at', 'O'), ('Syracuse', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O')), (('Ann', 'PERSON'), ('Swain', 'PERSON'), ('Landreth', 'PERSON'), (',', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('Capelin', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Landreth', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('public', 'O'), ('relations', 'O'), ('firm', 'O'), ('in', 'O'), ('the', 'O'), ('design', 'O'), ('field', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Graham', 'PERSON'), ('de', 'PERSON'), ('Conde', 'PERSON'), ('Gund', 'PERSON'), (',', 'O'), ('the', 'O'), ('president', 'O'), ('of', 'O'), ('Graham', 'ORGANIZATION'), ('Gund', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('architectural', 'O'), ('and', 'O'), ('urban', 'O'), ('planning', 'O'), ('firm', 'O'), ('in', 'O'), ('Boston', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Stewart', 'PERSON'), ('Barns', 'PERSON'), (',', 'O'), ('the', 'O'), ('Episcopal', 'O'), ('chaplain', 'O'), ('at', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('The', 'O'), ('Vale', 'O'), (',', 'O'), ('an', 'O'), ('estate', 'O'), ('in', 'O'), ('Waltham', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('owned', 'O'), ('by', 'O'), ('the', 'O'), ('Society', 'ORGANIZATION'), ('for', 'ORGANIZATION'), ('the', 'ORGANIZATION'), ('Preservation', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('New', 'ORGANIZATION'), ('England', 'ORGANIZATION'), ('Antiquities', 'ORGANIZATION'), ('of', 'O'), ('which', 'O'), ('the', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('director', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Edward', 'PERSON'), ('Swain', 'PERSON'), ('Landreth', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('City', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Elizabeth', 'PERSON'), ('Horan', 'PERSON'), ('Landreth', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('trustee', 'O'), ('of', 'O'), ('the', 'O'), ('Skowhegan', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Painting', 'ORGANIZATION'), ('and', 'O'), ('Sculpture', 'O'), ('in', 'O'), ('Maine', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('The', 'O'), ('Shipley', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Bryn', 'LOCATION'), ('Mawr', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Wheaton', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('retired', 'O'), ('and', 'O'), ('was', 'O'), ('vice', 'O'), ('president', 'O'), ('for', 'O'), ('international', 'O'), ('operations', 'O'), ('for', 'O'), ('Stering', 'ORGANIZATION'), ('Drug', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), ('was', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('and', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('International', 'ORGANIZATION'), ('Rescue', 'ORGANIZATION'), ('Committee', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('which', 'O'), ('helps', 'O'), ('refugees', 'O'), ('throughout', 'O'), ('the', 'O'), ('world', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('retain', 'O'), ('her', 'O'), ('name', 'O'), ('professionally', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Symington', 'PERSON'), ('Phillips', 'PERSON'), ('Landreth', 'PERSON'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Hubert', 'PERSON'), ('J.', 'PERSON'), ('Horan', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('all', 'O'), ('of', 'O'), ('Philadelphia', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Gund', 'PERSON'), (',', 'O'), ('son', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('George', 'PERSON'), ('Frederick', 'PERSON'), ('Gund', 'PERSON'), ('of', 'O'), ('Cleveland', 'LOCATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('trustee', 'O'), ('of', 'O'), ('the', 'O'), ('Boston', 'ORGANIZATION'), ('Museum', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Fine', 'ORGANIZATION'), ('Arts', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('director', 'O'), ('also', 'O'), ('of', 'O'), ('the', 'O'), ('Boston', 'ORGANIZATION'), ('Society', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Architects', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Westminster', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Simsbury', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Kenyon', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('attended', 'O'), ('the', 'O'), ('Rhode', 'ORGANIZATION'), ('Island', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Design', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('masters', 'O'), ('degrees', 'O'), ('in', 'O'), ('architecture', 'O'), ('and', 'O'), ('urban', 'O'), ('planning', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (\"'s\", 'O'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Design', 'ORGANIZATION'), ('whose', 'O'), ('George', 'PERSON'), ('Gund', 'PERSON'), ('Hall', 'PERSON'), ('was', 'O'), ('named', 'O'), ('after', 'O'), ('the', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('father', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('chairman', 'O'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Cleveland', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('now', 'O'), ('Ameritrust', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('was', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('board', 'O'), ('of', 'O'), ('overseers', 'O'), ('at', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('board', 'O'), ('of', 'O'), ('trustees', 'O'), ('of', 'O'), ('the', 'O'), ('Cleveland', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Art', 'ORGANIZATION'), ('.', 'O')), (('Marissa', 'PERSON'), ('Turull', 'PERSON'), ('Johnson', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Howard', 'PERSON'), ('Brennan', 'PERSON'), ('Johnson', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('William', 'PERSON'), ('Justus', 'PERSON'), ('Brock', 'PERSON'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('James', 'PERSON'), ('E.', 'PERSON'), ('Brock', 'PERSON'), ('of', 'O'), ('Grosse', 'LOCATION'), ('Pointe', 'LOCATION'), ('Shores', 'LOCATION'), (',', 'O'), ('Mich.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Thomas', 'PERSON'), ('D.', 'PERSON'), ('Bowers', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Bartholomew', 'ORGANIZATION'), (\"'s\", 'O'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Patricia', 'PERSON'), ('B.', 'PERSON'), ('Johnson', 'PERSON'), ('was', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('for', 'O'), ('her', 'O'), ('sister', 'O'), ('.', 'O'), ('Other', 'O'), ('attendants', 'O'), ('were', 'O'), ('Veronica', 'PERSON'), ('Bulgari', 'PERSON'), (',', 'O'), ('Julie', 'PERSON'), ('Araskog', 'PERSON'), (',', 'O'), ('Lillian', 'PERSON'), ('Johnson', 'PERSON'), (',', 'O'), ('Evelyn', 'PERSON'), ('Owen', 'PERSON'), (',', 'O'), ('a', 'O'), ('cousin', 'O'), ('of', 'O'), ('the', 'O'), ('bride', 'B'), (',', 'O'), ('Avis', 'PERSON'), ('Navarro', 'PERSON'), ('and', 'O'), ('Janine', 'PERSON'), ('Lederman', 'PERSON'), ('.', 'O'), ('James', 'PERSON'), ('E.', 'PERSON'), ('Brock', 'PERSON'), ('Jr.', 'PERSON'), ('served', 'O'), ('as', 'O'), ('best', 'O'), ('man', 'O'), ('for', 'O'), ('his', 'O'), ('brother', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('received', 'O'), ('a', 'O'), ('B.A.', 'O'), ('degree', 'O'), ('in', 'O'), ('French', 'O'), ('in', 'O'), ('December', 'O'), ('from', 'O'), ('Duke', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('attended', 'O'), ('the', 'O'), ('Mount', 'ORGANIZATION'), ('Olivet', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Laussane', 'LOCATION'), (',', 'O'), ('Switzerland', 'LOCATION'), (',', 'O'), ('and', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Spence', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('former', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('Board', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('the', 'ORGANIZATION'), ('Howard', 'ORGANIZATION'), ('Johnson', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('consultant', 'O'), ('in', 'O'), ('general', 'O'), ('matters', 'O'), ('to', 'O'), ('the', 'O'), ('restaurant', 'O'), ('chain', 'O'), ('and', 'O'), ('motor', 'O'), ('lodge', 'O'), ('chain', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Brock', 'PERSON'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('Evelyn', 'PERSON'), ('T.', 'PERSON'), ('Bates', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Theodore', 'PERSON'), ('L.', 'PERSON'), ('Bates', 'PERSON'), (',', 'O'), ('founder', 'O'), ('of', 'O'), ('Ted', 'ORGANIZATION'), ('Bates', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Reginald', 'PERSON'), ('J.', 'PERSON'), ('White', 'O'), ('of', 'O'), ('Delray', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Howard', 'PERSON'), ('Deering', 'PERSON'), ('Johnson', 'PERSON'), (',', 'O'), ('founder', 'O'), ('of', 'O'), ('the', 'O'), ('Howard', 'ORGANIZATION'), ('Johnson', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Brock', 'PERSON'), (',', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('in', 'O'), ('the', 'O'), ('short', 'O'), ('term', 'O'), ('finance', 'ORGANIZATION'), ('department', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('the', 'ORGANIZATION'), ('First', 'ORGANIZATION'), ('Boston', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Choate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('Harvard', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Harvard', 'ORGANIZATION'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('Administration', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('independent', 'O'), ('paper', 'O'), ('products', 'O'), ('broker', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Brock', 'PERSON'), (\"'s\", 'O'), ('grandparents', 'O'), ('are', 'O'), ('the', 'O'), ('late', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Edward', 'PERSON'), ('A.', 'PERSON'), ('Wagner', 'PERSON'), ('of', 'O'), ('Cincinnati', 'LOCATION'), (',', 'O'), ('Ohio', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Earl', 'PERSON'), ('E.', 'PERSON'), ('Brock', 'PERSON'), ('of', 'O'), ('Anderson', 'LOCATION'), ('Indiana', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('grandfathers', 'O'), ('were', 'O'), ('physicians', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Arnold', 'PERSON'), ('Rosen', 'PERSON'), ('of', 'O'), ('Fort', 'LOCATION'), ('Lee', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('made', 'O'), ('known', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Robin', 'PERSON'), ('Sue', 'PERSON'), ('Rosen', 'PERSON'), (',', 'O'), ('to', 'O'), ('Kevin', 'PERSON'), ('Mark', 'PERSON'), ('Roseff', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Martin', 'PERSON'), ('Roseff', 'PERSON'), ('of', 'O'), ('Clifton', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Rosen', 'PERSON'), ('graduated', 'O'), ('from', 'O'), ('Syracuse', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('fiance', 'O'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('Boston', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Management', 'ORGANIZATION'), ('.', 'O')), (('Mary', 'PERSON'), ('Beth', 'PERSON'), ('Murphy', 'PERSON'), ('and', 'O'), ('Thomas', 'PERSON'), ('E.', 'PERSON'), ('Lurcott', 'PERSON'), (',', 'O'), ('graduates', 'O'), ('of', 'O'), ('Cornell', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('plan', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('in', 'O'), ('September', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Rita', 'PERSON'), ('Murphy', 'PERSON'), ('of', 'O'), ('Pound', 'O'), ('Ridge', 'O'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('William', 'PERSON'), ('A.', 'PERSON'), ('Murphy', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('landscape', 'O'), ('architect', 'O'), ('with', 'O'), ('Vollmer', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('fiance', 'O'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Horace', 'PERSON'), ('V.', 'PERSON'), ('Lurcott', 'PERSON'), ('of', 'O'), ('Beach', 'LOCATION'), ('Haven', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('architect', 'O'), ('with', 'O'), ('Mitchell', 'PERSON'), ('', 'O'), ('Giurgola', 'PERSON'), ('Architects', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Announcement', 'O'), ('has', 'O'), ('been', 'O'), ('made', 'O'), ('by', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Albert', 'PERSON'), ('W.', 'PERSON'), ('Lowe', 'PERSON'), ('of', 'O'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('of', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Diane', 'PERSON'), ('Therese', 'PERSON'), ('Lowe', 'PERSON'), ('to', 'O'), ('John', 'PERSON'), ('Norman', 'PERSON'), ('Desrosier', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('Norman', 'PERSON'), ('W.', 'PERSON'), ('Desrosier', 'PERSON'), ('of', 'O'), ('Wilton', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Naples', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Anne', 'PERSON'), ('C.', 'PERSON'), (\"O'Brien\", 'PERSON'), ('of', 'O'), ('Atlanta', 'LOCATION'), ('and', 'O'), ('Wellesley', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('June', 'O'), ('9', 'O'), ('.', 'O'), ('Miss', 'O'), ('Lowe', 'PERSON'), (',', 'O'), ('a', 'O'), ('candidate', 'O'), ('for', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('at', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Marymount', 'ORGANIZATION'), ('International', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Kingston', 'LOCATION'), (',', 'O'), ('Surrey', 'LOCATION'), (',', 'O'), ('England', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Smith', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('was', 'O'), ('formerly', 'O'), ('an', 'O'), ('analyst', 'O'), ('in', 'O'), ('E.', 'ORGANIZATION'), ('F.', 'ORGANIZATION'), ('Hutton', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (\"'s\", 'O'), ('corporate', 'O'), ('fiance', 'O'), ('department', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('vice', 'O'), ('president', 'O'), (',', 'O'), ('marketing', 'O'), ('with', 'O'), ('the', 'O'), ('ORU', 'O'), ('-LRB-', 'O'), ('Optimum', 'O'), ('Resources', 'O'), ('Utilization', 'O'), ('-RRB-', 'O'), ('Group', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('an', 'O'), ('international', 'O'), ('consulting', 'O'), ('concern', 'O'), ('Mr.', 'PERSON'), ('Desrosier', 'PERSON'), (',', 'O'), ('a', 'O'), ('managing', 'O'), ('director', 'O'), ('of', 'O'), ('A.', 'ORGANIZATION'), ('G.', 'ORGANIZATION'), ('Becker', 'ORGANIZATION'), ('Paribas', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Massachusetts', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('formerly', 'O'), ('a', 'O'), ('professor', 'O'), ('of', 'O'), ('food', 'O'), ('science', 'O'), ('and', 'O'), ('technology', 'O'), ('at', 'O'), ('Purdue', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('Products', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Inventor', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('both', 'O'), ('in', 'O'), ('Wilton', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O')), (('Announcement', 'O'), ('has', 'O'), ('been', 'O'), ('made', 'O'), ('by', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('Franklin', 'PERSON'), ('Pritchard', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Liberty', 'O'), (',', 'O'), ('Mo.', 'LOCATION'), (',', 'O'), ('of', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Mary', 'PERSON'), ('Elizabeth', 'PERSON'), ('Pritchard', 'PERSON'), (',', 'O'), ('to', 'O'), ('Matthew', 'PERSON'), ('Clarkson', 'PERSON'), ('Dallett', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Francis', 'PERSON'), ('James', 'PERSON'), ('Dallett', 'PERSON'), ('of', 'O'), ('Villanova', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('Lewis', 'PERSON'), ('and', 'O'), ('Clark', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Portland', 'LOCATION'), (',', 'O'), ('Ore.', 'LOCATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('candidate', 'O'), ('for', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('at', 'O'), ('the', 'O'), ('School', 'ORGANIZATION'), ('for', 'ORGANIZATION'), ('International', 'ORGANIZATION'), ('Training', 'ORGANIZATION'), ('in', 'O'), ('Brattleboro', 'LOCATION'), (',', 'O'), ('Vt.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Habitat', 'O'), ('for', 'O'), ('HumanityKansas', 'ORGANIZATION'), ('City', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('retired', 'O'), ('as', 'O'), ('president', 'O'), ('and', 'O'), ('owner', 'O'), ('of', 'O'), ('Timberlodge', 'LOCATION'), (',', 'O'), ('a', 'O'), ('manufacturer', 'O'), ('of', 'O'), ('pre-cut', 'O'), ('redwood', 'O'), ('homes', 'O'), ('.', 'O'), ('Her', 'O'), ('great-grandfather', 'O'), (',', 'O'), ('Edward', 'PERSON'), ('G.', 'PERSON'), ('Coy', 'PERSON'), (',', 'O'), ('was', 'O'), ('the', 'O'), ('first', 'O'), ('headmaster', 'O'), ('of', 'O'), ('the', 'O'), ('Hotchkiss', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Lakeville', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('fiance', 'O'), (',', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('class', 'O'), ('of', 'O'), (\"'84\", 'O'), ('at', 'O'), ('the', 'O'), ('Northeastern', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('St.', 'ORGANIZATION'), ('Paul', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Concord', 'LOCATION'), (',', 'O'), ('N.H.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Princeton', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('University', 'O'), ('Archivist', 'O'), ('at', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Dallett', 'PERSON'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('L.', 'PERSON'), ('Cheyney', 'PERSON'), ('Smith', 'PERSON'), ('of', 'O'), ('Newtown', 'LOCATION'), ('Square', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('the', 'O'), ('late', 'O'), ('Francis', 'PERSON'), ('J.', 'PERSON'), ('Dallett', 'PERSON'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Henry', 'PERSON'), ('P.', 'PERSON'), ('Brown', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Chestnut', 'LOCATION'), ('Hill', 'LOCATION'), (',', 'O'), ('Philadelphia', 'LOCATION'), ('.', 'O'), ('Dr.', 'PERSON'), ('Brown', 'PERSON'), ('was', 'O'), ('a', 'O'), ('surgeon', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Thomas', 'PERSON'), ('Whitehead', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('Canaan', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Julia', 'PERSON'), ('Marston', 'PERSON'), ('Whitehead', 'PERSON'), (',', 'O'), ('to', 'O'), ('Peter', 'PERSON'), ('Marcussen', 'PERSON'), ('Miller', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('A.', 'PERSON'), ('Miller', 'PERSON'), ('of', 'O'), ('Sao', 'LOCATION'), ('Paulo', 'LOCATION'), (',', 'O'), ('Brazil', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('March', 'O'), ('31', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('manager', 'O'), ('of', 'O'), ('international', 'O'), ('programs', 'O'), ('for', 'O'), ('the', 'O'), ('General', 'ORGANIZATION'), ('Electric', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Fairfield', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Merrill', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Whitehead', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('marketing', 'O'), ('counselors', 'O'), ('of', 'O'), ('New', 'LOCATION'), ('Canaan', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('great-great-granddaughter', 'O'), ('of', 'O'), ('Winifred', 'PERSON'), ('Edgerton', 'PERSON'), ('Merrill', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('a', 'O'), ('founder', 'O'), ('of', 'O'), ('Barnard', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('first', 'O'), ('woman', 'O'), ('to', 'O'), ('receive', 'O'), ('a', 'O'), ('doctorate', 'O'), ('degree', 'O'), (',', 'O'), ('in', 'O'), ('mathematics', 'O'), ('and', 'O'), ('astronomy', 'O'), (',', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Miller', 'PERSON'), ('is', 'O'), ('an', 'O'), ('assistant', 'O'), ('treasurer', 'O'), ('in', 'O'), ('the', 'O'), ('world', 'O'), ('corporate', 'O'), ('department', 'O'), ('of', 'O'), ('the', 'O'), ('Bankers', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Escola', 'O'), ('Graduada', 'O'), ('de', 'O'), ('Sao', 'LOCATION'), ('Paulo', 'LOCATION'), ('and', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Duke', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('TMT', 'O'), ('Consultores', 'O'), (',', 'O'), ('management', 'O'), ('consultants', 'O'), ('in', 'O'), ('Sao', 'LOCATION'), ('Paulo', 'LOCATION'), (',', 'O'), ('and', 'O'), ('was', 'O'), ('formerly', 'O'), ('the', 'O'), ('managing', 'O'), ('director', 'O'), ('of', 'O'), ('WABCO', 'ORGANIZATION'), ('Equipamentos', 'ORGANIZATION'), ('do', 'O'), ('Brasil', 'O'), ('in', 'O'), ('Sao', 'LOCATION'), ('Paolo', 'LOCATION'), (',', 'O'), ('a', 'O'), ('subsidiary', 'O'), ('of', 'O'), ('the', 'O'), ('Westinghouse', 'ORGANIZATION'), ('Air', 'ORGANIZATION'), ('Brake', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Ruben', 'PERSON'), ('Freedlander', 'PERSON'), ('of', 'O'), ('Richmond', 'LOCATION'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Melissa', 'PERSON'), ('Anne', 'PERSON'), ('Freedlander', 'PERSON'), ('to', 'O'), ('Douglas', 'PERSON'), ('Keith', 'PERSON'), ('Wagner', 'PERSON'), ('Landau', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs', 'PERSON'), ('Norman', 'PERSON'), ('J.', 'PERSON'), ('Landau', 'PERSON'), ('of', 'O'), ('Teaneck', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Sharon', 'PERSON'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O')), (('Announcement', 'O'), ('has', 'O'), ('been', 'O'), ('made', 'O'), ('by', 'O'), ('Camilla', 'PERSON'), ('C.', 'PERSON'), ('Dinan', 'PERSON'), ('of', 'O'), ('Woodmere', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('of', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('her', 'O'), ('daughter', 'O'), (',', 'O'), ('Belinda', 'PERSON'), ('Karen', 'PERSON'), ('Dinan', 'PERSON'), (',', 'O'), ('to', 'O'), (',', 'O'), ('to', 'O'), ('Theodore', 'PERSON'), ('William', 'PERSON'), ('Koontz', 'PERSON'), ('2d', 'O'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Elwood', 'PERSON'), ('Henry', 'PERSON'), ('Koontz', 'PERSON'), ('of', 'O'), ('Old', 'LOCATION'), ('Saybrook', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('formerly', 'O'), ('of', 'O'), ('Shaker', 'LOCATION'), ('Heights', 'LOCATION'), (',', 'O'), ('Ohio', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('weeding', 'O'), ('is', 'O'), ('planned', 'O'), ('in', 'O'), ('September', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('daughter', 'O'), ('also', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('John', 'PERSON'), ('F.', 'PERSON'), ('Dinan', 'PERSON'), ('of', 'O'), ('Dallas', 'LOCATION'), (',', 'O'), ('Texas', 'LOCATION'), (',', 'O'), ('is', 'O'), ('in', 'O'), ('buyer', 'O'), ('training', 'O'), ('at', 'O'), ('F.', 'O'), ('&', 'O'), ('R.', 'PERSON'), ('Lazarus', 'PERSON'), (',', 'O'), ('the', 'O'), ('Columbus', 'LOCATION'), (',', 'O'), ('Ohio', 'LOCATION'), ('department', 'O'), ('store', 'O'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Lawrence', 'O'), ('Country', 'O'), ('Day', 'O'), ('School', 'O'), ('in', 'O'), ('Hewlett', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('the', 'O'), ('Northfield', 'ORGANIZATION'), ('Mount', 'ORGANIZATION'), ('Hermon', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('the', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Wooster', 'ORGANIZATION'), ('-LRB-', 'O'), ('Ohio', 'LOCATION'), ('-RRB-', 'O'), (',', 'O'), ('as', 'O'), ('did', 'O'), ('Mr.', 'PERSON'), ('Koontz', 'PERSON'), ('.', 'O'), ('She', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('Bowling', 'O'), ('Green', 'O'), ('-LRB-', 'O'), ('Ohio', 'LOCATION'), ('-RRB-', 'O'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('sales', 'O'), ('representative', 'O'), ('f', 'O'), ('or', 'O'), ('J.', 'O'), ('DeBall', 'O'), ('G', 'O'), ('rimes', 'O'), ('of', 'O'), ('America', 'LOCATION'), (',', 'O'), ('a', 'O'), ('textile', 'O'), ('manufacturer', 'O'), ('in', 'O'), ('Asheville', 'LOCATION'), (',', 'O'), ('N.C.', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('retired', 'O'), ('as', 'O'), ('director', 'O'), ('of', 'O'), ('marketing', 'O'), ('for', 'O'), ('the', 'O'), ('Reliance', 'ORGANIZATION'), ('Electric', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Cleveland', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('August', 'PERSON'), ('A.', 'PERSON'), ('Wavpotich', 'PERSON'), ('of', 'O'), ('Hilton', 'LOCATION'), ('Head', 'LOCATION'), ('Island', 'LOCATION'), (',', 'O'), ('S.C.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Christine', 'PERSON'), ('M.', 'PERSON'), ('Wavopotich', 'PERSON'), (',', 'O'), ('to', 'O'), ('George', 'PERSON'), ('W.', 'PERSON'), ('Loomis', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Loomis', 'PERSON'), ('of', 'O'), ('East', 'LOCATION'), ('Lansing', 'LOCATION'), (',', 'O'), ('Mich.', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Wavpotich', 'PERSON'), (',', 'O'), ('an', 'O'), ('assistant', 'O'), ('vice', 'O'), ('president', 'O'), ('at', 'O'), ('the', 'O'), ('National', 'ORGANIZATION'), ('Westminster', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('USA', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Princeton', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('Russian', 'O'), ('studies', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('with', 'O'), ('Ogilvy', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Mather', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Evelyn', 'PERSON'), ('M.', 'PERSON'), ('Wavpotich', 'PERSON'), (',', 'O'), ('is', 'O'), ('food', 'O'), ('editor', 'O'), ('for', 'O'), ('the', 'O'), (\"''\", 'O'), ('Island', 'O'), ('Packet', 'O'), (',', 'O'), (\"''\", 'O'), ('a', 'O'), ('Hilton', 'O'), ('Head', 'O'), ('daily', 'O'), ('newspaper', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Loomis', 'PERSON'), (',', 'O'), ('an', 'O'), ('associate', 'O'), ('with', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), (',', 'O'), ('White', 'O'), ('&', 'O'), ('Case', 'O'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Michigan', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('did', 'O'), ('graduate', 'O'), ('work', 'O'), ('in', 'O'), ('music', 'O'), ('history', 'O'), ('at', 'O'), ('Yale', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('law', 'O'), ('degree', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Michigan', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('he', 'O'), ('was', 'O'), ('an', 'O'), ('editor', 'O'), ('of', 'O'), ('the', 'O'), ('Law', 'O'), ('Review', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('Lansing', 'LOCATION'), (',', 'O'), ('Mich.', 'LOCATION'), (',', 'O'), ('law', 'O'), ('firm', 'O'), (',', 'O'), ('Loomis', 'PERSON'), (',', 'O'), ('Ewert', 'PERSON'), (',', 'O'), ('Ederer', 'PERSON'), (',', 'O'), ('Parsley', 'O'), (',', 'O'), ('Davis', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Gotting', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Miriam', 'PERSON'), ('S.', 'PERSON'), ('Loomis', 'PERSON'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('interior', 'O'), ('decorator', 'O'), ('.', 'O')), (('The', 'O'), ('engagement', 'O'), ('of', 'O'), ('Sarah', 'PERSON'), ('Ellen', 'PERSON'), ('Smith', 'PERSON'), ('to', 'O'), ('Carl', 'PERSON'), ('Henry', 'PERSON'), ('Sangree', 'PERSON'), ('has', 'O'), ('been', 'O'), ('announced', 'O'), ('by', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('Benjamin', 'PERSON'), ('Smith', 'PERSON'), ('of', 'O'), ('Franklin', 'LOCATION'), ('Lakes', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('parents', 'O'), ('of', 'O'), ('the', 'O'), ('future', 'O'), ('bride', 'B'), ('.', 'O'), ('Her', 'O'), ('fiance', 'O'), ('is', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('M.', 'PERSON'), ('Huyett', 'PERSON'), ('Sangree', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Watertown', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Greensboro', 'LOCATION'), (',', 'O'), ('Vt.', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Smith', 'PERSON'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Ethel', 'ORGANIZATION'), ('Walker', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Bryn', 'ORGANIZATION'), ('Mawr', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('having', 'O'), ('studied', 'O'), ('at', 'O'), ('the', 'O'), ('Intercollegiate', 'O'), ('Center', 'O'), ('for', 'O'), ('Classical', 'O'), ('Studies', 'O'), ('in', 'O'), ('Rome', 'LOCATION'), ('her', 'O'), ('junior', 'O'), ('year', 'O'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('an', 'O'), ('assistant', 'O'), ('vice', 'O'), ('president', 'O'), ('and', 'O'), ('investment', 'O'), ('officer', 'O'), ('with', 'O'), ('J.', 'O'), ('&', 'ORGANIZATION'), ('W.', 'ORGANIZATION'), ('Seligman', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('investment', 'O'), ('firm', 'O'), (',', 'O'), ('and', 'O'), ('is', 'O'), ('enrolled', 'O'), ('at', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('Administration', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('and', 'O'), ('chief', 'O'), ('executive', 'O'), ('officer', 'O'), ('of', 'O'), ('Magnetic', 'ORGANIZATION'), ('Aids', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('office', 'O'), ('products', 'O'), ('manufacturer', 'O'), ('in', 'O'), ('Paterson', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('expects', 'O'), ('to', 'O'), ('receive', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('in', 'O'), ('June', 'O'), ('from', 'O'), ('Stanford', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('chief', 'O'), ('of', 'O'), ('gastroenterology', 'O'), ('at', 'O'), ('the', 'O'), ('Waterbury', 'LOCATION'), ('-LRB-', 'O'), ('Conn.', 'LOCATION'), ('-RRB-', 'O'), ('Hospital', 'O'), ('and', 'O'), ('an', 'O'), ('associate', 'O'), ('clinical', 'O'), ('professor', 'O'), ('at', 'O'), ('the', 'O'), ('Yale', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Medicine', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Gail', 'PERSON'), ('Sangree', 'PERSON'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('English', 'O'), ('instructor', 'O'), ('at', 'O'), ('Mattatuck', 'ORGANIZATION'), ('Community', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Waterbury', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Marcus', 'PERSON'), ('A.', 'PERSON'), ('McCorison', 'PERSON'), ('of', 'O'), ('Worcester', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Mary', 'PERSON'), ('Lyle', 'PERSON'), ('McCorison', 'PERSON'), (',', 'O'), ('to', 'O'), ('Joshua', 'PERSON'), ('L.', 'PERSON'), ('Rosenbloom', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Richard', 'PERSON'), ('S.', 'PERSON'), ('Rosenbloom', 'PERSON'), ('of', 'O'), ('Cambridge', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('A', 'O'), ('September', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('Miss', 'O'), ('McCorison', 'PERSON'), (',', 'O'), ('the', 'O'), ('research', 'O'), ('assistant', 'O'), ('for', 'O'), ('the', 'O'), (\"''\", 'O'), ('Bibliography', 'O'), ('of', 'O'), ('American', 'O'), ('Literature', 'O'), (',', 'O'), (\"''\", 'O'), ('an', 'O'), ('eight-volume', 'O'), ('series', 'O'), ('published', 'O'), ('by', 'O'), ('the', 'O'), ('Yale', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Press', 'ORGANIZATION'), (',', 'O'), ('sponsored', 'O'), ('by', 'O'), ('the', 'O'), ('Bibliographical', 'ORGANIZATION'), ('Society', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('America', 'ORGANIZATION'), ('in', 'O'), ('Cambridge', 'LOCATION'), (',', 'O'), ('is', 'O'), ('attending', 'O'), ('the', 'O'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Library', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Information', 'ORGANIZATION'), ('Science', 'ORGANIZATION'), ('at', 'O'), ('Simmons', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('Oberlin', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('its', 'O'), ('Conservatory', 'O'), ('of', 'O'), ('Music', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('director', 'O'), ('and', 'O'), ('librarian', 'O'), ('of', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('Antiquarian', 'ORGANIZATION'), ('Society', 'ORGANIZATION'), ('in', 'O'), ('Worcester', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Janet', 'PERSON'), ('K.', 'PERSON'), ('McCorison', 'PERSON'), (',', 'O'), ('is', 'O'), ('executive', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Worcester', 'ORGANIZATION'), ('Heritage', 'ORGANIZATION'), ('Preservation', 'ORGANIZATION'), ('Society', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('architectural', 'O'), ('preservation', 'O'), ('group', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Rosenbloom', 'PERSON'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('studying', 'O'), ('for', 'O'), ('a', 'O'), ('Ph.', 'O'), ('D.', 'O'), ('degree', 'O'), ('in', 'O'), ('economic', 'O'), ('history', 'O'), ('at', 'O'), ('Stanford', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Cambridge', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Weston', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Oberlin', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('was', 'O'), ('formerly', 'O'), ('a', 'O'), ('research', 'O'), ('assistant', 'O'), ('at', 'O'), ('the', 'O'), ('John', 'ORGANIZATION'), ('F.Kennedy', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Government', 'ORGANIZATION'), ('at', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('David', 'PERSON'), ('Sarnoff', 'PERSON'), ('Professor', 'O'), ('of', 'O'), ('Business', 'O'), ('Administration', 'O'), ('at', 'O'), ('the', 'O'), ('Harvard', 'ORGANIZATION'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('Administration', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Ruth', 'PERSON'), ('M.', 'PERSON'), ('Rosenbloom', 'PERSON'), ('is', 'O'), ('a', 'O'), ('cataloger', 'O'), ('with', 'O'), ('the', 'O'), ('Frances', 'PERSON'), ('Loeb', 'PERSON'), ('Library', 'PERSON'), ('of', 'O'), ('the', 'O'), ('Harvard', 'ORGANIZATION'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Design', 'ORGANIZATION'), ('.', 'O')), (('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Lester', 'PERSON'), ('Dubnick', 'PERSON'), ('of', 'O'), ('Huntington', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagment', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Monica', 'PERSON'), ('Lauren', 'PERSON'), ('Alexandra', 'PERSON'), ('Dubnick', 'PERSON'), (',', 'O'), ('to', 'O'), ('Brent', 'PERSON'), ('M.', 'PERSON'), ('Mowery', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('L.', 'PERSON'), ('Mowery', 'PERSON'), ('of', 'O'), ('Carlisle', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Dubnick', 'PERSON'), ('is', 'O'), ('a', 'O'), ('tax', 'O'), ('specialist', 'O'), ('and', 'O'), ('Mr.', 'PERSON'), ('Mowery', 'PERSON'), ('is', 'O'), ('an', 'O'), ('actuary', 'O'), ('and', 'O'), ('senior', 'O'), ('consultant', 'O'), ('with', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('office', 'O'), ('of', 'O'), ('Coopers', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Lybrand', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('international', 'O'), ('accounting', 'O'), ('concern', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('graduated', 'O'), ('from', 'O'), ('Williams', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('from', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('psychologist', 'O'), (',', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('testing', 'O'), ('and', 'O'), ('Federal', 'O'), ('projects', 'O'), ('with', 'O'), ('the', 'O'), ('Huntington', 'LOCATION'), ('-LRB-', 'O'), ('L.I.', 'LOCATION'), ('-RRB-', 'O'), ('Public', 'O'), ('Schools', 'O'), ('and', 'O'), ('adjunct', 'O'), ('professsor', 'O'), ('in', 'O'), ('the', 'O'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Psychology', 'ORGANIZATION'), ('at', 'O'), ('the', 'O'), ('Florida', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), ('in', 'O'), ('Melbourne', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Leona', 'PERSON'), ('Dubnick', 'PERSON'), (',', 'O'), ('is', 'O'), ('coordinator', 'O'), ('of', 'O'), ('education', 'O'), ('for', 'O'), ('the', 'O'), ('gifted', 'O'), ('with', 'O'), ('the', 'O'), ('Huntington', 'LOCATION'), ('schools', 'O'), ('and', 'O'), ('is', 'O'), ('the', 'O'), ('originator', 'O'), ('of', 'O'), ('the', 'O'), (\"''\", 'O'), ('Ask', 'O'), ('The', 'O'), ('Teacher', 'O'), (',', 'O'), (\"''\", 'O'), ('program', 'O'), ('for', 'O'), ('WGSM', 'ORGANIZATION'), ('Radio', 'ORGANIZATION'), ('in', 'O'), ('Huntington', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Mowery', 'PERSON'), ('received', 'O'), ('a', 'O'), ('bachelor', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('mathematics', 'O'), ('and', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('acturial', 'O'), ('science', 'O'), ('at', 'O'), ('the', 'O'), ('University', 'O'), ('of', 'O'), ('Iowa', 'LOCATION'), ('.', 'O')), (('Constance', 'PERSON'), ('Horton', 'PERSON'), ('Bergin', 'PERSON'), ('of', 'O'), ('Darien', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('John', 'PERSON'), ('F.', 'PERSON'), ('Bergin', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Constance', 'PERSON'), ('Mary', 'PERSON'), ('Bergin', 'PERSON'), (',', 'O'), ('to', 'O'), ('John', 'PERSON'), ('Francis', 'PERSON'), ('Carrozelli', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Alexander', 'PERSON'), ('F.', 'PERSON'), ('Carrozelli', 'PERSON'), ('of', 'O'), ('Norwalk', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('.', 'O'), ('a', 'O'), ('customer', 'O'), ('sales', 'O'), ('representative', 'O'), ('with', 'O'), ('Cablevision', 'ORGANIZATION'), ('of', 'O'), ('Connecticut', 'LOCATION'), ('in', 'O'), ('Westport', 'LOCATION'), ('.', 'O'), ('graduated', 'O'), ('from', 'O'), ('Manhattanville', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('having', 'O'), ('spent', 'O'), ('her', 'O'), ('junior', 'O'), ('year', 'O'), ('at', 'O'), ('OxfordUniversity', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('McCann-Erickson', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Carrozelli', 'PERSON'), ('whois', 'O'), ('a', 'O'), ('videoengineer', 'O'), ('for', 'O'), ('ABC', 'O'), ('News', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('at', 'O'), ('Purchase', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('untilrecently', 'O'), (',', 'O'), ('a', 'O'), ('director', 'O'), ('of', 'O'), ('insurance', 'O'), ('for', 'O'), ('Becker', 'ORGANIZATION'), ('Industries', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('chemical', 'O'), ('manufacturer', 'O'), ('in', 'O'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O')), (('The', 'O'), ('engagement', 'O'), ('of', 'O'), ('Claire', 'PERSON'), ('Alexandra', 'PERSON'), ('Hibbard', 'PERSON'), (',', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('class', 'O'), ('of', 'O'), (\"'84\", 'O'), ('at', 'O'), ('the', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Physicians', 'ORGANIZATION'), ('and', 'O'), ('Surgeons', 'O'), (',', 'O'), ('to', 'O'), ('Dr.', 'PERSON'), ('Christopher', 'PERSON'), ('Wallace', 'PERSON'), ('Fletcher', 'PERSON'), (',', 'O'), ('a', 'O'), ('resident', 'O'), ('in', 'O'), ('anesthesia', 'O'), ('at', 'O'), ('the', 'O'), ('Hospital', 'O'), ('of', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), (',', 'O'), ('has', 'O'), ('been', 'O'), ('announced', 'O'), ('by', 'O'), ('Prof.', 'O'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Howard', 'PERSON'), ('Hibbard', 'PERSON'), ('of', 'O'), ('Scarsdale', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('parents', 'O'), ('of', 'O'), ('the', 'O'), ('future', 'O'), ('bride', 'B'), ('.', 'O'), ('Her', 'O'), ('fiance', 'O'), ('is', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Wallace', 'PERSON'), ('J.', 'PERSON'), ('Fletcher', 'PERSON'), ('of', 'O'), ('Chippenham', 'LOCATION'), (',', 'O'), ('England', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Dr.', 'PERSON'), ('Patricia', 'PERSON'), ('Nolan', 'PERSON'), ('Fletcher', 'PERSON'), ('.', 'O'), ('A', 'O'), ('June', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('Miss', 'O'), ('Hibbard', 'PERSON'), ('attended', 'O'), ('Smith', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('graduated', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Barnard', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('professor', 'O'), ('at', 'O'), ('Columbia', 'LOCATION'), ('and', 'O'), ('former', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('department', 'O'), ('of', 'O'), ('art', 'O'), ('history', 'O'), ('and', 'O'), ('archeology', 'O'), ('there', 'O'), ('.', 'O'), ('Dr.', 'PERSON'), ('Fletcher', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Wesleyan', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('Master', 'O'), ('of', 'O'), ('Public', 'O'), ('Health', 'O'), ('and', 'O'), ('M.D.', 'O'), ('degrees', 'O'), ('last', 'O'), ('year', 'O'), ('from', 'O'), ('Columbia', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('now', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('lecturer', 'O'), ('at', 'O'), ('the', 'O'), ('Harvard', 'ORGANIZATION'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Education', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('consultant', 'O'), ('to', 'O'), ('Arthur', 'ORGANIZATION'), ('D.', 'ORGANIZATION'), ('Little', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('Cambridge', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), ('was', 'O'), ('an', 'O'), ('internist', 'O'), ('.', 'O')), (('Lois', 'PERSON'), ('A.', 'PERSON'), ('Zarembo', 'PERSON'), (',', 'O'), ('a', 'O'), ('small', 'O'), ('order', 'O'), ('systems', 'O'), ('planning', 'O'), ('specialist', 'O'), ('at', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Stock', 'ORGANIZATION'), ('Exchange', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('Steven', 'PERSON'), ('L.', 'PERSON'), ('Gottlieb', 'PERSON'), (',', 'O'), ('a', 'O'), ('senior', 'O'), ('account', 'O'), ('associate', 'O'), ('with', 'O'), ('the', 'O'), ('ELAFUND', 'ORGANIZATION'), ('Group', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('the', 'ORGANIZATION'), ('Equitable', 'ORGANIZATION'), ('Life', 'ORGANIZATION'), ('Assurance', 'ORGANIZATION'), ('Society', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('plan', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('March', 'O'), ('24', 'O'), ('.', 'O'), ('Miss', 'O'), ('Zarembo', 'O'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('E.', 'PERSON'), ('Zarembo', 'PERSON'), ('of', 'O'), ('Mamaroneck', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Stuart', 'O'), ('Country', 'O'), ('Day', 'O'), ('School', 'O'), ('of', 'O'), ('the', 'O'), ('Sacred', 'O'), ('Heart', 'O'), ('in', 'O'), ('Princeton', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Lehigh', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('in', 'O'), ('finance', 'O'), ('from', 'O'), ('Fordham', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('analytical', 'O'), ('chemistry', 'O'), ('at', 'O'), ('the', 'O'), ('Revlon', 'ORGANIZATION'), ('Health', 'ORGANIZATION'), ('Care', 'ORGANIZATION'), ('Goup', 'ORGANIZATION'), ('in', 'O'), ('Tuckahoe', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('June', 'PERSON'), ('McElgun', 'PERSON'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('interior', 'O'), ('designer', 'O'), ('with', 'O'), ('Norman', 'PERSON'), ('Harvey', 'PERSON'), ('Associates', 'PERSON'), ('in', 'O'), ('Hauppauge', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('his', 'O'), ('father', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('trade', 'O'), ('relations', 'O'), ('with', 'O'), ('Thompson', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('marketer', 'O'), ('of', 'O'), ('over-the-counter', 'O'), ('health', 'O'), ('and', 'O'), ('beauty', 'O'), ('aids', 'O'), (',', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Jerome', 'PERSON'), ('W.', 'PERSON'), ('Roloff', 'PERSON'), ('of', 'O'), ('Westport', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Deborah', 'PERSON'), ('Jean', 'PERSON'), ('Roloff', 'PERSON'), (',', 'O'), ('to', 'O'), ('N.', 'PERSON'), ('Gregory', 'PERSON'), ('Mankiw', 'PERSON'), (',', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Nicholas', 'PERSON'), ('Mankiw', 'PERSON'), ('of', 'O'), ('Cranford', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Roloff', 'PERSON'), (',', 'O'), ('a', 'O'), ('financial', 'O'), ('analyst', 'O'), ('for', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Duke', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (\"'s\", 'O'), ('Kennedy', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Government', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('formerly', 'O'), ('was', 'O'), ('an', 'O'), ('economist', 'O'), ('in', 'O'), ('the', 'O'), ('Office', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Management', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Budget', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('retired', 'O'), ('Navy', 'ORGANIZATION'), ('commander', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('civil', 'O'), ('engineer', 'O'), ('for', 'O'), ('the', 'O'), ('city', 'O'), ('of', 'O'), ('Stamford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('studying', 'O'), ('for', 'O'), ('a', 'O'), ('Ph.', 'O'), ('D.', 'O'), ('degree', 'O'), ('in', 'O'), ('economics', 'O'), ('from', 'O'), ('the', 'O'), ('Massachusetts', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('law', 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Harvard', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('retired', 'O'), ('senior', 'O'), ('engineer', 'O'), ('for', 'O'), ('the', 'O'), ('Western', 'ORGANIZATION'), ('Electric', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Kearny', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Kenneth', 'PERSON'), ('E.', 'PERSON'), ('Young', 'PERSON'), ('of', 'O'), ('Skaneateles', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('made', 'O'), ('known', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Dariel', 'PERSON'), ('Ann', 'PERSON'), ('Young', 'PERSON'), ('to', 'O'), ('William', 'PERSON'), ('Daniel', 'PERSON'), ('Curren', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('R.', 'PERSON'), ('Curren', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('Haven', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Curren', 'PERSON'), ('.', 'O'), ('An', 'O'), ('August', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('The', 'O'), ('prospective', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('Brown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('account', 'O'), ('executive', 'O'), ('with', 'O'), ('the', 'O'), ('Schorr', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Howard', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('public', 'O'), ('relations', 'O'), ('agency', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Twin', 'ORGANIZATION'), ('Birch', 'ORGANIZATION'), ('Farms', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('dairy', 'O'), ('concern', 'O'), ('in', 'O'), ('Skaneateles', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Curren', 'PERSON'), (',', 'O'), ('a', 'O'), ('producer', 'O'), ('with', 'O'), ('Ampersand', 'ORGANIZATION'), ('Productions', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('commercial', 'O'), ('film', 'O'), ('company', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Trinity', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Hartford', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Elizabeth', 'PERSON'), ('Curren', 'PERSON'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('society', 'O'), ('columnist', 'O'), ('for', 'O'), ('The', 'O'), ('New', 'O'), ('Haven', 'O'), ('Register', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('senior', 'O'), ('engineer', 'O'), ('with', 'O'), ('the', 'O'), ('Southern', 'ORGANIZATION'), ('New', 'ORGANIZATION'), ('England', 'ORGANIZATION'), ('Telephone', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O')), (('The', 'O'), ('engagement', 'O'), ('of', 'O'), ('Teresa', 'PERSON'), ('Frances', 'PERSON'), ('Beck', 'PERSON'), ('to', 'O'), ('Second', 'O'), ('Lieut.', 'O'), ('Thomas', 'PERSON'), ('Christian', 'PERSON'), ('Koenig', 'PERSON'), (',', 'O'), ('U.S.M.C.', 'ORGANIZATION'), (',', 'O'), ('has', 'O'), ('been', 'O'), ('announced', 'O'), ('by', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('Arthur', 'PERSON'), ('Beck', 'PERSON'), ('of', 'O'), ('Rumson', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('parents', 'O'), ('of', 'O'), ('the', 'O'), ('bride-to-be', 'O'), ('.', 'O'), ('Her', 'O'), ('fiance', 'O'), ('is', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('David', 'PERSON'), ('Koenig', 'PERSON'), (',', 'O'), ('also', 'O'), ('of', 'O'), ('Rumson', 'LOCATION'), ('.', 'O'), ('An', 'O'), ('August', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('Miss', 'O'), ('Beck', 'PERSON'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Mary', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Notre', 'LOCATION'), ('Dame', 'LOCATION'), (',', 'O'), ('Ind.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('chairman', 'O'), ('and', 'O'), ('chief', 'O'), ('executive', 'O'), ('officer', 'O'), ('of', 'O'), ('the', 'O'), ('Prudential', 'ORGANIZATION'), ('Insurance', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('America', 'ORGANIZATION'), ('in', 'O'), ('Newark', 'LOCATION'), (',', 'O'), ('served', 'O'), ('as', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('National', 'ORGANIZATION'), ('Commission', 'ORGANIZATION'), ('on', 'ORGANIZATION'), ('Social', 'ORGANIZATION'), ('Security', 'ORGANIZATION'), ('Reform', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bridegroom', 'G'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Christian', 'ORGANIZATION'), ('Brothers', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('in', 'O'), ('Lincroft', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Vanderbilt', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('attending', 'O'), ('the', 'O'), ('Artillery', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('at', 'O'), ('Fort', 'LOCATION'), ('Sill', 'LOCATION'), (',', 'O'), ('Okla.', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Alan', 'PERSON'), ('Villard', 'PERSON'), ('Bories', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('Orleans', 'LOCATION'), (',', 'O'), ('La.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Peggy', 'PERSON'), ('Jane', 'PERSON'), ('Bories', 'PERSON'), (',', 'O'), ('to', 'O'), ('Henry', 'PERSON'), ('Stephan', 'PERSON'), ('Schleiff', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Edith', 'PERSON'), ('Schleiff', 'PERSON'), ('of', 'O'), ('Lawrence', 'PERSON'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Sidney', 'PERSON'), ('Schleiff.A', 'O'), ('May', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('speech', 'O'), ('therapist', 'O'), ('at', 'O'), ('the', 'O'), ('Dalton', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Southern', 'ORGANIZATION'), ('Methodist', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('speech', 'O'), ('pathology', 'O'), ('at', 'O'), ('Tulane', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('International', 'ORGANIZATION'), ('Coffee', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('Orleans', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Schleiff', 'PERSON'), (',', 'O'), ('the', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('for', 'O'), ('business', 'O'), ('affairs', 'O'), ('and', 'O'), ('administration', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Home', 'ORGANIZATION'), ('Box', 'ORGANIZATION'), ('Office', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('cum', 'O'), ('laude', 'O'), ('graduate', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('degree', 'O'), ('from', 'O'), ('its', 'O'), ('law', 'O'), ('school', 'O'), (',', 'O'), ('where', 'O'), ('he', 'O'), ('was', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('board', 'O'), ('of', 'O'), ('editors', 'O'), ('of', 'O'), ('the', 'O'), ('Law', 'O'), ('Review', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('an', 'O'), ('independent', 'O'), ('securities', 'O'), ('investor', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Richard', 'PERSON'), ('L.', 'PERSON'), ('Williams', 'PERSON'), ('of', 'O'), ('Montclair', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Jane', 'PERSON'), ('Amerman', 'PERSON'), ('Williams', 'PERSON'), (',', 'O'), ('to', 'O'), ('Richard', 'PERSON'), ('Russell', 'PERSON'), ('Redmond', 'PERSON'), (',', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('R.', 'PERSON'), ('Redmond', 'PERSON'), ('of', 'O'), ('Llewellyn', 'LOCATION'), ('Park', 'LOCATION'), (',', 'O'), ('West', 'LOCATION'), ('Orange', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('an', 'O'), ('account', 'O'), ('manager', 'O'), ('for', 'O'), ('the', 'O'), ('NCR', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Newark', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('consumer', 'O'), ('products', 'O'), ('division', 'O'), ('of', 'O'), ('West', 'ORGANIZATION'), ('Point-Pepperell', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Redmond', 'PERSON'), ('expects', 'O'), ('to', 'O'), ('receive', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('business', 'O'), ('administration', 'O'), ('from', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('in', 'O'), ('1985', 'O'), ('and', 'O'), ('was', 'O'), ('formerly', 'O'), ('a', 'O'), ('senior', 'O'), ('consultant', 'O'), ('with', 'O'), ('Arthur', 'ORGANIZATION'), ('Andersen', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Newark', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('and', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Boston', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Stock', 'ORGANIZATION'), ('Exchange', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('Fowler', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Rosenau', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('specialist', 'O'), ('firm.The', 'O'), ('future', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('O.', 'PERSON'), ('Driver', 'PERSON'), ('of', 'O'), ('Llewellyn', 'LOCATION'), ('Park', 'LOCATION'), ('and', 'O'), ('Palm', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), ('.', 'O')), (('Lisbeth-ann', 'O'), ('Mark', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Elizabeth', 'PERSON'), ('A.', 'PERSON'), ('Mark', 'O'), ('of', 'O'), ('Washington', 'LOCATION'), ('and', 'O'), ('Myersvile', 'LOCATION'), (',', 'O'), ('Md.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Ross', 'PERSON'), ('Folkard', 'PERSON'), ('Mark', 'PERSON'), ('of', 'O'), ('Washington', 'LOCATION'), ('and', 'O'), ('Fenwick', 'LOCATION'), ('Island', 'LOCATION'), (',', 'O'), ('Del.', 'LOCATION'), (',', 'O'), ('plans', 'O'), ('to', 'O'), ('marry', 'O'), ('Charles', 'PERSON'), ('Matthew', 'PERSON'), ('Newman', 'PERSON'), ('in', 'O'), ('May', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Newman', 'PERSON'), ('is', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Alvin', 'PERSON'), ('L.', 'PERSON'), ('Newman', 'PERSON'), ('of', 'O'), ('Palm', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Patricia', 'PERSON'), ('Rossoff', 'PERSON'), ('Newman', 'PERSON'), ('.', 'O'), ('Miss', 'O'), ('Mark', 'PERSON'), (',', 'O'), ('an', 'O'), ('independent', 'O'), ('literary', 'O'), ('agent', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('gradiatd', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Wisconsin', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('Washington', 'LOCATION'), ('bureau', 'O'), ('chief', 'O'), ('for', 'O'), ('the', 'O'), ('Daily', 'ORGANIZATION'), ('Express', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('London', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Newman', 'PERSON'), (',', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('White', 'LOCATION'), ('Plains', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('law', 'O'), ('offices', 'O'), ('of', 'O'), ('Fink', 'PERSON'), (',', 'O'), ('Weinberger', 'PERSON'), (',', 'O'), ('Fredman', 'PERSON'), (',', 'O'), ('Berman', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Lowell', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Lehigh', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('law', 'O'), ('degree', 'O'), ('from', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('lawyer', 'O'), (',', 'O'), ('is', 'O'), ('associated', 'O'), ('with', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), (',', 'O'), ('Fischer', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Burstein', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('also', 'O'), ('practices', 'O'), ('law', 'O'), ('in', 'O'), ('Palm', 'LOCATION'), ('Beach', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('was', 'O'), ('theowner', 'O'), ('of', 'O'), ('the', 'O'), ('former', 'O'), ('Rossoff', 'PERSON'), (\"'s\", 'O'), ('Restaurant', 'O'), ('in', 'O'), ('Times', 'O'), ('Square', 'O'), (',', 'O'), ('founded', 'O'), ('in', 'O'), ('1899', 'O'), ('by', 'O'), ('the', 'O'), ('late', 'O'), ('Max', 'PERSON'), ('Rosoff', 'PERSON'), (',', 'O'), ('grandfather', 'O'), ('of', 'O'), ('the', 'O'), ('future', 'O'), ('bridegroom', 'G'), ('.', 'O')), (('Announcement', 'O'), ('has', 'O'), ('been', 'O'), ('made', 'O'), ('by', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Myer', 'PERSON'), ('Zendel', 'PERSON'), ('of', 'O'), ('Bronxville', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('of', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Alice', 'PERSON'), ('Ina', 'PERSON'), ('Zendel', 'PERSON'), (',', 'O'), ('to', 'O'), ('Richard', 'PERSON'), ('Harris', 'PERSON'), ('Simon', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Morris', 'PERSON'), ('Simon', 'PERSON'), ('of', 'O'), ('Hollywood', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride-to-be', 'O'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('account', 'O'), ('executive', 'O'), ('with', 'O'), ('Hill', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Knowlton', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('optometrist', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Simon', 'PERSON'), ('received', 'O'), ('a', 'O'), ('B.A.', 'O'), ('degree', 'O'), ('in', 'O'), ('architecture', 'O'), ('from', 'O'), ('the', 'O'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('at', 'O'), ('Buffalo', 'LOCATION'), ('and', 'O'), ('a', 'O'), ('Bachelor', 'O'), ('of', 'O'), ('Architecture', 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Miami', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('M.', 'ORGANIZATION'), ('Simon', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('architectural', 'O'), ('planning', 'O'), ('and', 'O'), ('interior', 'O'), ('design', 'O'), ('concern', 'O'), ('in', 'O'), ('Fort', 'LOCATION'), ('Lauderdale', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), ('.', 'O')), (('Leigh', 'PERSON'), ('Flynn', 'PERSON'), ('Butler', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Samuel', 'PERSON'), ('C.', 'PERSON'), ('Butler', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Richard', 'PERSON'), ('Hastings', 'PERSON'), ('Brown', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Ruth', 'PERSON'), ('T.', 'PERSON'), ('Brown', 'PERSON'), ('of', 'O'), ('Overland', 'LOCATION'), (',', 'O'), ('Kansas', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Joseph', 'PERSON'), ('Hastings', 'PERSON'), ('Brown', 'PERSON'), ('.', 'O'), ('The', 'O'), ('ceremony', 'O'), ('was', 'O'), ('performed', 'O'), ('by', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Supreme', 'ORGANIZATION'), ('Court', 'ORGANIZATION'), ('Justice', 'ORGANIZATION'), (',', 'O'), ('at', 'O'), ('the', 'O'), ('Butler', 'O'), ('home', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('an', 'O'), ('assistant', 'O'), ('director', 'O'), ('in', 'O'), ('the', 'O'), ('subsidiary', 'O'), ('rights', 'ORGANIZATION'), ('department', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Viking', 'ORGANIZATION'), ('Penguin', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('attended', 'O'), ('the', 'O'), ('Dana', 'ORGANIZATION'), ('Hall', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Wellesley', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Spence', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('B.A.', 'O'), ('degree', 'O'), ('in', 'O'), ('economics', 'O'), ('from', 'O'), ('Vassar', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), (',', 'O'), ('Cravath', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Swaine', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Moore', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Brown', 'PERSON'), (',', 'O'), ('a', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Bankers', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Illinois', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('finance', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('California', 'ORGANIZATION'), ('at', 'O'), ('Berkeley', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Charles', 'PERSON'), ('Donen', 'PERSON'), ('of', 'O'), ('Norwalk', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Cindy', 'PERSON'), ('Ann', 'PERSON'), ('Donen', 'PERSON'), (',', 'O'), ('to', 'O'), ('Jay', 'PERSON'), ('Ross', 'PERSON'), ('Goldstein', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('Goldstein', 'PERSON'), ('of', 'O'), ('Wilmette', 'LOCATION'), (',', 'O'), ('Ill.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('graduated', 'O'), ('from', 'O'), ('Emory', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('expects', 'O'), ('to', 'O'), ('receive', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degrees', 'O'), ('in', 'O'), ('social', 'O'), ('work', 'O'), ('and', 'O'), ('Jewish', 'O'), ('studies', 'O'), ('in', 'O'), ('1986', 'O'), ('from', 'O'), (',', 'O'), ('respectively', 'O'), (',', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Jewish', 'O'), ('Theological', 'O'), ('Seminary', 'O'), (',', 'O'), ('where', 'O'), ('Mr.Goldstein', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('rabbinical', 'O'), ('student', 'O'), ('.', 'O'), ('He', 'O'), ('expects', 'O'), ('to', 'O'), ('be', 'O'), ('ordained', 'O'), ('in', 'O'), ('May', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('engineer', 'O'), ('with', 'O'), ('Sperry', 'ORGANIZATION'), ('Systems', 'ORGANIZATION'), ('Management', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Great', 'LOCATION'), ('Neck', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Ellen', 'PERSON'), ('Donen', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('first', 'O'), ('grade', 'O'), ('teacher', 'O'), ('in', 'O'), ('Norwalk', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Goldstein', 'PERSON'), (',', 'O'), ('also', 'O'), ('the', 'O'), ('cantor', 'O'), ('of', 'O'), ('the', 'O'), ('Sons', 'O'), ('of', 'O'), ('Israel', 'LOCATION'), ('Synagogue', 'LOCATION'), ('in', 'O'), ('Nyack', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Wisconsin', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('owner', 'O'), ('of', 'O'), ('Jay', 'PERSON'), (\"'s\", 'O'), ('Furniture', 'O'), ('stores', 'O'), ('in', 'O'), ('Chicago', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Leonard', 'PERSON'), ('J.', 'PERSON'), ('Robinowitz', 'PERSON'), ('of', 'O'), ('Succasunna', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Beth', 'PERSON'), ('Ellen', 'PERSON'), ('Robinowitz', 'PERSON'), (',', 'O'), ('to', 'O'), ('David', 'PERSON'), ('Andrew', 'PERSON'), ('Wanger', 'PERSON'), (',', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Jack', 'PERSON'), ('Wanger', 'PERSON'), ('of', 'O'), ('Dix', 'LOCATION'), ('Hills', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('Miss', 'O'), ('Robinowitz', 'PERSON'), (',', 'O'), ('a', 'O'), ('second-year', 'O'), ('student', 'O'), ('at', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), (',', 'O'), ('as', 'O'), ('did', 'O'), ('her', 'O'), ('fiance', 'O'), (',', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('class', 'O'), ('of', 'O'), ('1984', 'O'), ('at', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Michigan', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('.', 'O'), ('An', 'O'), ('August', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Donald', 'PERSON'), ('J.', 'PERSON'), ('Kraemer', 'PERSON'), ('of', 'O'), ('Sparta', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Donna', 'PERSON'), ('Ann', 'PERSON'), ('Kraemer', 'PERSON'), (',', 'O'), ('to', 'O'), ('William', 'PERSON'), ('M.', 'PERSON'), ('Read', 'PERSON'), ('4th', 'O'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Read', 'O'), ('of', 'O'), ('Clifton', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Kraemer', 'PERSON'), (',', 'O'), ('a', 'O'), ('free', 'O'), ('lance', 'O'), ('artist', 'O'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('William', 'ORGANIZATION'), ('Paterson', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('is', 'O'), ('studying', 'O'), ('for', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('painting', 'O'), ('at', 'O'), ('Montclair', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Read', 'PERSON'), (',', 'O'), ('a', 'O'), ('graphics', 'O'), ('designer', 'O'), ('with', 'O'), ('the', 'O'), ('L.P.', 'ORGANIZATION'), ('Theabault', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Parsippany', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('attended', 'O'), ('the', 'O'), ('Philadelphia', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Art', 'ORGANIZATION'), ('and', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Ridgewood', 'LOCATION'), ('-LRB-', 'O'), ('N.J.', 'LOCATION'), ('-RRB-', 'O'), ('School', 'O'), ('of', 'O'), ('Art', 'O'), ('and', 'O'), ('Design', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('James', 'PERSON'), ('Northam', 'PERSON'), ('Carter', 'PERSON'), ('of', 'O'), ('White', 'LOCATION'), ('Stone', 'LOCATION'), (',', 'O'), ('Va.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Anne', 'PERSON'), ('Christian', 'PERSON'), ('Carter', 'PERSON'), (',', 'O'), ('to', 'O'), ('Christopher', 'PERSON'), ('Egerton', 'PERSON'), ('Lightbourn', 'PERSON'), (',', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Godfrey', 'PERSON'), ('Egerton', 'PERSON'), ('Lightbourn', 'PERSON'), ('of', 'O'), ('Nassau', 'LOCATION'), (',', 'O'), ('the', 'O'), ('Bahamas', 'LOCATION'), ('.', 'O')), (('Joanne', 'PERSON'), ('Wallenstein', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Adele', 'ORGANIZATION'), ('Satz', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Robert', 'PERSON'), ('M.', 'PERSON'), ('Wallenstein', 'PERSON'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Dr.', 'PERSON'), ('Glenn', 'PERSON'), ('I.', 'PERSON'), ('Fishman', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Ted', 'PERSON'), ('Fishman', 'PERSON'), ('and', 'O'), ('Joan', 'PERSON'), ('Kohler', 'PERSON'), (',', 'O'), ('both', 'O'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Rabbi', 'R'), ('Arthur', 'PERSON'), ('Seltzer', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('Tavern', 'O'), ('on', 'O'), ('the', 'O'), ('Green', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Fishman', 'PERSON'), (',', 'O'), ('the', 'O'), ('promotion', 'O'), ('manager', 'O'), ('of', 'O'), ('High', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), ('magazine', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Cornell', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('as', 'O'), ('did', 'O'), ('her', 'O'), ('husband', 'O'), (',', 'O'), ('and', 'O'), ('is', 'O'), ('studying', 'O'), ('for', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('at', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('lawyer', 'O'), ('and', 'O'), ('importer', 'O'), ('.', 'O'), ('Dr.', 'PERSON'), ('Fishman', 'PERSON'), (',', 'O'), ('a', 'O'), ('medical', 'O'), ('resident', 'O'), ('at', 'O'), ('Massachusetts', 'ORGANIZATION'), ('General', 'ORGANIZATION'), ('Hospital', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), (',', 'O'), ('received', 'O'), ('his', 'O'), ('medical', 'O'), ('degree', 'O'), ('from', 'O'), ('Stanford', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('real', 'O'), ('estate', 'O'), ('developer', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), ('is', 'O'), ('an', 'O'), ('interior', 'O'), ('designer', 'O'), ('.', 'O'), ('--', 'O'), ('30', 'O'), ('--', 'O')), (('The', 'O'), ('marriage', 'O'), ('of', 'O'), ('Margie', 'PERSON'), ('Goldsmith', 'PERSON'), (',', 'O'), ('a', 'O'), ('filmmaker', 'O'), (',', 'O'), ('novelist', 'O'), ('and', 'O'), ('songwriter', 'O'), (',', 'O'), ('to', 'O'), ('Jack', 'PERSON'), ('H.', 'PERSON'), ('Nusbaum', 'PERSON'), (',', 'O'), ('a', 'O'), ('senior', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Willkie', 'ORGANIZATION'), ('Farr', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Gallagher', 'ORGANIZATION'), ('took', 'O'), ('place', 'O'), ('in', 'O'), ('Manhattan', 'LOCATION'), ('yesterday', 'O'), ('.', 'O'), ('Rabbi', 'R'), ('Robert', 'PERSON'), ('S.', 'PERSON'), ('Widom', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Sign', 'O'), ('of', 'O'), ('the', 'O'), ('Dove', 'O'), ('restaurant', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('retain', 'O'), ('her', 'O'), ('name', 'O'), ('professionally', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Nancy', 'PERSON'), ('Goldsmith', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Eugene', 'PERSON'), ('M.', 'PERSON'), ('Goldsmith', 'PERSON'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('a', 'O'), ('senior', 'O'), ('copywriter', 'O'), ('with', 'O'), ('the', 'O'), ('N.', 'ORGANIZATION'), ('W.', 'ORGANIZATION'), ('Ayer', 'ORGANIZATION'), ('advertising', 'O'), ('agency', 'O'), ('in', 'O'), ('Philadelphia', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('Boston', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('is', 'O'), ('founder', 'O'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('MG', 'ORGANIZATION'), ('Productions', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('film', 'O'), ('production', 'O'), ('company', 'O'), ('.', 'O'), ('Her', 'O'), ('previous', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('as', 'O'), ('did', 'O'), ('the', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Nusbaum', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Simon', 'PERSON'), ('J.', 'PERSON'), ('Nusbaum', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Brussels', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Regine', 'PERSON'), ('Kleefeld', 'PERSON'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Wharton', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('the', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsyvlania', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('lawyer', 'O'), ('practicing', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Brussels', 'LOCATION'), ('.', 'O')), (('Judith', 'PERSON'), ('A.', 'PERSON'), ('Kaplan', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Samuel', 'PERSON'), ('Kaplan', 'PERSON'), ('of', 'O'), ('Neponsit', 'LOCATION'), (',', 'O'), ('Queens', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Stanley', 'PERSON'), ('A.', 'PERSON'), ('Bass', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Alexander', 'PERSON'), ('Bass', 'PERSON'), ('of', 'O'), ('Bedford', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Dorothy', 'PERSON'), ('Cohen', 'PERSON'), ('of', 'O'), ('River', 'LOCATION'), ('Vale', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('Rabbi', 'R'), ('Joan', 'PERSON'), ('Friedman', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Murray', 'LOCATION'), ('Hill', 'LOCATION'), ('Townhouse', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('bilingual', 'O'), ('guidance', 'O'), ('counselor', 'O'), ('at', 'O'), ('P.S.', 'O'), ('111', 'O'), ('and', 'O'), ('P.S.', 'O'), ('59', 'O'), ('in', 'O'), ('Manhattan', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Brooklyn', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degrees', 'O'), ('in', 'O'), ('elementary', 'O'), ('education', 'O'), ('and', 'O'), ('in', 'O'), ('counseling', 'O'), ('and', 'O'), ('guidance', 'O'), ('from', 'O'), ('Hunter', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('respectively', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('Brooklyn', 'LOCATION'), ('borough', 'O'), ('supervisor', 'O'), ('of', 'O'), ('the', 'O'), ('Division', 'O'), ('of', 'O'), ('Real', 'O'), ('Property', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('City', 'ORGANIZATION'), ('Department', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Real', 'ORGANIZATION'), ('Estate', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Florence', 'PERSON'), ('Kaplan', 'PERSON'), (',', 'O'), ('is', 'O'), ('assistant', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Career', 'ORGANIZATION'), ('Development', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('at', 'O'), ('Medgar', 'ORGANIZATION'), ('Evers', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Bass', 'PERSON'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('litigation', 'O'), ('of', 'O'), ('Queens', 'ORGANIZATION'), ('Legal', 'ORGANIZATION'), ('Services', 'ORGANIZATION'), ('in', 'O'), ('Long', 'LOCATION'), ('Island', 'LOCATION'), ('City', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('City', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Chicago', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('previous', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('heads', 'O'), ('Alex', 'ORGANIZATION'), ('Bass', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('real-estate', 'O'), ('firm', 'O'), ('in', 'O'), ('Cross', 'LOCATION'), ('River', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION')), (('Joan', 'PERSON'), ('Michael', 'PERSON'), ('Coe', 'PERSON'), (',', 'O'), ('an', 'O'), ('owner', 'O'), ('of', 'O'), ('the', 'O'), ('Cantina', 'O'), ('Restaurant', 'O'), ('in', 'O'), ('Ketchum', 'LOCATION'), (',', 'O'), ('Idaho', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Baird', 'PERSON'), ('St.', 'PERSON'), ('Clair', 'PERSON'), ('Gourlay', 'PERSON'), (',', 'O'), ('an', 'O'), ('owner', 'O'), ('of', 'O'), ('the', 'O'), ('Paul', 'PERSON'), ('Kenny', 'PERSON'), ('Ski', 'PERSON'), ('Shop', 'PERSON'), ('in', 'O'), ('Sun', 'LOCATION'), ('Valley', 'LOCATION'), (',', 'O'), ('Idaho', 'LOCATION'), (',', 'O'), ('plan', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('in', 'O'), ('June', 'O'), ('.', 'O'), ('Miss', 'O'), ('Coe', 'PERSON'), (',', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Bruce', 'PERSON'), ('Griffin', 'PERSON'), ('Coe', 'PERSON'), ('of', 'O'), ('Rumson', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Choate', 'PERSON'), ('Rosemary', 'PERSON'), ('Hall', 'PERSON'), ('and', 'O'), ('Middlebury', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('Jersey', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Industry', 'ORGANIZATION'), ('Association', 'ORGANIZATION'), ('in', 'O'), ('Trenton', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Gourlay', 'PERSON'), (',', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('T.', 'PERSON'), ('Barron', 'PERSON'), ('Gourlay', 'PERSON'), ('of', 'O'), ('Old', 'O'), ('Lyme', 'O'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Waitsfield', 'LOCATION'), (',', 'O'), ('Vt.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Holderness', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Middlebury', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('architect', 'O'), ('and', 'O'), ('his', 'O'), ('mother', 'O'), (',', 'O'), ('Marion', 'PERSON'), ('Gourlay', 'PERSON'), (',', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('Lyme', 'O'), ('Design', 'O'), (',', 'O'), ('an', 'O'), ('interior', 'O'), ('design', 'O'), ('firm', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Esty', 'O'), ('Foster', 'O'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('St.', 'LOCATION'), ('Huberts', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Sabele', 'PERSON'), ('Foster', 'PERSON'), ('to', 'O'), ('Richard', 'PERSON'), ('E.', 'PERSON'), ('Gray', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Litchfield', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Robert', 'PERSON'), ('Gray', 'PERSON'), ('of', 'O'), ('Philadelphia', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mrs.', 'PERSON'), ('Gray', 'PERSON'), ('.', 'O'), ('A', 'O'), ('June', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('Harpeth', 'ORGANIZATION'), ('Hall', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Nashville', 'LOCATION'), ('and', 'O'), ('Smith', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('working', 'O'), ('toward', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('the', 'O'), ('history', 'O'), ('of', 'O'), ('European', 'O'), ('decorative', 'O'), ('arts', 'O'), ('at', 'O'), ('the', 'O'), ('Parsons', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Design', 'ORGANIZATION'), ('in', 'O'), ('conjunction', 'O'), ('with', 'O'), ('the', 'O'), ('Cooper-Hewitt', 'O'), ('Museum', 'O'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Junior', 'ORGANIZATION'), ('League', 'ORGANIZATION'), ('and', 'O'), ('was', 'O'), ('a', 'O'), ('buyers', 'O'), (\"'\", 'O'), ('representative', 'O'), ('at', 'O'), ('Sotheby', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('business', 'O'), ('manager', 'O'), ('of', 'O'), ('the', 'O'), ('Collegiate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('former', 'O'), ('headmaster', 'O'), ('of', 'O'), ('St.', 'ORGANIZATION'), ('Bernard', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('.', 'O'), ('Miss', 'O'), ('Foster', 'O'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Harold', 'PERSON'), ('Weston', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('St.', 'PERSON'), ('Huberts', 'PERSON'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('an', 'O'), ('artist', 'O'), (',', 'O'), ('the', 'O'), ('executive', 'O'), ('director', 'O'), ('of', 'O'), ('Food', 'ORGANIZATION'), ('for', 'ORGANIZATION'), ('Freedom', 'ORGANIZATION'), ('and', 'O'), ('vice', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('National', 'ORGANIZATION'), ('Council', 'ORGANIZATION'), ('on', 'O'), ('the', 'O'), ('Arts', 'O'), ('and', 'O'), ('Government', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Gray', 'PERSON'), (',', 'O'), ('a', 'O'), ('founding', 'O'), ('partner', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Gray', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Richardson', 'ORGANIZATION'), (',', 'O'), ('formerly', 'O'), ('was', 'O'), ('an', 'O'), ('associate', 'O'), ('with', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Mudge', 'ORGANIZATION'), ('Rose', 'ORGANIZATION'), ('Guthrie', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Alexander', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), (',', 'O'), ('from', 'O'), ('which', 'O'), ('he', 'O'), ('also', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('business', 'O'), ('administration', 'O'), ('and', 'O'), ('a', 'O'), ('law', 'O'), ('degree', 'O'), ('.', 'O'), ('His', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('owner', 'O'), ('of', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('Metal', 'ORGANIZATION'), ('Works', 'ORGANIZATION'), ('in', 'O'), ('Philadelphia', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Judah', 'PERSON'), ('Feinerman', 'PERSON'), ('of', 'O'), ('Far', 'LOCATION'), ('Rockaway', 'LOCATION'), (',', 'O'), ('Queens', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Sharon', 'PERSON'), ('Riba', 'PERSON'), ('Feinerman', 'PERSON'), ('to', 'O'), ('Rabbi', 'R'), ('Raphael', 'PERSON'), ('Z.', 'PERSON'), ('Schwartz', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Rabbi', 'R'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Maurice', 'PERSON'), ('Schwartz', 'PERSON'), ('of', 'O'), ('Salisbury', 'LOCATION'), (',', 'O'), ('Md.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('August', 'O'), ('.', 'O'), ('Miss', 'O'), ('Feinerman', 'PERSON'), (',', 'O'), ('a', 'O'), ('social', 'O'), ('worker', 'O'), ('at', 'O'), ('the', 'O'), ('Ohel', 'ORGANIZATION'), ('Children', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('Home', 'ORGANIZATION'), ('and', 'O'), ('Family', 'O'), ('Services', 'O'), ('in', 'O'), ('Brooklyn', 'LOCATION'), (',', 'O'), ('is', 'O'), ('studying', 'O'), ('for', 'O'), ('a', 'O'), ('certificate', 'O'), ('in', 'O'), ('individual', 'O'), ('therapy', 'O'), ('at', 'O'), ('the', 'O'), ('Hunter', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Social', 'ORGANIZATION'), ('Work', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Hebrew', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Long', 'ORGANIZATION'), ('Island', 'ORGANIZATION'), ('in', 'O'), ('Far', 'LOCATION'), ('Rockaway', 'LOCATION'), (',', 'O'), ('Queens', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Stern', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('for', 'ORGANIZATION'), ('Women', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Yeshiva', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Wurzweiler', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Social', 'ORGANIZATION'), ('Work', 'ORGANIZATION'), ('at', 'O'), ('Yeshiva', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Judd', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('insurance', 'O'), ('brokerage', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Rabbi', 'R'), ('Schwartz', 'PERSON'), ('is', 'O'), ('with', 'O'), ('Congregation', 'O'), ('Agudas', 'PERSON'), ('Achim', 'PERSON'), ('in', 'O'), ('Kingston', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('He', 'O'), ('attended', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Minnesota', 'ORGANIZATION'), ('and', 'O'), ('graduated', 'O'), ('from', 'O'), ('Queens', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Rabbi', 'R'), ('Isaac', 'PERSON'), ('Elchanan', 'PERSON'), ('Theological', 'O'), ('Seminary', 'O'), ('at', 'O'), ('Yeshiva', 'ORGANIZATION'), (',', 'O'), ('from', 'O'), ('which', 'O'), ('he', 'O'), ('also', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('Jewish', 'O'), ('history', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Percy', 'PERSON'), ('H.', 'PERSON'), ('Ballantine', 'PERSON'), ('of', 'O'), ('Andover', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Katherine', 'PERSON'), ('Ballantine', 'PERSON'), (',', 'O'), ('to', 'O'), ('John', 'PERSON'), ('Badman', 'PERSON'), ('3d', 'O'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('Badman', 'PERSON'), ('2d', 'O'), ('of', 'O'), ('Old', 'LOCATION'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Vero', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mrs.', 'PERSON'), ('Badman', 'PERSON'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('May', 'O'), ('.', 'O'), ('Miss', 'O'), ('Ballantine', 'O'), (',', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('the', 'O'), ('GillSt', 'O'), ('.', 'O'), ('Bernard', 'PERSON'), (\"'s\", 'O'), ('School', 'O'), ('in', 'O'), ('Bernardsville', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Goucher', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('a', 'O'), ('bachelor', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('landscape', 'O'), ('architecture', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Maryland', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('landscape', 'O'), ('architect', 'O'), ('with', 'O'), ('Whitman', 'PERSON'), (',', 'O'), ('Requardt', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), ('in', 'O'), ('Baltimore', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('retired', 'O'), ('as', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Midlantic', 'ORGANIZATION'), ('National', 'ORGANIZATION'), ('BankSussex', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Merchants', 'ORGANIZATION'), ('in', 'O'), ('Newton', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Parsons', 'ORGANIZATION'), ('Brinckerhoff', 'ORGANIZATION'), ('Quade', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Douglas', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('engineering', 'O'), ('and', 'O'), ('planning', 'O'), ('firm', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('retired', 'O'), ('as', 'O'), ('an', 'O'), ('assistant', 'O'), ('general', 'O'), ('manager', 'O'), ('of', 'O'), ('Union', 'ORGANIZATION'), ('Carbide', 'ORGANIZATION'), (\"'s\", 'O'), ('Linde', 'PERSON'), ('division', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Thomas', 'PERSON'), ('B.', 'PERSON'), ('Hynson', 'PERSON'), ('Brown', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Amanda', 'PERSON'), ('Tilghman', 'PERSON'), ('Brown', 'PERSON'), (',', 'O'), ('to', 'O'), ('Burton', 'PERSON'), ('Jonathan', 'PERSON'), ('Megargel', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Welles', 'PERSON'), ('F.', 'PERSON'), ('Megargel', 'PERSON'), ('of', 'O'), ('Bronxville', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Lake', 'LOCATION'), ('Ariel', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('to', 'O'), ('be', 'O'), ('in', 'O'), ('May', 'O'), ('.', 'O'), ('Miss', 'O'), ('Brown', 'PERSON'), ('and', 'O'), ('Mr.', 'PERSON'), ('Megargel', 'PERSON'), ('are', 'O'), ('with', 'O'), ('Lehman', 'ORGANIZATION'), ('Brothers', 'ORGANIZATION'), ('Kuhn', 'ORGANIZATION'), ('Loeb', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('where', 'O'), ('she', 'O'), ('deals', 'O'), ('in', 'O'), ('fixed-income', 'O'), ('securities', 'O'), ('and', 'O'), ('he', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('.', 'O'), ('Miss', 'O'), ('Brown', 'PERSON'), (',', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('the', 'O'), ('Brearley', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Trinity', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Hartford', 'LOCATION'), (',', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('was', 'O'), ('presented', 'O'), ('at', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Junior', 'ORGANIZATION'), ('League', 'ORGANIZATION'), ('Ball', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Philadelphia', 'LOCATION'), ('Assemblies', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('fleet', 'O'), ('account', 'O'), ('manager', 'O'), ('with', 'O'), ('the', 'O'), ('truck', 'O'), ('and', 'O'), ('coach', 'O'), ('division', 'O'), ('of', 'O'), ('the', 'O'), ('General', 'ORGANIZATION'), ('Motors', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Megargel', 'PERSON'), (',', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('Lawrenceville', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Trinity', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Colgate', 'ORGANIZATION'), ('Darden', 'ORGANIZATION'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('Administration', 'ORGANIZATION'), ('at', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Virginia', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Schieffelin', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('importer', 'O'), ('of', 'O'), ('wine', 'O'), ('and', 'O'), ('spirits', 'O'), ('.', 'O')), (('-2', 'O'), ('-18', 'O'), ('please', 'O'), ('use', 'O'), ('Topping', 'O'), ('Margaret', 'PERSON'), ('Kessler', 'PERSON'), ('Thompson', 'PERSON'), ('of', 'O'), ('Pleasantville', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('a', 'O'), ('producer', 'O'), (',', 'O'), ('editor', 'O'), ('and', 'O'), ('writer', 'O'), ('of', 'O'), ('computer', 'O'), ('and', 'O'), ('educational', 'O'), ('programs', 'O'), (',', 'O'), ('and', 'O'), ('Elmer', 'PERSON'), ('W.', 'PERSON'), ('Lower', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('former', 'O'), ('president', 'O'), ('of', 'O'), ('ABC', 'ORGANIZATION'), ('News', 'ORGANIZATION'), (',', 'O'), ('plan', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('April', 'O'), ('21', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Thompson', 'PERSON'), ('is', 'O'), ('an', 'O'), ('independent', 'O'), ('producer', 'O'), ('of', 'O'), ('films', 'O'), ('and', 'O'), ('other', 'O'), ('audio', 'O'), ('-', 'O'), ('visual', 'O'), ('materials', 'O'), ('for', 'O'), ('use', 'O'), ('in', 'O'), ('schools', 'O'), (',', 'O'), ('homes', 'O'), ('and', 'O'), ('businesses', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Lower', 'PERSON'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('interim', 'O'), ('dean', 'O'), ('of', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Missouri', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Journalism', 'ORGANIZATION'), ('last', 'O'), ('year', 'O'), (',', 'O'), ('has', 'O'), ('been', 'O'), ('associated', 'O'), ('with', 'O'), ('journalism', 'O'), ('for', 'O'), ('more', 'O'), ('than', 'O'), ('50', 'O'), ('years', 'O'), (',', 'O'), ('with', 'O'), ('20', 'O'), ('years', 'O'), ('in', 'O'), ('print', 'O'), ('journalism', 'O'), (',', 'O'), ('25', 'O'), ('years', 'O'), ('in', 'O'), ('television', 'O'), (',', 'O'), ('including', 'O'), ('executive', 'O'), ('posts', 'O'), ('with', 'O'), ('the', 'O'), ('3', 'O'), ('major', 'O'), ('networks', 'O'), ('and', 'O'), ('more', 'O'), ('than', 'O'), ('5', 'O'), ('years', 'O'), ('in', 'O'), ('journalism', 'O'), ('education', 'O'), ('.', 'O'), ('He', 'O'), ('retired', 'O'), ('as', 'O'), ('a', 'O'), ('corporate', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('ABC', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('after', 'O'), ('having', 'O'), ('been', 'O'), ('president', 'O'), ('of', 'O'), ('ABC', 'ORGANIZATION'), ('News', 'ORGANIZATION'), ('from', 'O'), ('1963', 'O'), ('through', 'O'), ('1974', 'O'), ('.', 'O'), ('He', 'O'), ('was', 'O'), ('a', 'O'), ('co-founder', 'O'), ('in', 'O'), ('1964', 'O'), ('of', 'O'), ('the', 'O'), ('News', 'ORGANIZATION'), ('Election', 'ORGANIZATION'), ('Service', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('cooperative', 'O'), ('tabulation', 'O'), ('effort', 'O'), ('owned', 'O'), ('and', 'O'), ('operated', 'O'), ('by', 'O'), ('the', 'O'), ('major', 'O'), ('networks', 'O'), ('and', 'O'), ('two', 'O'), ('major', 'O'), ('wire', 'O'), ('services', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Thompson', 'PERSON'), ('has', 'O'), ('four', 'O'), ('children', 'O'), ('by', 'O'), ('a', 'O'), ('marriage', 'O'), ('that', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('Mr.', 'PERSON'), ('Lower', 'PERSON'), (',', 'O'), ('a', 'O'), ('widower', 'W'), (',', 'O'), ('has', 'O'), ('two', 'O'), ('children', 'O'), ('and', 'O'), ('two', 'O'), ('grandchildren', 'O'), ('.', 'O')), (('Dr.', 'PERSON'), ('F.', 'PERSON'), ('Henry', 'PERSON'), ('Ellis', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Brookline', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Elizabeth', 'PERSON'), ('Watson', 'PERSON'), ('Blanchard', 'PERSON'), ('of', 'O'), ('Needham', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Laura', 'PERSON'), ('Lawson', 'PERSON'), ('Ellis', 'PERSON'), ('to', 'O'), ('David', 'PERSON'), ('Gayley', 'PERSON'), ('Milliken', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Roger', 'PERSON'), ('Milliken', 'PERSON'), ('of', 'O'), ('Spartanburg', 'LOCATION'), (',', 'O'), ('S.C.', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Ellis', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Dana', 'ORGANIZATION'), ('Hall', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Wellesley', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Connecticut', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('nursing', 'O'), ('from', 'O'), ('Pace', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('family', 'O'), ('nurse', 'O'), ('practitioner', 'O'), ('in', 'O'), ('Concord', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('chief', 'O'), ('of', 'O'), ('thoracic', 'O'), ('and', 'O'), ('cardiovascular', 'O'), ('surgery', 'O'), ('at', 'O'), ('the', 'O'), ('Lahey', 'LOCATION'), ('Clinic', 'LOCATION'), ('in', 'O'), ('Burlington', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('New', 'ORGANIZATION'), ('England', 'ORGANIZATION'), ('Deaconess', 'ORGANIZATION'), ('Hospital', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('clinical', 'O'), ('professor', 'O'), ('of', 'O'), ('surgery', 'O'), ('at', 'O'), ('the', 'O'), ('Harvard', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Milliken', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('Bowdoin', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('attends', 'O'), ('the', 'O'), ('Leeds', 'ORGANIZATION'), ('Design', 'ORGANIZATION'), ('Workshops', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('furniture', 'O'), ('design', 'O'), ('school', 'O'), ('in', 'O'), ('Easthampton', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('and', 'O'), ('chief', 'O'), ('executive', 'O'), ('officer', 'O'), ('of', 'O'), ('Milliken', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('the', 'O'), ('textile', 'O'), ('concern', 'O'), ('in', 'O'), ('Spartanburg', 'LOCATION'), ('and', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Joseph', 'PERSON'), ('Hutner', 'PERSON'), ('of', 'O'), ('White', 'LOCATION'), ('Plains', 'LOCATION'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Laura', 'PERSON'), ('Hutner', 'PERSON'), ('to', 'O'), ('Harry', 'PERSON'), ('H.', 'PERSON'), ('Hummel', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Hummel', 'PERSON'), ('of', 'O'), ('Naperville', 'LOCATION'), (',', 'O'), ('Ill.', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Joseph', 'PERSON'), ('R.', 'PERSON'), ('Hennessy', 'PERSON'), ('of', 'O'), ('Scarsdale', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Mary', 'PERSON'), ('Ellen', 'PERSON'), ('Hennessy', 'PERSON'), (',', 'O'), ('to', 'O'), ('William', 'PERSON'), ('F.', 'PERSON'), ('Jones', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Jones', 'PERSON'), ('of', 'O'), ('Columbus', 'LOCATION'), (',', 'O'), ('Miss.', 'LOCATION'), ('.', 'O'), ('An', 'O'), ('October', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('an', 'O'), ('assistant', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Morgan', 'ORGANIZATION'), ('Guaranty', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Wellesley', 'LOCATION'), ('College', 'LOCATION'), (',', 'O'), ('where', 'O'), ('she', 'O'), ('was', 'O'), ('elected', 'O'), ('to', 'O'), ('Phi', 'O'), ('Beta', 'O'), ('Kappa', 'O'), ('.', 'O'), ('She', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Wharton', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('the', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), (',', 'O'), ('as', 'O'), ('did', 'O'), ('Mr.', 'PERSON'), ('Jones', 'PERSON'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('now', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('customer', 'O'), ('service', 'O'), ('representative', 'O'), ('for', 'O'), ('American', 'ORGANIZATION'), ('Express', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Jones', 'PERSON'), ('is', 'O'), ('a', 'O'), ('business', 'O'), ('analyst', 'O'), ('in', 'O'), ('the', 'O'), ('corporate', 'O'), ('planning', 'O'), ('and', 'O'), ('development', 'O'), ('department', 'O'), ('of', 'O'), ('Becton', 'LOCATION'), (',', 'O'), ('Dickinson', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Paramus', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('He', 'O'), ('graduated', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Princeton', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('law', 'O'), ('degree', 'O'), ('from', 'O'), ('Georgetown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('also', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('lieutenant', 'O'), ('commander', 'O'), ('in', 'O'), ('the', 'O'), ('Navy', 'ORGANIZATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Samuel', 'PERSON'), ('P.', 'PERSON'), ('Cooley', 'PERSON'), ('of', 'O'), ('West', 'LOCATION'), ('Hartford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Nantucket', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Pamela', 'PERSON'), ('Porter', 'PERSON'), ('Cooley', 'PERSON'), (',', 'O'), ('to', 'O'), ('John', 'PERSON'), ('David', 'PERSON'), (\"O'Halloran\", 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Norman', 'PERSON'), (\"O'Halloran\", 'PERSON'), ('of', 'O'), ('Okmulgee', 'LOCATION'), (',', 'O'), ('Okla.', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Cooley', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Loomis', 'ORGANIZATION'), ('Chaffee', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Smith', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('research', 'O'), ('analyst', 'O'), ('at', 'O'), ('the', 'O'), ('McLean', 'O'), ('-LRB-', 'O'), ('Va.', 'LOCATION'), ('-RRB-', 'O'), ('Research', 'O'), ('Center', 'O'), (',', 'O'), ('which', 'O'), ('does', 'O'), ('research', 'O'), ('for', 'O'), ('industry', 'O'), ('and', 'O'), ('defense', 'O'), ('consulting', 'O'), ('for', 'O'), ('the', 'O'), ('Government', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Connecticut', 'ORGANIZATION'), ('National', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Trygve', 'PERSON'), ('Cooley', 'PERSON'), (',', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('development', 'O'), ('at', 'O'), ('Hartford', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('for', 'O'), ('Women', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), (\"O'Halloran\", 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Oklahoma', 'ORGANIZATION'), ('and', 'O'), ('was', 'O'), ('an', 'O'), ('operations', 'O'), ('analyst', 'O'), ('at', 'O'), ('the', 'O'), ('McLean', 'ORGANIZATION'), ('Research', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('studying', 'O'), ('for', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('at', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Virginia', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('area', 'O'), ('operating', 'O'), ('manager', 'O'), ('of', 'O'), ('Oklahoma', 'LOCATION'), ('Natural', 'O'), ('Gas', 'O'), ('.', 'O')), (('The', 'O'), ('engagements', 'O'), ('of', 'O'), ('Maryanne', 'PERSON'), ('McDowell', 'PERSON'), ('to', 'O'), ('Daniel', 'PERSON'), ('M.', 'PERSON'), ('Bianca', 'PERSON'), ('Jr.', 'PERSON'), ('and', 'O'), ('Lynn', 'PERSON'), ('L.', 'PERSON'), ('Bianca', 'PERSON'), ('to', 'O'), ('Steven', 'PERSON'), ('A.', 'PERSON'), ('Baronti', 'PERSON'), ('have', 'O'), ('been', 'O'), ('announced', 'O'), ('by', 'O'), ('the', 'O'), ('parents', 'O'), ('of', 'O'), ('the', 'O'), ('brides-to-be', 'O'), ('.', 'O'), ('The', 'O'), ('Biancas', 'O'), ('are', 'O'), ('brother', 'O'), ('and', 'O'), ('sister', 'O'), ('.', 'O'), ('Miss', 'O'), ('McDowell', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Richard', 'PERSON'), ('Parmelee', 'PERSON'), ('McDowell', 'PERSON'), ('of', 'O'), ('Shelburne', 'LOCATION'), (',', 'O'), ('Vt.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('her', 'O'), ('fiance', 'O'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Bianca', 'PERSON'), ('of', 'O'), ('Rye', 'LOCATION'), ('Brook', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('are', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('June', 'O'), ('2', 'O'), ('.', 'O'), ('Miss', 'O'), ('Bianca', 'PERSON'), ('and', 'O'), ('Mr.', 'PERSON'), ('Baronti', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Albert', 'PERSON'), ('J.', 'PERSON'), ('Baronti', 'PERSON'), ('of', 'O'), ('Tarrytown', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('plan', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('in', 'O'), ('July', 'O'), ('.', 'O'), ('Miss', 'O'), ('McDowell', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('Wells', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('manager', 'O'), ('of', 'O'), ('LeSportsac', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('boutique', 'O'), ('in', 'O'), ('Santa', 'LOCATION'), ('Monica', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('consulting', 'O'), ('manager', 'O'), ('of', 'O'), ('Richter', 'PERSON'), ('Cine', 'PERSON'), ('and', 'O'), ('Richter', 'ORGANIZATION'), ('Aero', 'ORGANIZATION'), ('Equipment', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('movie', 'O'), ('camera', 'O'), ('manufacturer', 'O'), ('and', 'O'), ('research', 'O'), ('organization', 'O'), ('in', 'O'), ('Essex', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Mendes', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Mount', 'ORGANIZATION'), ('.', 'O'), ('Miss', 'O'), ('Bianca', 'PERSON'), ('is', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('the', 'O'), ('School', 'O'), ('of', 'O'), ('the', 'O'), ('Holy', 'O'), ('Child', 'O'), ('in', 'O'), ('Rye', 'O'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('is', 'O'), ('attending', 'O'), ('Manhattanville', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('fiance', 'O'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('Mercy', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Dobbs', 'LOCATION'), ('Ferry', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('Westchester', 'LOCATION'), ('County', 'LOCATION'), ('police', 'O'), ('officer', 'O'), ('and', 'O'), ('a', 'O'), ('student', 'O'), ('at', 'O'), ('Touro', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Huntington', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('ma', 'O'), ('\\xc2\\xac', 'O'), ('itre', 'O'), (\"d'\", 'O'), ('h', 'O'), ('\\xc2\\xac', 'O'), ('otel', 'O'), ('at', 'O'), ('the', 'O'), ('Kona', 'LOCATION'), ('Kai', 'LOCATION'), ('restaurant', 'O'), ('at', 'O'), ('the', 'O'), ('Westchester', 'ORGANIZATION'), ('Marriott', 'ORGANIZATION'), ('Hotel', 'ORGANIZATION'), ('in', 'O'), ('Tarrytown', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Macrae', 'PERSON'), ('Sykes', 'PERSON'), ('of', 'O'), ('Delray', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('East', 'LOCATION'), ('Hampton', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Sykes', 'PERSON'), (\"'s\", 'O'), ('daughter', 'O'), ('Martha', 'PERSON'), ('Brooke', 'PERSON'), ('Alwyn', 'PERSON'), ('to', 'O'), ('David', 'PERSON'), ('Walker', 'PERSON'), ('Laughlin', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Alexander', 'PERSON'), ('Mellon', 'PERSON'), ('Laughlin', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('East', 'LOCATION'), ('Hampton', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('June', 'O'), ('.', 'O'), ('Miss', 'O'), ('Alwyn', 'PERSON'), (',', 'O'), ('known', 'O'), ('as', 'O'), ('Brooke', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('daughter', 'O'), ('also', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Charles', 'PERSON'), ('Herbert', 'PERSON'), ('Clarke', 'PERSON'), ('and', 'O'), ('a', 'O'), ('stepdaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Thaddeus', 'PERSON'), ('E.', 'PERSON'), ('Alwyn', 'PERSON'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('an', 'O'), ('associate', 'O'), ('producer', 'O'), ('for', 'O'), ('Independent', 'ORGANIZATION'), ('Network', 'ORGANIZATION'), ('News', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('Rosemary', 'PERSON'), ('Hall', 'PERSON'), ('and', 'O'), ('attended', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Art', 'O'), ('Students', 'O'), ('League', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Sykes', 'PERSON'), (',', 'O'), ('now', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('board', 'O'), ('of', 'O'), ('the', 'O'), ('former', 'O'), ('Shields', 'ORGANIZATION'), (',', 'O'), ('Model', 'O'), (',', 'O'), ('Roland', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('and', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('Stock', 'ORGANIZATION'), ('Exchange', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Laughlin', 'PERSON'), (',', 'O'), ('an', 'O'), ('investment', 'O'), ('counselor', 'O'), ('at', 'O'), ('the', 'O'), ('Inverness', 'ORGANIZATION'), ('Council', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Brooks', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('associate', 'O'), ('director', 'O'), ('of', 'O'), ('Tucker', 'PERSON'), (',', 'O'), ('Anthony', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('R.', 'ORGANIZATION'), ('L.', 'O'), ('Day', 'O'), (',', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('stockbrokers', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Thomas', 'PERSON'), ('Hitchcock', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (';', 'O'), ('the', 'O'), ('late', 'O'), ('Alexander', 'PERSON'), ('Laughlin', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Sewickley', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Central', 'ORGANIZATION'), ('Tube', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Pittsburgh', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Delos', 'PERSON'), ('Walker', 'PERSON'), ('of', 'O'), ('East', 'LOCATION'), ('Hampton', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Walker', 'PERSON'), ('was', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('R.', 'ORGANIZATION'), ('H.', 'ORGANIZATION'), ('Macy', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('great-grandson', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('William', 'PERSON'), ('Larimer', 'PERSON'), ('Mellon', 'PERSON'), ('of', 'O'), ('Pittsburgh', 'LOCATION'), (',', 'O'), ('a', 'O'), ('founder', 'O'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Gulf', 'ORGANIZATION'), ('Oil', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('Sanford', 'PERSON'), ('Miller', 'PERSON'), ('of', 'O'), ('Bedford', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Charlotte', 'PERSON'), ('Baker', 'PERSON'), ('Miller', 'PERSON'), ('to', 'O'), ('Michael', 'PERSON'), ('Jordon', 'PERSON'), ('McCarthy', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('Jordon', 'PERSON'), ('McCarthy', 'PERSON'), ('of', 'O'), ('Baltimore', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('to', 'O'), ('be', 'O'), ('May', 'O'), ('12', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('an', 'O'), ('account', 'O'), ('executive', 'O'), ('at', 'O'), ('Hill', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Knowlton', 'ORGANIZATION'), (',', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('was', 'O'), ('assistant', 'O'), ('director', 'O'), ('of', 'O'), ('public', 'O'), ('relations', 'O'), ('for', 'O'), ('Cartier', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Taft', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Trinity', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Hartford', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('and', 'O'), ('international', 'O'), ('director', 'O'), ('of', 'O'), ('Boyden', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), (',', 'O'), ('management', 'O'), ('consultants', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Carl', 'PERSON'), ('A.', 'PERSON'), ('Miller', 'PERSON'), ('of', 'O'), ('Ardsley', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('a', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Irving', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('McCarthy', 'PERSON'), ('is', 'O'), ('an', 'O'), ('associate', 'O'), ('in', 'O'), ('the', 'O'), ('corporate', 'O'), ('finance', 'O'), ('department', 'O'), ('of', 'O'), ('Salomon', 'ORGANIZATION'), ('Brothers', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Gilman', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Baltimore', 'LOCATION'), ('and', 'O'), ('Dartmouth', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('Baltimore', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Venable', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Baetjer', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Howard', 'ORGANIZATION'), ('and', 'O'), ('chairman', 'O'), ('of', 'O'), ('McCarthy', 'ORGANIZATION'), ('Hicks', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('distributor', 'O'), ('of', 'O'), ('alcoholic', 'O'), ('beverages', 'O'), ('in', 'O'), ('West', 'LOCATION'), ('Timonium', 'LOCATION'), (',', 'O'), ('Md.', 'LOCATION'), (',', 'O'), ('founded', 'O'), ('by', 'O'), ('the', 'O'), ('future', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('late', 'O'), ('grandfather', 'O'), (',', 'O'), ('F.', 'PERSON'), ('Jordon', 'PERSON'), ('McCarthy', 'PERSON'), ('of', 'O'), ('Baltimore', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Joseph', 'PERSON'), ('P.', 'PERSON'), ('Flynn', 'PERSON'), ('of', 'O'), ('Pelham', 'LOCATION'), ('Manor', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Christine', 'PERSON'), ('Patrice', 'PERSON'), ('Flynn', 'PERSON'), ('to', 'O'), ('Stephen', 'PERSON'), ('Merle', 'PERSON'), ('Dirks', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Lee', 'PERSON'), ('E.', 'PERSON'), ('Dirks', 'PERSON'), ('of', 'O'), ('Bloomfield', 'LOCATION'), ('Hills', 'LOCATION'), (',', 'O'), ('Mich.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Barbara', 'PERSON'), ('N.', 'PERSON'), ('Dirks', 'PERSON'), ('of', 'O'), ('Bethesda', 'LOCATION'), (',', 'O'), ('Md.', 'LOCATION'), ('.', 'O'), ('A', 'O'), ('May', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('Miss', 'O'), ('Flynn', 'PERSON'), (',', 'O'), ('a', 'O'), ('manager', 'O'), ('of', 'O'), ('advertising', 'O'), ('and', 'O'), ('sales', 'O'), ('promotion', 'O'), ('for', 'O'), ('the', 'O'), ('Entertainment', 'O'), ('and', 'O'), ('Sports', 'O'), ('Programming', 'O'), ('Network', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('St.', 'ORGANIZATION'), ('Lawrence', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('vice', 'O'), ('president', 'O'), ('and', 'O'), ('director', 'O'), ('of', 'O'), ('marketing', 'O'), ('and', 'O'), ('public', 'O'), ('relations', 'O'), ('at', 'O'), ('the', 'O'), ('East', 'LOCATION'), ('River', 'LOCATION'), ('Savings', 'LOCATION'), ('Bank', 'LOCATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Florence', 'PERSON'), ('E.', 'PERSON'), ('Flynn', 'PERSON'), (',', 'O'), ('is', 'O'), ('in', 'O'), ('the', 'O'), ('advertising', 'O'), ('department', 'O'), ('at', 'O'), ('Brooks', 'ORGANIZATION'), ('Brothers', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Dirks', 'PERSON'), (',', 'O'), ('a', 'O'), ('stockbroker', 'O'), ('at', 'O'), ('Baird', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Patrick', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('St.', 'ORGANIZATION'), ('Olaf', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Northfield', 'LOCATION'), (',', 'O'), ('Minn.', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), ('is', 'O'), ('a', 'O'), ('professional', 'O'), ('flutist', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Harvey', 'PERSON'), ('H.', 'PERSON'), ('Harris', 'PERSON'), ('of', 'O'), ('Manhasset', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Linda', 'PERSON'), ('Hope', 'PERSON'), ('Harris', 'PERSON'), ('to', 'O'), ('Mark', 'PERSON'), ('David', 'PERSON'), ('Lewis', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mary', 'PERSON'), ('Jane', 'PERSON'), ('Lewis', 'PERSON'), ('of', 'O'), ('Randolph', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Richard', 'PERSON'), ('Lewis', 'PERSON'), ('of', 'O'), ('Lake', 'LOCATION'), ('Worth', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('September', 'O'), ('.', 'O'), ('Miss', 'O'), ('Harris', 'PERSON'), (',', 'O'), ('a', 'O'), ('product', 'O'), ('administrator', 'O'), ('for', 'O'), ('the', 'O'), ('International', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('Machines', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('White', 'LOCATION'), ('Plains', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Bates', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('industrial', 'O'), ('engineering', 'O'), ('from', 'O'), ('Lehigh', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Harvey', 'ORGANIZATION'), ('H.', 'ORGANIZATION'), ('Harris', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('public', 'O'), ('relations', 'O'), ('concern', 'O'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Irma', 'PERSON'), ('L.', 'PERSON'), ('Harris', 'PERSON'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('English', 'O'), ('teacher', 'O'), ('at', 'O'), ('the', 'O'), ('Manhasset', 'O'), ('Community', 'O'), ('Day', 'O'), ('Center', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Lewis', 'PERSON'), (',', 'O'), ('a', 'O'), ('technical', 'O'), ('consultant', 'O'), ('at', 'O'), ('Automatic', 'ORGANIZATION'), ('Data', 'ORGANIZATION'), ('Processing', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Franklin', 'PERSON'), ('and', 'O'), ('Marshall', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('economics', 'O'), ('from', 'O'), ('Rutgers', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('he', 'O'), ('is', 'O'), ('a', 'O'), ('doctoral', 'O'), ('candidate', 'O'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), ('is', 'O'), ('a', 'O'), ('psychiatric', 'O'), ('social', 'O'), ('worker', 'O'), ('and', 'O'), ('his', 'O'), ('father', 'O'), ('a', 'O'), ('goldsmith', 'O'), ('.', 'O')), (('Mary', 'PERSON'), ('Louise', 'PERSON'), ('Egan', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Janice', 'PERSON'), ('W.', 'PERSON'), ('Egan', 'PERSON'), ('of', 'O'), ('Langhorne', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Philip', 'PERSON'), ('M.', 'PERSON'), ('Egan', 'PERSON'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Dr.', 'PERSON'), ('Peter', 'PERSON'), ('David', 'PERSON'), ('Blauner', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Allan', 'PERSON'), ('S.', 'PERSON'), ('Blauner', 'PERSON'), ('of', 'O'), ('Easton', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Bette', 'PERSON'), ('Blauner', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Charles', 'PERSON'), ('Schaeslein', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('St.', 'LOCATION'), ('Andrew', 'LOCATION'), (\"'s\", 'O'), ('Roman', 'ORGANIZATION'), ('Catholic', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Newtown', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('is', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('Pennsylvania', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('in', 'O'), ('charge', 'O'), ('of', 'O'), ('the', 'O'), ('Philadelphia', 'ORGANIZATION'), ('Revenue', 'ORGANIZATION'), ('Department', 'ORGANIZATION'), (\"'s\", 'O'), ('sanctions', 'O'), ('unit', 'O'), (',', 'O'), ('responsible', 'O'), ('for', 'O'), ('initiating', 'O'), ('legal', 'O'), ('action', 'O'), ('against', 'O'), ('delinquent', 'O'), ('taxpayers', 'O'), ('.', 'O'), ('Dr.', 'PERSON'), ('Blauner', 'PERSON'), (',', 'O'), ('a', 'O'), ('veterinarian', 'O'), ('in', 'O'), ('North', 'LOCATION'), ('Wales', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Connecticut', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Veterinary', 'ORGANIZATION'), ('Medicine', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Blauner', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('marketing', 'O'), ('consulting', 'O'), ('concern', 'O'), ('in', 'O'), ('Easton', 'LOCATION'), (',', 'O'), ('and', 'O'), ('his', 'O'), ('mother', 'O'), ('is', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('Portfolio', 'ORGANIZATION'), ('Ltd.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('personal', 'O'), ('shopping', 'O'), ('and', 'O'), ('party', 'O'), ('planning', 'O'), ('concern', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('great-grandson', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Harry', 'PERSON'), ('Blauner', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('a', 'O'), ('founder', 'O'), ('of', 'O'), ('Blauner', 'PERSON'), (\"'s\", 'O'), (',', 'O'), ('which', 'O'), ('was', 'O'), ('a', 'O'), ('women', 'O'), (\"'s\", 'O'), ('specialty', 'O'), ('shop', 'O'), ('in', 'O'), ('Philadelphia', 'LOCATION'), (',', 'O'), ('and', 'O'), ('of', 'O'), ('the', 'O'), ('Wilbur', 'PERSON'), ('Rogers', 'PERSON'), ('chain', 'O'), ('of', 'O'), ('women', 'O'), (\"'s\", 'O'), ('clothing', 'O'), ('stores', 'O'), (',', 'O'), ('which', 'O'), ('was', 'O'), ('based', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Laurie', 'PERSON'), ('Robbins', 'PERSON'), ('Shaffer', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Richard', 'PERSON'), ('Fiske', 'PERSON'), ('Shaffer', 'PERSON'), ('of', 'O'), ('Suffield', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('in', 'O'), ('Clinton', 'PERSON'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Randall', 'PERSON'), ('Scott', 'PERSON'), ('Whiting', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('David', 'PERSON'), ('R.', 'PERSON'), ('Whiting', 'PERSON'), ('of', 'O'), ('Clinton', 'PERSON'), ('.', 'O'), ('The', 'O'), ('nondenominational', 'O'), ('ceremony', 'O'), ('was', 'O'), ('performed', 'O'), ('at', 'O'), ('the', 'O'), ('Hamilton', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('Chapel', 'ORGANIZATION'), ('by', 'O'), ('the', 'O'), ('chaplain', 'O'), (',', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Jeffrey', 'PERSON'), ('C.', 'PERSON'), ('Eaton', 'PERSON'), (',', 'O'), ('a', 'O'), ('Lutheran', 'O'), ('pastor', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('be', 'O'), ('known', 'O'), ('as', 'O'), ('Laurie', 'PERSON'), ('Shaffer-Whiting', 'PERSON'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('bridegroom', 'G'), (',', 'O'), ('are', 'O'), ('both', 'O'), ('graduates', 'O'), ('of', 'O'), ('Hamilton', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('ceramic', 'O'), ('instructors', 'O'), ('at', 'O'), ('the', 'O'), ('Kirkland', 'O'), ('Art', 'O'), ('Center', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('also', 'O'), ('graduated', 'O'), ('from', 'O'), ('Suffield', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('volunteer', 'O'), ('at', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('for', 'O'), ('the', 'O'), ('Deaf', 'O'), ('in', 'O'), ('Rome', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('Her', 'O'), ('father', 'O'), ('recently', 'O'), ('retired', 'O'), ('as', 'O'), ('manager', 'O'), ('of', 'O'), ('environmental', 'O'), ('technology', 'O'), ('for', 'O'), ('the', 'O'), ('C.', 'PERSON'), ('H.', 'PERSON'), ('Dexter', 'PERSON'), ('division', 'O'), ('of', 'O'), ('the', 'O'), ('Dexter', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'ORGANIZATION'), ('Windsor', 'ORGANIZATION'), ('Locks', 'ORGANIZATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('manufacturer', 'O'), ('of', 'O'), ('paper', 'O'), ('and', 'O'), ('chemicals', 'O'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('child-care', 'O'), ('worker', 'O'), ('at', 'O'), ('the', 'O'), ('House', 'O'), ('of', 'O'), ('the', 'O'), ('Good', 'O'), ('Shepherd', 'O'), ('in', 'O'), ('Utica', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('with', 'O'), ('Special', 'O'), ('Metals', 'O'), (',', 'O'), ('a', 'O'), ('New', 'LOCATION'), ('Hartford', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('producer', 'O'), ('of', 'O'), ('high-tempered', 'O'), ('alloys', 'O'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Charlotte', 'PERSON'), ('Whiting', 'PERSON'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('art', 'O'), ('teacher', 'O'), ('at', 'O'), ('the', 'O'), ('Clinton', 'O'), ('Senior', 'O'), ('High', 'O'), ('School', 'O'), ('.', 'O')), (('JoAnn', 'PERSON'), ('Giam', 'PERSON'), ('to', 'O'), ('Be', 'O'), ('Bride', 'O'), ('The', 'O'), ('engagement', 'O'), ('of', 'O'), ('JoAnn', 'PERSON'), ('Jacqueline', 'PERSON'), ('Giam', 'PERSON'), ('of', 'O'), ('Washington', 'LOCATION'), ('to', 'O'), ('Stephen', 'PERSON'), ('A.', 'PERSON'), ('Schoepke', 'PERSON'), ('of', 'O'), ('Arlington', 'LOCATION'), (',', 'O'), ('Va.', 'LOCATION'), (',', 'O'), (',', 'O'), ('has', 'O'), ('been', 'O'), ('announced', 'O'), ('by', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Jack', 'PERSON'), ('Giam', 'PERSON'), ('of', 'O'), ('Briarcliff', 'LOCATION'), ('Manor', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('parents', 'O'), ('of', 'O'), ('the', 'O'), ('future', 'O'), ('bride', 'B'), ('.', 'O'), ('Her', 'O'), ('fiance', 'O'), ('is', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Maurice', 'PERSON'), ('Schoepke', 'PERSON'), ('of', 'O'), ('Santa', 'LOCATION'), ('Fe', 'LOCATION'), (',', 'O'), ('N.M.', 'LOCATION'), ('.', 'O')), (('Announcement', 'O'), ('has', 'O'), ('been', 'O'), ('made', 'O'), ('by', 'O'), ('Harry', 'PERSON'), ('F.', 'PERSON'), ('Bott', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('Providence', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('of', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('his', 'O'), ('daughter', 'O'), (',', 'O'), ('Sarah', 'PERSON'), ('Kate', 'PERSON'), ('Bott', 'PERSON'), (',', 'O'), ('to', 'O'), ('Michael', 'PERSON'), ('Andrew', 'PERSON'), ('Alford', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Ronald', 'PERSON'), ('Putnam', 'PERSON'), ('of', 'O'), ('Round', 'LOCATION'), ('Lake', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('also', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mary', 'PERSON'), ('Campbell', 'PERSON'), ('Bott', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('at', 'O'), ('the', 'O'), ('Rochester', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), (',', 'O'), ('of', 'O'), ('which', 'O'), ('her', 'O'), ('fiance', 'O'), ('is', 'O'), ('a', 'O'), ('graduate', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('United', 'ORGANIZATION'), ('States', 'ORGANIZATION'), ('Fire', 'ORGANIZATION'), ('Insurance', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Morristown', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('Her', 'O'), ('mother', 'O'), ('was', 'O'), ('a', 'O'), ('chemist', 'O'), ('at', 'O'), ('Bell', 'ORGANIZATION'), ('Laboratories', 'ORGANIZATION'), ('in', 'O'), ('Murray', 'LOCATION'), ('Hill', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION')), (('The', 'O'), ('bride', 'B'), (',', 'O'), ('an', 'O'), ('underwriter', 'O'), ('in', 'O'), ('Manhattan', 'LOCATION'), ('with', 'O'), ('the', 'O'), ('Home', 'ORGANIZATION'), ('Insurance', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('Colby-Sawyer', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('Robinson-Conner', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('national', 'O'), ('insurance', 'O'), ('brokerage', 'O'), ('in', 'O'), ('Erie', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Zwirn', 'PERSON'), (',', 'O'), ('a', 'O'), ('media', 'O'), ('planner', 'O'), ('for', 'O'), ('Rosenfeld', 'PERSON'), (',', 'O'), ('Sirowitz', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Lawson', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('advertising', 'O'), ('agency', 'O'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Horace', 'ORGANIZATION'), ('Mann-Barnard', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Lehigh', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Hill', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Knowlton', 'ORGANIZATION'), (',', 'O'), ('the', 'O'), ('public', 'O'), ('relations', 'O'), ('company', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Michelle', 'PERSON'), ('R.', 'PERSON'), ('Zwirn', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('project', 'O'), ('manager', 'O'), ('for', 'O'), ('M.O.A.C.', 'ORGANIZATION'), (',', 'O'), ('the', 'O'), ('marine', 'O'), ('insurance', 'O'), ('subsidiary', 'O'), ('of', 'O'), ('the', 'O'), ('Continental', 'ORGANIZATION'), ('Insurance', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O')), (('Dr.', 'PERSON'), ('Nancy', 'PERSON'), ('Joy', 'PERSON'), ('Hunter', 'PERSON'), (',', 'O'), ('a', 'O'), ('pathologist', 'O'), (',', 'O'), ('and', 'O'), ('Dr.', 'PERSON'), ('R.', 'PERSON'), ('Alan', 'PERSON'), ('Henseler', 'PERSON'), (',', 'O'), ('a', 'O'), ('surgeon', 'O'), (',', 'O'), ('both', 'O'), ('at', 'O'), ('Morristown', 'LOCATION'), ('-LRB-', 'O'), ('N.J.', 'LOCATION'), ('-RRB-', 'O'), ('Memorial', 'O'), ('Hospital', 'O'), (',', 'O'), ('were', 'O'), ('married', 'O'), ('yesterday', 'O'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('W.', 'PERSON'), ('James', 'PERSON'), ('White', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('United', 'ORGANIZATION'), ('Methodist', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Morristown', 'LOCATION'), ('.', 'O'), ('Anne', 'PERSON'), ('E.', 'PERSON'), (\"O'Connell\", 'PERSON'), ('was', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('and', 'O'), ('B.', 'PERSON'), ('Daniel', 'PERSON'), ('Evans', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('retain', 'O'), ('her', 'O'), ('name', 'O'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('James', 'PERSON'), ('H.', 'PERSON'), ('Hunter', 'PERSON'), ('of', 'O'), ('Saginaw', 'LOCATION'), (',', 'O'), ('Mich.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('marketing', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Baker', 'ORGANIZATION'), ('Perkins', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('machine', 'O'), ('manufacturer', 'O'), ('in', 'O'), ('Saginaw', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Joy', 'PERSON'), ('Hunter', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('chemist', 'O'), ('for', 'O'), ('the', 'O'), ('Saginaw', 'ORGANIZATION'), ('County', 'ORGANIZATION'), ('Health', 'ORGANIZATION'), ('Department', 'ORGANIZATION'), ('The', 'O'), ('bridegroom', 'G'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Joseph', 'PERSON'), ('L.', 'PERSON'), ('Henseler', 'PERSON'), ('of', 'O'), ('Morristown', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Franklin', 'PERSON'), ('and', 'O'), ('Marshall', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('his', 'O'), ('medical', 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('Jersey', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Medicine', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('retired', 'O'), ('as', 'O'), ('a', 'O'), ('production', 'O'), ('supervisor', 'O'), ('for', 'O'), ('the', 'O'), ('Defense', 'ORGANIZATION'), ('Department', 'ORGANIZATION'), ('.', 'O')), (('Darleen', 'PERSON'), ('Wirth', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('Wirth', 'PERSON'), ('of', 'O'), ('Brooklyn', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Daniel', 'PERSON'), ('Pope', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Leavitt', 'PERSON'), ('J.', 'PERSON'), ('Pope', 'PERSON'), ('of', 'O'), ('Scarsdale', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('The', 'O'), ('Rev.', 'R'), ('Francis', 'PERSON'), (\"O'Malley\", 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Pius', 'ORGANIZATION'), ('X', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Scarsdale', 'LOCATION'), ('.', 'O'), ('Charlene', 'PERSON'), ('Carlino', 'PERSON'), ('was', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Pope', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('for', 'O'), ('his', 'O'), ('son', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Pope', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Fashion', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('administrative', 'O'), ('assistant', 'O'), ('at', 'O'), ('CBSFox', 'O'), ('Video', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('retired', 'O'), ('as', 'O'), ('manager', 'O'), ('of', 'O'), ('a', 'O'), ('carpet', 'O'), ('concern', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('Georgetown', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Georgetown', 'LOCATION'), (',', 'O'), ('Ky.', 'LOCATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('manager', 'O'), ('of', 'O'), ('network', 'O'), ('transmission', 'O'), ('at', 'O'), ('CBS', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Phillip', 'PERSON'), ('L.', 'PERSON'), ('Fellman', 'PERSON'), ('of', 'O'), ('Pompano', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Nancy', 'PERSON'), ('Joy', 'PERSON'), ('Fellman', 'PERSON'), ('to', 'O'), ('Kevin', 'PERSON'), ('John', 'PERSON'), ('Lally', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Henry', 'PERSON'), ('J.', 'PERSON'), ('Lally', 'PERSON'), ('of', 'O'), ('Westport', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Allaire', 'PERSON'), (',', 'O'), ('N.J.', 'LOCATION'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('June', 'O'), ('2', 'O'), ('.', 'O'), ('Miss', 'O'), ('Fellman', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Saddle', 'LOCATION'), ('River', 'LOCATION'), ('-LRB-', 'O'), ('N.J.', 'LOCATION'), ('-RRB-', 'O'), ('Country', 'O'), ('Day', 'O'), ('School', 'O'), ('and', 'O'), ('Tulane', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('account', 'O'), ('executive', 'O'), ('at', 'O'), ('Brooks', 'ORGANIZATION'), ('Community', 'ORGANIZATION'), ('Newspapers', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('Westport', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('optometrist', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Lally', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('Skidmore', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('advertising', 'O'), ('director', 'O'), ('of', 'O'), ('Brooks', 'ORGANIZATION'), ('Community', 'ORGANIZATION'), ('Newspapers', 'ORGANIZATION'), (',', 'O'), ('of', 'O'), ('which', 'O'), ('his', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('.', 'O')), (('Announcement', 'O'), ('has', 'O'), ('been', 'O'), ('made', 'O'), ('by', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('N.', 'PERSON'), ('Johnson', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('Canaan', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('of', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Margaret', 'PERSON'), ('Elizabeth', 'PERSON'), ('Johnson', 'PERSON'), ('to', 'O'), ('Daniel', 'PERSON'), ('Renaldo', 'PERSON'), ('Bernstein', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Morris', 'PERSON'), ('Bernstein', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('A', 'O'), ('May', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('Miss', 'O'), ('Johnson', 'PERSON'), ('and', 'O'), ('her', 'O'), ('fiance', 'O'), ('are', 'O'), ('graduates', 'O'), ('of', 'O'), ('the', 'O'), ('Berklee', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Music', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), ('and', 'O'), ('members', 'O'), ('of', 'O'), ('the', 'O'), ('Mood', 'O'), ('Elevator', 'O'), (',', 'O'), ('a', 'O'), ('rock', 'O'), ('group', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('graduated', 'O'), ('also', 'O'), ('from', 'O'), ('the', 'O'), ('Barlow', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Amenia', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Johnson', 'PERSON'), ('is', 'O'), ('a', 'O'), ('retired', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Union', 'ORGANIZATION'), ('Carbide', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Russell', 'PERSON'), (',', 'O'), ('also', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('chairman', 'O'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('First', 'ORGANIZATION'), ('Alabama', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Bernstein', 'PERSON'), (',', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('Elizabeth', 'ORGANIZATION'), ('Irwin', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('attended', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Wisconsin', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('now', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Supreme', 'ORGANIZATION'), ('Optical', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Johnson', 'PERSON'), (\"'s\", 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('Connaught', 'O'), ('Consultants', 'O'), (',', 'O'), ('executive', 'O'), ('recruiters', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('Canaan', 'LOCATION'), ('.', 'O')), (('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('Randolph', 'PERSON'), ('Smith', 'PERSON'), ('of', 'O'), ('Martinsville', 'LOCATION'), (',', 'O'), ('Va.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Jane', 'PERSON'), ('Newman', 'PERSON'), ('Smith', 'PERSON'), ('to', 'O'), ('Kent', 'PERSON'), ('Hubbard', 'PERSON'), ('Dodge', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Dodge', 'O'), ('of', 'O'), ('Summit', 'O'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Sherman', 'PERSON'), (\"'s\", 'O'), ('Point', 'O'), (',', 'O'), ('Camden', 'LOCATION'), (',', 'O'), ('Me', 'O'), ('.', 'O'), ('A', 'O'), ('June', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('Miss', 'PERSON'), ('Smith', 'PERSON'), (',', 'O'), ('a', 'O'), ('systems', 'O'), ('engineer', 'O'), ('at', 'O'), ('the', 'O'), ('International', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('Machines', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Richmond', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Randolph-Macon', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('physician', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Dodge', 'O'), (',', 'O'), ('a', 'O'), ('sales', 'O'), ('representative', 'O'), ('for', 'O'), ('the', 'O'), ('Northwestern', 'ORGANIZATION'), ('Mutual', 'ORGANIZATION'), ('Life', 'ORGANIZATION'), ('Insurance', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Richmond', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Lawrenceville', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Randolph-Macon', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('professional', 'O'), ('investigator', 'O'), (',', 'O'), ('is', 'O'), ('owner', 'O'), ('of', 'O'), ('the', 'O'), ('Hamilton', 'ORGANIZATION'), ('Investigation', 'ORGANIZATION'), ('Agency', 'ORGANIZATION'), ('in', 'O'), ('Murray', 'LOCATION'), ('Hill', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('The', 'O'), ('future', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Peter', 'PERSON'), ('J.', 'PERSON'), ('Ferrara', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Cornwall', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Washington', 'LOCATION'), ('Dodge', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('investment', 'O'), ('firm', 'O'), ('of', 'O'), ('Clark', 'PERSON'), (',', 'O'), ('Dodge', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Donald', 'PERSON'), ('Jordan', 'PERSON'), ('Donahue', 'PERSON'), ('of', 'O'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Judith', 'PERSON'), ('Anne', 'PERSON'), ('Donahue', 'PERSON'), ('to', 'O'), ('Bruce', 'PERSON'), ('Edward', 'PERSON'), ('Lafranchi', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Edward', 'PERSON'), ('A.', 'PERSON'), ('Lafranchi', 'PERSON'), ('of', 'O'), ('Livermore', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Donahue', 'PERSON'), (',', 'O'), ('an', 'O'), ('associate', 'O'), ('with', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('investment', 'O'), ('banking', 'O'), ('house', 'O'), ('of', 'O'), ('Lehman', 'ORGANIZATION'), ('Brothers', 'ORGANIZATION'), ('Kuhn', 'ORGANIZATION'), ('Loeb', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('attended', 'O'), ('the', 'O'), ('School', 'O'), ('of', 'O'), ('the', 'O'), ('Holy', 'O'), ('Child', 'O'), ('in', 'O'), ('Old', 'LOCATION'), ('Westbury', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Foreign', 'ORGANIZATION'), ('Service', 'ORGANIZATION'), ('at', 'O'), ('Georgetown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('Cornell', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (\"'s\", 'O'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Management', 'ORGANIZATION'), (',', 'O'), ('as', 'O'), ('did', 'O'), ('her', 'O'), ('fiance', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('vice', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('Continental', 'ORGANIZATION'), ('Group', 'ORGANIZATION'), ('in', 'O'), ('Stamford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('board', 'O'), ('of', 'O'), ('directors', 'O'), ('of', 'O'), ('Georgetown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Lafranchi', 'PERSON'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('a', 'O'), ('national', 'O'), ('account', 'O'), ('executive', 'O'), ('with', 'O'), ('the', 'O'), ('asset-based', 'O'), ('finance', 'O'), ('division', 'O'), ('of', 'O'), ('the', 'O'), ('General', 'ORGANIZATION'), ('Electric', 'ORGANIZATION'), ('Credit', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Stamford', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('California', 'ORGANIZATION'), ('at', 'O'), ('Davis', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('manager', 'O'), ('of', 'O'), ('the', 'O'), ('electronics', 'O'), ('engineering', 'O'), ('department', 'O'), ('at', 'O'), ('the', 'O'), ('Lawrence', 'ORGANIZATION'), ('Livermore', 'ORGANIZATION'), ('National', 'ORGANIZATION'), ('Laboratory', 'ORGANIZATION'), ('.', 'O')), (('Jane', 'PERSON'), ('Rabin', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('retired', 'O'), ('Associate', 'O'), ('Judge', 'O'), ('Samuel', 'PERSON'), ('Rabin', 'PERSON'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Court', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Appeals', 'ORGANIZATION'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Rabin', 'PERSON'), ('of', 'O'), ('Floral', 'LOCATION'), ('Park', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Russell', 'PERSON'), ('N.', 'PERSON'), ('Stern', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Harry', 'PERSON'), ('J.', 'PERSON'), ('Stern', 'PERSON'), ('of', 'O'), ('Sands', 'O'), ('Point', 'O'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Stuart', 'PERSON'), (',', 'O'), ('Fla.', 'LOCATION'), ('.', 'O'), ('Rabbi', 'R'), ('Israel', 'PERSON'), ('Mowshowitz', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Rabin', 'PERSON'), ('home', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Stern', 'PERSON'), (',', 'O'), ('a', 'O'), ('freelance', 'O'), ('advertising', 'O'), ('copywriter', 'O'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Smith', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('the', 'O'), ('presiding', 'O'), ('justice', 'O'), ('of', 'O'), ('the', 'O'), ('Appellate', 'O'), ('Division', 'O'), ('of', 'O'), ('the', 'O'), ('State', 'ORGANIZATION'), ('Supreme', 'ORGANIZATION'), ('Court', 'ORGANIZATION'), ('in', 'O'), ('Manhattan', 'LOCATION'), ('in', 'O'), ('1974', 'O'), ('when', 'O'), ('he', 'O'), ('was', 'O'), ('appointed', 'O'), ('by', 'O'), ('Gov.', 'O'), ('Malcolm', 'PERSON'), ('Wilson', 'PERSON'), ('to', 'O'), ('fill', 'O'), ('a', 'O'), ('vacancy', 'O'), ('on', 'O'), ('the', 'O'), ('state', 'O'), (\"'s\", 'O'), ('highest', 'O'), ('court', 'O'), ('.', 'O'), ('A', 'O'), ('former', 'O'), ('Republican', 'O'), ('state', 'O'), ('Assemblyman', 'O'), ('from', 'O'), ('Queens', 'LOCATION'), (',', 'O'), ('he', 'O'), ('was', 'O'), ('a', 'O'), ('judge', 'O'), ('for', 'O'), ('20', 'O'), ('years', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Stern', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('St.', 'ORGANIZATION'), ('Peter', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Jersey', 'LOCATION'), ('City', 'LOCATION'), (',', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Norca', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Great', 'LOCATION'), ('Neck', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('an', 'O'), ('international', 'O'), ('trading', 'O'), ('and', 'O'), ('diversified', 'O'), ('manufacturing', 'O'), ('company', 'O'), (',', 'O'), ('of', 'O'), ('which', 'O'), ('his', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('also', 'O'), ('president', 'O'), ('and', 'O'), ('chairman', 'O'), ('of', 'O'), ('Sutton', 'ORGANIZATION'), ('East', 'ORGANIZATION'), ('Tennis', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('a', 'O'), ('tennis', 'O'), ('club', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('also', 'O'), ('chairman', 'O'), ('of', 'O'), ('Talbert', 'ORGANIZATION'), ('Manufacturing', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('of', 'O'), ('Rensselaer', 'LOCATION'), (',', 'O'), ('Ind.', 'LOCATION'), (',', 'O'), ('a', 'O'), ('manufacturer', 'O'), ('of', 'O'), ('heavy-duty', 'O'), ('road', 'O'), ('trailers', 'O'), ('.', 'O')), (('Beverly', 'LOCATION'), ('Canada', 'LOCATION'), ('a', 'O'), ('Bride', 'O'), ('Beverly', 'LOCATION'), ('Canada', 'LOCATION'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Edward', 'PERSON'), ('Canada', 'PERSON'), ('of', 'O'), ('Richmond', 'LOCATION'), (',', 'O'), ('Va.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Cory', 'PERSON'), ('Neal', 'PERSON'), ('Ellenhorn', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Arline', 'PERSON'), ('Bonat', 'PERSON'), ('of', 'O'), ('Fort', 'LOCATION'), ('Lee', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Sy', 'PERSON'), ('Ellenhorn', 'PERSON'), ('of', 'O'), ('St.', 'LOCATION'), ('George', 'LOCATION'), (',', 'O'), ('S.I.', 'LOCATION'), ('Rabbi', 'R'), ('Jack', 'PERSON'), ('Spiro', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('Stony', 'LOCATION'), ('Point', 'LOCATION'), (',', 'O'), ('a', 'O'), ('mansion', 'O'), ('in', 'O'), ('Richmond', 'LOCATION'), ('.', 'O')), (('Announcement', 'O'), ('has', 'O'), ('been', 'O'), ('made', 'O'), ('of', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('Mary', 'PERSON'), ('Jule', 'PERSON'), ('Steele', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('William', 'PERSON'), ('C.', 'PERSON'), ('Steele', 'PERSON'), ('of', 'O'), ('Westfield', 'ORGANIZATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Mary', 'PERSON'), ('Schnopp', 'PERSON'), ('Steele', 'PERSON'), ('of', 'O'), ('Colorado', 'LOCATION'), ('Springs', 'LOCATION'), (',', 'O'), ('to', 'O'), ('Michael', 'PERSON'), ('Guilfoile', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('F.', 'PERSON'), ('Guilfoile', 'PERSON'), ('of', 'O'), ('North', 'LOCATION'), ('Miami', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('May', 'O'), ('13', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('expects', 'O'), ('to', 'O'), ('receive', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('business', 'O'), ('administration', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('in', 'O'), ('May', 'O'), (',', 'O'), ('is', 'O'), ('on', 'O'), ('leave', 'O'), ('from', 'O'), ('Coopers', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Lybrand', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), (',', 'O'), ('where', 'O'), ('she', 'O'), ('was', 'O'), ('a', 'O'), ('manager', 'O'), ('of', 'O'), ('the', 'O'), ('auditing', 'O'), ('department', 'O'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('summa', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Boston', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('Northeast', 'O'), ('regional', 'O'), ('manager', 'O'), ('for', 'O'), ('the', 'O'), ('Sheaffer', 'ORGANIZATION'), ('Eaton', 'ORGANIZATION'), ('division', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('of', 'O'), ('Textron', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Holy', 'ORGANIZATION'), ('Cross', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Harvard', 'ORGANIZATION'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('Administration', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('in', 'O'), ('charge', 'O'), ('of', 'O'), ('the', 'O'), ('jewelry', 'O'), ('division', 'O'), ('in', 'O'), ('Miami', 'LOCATION'), ('of', 'O'), ('the', 'O'), ('Federal', 'ORGANIZATION'), ('Bureau', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Investigation', 'ORGANIZATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('E.', 'PERSON'), ('Calahan', 'PERSON'), ('of', 'O'), ('Chappaqua', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Joan', 'PERSON'), ('Calahan', 'PERSON'), ('to', 'O'), ('Cornelius', 'PERSON'), ('Kevin', 'PERSON'), ('Shannahan', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Cornelius', 'PERSON'), ('E.', 'PERSON'), ('Shannahan', 'PERSON'), ('of', 'O'), ('Chappaqua', 'LOCATION'), ('and', 'O'), ('Ludlow', 'PERSON'), (',', 'O'), ('Vt.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('Roanoke', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('England', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('associate', 'O'), ('in', 'O'), ('the', 'O'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Miller', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Di', 'ORGANIZATION'), ('Benedetto', 'ORGANIZATION'), ('in', 'O'), ('Pleasantville', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Bucilla', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('Secaucus', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Cornell', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('vice', 'O'), ('president', 'O'), ('and', 'O'), ('treasurer', 'O'), ('of', 'O'), ('the', 'O'), ('Hoechst', 'ORGANIZATION'), ('Uhde', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('engineering', 'O'), ('concern', 'O'), ('in', 'O'), ('Englewood', 'LOCATION'), ('Cliffs', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Gerald', 'PERSON'), ('Miller', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Carol', 'PERSON'), ('Miller', 'PERSON'), ('to', 'O'), ('Richard', 'PERSON'), ('Levy', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Levy', 'PERSON'), ('of', 'O'), ('Peekskill', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('an', 'O'), ('associate', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Fried', 'O'), (',', 'O'), ('Frank', 'PERSON'), (',', 'O'), ('Harris', 'PERSON'), (',', 'O'), ('Schriver', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Jacobson', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('Middlebury', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Boston', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('and', 'O'), ('creative', 'O'), ('director', 'O'), ('of', 'O'), ('DYR', 'ORGANIZATION'), ('U.S.A.', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('advertising', 'O'), ('agency', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Judy', 'PERSON'), ('Miller', 'PERSON'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('classified', 'O'), ('advertising', 'O'), ('manager', 'O'), ('of', 'O'), ('Dial', 'O'), (',', 'O'), ('the', 'O'), ('monthly', 'O'), ('magazine', 'O'), ('of', 'O'), ('Channel', 'O'), ('13', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Levy', 'PERSON'), ('is', 'O'), ('an', 'O'), ('associate', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Esanu', 'ORGANIZATION'), ('Katsky', 'ORGANIZATION'), ('Korins', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Siger', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Williams', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('the', 'O'), ('Syracuse', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('he', 'O'), ('was', 'O'), ('an', 'O'), ('editor', 'O'), ('of', 'O'), ('The', 'O'), ('Law', 'O'), ('Review', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('area', 'O'), ('sales', 'O'), ('manager-distributor', 'O'), ('for', 'O'), ('the', 'O'), ('Philip', 'ORGANIZATION'), ('Morris', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Mona', 'PERSON'), ('Levy', 'PERSON'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('editor', 'O'), ('at', 'O'), ('Kings', 'O'), ('Road', 'O'), ('Productions', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Dr.', 'PERSON'), ('Angela', 'PERSON'), ('Maria', 'PERSON'), ('Macchiarulo', 'PERSON'), ('and', 'O'), ('Dr.', 'PERSON'), ('Steven', 'PERSON'), ('Roy', 'PERSON'), ('Bader', 'PERSON'), ('plan', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('March', 'O'), ('11', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Anthony', 'PERSON'), ('Macchiarulo', 'PERSON'), ('of', 'O'), ('Long', 'LOCATION'), ('Island', 'LOCATION'), ('City', 'LOCATION'), (',', 'O'), ('Queens', 'LOCATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('third-year', 'O'), ('pediatric', 'O'), ('resident', 'O'), ('at', 'O'), ('Children', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('Hospital', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('fiance', 'O'), (',', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Edwin', 'PERSON'), ('H.', 'PERSON'), ('Bader', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('dentist', 'O'), ('practicing', 'O'), ('in', 'O'), ('Burlington', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O')), (('Announcement', 'O'), ('has', 'O'), ('been', 'O'), ('made', 'O'), ('by', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Irving', 'PERSON'), ('Fletcher', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('of', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Phyllis', 'PERSON'), ('Gail', 'PERSON'), ('Fletcher', 'PERSON'), ('to', 'O'), ('Harvey', 'PERSON'), ('Roberts', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Samuel', 'PERSON'), ('Roberts', 'PERSON'), ('of', 'O'), ('Forest', 'LOCATION'), ('Hills', 'LOCATION'), (',', 'O'), ('Queens', 'LOCATION'), ('.', 'O'), ('A', 'O'), ('fall', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('Miss', 'O'), ('Fletcher', 'PERSON'), ('is', 'O'), ('the', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Medical', 'ORGANIZATION'), ('Projects', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('fiance', 'O'), ('is', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Roberts', 'ORGANIZATION'), ('Consultants', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('construction', 'O'), ('-', 'O'), ('engineering', 'O'), ('concern', 'O'), ('headed', 'O'), ('by', 'O'), ('his', 'O'), ('father', 'O'), ('.', 'O')), (('-', 'O'), ('Harris', 'ORGANIZATION'), ('Department', 'ORGANIZATION'), ('Stores', 'ORGANIZATION'), ('in', 'O'), ('Dallas', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Jonathan', 'PERSON'), ('Vaughn', 'PERSON'), ('Neumayer', 'PERSON'), (',', 'O'), ('a', 'O'), ('broker', 'O'), ('with', 'O'), ('ShearsonAmerican', 'ORGANIZATION'), ('Express', 'ORGANIZATION'), ('in', 'O'), ('Dallas', 'LOCATION'), (',', 'O'), ('plan', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('March', 'O'), ('31', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('William', 'PERSON'), ('Trotter', 'PERSON'), ('of', 'O'), ('Athens', 'LOCATION'), (',', 'O'), ('Tenn.', 'LOCATION'), (',', 'O'), ('who', 'O'), ('have', 'O'), ('announced', 'O'), ('her', 'O'), ('engagement', 'O'), ('to', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('T.', 'PERSON'), ('Neumayer', 'PERSON'), ('of', 'O'), ('Port', 'LOCATION'), ('Washington', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('New', 'LOCATION'), ('Smyrna', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('surgeon', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Neumayer', 'PERSON'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('Deerfield', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('and', 'O'), ('Southern', 'ORGANIZATION'), ('Methodist', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('brokerage', 'O'), ('house', 'O'), ('of', 'O'), ('Dominick', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Dominick', 'ORGANIZATION'), ('.', 'O')), (('Announcement', 'O'), ('has', 'O'), ('been', 'O'), ('made', 'O'), ('by', 'O'), ('Capt.', 'O'), ('Bladen', 'PERSON'), ('Dulany', 'PERSON'), ('Claggett', 'PERSON'), (',', 'O'), ('U.S.N.', 'ORGANIZATION'), (',', 'O'), ('retired', 'O'), (',', 'O'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Claggett', 'PERSON'), ('of', 'O'), ('Chevy', 'LOCATION'), ('Chase', 'LOCATION'), (',', 'O'), ('Md.', 'LOCATION'), (',', 'O'), ('of', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Mariamne', 'PERSON'), ('Morris', 'PERSON'), ('Claggett', 'PERSON'), (',', 'O'), ('to', 'O'), ('Hugh', 'PERSON'), ('Blanchard', 'PERSON'), ('Vickery', 'PERSON'), ('3d', 'O'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Comdr.', 'O'), ('Hugh', 'PERSON'), ('B.', 'PERSON'), ('Vickery', 'PERSON'), (',', 'O'), ('U.S.N.', 'ORGANIZATION'), (',', 'O'), ('retired', 'O'), (',', 'O'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Vickery', 'PERSON'), ('of', 'O'), ('Washington', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('to', 'O'), ('be', 'O'), ('on', 'O'), ('May', 'O'), ('12', 'O'), ('.', 'O'), ('Miss', 'O'), ('Claggett', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Holton-Arms', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('from', 'O'), ('Pine', 'LOCATION'), ('Manor', 'LOCATION'), ('and', 'O'), ('Hood', 'O'), ('Colleges', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('legal', 'O'), ('secretary', 'O'), ('in', 'O'), ('the', 'O'), ('Washington', 'LOCATION'), ('firm', 'O'), ('of', 'O'), ('Kirby', 'LOCATION'), (',', 'O'), ('Gillick', 'PERSON'), (',', 'O'), ('Schwartz', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Tuohey', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('made', 'O'), ('her', 'O'), ('debut', 'O'), ('in', 'O'), ('1977', 'O'), ('at', 'O'), ('the', 'O'), ('Bachelors', 'O'), ('Cotillon', 'O'), ('in', 'O'), ('Baltimore', 'LOCATION'), ('.', 'O'), ('At', 'O'), ('his', 'O'), ('retirement', 'O'), ('her', 'O'), ('father', 'O'), ('was', 'O'), ('deputy', 'O'), ('director', 'O'), ('of', 'O'), ('intelligence', 'O'), (',', 'O'), ('Joint', 'O'), ('Chiefs', 'O'), ('of', 'O'), ('Staff', 'O'), ('.', 'O'), ('The', 'O'), ('bride-to-be', 'O'), ('is', 'O'), ('descended', 'O'), ('from', 'O'), ('Thomas', 'PERSON'), ('John', 'PERSON'), ('Claggett', 'PERSON'), (',', 'O'), ('first', 'O'), ('Episcopal', 'O'), ('Bishop', 'O'), ('of', 'O'), ('Maryland', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Vickery', 'PERSON'), (',', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('St.', 'ORGANIZATION'), ('Albans', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Hamilton', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('financial', 'O'), ('correspondent', 'O'), ('for', 'O'), ('The', 'ORGANIZATION'), ('Washington', 'ORGANIZATION'), ('Times', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Dorothy', 'PERSON'), ('Borden', 'PERSON'), ('Vickery', 'PERSON'), (',', 'O'), ('is', 'O'), ('retired', 'O'), ('professor', 'O'), ('of', 'O'), ('French', 'O'), ('at', 'O'), ('the', 'O'), ('Madeira', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('.', 'O')), (('The', 'O'), ('engagement', 'O'), ('of', 'O'), ('Susan', 'PERSON'), ('Hope', 'PERSON'), ('Falvey', 'PERSON'), ('to', 'O'), ('M.', 'PERSON'), ('Carl', 'PERSON'), ('Johnson', 'PERSON'), ('3d', 'O'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Johnson', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Winnetka', 'LOCATION'), (',', 'O'), ('Ill.', 'LOCATION'), (',', 'O'), ('has', 'O'), ('been', 'O'), ('announced', 'O'), ('by', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Patrick', 'PERSON'), ('A.', 'PERSON'), ('Falvey', 'PERSON'), ('of', 'O'), ('Newtown', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('parents', 'O'), ('of', 'O'), ('the', 'O'), ('future', 'O'), ('bride', 'B'), ('.', 'O'), ('A', 'O'), ('May', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O')), (('Amy', 'PERSON'), ('Schechter', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('June', 'PERSON'), ('Schechter', 'PERSON'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Dr.', 'PERSON'), ('Lester', 'PERSON'), ('Schechter', 'PERSON'), ('of', 'O'), ('Kew', 'LOCATION'), ('Gardens', 'LOCATION'), ('Hills', 'LOCATION'), (',', 'O'), ('Queens', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Dr.', 'PERSON'), ('Andrew', 'PERSON'), ('George', 'PERSON'), ('Grossman', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Earle', 'PERSON'), ('H.', 'PERSON'), ('Grossman', 'PERSON'), ('of', 'O'), ('Hewlett', 'LOCATION'), ('Harbor', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('Rabbi', 'R'), ('Sidney', 'PERSON'), ('Solomon', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Jewish', 'O'), ('Center', 'O'), ('of', 'O'), ('Kew', 'LOCATION'), ('Gardens', 'LOCATION'), ('Hills', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('psychologist', 'O'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('assistant', 'O'), ('director', 'O'), ('of', 'O'), ('special', 'O'), ('services', 'O'), ('in', 'O'), ('the', 'O'), ('psychology', 'O'), ('department', 'O'), ('at', 'O'), ('Queens', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('psychology', 'O'), ('from', 'O'), ('Hunter', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('physician', 'O'), ('in', 'O'), ('private', 'O'), ('practice', 'O'), ('in', 'O'), ('Kew', 'LOCATION'), ('Gardens', 'LOCATION'), ('Hills', 'LOCATION'), ('.', 'O'), ('Dr.', 'PERSON'), ('Grossman', 'PERSON'), ('is', 'O'), ('a', 'O'), ('director', 'O'), ('in', 'O'), ('the', 'O'), ('emergency', 'O'), ('room', 'O'), ('at', 'O'), ('Richmond', 'LOCATION'), ('Memorial', 'LOCATION'), ('Hospital', 'LOCATION'), ('on', 'O'), ('Staten', 'LOCATION'), ('Island', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('the', 'O'), ('C.', 'ORGANIZATION'), ('W.', 'ORGANIZATION'), ('Post', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Long', 'ORGANIZATION'), ('Island', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('medical', 'O'), ('degree', 'O'), ('from', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('senior', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('accounting', 'O'), ('firm', 'O'), ('of', 'O'), ('Grossman', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Brozman', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Agrin', 'ORGANIZATION'), ('.', 'O')), (('Sarabeth', 'PERSON'), ('Antzis', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Rabbi', 'R'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Norman', 'PERSON'), ('Antzis', 'PERSON'), ('of', 'O'), ('Borough', 'O'), ('Park', 'O'), (',', 'O'), ('Brooklyn', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('David', 'PERSON'), ('J.', 'PERSON'), ('Kufeld', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('Kufeld', 'PERSON'), ('of', 'O'), ('Great', 'LOCATION'), ('Neck', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('Rabbi', 'R'), ('Yaacov', 'PERSON'), ('A.', 'PERSON'), ('Lerner', 'PERSON'), ('of', 'O'), ('Congregation', 'O'), ('Young', 'O'), ('Israel', 'LOCATION'), ('in', 'O'), ('Great', 'LOCATION'), ('Neck', 'LOCATION'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Crest', 'ORGANIZATION'), ('Hollow', 'ORGANIZATION'), ('Country', 'ORGANIZATION'), ('Club', 'ORGANIZATION'), ('in', 'O'), ('Woodbury', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('The', 'O'), ('bride', 'B'), ('graduated', 'O'), ('from', 'O'), ('Brooklyn', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Benjamin', 'ORGANIZATION'), ('N.', 'ORGANIZATION'), ('Cardozo', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Yeshiva', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('independent', 'O'), ('oil', 'O'), ('contractor', 'O'), ('and', 'O'), ('owns', 'O'), ('several', 'O'), ('gasoline', 'O'), ('stations', 'O'), ('in', 'O'), ('Brooklyn', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Beatrice', 'PERSON'), ('Antzis', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('social', 'O'), ('studies', 'O'), ('teacher', 'O'), ('at', 'O'), ('the', 'O'), ('Magen', 'ORGANIZATION'), ('David', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Brooklyn', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Kufeld', 'PERSON'), ('is', 'O'), ('manager', 'O'), ('of', 'O'), ('public', 'O'), ('relations', 'O'), ('and', 'O'), ('advertising', 'O'), ('for', 'O'), ('Silverstein', 'ORGANIZATION'), ('Properties', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('real', 'O'), ('estate', 'O'), ('company', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Yeshiva', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('partner', 'O'), ('with', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Carb', 'O'), (',', 'O'), ('Luria', 'LOCATION'), (',', 'O'), ('Glassner', 'PERSON'), (',', 'O'), ('Cook', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Kufeld', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Frieda', 'PERSON'), ('Kufeld', 'PERSON'), (',', 'O'), ('is', 'O'), ('national', 'O'), ('president', 'O'), ('of', 'O'), ('Amit', 'PERSON'), ('Women', 'PERSON'), (',', 'O'), ('a', 'O'), ('Jewish', 'O'), ('organization', 'O'), ('formerly', 'O'), ('known', 'O'), ('as', 'O'), ('American', 'O'), ('Mizrachi', 'PERSON'), ('Women', 'PERSON'), (',', 'O'), ('and', 'O'), ('former', 'O'), ('principal', 'O'), ('of', 'O'), ('Public', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('159', 'O'), ('in', 'O'), ('Bayside', 'LOCATION'), (',', 'O'), ('Queens', 'LOCATION'), ('.', 'O')), (('Diane', 'PERSON'), ('R.', 'PERSON'), ('Tolbert', 'PERSON'), (',', 'O'), ('a', 'O'), ('lawyer', 'O'), (',', 'O'), ('and', 'O'), ('Frederick', 'PERSON'), ('L.', 'PERSON'), ('Covan', 'PERSON'), (',', 'O'), ('director', 'O'), ('of', 'O'), ('psychology', 'O'), ('at', 'O'), ('the', 'O'), ('Bellevue', 'ORGANIZATION'), ('Hospital', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), (',', 'O'), ('were', 'O'), ('married', 'O'), ('yesterday', 'O'), ('at', 'O'), ('the', 'O'), ('Miami', 'ORGANIZATION'), ('Shores', 'ORGANIZATION'), ('Country', 'ORGANIZATION'), ('Club', 'ORGANIZATION'), ('in', 'O'), ('Miami', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('godparents', 'O'), (',', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('B.', 'PERSON'), ('J.', 'PERSON'), ('Militana', 'PERSON'), (',', 'O'), ('both', 'O'), ('notary', 'O'), ('publics', 'O'), ('who', 'O'), ('are', 'O'), ('authorized', 'O'), ('to', 'O'), ('perform', 'O'), ('marriages', 'O'), ('in', 'O'), ('Florida', 'LOCATION'), (',', 'O'), ('officiated', 'O'), ('at', 'O'), ('the', 'O'), ('ceremony', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('S.', 'PERSON'), ('Tolbert', 'PERSON'), ('of', 'O'), ('Miami', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Florida', 'ORGANIZATION'), ('International', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('law', 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Florida', 'ORGANIZATION'), ('in', 'O'), ('1976', 'O'), ('.', 'O'), ('Dr.', 'PERSON'), ('Covan', 'PERSON'), (',', 'O'), ('whose', 'O'), ('previous', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mary', 'PERSON'), ('Sarin', 'PERSON'), ('Covan', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Sidney', 'PERSON'), ('Covan', 'PERSON'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Clark', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('doctorate', 'O'), ('from', 'O'), ('Yeshiva', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('in', 'O'), ('1976', 'O'), ('.', 'O')), (('Carol', 'PERSON'), ('Blumencranz', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Richard', 'PERSON'), ('Blumencranz', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('in', 'O'), ('Manhattan', 'LOCATION'), ('yesterday', 'O'), ('to', 'O'), ('Glenn', 'PERSON'), ('Shaye', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Henry', 'PERSON'), ('Bochner', 'PERSON'), ('of', 'O'), ('Albany', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Morton', 'PERSON'), ('Shaye', 'PERSON'), ('.', 'O'), ('Rabbi', 'R'), ('Daniel', 'PERSON'), ('Fogel', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Helmsley', 'O'), ('Palace', 'O'), ('Hotel', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('graduated', 'O'), ('with', 'O'), ('the', 'O'), ('class', 'O'), ('of', 'O'), (\"'82\", 'O'), ('from', 'O'), ('Boston', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('as', 'O'), ('did', 'O'), ('the', 'O'), ('bridegroom', 'G'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Dean', 'ORGANIZATION'), ('Witter', 'ORGANIZATION'), ('Reynolds', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('M.', 'PERSON'), ('Jacqueline', 'PERSON'), ('Astor', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Sonio', 'PERSON'), ('Coletti-Perucca', 'PERSON'), ('of', 'O'), ('Mill', 'O'), ('Neck', 'O'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('John', 'PERSON'), ('Astor', 'PERSON'), ('of', 'O'), ('Miami', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('on', 'O'), ('Friday', 'O'), ('to', 'O'), ('John', 'PERSON'), ('R.', 'PERSON'), ('Drexel', 'PERSON'), ('4th', 'O'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Drexel', 'PERSON'), ('3d', 'O'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('Newport', 'LOCATION'), (',', 'O'), ('R.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Palm', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), ('.', 'O'), ('A', 'O'), ('church', 'O'), ('ceremony', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('next', 'O'), ('month', 'O'), ('.', 'O'), ('Rosemary', 'PERSON'), ('Zrali', 'PERSON'), ('and', 'O'), ('Annie', 'PERSON'), ('Owen', 'PERSON'), ('were', 'O'), ('witnesses', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('known', 'O'), ('as', 'O'), ('Jackie', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('real-estate', 'O'), ('broker', 'O'), ('at', 'O'), ('Sotheby', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('International', 'ORGANIZATION'), ('Realty', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Masters', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Dobbs', 'LOCATION'), ('Ferry', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('investor', 'O'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Walter', 'PERSON'), ('Gretsch', 'PERSON'), ('of', 'O'), ('Brooklyn', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Col.', 'O'), ('John', 'PERSON'), ('Jacob', 'PERSON'), ('Astor', 'PERSON'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('lost', 'O'), ('when', 'O'), ('the', 'O'), ('Titanic', 'O'), ('sank', 'O'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Madeline', 'PERSON'), ('Force', 'PERSON'), ('Fiermonte', 'PERSON'), ('.', 'O'), ('Mr.', 'PERSON'), ('Drexel', 'PERSON'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('known', 'O'), ('as', 'O'), ('Nick', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('Kidder', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Peabody', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('St.', 'ORGANIZATION'), ('Mark', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('South-borough', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('previous', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('investor', 'O'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Drexel', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('the', 'O'), ('late', 'O'), ('Mrs.', 'PERSON'), ('Thompson', 'PERSON'), ('Drexel', 'PERSON'), ('of', 'O'), ('Philadelphia', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Lord', 'O'), ('and', 'O'), ('Lady', 'O'), ('Camoys', 'O'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('descended', 'O'), ('from', 'O'), ('Roger', 'PERSON'), ('Williams', 'PERSON'), (',', 'O'), ('founder', 'O'), ('of', 'O'), ('Rhode', 'LOCATION'), ('Island', 'LOCATION'), (';', 'O'), ('Chad', 'PERSON'), ('Brown', 'PERSON'), (',', 'O'), ('and', 'O'), ('Anthony', 'PERSON'), ('Drexel', 'PERSON'), (',', 'O'), ('who', 'O'), ('established', 'O'), ('the', 'O'), ('Drexel', 'ORGANIZATION'), ('banking', 'O'), ('house', 'O'), ('and', 'O'), ('the', 'O'), ('Drexel', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), (',', 'O'), ('now', 'O'), ('Drexel', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('both', 'O'), ('in', 'O'), ('Philadephia', 'LOCATION'), ('.', 'O')), (('Mag', 'PERSON'), ('Gilligan', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mary', 'PERSON'), ('Ann', 'PERSON'), ('Gilligan', 'PERSON'), ('of', 'O'), ('Weston', 'LOCATION'), (',', 'O'), ('Vt.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('W.', 'PERSON'), ('Whitbread', 'PERSON'), ('Gilligan', 'PERSON'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('in', 'O'), ('Weston', 'LOCATION'), ('yesterday', 'O'), ('to', 'O'), ('Peter', 'PERSON'), ('Michael', 'PERSON'), ('Dusseau', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Lambert', 'PERSON'), ('Dusseau', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Isaac', 'PERSON'), ('Patch', 'PERSON'), (',', 'O'), ('a', 'O'), ('justice', 'O'), ('of', 'O'), ('the', 'O'), ('peace', 'O'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Old', 'O'), ('Parish', 'O'), ('Church', 'O'), ('.', 'O'), ('The', 'O'), ('couple', 'O'), ('are', 'O'), ('vice', 'O'), ('presidents', 'O'), ('of', 'O'), ('Drexel', 'ORGANIZATION'), ('Burnham', 'ORGANIZATION'), ('Lambert', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Dusseau', 'PERSON'), (\"'s\", 'O'), ('previous', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O')), (('The', 'O'), ('engagement', 'O'), ('of', 'O'), ('Susan', 'PERSON'), ('Jane', 'PERSON'), ('Thomas', 'PERSON'), ('to', 'O'), ('Robert', 'PERSON'), ('Spalding', 'PERSON'), ('Winborne', 'PERSON'), ('has', 'O'), ('been', 'O'), ('announced', 'O'), ('by', 'O'), ('her', 'O'), ('mother', 'O'), (',', 'O'), ('Helen', 'PERSON'), ('Thomas', 'PERSON'), ('of', 'O'), ('Decatur', 'LOCATION'), (',', 'O'), ('Neb.', 'LOCATION'), ('A', 'O'), ('May', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('Miss', 'O'), ('Thomas', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('also', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Earl', 'PERSON'), ('Wayne', 'PERSON'), ('Thomas', 'PERSON'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('assistant', 'O'), ('vice', 'O'), ('president', 'O'), ('and', 'O'), ('product', 'O'), ('manager', 'O'), ('for', 'O'), ('Merrill', 'ORGANIZATION'), ('Lynch', 'ORGANIZATION'), (',', 'O'), ('Pierce', 'PERSON'), (',', 'O'), ('Fenner', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Smith', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('An', 'O'), ('alumna', 'O'), ('of', 'O'), ('Vassar', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('she', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('in', 'O'), ('1980', 'O'), ('as', 'O'), ('did', 'O'), ('her', 'O'), ('fiance', 'O'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), ('is', 'O'), ('a', 'O'), ('librarian', 'O'), ('in', 'O'), ('the', 'O'), ('Decatur', 'LOCATION'), ('and', 'O'), ('Walthill', 'LOCATION'), (',', 'O'), ('Neb.', 'LOCATION'), ('.', 'O'), ('public', 'O'), ('school', 'O'), ('systems', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('grain', 'O'), ('farmer', 'O'), ('and', 'O'), ('breeder', 'O'), ('of', 'O'), ('Morgan', 'LOCATION'), ('horses', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Winborne', 'PERSON'), (',', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('Wallace', 'PERSON'), ('Winborne', 'PERSON'), ('of', 'O'), ('Atlanta', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('Phi', 'O'), ('Beta', 'O'), ('Kappa', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('North', 'ORGANIZATION'), ('Carolina', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('assistant', 'O'), ('vice', 'O'), ('president', 'O'), ('in', 'O'), ('the', 'O'), ('corporate', 'O'), ('finance', 'O'), ('derpartment', 'O'), ('at', 'O'), ('Kidder', 'ORGANIZATION'), ('Peabody', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('retired', 'O'), ('as', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Georgia', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('the', 'O'), ('grandson', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Justice', 'O'), ('John', 'PERSON'), ('Wallace', 'PERSON'), ('Winborne', 'PERSON'), (',', 'O'), ('chief', 'O'), ('justice', 'O'), ('of', 'O'), ('North', 'ORGANIZATION'), ('Carolina', 'ORGANIZATION'), ('Supreme', 'ORGANIZATION'), ('Court', 'ORGANIZATION'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Winborne', 'PERSON'), ('.', 'O')), (('Assemblyman', 'O'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('C.', 'PERSON'), ('Wertz', 'PERSON'), ('of', 'O'), ('Nissequoque', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Mary', 'PERSON'), ('Elizabeth', 'PERSON'), ('Wertz', 'PERSON'), ('to', 'O'), ('John', 'PERSON'), ('Paul', 'PERSON'), ('Fitzpatrick', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Paul', 'PERSON'), ('J.', 'PERSON'), ('Fitzpatrick', 'PERSON'), ('of', 'O'), ('Hauppauge', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('Miss', 'O'), ('Wertz', 'PERSON'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('completing', 'O'), ('the', 'O'), ('mechnical-engineering', 'O'), ('program', 'O'), ('at', 'O'), ('Cornell', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Academy', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('St.', 'ORGANIZATION'), ('Joseph', 'ORGANIZATION'), ('in', 'O'), ('Brentwood', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('former', 'O'), ('Town', 'O'), ('Attorney', 'O'), ('of', 'O'), ('Smithtown', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('a', 'O'), ('Republican', 'O'), (',', 'O'), ('has', 'O'), ('served', 'O'), ('since', 'O'), ('1970', 'O'), ('in', 'O'), ('the', 'O'), ('State', 'ORGANIZATION'), ('Assembly', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('he', 'O'), ('is', 'O'), ('assistant', 'O'), ('minority', 'O'), ('leader', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Fitzpatrick', 'PERSON'), (',', 'O'), ('a', 'O'), ('trainee', 'O'), ('with', 'O'), ('Paine', 'PERSON'), (',', 'O'), ('Webber', 'PERSON'), (',', 'O'), ('Jackson', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Curtis', 'ORGANIZATION'), ('in', 'O'), ('Melville', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('at', 'ORGANIZATION'), ('Buffalo', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Management', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('former', 'O'), ('Supervisor', 'O'), ('of', 'O'), ('the', 'O'), ('Town', 'O'), ('of', 'O'), ('Smithtown', 'LOCATION'), (',', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Union', 'ORGANIZATION'), ('Savings', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('in', 'O'), ('Patchoque', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('vice', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('Savings', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('Association', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('.', 'O')), (('Anne', 'PERSON'), ('Kelny', 'PERSON'), ('Denebeim', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Bruce', 'PERSON'), ('K.', 'PERSON'), ('Denebeim', 'PERSON'), ('of', 'O'), ('San', 'LOCATION'), ('Francisco', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Michael', 'PERSON'), ('Bjon', 'PERSON'), ('Farber', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Ajon', 'PERSON'), ('F.', 'PERSON'), ('Farber', 'PERSON'), ('of', 'O'), ('Omaha', 'LOCATION'), ('.', 'O'), ('Rabbi', 'R'), ('Joseph', 'PERSON'), ('Asher', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('Temple', 'O'), ('Emanu-El', 'O'), ('in', 'O'), ('San', 'LOCATION'), ('Francisco', 'LOCATION'), ('.', 'O'), ('Amy', 'PERSON'), ('Lerner', 'PERSON'), ('Denebeim', 'PERSON'), ('was', 'O'), ('her', 'O'), ('sister', 'O'), (\"'s\", 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('.', 'O'), ('Mark', 'PERSON'), ('David', 'PERSON'), ('Greenberg', 'PERSON'), ('was', 'O'), ('the', 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('until', 'O'), ('recently', 'O'), ('was', 'O'), ('an', 'O'), ('international', 'O'), ('cash', 'O'), ('management', 'O'), ('marketing', 'O'), ('analyst', 'O'), ('with', 'O'), ('the', 'O'), ('Manufacturers', 'ORGANIZATION'), ('Hanover', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('California', 'ORGANIZATION'), ('at', 'O'), ('Berkeley', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Pacific', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('in', 'O'), ('San', 'LOCATION'), ('Francisco', 'LOCATION'), ('and', 'O'), ('former', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Chartered', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('London', 'ORGANIZATION'), ('in', 'O'), ('San', 'LOCATION'), ('Francisco', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Farber', 'PERSON'), ('graduated', 'O'), ('from', 'O'), ('Washington', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('in', 'O'), ('St.', 'LOCATION'), ('Louis', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('certified', 'O'), ('public', 'O'), ('accountant', 'O'), ('and', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Service', 'ORGANIZATION'), ('Life', 'ORGANIZATION'), ('Insurance', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Omaha', 'ORGANIZATION'), (',', 'O'), ('which', 'O'), ('was', 'O'), ('founded', 'O'), ('by', 'O'), ('his', 'O'), ('grandfather', 'O'), (',', 'O'), ('the', 'O'), ('late', 'O'), ('John', 'PERSON'), ('A.', 'PERSON'), ('Farber', 'PERSON'), (',', 'O'), ('and', 'O'), ('of', 'O'), ('which', 'O'), ('his', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('.', 'O')), (('Katherine', 'PERSON'), ('Wales', 'PERSON'), ('Walker', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Granville', 'PERSON'), ('Walker', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('Canaan', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('in', 'O'), ('Stillwell', 'LOCATION'), (',', 'O'), ('Kan.', 'LOCATION'), (',', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Douglas', 'PERSON'), ('Andrew', 'PERSON'), ('Fisher', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Clark', 'PERSON'), ('Henderson', 'PERSON'), ('Fisher', 'PERSON'), ('of', 'O'), ('Mission', 'O'), (',', 'O'), ('Kan.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Dr.', 'PERSON'), ('Robert', 'PERSON'), ('F.', 'PERSON'), ('Cavitt', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Francis', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Assisi', 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('.', 'O'), ('Jane', 'PERSON'), ('Walker', 'PERSON'), ('was', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('for', 'O'), ('her', 'O'), ('sister', 'O'), (',', 'O'), ('and', 'O'), ('James', 'PERSON'), ('Fisher', 'PERSON'), ('was', 'O'), ('his', 'O'), ('brother', 'O'), (\"'s\", 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('graduated', 'O'), ('from', 'O'), ('Colby', 'LOCATION'), ('-', 'O'), ('Sawyer', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('Oklahoma', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('retired', 'O'), ('captain', 'O'), ('in', 'O'), ('the', 'O'), ('Navy', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('Corps', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('and', 'O'), ('the', 'O'), ('medical', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Chase', 'ORGANIZATION'), ('Manhattan', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Fisher', 'PERSON'), (',', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Kansas', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('master', 'O'), (\"'s\", 'O'), ('and', 'O'), ('doctor', 'O'), (\"'s\", 'O'), ('degrees', 'O'), ('in', 'O'), ('business', 'O'), ('administration', 'O'), ('from', 'O'), ('Indiana', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('market', 'O'), ('planning', 'O'), ('for', 'O'), ('Yellow', 'O'), ('Freight', 'O'), ('Systems', 'O'), ('in', 'O'), ('Overland', 'LOCATION'), ('Park', 'LOCATION'), (',', 'O'), ('Kan.', 'LOCATION'), ('.', 'O')), (('Dr.', 'PERSON'), ('Peter', 'PERSON'), ('Allen', 'PERSON'), ('of', 'O'), ('Vancouver', 'LOCATION'), (',', 'O'), ('British', 'LOCATION'), ('Columbia', 'LOCATION'), (',', 'O'), ('has', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('his', 'O'), ('sister', 'O'), (',', 'O'), ('Patricia', 'PERSON'), ('Stuart', 'PERSON'), ('Allen', 'PERSON'), (',', 'O'), ('to', 'O'), ('Paul', 'PERSON'), ('Humphrey', 'PERSON'), ('Ross', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Richard', 'PERSON'), ('Ross', 'PERSON'), ('of', 'O'), ('Stamford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Ross', 'PERSON'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('April', 'O'), ('28', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('James', 'PERSON'), ('Stuart', 'PERSON'), ('Allen', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Remsenburg', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('principal', 'O'), ('of', 'O'), ('Patricia', 'ORGANIZATION'), ('Allen', 'ORGANIZATION'), ('Interiors', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('interior', 'O'), ('design', 'O'), ('concern', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('attended', 'O'), ('the', 'O'), ('Brearley', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Westover', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Wheaton', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degrees', 'O'), ('from', 'O'), ('Teachers', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Fordham', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('Administration', 'ORGANIZATION'), ('.', 'O'), ('Miss', 'O'), ('Allen', 'PERSON'), ('also', 'O'), ('attended', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Interior', 'ORGANIZATION'), ('Design', 'ORGANIZATION'), ('and', 'O'), ('Parsons', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Design', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('was', 'O'), ('presented', 'O'), ('at', 'O'), ('the', 'O'), ('Debutante', 'O'), ('Cotillion', 'O'), ('and', 'O'), ('Christmas', 'O'), ('Ball', 'O'), ('and', 'O'), ('is', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Junior', 'ORGANIZATION'), ('League', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Ross', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Taft', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Wharton', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('the', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Northwestern', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Management', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Salomon', 'ORGANIZATION'), ('Brothers', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('senior', 'O'), ('partner', 'O'), ('of', 'O'), ('Ross', 'PERSON'), (',', 'O'), ('Low', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('brokerage', 'O'), ('firm', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Paul', 'PERSON'), ('Hoffman', 'PERSON'), ('of', 'O'), ('Mamaroneck', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Hoffman', 'PERSON'), (\"'s\", 'O'), ('daughter', 'O'), ('Ann', 'PERSON'), ('Stewart', 'PERSON'), ('Breakey', 'PERSON'), ('to', 'O'), ('John', 'PERSON'), ('Mahlon', 'PERSON'), ('Billik', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Little', 'LOCATION'), ('Compton', 'LOCATION'), (',', 'O'), ('R.I.', 'LOCATION'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Gene', 'PERSON'), ('S.', 'PERSON'), ('Billik', 'PERSON'), ('of', 'O'), ('Livingston', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('to', 'O'), ('be', 'O'), ('in', 'O'), ('September', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('also', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Dr.', 'PERSON'), ('Arnold', 'PERSON'), ('S.', 'PERSON'), ('Breakey', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('R.', 'ORGANIZATION'), ('C.', 'ORGANIZATION'), ('Auletta', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('public', 'O'), ('relations', 'O'), ('consultants', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('and', 'O'), ('former', 'O'), ('accessories', 'O'), (',', 'O'), ('jewelry', 'O'), ('and', 'O'), ('furs', 'O'), ('editor', 'O'), ('for', 'O'), ('Harper', 'PERSON'), (\"'s\", 'O'), ('Bazaar', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Rye', 'O'), ('Country', 'O'), ('Day', 'O'), ('School', 'O'), ('and', 'O'), ('Ohio', 'ORGANIZATION'), ('Wesleyan', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('an', 'O'), ('ophthalmic', 'O'), ('surgeon', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('stepfather', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Hoffman', 'ORGANIZATION'), ('Investors', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Mamaroneck', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Billik', 'PERSON'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Marshall', 'ORGANIZATION'), ('Fish', 'ORGANIZATION'), ('Products', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('producers', 'O'), ('of', 'O'), ('smoked', 'O'), ('salmon', 'O'), (',', 'O'), ('in', 'O'), ('Brooklyn', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Roger', 'ORGANIZATION'), ('William', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('William', 'ORGANIZATION'), ('Grant', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Sons', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('liquor', 'O'), ('importer', 'O'), ('in', 'O'), ('Edison', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION')), (('Announcement', 'O'), ('has', 'O'), ('been', 'O'), ('made', 'O'), ('by', 'O'), ('Betty', 'PERSON'), ('G.', 'PERSON'), ('Rafshoon', 'PERSON'), ('of', 'O'), ('Atlanta', 'LOCATION'), ('and', 'O'), ('Gerald', 'PERSON'), ('M.', 'PERSON'), ('Rafshoon', 'PERSON'), ('of', 'O'), ('Washington', 'LOCATION'), ('of', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Susan', 'PERSON'), ('Lynn', 'PERSON'), ('Rafshoon', 'PERSON'), ('to', 'O'), ('Sprole', 'O'), ('Wilson', 'O'), ('Heaps', 'O'), ('3d', 'O'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Heaps', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Towson', 'LOCATION'), (',', 'O'), ('Md.', 'LOCATION'), ('.', 'O'), ('A', 'O'), ('May', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('executive', 'O'), ('secretary', 'O'), ('to', 'O'), ('the', 'O'), ('general', 'O'), ('manager', 'O'), ('of', 'O'), ('the', 'O'), ('Bank', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Tokyo', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Lovett', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Atlanta', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('North', 'ORGANIZATION'), ('Carolina', 'ORGANIZATION'), ('at', 'O'), ('Chapel', 'LOCATION'), ('Hill', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Rafshoon', 'ORGANIZATION'), ('Communications', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('public', 'O'), ('relations', 'O'), ('and', 'O'), ('consulting', 'O'), ('company', 'O'), ('in', 'O'), ('Washington', 'LOCATION'), (',', 'O'), ('and', 'O'), ('was', 'O'), ('Assistant', 'O'), ('to', 'O'), ('the', 'O'), ('President', 'O'), ('for', 'O'), ('Communications', 'O'), ('in', 'O'), ('the', 'O'), ('Carter', 'ORGANIZATION'), ('Administration', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Heaps', 'PERSON'), ('is', 'O'), ('an', 'O'), ('assisant', 'O'), ('secretary', 'O'), ('in', 'O'), ('the', 'O'), ('cash', 'O'), ('management', 'O'), ('services', 'O'), ('department', 'O'), ('of', 'O'), ('the', 'O'), ('Manufacturers', 'ORGANIZATION'), ('Hanover', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Loyola', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Baltimore', 'LOCATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('philosophy', 'O'), ('from', 'O'), ('Georgetown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('special', 'O'), ('assistant', 'O'), ('to', 'O'), ('the', 'O'), ('deputy', 'O'), ('superintendent', 'O'), ('of', 'O'), ('the', 'O'), ('Baltimore', 'ORGANIZATION'), ('City', 'ORGANIZATION'), ('Public', 'ORGANIZATION'), ('Schools', 'ORGANIZATION'), ('.', 'O')), (('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Richard', 'PERSON'), ('J.', 'PERSON'), ('Waters', 'O'), ('of', 'O'), ('Hanover', 'LOCATION'), (',', 'O'), ('N.H.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Margaret', 'PERSON'), ('Mary', 'PERSON'), ('Waters', 'PERSON'), ('to', 'O'), ('Rodney', 'PERSON'), ('Andrews', 'PERSON'), ('Pearson', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Thomas', 'PERSON'), ('H.', 'PERSON'), ('Pearson', 'PERSON'), ('of', 'O'), ('Clarksdale', 'LOCATION'), (',', 'O'), ('Miss.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Diane', 'PERSON'), ('T.', 'PERSON'), ('Pearson', 'PERSON'), ('of', 'O'), ('Oxford', 'LOCATION'), (',', 'O'), ('Miss.', 'LOCATION'), ('.', 'O'), ('A', 'O'), ('June', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('at', 'O'), ('Harvard', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('pediatric', 'O'), ('cardiologist', 'O'), ('at', 'O'), ('the', 'O'), ('Hitchcock', 'ORGANIZATION'), ('Clinic', 'ORGANIZATION'), ('in', 'O'), ('Hanover', 'LOCATION'), ('and', 'O'), ('associate', 'O'), ('clinical', 'O'), ('professor', 'O'), ('of', 'O'), ('maternal', 'O'), ('and', 'O'), ('child', 'O'), ('health', 'O'), ('at', 'O'), ('the', 'O'), ('Dartmouth', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Pearson', 'PERSON'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Mississippi', 'ORGANIZATION'), (',', 'O'), ('from', 'O'), ('which', 'O'), ('he', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('business', 'O'), ('administration', 'O'), ('and', 'O'), ('expects', 'O'), ('to', 'O'), ('receive', 'O'), ('a', 'O'), ('doctorate', 'O'), ('in', 'O'), ('information', 'O'), ('systems', 'O'), ('utilization', 'O'), ('in', 'O'), ('the', 'O'), ('railroad', 'O'), ('industry', 'O'), ('from', 'O'), ('the', 'O'), ('Harvard', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('June', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('lawyer', 'O'), ('in', 'O'), ('Clarksdale', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Diane', 'PERSON'), ('Pearson', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('professor', 'O'), ('of', 'O'), ('accounting', 'O'), ('at', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Mississippi', 'ORGANIZATION'), ('.', 'O')), (('Ann', 'PERSON'), ('Weeks', 'O'), ('Is', 'O'), ('Betrothed', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('Randel', 'PERSON'), ('Weeks', 'PERSON'), ('4th', 'O'), ('of', 'O'), ('Stony', 'LOCATION'), ('Brook', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('made', 'O'), ('known', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Ann', 'PERSON'), ('Brewster', 'PERSON'), ('Weeks', 'O'), (',', 'O'), ('to', 'O'), ('Michael', 'PERSON'), ('Ford', 'PERSON'), ('Follo', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Rebecca', 'PERSON'), ('Tarpley', 'PERSON'), ('Follo', 'PERSON'), ('of', 'O'), ('Gadsden', 'LOCATION'), (',', 'O'), ('Ala.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Dr.', 'PERSON'), ('Marshall', 'PERSON'), ('Louis', 'PERSON'), ('Follo', 'PERSON'), ('.', 'O'), ('An', 'O'), ('August', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('Miss', 'O'), ('Weeks', 'O'), ('is', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('research', 'O'), ('staff', 'O'), ('at', 'O'), ('the', 'O'), ('Joint', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('for', 'ORGANIZATION'), ('Urban', 'ORGANIZATION'), ('Studies', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('the', 'ORGANIZATION'), ('Massachusetts', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), ('and', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('fiance', 'O'), ('is', 'O'), ('a', 'O'), ('doctoral', 'O'), ('candidate', 'O'), ('in', 'O'), ('geology', 'O'), ('at', 'O'), ('Harvard', 'ORGANIZATION'), ('.', 'O')), (('The', 'O'), ('engagement', 'O'), ('of', 'O'), ('Susan', 'PERSON'), ('Clisham', 'PERSON'), ('to', 'O'), ('Steven', 'PERSON'), ('B.', 'PERSON'), ('Nesbitt', 'PERSON'), ('has', 'O'), ('been', 'O'), ('announced', 'O'), ('by', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Roger', 'PERSON'), ('R.', 'PERSON'), ('Clisham', 'PERSON'), ('of', 'O'), ('Southbury', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('parents', 'O'), ('of', 'O'), ('the', 'O'), ('future', 'O'), ('bride', 'B'), ('.', 'O'), ('Her', 'O'), ('fiance', 'O'), ('is', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Carl', 'PERSON'), ('G.', 'PERSON'), ('Nesbitt', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Buffalo', 'LOCATION'), ('.', 'O'), ('An', 'O'), ('August', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O')), (('Mary', 'PERSON'), ('Calvert', 'PERSON'), ('Jopling', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Raymond', 'PERSON'), ('Calvert', 'PERSON'), ('Jopling', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Oklahoma', 'LOCATION'), ('City', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mrs.', 'PERSON'), ('Jopling', 'PERSON'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Kenneth', 'PERSON'), ('Barlow', 'PERSON'), ('Gould', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('S.', 'PERSON'), ('Gould', 'PERSON'), ('3d', 'O'), ('of', 'O'), ('Suffern', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('The', 'O'), ('Rev.', 'R'), ('Robert', 'PERSON'), ('Shaw', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('All', 'ORGANIZATION'), ('Souls', 'ORGANIZATION'), (\"'\", 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Oklahoma', 'LOCATION'), ('City', 'LOCATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Gould', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('Casady', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Oklahoma', 'LOCATION'), ('City', 'LOCATION'), ('and', 'O'), ('Smith', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('English', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Colorado', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('receptionist', 'O'), ('and', 'O'), ('legal', 'O'), ('assistant', 'O'), ('for', 'O'), ('a', 'O'), ('Denver', 'LOCATION'), ('lawyer', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('Oklahoma', 'LOCATION'), ('City', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Jopling', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Blankenship', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Gould', 'PERSON'), (',', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('Gunnery', 'O'), ('and', 'O'), ('the', 'O'), ('Rochester', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('project', 'O'), ('engineer', 'O'), ('for', 'O'), ('the', 'O'), ('Storage', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Louisville', 'LOCATION'), (',', 'O'), ('Colo.', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Irwin', 'PERSON'), ('Saft', 'PERSON'), ('of', 'O'), ('Philadelphia', 'LOCATION'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('her', 'O'), ('daughter', 'O'), ('Marjorie', 'PERSON'), ('Rosenbluth', 'PERSON'), ('to', 'O'), ('I.', 'PERSON'), ('Steven', 'PERSON'), ('Philips', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Henry', 'PERSON'), ('C.', 'PERSON'), ('Philips', 'PERSON'), ('of', 'O'), ('Allentown', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('to', 'O'), ('take', 'O'), ('place', 'O'), ('Dec.', 'O'), ('31', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('also', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Joseph', 'PERSON'), ('Rosenbluth', 'PERSON'), ('of', 'O'), ('Philadelphia', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('McGill', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('international', 'O'), ('affairs', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('was', 'O'), ('recently', 'O'), ('assistant', 'O'), ('to', 'O'), ('the', 'O'), ('publisher', 'O'), ('of', 'O'), ('Foreign', 'O'), ('Affairs', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('Rosenbluth', 'ORGANIZATION'), ('Brothers', 'ORGANIZATION'), ('Travel', 'ORGANIZATION'), ('Agency', 'ORGANIZATION'), ('in', 'O'), ('Philadelphia', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Carole', 'PERSON'), ('Saft', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('sweater', 'O'), ('designer', 'O'), ('.', 'O'), ('Her', 'O'), ('stepfather', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Reed', 'ORGANIZATION'), ('-', 'O'), ('Stenhouse', 'PERSON'), (',', 'O'), ('insurance', 'O'), ('broker', 'O'), ('in', 'O'), ('Philadelphia', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Philips', 'PERSON'), (',', 'O'), ('a', 'O'), ('former', 'O'), ('chef', 'O'), ('to', 'O'), ('Mayor', 'O'), ('Koch', 'PERSON'), ('at', 'O'), ('Gracie', 'LOCATION'), ('Mansion', 'LOCATION'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('author', 'O'), ('of', 'O'), ('a', 'O'), ('Pasta', 'O'), ('and', 'O'), ('Cheese', 'O'), ('cookbook', 'O'), ('to', 'O'), ('be', 'O'), ('published', 'O'), ('in', 'O'), ('the', 'O'), ('fall', 'O'), ('by', 'O'), ('Pocket', 'O'), ('Books', 'O'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Culinary', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('America', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Merrill', 'ORGANIZATION'), ('Lynch', 'ORGANIZATION'), ('in', 'O'), ('Allentown', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), ('.', 'O')), (('Karen', 'PERSON'), ('Dieter', 'PERSON'), ('Is', 'O'), ('a', 'O'), ('Bride', 'O'), ('At', 'O'), ('the', 'O'), ('Roman', 'ORGANIZATION'), ('Catholic', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Our', 'ORGANIZATION'), ('Saviour', 'ORGANIZATION'), ('in', 'O'), ('Manhattan', 'LOCATION'), ('yesterday', 'O'), ('Karen', 'PERSON'), ('Gail', 'PERSON'), ('Dieter', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('W.', 'PERSON'), ('Wilton', 'PERSON'), ('Dieter', 'PERSON'), ('of', 'O'), ('Willingboro', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Dieter', 'PERSON'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('to', 'O'), ('Stephen', 'PERSON'), ('J.', 'PERSON'), ('Kalinowski', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Francis', 'PERSON'), ('R.', 'PERSON'), ('Kalinowski', 'PERSON'), ('of', 'O'), ('Norwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Kalinowski', 'PERSON'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('William', 'PERSON'), ('F.', 'PERSON'), ('Guido', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('.', 'O')), (('Announcement', 'O'), ('has', 'O'), ('been', 'O'), ('made', 'O'), ('by', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('James', 'PERSON'), ('E.', 'PERSON'), ('Sullivan', 'PERSON'), ('of', 'O'), ('Short', 'LOCATION'), ('Hills', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('of', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Tracy', 'PERSON'), ('Anne', 'PERSON'), ('Sullivan', 'PERSON'), ('to', 'O'), ('Bryan', 'PERSON'), ('Edwin', 'PERSON'), ('Benson', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Ernest', 'PERSON'), ('O.', 'PERSON'), ('Benson', 'PERSON'), ('of', 'O'), ('Tucson', 'LOCATION'), (',', 'O'), ('Ariz.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('May', 'O'), ('.', 'O'), ('Miss', 'O'), ('Sullivan', 'PERSON'), ('is', 'O'), ('a', 'O'), ('physical', 'O'), ('education', 'O'), ('teacher', 'O'), ('and', 'O'), ('coach', 'O'), ('at', 'O'), ('the', 'O'), ('Cross', 'ORGANIZATION'), ('Junior', 'ORGANIZATION'), ('High', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Tucson', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('St.', 'ORGANIZATION'), ('Lawrence', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('was', 'O'), ('a', 'O'), ('physical', 'O'), ('education', 'O'), ('teacher', 'O'), ('at', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Arizona', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('she', 'O'), ('is', 'O'), ('studying', 'O'), ('for', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('physical', 'O'), ('education', 'O'), (',', 'O'), ('and', 'O'), ('of', 'O'), ('which', 'O'), ('Mr.', 'PERSON'), ('Benson', 'PERSON'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('classified', 'O'), ('advertising', 'O'), ('at', 'O'), ('Dow', 'ORGANIZATION'), ('Jones', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('publisher', 'O'), ('of', 'O'), ('The', 'ORGANIZATION'), ('Wall', 'ORGANIZATION'), ('Street', 'ORGANIZATION'), ('Journal', 'ORGANIZATION'), (',', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Therese', 'PERSON'), ('Sullivan', 'PERSON'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('office', 'O'), ('manager', 'O'), ('of', 'O'), ('the', 'O'), ('Northwestern', 'ORGANIZATION'), ('Mutual', 'ORGANIZATION'), ('Life', 'ORGANIZATION'), ('Insurance', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('office', 'O'), ('in', 'O'), ('Springfield', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('now', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('real-estate', 'O'), ('broker', 'O'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Helen', 'PERSON'), ('Benson', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('retired', 'O'), ('high', 'O'), ('school', 'O'), ('guidance', 'O'), ('counselor', 'O'), ('in', 'O'), ('the', 'O'), ('Tucson', 'LOCATION'), ('school', 'O'), ('system', 'O'), ('.', 'O')), (('The', 'O'), ('marriage', 'O'), ('of', 'O'), ('Tiernan', 'PERSON'), ('Mary', 'PERSON'), ('Shea', 'PERSON'), ('and', 'O'), ('Douglas', 'PERSON'), ('Scott', 'PERSON'), ('Boyle', 'PERSON'), ('took', 'O'), ('place', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('yesterday', 'O'), ('at', 'O'), ('the', 'O'), ('home', 'O'), ('of', 'O'), ('Beverly', 'PERSON'), ('Bates', 'PERSON'), ('Boyle', 'PERSON'), (',', 'O'), ('mother', 'O'), ('of', 'O'), ('the', 'O'), ('bridegroom', 'G'), ('.', 'O'), ('Jean', 'PERSON'), ('S.', 'PERSON'), ('Kotkin', 'PERSON'), (',', 'O'), ('executive', 'O'), ('director', 'O'), ('and', 'O'), ('a', 'O'), ('leader', 'O'), ('in', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('Ethical', 'ORGANIZATION'), ('Union', 'ORGANIZATION'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Edward', 'PERSON'), ('Shea', 'PERSON'), ('of', 'O'), ('Williamsville', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('financial', 'O'), ('analyst', 'O'), ('with', 'O'), ('American', 'ORGANIZATION'), ('Airlines', 'ORGANIZATION'), ('in', 'O'), ('Dallas', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('Cornell', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('finance', 'O'), ('from', 'O'), ('Northwestern', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('owner', 'O'), ('of', 'O'), ('Tricentury', 'O'), (',', 'O'), ('a', 'O'), ('manufacturers', 'O'), (\"'\", 'O'), ('representative', 'O'), ('in', 'O'), ('Williamsville', 'LOCATION'), (',', 'O'), ('and', 'O'), ('her', 'O'), ('mother', 'O'), (',', 'O'), ('Patricia', 'PERSON'), ('Ann', 'PERSON'), ('Shea', 'PERSON'), (',', 'O'), ('a', 'O'), ('registered', 'O'), ('nurse', 'O'), ('with', 'O'), ('the', 'O'), ('Veterans', 'ORGANIZATION'), ('Administration', 'ORGANIZATION'), ('Hospital', 'ORGANIZATION'), ('in', 'O'), ('Buffalo', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Boyle', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('also', 'O'), ('of', 'O'), ('John', 'PERSON'), ('Gary', 'PERSON'), ('Boyle', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('associate', 'O'), ('product', 'O'), ('manager', 'O'), ('with', 'O'), ('Frito-Lay', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('Dallas', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Bates', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('marketing', 'O'), ('from', 'O'), ('Northwestern', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Ted', 'PERSON'), ('Bates', 'PERSON'), ('Advertising', 'O'), ('and', 'O'), ('his', 'O'), ('mother', 'O'), ('a', 'O'), ('staff', 'O'), ('liaison', 'O'), ('aide', 'O'), ('with', 'O'), ('Barclays', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('International', 'ORGANIZATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('F.', 'PERSON'), ('Connelly', 'PERSON'), ('of', 'O'), ('Jenkintown', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Judith', 'PERSON'), ('Celeste', 'PERSON'), ('Connelly', 'PERSON'), ('to', 'O'), ('Philippe', 'PERSON'), ('Delouvrier', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Paul', 'PERSON'), ('Delouvrier', 'PERSON'), ('of', 'O'), ('Paris', 'LOCATION'), ('.', 'O'), ('A', 'O'), ('June', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('Miss', 'O'), ('Connelly', 'PERSON'), (',', 'O'), ('director', 'O'), ('of', 'O'), ('group', 'O'), ('public', 'O'), ('relations', 'O'), ('for', 'O'), ('Revlon', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Rosemont', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('is', 'O'), ('a', 'O'), ('candidate', 'O'), ('for', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('art', 'O'), ('history', 'O'), ('from', 'O'), ('George', 'ORGANIZATION'), ('Washington', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('Crown', 'O'), ('Cork', 'PERSON'), ('and', 'O'), ('Seal', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('and', 'O'), ('chairman', 'O'), ('of', 'O'), ('Connelly', 'ORGANIZATION'), ('Containers', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('both', 'O'), ('with', 'O'), ('headquarters', 'O'), ('in', 'O'), ('Philadelphia', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Delouvrier', 'PERSON'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Eastern', 'ORGANIZATION'), ('Industrial', 'ORGANIZATION'), ('Minerals', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('international', 'O'), ('marketing', 'O'), ('concern', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Polytechnicum', 'O'), ('in', 'O'), ('Zurich', 'LOCATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('graduate', 'O'), ('degree', 'O'), ('in', 'O'), ('business', 'O'), ('administration', 'O'), ('from', 'O'), ('the', 'O'), ('Institut', 'ORGANIZATION'), ('Europeen', 'ORGANIZATION'), (\"d'Administration\", 'ORGANIZATION'), ('des', 'ORGANIZATION'), ('Affaires', 'ORGANIZATION'), ('in', 'O'), ('Fontainbleau', 'LOCATION'), (',', 'O'), ('France', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('recently', 'O'), ('retired', 'O'), ('as', 'O'), ('president', 'O'), ('of', 'O'), ('Electricite', 'ORGANIZATION'), ('de', 'ORGANIZATION'), ('France', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('Government-owned', 'O'), ('utility', 'O'), ('in', 'O'), ('France', 'LOCATION'), (',', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), (\"L'Etablissement\", 'ORGANIZATION'), ('Public', 'ORGANIZATION'), ('de', 'ORGANIZATION'), ('la', 'ORGANIZATION'), ('Villette', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('science', 'O'), ('museum', 'O'), ('under', 'O'), ('construction', 'O'), ('in', 'O'), ('Paris', 'LOCATION'), ('.', 'O')), (('The', 'O'), ('marriage', 'O'), ('of', 'O'), ('Margaret', 'PERSON'), ('Allen', 'PERSON'), ('Peters', 'PERSON'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('on', 'O'), ('the', 'O'), ('staff', 'O'), ('of', 'O'), ('The', 'ORGANIZATION'), ('New', 'ORGANIZATION'), ('Yorker', 'ORGANIZATION'), ('magazine', 'ORGANIZATION'), (',', 'O'), ('to', 'O'), ('Peter', 'PERSON'), ('Gregory', 'PERSON'), ('Schwed', 'PERSON'), (',', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Bernstein', 'LOCATION'), (',', 'O'), ('Obstfeld', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Schwed', 'ORGANIZATION'), (',', 'O'), ('took', 'O'), ('place', 'O'), ('in', 'O'), ('Manhattan', 'LOCATION'), ('yesterday', 'O'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Emily', 'PERSON'), ('B.', 'PERSON'), ('Preston', 'PERSON'), (',', 'O'), ('assisted', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Judith', 'PERSON'), ('Baumer', 'PERSON'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('in', 'O'), ('the', 'O'), ('chapel', 'O'), ('of', 'O'), ('St.', 'LOCATION'), ('Bartholomew', 'LOCATION'), (\"'s\", 'O'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('is', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Arthur', 'PERSON'), ('King', 'PERSON'), ('Peters', 'PERSON'), ('of', 'O'), ('Bronxville', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('French', 'LOCATION'), ('-', 'O'), ('American', 'ORGANIZATION'), ('Foundation', 'ORGANIZATION'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('A.', 'ORGANIZATION'), ('K.', 'ORGANIZATION'), ('Peters', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('import-export', 'O'), ('concern', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Sarah', 'PERSON'), ('Whitaker', 'PERSON'), ('Peters', 'PERSON'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('art', 'O'), ('historian', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Schwed', 'PERSON'), ('is', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Peter', 'PERSON'), ('Schwed', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('formerly', 'O'), ('the', 'O'), ('publisher', 'O'), ('of', 'O'), ('Simon', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Schuster', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('its', 'O'), ('editorial', 'O'), ('chairman', 'O'), ('emeritus', 'O'), ('and', 'O'), ('an', 'O'), ('author', 'O'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Antonia', 'PERSON'), ('Holding', 'PERSON'), ('Schwed', 'PERSON'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('enamelist', 'O'), ('.', 'O'), ('Anthea', 'PERSON'), ('Waleson', 'PERSON'), ('was', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('and', 'O'), ('Mr.', 'PERSON'), ('Schwed', 'PERSON'), ('best', 'O'), ('man', 'O'), ('for', 'O'), ('his', 'O'), ('son', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('also', 'O'), ('a', 'O'), ('freelance', 'O'), ('writer', 'O'), ('and', 'O'), ('book', 'O'), ('critic', 'O'), (',', 'O'), ('will', 'O'), ('retain', 'O'), ('her', 'O'), ('name', 'O'), ('professionally', 'O'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Garrison', 'ORGANIZATION'), ('Forest', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Sarah', 'ORGANIZATION'), ('Lawrence', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Committee', 'O'), ('on', 'O'), ('Social', 'O'), ('Thought', 'O'), ('at', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Chicago', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('she', 'O'), ('is', 'O'), ('a', 'O'), ('doctoral', 'O'), ('candidate', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Schwed', 'PERSON'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Riverdale', 'ORGANIZATION'), ('Country', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('summa', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Princeton', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('he', 'O'), ('was', 'O'), ('elected', 'O'), ('to', 'O'), ('Phi', 'LOCATION'), ('Beta', 'LOCATION'), ('Kappa', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('graduate', 'O'), ('also', 'O'), ('of', 'O'), ('the', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('he', 'O'), ('was', 'O'), ('a', 'O'), ('Harlan', 'PERSON'), ('Fiske', 'PERSON'), ('Stone', 'O'), ('Scholar', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Philip', 'PERSON'), ('F.', 'PERSON'), ('Hendel', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('Hendel', 'PERSON'), (\"'s\", 'O'), ('daughter', 'O'), (',', 'O'), ('Susan', 'PERSON'), ('Wells', 'PERSON'), ('Hendel', 'PERSON'), (',', 'O'), ('to', 'O'), ('David', 'PERSON'), ('E.', 'PERSON'), ('Fleming', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Gertrude', 'PERSON'), ('Hahn', 'PERSON'), ('Fleming', 'PERSON'), ('of', 'O'), ('the', 'O'), ('Mount', 'O'), ('Airy', 'O'), ('section', 'O'), ('of', 'O'), ('Philadelphia', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Ernest', 'PERSON'), ('E.', 'PERSON'), ('Fleming', 'PERSON'), ('.', 'O'), ('Miss', 'O'), ('Hendel', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('also', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Sibley', 'PERSON'), ('Stoddard', 'PERSON'), ('Mahern', 'PERSON'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Pine', 'LOCATION'), ('Manor', 'LOCATION'), ('and', 'O'), ('Goucher', 'O'), ('Colleges', 'O'), ('.', 'O'), ('Her', 'O'), ('fiance', 'O'), ('is', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('Cornell', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Maryland', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('to', 'O'), ('be', 'O'), ('in', 'O'), ('June', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('T.', 'PERSON'), ('Murray', 'PERSON'), ('McDonnell', 'PERSON'), ('of', 'O'), ('Peapack', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Peggy', 'PERSON'), ('McDonnell', 'PERSON'), ('to', 'O'), ('Cyrus', 'PERSON'), ('R.', 'PERSON'), ('Vance', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('Vance', 'PERSON'), (',', 'O'), ('Secretary', 'O'), ('of', 'O'), ('State', 'O'), ('in', 'O'), ('the', 'O'), ('Carter', 'ORGANIZATION'), ('Administration', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Vance', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('to', 'O'), ('be', 'O'), ('in', 'O'), ('May', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('Hamilton', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('was', 'O'), ('until', 'O'), ('recently', 'O'), ('an', 'O'), ('administrative', 'O'), ('assistant', 'O'), ('at', 'O'), ('the', 'O'), ('Taylor', 'O'), ('Galleries', 'O'), ('in', 'O'), ('Dublin', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Allen', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('investment', 'O'), ('banking', 'O'), ('house', 'O'), ('.', 'O'), ('Miss', 'O'), ('McDonnell', 'ORGANIZATION'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('James', 'PERSON'), ('F.', 'PERSON'), ('McDonnell', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Southampton', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Horace', 'PERSON'), ('C.', 'PERSON'), ('Flanigan', 'PERSON'), ('of', 'O'), ('Purchase', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Flanigan', 'PERSON'), ('was', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('Manufacturers', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('and', 'O'), ('later', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('executive', 'O'), ('committee', 'O'), ('of', 'O'), ('the', 'O'), ('Manufacturers', 'ORGANIZATION'), ('Hanover', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O'), ('Miss', 'O'), ('McDonnell', 'ORGANIZATION'), ('is', 'O'), ('a', 'O'), ('great-granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Thomas', 'PERSON'), ('E.', 'PERSON'), ('Murray', 'PERSON'), (',', 'O'), ('inventor', 'O'), ('of', 'O'), ('electrical', 'O'), ('and', 'O'), ('welding', 'O'), ('devices', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Vance', 'PERSON'), (',', 'O'), ('an', 'O'), ('assistant', 'O'), ('district', 'O'), ('attorney', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Yale', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Georgetown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('presiding', 'O'), ('senior', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Simpson', 'ORGANIZATION'), ('Thacher', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Bartlett', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('John', 'PERSON'), ('Sloane', 'PERSON'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Elsie', 'PERSON'), ('Nicoll', 'PERSON'), ('Sloane', 'PERSON'), (',', 'O'), ('and', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('J.', 'PERSON'), ('Carl', 'PERSON'), ('Vance', 'PERSON'), ('of', 'O'), ('Clarksburg', 'LOCATION'), (',', 'O'), ('W.', 'LOCATION'), ('Va.', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Karl', 'PERSON'), ('Ake', 'PERSON'), ('Andersson', 'PERSON'), ('of', 'O'), ('Stockholm', 'LOCATION'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Ann', 'PERSON'), ('-', 'O'), ('Christin', 'PERSON'), ('Karlsdotter', 'PERSON'), ('Andersson', 'PERSON'), (',', 'O'), ('to', 'O'), ('Lawrence', 'PERSON'), ('Nason', 'PERSON'), ('Gelb', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Richard', 'PERSON'), ('Lee', 'PERSON'), ('Gelb', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('A', 'O'), ('June', 'O'), ('weding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('Miss', 'O'), ('Andersson', 'PERSON'), (',', 'O'), ('most', 'O'), ('recently', 'O'), ('a', 'O'), ('teacher', 'O'), ('of', 'O'), ('secondary-school', 'O'), ('home', 'O'), ('economics', 'O'), ('in', 'O'), ('Stockholm', 'LOCATION'), (',', 'O'), ('lives', 'O'), ('in', 'O'), ('San', 'LOCATION'), ('Francisco', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Sodra', 'ORGANIZATION'), ('Latin', 'O'), ('Gymnasium', 'O'), ('in', 'O'), ('Stockholm', 'LOCATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('graduate', 'O'), ('degree', 'O'), ('in', 'O'), ('home', 'O'), ('economics', 'O'), ('and', 'O'), ('social', 'O'), ('science', 'O'), ('education', 'O'), ('at', 'O'), ('Umea', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('in', 'O'), ('Umea', 'LOCATION'), (',', 'O'), ('Sweden', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('painting', 'O'), ('contractor', 'O'), ('for', 'O'), ('C.', 'PERSON'), ('P.', 'PERSON'), ('A.', 'PERSON'), ('Jacobsson', 'PERSON'), ('in', 'O'), ('Stockholm', 'LOCATION'), ('.', 'O'), ('Dr.', 'PERSON'), ('Gelb', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('Phillips', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('and', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('a', 'O'), ('doctorate', 'O'), ('in', 'O'), ('mental', 'O'), ('health', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('California', 'ORGANIZATION'), ('at', 'O'), ('San', 'LOCATION'), ('Francisco', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('the', 'O'), ('mental-health', 'O'), ('coordinator', 'O'), ('of', 'O'), ('the', 'O'), ('total', 'O'), ('health', 'O'), ('care', 'O'), ('program', 'O'), ('at', 'O'), ('the', 'O'), ('Kaiser', 'LOCATION'), ('Hospital', 'LOCATION'), ('in', 'O'), ('Oakland', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('Bristol-Myers', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Lauren', 'PERSON'), ('Otis', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Climena', 'PERSON'), ('Louise', 'PERSON'), ('Otis', 'PERSON'), (',', 'O'), ('to', 'O'), ('Dr.', 'PERSON'), ('Max', 'PERSON'), ('Endel', 'PERSON'), ('Ots', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Endel', 'PERSON'), ('Ots', 'PERSON'), ('of', 'O'), ('Ranea', 'LOCATION'), (',', 'O'), ('Sweden', 'LOCATION'), ('.', 'O'), ('A', 'O'), ('late', 'O'), ('June', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('manager', 'O'), ('for', 'O'), ('Argenzio', 'ORGANIZATION'), ('Brothers', 'ORGANIZATION'), ('Jewelers', 'ORGANIZATION'), ('in', 'O'), ('Denver', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Friends', 'O'), ('Seminary', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Goucher', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('deputy', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Manhattan', 'LOCATION'), ('office', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('City', 'ORGANIZATION'), ('Department', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('City', 'ORGANIZATION'), ('Planning', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Mayor', 'O'), (\"'s\", 'O'), ('representative', 'O'), ('on', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('City', 'LOCATION'), ('Art', 'O'), ('Commission', 'O'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Helen', 'PERSON'), ('Otis', 'PERSON'), (',', 'O'), ('is', 'O'), ('conservator', 'O'), ('for', 'O'), ('prints', 'O'), ('and', 'O'), ('drawings', 'O'), ('at', 'O'), ('the', 'O'), ('Metropolitan', 'O'), ('Museum', 'O'), ('of', 'O'), ('Art', 'O'), ('.', 'O'), ('Dr.', 'PERSON'), ('Ots', 'PERSON'), ('is', 'O'), ('a', 'O'), ('fellow', 'O'), ('in', 'O'), ('neurosurgery', 'O'), ('at', 'O'), ('the', 'O'), ('Mayo', 'O'), ('Clinic', 'O'), ('in', 'O'), ('Rochester', 'LOCATION'), (',', 'O'), ('Minn.', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Johns', 'ORGANIZATION'), ('Hopkins', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Johns', 'ORGANIZATION'), ('Hopkins', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('retired', 'O'), ('pharmacist', 'O'), ('and', 'O'), ('his', 'O'), ('mother', 'O'), (',', 'O'), ('Karin', 'PERSON'), ('Ots', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('pharmacist', 'O'), ('.', 'O')), (('Linda', 'PERSON'), ('Joy', 'PERSON'), ('Keyes', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Macey', 'PERSON'), ('H.', 'PERSON'), ('Keyes', 'PERSON'), ('of', 'O'), ('Miami', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Dr.', 'PERSON'), ('David', 'PERSON'), ('Jon', 'PERSON'), ('Levens', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Edward', 'PERSON'), ('Bertrand', 'PERSON'), ('Levens', 'PERSON'), ('of', 'O'), ('Newton', 'LOCATION'), ('Centre', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('Rabbi', 'R'), ('Michael', 'PERSON'), ('Eisenstat', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Doral-on-the-Ocean', 'O'), ('Hotel', 'O'), ('in', 'O'), ('Miami', 'LOCATION'), ('Beach', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('Simmons', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('manager', 'O'), ('of', 'O'), ('editorial', 'O'), ('services', 'O'), ('for', 'O'), ('CBS', 'ORGANIZATION'), ('Sports', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('cardiologist', 'O'), ('in', 'O'), ('Miami', 'LOCATION'), ('.', 'O'), ('Dr.', 'PERSON'), ('Levens', 'PERSON'), (',', 'O'), ('a', 'O'), ('surgical', 'O'), ('resident', 'O'), ('at', 'O'), ('the', 'O'), ('Montefiore', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('in', 'O'), ('the', 'O'), ('Bronx', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('fom', 'O'), ('the', 'O'), ('Massachusetts', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Physicians', 'ORGANIZATION'), ('and', 'O'), ('Surgeons', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('manufacturing', 'O'), ('manager', 'O'), ('of', 'O'), ('the', 'O'), ('G.T.E.', 'O'), ('Corporation', 'O'), ('in', 'O'), ('Needham', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O')), (('The', 'O'), ('engagement', 'O'), ('of', 'O'), ('Denise', 'PERSON'), ('Elizabeth', 'PERSON'), ('Moore', 'PERSON'), ('to', 'O'), ('Francois', 'PERSON'), ('Pierre', 'PERSON'), ('Brosens', 'PERSON'), ('has', 'O'), ('been', 'O'), ('announced', 'O'), ('by', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Peter', 'PERSON'), ('B.', 'PERSON'), ('Moore', 'PERSON'), ('of', 'O'), ('Sergeantsville', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('parents', 'O'), ('of', 'O'), ('the', 'O'), ('future', 'O'), ('bride', 'B'), ('.', 'O'), ('Her', 'O'), ('fiance', 'O'), ('is', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Pierre', 'PERSON'), ('J.', 'PERSON'), ('Brosens', 'PERSON'), ('of', 'O'), ('Belmont', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('A', 'O'), ('June', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('Miss', 'O'), ('Moore', 'PERSON'), (',', 'O'), ('a', 'O'), ('media', 'O'), ('buyer', 'O'), ('for', 'O'), ('Ted', 'O'), ('Bates', 'O'), ('Advertising', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Shipley', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Smith', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('and', 'O'), ('chief', 'O'), ('executive', 'O'), ('officer', 'O'), ('of', 'O'), ('Craft', 'ORGANIZATION'), ('Industries', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Caroline', 'PERSON'), ('S.', 'PERSON'), ('Moore', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('admissions', 'O'), ('officer', 'O'), ('at', 'O'), ('Princeton', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bridegroom', 'G'), (',', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('Belmont', 'ORGANIZATION'), ('Hill', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Princeton', 'ORGANIZATION'), ('and', 'O'), ('was', 'O'), ('elected', 'O'), ('to', 'O'), ('Phi', 'O'), ('Beta', 'O'), ('Kappa', 'O'), ('there', 'O'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('an', 'O'), ('associate', 'O'), ('in', 'O'), ('the', 'O'), ('trading', 'O'), ('and', 'O'), ('arbitrage', 'O'), ('department', 'O'), ('of', 'O'), ('Goldman', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Sachs', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('founder', 'O'), ('and', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('General', 'ORGANIZATION'), ('Scanning', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('Watertown', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('where', 'O'), ('his', 'O'), ('mother', 'O'), (',', 'O'), ('Francine', 'PERSON'), ('Brosens', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('data', 'O'), ('processing', 'O'), ('executive', 'O'), ('.', 'O'), ('His', 'O'), ('grandfather', 'O'), (',', 'O'), ('Reinhardt', 'PERSON'), ('M.', 'PERSON'), ('Neuerberg', 'PERSON'), ('of', 'O'), ('Ascain', 'LOCATION'), (',', 'O'), ('France', 'LOCATION'), (',', 'O'), ('was', 'O'), ('formerly', 'O'), ('the', 'O'), ('Netherlands', 'LOCATION'), ('Ambassador', 'LOCATION'), ('to', 'O'), ('Venezuela', 'LOCATION'), ('.', 'O')), (('Diane', 'PERSON'), ('Leenheer', 'PERSON'), ('Zimmerman', 'PERSON'), (',', 'O'), ('a', 'O'), ('professor', 'O'), ('of', 'O'), ('law', 'O'), ('at', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Dr.', 'PERSON'), ('Cavin', 'PERSON'), ('Philip', 'PERSON'), ('Leeman', 'PERSON'), (',', 'O'), ('chief', 'O'), ('of', 'O'), ('psychiatry', 'O'), ('at', 'O'), ('the', 'O'), ('Veterans', 'ORGANIZATION'), ('Administration', 'ORGANIZATION'), ('medical', 'O'), ('center', 'O'), ('in', 'O'), ('Brooklyn', 'LOCATION'), ('.', 'O'), ('Justice', 'O'), ('Arnold', 'PERSON'), ('L.', 'PERSON'), ('Fein', 'PERSON'), ('of', 'O'), ('the', 'O'), ('Appellate', 'O'), ('Division', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('Supreme', 'ORGANIZATION'), ('Court', 'ORGANIZATION'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('English-Speaking', 'O'), ('Union', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retaining', 'O'), ('her', 'O'), ('name', 'O'), ('professionally', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Adrien', 'PERSON'), ('Leenheer', 'PERSON'), ('of', 'O'), ('North', 'LOCATION'), ('Haledon', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('Formerly', 'O'), ('a', 'O'), ('reporter', 'O'), ('for', 'O'), ('Newsweek', 'ORGANIZATION'), ('and', 'O'), ('The', 'O'), ('Daily', 'O'), ('News', 'O'), (',', 'O'), ('she', 'O'), ('graduated', 'O'), ('from', 'O'), ('Beaver', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('previous', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), (',', 'O'), ('as', 'O'), ('did', 'O'), ('the', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('parts', 'O'), ('manager', 'O'), ('for', 'O'), ('the', 'O'), ('Eastern', 'ORGANIZATION'), ('Tank', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Paterson', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('Dr.', 'PERSON'), ('Leeman', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Stephen', 'PERSON'), ('Leeman', 'PERSON'), ('of', 'O'), ('Nyack', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('formerly', 'O'), ('associate', 'O'), ('psychiatrist', 'O'), ('at', 'O'), ('Beth', 'ORGANIZATION'), ('Israel', 'ORGANIZATION'), ('Hospital', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), ('and', 'O'), ('associate', 'O'), ('clinical', 'O'), ('professor', 'O'), ('of', 'O'), ('psychiatry', 'O'), ('at', 'O'), ('the', 'O'), ('Boston', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Medicine', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('lecturer', 'O'), ('in', 'O'), ('psychiatry', 'O'), ('at', 'O'), ('the', 'O'), ('Harvard', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('from', 'O'), ('which', 'O'), ('he', 'O'), ('graduated', 'O'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('Harvard', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('now', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('founder', 'O'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Ming', 'ORGANIZATION'), ('Tea', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('owner', 'O'), ('of', 'O'), ('the', 'O'), ('Clarksville', 'LOCATION'), ('Gallery', 'LOCATION'), ('in', 'O'), ('Nyack', 'LOCATION'), ('.', 'O')), (('Joan', 'PERSON'), ('P.', 'PERSON'), ('Heinzmann', 'PERSON'), (',', 'O'), ('administrator', 'O'), ('of', 'O'), ('facilities', 'O'), ('and', 'O'), ('services', 'O'), ('at', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), (',', 'O'), ('plans', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('Aopril', 'O'), ('28', 'O'), ('to', 'O'), ('Frank', 'PERSON'), ('Inzerillo', 'PERSON'), (',', 'O'), ('a', 'O'), ('corporate', 'O'), ('environmental', 'O'), ('engineer', 'O'), ('with', 'O'), ('the', 'O'), ('GAF', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Wayne', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Frank', 'PERSON'), ('J.', 'PERSON'), ('Heinzmann', 'PERSON'), ('of', 'O'), ('Weehawken', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Heinzmann', 'PERSON'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('College', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Mount', 'ORGANIZATION'), ('St.', 'ORGANIZATION'), ('Vincent', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('N.Y.U.', 'ORGANIZATION'), ('School', 'O'), ('of', 'O'), ('Education', 'O'), ('.', 'O'), ('Her', 'O'), ('fiance', 'O'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Vito', 'PERSON'), ('Inzerillo', 'PERSON'), ('of', 'O'), ('Lloyd', 'LOCATION'), ('Harbor', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Inzerillo', 'PERSON'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Brooklyn', 'ORGANIZATION'), ('Polytechnic', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('.', 'O')), (('Christine', 'PERSON'), ('J.', 'PERSON'), ('McLarney', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Thomas', 'PERSON'), ('P.', 'PERSON'), ('McLarney', 'PERSON'), ('of', 'O'), ('Fairfax', 'LOCATION'), (',', 'O'), ('Va.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Stephen', 'PERSON'), ('M.', 'PERSON'), ('Rickert', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Van', 'PERSON'), ('Dusen', 'PERSON'), ('Rickert', 'PERSON'), ('of', 'O'), ('Washington', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Rickert', 'PERSON'), ('.', 'O'), ('Canon', 'PERSON'), ('Charles', 'PERSON'), ('Martin', 'PERSON'), ('of', 'O'), ('the', 'O'), ('National', 'ORGANIZATION'), ('Cathedral', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), ('performed', 'O'), ('the', 'O'), ('Episcopal', 'O'), ('ceremony', 'O'), ('in', 'O'), ('the', 'O'), ('Little', 'O'), ('Sanctuary', 'O'), ('at', 'O'), ('the', 'O'), ('St.', 'ORGANIZATION'), ('Albans', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), (',', 'O'), ('of', 'O'), ('which', 'O'), ('the', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('.', 'O'), ('Mary', 'PERSON'), ('Lynn', 'PERSON'), ('Larson', 'PERSON'), ('was', 'O'), ('her', 'O'), ('sister', 'O'), (\"'s\", 'O'), ('matron', 'O'), ('of', 'O'), ('honor', 'O'), ('.', 'O'), ('Jonathan', 'PERSON'), ('B.', 'PERSON'), ('Rickert', 'PERSON'), ('was', 'O'), ('his', 'O'), ('brother', 'O'), (\"'s\", 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('known', 'O'), ('as', 'O'), ('Christy', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('purser', 'O'), ('with', 'O'), ('Trans', 'ORGANIZATION'), ('World', 'ORGANIZATION'), ('Airlines', 'ORGANIZATION'), ('on', 'O'), ('its', 'O'), ('international', 'O'), ('flights', 'O'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('Villa', 'O'), ('Pr', 'O'), ('es-Fleuris', 'O'), ('in', 'O'), ('Valais', 'LOCATION'), (',', 'O'), ('Switzerland', 'LOCATION'), (',', 'O'), ('the', 'O'), ('Marymount', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('at', 'O'), ('Stony', 'LOCATION'), ('Brook', 'LOCATION'), ('after', 'O'), ('studying', 'O'), ('at', 'O'), ('the', 'O'), ('Institute', 'ORGANIZATION'), ('for', 'ORGANIZATION'), ('American', 'ORGANIZATION'), ('Universities', 'ORGANIZATION'), ('in', 'O'), ('Aix-en-Provence', 'LOCATION'), (',', 'O'), ('France', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('loan', 'O'), ('officer', 'O'), ('with', 'O'), ('the', 'O'), ('Agency', 'ORGANIZATION'), ('for', 'ORGANIZATION'), ('International', 'ORGANIZATION'), ('Development', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Rickert', 'PERSON'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('at', 'O'), ('E.', 'ORGANIZATION'), ('F.', 'ORGANIZATION'), ('Hutton', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('in', 'O'), ('its', 'O'), ('taxable', 'O'), ('fixed-income', 'O'), ('research', 'O'), ('department', 'O'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Princeton', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degrees', 'O'), ('in', 'O'), ('teaching', 'O'), ('from', 'O'), ('Johns', 'ORGANIZATION'), ('Hopkins', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('business', 'O'), ('administration', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('French', 'O'), ('and', 'O'), ('Spanish', 'O'), ('teacher', 'O'), ('in', 'O'), ('the', 'O'), ('Washington', 'LOCATION'), ('school', 'O'), ('system', 'O'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Luther', 'PERSON'), ('D.', 'PERSON'), ('Bradley', 'PERSON'), (',', 'O'), ('a', 'O'), ('political', 'O'), ('cartoonist', 'O'), ('for', 'O'), ('The', 'ORGANIZATION'), ('Chicago', 'ORGANIZATION'), ('Daily', 'ORGANIZATION'), ('News', 'ORGANIZATION'), ('.', 'O')), (('Katherine', 'PERSON'), ('Schirmer', 'PERSON'), (',', 'O'), ('a', 'O'), ('senior', 'O'), ('staff', 'O'), ('adviser', 'O'), ('at', 'O'), ('the', 'O'), ('Exxon', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('U.S.A.', 'ORGANIZATION'), ('in', 'O'), ('Houston', 'LOCATION'), (',', 'O'), ('and', 'O'), ('James', 'PERSON'), ('Louis', 'PERSON'), ('Cochrane', 'PERSON'), (',', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Texas', 'ORGANIZATION'), ('Commerce', 'ORGANIZATION'), ('Bancshares', 'ORGANIZATION'), (',', 'O'), ('also', 'O'), ('in', 'O'), ('Houston', 'LOCATION'), (',', 'O'), ('plan', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('March', 'O'), ('24', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('known', 'O'), ('as', 'O'), ('Kitty', 'PERSON'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('David', 'PERSON'), ('Austin', 'PERSON'), ('Schirmer', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('Canaan', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('who', 'O'), ('have', 'O'), ('announced', 'O'), ('her', 'O'), ('engagement', 'O'), ('.', 'O'), ('She', 'O'), ('was', 'O'), ('formerly', 'O'), ('associate', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Office', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Management', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Budget', 'ORGANIZATION'), ('and', 'O'), ('served', 'O'), ('on', 'O'), ('the', 'O'), ('White', 'O'), ('House', 'O'), ('domestic', 'O'), ('policy', 'O'), ('staff', 'O'), ('.', 'O'), ('Miss', 'O'), ('Schirmer', 'PERSON'), ('graduated', 'O'), ('from', 'O'), ('Miss', 'ORGANIZATION'), ('Porter', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Wellesley', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('an', 'O'), ('independent', 'O'), ('business', 'O'), ('consultant', 'O'), (',', 'O'), ('retired', 'O'), ('as', 'O'), ('executive', 'O'), ('recruiter', 'O'), ('for', 'O'), ('the', 'O'), ('Paul', 'ORGANIZATION'), ('Revere', 'ORGANIZATION'), ('Insurance', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Worcester', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Cochrane', 'PERSON'), ('is', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Anne', 'PERSON'), ('Cochrane', 'PERSON'), ('of', 'O'), ('Allentown', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Thomas', 'PERSON'), ('Cochrane', 'PERSON'), ('.', 'O'), ('He', 'O'), ('was', 'O'), ('previously', 'O'), ('deputy', 'O'), ('director', 'O'), ('of', 'O'), ('East', 'O'), ('Asian', 'O'), ('analysis', 'O'), ('at', 'O'), ('the', 'O'), ('Central', 'ORGANIZATION'), ('Intelligence', 'ORGANIZATION'), ('Agency', 'ORGANIZATION'), ('and', 'O'), ('was', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('National', 'ORGANIZATION'), ('Security', 'ORGANIZATION'), ('Council', 'ORGANIZATION'), ('staff', 'O'), ('during', 'O'), ('the', 'O'), ('Carter', 'O'), ('Administration', 'O'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Wittenberg', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('doctorate', 'O'), ('in', 'O'), ('economics', 'O'), ('from', 'O'), ('Tulane', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('personnel', 'O'), ('manager', 'O'), ('with', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('Department', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Mental', 'ORGANIZATION'), ('Hygiene', 'ORGANIZATION'), ('.', 'O')), (('Claire', 'PERSON'), ('Dennison', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('Paul', 'PERSON'), ('Dennison', 'PERSON'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Dennison', 'PERSON'), ('of', 'O'), ('Pecos', 'LOCATION'), (',', 'O'), ('Tex.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('yesterday', 'O'), ('to', 'O'), ('Luther', 'PERSON'), ('T.', 'PERSON'), ('Griffith', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Francis', 'PERSON'), ('Willard', 'PERSON'), ('Griffith', 'PERSON'), ('of', 'O'), ('Short', 'LOCATION'), ('Hills', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Tortola', 'LOCATION'), (',', 'O'), ('British', 'LOCATION'), ('Virgin', 'LOCATION'), ('Islands', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('C.', 'PERSON'), ('Hugh', 'PERSON'), ('Hildesley', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'O'), ('the', 'O'), ('Heavenly', 'O'), ('Rest', 'O'), ('.', 'O'), ('Susan', 'PERSON'), ('Dennison', 'PERSON'), ('Lucas', 'PERSON'), ('was', 'O'), ('her', 'O'), ('sister', 'O'), (\"'s\", 'O'), ('matron', 'O'), ('of', 'O'), ('honor', 'O'), ('.', 'O'), ('Stephen', 'PERSON'), ('A.', 'PERSON'), ('Laserson', 'PERSON'), ('was', 'O'), ('his', 'O'), ('brother-in-law', 'O'), (\"'s\", 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('an', 'O'), ('assistant', 'O'), ('vice', 'O'), ('president', 'O'), ('in', 'O'), ('the', 'O'), ('equity', 'O'), ('trading', 'O'), ('division', 'O'), ('of', 'O'), ('Merrill', 'ORGANIZATION'), ('Lynch', 'ORGANIZATION'), ('Capital', 'ORGANIZATION'), ('Markets', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('St.', 'ORGANIZATION'), ('Stephens', 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('High', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Austin', 'LOCATION'), (',', 'O'), ('Tex.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Sweet', 'ORGANIZATION'), ('Briar', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Junior', 'ORGANIZATION'), ('League', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Elizabeth', 'PERSON'), ('Dennison', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('home-school', 'O'), ('coordinator', 'O'), ('for', 'O'), ('the', 'O'), ('Pecos', 'ORGANIZATION'), ('Independent', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('System', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('lawyer', 'O'), ('in', 'O'), ('Pecos', 'LOCATION'), ('and', 'O'), ('District', 'O'), ('Attorney', 'O'), ('of', 'O'), ('Reeves', 'LOCATION'), ('County', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Griffith', 'PERSON'), ('is', 'O'), ('an', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('and', 'O'), ('chief', 'O'), ('operating', 'O'), ('officer', 'O'), ('of', 'O'), ('Anistics', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('the', 'O'), ('risk-management', 'O'), ('subsidiary', 'O'), ('of', 'O'), ('Alexander', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Alexander', 'ORGANIZATION'), ('Services', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Lawrenceville', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Wisconsin', 'ORGANIZATION'), ('at', 'O'), ('Madison', 'O'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('vice', 'O'), ('chairman', 'O'), ('of', 'O'), ('Griffith', 'ORGANIZATION'), ('Laboratories', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('food', 'O'), ('chemists', 'O'), ('in', 'O'), ('Union', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('which', 'O'), ('was', 'O'), ('founded', 'O'), ('by', 'O'), ('the', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('late', 'O'), ('grandfather', 'O'), (',', 'O'), ('Enoch', 'PERSON'), ('Luther', 'PERSON'), ('Griffith', 'PERSON'), ('.', 'O')), (('The', 'O'), ('engagement', 'O'), ('of', 'O'), ('Jane', 'PERSON'), ('Ann', 'PERSON'), ('Elizabeth', 'PERSON'), ('Cox', 'PERSON'), ('to', 'O'), ('John', 'PERSON'), ('Lord', 'PERSON'), ('Hettrick', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Hettrick', 'PERSON'), ('of', 'O'), ('Buffalo', 'LOCATION'), (',', 'O'), ('has', 'O'), ('been', 'O'), ('announced', 'O'), ('by', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('P.', 'PERSON'), ('Cox', 'PERSON'), ('of', 'O'), ('Buffalo', 'LOCATION'), ('and', 'O'), ('Sea', 'LOCATION'), ('Island', 'LOCATION'), (',', 'O'), ('Ga.', 'LOCATION'), (',', 'O'), ('parents', 'O'), ('of', 'O'), ('the', 'O'), ('bride-to', 'O'), ('-', 'O'), ('be', 'O'), ('.', 'O'), ('Miss', 'O'), ('Cox', 'O'), (',', 'O'), ('a', 'O'), ('first-year', 'O'), ('student', 'O'), ('at', 'O'), ('the', 'O'), ('Georgetown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Nichols', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('from', 'O'), ('Georgetown', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('founding', 'O'), ('partner', 'O'), ('of', 'O'), ('the', 'O'), ('Buffalo', 'O'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Cox', 'ORGANIZATION'), (',', 'O'), ('Barrell', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Walsh', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Roberts', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Grace', 'ORGANIZATION'), ('and', 'O'), ('serves', 'O'), ('on', 'O'), ('the', 'O'), ('executive', 'O'), ('committee', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('Bar', 'ORGANIZATION'), ('Association', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Betty', 'PERSON'), ('Kleindinst', 'PERSON'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('artist', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Hettrick', 'PERSON'), (',', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('Fay', 'PERSON'), ('and', 'O'), ('Brooks', 'ORGANIZATION'), ('Schools', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Lake', 'ORGANIZATION'), ('Forest', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('Peace', 'ORGANIZATION'), ('Corps', 'ORGANIZATION'), ('volunteer', 'O'), ('in', 'O'), ('Chad', 'LOCATION'), (',', 'O'), ('Cameroon', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('Central', 'LOCATION'), ('African', 'LOCATION'), ('Republic', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('with', 'O'), ('WSF', 'ORGANIZATION'), ('Industries', 'ORGANIZATION'), ('in', 'O'), ('Buffalo', 'LOCATION'), (',', 'O'), ('a', 'O'), ('division', 'O'), ('of', 'O'), ('Hettrick', 'ORGANIZATION'), ('Industries', 'ORGANIZATION'), (',', 'O'), ('of', 'O'), ('which', 'O'), ('his', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Hettrick', 'PERSON'), ('Sr.', 'PERSON'), ('was', 'O'), ('formerly', 'O'), ('vice', 'O'), ('chairman', 'O'), ('of', 'O'), ('Marine', 'ORGANIZATION'), ('Midland', 'ORGANIZATION'), ('Banks', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('.', 'O')), (('Melanie', 'PERSON'), ('Fleischmann', 'PERSON'), (',', 'O'), ('a', 'O'), ('freelance', 'O'), ('writer', 'O'), ('on', 'O'), ('interior', 'O'), ('design', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Bradford', 'PERSON'), ('Garnett', 'PERSON'), (',', 'O'), ('an', 'O'), ('actor', 'O'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('John-Michael', 'PERSON'), ('van', 'PERSON'), ('Dyke', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Emmanuel', 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Delaplane', 'LOCATION'), (',', 'O'), ('Va.', 'LOCATION'), (',', 'O'), ('assisted', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Norman', 'PERSON'), ('C.', 'PERSON'), ('Catir', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('rector', 'O'), ('of', 'O'), ('the', 'O'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('the', 'O'), ('Transfiguration', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Dorette', 'PERSON'), ('Fleischmann', 'PERSON'), ('Seignious', 'PERSON'), ('of', 'O'), ('The', 'LOCATION'), ('Plains', 'LOCATION'), (',', 'O'), ('Va.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Roger', 'PERSON'), ('J.', 'PERSON'), ('Bear', 'O'), ('Jr.', 'O'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Garrison', 'ORGANIZATION'), ('Forest', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('stepfather', 'O'), (',', 'O'), ('Lieut.', 'O'), ('Gen.', 'O'), ('George', 'PERSON'), ('M.', 'PERSON'), ('Seignious', 'PERSON'), ('2d', 'O'), (',', 'O'), ('U.S.A.', 'LOCATION'), (',', 'O'), ('retired', 'O'), (',', 'O'), ('is', 'O'), ('vice', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('Atlantic', 'ORGANIZATION'), ('Council', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('the', 'ORGANIZATION'), ('United', 'ORGANIZATION'), ('States', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), ('and', 'O'), ('former', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Arms', 'ORGANIZATION'), ('Control', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Disarmament', 'ORGANIZATION'), ('Agency', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('Dorette', 'PERSON'), ('Kruse', 'PERSON'), ('Fleischmann', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('Cincinnati', 'LOCATION'), ('and', 'O'), ('Naples', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Julius', 'PERSON'), ('Fleischmann', 'PERSON'), (',', 'O'), ('an', 'O'), ('art', 'O'), ('patron', 'O'), (',', 'O'), ('Broadway', 'O'), ('producer', 'O'), ('and', 'O'), ('philanthropist', 'O'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('great-great', 'O'), ('-', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('Charles', 'PERSON'), ('Fleischmann', 'PERSON'), (',', 'O'), ('who', 'O'), ('headed', 'O'), ('the', 'O'), ('Fleischmann', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('brewers', 'O'), (\"'\", 'O'), ('and', 'O'), ('bakers', 'O'), (\"'\", 'O'), ('yeast', 'O'), ('manufacturer', 'O'), ('that', 'O'), ('was', 'O'), ('merged', 'O'), ('into', 'O'), ('Standard', 'ORGANIZATION'), ('Brands', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('retired', 'O'), ('director', 'O'), ('of', 'O'), ('sales', 'O'), ('of', 'O'), ('the', 'O'), ('Tolas', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('printing', 'O'), ('business', 'O'), ('in', 'O'), ('Newtown', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), ('.', 'O')), (('Marguerite', 'PERSON'), ('Tabor', 'PERSON'), ('Yates', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('Sellers', 'PERSON'), ('Yates', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Pocono', 'LOCATION'), ('Lake', 'LOCATION'), ('Preserve', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('David', 'PERSON'), ('Carroll', 'PERSON'), ('Chaffetz', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Hammond', 'PERSON'), ('E.', 'PERSON'), ('Chaffetz', 'PERSON'), ('of', 'O'), ('Chicago', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('ceremony', 'O'), ('was', 'O'), ('performed', 'O'), ('at', 'O'), ('the', 'O'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'O'), ('the', 'O'), ('Heavenly', 'O'), ('Rest', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('C.', 'PERSON'), ('Hugh', 'PERSON'), ('Hildesley', 'PERSON'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('retain', 'O'), ('her', 'O'), ('name', 'O'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('assistant', 'O'), ('treasurer', 'O'), ('in', 'O'), ('the', 'O'), ('international', 'O'), ('department', 'O'), ('of', 'O'), ('the', 'O'), ('Chase', 'ORGANIZATION'), ('Manhattan', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Marguerite', 'PERSON'), ('Tabor', 'PERSON'), ('Yates', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('customer', 'O'), ('service', 'O'), ('representative', 'O'), ('in', 'O'), ('the', 'O'), ('same', 'O'), ('department', 'O'), ('of', 'O'), ('the', 'O'), ('bank', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('attended', 'O'), ('the', 'O'), ('Lycee', 'O'), ('Fran', 'O'), (',', 'O'), ('cais', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Lycee', 'ORGANIZATION'), ('Chateaubriand', 'ORGANIZATION'), ('in', 'O'), ('Rome', 'LOCATION'), ('and', 'O'), ('from', 'O'), ('Yale', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('studied', 'O'), ('at', 'O'), ('the', 'O'), ('Center', 'O'), ('for', 'O'), ('Arabic', 'O'), ('Studies', 'O'), ('in', 'O'), ('Cairo', 'LOCATION'), ('and', 'O'), ('received', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degrees', 'O'), ('in', 'O'), ('Near', 'LOCATION'), ('East', 'LOCATION'), ('languages', 'O'), ('and', 'O'), ('literature', 'O'), ('and', 'O'), ('in', 'O'), ('business', 'O'), ('administration', 'O'), ('from', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('in', 'O'), ('Middle', 'LOCATION'), ('Eastern', 'LOCATION'), ('literature', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('Marc', 'ORGANIZATION'), ('Wood', 'ORGANIZATION'), ('International', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('patent', 'O'), ('licensing', 'O'), ('firm', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Chaffetz', 'PERSON'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('financial', 'O'), ('analyst', 'O'), ('with', 'O'), ('I.B.M.', 'ORGANIZATION'), ('EuropeMiddle', 'O'), ('EastAfrica', 'O'), ('in', 'O'), ('White', 'LOCATION'), ('Plains', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('joint', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degrees', 'O'), ('in', 'O'), ('international', 'O'), ('affairs', 'O'), ('and', 'O'), ('business', 'O'), ('administration', 'O'), ('from', 'O'), ('Columbia', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('the', 'O'), ('author', 'O'), ('of', 'O'), (\"''\", 'O'), ('Journey', 'O'), ('Through', 'O'), ('Afghanistan', 'O'), (',', 'O'), (\"''\", 'O'), ('published', 'O'), ('by', 'O'), ('Regnery', 'ORGANIZATION'), ('Press', 'ORGANIZATION'), ('in', 'O'), ('1981', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('partner', 'O'), ('with', 'O'), ('the', 'O'), ('Chicago', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Kirkland', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Ellis', 'ORGANIZATION'), ('.', 'O')), (('Announcement', 'O'), ('has', 'O'), ('been', 'O'), ('made', 'O'), ('by', 'O'), ('Mrs.', 'PERSON'), ('Anthony', 'PERSON'), ('Joseph', 'PERSON'), ('Paen', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Rye', 'O'), (',', 'O'), ('N.Y.', 'LOCATION'), ('and', 'O'), ('Maynard', 'PERSON'), ('Doran', 'PERSON'), ('Hazen', 'PERSON'), ('of', 'O'), ('Bal', 'LOCATION'), ('Harbour', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('of', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Lisa', 'PERSON'), ('Caron', 'PERSON'), ('Hazen', 'PERSON'), (',', 'O'), ('to', 'O'), ('Robert', 'PERSON'), ('Morgan', 'PERSON'), ('Davies', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Morgan', 'PERSON'), ('Ernest', 'PERSON'), ('Davies', 'PERSON'), ('of', 'O'), ('Menai', 'LOCATION'), ('Bridge', 'LOCATION'), (',', 'O'), ('Angelsey', 'LOCATION'), (',', 'O'), ('Wales', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Hazen', 'PERSON'), (',', 'O'), ('an', 'O'), ('account', 'O'), ('executive', 'O'), ('with', 'O'), ('Ad', 'O'), ('Forum', 'O'), (',', 'O'), ('a', 'O'), ('trade', 'O'), ('publication', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Alabama', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('with', 'O'), ('the', 'O'), ('sales', 'O'), ('and', 'O'), ('marketing', 'O'), ('division', 'O'), ('of', 'O'), ('the', 'O'), ('Cannon', 'ORGANIZATION'), ('Mills', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('and', 'O'), ('manages', 'O'), ('its', 'O'), ('Miami', 'LOCATION'), ('office', 'O'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Betty', 'PERSON'), ('Hazen', 'PERSON'), ('Paen', 'PERSON'), (',', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('volunteer', 'O'), ('services', 'O'), ('at', 'O'), ('the', 'O'), ('United', 'LOCATION'), ('Hospital', 'LOCATION'), ('in', 'O'), ('Port', 'LOCATION'), ('Chester', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('.', 'O'), ('and', 'O'), ('M.A.', 'PERSON'), ('degrees', 'O'), ('in', 'O'), ('history', 'O'), ('from', 'O'), ('Cambridge', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('an', 'O'), ('associate', 'O'), ('in', 'O'), ('the', 'O'), ('international', 'O'), ('division', 'O'), ('of', 'O'), ('Bear', 'ORGANIZATION'), ('Stearns', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('retired', 'O'), ('physician', 'O'), ('.', 'O')), (('The', 'O'), ('marriage', 'O'), ('of', 'O'), ('Patricia', 'PERSON'), ('Kern', 'PERSON'), ('Ribner', 'PERSON'), (',', 'O'), ('who', 'O'), ('teaches', 'O'), ('English', 'O'), ('at', 'O'), ('the', 'O'), ('Bronxville', 'LOCATION'), ('-LRB-', 'O'), ('N.Y.', 'LOCATION'), ('-RRB-', 'O'), ('School', 'O'), (',', 'O'), ('to', 'O'), ('Daniel', 'PERSON'), ('Zendel', 'PERSON'), (',', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('Manhattan', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Ladas', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Parry', 'ORGANIZATION'), (',', 'O'), ('took', 'O'), ('place', 'O'), ('yesterday', 'O'), ('at', 'O'), ('the', 'O'), ('Woman', 'O'), (\"'s\", 'O'), ('Club', 'O'), ('of', 'O'), ('White', 'LOCATION'), ('Plains', 'LOCATION'), ('.', 'O'), ('Rabbi', 'R'), ('Burt', 'PERSON'), ('Siegal', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('.', 'O'), ('The', 'O'), ('parents', 'O'), ('of', 'O'), ('the', 'O'), ('couple', 'O'), (',', 'O'), ('whose', 'O'), ('previous', 'O'), ('marriages', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), (',', 'O'), ('are', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Louis', 'PERSON'), ('M.', 'PERSON'), ('Kern', 'PERSON'), ('of', 'O'), ('North', 'LOCATION'), ('Miami', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Joshua', 'PERSON'), ('Zendel', 'PERSON'), ('of', 'O'), ('Eastchester', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION')), (('Mary', 'PERSON'), ('Elizabeth', 'PERSON'), ('McGarry', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Thomas', 'PERSON'), ('F.', 'PERSON'), ('McGarry', 'PERSON'), ('of', 'O'), ('Stamford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Craig', 'PERSON'), ('Justin', 'PERSON'), ('Albert', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Murray', 'PERSON'), ('Albert', 'PERSON'), ('of', 'O'), ('Beverly', 'LOCATION'), ('Hills', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Gerda', 'PERSON'), ('Albert', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Msgr.', 'O'), ('Thomas', 'PERSON'), ('P.', 'PERSON'), ('Guinan', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Michael', 'ORGANIZATION'), ('Roman', 'ORGANIZATION'), ('Catholic', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('assisted', 'O'), ('by', 'O'), ('Cantor', 'PERSON'), ('Raymond', 'PERSON'), ('Smolover', 'PERSON'), ('of', 'O'), ('the', 'O'), ('Jewish', 'ORGANIZATION'), ('Community', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('in', 'O'), ('White', 'LOCATION'), ('Plains', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('known', 'O'), ('as', 'O'), ('Libby', 'PERSON'), ('and', 'O'), ('will', 'O'), ('retain', 'O'), ('her', 'O'), ('name', 'O'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('associate', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Simpson', 'ORGANIZATION'), ('Thacher', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Bartlett', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Wesleyan', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('the', 'O'), ('Georgetown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), (',', 'O'), ('of', 'O'), ('which', 'O'), ('Mr.', 'PERSON'), ('Albert', 'PERSON'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('corporate', 'O'), ('communications', 'O'), ('for', 'O'), ('Pitney', 'ORGANIZATION'), ('Bowes', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('Stamford', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Norma', 'PERSON'), ('McGarry', 'PERSON'), (',', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('community', 'O'), ('service', 'O'), ('at', 'O'), ('the', 'O'), ('Convent', 'O'), ('of', 'O'), ('the', 'O'), ('Sacred', 'O'), ('Heart', 'O'), ('in', 'O'), ('Greenwich', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Albert', 'PERSON'), (',', 'O'), ('an', 'O'), ('associate', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Cahill', 'ORGANIZATION'), ('Gordon', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Reindel', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('also', 'O'), ('from', 'O'), ('the', 'O'), ('Massachusetts', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('executive', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Albert', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Albert', 'ORGANIZATION'), ('Trading', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('fabric', 'O'), ('dealer', 'O'), ('in', 'O'), ('Los', 'LOCATION'), ('Angeles', 'LOCATION'), ('and', 'O'), ('Hong', 'LOCATION'), ('Kong', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), ('is', 'O'), ('an', 'O'), ('art', 'O'), ('director', 'O'), ('with', 'O'), ('the', 'O'), ('Ziff-Davis', 'ORGANIZATION'), ('Publishing', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Joan', 'PERSON'), ('Marie', 'PERSON'), ('DiBona', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Anthony', 'PERSON'), ('DiBona', 'PERSON'), ('of', 'O'), ('Far', 'LOCATION'), ('Rockaway', 'LOCATION'), (',', 'O'), ('Queens', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Dr.', 'PERSON'), ('Theodore', 'PERSON'), ('Hilliard', 'PERSON'), ('Gertel', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('Gertel', 'PERSON'), ('of', 'O'), ('Springfield', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('Rabbi', 'R'), ('Elliot', 'PERSON'), ('Gertel', 'PERSON'), (',', 'O'), ('the', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('brother', 'O'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('Leonard', 'PERSON'), (\"'s\", 'O'), ('of', 'O'), ('Great', 'LOCATION'), ('Neck', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('The', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('research', 'O'), ('associate', 'O'), ('with', 'O'), ('Fred', 'PERSON'), ('Alger', 'PERSON'), ('Management', 'O'), (',', 'O'), ('pension-fund', 'O'), ('managers', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('dye', 'O'), ('maker', 'O'), ('with', 'O'), ('the', 'O'), ('Ninrow', 'ORGANIZATION'), ('Packaging', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Elizabeth', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('Dr.', 'PERSON'), ('Gertel', 'PERSON'), (',', 'O'), ('a', 'O'), ('resident', 'O'), ('in', 'O'), ('orthopedic', 'O'), ('surgery', 'O'), ('at', 'O'), ('Hartford', 'LOCATION'), ('Hospital', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Medicine', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('owner', 'O'), ('of', 'O'), ('Rubin', 'ORGANIZATION'), ('Brothers', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('dry-goods', 'O'), ('store', 'O'), ('in', 'O'), ('Springfield', 'LOCATION'), ('.', 'O')), (('Anita', 'PERSON'), ('Ramani', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Pitumal', 'PERSON'), ('Ramani', 'PERSON'), ('of', 'O'), ('Kobe', 'LOCATION'), (',', 'O'), ('Japan', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Bombay', 'LOCATION'), (',', 'O'), ('India', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Kumar', 'PERSON'), ('M.', 'PERSON'), ('Hathiramani', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Kamala', 'PERSON'), ('Hathiramani', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Bombay', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mohandas', 'PERSON'), ('Hathiramani', 'PERSON'), ('.', 'O'), ('The', 'O'), ('ceremony', 'O'), ('was', 'O'), ('performed', 'O'), ('at', 'O'), ('the', 'O'), ('Guru', 'ORGANIZATION'), ('Nanak', 'ORGANIZATION'), ('Temple', 'ORGANIZATION'), ('in', 'O'), ('Bombay', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('graduated', 'O'), ('from', 'O'), ('Nirmala', 'ORGANIZATION'), ('Niketan', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Bombay', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('own', 'O'), ('Ramani', 'ORGANIZATION'), ('Brothers', 'ORGANIZATION'), ('Ltd.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('fabric', 'O'), ('exporter', 'O'), ('with', 'O'), ('offices', 'O'), ('in', 'O'), ('Kobe', 'LOCATION'), (',', 'O'), ('Singapore', 'LOCATION'), ('and', 'O'), ('Bangkok', 'LOCATION'), (',', 'O'), ('Thailand', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Hathiramani', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('Scholar', 'ORGANIZATION'), ('High', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Bombay', 'LOCATION'), ('and', 'O'), ('Macalester', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('St.', 'LOCATION'), ('Paul', 'LOCATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('principal', 'O'), ('of', 'O'), ('the', 'O'), ('family-owned', 'O'), ('Royal', 'ORGANIZATION'), ('Silk', 'ORGANIZATION'), ('Ltd.', 'ORGANIZATION'), ('of', 'O'), ('Clifton', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('the', 'O'), ('largest', 'O'), ('direct-mail', 'O'), ('marketer', 'O'), ('of', 'O'), ('silks', 'O'), ('in', 'O'), ('the', 'O'), ('Unite', 'O'), ('States', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('C.', 'PERSON'), ('Johnson', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Daytona', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Caroline', 'PERSON'), ('Virginia', 'PERSON'), ('Johnson', 'PERSON'), (',', 'O'), ('to', 'O'), ('Brian', 'PERSON'), ('James', 'PERSON'), ('Bellis', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Theodore', 'PERSON'), ('Bellis', 'PERSON'), ('of', 'O'), ('Wantagh', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('Miss', 'O'), ('Johnson', 'PERSON'), ('and', 'O'), ('her', 'O'), ('fiance', 'O'), (',', 'O'), ('who', 'O'), ('are', 'O'), ('studying', 'O'), ('for', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degrees', 'O'), ('in', 'O'), ('geology', 'O'), ('at', 'O'), ('North', 'ORGANIZATION'), ('Carolina', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('in', 'O'), ('Raleigh', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Brown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O')), (('Susan', 'PERSON'), ('Kathleen', 'PERSON'), ('Fuller', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Rear', 'O'), ('Adm.', 'PERSON'), ('Robert', 'PERSON'), ('Bryon', 'PERSON'), ('Fuller', 'PERSON'), (',', 'O'), ('U.S.N.', 'ORGANIZATION'), (',', 'O'), ('retired', 'O'), (',', 'O'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Fuller', 'PERSON'), ('of', 'O'), ('Jacksonville', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Lieut.', 'O'), ('Comdr.', 'O'), ('Matthew', 'PERSON'), ('William', 'PERSON'), ('Tuohy', 'PERSON'), (',', 'O'), ('U.S.N.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('D.', 'PERSON'), ('Vincent', 'PERSON'), ('Tuohy', 'PERSON'), ('of', 'O'), ('Park', 'O'), ('Slope', 'O'), (',', 'O'), ('Brooklyn', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Monroe', 'PERSON'), (',', 'O'), ('N.Y.', 'LOCATION'), ('The', 'O'), ('Rev.', 'R'), ('Robert', 'PERSON'), ('Franklin', 'PERSON'), (',', 'O'), ('a', 'O'), ('former', 'O'), ('Navy', 'ORGANIZATION'), ('chaplain', 'O'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('Immaculate', 'ORGANIZATION'), ('Conception', 'ORGANIZATION'), ('Roman', 'ORGANIZATION'), ('Catholic', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Jacksonville', 'LOCATION'), ('.', 'O'), ('Mary', 'PERSON'), ('Jane', 'PERSON'), ('Evans', 'PERSON'), ('and', 'O'), ('Margaret', 'PERSON'), ('Fuller', 'PERSON'), ('were', 'O'), ('their', 'O'), ('sister', 'O'), (\"'s\", 'O'), ('matron', 'O'), ('and', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('.', 'O'), ('Peter', 'PERSON'), ('V.', 'PERSON'), ('Tuohy', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('for', 'O'), ('his', 'O'), ('brother', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Florida', 'ORGANIZATION'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('sales', 'O'), ('representative', 'O'), ('for', 'O'), ('Joseph', 'ORGANIZATION'), ('Imported', 'ORGANIZATION'), ('Foods', 'ORGANIZATION'), ('in', 'O'), ('Jacksonville', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Sun', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('Marine', 'ORGANIZATION'), ('in', 'O'), ('Green', 'LOCATION'), ('Cove', 'LOCATION'), ('Springs', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), ('.', 'O'), ('Commander', 'O'), ('Tuohy', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Brooklyn', 'ORGANIZATION'), ('Preparatory', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Jacksonville', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('flier', 'O'), ('aboard', 'O'), ('the', 'O'), ('aircraft', 'O'), ('carrier', 'O'), ('Eisenhower', 'PERSON'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('lawyer', 'O'), (',', 'O'), ('was', 'O'), ('Executive', 'O'), ('Assistant', 'O'), ('District', 'O'), ('Attorney', 'O'), ('in', 'O'), ('Brooklyn', 'LOCATION'), ('and', 'O'), ('counsel', 'O'), ('for', 'O'), ('municipal', 'O'), ('affairs', 'O'), ('for', 'O'), ('the', 'O'), ('State', 'O'), ('Comptroller', 'O'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('William', 'PERSON'), ('J.', 'PERSON'), ('Carroll', 'PERSON'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('chief', 'O'), ('clerk', 'O'), ('of', 'O'), ('the', 'O'), ('Bronx', 'LOCATION'), ('County', 'LOCATION'), ('Court', 'LOCATION'), ('.', 'O')), (('Helaine', 'PERSON'), ('Felice', 'PERSON'), ('Geismar', 'PERSON'), (',', 'O'), ('a', 'O'), ('director', 'O'), ('at', 'O'), ('the', 'O'), ('92d', 'O'), ('Street', 'O'), ('Y', 'O'), (',', 'O'), ('and', 'O'), ('Zorland', 'PERSON'), ('Lawrence', 'PERSON'), ('Katz', 'PERSON'), (',', 'O'), ('a', 'O'), ('real-estate', 'O'), ('broker', 'O'), (',', 'O'), ('plan', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('April', 'O'), ('8', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Stanley', 'PERSON'), ('Geismar', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Muriel', 'PERSON'), ('Ernst', 'PERSON'), ('Geismar', 'PERSON'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Syracuse', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('speech', 'O'), ('pathology', 'O'), ('and', 'O'), ('audiology', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('general', 'O'), ('manager', 'O'), ('of', 'O'), ('the', 'O'), ('Joshua', 'ORGANIZATION'), ('Meier', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('manufacturer', 'O'), ('in', 'O'), ('North', 'LOCATION'), ('Bergen', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('with', 'O'), ('Kentucky', 'ORGANIZATION'), ('Fried', 'ORGANIZATION'), ('Chicken', 'ORGANIZATION'), (\"'s\", 'O'), ('real-estate', 'O'), ('division', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Laura', 'PERSON'), ('Anne', 'PERSON'), ('Flanagan', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Col.', 'O'), ('Eugene', 'PERSON'), ('P.', 'PERSON'), ('Flanagan', 'PERSON'), (',', 'O'), ('U.S.A.', 'LOCATION'), (',', 'O'), ('retired', 'O'), (',', 'O'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Flanagan', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Kenneth', 'PERSON'), ('H.', 'PERSON'), ('Bowen', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Alfred', 'PERSON'), ('H.', 'PERSON'), ('Bowen', 'PERSON'), ('of', 'O'), ('Riverdale', 'LOCATION'), (',', 'O'), ('the', 'O'), ('Bronx', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('George', 'PERSON'), ('Costagan', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('Roman', 'O'), ('Catholic', 'O'), ('ceremony', 'O'), ('at', 'O'), ('Holy', 'O'), ('Trinity', 'O'), ('Chapel', 'O'), ('at', 'O'), ('the', 'O'), ('United', 'ORGANIZATION'), ('States', 'ORGANIZATION'), ('Military', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('at', 'O'), ('West', 'LOCATION'), ('Point', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('Mary', 'PERSON'), ('Flanagan', 'PERSON'), ('was', 'O'), ('her', 'O'), ('sister', 'O'), (\"'s\", 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('and', 'O'), ('David', 'PERSON'), ('Buckley', 'PERSON'), ('was', 'O'), ('the', 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('management', 'O'), ('consultant', 'O'), ('at', 'O'), ('Arthur', 'ORGANIZATION'), ('Andersen', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Teheran', 'ORGANIZATION'), ('American', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Iran', 'LOCATION'), ('and', 'O'), ('from', 'O'), ('Rice', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Bowen', 'PERSON'), ('is', 'O'), ('an', 'O'), ('appraiser', 'O'), ('for', 'O'), ('Brown', 'PERSON'), (',', 'O'), ('Harris', 'PERSON'), (',', 'O'), ('Stevens', 'PERSON'), (',', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('realty', 'O'), ('company', 'O'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Horace', 'ORGANIZATION'), ('Mann', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('his', 'O'), ('mother', 'O'), (',', 'O'), ('Joan', 'PERSON'), ('Brady', 'PERSON'), ('Bowen', 'PERSON'), (',', 'O'), ('is', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('mathematics', 'O'), ('department', 'O'), (',', 'O'), ('and', 'O'), ('from', 'O'), ('Yale', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('deputy', 'O'), ('municipal', 'O'), ('director', 'O'), ('of', 'O'), ('labor', 'O'), ('relations', 'O'), ('.', 'O')), (('The', 'O'), ('engagement', 'O'), ('of', 'O'), ('Jennifer', 'PERSON'), ('Lee', 'PERSON'), ('Dyckman', 'PERSON'), ('to', 'O'), ('David', 'PERSON'), ('Stirling', 'PERSON'), ('Aldrich', 'PERSON'), ('has', 'O'), ('been', 'O'), ('announced', 'O'), ('by', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Francis', 'PERSON'), ('Hamilton', 'PERSON'), ('Dyckman', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Skillman', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('parents', 'O'), ('of', 'O'), ('the', 'O'), ('bride', 'B'), ('-', 'O'), ('to-be', 'O'), ('.', 'O'), ('Her', 'O'), ('fiance', 'O'), ('is', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Stirling', 'PERSON'), ('Aldrich', 'PERSON'), ('of', 'O'), ('Wheaton', 'LOCATION'), (',', 'O'), ('Ill.', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Dyckman', 'PERSON'), (',', 'O'), ('an', 'O'), ('editorial', 'O'), ('assistant', 'O'), ('at', 'O'), ('Crown', 'O'), ('Publishers', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Stuart', 'O'), ('Country', 'O'), ('Day', 'O'), ('School', 'O'), ('of', 'O'), ('the', 'O'), ('Sacred', 'O'), ('Heart', 'O'), ('in', 'O'), ('Princeton', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('with', 'O'), ('the', 'O'), ('class', 'O'), ('of', 'O'), (\"'82\", 'O'), ('from', 'O'), ('Princeton', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('spent', 'O'), ('a', 'O'), ('year', 'O'), ('as', 'O'), ('an', 'O'), ('American', 'ORGANIZATION'), ('Field', 'ORGANIZATION'), ('Service', 'ORGANIZATION'), ('student', 'O'), ('in', 'O'), ('Helsinki', 'LOCATION'), (',', 'O'), ('Finland', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('alumni', 'O'), ('affairs', 'O'), ('at', 'O'), ('the', 'O'), ('Lawrenceville', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('her', 'O'), ('mother', 'O'), (',', 'O'), ('Suzanne', 'PERSON'), ('Getty', 'PERSON'), ('Dyckman', 'PERSON'), (',', 'O'), ('director', 'O'), ('of', 'O'), ('development', 'O'), ('at', 'O'), ('Stuart', 'O'), ('Country', 'O'), ('Day', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Aldrich', 'PERSON'), (',', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('Princeton', 'ORGANIZATION'), (',', 'O'), ('class', 'O'), ('of', 'O'), (\"'\", 'O'), ('81', 'O'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('Administration', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('accountant', 'O'), ('with', 'O'), ('Coopers', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Lybrand', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('owner', 'O'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Tennis', 'ORGANIZATION'), ('Surfaces', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Community', 'ORGANIZATION'), ('Pools', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('concerns', 'O'), ('that', 'O'), ('build', 'O'), ('and', 'O'), ('manage', 'O'), ('recreational', 'O'), ('facilities', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('James', 'PERSON'), ('Benjamin', 'PERSON'), ('Wilbur', 'PERSON'), ('3d', 'O'), ('of', 'O'), ('Geneseo', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Manchester', 'LOCATION'), (',', 'O'), ('Vt.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Ann', 'PERSON'), ('Elizabeth', 'PERSON'), ('Wilbur', 'PERSON'), (',', 'O'), ('to', 'O'), ('Andrew', 'PERSON'), ('Houston', 'PERSON'), ('McCulloch', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Andrew', 'PERSON'), ('Carruth', 'PERSON'), ('McCulloch', 'PERSON'), ('of', 'O'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('An', 'O'), ('August', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('in', 'O'), ('the', 'O'), ('accounting', 'O'), ('department', 'O'), ('of', 'O'), ('the', 'O'), ('Telepictures', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('attended', 'O'), ('the', 'O'), ('Harley', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Rochester', 'LOCATION'), ('and', 'O'), ('graduated', 'O'), ('from', 'O'), ('Western', 'ORGANIZATION'), ('Reserve', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('in', 'O'), ('Hudson', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Mount', 'ORGANIZATION'), ('Holyoke', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('professor', 'O'), ('of', 'O'), ('philosophy', 'O'), ('at', 'O'), ('the', 'O'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('at', 'O'), ('Geneseo', 'LOCATION'), ('and', 'O'), ('executive', 'O'), ('editor', 'O'), ('of', 'O'), ('The', 'O'), ('Journal', 'O'), ('of', 'O'), ('Value', 'O'), ('Inquiry', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('McCulloch', 'PERSON'), (',', 'O'), ('a', 'O'), ('student', 'O'), ('at', 'O'), ('the', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), (',', 'O'), ('attended', 'O'), ('the', 'O'), ('Brunswick', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('graduated', 'O'), ('from', 'O'), ('Phillips', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), (',', 'O'), ('Dartmouth', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Columbia', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('director', 'O'), ('of', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Executive', 'ORGANIZATION'), ('Programs', 'ORGANIZATION'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('manager', 'O'), ('at', 'O'), ('the', 'O'), ('International', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('Machine', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (\"'s\", 'O'), ('school', 'O'), ('for', 'O'), ('international', 'O'), ('finance', 'O'), ('planning', 'O'), ('and', 'O'), ('administration', 'O'), ('in', 'O'), ('Briarcliff', 'LOCATION'), ('Manor', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('The', 'O'), ('future', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Robert', 'PERSON'), ('L.', 'PERSON'), ('Houston', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('vice', 'O'), ('president', 'O'), ('and', 'O'), ('general', 'O'), ('manager', 'O'), ('of', 'O'), ('the', 'O'), ('Tabulating', 'ORGANIZATION'), ('Machine', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Add-Index', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('-1', 'O'), ('-18', 'O'), (',', 'O'), ('2', 'O'), ('lines', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Henry', 'PERSON'), ('N.', 'PERSON'), ('Eyre', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Farmington', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Lucy', 'PERSON'), ('Hazen', 'PERSON'), ('Eyre', 'PERSON'), ('to', 'O'), ('M.', 'PERSON'), ('Bradbury', 'PERSON'), ('Marston', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Garth', 'PERSON'), ('Marston', 'PERSON'), ('of', 'O'), ('Boston', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('take', 'O'), ('place', 'O'), ('in', 'O'), ('August', 'O'), ('.', 'O'), ('Miss', 'O'), ('Eyre', 'PERSON'), ('is', 'O'), ('an', 'O'), ('office', 'O'), ('manager', 'O'), ('for', 'O'), ('Patrick', 'ORGANIZATION'), ('Nugent', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('Boston', 'LOCATION'), ('advertising', 'O'), ('agency', 'O'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('Miss', 'ORGANIZATION'), ('Porter', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('Pine', 'ORGANIZATION'), ('Manor', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Massachusetts', 'ORGANIZATION'), ('at', 'O'), ('Amherst', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('owner', 'O'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('W.', 'ORGANIZATION'), ('T.', 'ORGANIZATION'), ('Whale', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('construction', 'O'), ('concern', 'O'), ('in', 'O'), ('Wethersfield', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Barbara', 'PERSON'), ('Blount', 'PERSON'), ('Eyre', 'PERSON'), (',', 'O'), ('is', 'O'), ('co-owner', 'O'), ('of', 'O'), ('and', 'O'), ('designer', 'O'), ('for', 'O'), ('Barbara', 'PERSON'), ('Eyre', 'PERSON'), ('Limited', 'O'), ('Needlepoint', 'O'), ('and', 'O'), ('co-owner', 'O'), ('of', 'O'), ('Finitney', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('antiques', 'O'), ('store', 'O'), (',', 'O'), ('both', 'O'), ('in', 'O'), ('Farmington', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('William', 'PERSON'), ('A.', 'PERSON'), ('Blount', 'PERSON'), ('of', 'O'), ('Hope', 'LOCATION'), ('Valley', 'LOCATION'), (',', 'O'), ('N.C.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('Liggett', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Myers', 'ORGANIZATION'), ('Tobacco', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Marston', 'PERSON'), (',', 'O'), ('an', 'O'), ('investment', 'O'), ('banker', 'O'), ('with', 'O'), ('the', 'O'), ('First', 'ORGANIZATION'), ('Boston', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Georgetown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('chairman', 'O'), ('and', 'O'), ('chief', 'O'), ('executive', 'O'), ('officer', 'O'), ('of', 'O'), ('the', 'O'), ('Provident', 'O'), ('Institution', 'O'), ('for', 'O'), ('Savings', 'O'), ('in', 'O'), ('Boston', 'LOCATION'), (',', 'O'), ('was', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('Federal', 'ORGANIZATION'), ('Home', 'ORGANIZATION'), ('Loan', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('in', 'O'), ('the', 'O'), ('Ford', 'ORGANIZATION'), ('and', 'O'), ('Carter', 'PERSON'), ('Administrations', 'O'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Shirley', 'PERSON'), ('Morse', 'PERSON'), ('Marston', 'PERSON'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('a', 'O'), ('program', 'O'), ('coordinator', 'O'), ('for', 'O'), ('the', 'O'), ('Society', 'O'), ('for', 'O'), ('the', 'O'), ('Preservation', 'O'), ('of', 'O'), ('New', 'ORGANIZATION'), ('England', 'ORGANIZATION'), ('Antiquities', 'ORGANIZATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Roger', 'PERSON'), ('A.', 'PERSON'), ('Hines', 'PERSON'), ('of', 'O'), ('Greenville', 'LOCATION'), (',', 'O'), ('Del.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Diane', 'PERSON'), ('Elise', 'PERSON'), ('Hines', 'PERSON'), ('to', 'O'), ('Dr.', 'PERSON'), ('Lawrence', 'PERSON'), ('Edward', 'PERSON'), ('Kay', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('S.', 'PERSON'), ('Kay', 'PERSON'), ('of', 'O'), ('Madison', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('to', 'O'), ('take', 'O'), ('place', 'O'), ('on', 'O'), ('April', 'O'), ('28', 'O'), ('.', 'O'), ('Miss', 'O'), ('Hines', 'PERSON'), ('is', 'O'), ('a', 'O'), ('paralegal', 'O'), ('in', 'O'), ('the', 'O'), ('Washington', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Freedman', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Levy', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Kroll', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Simonds', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('Wellesley', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('attended', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('St.', 'ORGANIZATION'), ('Andrews', 'ORGANIZATION'), ('in', 'O'), ('Scotland', 'LOCATION'), ('on', 'O'), ('an', 'O'), ('International', 'ORGANIZATION'), ('Rotary', 'ORGANIZATION'), ('Foundation', 'ORGANIZATION'), ('Scholarship', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('patent', 'O'), ('lawyer', 'O'), ('for', 'O'), ('E.', 'ORGANIZATION'), ('I.', 'ORGANIZATION'), ('du', 'ORGANIZATION'), ('Pont', 'ORGANIZATION'), ('de', 'ORGANIZATION'), ('Nemours', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Wilmington', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Joanne', 'PERSON'), ('Hines', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('supervisor', 'O'), ('of', 'O'), ('psychiatric', 'O'), ('social', 'O'), ('work', 'O'), ('at', 'O'), ('the', 'O'), ('Delaware', 'LOCATION'), ('State', 'LOCATION'), ('Hospital', 'LOCATION'), ('in', 'O'), ('New', 'LOCATION'), ('Castle', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Murray', 'PERSON'), ('A.', 'PERSON'), ('Hines', 'PERSON'), ('of', 'O'), ('Orlando', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('department', 'O'), ('of', 'O'), ('chemistry', 'O'), ('at', 'O'), ('Northwestern', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Dr.', 'PERSON'), ('Kay', 'PERSON'), ('is', 'O'), ('a', 'O'), ('resident', 'O'), ('in', 'O'), ('family', 'O'), ('practice', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Margaret', 'ORGANIZATION'), ('Memorial', 'ORGANIZATION'), ('Hospital', 'ORGANIZATION'), ('in', 'O'), ('Pittsburgh', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Georgetown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('its', 'O'), ('School', 'O'), ('of', 'O'), ('Medicine', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('executive', 'O'), ('partner', 'O'), ('of', 'O'), ('Touche', 'ORGANIZATION'), (',', 'O'), ('Ross', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Jean', 'PERSON'), ('Grady', 'PERSON'), ('of', 'O'), ('Berwyn', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Nathaniel', 'PERSON'), ('C.', 'PERSON'), ('Wyeth', 'PERSON'), ('of', 'O'), ('Kennett', 'LOCATION'), ('Square', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('plan', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('in', 'O'), ('September', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Wyeth', 'PERSON'), ('retired', 'O'), ('in', 'O'), ('1976', 'O'), ('as', 'O'), ('senior', 'O'), ('engineering', 'O'), ('fellow', 'O'), ('for', 'O'), ('the', 'O'), ('Du', 'ORGANIZATION'), ('Pont', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('his', 'O'), ('contributions', 'O'), ('included', 'O'), ('the', 'O'), ('plastic', 'O'), ('container', 'O'), ('for', 'O'), ('carbonated', 'O'), ('beverages', 'O'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('N.', 'PERSON'), ('C.', 'PERSON'), ('Wyeth', 'PERSON'), (',', 'O'), ('the', 'O'), ('premier', 'O'), ('illustrator', 'O'), ('of', 'O'), ('his', 'O'), ('day', 'O'), (',', 'O'), ('who', 'O'), ('died', 'O'), ('in', 'O'), ('1945', 'O'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mrs.', 'PERSON'), ('Wyeth', 'PERSON'), ('and', 'O'), ('is', 'O'), ('the', 'O'), ('brother', 'O'), ('of', 'O'), ('the', 'O'), ('artist', 'O'), ('Andrew', 'PERSON'), ('Wyeth', 'PERSON'), ('.', 'O'), ('His', 'O'), ('sisters', 'O'), (',', 'O'), ('Henriette', 'PERSON'), ('Wyeth', 'PERSON'), ('Hurd', 'PERSON'), ('and', 'O'), ('Caroline', 'PERSON'), ('Wyeth', 'PERSON'), (',', 'O'), ('are', 'O'), ('also', 'O'), ('artists', 'O'), (',', 'O'), ('as', 'O'), ('is', 'O'), ('Andrew', 'PERSON'), ('Wyeth', 'PERSON'), (\"'s\", 'O'), ('son', 'O'), (',', 'O'), ('Jamie', 'PERSON'), ('Wyeth', 'PERSON'), ('.', 'O'), ('Nathaniel', 'PERSON'), ('Wyeth', 'PERSON'), (',', 'O'), ('the', 'O'), ('holder', 'O'), ('of', 'O'), ('some', 'O'), ('20', 'O'), ('patents', 'O'), (',', 'O'), ('retired', 'O'), ('after', 'O'), ('40', 'O'), ('years', 'O'), ('as', 'O'), ('an', 'O'), ('engineer', 'O'), ('at', 'O'), ('Du', 'ORGANIZATION'), ('Pont', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('he', 'O'), ('became', 'O'), ('the', 'O'), ('first', 'O'), ('in', 'O'), ('the', 'O'), ('company', 'O'), (\"'s\", 'O'), ('182-year', 'O'), ('history', 'O'), ('to', 'O'), ('be', 'O'), ('named', 'O'), ('a', 'O'), ('senior', 'O'), ('fellow', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Grady', 'PERSON'), ('is', 'O'), ('a', 'O'), ('development', 'O'), ('officer', 'O'), ('for', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Medicine', 'ORGANIZATION'), ('and', 'O'), ('Hospital', 'O'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('James', 'PERSON'), ('Krum', 'PERSON'), ('of', 'O'), ('Allentown', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('mechanical', 'O'), ('engineer', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Grady', 'PERSON'), ('has', 'O'), ('three', 'O'), ('sons', 'O'), ('and', 'O'), ('a', 'O'), ('daughter', 'O'), ('from', 'O'), ('a', 'O'), ('previous', 'O'), ('marriage', 'O'), (',', 'O'), ('which', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('Mr.', 'PERSON'), ('Wyeth', 'PERSON'), (',', 'O'), ('a', 'O'), ('widower', 'W'), (',', 'O'), ('has', 'O'), ('five', 'O'), ('sons', 'O'), ('.', 'O')), (('Carol', 'PERSON'), ('Rebecca', 'PERSON'), ('Brill', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Nicholas', 'PERSON'), ('Brill', 'PERSON'), ('of', 'O'), ('Bloomington', 'LOCATION'), (',', 'O'), ('Ill.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('William', 'PERSON'), ('White', 'PERSON'), ('Parish', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Eleanor', 'PERSON'), ('Graves', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Chilmark', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Parish', 'O'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Bryant', 'PERSON'), ('Kirkland', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Fifth', 'O'), ('Avenue', 'O'), ('Presbyterian', 'O'), ('Church', 'O'), ('.', 'O'), ('Rosemary', 'PERSON'), ('Brill', 'PERSON'), ('was', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('for', 'O'), ('her', 'O'), ('sister', 'O'), ('and', 'O'), ('Alexander', 'PERSON'), ('MacKenzie', 'PERSON'), ('Parish', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('for', 'O'), ('his', 'O'), ('brother', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Parish', 'O'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Boston', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Fine', 'ORGANIZATION'), ('Arts', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('director', 'O'), ('of', 'O'), ('communications', 'O'), ('for', 'O'), ('Kidder', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Peabody', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('and', 'O'), ('her', 'O'), ('mother', 'O'), (',', 'O'), ('Bonnie', 'PERSON'), ('Brill', 'PERSON'), (',', 'O'), ('are', 'O'), ('retired', 'O'), ('teachers', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Parish', 'O'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('Trinity', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Trinty', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('sales', 'O'), ('planning', 'O'), ('for', 'O'), ('the', 'O'), ('USA', 'ORGANIZATION'), ('Cable', 'ORGANIZATION'), ('Network', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('White', 'O'), ('House', 'O'), ('photo', 'O'), ('editor', 'O'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), ('is', 'O'), ('a', 'O'), ('former', 'O'), ('executive', 'O'), ('editor', 'O'), ('of', 'O'), ('Life', 'ORGANIZATION'), ('Magazine', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('stepfather', 'O'), (',', 'O'), ('Ralph', 'PERSON'), ('A.', 'PERSON'), ('Graves', 'PERSON'), (',', 'O'), ('recently', 'O'), ('retired', 'O'), ('as', 'O'), ('editorial', 'O'), ('director', 'O'), ('of', 'O'), ('Time', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('.', 'O')), (('Christine', 'PERSON'), ('Hilary', 'PERSON'), ('Goban', 'PERSON'), ('and', 'O'), ('Andrew', 'PERSON'), ('Seth', 'PERSON'), ('Black', 'PERSON'), (',', 'O'), ('both', 'O'), ('lawyers', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('were', 'O'), ('married', 'O'), ('yesterday', 'O'), ('at', 'O'), ('the', 'O'), ('C.', 'ORGANIZATION'), ('W.', 'ORGANIZATION'), ('Post', 'ORGANIZATION'), ('Chapel', 'ORGANIZATION'), ('in', 'O'), ('Greenvale', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('Rabbi', 'R'), ('Nathaniel', 'PERSON'), ('Schwartz', 'PERSON'), ('and', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Paul', 'PERSON'), ('Ruggiero', 'PERSON'), (',', 'O'), ('a', 'O'), ('Roman', 'O'), ('Catholic', 'O'), ('priest', 'R'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Black', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Francis', 'PERSON'), ('T.', 'PERSON'), ('Goban', 'PERSON'), ('of', 'O'), ('Hicksville', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Marquette', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Black', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Jerome', 'PERSON'), ('Black', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('at', 'O'), ('Oneonta', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('Ohio', 'ORGANIZATION'), ('Northern', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('.', 'O')), (('-2', 'O'), ('-18', 'O'), ('Dr.', 'PERSON'), ('Alice', 'PERSON'), ('Olga', 'PERSON'), ('Johnson', 'PERSON'), (',', 'O'), ('a', 'O'), ('fellow', 'O'), ('in', 'O'), ('digestive', 'O'), ('diseases', 'O'), ('at', 'O'), ('Emory', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Hospital', 'ORGANIZATION'), ('in', 'O'), ('Atlanta', 'LOCATION'), (',', 'O'), ('plans', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('in', 'O'), ('May', 'O'), ('to', 'O'), ('Dr.', 'PERSON'), ('David', 'PERSON'), ('Abba', 'PERSON'), ('Krendel', 'PERSON'), (',', 'O'), ('a', 'O'), ('resident', 'O'), ('in', 'O'), ('neurology', 'O'), ('at', 'O'), ('the', 'O'), ('same', 'O'), ('hospital', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Carl', 'PERSON'), ('Ludwig', 'PERSON'), ('Johnson', 'PERSON'), ('of', 'O'), ('Danville', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('who', 'O'), ('has', 'O'), ('announced', 'O'), ('her', 'O'), ('engagement', 'O'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Johnson', 'PERSON'), ('.', 'O'), ('Her', 'O'), ('fiance', 'O'), ('is', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Ezra', 'PERSON'), ('Simon', 'PERSON'), ('Krendel', 'PERSON'), ('of', 'O'), ('Swarthmore', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Elizabeth', 'PERSON'), ('M.', 'PERSON'), ('Krendel', 'PERSON'), ('.', 'O'), ('Dr.', 'PERSON'), ('Johnson', 'PERSON'), (',', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('Sweet', 'ORGANIZATION'), ('Briar', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('an', 'O'), ('M.S.', 'O'), ('degree', 'O'), ('in', 'O'), ('pharmacology', 'O'), ('from', 'O'), ('Pennsylvania', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Temple', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Medicine', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('completed', 'O'), ('her', 'O'), ('residency', 'O'), ('in', 'O'), ('internal', 'O'), ('medicine', 'O'), ('at', 'O'), ('Emory', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Hospital', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Mary', 'PERSON'), ('Simington', 'PERSON'), ('Johnson', 'PERSON'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('head', 'O'), ('librarian', 'O'), ('at', 'O'), ('the', 'O'), ('Himmelreich', 'O'), ('Memorial', 'O'), ('Library', 'O'), ('in', 'O'), ('Lewisburg', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('head', 'O'), ('of', 'O'), ('the', 'O'), ('analytical', 'O'), ('laboratory', 'O'), ('and', 'O'), ('director', 'O'), ('of', 'O'), ('instrumental', 'O'), ('analysis', 'O'), ('for', 'O'), ('Du', 'ORGANIZATION'), ('Pont', 'ORGANIZATION'), (\"'s\", 'O'), ('eastern', 'O'), ('laboratory', 'O'), ('in', 'O'), ('Gibbstown', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('The', 'O'), ('future', 'O'), ('bridegroom', 'G'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('his', 'O'), ('father', 'O'), ('is', 'O'), ('professor', 'O'), ('of', 'O'), ('statistics', 'O'), ('and', 'O'), ('operations', 'O'), ('research', 'O'), ('at', 'O'), ('the', 'O'), ('Wharton', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.D.', 'O'), ('degree', 'O'), ('from', 'O'), ('Hahnemann', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), ('was', 'O'), ('the', 'O'), ('children', 'O'), (\"'s\", 'O'), ('librarian', 'O'), ('at', 'O'), ('the', 'O'), ('Jordan', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Oxford', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), ('.', 'O')), (('-2', 'O'), ('-18', 'O'), ('Pamela', 'PERSON'), ('Stewart', 'PERSON'), ('Whiteman', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('H.', 'PERSON'), ('Clifton', 'PERSON'), ('Whiteman', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Douglas', 'PERSON'), ('J.', 'PERSON'), ('Dayton', 'PERSON'), ('of', 'O'), ('Wayzata', 'LOCATION'), (',', 'O'), ('Minn.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('in', 'O'), ('Manhattan', 'LOCATION'), ('yesterday', 'O'), ('to', 'O'), ('Gordon', 'PERSON'), ('Herron', 'PERSON'), ('Ritz', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('Ritz', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Drew', 'PERSON'), ('C.', 'PERSON'), ('Simonson', 'PERSON'), (',', 'O'), ('both', 'O'), ('of', 'O'), ('Wayzata', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Charles', 'PERSON'), ('Amstein', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Madison', 'O'), ('Avenue', 'O'), ('Presbyterian', 'O'), ('Church', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Ritz', 'PERSON'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('at', 'O'), ('Harold', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('Minneapolis', 'LOCATION'), ('fashion', 'O'), ('shop', 'O'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Breck', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Minneapolis', 'LOCATION'), ('and', 'O'), ('Bowdoin', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('previous', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Bank', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Tokyo', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('George', 'PERSON'), ('H.', 'PERSON'), ('McNeeley', 'PERSON'), ('of', 'O'), ('Philadelphia', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Howard', 'PERSON'), ('N.', 'PERSON'), ('Deyo', 'PERSON'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('counsel', 'O'), ('to', 'O'), ('W.', 'ORGANIZATION'), ('R.', 'ORGANIZATION'), ('Grace', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Mayor', 'O'), ('of', 'O'), ('Montclair', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('ComRad', 'ORGANIZATION'), ('Broadcasting', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Minneapolis', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Roy', 'PERSON'), ('E.', 'PERSON'), ('Larsen', 'PERSON'), ('of', 'O'), ('John', 'PERSON'), (\"'s\", 'O'), ('Island', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Siasconset', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Larsen', 'PERSON'), (',', 'O'), ('former', 'O'), ('president', 'O'), ('of', 'O'), ('Time', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('also', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Charles', 'PERSON'), ('Ritz', 'PERSON'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('board', 'O'), ('of', 'O'), ('International', 'ORGANIZATION'), ('Multifoods', 'ORGANIZATION'), (',', 'O'), ('Minneapolis', 'LOCATION'), ('.', 'O')), (('-2', 'O'), ('-14', 'O'), ('Margaret', 'PERSON'), ('Ann', 'PERSON'), ('Boisselle', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Charles', 'PERSON'), ('E.', 'PERSON'), ('Boisselle', 'PERSON'), ('of', 'O'), ('Little', 'LOCATION'), ('Neck', 'LOCATION'), (',', 'O'), ('Queens', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Donald', 'PERSON'), ('Groves', 'PERSON'), ('Magill', 'PERSON'), ('3d', 'O'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Magill', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Hanover', 'LOCATION'), (',', 'O'), ('N.H.', 'LOCATION'), ('The', 'O'), ('Rev.', 'R'), ('Kenneth', 'PERSON'), ('B.', 'PERSON'), ('Swanson', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('Grace', 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('known', 'O'), ('as', 'O'), ('Peggy', 'PERSON'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('associate', 'O'), ('with', 'O'), ('BEWI', 'ORGANIZATION'), ('productions', 'O'), (',', 'O'), ('sports', 'O'), ('promoters', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Katharine', 'ORGANIZATION'), ('Gibbs', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('attends', 'O'), ('Pace', 'O'), ('University', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('CEB', 'ORGANIZATION'), ('Realty', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Little', 'LOCATION'), ('Neck', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('McGill', 'PERSON'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('known', 'O'), ('as', 'O'), ('Scott', 'PERSON'), (',', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('international', 'O'), ('financial', 'O'), ('systems', 'O'), ('at', 'O'), ('the', 'O'), ('J.', 'ORGANIZATION'), ('Walter', 'ORGANIZATION'), ('Thompson', 'ORGANIZATION'), ('advertising', 'O'), ('agency', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Lafayette', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Chicago', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('consultant', 'O'), ('to', 'O'), ('the', 'O'), ('specialty', 'O'), ('paper', 'O'), ('industry', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('former', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Riegel', 'ORGANIZATION'), ('Paper', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('of', 'O'), ('Hollingsworth', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Vose', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('paper', 'O'), ('company', 'O'), ('in', 'O'), ('East', 'LOCATION'), ('Walpole', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Samuel', 'PERSON'), ('E.', 'PERSON'), ('McGill', 'PERSON'), ('of', 'O'), ('Chicago', 'LOCATION'), ('.', 'O')), (('Wendy', 'PERSON'), ('Joan', 'PERSON'), ('Pollard', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('A.', 'PERSON'), ('Pollard', 'PERSON'), ('of', 'O'), ('Devon', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Kurt', 'PERSON'), ('Parant', 'PERSON'), ('Metzger', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Jeanne', 'PERSON'), ('C.', 'PERSON'), ('Metzger', 'PERSON'), ('of', 'O'), ('Rumson', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Samuel', 'PERSON'), ('Metzger', 'PERSON'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Dr.', 'PERSON'), ('C.', 'PERSON'), ('Vincent', 'PERSON'), ('Wilson', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Presbyterian', 'LOCATION'), ('Church', 'LOCATION'), ('of', 'LOCATION'), ('Chestnut', 'LOCATION'), ('Hill', 'LOCATION'), ('in', 'O'), ('Philadelphia', 'LOCATION'), ('.', 'O'), ('Edith', 'PERSON'), ('C.', 'PERSON'), ('Pollard', 'PERSON'), ('was', 'O'), ('her', 'O'), ('sister', 'O'), (\"'s\", 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('.', 'O'), ('Steven', 'PERSON'), ('L.', 'PERSON'), ('Metzger', 'PERSON'), ('was', 'O'), ('his', 'O'), ('brother', 'O'), (\"'s\", 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('the', 'O'), ('Shipley', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Bryn', 'LOCATION'), ('Mawr', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Brown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('public', 'O'), ('information', 'O'), ('coordinator', 'O'), ('for', 'O'), ('the', 'O'), ('Pennsylvania', 'LOCATION'), ('Academy', 'O'), ('of', 'O'), ('the', 'O'), ('Fine', 'O'), ('Arts', 'O'), ('in', 'O'), ('Philadelphia', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('and', 'O'), ('chief', 'O'), ('executive', 'O'), ('officer', 'O'), ('of', 'O'), ('the', 'O'), ('Reliance', 'ORGANIZATION'), ('Insurance', 'ORGANIZATION'), ('Companies', 'ORGANIZATION'), ('in', 'O'), ('Philadelphia', 'LOCATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Metzger', 'PERSON'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Albert', 'PERSON'), ('Ashworth', 'PERSON'), ('Pollard', 'PERSON'), ('of', 'O'), ('Wellesley', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('director', 'O'), ('of', 'O'), ('education', 'O'), ('for', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('Humane', 'ORGANIZATION'), ('Society', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), (',', 'O'), ('and', 'O'), ('a', 'O'), ('great', 'O'), ('-', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Samuel', 'PERSON'), ('Pew', 'PERSON'), ('Jones', 'PERSON'), ('of', 'O'), ('Haddonfield', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('Speaker', 'O'), ('of', 'O'), ('the', 'O'), ('House', 'O'), ('of', 'O'), ('New', 'LOCATION'), ('Jersey', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('descendant', 'O'), ('of', 'O'), ('Thomas', 'PERSON'), ('M.', 'PERSON'), ('Waller', 'PERSON'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('Governor', 'O'), ('of', 'O'), ('Connecticut', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Metzger', 'PERSON'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('credit', 'O'), ('analyst', 'O'), ('with', 'O'), ('the', 'O'), ('Provident', 'ORGANIZATION'), ('National', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('in', 'O'), ('Philadelphia', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('Choate', 'PERSON'), ('Rosemary', 'PERSON'), ('Hall', 'PERSON'), ('and', 'O'), ('Brown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('president', 'O'), ('of', 'O'), ('Samuel', 'ORGANIZATION'), ('Metzger', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('risk-management', 'O'), ('firm', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('-2', 'O'), ('-14', 'O'), ('Elizabeth', 'PERSON'), ('Ann', 'PERSON'), ('Reid', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('the', 'O'), ('Rev.', 'R'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Roddey', 'PERSON'), ('Reid', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('Haven', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Donald', 'PERSON'), ('Lee', 'PERSON'), ('Maruska', 'PERSON'), ('were', 'O'), ('married', 'O'), ('yesterday', 'O'), ('in', 'O'), ('St.', 'LOCATION'), ('Bartholomew', 'LOCATION'), (\"'s\", 'LOCATION'), ('Church', 'LOCATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('where', 'O'), ('the', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('father', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('F.', 'PERSON'), ('Maruska', 'PERSON'), ('of', 'O'), ('Des', 'LOCATION'), ('Plaines', 'LOCATION'), (',', 'O'), ('Ill.', 'LOCATION'), ('.', 'O'), ('Edmond', 'PERSON'), ('Trainor', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Maruska', 'PERSON'), (',', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('in', 'O'), ('the', 'O'), ('San', 'LOCATION'), ('Francisco', 'LOCATION'), ('office', 'O'), ('of', 'O'), ('John', 'ORGANIZATION'), ('Nuveen', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('investment', 'O'), ('bankers', 'O'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Smith', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Massachusetts', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('research', 'O'), ('fellow', 'O'), ('at', 'O'), ('the', 'O'), ('Yale', 'ORGANIZATION'), ('Divinity', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('recently', 'O'), ('retired', 'O'), ('as', 'O'), ('executive', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('national', 'O'), ('deployment', 'O'), ('office', 'O'), ('of', 'O'), ('the', 'O'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('which', 'O'), ('arranges', 'O'), ('staffing', 'O'), ('of', 'O'), ('church', 'O'), ('programs', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Maruska', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('joint', 'O'), ('M.B.A.', 'O'), ('and', 'O'), ('law', 'O'), ('degree', 'O'), ('from', 'O'), ('Stanford', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('broker', 'O'), ('services', 'O'), ('of', 'O'), ('Trade', 'O'), ('Plus', 'O'), ('in', 'O'), ('Palo', 'LOCATION'), ('Alto', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('chief', 'O'), ('electrician', 'O'), ('of', 'O'), ('Contour', 'O'), ('Saws', 'O'), ('in', 'O'), ('Des', 'LOCATION'), ('Plaines', 'LOCATION'), ('.', 'O')), (('Alixe', 'PERSON'), ('Reed', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Adrian', 'PERSON'), ('P.', 'PERSON'), ('Reed', 'PERSON'), ('of', 'O'), ('Centreville', 'LOCATION'), (',', 'O'), ('Md.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Ariane', 'PERSON'), ('Wellin', 'PERSON'), ('of', 'O'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('plans', 'O'), ('to', 'O'), ('marry', 'O'), ('Robert', 'PERSON'), ('Maxwell', 'PERSON'), ('Glen', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Dulaney', 'PERSON'), ('Glen', 'PERSON'), ('of', 'O'), ('Pfafftown', 'LOCATION'), (',', 'O'), ('N.C.', 'LOCATION'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('to', 'O'), ('be', 'O'), ('in', 'O'), ('May', 'O'), ('.', 'O'), ('Miss', 'O'), ('Reed', 'O'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Greenwich', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('and', 'O'), ('Hollins', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('deputy', 'O'), ('press', 'O'), ('secretary', 'O'), ('to', 'O'), ('Vice', 'O'), ('President', 'O'), ('Bush', 'PERSON'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('formerly', 'O'), ('an', 'O'), ('investment', 'O'), ('banker', 'O'), ('with', 'O'), ('White', 'ORGANIZATION'), ('Weld', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('raises', 'O'), ('soybeans', 'O'), ('and', 'O'), ('corn', 'O'), ('in', 'O'), ('Centreville', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('granddughter', 'O'), ('of', 'O'), ('Permelia', 'ORGANIZATION'), ('Reed', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Hobe', 'ORGANIZATION'), ('Sound', 'ORGANIZATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Joseph', 'PERSON'), ('Verner', 'PERSON'), ('Reed', 'PERSON'), (',', 'O'), ('a', 'O'), ('theatrical', 'O'), ('entrepreneur', 'O'), (',', 'O'), ('diplomat', 'O'), (',', 'O'), ('newspaper', 'O'), ('reporter', 'O'), (',', 'O'), ('author', 'O'), (',', 'O'), ('a', 'O'), ('founder', 'O'), ('of', 'O'), ('the', 'O'), ('American', 'O'), ('Shakespeare', 'O'), ('Theater', 'O'), ('in', 'O'), ('Stratford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('a', 'O'), ('leading', 'O'), ('patron', 'O'), ('of', 'O'), ('the', 'O'), ('American', 'O'), ('stage', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Glen', 'PERSON'), (',', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('Phillips', 'ORGANIZATION'), ('Exeter', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('North', 'ORGANIZATION'), ('Carolina', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('syndicated', 'O'), ('columnist', 'O'), ('for', 'O'), ('the', 'O'), ('Field', 'ORGANIZATION'), ('Newspaper', 'ORGANIZATION'), ('Syndicate', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('physician', 'O'), ('.', 'O')), (('-1', 'O'), ('-18', 'O'), (',', 'O'), ('2', 'O'), ('lines', 'O'), ('Ruth', 'PERSON'), ('Passow', 'PERSON'), (',', 'O'), ('a', 'O'), ('physician', 'O'), (\"'s\", 'O'), ('assistant', 'O'), ('in', 'O'), ('orthopedic', 'O'), ('surgery', 'O'), ('at', 'O'), ('the', 'O'), ('Brigham', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Women', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('Hospital', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), (',', 'O'), ('plans', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('April', 'O'), ('1', 'O'), ('to', 'O'), ('Dr.', 'PERSON'), ('Richard', 'PERSON'), ('Warburg', 'PERSON'), (',', 'O'), ('a', 'O'), ('researcher', 'O'), ('in', 'O'), ('microbial', 'O'), ('genetics', 'O'), ('at', 'O'), ('the', 'O'), ('Rosensteil', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('for', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('Research', 'ORGANIZATION'), ('at', 'O'), ('Brandeis', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('A.', 'PERSON'), ('Harry', 'PERSON'), ('Passow', 'PERSON'), ('of', 'O'), ('Englewood', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('who', 'O'), ('have', 'O'), ('announced', 'O'), ('her', 'O'), ('engagement', 'O'), ('to', 'O'), ('Dr.', 'PERSON'), ('Warburg', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Jeremy', 'PERSON'), ('Warburg', 'PERSON'), ('of', 'O'), ('Godney', 'LOCATION'), (',', 'O'), ('England', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Passow', 'PERSON'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Rochester', 'ORGANIZATION'), ('and', 'O'), ('completed', 'O'), ('the', 'O'), ('physician', 'O'), (\"'s\", 'O'), ('assistant', 'O'), ('program', 'O'), ('at', 'O'), ('Yale', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('Jacob', 'PERSON'), ('H.', 'PERSON'), ('Schiff', 'PERSON'), ('Professor', 'O'), ('of', 'O'), ('Education', 'O'), ('at', 'O'), ('Teachers', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Shirley', 'PERSON'), ('S.', 'PERSON'), ('Passow', 'PERSON'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('urban', 'O'), ('planner', 'O'), ('and', 'O'), ('special', 'O'), ('assistant', 'O'), ('to', 'O'), ('the', 'O'), ('First', 'O'), ('Deputy', 'O'), ('Commissioner', 'O'), ('of', 'O'), ('Finance', 'O'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('City', 'LOCATION'), ('.', 'O'), ('Dr.', 'PERSON'), ('Warburg', 'PERSON'), ('received', 'O'), ('a', 'O'), ('bachelor', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('and', 'O'), ('a', 'O'), ('doctorate', 'O'), ('in', 'O'), ('molecular', 'O'), ('biology', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Birmingham', 'ORGANIZATION'), (',', 'O'), ('England', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('novelist', 'O'), (',', 'O'), ('and', 'O'), ('his', 'O'), ('mother', 'O'), (',', 'O'), ('Tessa', 'PERSON'), ('Warburg', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('designer', 'O'), ('and', 'O'), ('author', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Warburg', 'PERSON'), ('are', 'O'), ('also', 'O'), ('owners', 'O'), ('of', 'O'), ('the', 'O'), ('Thorn', 'ORGANIZATION'), ('Press', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('book', 'O'), ('publisher', 'O'), ('.', 'O')), (('-1', 'O'), ('-14', 'O'), (',', 'O'), ('2', 'O'), ('lines', 'O'), ('Announcement', 'O'), ('has', 'O'), ('been', 'O'), ('made', 'O'), ('by', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Frederick', 'PERSON'), ('V.', 'PERSON'), ('Chaplen', 'PERSON'), ('of', 'O'), ('Farmington', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('of', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Dawn', 'PERSON'), ('Marie', 'PERSON'), ('Chaplen', 'PERSON'), ('to', 'O'), ('Mark', 'PERSON'), ('Edward', 'PERSON'), ('Donovan', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('G.', 'PERSON'), ('Donovan', 'PERSON'), ('of', 'O'), ('Armonk', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('to', 'O'), ('take', 'O'), ('place', 'O'), ('May', 'O'), ('5', 'O'), ('.', 'O'), ('Miss', 'O'), ('Chaplen', 'O'), (',', 'O'), ('a', 'O'), ('financial', 'O'), ('planner', 'O'), ('with', 'O'), ('Mason', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), ('in', 'O'), ('Vienna', 'LOCATION'), (',', 'O'), ('Va.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Russell', 'ORGANIZATION'), ('Sage', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('account', 'O'), ('consultant', 'O'), ('at', 'O'), ('the', 'O'), ('Aetna', 'ORGANIZATION'), ('Life', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Casualty', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Hartford', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Donovan', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Rensselaer', 'ORGANIZATION'), ('Polytechnic', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('financial', 'O'), ('analyst', 'O'), ('for', 'O'), ('Kaplan', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Smith', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('vice', 'O'), ('president', 'O'), (',', 'O'), ('marketing', 'O'), ('and', 'O'), ('refining', 'O'), ('division', 'O'), (',', 'O'), ('of', 'O'), ('the', 'O'), ('Mobil', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('.', 'O')), (('-2', 'O'), ('-14', 'O'), ('The', 'O'), ('marriage', 'O'), ('of', 'O'), ('Dreux', 'PERSON'), ('Noel', 'PERSON'), ('Dubin', 'PERSON'), (',', 'O'), ('an', 'O'), ('associate', 'O'), ('merchandise', 'O'), ('manager', 'O'), ('at', 'O'), ('R.', 'ORGANIZATION'), ('H.', 'ORGANIZATION'), ('Macy', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('to', 'O'), ('Richard', 'PERSON'), ('John', 'PERSON'), ('Claiden', 'PERSON'), (',', 'O'), ('an', 'O'), ('assistant', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Manufacturers', 'ORGANIZATION'), ('Hanover', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('took', 'O'), ('place', 'O'), ('yesterday', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Daniel', 'PERSON'), ('Cassiero', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('in', 'O'), ('the', 'O'), ('Lady', 'O'), ('Chapel', 'O'), ('at', 'O'), ('St.', 'LOCATION'), ('Patrick', 'LOCATION'), (\"'s\", 'O'), ('Cathedral', 'O'), ('.', 'O'), ('Marcella', 'PERSON'), ('K.', 'PERSON'), ('Lilly', 'PERSON'), ('was', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('for', 'O'), ('the', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Wilbert', 'PERSON'), ('Bernard', 'PERSON'), ('Dubin', 'PERSON'), ('of', 'O'), ('Philadelphia', 'LOCATION'), ('and', 'O'), ('Stamford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Jacqueline', 'PERSON'), ('Dubin', 'PERSON'), ('.', 'O'), ('Simon', 'PERSON'), ('J.', 'PERSON'), ('Claiden', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('for', 'O'), ('his', 'O'), ('brother', 'O'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('Edward', 'PERSON'), ('Claiden', 'PERSON'), ('of', 'O'), ('Salfords', 'LOCATION'), (',', 'O'), ('England', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Convent', 'O'), ('of', 'O'), ('the', 'O'), ('Sacred', 'O'), ('Heart', 'O'), ('in', 'O'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Georgetown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('manager', 'O'), ('for', 'O'), ('the', 'O'), ('Pep', 'ORGANIZATION'), ('Boys', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('automotive', 'O'), ('parts', 'O'), ('chain', 'O'), ('in', 'O'), ('Philadelphia', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Claiden', 'PERSON'), (',', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('Reigate', 'O'), ('-LRB-', 'O'), ('Surrey', 'ORGANIZATION'), ('-RRB-', 'O'), ('Grammar', 'O'), ('School', 'O'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('London', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('finance', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Lancaster', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('chartered', 'O'), ('acountant', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('marketing', 'O'), ('manager', 'O'), ('for', 'O'), ('British', 'ORGANIZATION'), ('Airways', 'ORGANIZATION'), ('.', 'O')), (('Constance', 'PERSON'), ('Merwin', 'PERSON'), ('Shattuck', 'PERSON'), ('and', 'O'), ('Kenneth', 'PERSON'), ('J.', 'PERSON'), ('Kolman', 'PERSON'), ('were', 'O'), ('married', 'O'), ('yesterday', 'O'), ('at', 'O'), ('the', 'O'), ('Harvard', 'ORGANIZATION'), ('Club', 'ORGANIZATION'), ('on', 'O'), ('Commonwealth', 'LOCATION'), ('Avenue', 'LOCATION'), ('in', 'O'), ('Boston', 'LOCATION'), ('by', 'O'), ('Rabbi', 'R'), ('Albert', 'PERSON'), ('Axelrad', 'PERSON'), ('.', 'O'), ('Hilary', 'PERSON'), ('L.', 'PERSON'), ('Kolman', 'PERSON'), (',', 'O'), ('the', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('13-year-old', 'O'), ('daughter', 'O'), (',', 'O'), ('and', 'O'), ('her', 'O'), ('14-year-old', 'O'), ('brother', 'O'), (',', 'O'), ('Michael', 'PERSON'), ('A.', 'PERSON'), ('Kolman', 'PERSON'), (',', 'O'), ('were', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('and', 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('3-year-old', 'O'), ('niece', 'O'), (',', 'O'), ('Michaela', 'PERSON'), ('A.', 'PERSON'), ('Shattuck', 'PERSON'), (',', 'O'), ('was', 'O'), ('flower', 'O'), ('girl', 'O'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), (',', 'O'), ('as', 'O'), ('did', 'O'), ('the', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('H.', 'PERSON'), ('Morgan', 'PERSON'), ('Shattuck', 'PERSON'), ('of', 'O'), ('Ho-Ho-Kus', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Endicott', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('president', 'O'), ('and', 'O'), ('chief', 'O'), ('executive', 'O'), ('officer', 'O'), ('of', 'O'), ('the', 'O'), ('Frank', 'ORGANIZATION'), ('G.', 'ORGANIZATION'), ('Shattuck', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('operators', 'O'), ('of', 'O'), ('Schrafft', 'PERSON'), (\"'s\", 'O'), ('restaurants', 'O'), ('and', 'O'), ('confectioneries', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Kolman', 'PERSON'), ('is', 'O'), ('a', 'O'), ('great', 'O'), ('-', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('Frank', 'PERSON'), ('G.', 'PERSON'), ('Shattuck', 'PERSON'), (',', 'O'), ('founder', 'O'), ('of', 'O'), ('the', 'O'), ('company', 'O'), (',', 'O'), ('and', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('G.', 'PERSON'), ('Shattuck', 'PERSON'), ('of', 'O'), ('Pelham', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Kolman', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Bernard', 'PERSON'), ('J.', 'PERSON'), ('Kolman', 'PERSON'), ('of', 'O'), ('Newton', 'LOCATION'), ('Centre', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Boston', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('accountant', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Sanford', 'PERSON'), ('G.', 'PERSON'), ('Scheller', 'PERSON'), ('of', 'O'), ('Wilton', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Frances', 'PERSON'), ('Aileen', 'PERSON'), ('Scheller', 'PERSON'), (',', 'O'), ('to', 'O'), ('Mark', 'PERSON'), ('Steven', 'PERSON'), ('Lavin', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Marcelino', 'PERSON'), ('E.', 'PERSON'), ('Lavin', 'PERSON'), (',', 'O'), ('also', 'O'), ('of', 'O'), ('Wilton', 'PERSON'), ('.', 'O'), ('A', 'O'), ('June', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('St.', 'ORGANIZATION'), ('Regis', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('West', 'LOCATION'), ('Nyack', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION')), (('Beth', 'PERSON'), ('Littman', 'PERSON'), ('Affianced', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Irwin', 'PERSON'), ('Littman', 'PERSON'), ('of', 'O'), ('Merrick', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Beth', 'PERSON'), ('Pamela', 'PERSON'), ('Littman', 'PERSON'), ('to', 'O'), ('Maury', 'PERSON'), ('Bryan', 'PERSON'), ('Josephson', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Meyer', 'PERSON'), ('Josephson', 'PERSON'), ('of', 'O'), ('Tucson', 'LOCATION'), (',', 'O'), ('Ariz.', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Littman', 'PERSON'), (',', 'O'), ('a', 'O'), ('personnel', 'O'), ('coordinator', 'O'), ('with', 'O'), ('the', 'O'), ('Dell', 'ORGANIZATION'), ('Publishing', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Cornell', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('as', 'O'), ('did', 'O'), ('her', 'O'), ('fiance', 'O'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('second-year', 'O'), ('student', 'O'), ('at', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Chicago', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('M.', 'PERSON'), ('McLane', 'PERSON'), ('of', 'O'), ('Locust', 'LOCATION'), ('Valley', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Cornelia', 'PERSON'), ('Gibb', 'PERSON'), ('McLane', 'PERSON'), (',', 'O'), ('to', 'O'), ('William', 'PERSON'), ('Wulfhorst', 'PERSON'), ('Burchfield', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('H.', 'PERSON'), ('Burchfield', 'PERSON'), ('of', 'O'), ('Hopewell', 'ORGANIZATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('June', 'O'), ('.', 'O'), ('Miss', 'O'), ('McLane', 'PERSON'), (',', 'O'), ('a', 'O'), ('sales', 'O'), ('promotion', 'O'), ('associate', 'O'), ('with', 'O'), ('Doubleday', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Miss', 'ORGANIZATION'), ('Porter', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Trinity', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Hartford', 'LOCATION'), (',', 'O'), ('having', 'O'), ('studied', 'O'), ('during', 'O'), ('the', 'O'), ('junior', 'O'), ('year', 'O'), ('at', 'O'), ('the', 'O'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('European', 'ORGANIZATION'), ('Studies', 'ORGANIZATION'), ('in', 'O'), ('Vienna', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('was', 'O'), ('presented', 'O'), ('at', 'O'), ('the', 'O'), ('Debutante', 'O'), ('Cotillion', 'O'), ('and', 'O'), ('Christmas', 'O'), ('Ball', 'O'), ('and', 'O'), ('was', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('Junior', 'ORGANIZATION'), ('Assembly', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Marsh', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('McLennan', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Schuyler', 'PERSON'), ('Merritt', 'PERSON'), ('2d', 'O'), ('of', 'O'), ('Cedarhurst', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('Reciprocal', 'ORGANIZATION'), ('Managers', 'ORGANIZATION'), ('and', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('board', 'O'), ('of', 'O'), ('the', 'O'), ('Commerce', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Industry', 'ORGANIZATION'), ('Insurance', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('both', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Burchfield', 'PERSON'), (',', 'O'), ('a', 'O'), ('trader', 'O'), ('in', 'O'), ('the', 'O'), ('institutional', 'O'), ('equity', 'O'), ('division', 'O'), ('of', 'O'), ('Donaldson', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Lufkin', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Jenrette', 'ORGANIZATION'), ('Securities', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Lawrenceville', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Middlebury', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('an', 'O'), ('oral', 'O'), ('and', 'O'), ('maxillofacial', 'O'), ('surgeon', 'O'), ('in', 'O'), ('Princeton', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('is', 'O'), ('president', 'O'), ('and', 'O'), ('trustee', 'O'), ('of', 'O'), ('the', 'O'), ('medical', 'O'), ('and', 'O'), ('dental', 'O'), ('staff', 'O'), ('of', 'O'), ('the', 'O'), ('Medical', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('in', 'O'), ('Princeton', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION')), (('Pamela', 'PERSON'), ('Susan', 'PERSON'), ('Fliegel', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('M.', 'PERSON'), ('Fliegel', 'PERSON'), ('of', 'O'), ('Floral', 'LOCATION'), ('Park', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('James', 'PERSON'), ('Francis', 'PERSON'), ('Waldron', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('J.', 'PERSON'), ('Waldron', 'PERSON'), ('of', 'O'), ('Upper', 'LOCATION'), ('Montclair', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('Canon', 'O'), ('Richard', 'PERSON'), ('McCall', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('in', 'O'), ('the', 'O'), ('Episcopal', 'O'), ('Cathedral', 'O'), ('of', 'O'), ('the', 'O'), ('Incarnation', 'O'), ('in', 'O'), ('Garden', 'LOCATION'), ('City', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('assisted', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Dennis', 'PERSON'), ('Cocozza', 'PERSON'), (',', 'O'), ('a', 'O'), ('Roman', 'O'), ('Catholic', 'O'), ('priest', 'R'), ('.', 'O'), ('Kathryn', 'PERSON'), ('Lynn', 'PERSON'), ('Fliegel', 'PERSON'), ('was', 'O'), ('her', 'O'), ('sister', 'O'), (\"'s\", 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('.', 'O'), ('Craig', 'PERSON'), ('Thomas', 'PERSON'), ('Waldron', 'PERSON'), ('was', 'O'), ('his', 'O'), ('brother', 'O'), (\"'s\", 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('The', 'O'), ('couple', 'O'), ('are', 'O'), ('graduates', 'O'), ('of', 'O'), ('Fairfield', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Waldron', 'PERSON'), ('is', 'O'), ('a', 'O'), ('field', 'O'), ('director', 'O'), ('for', 'O'), ('Lieberman', 'ORGANIZATION'), ('Research', 'ORGANIZATION'), ('East', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('opinion', 'O'), ('polling', 'O'), ('concern', 'O'), ('in', 'O'), ('Great', 'LOCATION'), ('Neck', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('manager', 'O'), ('of', 'O'), ('purchasingpackaging', 'O'), ('for', 'O'), ('the', 'O'), ('Canada', 'ORGANIZATION'), ('Dry', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Waldron', 'PERSON'), (',', 'O'), ('an', 'O'), ('administrator', 'O'), ('in', 'O'), ('financial', 'O'), ('services', 'O'), ('for', 'O'), ('the', 'O'), ('First', 'ORGANIZATION'), ('Jersey', 'ORGANIZATION'), ('National', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('in', 'O'), ('Jersey', 'LOCATION'), ('City', 'LOCATION'), (',', 'O'), ('is', 'O'), ('studying', 'O'), ('for', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('finance', 'O'), ('at', 'O'), ('Fairleigh', 'ORGANIZATION'), ('Dickinson', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('pediatrician', 'O'), ('in', 'O'), ('Upper', 'LOCATION'), ('Montclair', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('G.', 'PERSON'), ('Congdon', 'PERSON'), ('of', 'O'), ('Oakland', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Lynn', 'PERSON'), ('Louise', 'PERSON'), ('Congdon', 'PERSON'), (',', 'O'), ('to', 'O'), ('Paul', 'PERSON'), ('Randelman', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Arthur', 'PERSON'), ('Randelman', 'PERSON'), ('of', 'O'), ('Trenton', 'LOCATION'), ('and', 'O'), ('Atlantic', 'LOCATION'), ('City', 'LOCATION'), ('.', 'O'), ('An', 'O'), ('April', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('Miss', 'O'), ('Congdon', 'PERSON'), ('is', 'O'), ('the', 'O'), ('facilities', 'O'), ('planner', 'O'), ('and', 'O'), ('designer', 'O'), ('for', 'O'), ('the', 'O'), ('California', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('Automobile', 'ORGANIZATION'), ('Association', 'ORGANIZATION'), ('in', 'O'), ('San', 'LOCATION'), ('Francisco', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('received', 'O'), ('a', 'O'), ('bachelor', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('interior', 'O'), ('architecture', 'O'), ('from', 'O'), ('the', 'O'), ('California', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Arts', 'ORGANIZATION'), ('and', 'O'), ('Crafts', 'O'), ('in', 'O'), ('Oakland', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('general', 'O'), ('manager', 'O'), ('of', 'O'), ('the', 'O'), ('asphalt', 'O'), ('division', 'O'), ('of', 'O'), ('Chevron', 'ORGANIZATION'), ('U.S.A.', 'ORGANIZATION'), ('in', 'O'), ('San', 'LOCATION'), ('Francisco', 'LOCATION'), (',', 'O'), ('was', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('board', 'O'), ('of', 'O'), ('the', 'O'), ('Asphalt', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Randelman', 'PERSON'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('with', 'O'), ('the', 'O'), ('First', 'ORGANIZATION'), ('Boston', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('San', 'LOCATION'), ('Francisco', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('George', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Newtown', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('received', 'O'), ('B.A.', 'O'), ('and', 'O'), ('M.B.A.', 'O'), ('degrees', 'O'), ('from', 'O'), ('George', 'ORGANIZATION'), ('Washington', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('internist', 'O'), ('and', 'O'), ('neurologist', 'O'), ('in', 'O'), ('Trenton', 'LOCATION'), ('and', 'O'), ('an', 'O'), ('affiliate', 'O'), ('staff', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('Hahnemann', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Philadelphia', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('was', 'O'), ('formerly', 'O'), ('chief', 'O'), ('of', 'O'), ('medicine', 'O'), ('and', 'O'), ('neurology', 'O'), ('at', 'O'), ('the', 'O'), ('St.', 'ORGANIZATION'), ('Francis', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('in', 'O'), ('Trenton', 'LOCATION'), ('.', 'O')), (('The', 'O'), ('engagement', 'O'), ('of', 'O'), ('Kimberly', 'PERSON'), ('Jean', 'PERSON'), ('Macfarland', 'PERSON'), ('to', 'O'), ('David', 'PERSON'), ('Bond', 'PERSON'), ('has', 'O'), ('been', 'O'), ('announced', 'O'), ('by', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('David', 'PERSON'), ('Bronson', 'PERSON'), ('Macfarland', 'PERSON'), ('of', 'O'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('parents', 'O'), ('of', 'O'), ('the', 'O'), ('future', 'O'), ('bride', 'B'), ('.', 'O'), ('A', 'O'), ('May', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('Miss', 'O'), ('Macfarland', 'PERSON'), (',', 'O'), ('a', 'O'), ('merchandising', 'O'), ('assistant', 'O'), ('for', 'O'), ('Vogue', 'ORGANIZATION'), ('magazine', 'O'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Pine', 'ORGANIZATION'), ('Manor', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Katharine', 'ORGANIZATION'), ('Gibbs', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Daseke', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('real-estate', 'O'), ('investment', 'O'), ('banking', 'O'), ('concern', 'O'), ('in', 'O'), ('Stamford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bridegroom', 'G'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Barbara', 'PERSON'), ('Bond', 'PERSON'), ('Kunz', 'PERSON'), ('of', 'O'), ('Atherton', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Principia', 'ORGANIZATION'), ('Upper', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('St.', 'LOCATION'), ('Louis', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('California', 'ORGANIZATION'), ('at', 'O'), ('Santa', 'LOCATION'), ('Barbara', 'LOCATION'), ('.', 'O')), (('Mrs.', 'PERSON'), ('Horace', 'PERSON'), ('Reed', 'PERSON'), ('3d', 'O'), ('of', 'O'), ('Durham', 'LOCATION'), (',', 'O'), ('N.H.', 'LOCATION'), (',', 'O'), ('has', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('her', 'O'), ('daughter', 'O'), ('Eleanore', 'PERSON'), ('Merrill', 'PERSON'), ('Reed', 'PERSON'), ('of', 'O'), ('Coronado', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), (',', 'O'), ('to', 'O'), ('Ens.', 'O'), ('Peter', 'PERSON'), ('Douglas', 'PERSON'), ('Coffin', 'PERSON'), (',', 'O'), ('U.S.N.R.', 'LOCATION'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('David', 'PERSON'), ('Douglas', 'PERSON'), ('Coffin', 'PERSON'), ('of', 'O'), ('Hampton', 'LOCATION'), ('Falls', 'LOCATION'), (',', 'O'), ('N.H.', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Reed', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('also', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Reed', 'PERSON'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Middlebury', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('an', 'O'), ('industrial', 'O'), ('engineer', 'O'), ('for', 'O'), ('the', 'O'), ('Erie', 'ORGANIZATION'), ('Scientific', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Portsmouth', 'LOCATION'), (',', 'O'), ('N.H.', 'LOCATION'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Frederick', 'PERSON'), ('G.', 'PERSON'), ('Link', 'PERSON'), ('of', 'O'), ('Weston', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Link', 'PERSON'), (',', 'O'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Horace', 'PERSON'), ('W.', 'PERSON'), ('Reed', 'PERSON'), ('of', 'O'), ('Buffalo', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Reed', 'PERSON'), ('.', 'O'), ('Ensign', 'PERSON'), ('Coffin', 'PERSON'), (',', 'O'), ('a', 'O'), ('helicopter', 'O'), ('pilot', 'O'), ('at', 'O'), ('the', 'O'), ('San', 'LOCATION'), ('Diego', 'LOCATION'), ('Naval', 'LOCATION'), ('Air', 'LOCATION'), ('Station', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Brooks', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('New', 'ORGANIZATION'), ('Hampshire', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('classics', 'O'), ('teacher', 'O'), ('at', 'O'), ('Phillips', 'ORGANIZATION'), ('Exeter', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Rev.', 'R'), ('Dr.', 'PERSON'), ('Henry', 'PERSON'), ('Sloane', 'PERSON'), ('Coffin', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('president', 'O'), ('of', 'O'), ('Union', 'ORGANIZATION'), ('Theological', 'ORGANIZATION'), ('Seminary', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Coffin', 'PERSON'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Raymond', 'PERSON'), ('P.', 'PERSON'), ('Baldwin', 'PERSON'), ('of', 'O'), ('Concord', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Martin', 'PERSON'), ('J.', 'PERSON'), ('Schwab', 'PERSON'), ('of', 'O'), ('Scarsdale', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Sally', 'PERSON'), ('Schwab', 'PERSON'), (',', 'O'), ('to', 'O'), ('Raymond', 'PERSON'), ('E.', 'PERSON'), ('Gerson', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Ruth', 'PERSON'), ('Joffe', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Boca', 'LOCATION'), ('Raton', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Fred', 'PERSON'), ('Gerson', 'PERSON'), ('.', 'O'), ('A', 'O'), ('June', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('Miss', 'O'), ('Schwab', 'PERSON'), (',', 'O'), ('a', 'O'), ('social', 'O'), ('worker', 'O'), ('at', 'O'), ('Montefiore', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('in', 'O'), ('the', 'O'), ('Bronx', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Connecticut', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Columbia', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Social', 'ORGANIZATION'), ('Work', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('of', 'O'), ('United', 'ORGANIZATION'), ('Merchants', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Manufacturers', 'ORGANIZATION'), (',', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('textile', 'O'), ('concern', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Gerson', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('Lehigh', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('doctorate', 'O'), ('in', 'O'), ('chemical', 'O'), ('engineering', 'O'), ('from', 'O'), ('the', 'O'), ('Massachusetts', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('chairman', 'O'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Fisheries', 'ORGANIZATION'), ('Development', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('marketing', 'O'), ('concern', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('owned', 'O'), ('the', 'O'), ('Penn', 'LOCATION'), ('-', 'O'), ('Akron', 'ORGANIZATION'), ('Hardware', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Manhattan', 'LOCATION'), ('.', 'O')), (('The', 'O'), ('engagement', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('Nina', 'PERSON'), ('Felice', 'PERSON'), ('Tabachnik', 'PERSON'), (',', 'O'), ('a', 'O'), ('fellow', 'O'), ('in', 'O'), ('pediatric', 'O'), ('neurology', 'O'), ('at', 'O'), ('the', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), (',', 'O'), ('to', 'O'), ('Robert', 'PERSON'), ('Hyllel', 'PERSON'), ('Schor', 'PERSON'), (',', 'O'), ('an', 'O'), ('associate', 'O'), ('professor', 'O'), ('of', 'O'), ('neurophysiology', 'O'), ('at', 'O'), ('the', 'O'), ('Rockefeller', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('has', 'O'), ('been', 'O'), ('announced', 'O'), ('by', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('D.', 'PERSON'), ('Tabachnik', 'PERSON'), ('of', 'O'), ('Little', 'LOCATION'), ('Neck', 'LOCATION'), (',', 'O'), ('Queens', 'LOCATION'), (',', 'O'), ('parents', 'O'), ('of', 'O'), ('the', 'O'), ('bride-to-be', 'O'), ('.', 'O'), ('Her', 'O'), ('fiance', 'O'), ('is', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Irving', 'PERSON'), ('M.', 'PERSON'), ('Schor', 'PERSON'), ('of', 'O'), ('Visalia', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('November', 'O'), ('.', 'O'), ('Dr.', 'PERSON'), ('Tabachnik', 'PERSON'), (',', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('Yale', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('a', 'O'), ('Ph.D.', 'O'), ('degree', 'O'), ('in', 'O'), ('biochemistry', 'O'), ('from', 'O'), ('Rockefeller', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('an', 'O'), ('M.D.', 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Cornell', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('manager', 'O'), ('of', 'O'), ('data', 'O'), ('base', 'O'), ('administration', 'O'), ('at', 'O'), ('the', 'O'), ('Mobil', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bridegroom', 'G'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('California', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('Ph.D.', 'O'), ('degree', 'O'), ('from', 'O'), ('Rockefeller', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('and', 'O'), ('mother', 'O'), (',', 'O'), ('Dr.', 'PERSON'), ('Debora', 'PERSON'), ('Pineles', 'PERSON'), (',', 'O'), ('are', 'O'), ('general', 'O'), ('practitioners', 'O'), ('in', 'O'), ('Visalia', 'LOCATION'), ('.', 'O')), (('-1', 'O'), ('-14', 'O'), (',', 'O'), ('2', 'O'), ('lines', 'O'), ('Announcement', 'O'), ('has', 'O'), ('been', 'O'), ('made', 'O'), ('by', 'O'), ('Catherine', 'PERSON'), ('Young', 'PERSON'), ('Brown', 'PERSON'), ('of', 'O'), ('Englewood', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('of', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('her', 'O'), ('daughter', 'O'), (',', 'O'), ('Hylah', 'PERSON'), ('Lydecker', 'PERSON'), ('Brown', 'PERSON'), (',', 'O'), ('to', 'O'), ('Christopher', 'PERSON'), ('John', 'PERSON'), ('Riley', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Joseph', 'PERSON'), ('G.', 'PERSON'), ('Riley', 'PERSON'), ('of', 'O'), ('Waltham', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('May', 'O'), ('.', 'O'), ('Miss', 'O'), ('Brown', 'PERSON'), (',', 'O'), ('daughter', 'O'), ('also', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Coley', 'PERSON'), ('Tallman', 'PERSON'), ('Brown', 'PERSON'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Dwight', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Maine', 'ORGANIZATION'), ('at', 'O'), ('Farmington', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('an', 'O'), ('administrative', 'O'), ('assistant', 'O'), ('with', 'O'), ('the', 'O'), ('American', 'O'), ('List', 'O'), ('Counsel', 'O'), ('in', 'O'), ('Princeton', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('sales', 'O'), ('representative', 'O'), ('for', 'O'), ('International', 'ORGANIZATION'), ('Flavors', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Fragrances', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Riley', 'PERSON'), (',', 'O'), ('owner', 'O'), ('of', 'O'), ('Cafe', 'ORGANIZATION'), ('Topher', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('restaurant', 'O'), ('in', 'O'), ('Kennebunkport', 'LOCATION'), (',', 'O'), ('Me.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('St.', 'O'), ('Sebastian', 'O'), (\"'s\", 'O'), ('Country', 'O'), ('Day', 'O'), ('School', 'O'), ('in', 'O'), ('Newton', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('St.', 'ORGANIZATION'), ('Francis', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Biddeford', 'LOCATION'), (',', 'O'), ('Me', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('physician', 'O'), ('.', 'O')), (('Melanie', 'PERSON'), ('Kay', 'PERSON'), ('Foster', 'PERSON'), (',', 'O'), ('a', 'O'), ('corporate', 'O'), ('banking', 'O'), ('representative', 'O'), ('for', 'O'), ('the', 'O'), ('Manufacturers', 'ORGANIZATION'), ('Hanover', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('Brian', 'PERSON'), ('Christopher', 'PERSON'), ('Dean', 'PERSON'), (',', 'O'), ('an', 'O'), ('assistant', 'O'), ('treasurer', 'O'), ('of', 'O'), ('the', 'O'), ('Chase', 'ORGANIZATION'), ('Manhattan', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), (',', 'O'), ('were', 'O'), ('married', 'O'), ('yesterday', 'O'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Valentine', 'PERSON'), ('de', 'PERSON'), ('Souza', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('in', 'O'), ('the', 'O'), ('Roman', 'ORGANIZATION'), ('Catholic', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'O'), ('the', 'O'), ('Resurrection', 'O'), ('in', 'O'), ('Rye', 'O'), (',', 'O'), ('N.Y.', 'LOCATION'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('D.', 'PERSON'), ('Foster', 'PERSON'), ('of', 'O'), ('Phoenix', 'LOCATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('cum', 'O'), ('laude', 'O'), ('graduate', 'O'), ('of', 'O'), ('Louisiana', 'ORGANIZATION'), ('Tech', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('and', 'O'), ('her', 'O'), ('husband', 'O'), ('received', 'O'), ('masters', 'O'), (\"'\", 'O'), ('degrees', 'O'), ('from', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('International', 'ORGANIZATION'), ('Management', 'ORGANIZATION'), ('in', 'O'), ('Glendale', 'LOCATION'), (',', 'O'), ('Ariz.', 'LOCATION'), (',', 'O'), ('where', 'O'), ('her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('professor', 'O'), ('of', 'O'), ('international', 'O'), ('agribusiness', 'O'), ('and', 'O'), ('finance', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Dean', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Thomas', 'PERSON'), ('H.', 'PERSON'), ('Dean', 'PERSON'), ('of', 'O'), ('Rye', 'O'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Millbrook', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Clark', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('and', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Continental', 'ORGANIZATION'), ('Grain', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Kate', 'PERSON'), ('Elizabeth', 'PERSON'), ('Wittenstein', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Arthur', 'PERSON'), ('Wittenstein', 'PERSON'), ('of', 'O'), ('Brooklyn', 'LOCATION'), ('Heights', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Gregory', 'PERSON'), ('Lawrence', 'PERSON'), ('Kaster', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Theodore', 'PERSON'), ('Kaster', 'PERSON'), ('of', 'O'), ('Park', 'LOCATION'), ('Forest', 'LOCATION'), (',', 'O'), ('Ill.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('ceremony', 'O'), ('was', 'O'), ('performed', 'O'), ('at', 'O'), ('the', 'O'), ('home', 'O'), ('of', 'O'), ('the', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('parents', 'O'), ('by', 'O'), ('Justice', 'O'), ('Joseph', 'PERSON'), ('Dowd', 'PERSON'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('Supreme', 'ORGANIZATION'), ('Court', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('has', 'O'), ('retained', 'O'), ('her', 'O'), ('name', 'O'), (',', 'O'), ('and', 'O'), ('Mr.', 'PERSON'), ('Kaster', 'PERSON'), ('are', 'O'), ('doctoral', 'O'), ('candidates', 'O'), ('at', 'O'), ('Boston', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('she', 'O'), ('in', 'O'), ('American', 'O'), ('studies', 'O'), ('and', 'O'), ('he', 'O'), ('in', 'O'), ('history', 'O'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('Bard', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('history', 'O'), ('from', 'O'), ('Purdue', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Stroock', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Stroock', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Lavan', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Kaster', 'PERSON'), ('graduated', 'O'), ('from', 'O'), ('Northern', 'ORGANIZATION'), ('Illinois', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('from', 'O'), ('which', 'O'), ('he', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('history', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Kastar', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('Industries', 'ORGANIZATION'), ('International', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('diversified', 'O'), ('concern', 'O'), ('in', 'O'), ('Park', 'O'), ('Forest', 'O'), ('.', 'O')), (('Jane', 'PERSON'), ('Jonas', 'PERSON'), ('Sanders', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Norman', 'PERSON'), ('Sanders', 'PERSON'), ('of', 'O'), ('West', 'LOCATION'), ('Nyack', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Leland', 'PERSON'), ('Stanford', 'PERSON'), ('Englebardt', 'PERSON'), ('2d', 'O'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Stanley', 'PERSON'), ('L.', 'PERSON'), ('Englebardt', 'PERSON'), ('of', 'O'), ('Westport', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('Rabbi', 'R'), ('Morris', 'PERSON'), ('Goldberg', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Plumbush', 'O'), ('Restaurant', 'O'), ('in', 'O'), ('Cold', 'O'), ('Spring', 'O'), (',', 'O'), ('L.I.', 'LOCATION'), ('Mrs.', 'PERSON'), ('Englebardt', 'PERSON'), ('is', 'O'), ('an', 'O'), ('associate', 'O'), ('with', 'O'), ('Corporate', 'ORGANIZATION'), ('Art', 'ORGANIZATION'), ('Directions', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('art', 'O'), ('consulting', 'O'), ('concern', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('was', 'O'), ('formerly', 'O'), ('assistant', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Sherry', 'O'), ('French', 'O'), ('Gallery', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('assistant', 'O'), ('to', 'O'), ('William', 'PERSON'), ('Rubin', 'PERSON'), (',', 'O'), ('the', 'O'), ('chief', 'O'), ('curator', 'O'), ('and', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('painting', 'O'), ('and', 'O'), ('sculpture', 'O'), ('department', 'O'), ('at', 'O'), ('the', 'O'), ('Museum', 'O'), ('of', 'O'), ('Modern', 'O'), ('Art', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('graduated', 'O'), ('from', 'O'), ('Connecticut', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('an', 'O'), ('author', 'O'), ('of', 'O'), ('photography', 'O'), ('books', 'O'), (',', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Sanders', 'ORGANIZATION'), ('Printing', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('professor', 'O'), ('of', 'O'), ('art', 'O'), ('at', 'O'), ('the', 'O'), ('Cooper', 'LOCATION'), ('Union', 'LOCATION'), ('for', 'O'), ('the', 'O'), ('Advancement', 'O'), ('of', 'O'), ('Science', 'O'), ('and', 'O'), ('Art', 'O'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Jonas', 'PERSON'), ('Sanders', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('folk-art', 'O'), ('historian', 'O'), ('and', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('Wooden', 'O'), ('Nickel', 'O'), ('Antiques', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Englebardt', 'PERSON'), ('is', 'O'), ('a', 'O'), ('management', 'O'), ('consultant', 'O'), ('with', 'O'), ('Strategy', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('author', 'O'), ('of', 'O'), (\"''\", 'O'), ('You', 'O'), ('Have', 'O'), ('a', 'O'), ('Right', 'O'), (',', 'O'), (\"''\", 'O'), ('published', 'O'), ('by', 'O'), ('Lothrop', 'ORGANIZATION'), (',', 'O'), ('Lee', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Shepard', 'ORGANIZATION'), ('in', 'O'), ('1979', 'O'), (',', 'O'), ('and', 'O'), (\"''\", 'O'), ('Living', 'O'), ('Together', 'O'), (':', 'O'), ('What', 'O'), (\"'s\", 'O'), ('the', 'O'), ('Law', 'O'), ('?', 'O'), (\"''\", 'O'), ('published', 'O'), ('by', 'O'), ('Crown', 'O'), ('in', 'O'), ('1981', 'O'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Dartmouth', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('law', 'O'), ('degree', 'O'), ('from', 'O'), ('Boston', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('roving', 'O'), ('editor', 'O'), ('for', 'O'), ('Reader', 'O'), (\"'s\", 'O'), ('Digest', 'O'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Rita', 'PERSON'), ('Englebardt', 'PERSON'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('gift', 'O'), ('buyer', 'O'), ('for', 'O'), ('the', 'O'), ('Remarkable', 'O'), ('Bookshop', 'O'), ('in', 'O'), ('Westport', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O')), (('Louise', 'PERSON'), ('Gale', 'PERSON'), ('Moore', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Peter', 'PERSON'), ('Gale', 'PERSON'), ('Moore', 'PERSON'), ('of', 'O'), ('Larchmont', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Moore', 'PERSON'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Steven', 'PERSON'), ('H.', 'PERSON'), ('F.', 'PERSON'), ('Williams', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('H.', 'PERSON'), ('Williams', 'PERSON'), ('of', 'O'), ('Larchmont', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Edmund', 'PERSON'), ('Parrakow', 'PERSON'), (',', 'O'), ('a', 'O'), ('Roman', 'O'), ('Catholic', 'O'), ('priest', 'R'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), (',', 'O'), ('assisted', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Michael', 'PERSON'), ('Drake', 'PERSON'), (',', 'O'), ('a', 'O'), ('Presbyterian', 'O'), ('minister', 'O'), (',', 'O'), ('at', 'O'), ('SS', 'O'), ('.', 'O'), ('John', 'PERSON'), ('and', 'O'), ('Paul', 'ORGANIZATION'), ('Roman', 'ORGANIZATION'), ('Catholic', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Larchmont', 'LOCATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Williams', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Ursuline', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Dickinson', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('from', 'O'), ('Iona', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('and', 'O'), ('executive', 'O'), ('editor', 'O'), ('of', 'O'), ('Knowledge', 'ORGANIZATION'), ('Industry', 'ORGANIZATION'), ('Publications', 'ORGANIZATION'), ('in', 'O'), ('White', 'LOCATION'), ('Plains', 'LOCATION'), (',', 'O'), ('of', 'O'), ('which', 'O'), ('her', 'O'), ('mother', 'O'), (',', 'O'), ('Janet', 'PERSON'), ('D.', 'PERSON'), ('Moore', 'PERSON'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('father', 'O'), ('was', 'O'), ('director', 'O'), ('of', 'O'), ('corporate', 'O'), ('architectural', 'O'), ('design', 'O'), ('for', 'O'), ('the', 'O'), ('Consolidated', 'ORGANIZATION'), ('Edison', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Williams', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('Ithaca', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('candidate', 'O'), ('for', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('at', 'O'), ('Pace', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('assistant', 'O'), ('mortgage', 'O'), ('officer', 'O'), ('of', 'O'), ('the', 'O'), ('Larchmont', 'ORGANIZATION'), ('Federal', 'ORGANIZATION'), ('Savings', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Loan', 'ORGANIZATION'), ('Association', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('Coopers', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Lybrand', 'ORGANIZATION'), (',', 'O'), ('the', 'O'), ('accounting', 'O'), ('firm', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Alicia', 'PERSON'), ('Marie', 'PERSON'), ('Costello', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Capt.', 'O'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Harry', 'PERSON'), ('J.', 'PERSON'), ('Costello', 'PERSON'), ('of', 'O'), ('Convent', 'O'), ('Station', 'O'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Elliott', 'PERSON'), ('Jonathan', 'PERSON'), ('Stein', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Reuben', 'PERSON'), ('Hartenstein', 'PERSON'), ('of', 'O'), ('Dumont', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('The', 'O'), ('ceremony', 'O'), ('was', 'O'), ('performed', 'O'), ('at', 'O'), ('Christ', 'O'), ('the', 'O'), ('King', 'ORGANIZATION'), ('Roman', 'ORGANIZATION'), ('Catholic', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('Vernon', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Patrick', 'PERSON'), ('Rice', 'PERSON'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Stein', 'PERSON'), ('is', 'O'), ('a', 'O'), ('paralegal', 'O'), ('for', 'O'), ('A.T.', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('T.', 'ORGANIZATION'), ('Communications', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('harbor', 'O'), ('pilot', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Stein', 'PERSON'), (',', 'O'), ('who', 'O'), ('changed', 'O'), ('his', 'O'), ('name', 'O'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('assistant', 'O'), ('general', 'O'), ('counsel', 'O'), ('for', 'O'), ('Management', 'ORGANIZATION'), ('Assistance', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('computer', 'O'), ('concern', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('distribution', 'O'), ('manager', 'O'), ('for', 'O'), ('the', 'O'), ('Hoboken', 'ORGANIZATION'), ('Paint', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Lodi', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION')), (('Josephine', 'PERSON'), ('Ashley', 'PERSON'), ('Bayne', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Edward', 'PERSON'), ('A.', 'PERSON'), ('Bayne', 'PERSON'), ('of', 'O'), ('Rome', 'LOCATION'), ('and', 'O'), ('New', 'LOCATION'), ('Haven', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Sophia', 'PERSON'), ('Morris', 'PERSON'), ('Koelle', 'PERSON'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('David', 'PERSON'), ('West', 'PERSON'), ('Boorstin', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Daniel', 'PERSON'), ('J.', 'PERSON'), ('Boorstin', 'PERSON'), ('of', 'O'), ('Washington', 'LOCATION'), ('.', 'O'), ('Rabbi', 'R'), ('Ronald', 'PERSON'), ('B.', 'PERSON'), ('Sobel', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('in', 'O'), ('his', 'O'), ('study', 'O'), ('at', 'O'), ('Temple', 'O'), ('Emanu-El', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retaining', 'O'), ('her', 'O'), ('name', 'O'), (',', 'O'), ('is', 'O'), ('executive', 'O'), ('secretary', 'O'), ('to', 'O'), ('the', 'O'), ('North', 'O'), ('American', 'O'), ('manager', 'O'), ('of', 'O'), ('the', 'O'), ('Banco', 'ORGANIZATION'), ('di', 'ORGANIZATION'), ('Roma', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('St.', 'ORGANIZATION'), ('Stephen', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Rome', 'LOCATION'), ('and', 'O'), ('attended', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('Sophia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('in', 'O'), ('Tokyo', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('former', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Center', 'ORGANIZATION'), ('for', 'ORGANIZATION'), ('Mediterranean', 'ORGANIZATION'), ('Studies', 'ORGANIZATION'), ('in', 'O'), ('Rome', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), ('was', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('missions', 'O'), ('to', 'O'), ('Yugoslavia', 'LOCATION'), ('and', 'O'), ('Turkey', 'LOCATION'), ('for', 'O'), ('the', 'O'), ('World', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Boorstin', 'PERSON'), (',', 'O'), ('a', 'O'), ('writer', 'O'), ('and', 'O'), ('dramatist', 'O'), (',', 'O'), ('was', 'O'), ('an', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Siegel', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Gale', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('design', 'O'), ('and', 'O'), ('consulting', 'O'), ('concern', 'O'), (',', 'O'), ('a', 'O'), ('speechwriter', 'O'), ('for', 'O'), ('President', 'O'), ('Gerald', 'PERSON'), ('R.', 'PERSON'), ('Ford', 'PERSON'), (',', 'O'), ('and', 'O'), ('a', 'O'), ('radio', 'O'), ('drama', 'O'), ('critic', 'O'), ('for', 'O'), ('WMPB', 'O'), ('in', 'O'), ('Owings', 'LOCATION'), ('Mills', 'LOCATION'), (',', 'O'), ('Md.', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('he', 'O'), ('was', 'O'), ('elected', 'O'), ('to', 'O'), ('Phi', 'LOCATION'), ('Beta', 'LOCATION'), ('Kappa', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('Librarian', 'O'), ('of', 'O'), ('Congress', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('winner', 'O'), ('of', 'O'), ('the', 'O'), ('Pulitzer', 'O'), ('Prize', 'O'), ('in', 'O'), ('history', 'O'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Ruth', 'PERSON'), ('Frankel', 'PERSON'), ('Boorstin', 'PERSON'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('editor', 'O'), ('for', 'O'), ('the', 'O'), ('Librarian', 'O'), ('of', 'O'), ('Congress', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('was', 'O'), ('previously', 'O'), ('married', 'O'), ('and', 'O'), ('divorced', 'D'), (',', 'O'), ('as', 'O'), ('was', 'O'), ('her', 'O'), ('husband', 'O'), ('.', 'O')), (('Beth', 'PERSON'), ('Dalis', 'PERSON'), ('and', 'O'), ('Timothy', 'PERSON'), ('George', 'PERSON'), ('Manners', 'PERSON'), ('were', 'O'), ('married', 'O'), ('yesterday', 'O'), ('at', 'O'), ('the', 'O'), ('Sands', 'O'), ('Point', 'O'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('home', 'O'), ('of', 'O'), ('the', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('parents', 'O'), (',', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Mandell', 'PERSON'), ('Dalis', 'PERSON'), ('.', 'O'), ('Rabbi', 'R'), ('Robert', 'PERSON'), ('Widom', 'PERSON'), ('officiated', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Manners', 'O'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('Tufts', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('from', 'O'), ('Adelphi', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('electrical', 'O'), ('engineer', 'O'), ('at', 'O'), ('Combustion', 'ORGANIZATION'), ('EngineeringNeyrpic', 'ORGANIZATION'), ('Hydro', 'ORGANIZATION'), ('Power', 'ORGANIZATION'), ('in', 'O'), ('Stamford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Pacs', 'ORGANIZATION'), ('Industries', 'ORGANIZATION'), ('of', 'O'), ('Great', 'LOCATION'), ('Neck', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('which', 'O'), ('makes', 'O'), ('electric', 'O'), ('-', 'O'), ('power', 'O'), ('equipment', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Manners', 'O'), (',', 'O'), ('a', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('graduate', 'O'), ('of', 'O'), ('Tufts', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('David', 'PERSON'), ('X.', 'PERSON'), ('Manners', 'O'), ('of', 'O'), ('Norwalk', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('David', 'PERSON'), ('X.', 'PERSON'), ('Manners', 'O'), ('Company', 'O'), (',', 'O'), ('a', 'O'), ('Norwalk', 'LOCATION'), ('public-relations', 'O'), ('concern', 'O'), (',', 'O'), ('of', 'O'), ('which', 'O'), ('his', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('.', 'O')), (('Sally', 'PERSON'), ('Ann', 'PERSON'), ('Sickles', 'PERSON'), (',', 'O'), ('an', 'O'), ('investment', 'O'), ('banker', 'O'), ('and', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Drexel', 'ORGANIZATION'), ('Burnham', 'ORGANIZATION'), ('Lambert', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('Jonathan', 'PERSON'), ('David', 'PERSON'), ('Green', 'PERSON'), (',', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), (',', 'O'), ('secretary', 'O'), ('and', 'O'), ('general', 'O'), ('counsel', 'O'), ('of', 'O'), ('the', 'O'), ('Rockefeller', 'ORGANIZATION'), ('Group', 'ORGANIZATION'), ('-LRB-', 'O'), ('formerly', 'O'), ('Rockefeller', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('-RRB-', 'O'), (',', 'O'), ('were', 'O'), ('married', 'O'), ('yesterday', 'O'), ('at', 'O'), ('City', 'O'), ('Hall', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('keep', 'O'), ('her', 'O'), ('name', 'O'), ('professionally', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('Clark', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('law', 'O'), ('degree', 'O'), ('from', 'O'), ('Ohio', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('F.', 'PERSON'), ('Sickles', 'PERSON'), ('of', 'O'), ('Caledonia', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('where', 'O'), ('her', 'O'), ('father', 'O'), ('is', 'O'), ('employed', 'O'), ('by', 'O'), ('Specialized', 'ORGANIZATION'), ('Printed', 'ORGANIZATION'), ('Forms', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), (',', 'O'), ('as', 'O'), ('did', 'O'), ('Mr.', 'PERSON'), ('Green', 'PERSON'), (\"'s\", 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Green', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('Lafayette', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('a', 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Daniel', 'PERSON'), ('Green', 'PERSON'), ('of', 'O'), ('Sarasota', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Helen', 'PERSON'), ('B.', 'PERSON'), ('Green', 'PERSON'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('father', 'O'), ('was', 'O'), ('the', 'O'), ('executive', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('Red', 'ORGANIZATION'), ('Cross', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('from', 'O'), ('which', 'O'), ('he', 'O'), ('retired', 'O'), ('after', 'O'), ('25', 'O'), ('years', 'O'), ('.', 'O'), ('He', 'O'), ('later', 'O'), ('was', 'O'), ('executive', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Graham', 'ORGANIZATION'), ('Home', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('organization', 'O'), ('for', 'O'), ('children', 'O'), ('in', 'O'), ('Hastings-on-Hudson', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('from', 'O'), ('which', 'O'), ('he', 'O'), ('also', 'O'), ('retired', 'O'), ('.', 'O')), (('Sandra', 'PERSON'), ('Grace', 'PERSON'), ('Schlotzhauer', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Frederick', 'PERSON'), ('H.', 'PERSON'), ('Schlotzhauer', 'PERSON'), ('of', 'O'), ('Canajoharie', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Stanley', 'PERSON'), ('St.', 'PERSON'), ('Clair', 'PERSON'), ('Mullins', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Sybil', 'PERSON'), ('D.', 'PERSON'), ('Thompson', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Dr.', 'PERSON'), ('Mullins', 'PERSON'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Kenneth', 'PERSON'), ('L.', 'PERSON'), ('Reichley', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Peter', 'ORGANIZATION'), (\"'s\", 'O'), ('Lutheran', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Adele', 'PERSON'), ('Faith', 'PERSON'), ('Schlotzhauer', 'PERSON'), ('was', 'O'), ('her', 'O'), ('sister', 'O'), (\"'s\", 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('and', 'O'), ('Robert', 'PERSON'), ('J.', 'PERSON'), ('Sellers', 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Mullins', 'PERSON'), (',', 'O'), ('a', 'O'), ('department', 'O'), ('manager', 'O'), ('of', 'O'), ('men', 'O'), (\"'s\", 'O'), ('clothing', 'O'), ('at', 'O'), ('Saks', 'ORGANIZATION'), ('Fifth', 'ORGANIZATION'), ('Avenue', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Colgate', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('retired', 'O'), ('and', 'O'), ('was', 'O'), ('the', 'O'), ('owner', 'O'), ('of', 'O'), ('a', 'O'), ('housewares', 'O'), ('store', 'O'), ('in', 'O'), ('Canajoharie', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Mullins', 'PERSON'), ('is', 'O'), ('a', 'O'), ('department', 'O'), ('manager', 'O'), ('of', 'O'), ('junior', 'O'), ('sportswear', 'O'), ('at', 'O'), ('Abraham', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Straus', 'ORGANIZATION'), ('in', 'O'), ('Brooklyn', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('Dalton', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('doctor', 'O'), ('in', 'O'), ('private', 'O'), ('practice', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('J.', 'PERSON'), ('Cassidy', 'PERSON'), ('of', 'O'), ('Westport', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Patricia', 'PERSON'), ('Ashby', 'PERSON'), ('Cassidy', 'PERSON'), (',', 'O'), ('to', 'O'), ('Donald', 'PERSON'), ('J.', 'PERSON'), ('Devine', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Devine', 'PERSON'), ('of', 'O'), ('Holyoke', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('Nov.', 'O'), ('24', 'O'), ('.', 'O'), ('Miss', 'O'), ('Cassidy', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Kansas', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('account', 'O'), ('executive', 'O'), ('with', 'O'), ('A.T.', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('T.', 'ORGANIZATION'), ('Communications', 'O'), ('in', 'O'), ('White', 'LOCATION'), ('Plains', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('and', 'O'), ('the', 'O'), ('general', 'O'), ('manager', 'O'), ('of', 'O'), ('the', 'O'), ('Union', 'ORGANIZATION'), ('Carbide', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (\"'s\", 'O'), ('home', 'O'), ('and', 'O'), ('automotive', 'O'), ('division', 'O'), ('in', 'O'), ('Danbury', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('printer', 'O'), ('in', 'O'), ('Holyoke', 'LOCATION'), ('.', 'O')), (('Jane', 'PERSON'), ('Elizabeth', 'PERSON'), ('Treichler', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Glen', 'PERSON'), ('DeForest', 'PERSON'), ('Treichler', 'PERSON'), ('of', 'O'), ('Cedar', 'LOCATION'), ('Grove', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Peter', 'PERSON'), ('Howard', 'PERSON'), ('-', 'O'), ('Johnson', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Howard-Johnson', 'PERSON'), ('of', 'O'), ('Wellesley', 'LOCATION'), ('Hills', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Robert', 'PERSON'), ('Gibney', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Catherine', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Siena', 'ORGANIZATION'), ('Roman', 'ORGANIZATION'), ('Catholic', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Cedar', 'LOCATION'), ('Grove', 'LOCATION'), ('.', 'O'), ('Susan', 'PERSON'), ('Treichler', 'PERSON'), ('Hanlan', 'PERSON'), ('was', 'O'), ('her', 'O'), ('sister', 'O'), (\"'s\", 'O'), ('matron', 'O'), ('of', 'O'), ('honor', 'O'), ('.', 'O'), ('Mark', 'PERSON'), ('Howard-Johnson', 'PERSON'), ('was', 'O'), ('his', 'O'), ('brother', 'O'), (\"'s\", 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Howard-Johnson', 'PERSON'), ('is', 'O'), ('a', 'O'), ('broadcast', 'O'), ('buyer', 'O'), ('for', 'O'), ('Needham', 'ORGANIZATION'), ('Harper', 'ORGANIZATION'), ('Worldwide', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('advertising', 'O'), ('agency', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('and', 'O'), ('Mr.', 'PERSON'), ('Howard', 'PERSON'), ('-', 'O'), ('Johnson', 'PERSON'), ('graduated', 'O'), ('from', 'O'), ('Bucknell', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('traffic', 'O'), ('for', 'O'), ('the', 'O'), ('Mobil', 'ORGANIZATION'), ('Shipping', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Transportation', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Howard-Johnson', 'PERSON'), ('is', 'O'), ('an', 'O'), ('oil', 'O'), ('-', 'O'), ('tanker', 'O'), ('broker', 'O'), ('for', 'O'), ('D', 'O'), ('and', 'O'), ('L', 'ORGANIZATION'), ('Services', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('architecture', 'O'), ('for', 'O'), ('C', 'ORGANIZATION'), ('E', 'ORGANIZATION'), ('Maguire', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('architectural', 'O'), (',', 'O'), ('engineering', 'O'), ('and', 'O'), ('planning', 'O'), ('concern', 'O'), ('in', 'O'), ('Hartford', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Patricia', 'PERSON'), ('Howard-Johnson', 'PERSON'), (',', 'O'), ('is', 'O'), ('seminar', 'O'), ('director', 'O'), ('for', 'O'), ('the', 'O'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Certified', 'ORGANIZATION'), ('Travel', 'ORGANIZATION'), ('Agents', 'ORGANIZATION'), ('in', 'O'), ('Wellesley', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O')), (('Randi', 'PERSON'), ('Elyse', 'PERSON'), ('Reider', 'PERSON'), (',', 'O'), ('a', 'O'), ('marketing', 'O'), ('representative', 'O'), ('for', 'O'), ('The', 'ORGANIZATION'), ('Daily', 'ORGANIZATION'), ('News', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('Kenneth', 'PERSON'), ('Lloyd', 'PERSON'), ('Flug', 'PERSON'), (',', 'O'), ('a', 'O'), ('financial', 'O'), ('analyst', 'O'), ('for', 'O'), ('Citicorp', 'ORGANIZATION'), (',', 'O'), ('plan', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('Nov.', 'O'), ('24', 'O'), (',', 'O'), ('her', 'O'), ('parents', 'O'), (',', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('L.', 'PERSON'), ('Reider', 'PERSON'), ('of', 'O'), ('Dix', 'LOCATION'), ('Hills', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('.', 'O'), ('Miss', 'O'), ('Reider', 'PERSON'), ('and', 'O'), ('her', 'O'), ('fiance', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Hartford', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('podiatrist', 'O'), ('and', 'O'), ('her', 'O'), ('mother', 'O'), (',', 'O'), ('Myra', 'PERSON'), ('Reider', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('special', 'O'), ('-', 'O'), ('education', 'O'), ('teacher', 'O'), ('in', 'O'), ('the', 'O'), ('Dix', 'O'), ('Hills', 'O'), ('public-school', 'O'), ('system', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Flug', 'PERSON'), ('is', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Seymour', 'PERSON'), ('Flug', 'PERSON'), ('of', 'O'), ('Plainview', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Longboat', 'O'), ('Key', 'O'), (',', 'O'), ('Fla.', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Renee', 'PERSON'), ('Flug', 'PERSON'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('agent', 'O'), ('for', 'O'), ('the', 'O'), ('Travel', 'O'), ('Source', 'O'), ('in', 'O'), ('Roslyn', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION')), (('Jennifer', 'PERSON'), ('Lee', 'PERSON'), ('Dyckman', 'PERSON'), (',', 'O'), ('an', 'O'), ('editorial', 'O'), ('assistant', 'O'), ('at', 'O'), ('Crown', 'O'), ('Publishers', 'O'), (',', 'O'), ('and', 'O'), ('David', 'PERSON'), ('Stirling', 'PERSON'), ('Aldrich', 'PERSON'), (',', 'O'), ('a', 'O'), ('senior', 'O'), ('accountant', 'O'), ('at', 'O'), ('Coopers', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Lybrand', 'ORGANIZATION'), (',', 'O'), ('both', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('were', 'O'), ('married', 'O'), ('yesterday', 'O'), ('at', 'O'), ('Trinity', 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Princeton', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('The', 'O'), ('Rev.', 'R'), ('John', 'PERSON'), ('Crocker', 'PERSON'), ('Jr.', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('.', 'O'), ('Katharine', 'PERSON'), ('Stuart', 'PERSON'), ('Dyckman', 'PERSON'), ('was', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('for', 'O'), ('her', 'O'), ('sister', 'O'), ('.', 'O'), ('Richard', 'PERSON'), ('Reid', 'PERSON'), ('Aldrich', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('for', 'O'), ('his', 'O'), ('brother', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Aldrich', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Francis', 'PERSON'), ('Hamilton', 'PERSON'), ('Dyckman', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Skillman', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Point', 'O'), (\"O'Woods\", 'O'), (',', 'O'), ('Fire', 'LOCATION'), ('Island', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Stuart', 'O'), ('Country', 'O'), ('Day', 'O'), ('School', 'O'), ('of', 'O'), ('the', 'O'), ('Sacred', 'O'), ('Heart', 'O'), ('in', 'O'), ('Princeton', 'LOCATION'), ('and', 'O'), ('Princeton', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('alumni', 'O'), ('affairs', 'O'), ('at', 'O'), ('the', 'O'), ('Lawrenceville', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Aldrich', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Stirling', 'PERSON'), ('Aldrich', 'PERSON'), ('of', 'O'), ('Wheaton', 'LOCATION'), (',', 'O'), ('Ill.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Princeton', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('from', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('owner', 'O'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Tennis', 'ORGANIZATION'), ('Surfaces', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Community', 'ORGANIZATION'), ('Pools', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('Wheaton', 'LOCATION'), (',', 'O'), ('concerns', 'O'), ('that', 'O'), ('build', 'O'), ('and', 'O'), ('manage', 'O'), ('recreational', 'O'), ('facilities', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Myron', 'PERSON'), ('Kalish', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Remsenburg', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Nita', 'PERSON'), ('Jane', 'PERSON'), ('Kalish', 'PERSON'), ('to', 'O'), ('Mikael', 'PERSON'), ('Bjornstjerna', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Marta', 'PERSON'), ('Bjornstjerna', 'PERSON'), ('of', 'O'), ('Stockholm', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Adja', 'O'), ('Yunkers', 'O'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('late', 'O'), ('next', 'O'), ('month', 'O'), ('.', 'O'), ('Miss', 'O'), ('Kalish', 'PERSON'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('known', 'O'), ('as', 'O'), ('Nicki', 'PERSON'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('art', 'O'), ('director', 'O'), ('for', 'O'), ('The', 'O'), ('Home', 'O'), ('Section', 'O'), ('of', 'O'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('Connecticut', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('for', 'O'), ('Women', 'O'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('Bachelor', 'O'), ('of', 'O'), ('Fine', 'O'), ('Arts', 'O'), ('degree', 'O'), ('and', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('graphic', 'O'), ('design', 'O'), ('from', 'O'), ('Yale', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Uniroyal', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('Waterbury', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('formerly', 'O'), ('senior', 'O'), ('partner', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Arthur', 'PERSON'), (',', 'O'), ('Dr.', 'PERSON'), (',', 'O'), ('Kalish', 'PERSON'), ('.', 'O'), ('Mr.', 'PERSON'), ('Bjornstjerna', 'PERSON'), (',', 'O'), ('an', 'O'), ('architect', 'O'), ('and', 'O'), ('industrial', 'O'), ('engineer', 'O'), ('who', 'O'), ('uses', 'O'), ('his', 'O'), ('mother', 'O'), (\"'s\", 'O'), ('surname', 'O'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('director', 'O'), ('of', 'O'), ('Bjornstjerna', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('design', 'O'), ('concern', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Paris', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('attended', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Stockholm', 'ORGANIZATION'), ('and', 'O'), ('graduated', 'O'), ('from', 'O'), ('Hogre', 'LOCATION'), ('Konstindustriella', 'LOCATION'), ('Skolan', 'LOCATION'), ('in', 'O'), ('Stockholm', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('previous', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('an', 'O'), ('abstract', 'O'), ('painter', 'O'), ('who', 'O'), ('exhibited', 'O'), ('at', 'O'), ('the', 'O'), ('Whitney', 'ORGANIZATION'), ('Museum', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('American', 'ORGANIZATION'), ('Art', 'ORGANIZATION'), ('and', 'O'), ('whose', 'O'), ('work', 'O'), ('is', 'O'), ('in', 'O'), ('the', 'O'), ('permanent', 'O'), ('collection', 'O'), ('of', 'O'), ('several', 'O'), ('museums', 'O'), (',', 'O'), ('including', 'O'), ('the', 'O'), ('Metropolitan', 'ORGANIZATION'), ('Museum', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Art', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Museum', 'O'), ('of', 'O'), ('Modern', 'O'), ('Art', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Gregory', 'PERSON'), ('H.', 'PERSON'), ('Wulster', 'PERSON'), ('of', 'O'), ('Tuxedo', 'LOCATION'), ('Park', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Gretchen', 'PERSON'), ('Wulster', 'PERSON'), (',', 'O'), ('to', 'O'), ('G.', 'PERSON'), ('David', 'PERSON'), ('Hamrick', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Grant', 'PERSON'), ('L.', 'PERSON'), ('Hamrick', 'PERSON'), ('of', 'O'), ('Charlotte', 'LOCATION'), (',', 'O'), ('N.C.', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Wulster', 'O'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('Kent', 'O'), ('-LRB-', 'O'), ('Conn.', 'LOCATION'), ('-RRB-', 'O'), ('School', 'O'), ('and', 'O'), ('Sweet', 'ORGANIZATION'), ('Briar', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('studied', 'O'), ('for', 'O'), ('a', 'O'), ('year', 'O'), ('at', 'O'), ('the', 'O'), ('Sorbonne', 'O'), ('and', 'O'), (\"L'Institut\", 'O'), (\"d'Etudes\", 'O'), ('Politiques', 'O'), ('in', 'O'), ('Paris', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('was', 'O'), ('until', 'O'), ('recently', 'O'), ('a', 'O'), ('legal', 'O'), ('assistant', 'O'), ('at', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Simpson', 'ORGANIZATION'), ('Thacher', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Bartlett', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('retired', 'O'), ('as', 'O'), ('president', 'O'), ('of', 'O'), ('his', 'O'), ('development', 'O'), ('and', 'O'), ('contracting', 'O'), ('company', 'O'), ('in', 'O'), ('Hackensack', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('Charlotte', 'LOCATION'), ('office', 'O'), ('of', 'O'), ('Price', 'O'), ('Waterhouse', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Gordon', 'PERSON'), ('C.', 'PERSON'), ('Stickles', 'PERSON'), ('of', 'O'), ('Lynbrook', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Margaret', 'PERSON'), ('M.', 'PERSON'), ('Stickles', 'PERSON'), ('to', 'O'), ('Kenneth', 'PERSON'), ('J.', 'PERSON'), ('Monaghan', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Jessine', 'PERSON'), ('M.', 'PERSON'), ('Monaghan', 'PERSON'), ('of', 'O'), ('Garden', 'LOCATION'), ('City', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Frank', 'PERSON'), ('A.', 'PERSON'), ('Monaghan', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('Nov.', 'O'), ('24', 'O'), ('.', 'O'), ('Miss', 'O'), ('Stickles', 'PERSON'), ('is', 'O'), ('a', 'O'), ('customer', 'O'), ('service', 'O'), ('representative', 'O'), ('for', 'O'), ('Essex', 'ORGANIZATION'), ('Outfitters', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('a', 'O'), ('children', 'O'), (\"'s\", 'O'), ('-', 'O'), ('wear', 'O'), ('concern', 'O'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('Marymount', 'ORGANIZATION'), ('Manhattan', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('education', 'O'), ('from', 'O'), ('Hofstra', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Missir', 'ORGANIZATION'), ('Commodities', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Monaghan', 'PERSON'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('for', 'O'), ('corporate', 'O'), ('bond', 'O'), ('research', 'O'), ('for', 'O'), ('Salomon', 'ORGANIZATION'), ('Brothers', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('investment', 'O'), ('banker', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Colgate', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('and', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('public', 'O'), ('administration', 'O'), ('from', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), ('is', 'O'), ('a', 'O'), ('professor', 'O'), ('and', 'O'), ('former', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('department', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('communications', 'ORGANIZATION'), ('at', 'O'), ('Nassau', 'ORGANIZATION'), ('Community', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Garden', 'LOCATION'), ('City', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('labor', 'O'), ('relations', 'O'), ('consultant', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Kathleen', 'PERSON'), ('Galvin', 'PERSON'), ('Murray', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Morgan', 'PERSON'), ('J.', 'PERSON'), ('Murray', 'PERSON'), ('of', 'O'), ('Morristown', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Kevin', 'PERSON'), ('Michael', 'PERSON'), ('Livesey', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Joseph', 'PERSON'), ('R.', 'PERSON'), ('Livesey', 'PERSON'), ('of', 'O'), ('Plymouth', 'LOCATION'), ('Meeting', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('at', 'O'), ('the', 'O'), ('Roman', 'ORGANIZATION'), ('Catholic', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Christ', 'ORGANIZATION'), ('the', 'O'), ('King', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('Vernon', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('The', 'O'), ('nuptial', 'O'), ('mass', 'O'), ('was', 'O'), ('celebrated', 'O'), ('by', 'O'), ('Msgr.', 'O'), ('John', 'PERSON'), ('F.', 'PERSON'), ('Corr', 'PERSON'), ('and', 'O'), ('the', 'O'), ('wedding', 'O'), ('ceremony', 'O'), ('was', 'O'), ('performed', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('William', 'PERSON'), ('J.', 'PERSON'), ('Galvin', 'PERSON'), (',', 'O'), ('a', 'O'), ('cousin', 'O'), ('of', 'O'), ('the', 'O'), ('bride', 'B'), ('.', 'O'), ('Elizabeth', 'PERSON'), ('Meyer', 'PERSON'), ('Murray', 'PERSON'), ('was', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('for', 'O'), ('her', 'O'), ('sister', 'O'), ('and', 'O'), ('the', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('father', 'O'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('for', 'O'), ('his', 'O'), ('son', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Livesey', 'PERSON'), ('and', 'O'), ('her', 'O'), ('husband', 'O'), ('graduated', 'O'), ('from', 'O'), ('Lafayette', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('also', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Kent', 'ORGANIZATION'), ('Place', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Mr.', 'PERSON'), ('Livesey', 'PERSON'), ('received', 'O'), ('a', 'O'), ('Juris', 'O'), ('Doctorate', 'O'), ('degree', 'O'), ('in', 'O'), ('May', 'O'), ('from', 'O'), ('the', 'O'), ('Delaware', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Widener', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('and', 'O'), ('a', 'O'), ('director', 'O'), ('of', 'O'), ('Smith', 'ORGANIZATION'), ('Barney', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Harris', 'ORGANIZATION'), ('Upham', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('Philadelphia', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('Kates', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Livesey', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Mazzocone', 'ORGANIZATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Livesey', 'PERSON'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Alfred', 'PERSON'), ('P.', 'PERSON'), ('Duffy', 'PERSON'), ('of', 'O'), ('Montclair', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Matthew', 'PERSON'), ('T.', 'PERSON'), ('Murray', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Lawrence', 'PERSON'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Murray', 'PERSON'), ('.', 'O'), ('Mr.', 'PERSON'), ('Duffy', 'PERSON'), ('is', 'O'), ('a', 'O'), ('retired', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Stock', 'ORGANIZATION'), ('Exchange', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Murray', 'PERSON'), ('was', 'O'), ('resident', 'O'), ('attorney', 'O'), (',', 'O'), ('secretary', 'O'), ('and', 'O'), ('a', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Guaranty', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Sharon', 'PERSON'), ('L.', 'PERSON'), ('Holden', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Thomas', 'PERSON'), ('Holden', 'PERSON'), ('of', 'O'), ('Urbana', 'LOCATION'), (',', 'O'), ('Ill.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Clark', 'PERSON'), ('J.', 'PERSON'), ('Winslow', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Betty', 'PERSON'), ('M.', 'PERSON'), ('Winslow', 'PERSON'), ('and', 'O'), ('Joseph', 'PERSON'), ('C.', 'PERSON'), ('Winslow', 'PERSON'), (',', 'O'), ('both', 'O'), ('of', 'O'), ('Edina', 'LOCATION'), (',', 'O'), ('Minn.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Charles', 'PERSON'), ('P.', 'PERSON'), ('Henderson', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('Presbyterian', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('River', 'LOCATION'), ('Club', 'LOCATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Winslow', 'PERSON'), ('is', 'O'), ('an', 'O'), ('assistant', 'O'), ('general', 'O'), ('counsel', 'O'), ('for', 'O'), ('Arthur', 'ORGANIZATION'), ('Young', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('was', 'O'), ('a', 'O'), ('lawyer', 'O'), ('for', 'O'), ('Satellite', 'O'), ('Business', 'O'), ('Systems', 'O'), ('in', 'O'), ('McLean', 'LOCATION'), (',', 'O'), ('Va.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('former', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('Denver', 'ORGANIZATION'), ('Symphony', 'ORGANIZATION'), ('Orchestra', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('professor', 'O'), ('of', 'O'), ('music', 'O'), ('at', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Illinois', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Dr.', 'PERSON'), ('Carol', 'PERSON'), ('Holden', 'PERSON'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('director', 'O'), ('of', 'O'), ('continuing', 'O'), ('education', 'O'), ('at', 'O'), ('Eastern', 'ORGANIZATION'), ('Illinois', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('in', 'O'), ('Charleston', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Winslow', 'PERSON'), ('is', 'O'), ('a', 'O'), ('managing', 'O'), ('director', 'O'), ('of', 'O'), ('John', 'ORGANIZATION'), ('W.', 'ORGANIZATION'), ('Bristol', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('which', 'O'), ('manages', 'O'), ('foundation', 'O'), ('and', 'O'), ('endowment', 'O'), ('funds', 'O'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('Yale', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('business', 'O'), ('administration', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('previous', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Carmi', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('food', 'O'), ('company', 'O'), ('in', 'O'), ('Minneapolis', 'LOCATION'), ('.', 'O')), (('Nancy', 'PERSON'), ('Flora', 'PERSON'), ('Koerner', 'PERSON'), ('and', 'O'), ('Richard', 'PERSON'), ('J.', 'PERSON'), ('Goldberg', 'PERSON'), ('plan', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('in', 'O'), ('October', 'O'), (',', 'O'), ('her', 'O'), ('parents', 'O'), (',', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Ira', 'PERSON'), ('M.', 'PERSON'), ('Koerner', 'PERSON'), ('of', 'O'), ('Great', 'LOCATION'), ('Neck', 'LOCATION'), ('and', 'O'), ('Amagansett', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('.', 'O'), ('Miss', 'O'), ('Koerner', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('S.', 'ORGANIZATION'), ('I.', 'ORGANIZATION'), ('Newhouse', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Public', 'ORGANIZATION'), ('Communications', 'ORGANIZATION'), ('at', 'O'), ('Syracuse', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('freelance', 'O'), ('television', 'O'), ('producer', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Harper-Lawrence', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('real-estate', 'O'), ('company', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Goldberg', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Herbert', 'PERSON'), ('Goldberg', 'PERSON'), ('of', 'O'), ('North', 'LOCATION'), ('Miami', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Muhlenberg', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('the', 'O'), ('executive', 'O'), ('producer', 'O'), ('of', 'O'), ('Fairbanks', 'ORGANIZATION'), ('Films', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('independent', 'O'), ('movie-producing', 'O'), ('company', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('retired', 'O'), ('as', 'O'), ('an', 'O'), ('independent', 'O'), ('financier', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('now', 'O'), ('sells', 'O'), ('real', 'O'), ('estate', 'O'), ('in', 'O'), ('the', 'O'), ('North', 'LOCATION'), ('Miami', 'LOCATION'), ('area', 'O'), ('.', 'O')), (('Martha', 'PERSON'), ('G.', 'PERSON'), ('Marshall', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Martha', 'PERSON'), ('Rodriguez', 'PERSON'), ('of', 'O'), ('Woodside', 'ORGANIZATION'), (',', 'O'), ('Queens', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Roger', 'PERSON'), ('V.', 'PERSON'), ('Marshall', 'PERSON'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('there', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Nicholas', 'PERSON'), ('A.', 'PERSON'), ('Governale', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Josephine', 'PERSON'), ('Morano', 'PERSON'), ('of', 'O'), ('Rosedale', 'LOCATION'), (',', 'O'), ('Queens', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Nicholas', 'PERSON'), ('J.', 'PERSON'), ('Governale', 'PERSON'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Robert', 'PERSON'), ('Robinson', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Sebastian', 'ORGANIZATION'), (\"'s\", 'O'), ('Roman', 'ORGANIZATION'), ('Catholic', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Governale', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('St.', 'ORGANIZATION'), ('John', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('corporate', 'O'), ('account', 'O'), ('manager', 'O'), ('for', 'O'), ('Citibank', 'ORGANIZATION'), ('in', 'O'), ('Long', 'LOCATION'), ('Island', 'LOCATION'), ('City', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Governale', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('computer', 'O'), ('engineer', 'O'), ('with', 'O'), ('the', 'O'), ('Singer-Kearfott', 'O'), ('Company', 'O'), ('in', 'O'), ('Wayne', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION')), (('Susan', 'PERSON'), ('Willis', 'PERSON'), ('Troy', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('James', 'PERSON'), ('Storrow', 'PERSON'), ('Troy', 'PERSON'), ('of', 'O'), ('Darien', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('there', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Peter', 'PERSON'), ('Dawson', 'PERSON'), ('Van', 'PERSON'), ('Oot', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Terence', 'PERSON'), ('Robinson', 'PERSON'), ('Blackwood', 'PERSON'), ('of', 'O'), ('West', 'LOCATION'), ('Hartford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('and', 'O'), ('Queen', 'PERSON'), ('Anne', 'PERSON'), (\"'s\", 'O'), ('County', 'LOCATION'), (',', 'O'), ('Md.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Albert', 'PERSON'), ('Powell', 'PERSON'), ('Oot', 'PERSON'), ('of', 'O'), ('Westminster', 'LOCATION'), (',', 'O'), ('Vt.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('ceremony', 'O'), ('was', 'O'), ('performed', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Luke', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Walter', 'PERSON'), ('Taylor', 'PERSON'), ('and', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Robert', 'PERSON'), ('Nelson', 'PERSON'), ('Back', 'PERSON'), ('officiated', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('nurse', 'O'), ('at', 'O'), ('Georgetown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Hospital', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Skidmore', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('with', 'O'), ('a', 'O'), ('B.S.', 'O'), ('degree', 'O'), ('in', 'O'), ('nursing', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('communications', 'O'), ('counselor', 'O'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('Envirocom', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('Darien', 'LOCATION'), ('public-relations', 'O'), ('concern', 'O'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('studying', 'O'), ('for', 'O'), ('a', 'O'), ('law', 'O'), ('degree', 'O'), ('at', 'O'), ('Georgetown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('aide', 'O'), ('to', 'O'), ('Senator', 'O'), ('Patrick', 'PERSON'), ('J.', 'PERSON'), ('Leahy', 'PERSON'), (',', 'O'), ('Democrat', 'O'), ('of', 'O'), ('Vermont', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Deerfield', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), (',', 'O'), ('studied', 'O'), ('at', 'O'), ('Stanford', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('graduated', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Williams', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('president', 'O'), ('of', 'O'), ('Northeastern', 'ORGANIZATION'), ('Culvert', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Westminster', 'LOCATION'), ('.', 'O')), (('St.', 'PERSON'), ('John', 'PERSON'), (\"'s\", 'O'), ('of', 'O'), ('Lattingtown', 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Locust', 'LOCATION'), ('Valley', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('the', 'O'), ('setting', 'O'), ('yesterday', 'O'), ('for', 'O'), ('the', 'O'), ('wedding', 'O'), ('of', 'O'), ('Ann', 'PERSON'), ('Barrett', 'PERSON'), ('Milholland', 'PERSON'), ('Keith', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Norman', 'PERSON'), ('C.', 'PERSON'), ('Keith', 'PERSON'), ('of', 'O'), ('Mill', 'O'), ('Neck', 'O'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Peter', 'PERSON'), ('Clarke', 'PERSON'), ('Milholland', 'PERSON'), (',', 'O'), ('to', 'O'), ('Stoddard', 'PERSON'), ('Andrew', 'PERSON'), ('MacPherson', 'PERSON'), ('Horn', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('L.', 'PERSON'), ('Stoddard', 'PERSON'), ('Horn', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Southampton', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('The', 'O'), ('Rev.', 'R'), ('Charles', 'PERSON'), ('G.', 'PERSON'), ('Newbery', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), (',', 'O'), ('assisted', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Fred', 'PERSON'), ('Hoesli', 'PERSON'), (',', 'O'), ('a', 'O'), ('Roman', 'O'), ('Catholic', 'O'), ('priest', 'R'), ('.', 'O'), ('Muriel', 'PERSON'), ('Vanderbilt', 'PERSON'), ('Hutton', 'PERSON'), ('was', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('.', 'O'), ('Anthony', 'PERSON'), ('Gerli', 'PERSON'), ('Horn', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('for', 'O'), ('his', 'O'), ('brother', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Horn', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Hotchkiss', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Franklin', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Lugano', 'LOCATION'), (',', 'O'), ('Switzerland', 'LOCATION'), (',', 'O'), ('is', 'O'), ('with', 'O'), ('the', 'O'), ('David', 'O'), ('Findlay', 'O'), ('Galleries', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('stockbroker', 'O'), ('.', 'O'), ('Her', 'O'), ('stepfather', 'O'), ('retired', 'O'), ('as', 'O'), ('chairman', 'O'), ('and', 'O'), ('chief', 'O'), ('executive', 'O'), ('officer', 'O'), ('of', 'O'), ('the', 'O'), ('Commonwealth', 'ORGANIZATION'), ('Oil', 'ORGANIZATION'), ('Refining', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Horn', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Taft', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('specialist', 'O'), ('clerk', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('stockbrokerage', 'O'), ('Benton', 'PERSON'), (',', 'O'), ('Corcoran', 'PERSON'), (',', 'O'), ('Leib', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('of', 'O'), ('which', 'O'), ('his', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('partner', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Disque', 'PERSON'), ('Dee', 'PERSON'), ('Deane', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Tucker', 'PERSON'), (\"'s\", 'O'), ('Town', 'ORGANIZATION'), (',', 'O'), ('Bermuda', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Marjorie', 'PERSON'), ('Gregg', 'PERSON'), ('Deane', 'PERSON'), (',', 'O'), ('to', 'O'), ('Herbert', 'PERSON'), ('Woodward', 'PERSON'), ('Swain', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Swain', 'PERSON'), ('of', 'O'), ('Barrington', 'LOCATION'), (',', 'O'), ('R.I.', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Deane', 'PERSON'), (',', 'O'), ('an', 'O'), ('administrative', 'O'), ('assistant', 'O'), ('at', 'O'), ('Seligman', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Latz', 'ORGANIZATION'), (',', 'O'), ('operator', 'O'), ('of', 'O'), ('beauty', 'O'), ('salons', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('clinical', 'O'), ('psychologist', 'O'), ('and', 'O'), ('a', 'O'), ('research', 'O'), ('associate', 'O'), ('at', 'O'), ('the', 'O'), ('Cornell', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Brearley', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Smith', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('doctorate', 'O'), ('in', 'O'), ('clinical', 'O'), ('psychology', 'O'), ('from', 'O'), ('Baylor', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), ('is', 'O'), ('Marjorie', 'PERSON'), ('Schlesinger', 'PERSON'), ('Deane', 'PERSON'), (',', 'O'), ('chairman', 'O'), ('and', 'O'), ('publisher', 'O'), ('of', 'O'), ('the', 'O'), ('Tobe', 'O'), ('Report', 'O'), (',', 'O'), ('which', 'O'), ('covers', 'O'), ('fashion', 'O'), ('and', 'O'), ('merchandising', 'O'), ('trends', 'O'), ('in', 'O'), ('women', 'O'), (\"'s\", 'O'), ('and', 'O'), ('children', 'O'), (\"'s\", 'O'), ('wear', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('of', 'O'), ('Corporate', 'ORGANIZATION'), ('Property', 'ORGANIZATION'), ('Investors', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('limited', 'O'), ('partner', 'O'), ('in', 'O'), ('Lazard', 'O'), ('Fr', 'O'), ('eres', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Swain', 'PERSON'), (',', 'O'), ('a', 'O'), ('senior', 'O'), ('art', 'O'), ('director', 'O'), ('at', 'O'), ('Young', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Rubicam', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Kent', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('Colgate', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Los', 'ORGANIZATION'), ('Angeles', 'ORGANIZATION'), ('Art', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('principle', 'O'), ('of', 'O'), ('CWT', 'O'), ('Specialty', 'O'), ('Stores', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('England', 'LOCATION'), ('.', 'O')), (('Mrs.', 'PERSON'), ('A.', 'PERSON'), ('Guilford', 'PERSON'), ('Tobey', 'PERSON'), ('of', 'O'), ('Marblehead', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Oxford', 'LOCATION'), (',', 'O'), ('England', 'LOCATION'), (',', 'O'), ('has', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('her', 'O'), ('daughter', 'O'), (',', 'O'), ('Wendy', 'PERSON'), ('Lee', 'PERSON'), ('Burden', 'PERSON'), (',', 'O'), ('to', 'O'), ('John', 'PERSON'), ('William', 'PERSON'), ('Michael', 'PERSON'), ('Good', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('George', 'PERSON'), ('Burton', 'PERSON'), ('of', 'O'), ('Torrance', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Ernest', 'PERSON'), ('James', 'PERSON'), ('Good', 'PERSON'), ('of', 'O'), ('Palos', 'PERSON'), ('Verdes', 'PERSON'), (',', 'O'), ('Calif.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('to', 'O'), ('take', 'O'), ('place', 'O'), ('on', 'O'), ('Jan.', 'O'), ('19', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('also', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('William', 'PERSON'), ('A.', 'PERSON'), ('M.', 'PERSON'), ('Burden', 'PERSON'), ('3d', 'O'), ('of', 'O'), ('Washington', 'LOCATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('free-lance', 'O'), ('illustrator', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Burden', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('National', 'ORGANIZATION'), ('Cathedral', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), (',', 'O'), ('attended', 'O'), ('Cornell', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('is', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('the', 'O'), ('Parsons', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Design', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('employed', 'O'), ('at', 'O'), ('the', 'O'), ('Washington', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('for', 'ORGANIZATION'), ('Foreign', 'ORGANIZATION'), ('Policy', 'ORGANIZATION'), ('Research', 'ORGANIZATION'), (',', 'O'), ('part', 'O'), ('of', 'O'), ('the', 'O'), ('Johns', 'ORGANIZATION'), ('Hopkins', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Advanced', 'ORGANIZATION'), ('International', 'ORGANIZATION'), ('Studies', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('A.', 'PERSON'), ('M.', 'PERSON'), ('Burden', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('Northeast', 'LOCATION'), ('Harbor', 'LOCATION'), (',', 'O'), ('Me.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Hobe', 'O'), ('Sound', 'O'), (',', 'O'), ('Fla.', 'LOCATION'), ('.', 'O'), ('Burden', 'O'), ('was', 'O'), ('United', 'LOCATION'), ('States', 'LOCATION'), ('Ambassador', 'LOCATION'), ('to', 'O'), ('Belgium', 'LOCATION'), ('from', 'O'), ('1959', 'O'), ('to', 'O'), ('1961', 'O'), (',', 'O'), ('a', 'O'), ('regent', 'O'), ('of', 'O'), ('the', 'O'), ('Smithsonian', 'ORGANIZATION'), ('Institution', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('trustee', 'O'), ('and', 'O'), ('former', 'O'), ('president', 'O'), ('and', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('Museum', 'O'), ('of', 'O'), ('Modern', 'O'), ('Art', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Good', 'PERSON'), (',', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('California', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('manager', 'O'), ('of', 'O'), ('the', 'O'), ('Soho', 'LOCATION'), ('branch', 'O'), ('of', 'O'), ('the', 'O'), ('Leo', 'LOCATION'), ('Castelli', 'LOCATION'), ('Gallery', 'LOCATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('founder', 'O'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('Board', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Professional', 'ORGANIZATION'), ('Travel', 'ORGANIZATION'), ('Agents', 'ORGANIZATION'), ('in', 'O'), ('Newport', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), ('.', 'O')), (('Sook', 'PERSON'), ('Young', 'PERSON'), ('Yeu', 'PERSON'), ('and', 'O'), ('Gillis', 'PERSON'), ('Lockwood', 'PERSON'), ('Heller', 'PERSON'), (',', 'O'), ('both', 'O'), ('graduates', 'O'), ('of', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('California', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('were', 'O'), ('married', 'O'), ('yesterday', 'O'), ('at', 'O'), ('the', 'O'), ('Evangelical', 'ORGANIZATION'), ('Lutheran', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Zion-St', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Carl', 'PERSON'), ('Roemer', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('retain', 'O'), ('her', 'O'), ('name', 'O'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Yale', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Sang', 'PERSON'), ('Kwun', 'PERSON'), ('Yeu', 'PERSON'), ('of', 'O'), ('Atlanta', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Yeu', 'PERSON'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('major', 'O'), ('in', 'O'), ('the', 'O'), ('South', 'ORGANIZATION'), ('Korean', 'ORGANIZATION'), ('Air', 'ORGANIZATION'), ('Force', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('civil', 'O'), ('engineer', 'O'), ('in', 'O'), ('Atlanta', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Heller', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Samuel', 'PERSON'), ('Rutherford', 'PERSON'), ('Heller', 'PERSON'), ('of', 'O'), ('Seattle', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Washington', 'ORGANIZATION'), ('.', 'O'), ('Formerly', 'O'), ('an', 'O'), ('associate', 'O'), ('at', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Coudert', 'ORGANIZATION'), ('Brothers', 'ORGANIZATION'), (',', 'O'), ('he', 'O'), ('is', 'O'), ('to', 'O'), ('become', 'O'), ('an', 'O'), ('associate', 'O'), ('at', 'O'), ('East', 'ORGANIZATION'), ('Asia', 'ORGANIZATION'), ('Tax', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Financial', 'ORGANIZATION'), ('Consulting', 'ORGANIZATION'), ('Services', 'ORGANIZATION'), ('in', 'O'), ('Hong', 'LOCATION'), ('Kong', 'LOCATION'), (',', 'O'), ('where', 'O'), ('his', 'O'), ('maternal', 'O'), ('grandfather', 'O'), (',', 'O'), ('the', 'O'), ('late', 'O'), ('Yan', 'PERSON'), ('Man', 'PERSON'), ('Leung', 'PERSON'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('textile', 'O'), ('manufacturer', 'O'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('microbiologist', 'O'), ('at', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Washington', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('formerly', 'O'), ('an', 'O'), ('associate', 'O'), ('at', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Skadden', 'LOCATION'), (',', 'O'), ('Arps', 'LOCATION'), (',', 'O'), ('Slate', 'O'), (',', 'O'), ('Meagher', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Flom', 'ORGANIZATION'), (',', 'O'), ('plans', 'O'), ('to', 'O'), ('practice', 'O'), ('law', 'O'), ('in', 'O'), ('Hong', 'LOCATION'), ('Kong', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('V.', 'PERSON'), ('Burns', 'PERSON'), ('of', 'O'), ('Naples', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('M.', 'PERSON'), ('Bridget', 'PERSON'), ('Burns', 'PERSON'), (',', 'O'), ('to', 'O'), ('G.', 'PERSON'), ('Stafford', 'PERSON'), ('Bucknall', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('S.', 'PERSON'), ('Bucknall', 'PERSON'), ('of', 'O'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Tannersville', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Burns', 'O'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('Convent', 'O'), ('of', 'O'), ('the', 'O'), ('Sacred', 'O'), ('Heart', 'O'), ('in', 'O'), ('Greenwich', 'LOCATION'), ('and', 'O'), ('Boston', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('account', 'O'), ('manager', 'O'), ('for', 'O'), ('Hippwaters', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('personnel', 'O'), ('company', 'O'), ('in', 'O'), ('Greenwich', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('of', 'O'), ('Showcase', 'ORGANIZATION'), ('Communications', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Walters', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Burns', 'ORGANIZATION'), (',', 'O'), ('marketing', 'O'), ('and', 'O'), ('advertising', 'O'), ('companies', 'O'), ('in', 'O'), ('Fort', 'LOCATION'), ('Myers', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('assistant', 'O'), ('secretary', 'O'), ('of', 'O'), ('Chubb', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Son', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Gary', 'PERSON'), ('L.', 'PERSON'), ('Baum', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Jill', 'PERSON'), ('R.', 'PERSON'), ('Baum', 'PERSON'), (',', 'O'), ('to', 'O'), ('Bruce', 'PERSON'), ('L.', 'PERSON'), ('Goodman', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('James', 'PERSON'), ('M.', 'PERSON'), ('Goodman', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('Nov.', 'O'), ('17', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('an', 'O'), ('assistant', 'O'), ('treasurer', 'O'), ('of', 'O'), ('the', 'O'), ('Chase', 'ORGANIZATION'), ('Manhattan', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Riverdale', 'LOCATION'), ('Country', 'O'), ('Day', 'O'), ('School', 'O'), (',', 'O'), ('attended', 'O'), ('the', 'O'), ('Sorbonne', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('in', 'O'), ('Paris', 'LOCATION'), ('and', 'O'), ('graduated', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Barnard', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Fraser-Morris-Wellington', 'ORGANIZATION'), ('Ltd.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('wine', 'O'), ('merchant', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Goodman', 'PERSON'), (',', 'O'), ('a', 'O'), ('first', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Peter', 'ORGANIZATION'), ('R.', 'ORGANIZATION'), ('Friedman', 'ORGANIZATION'), ('Ltd.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('real-estate', 'O'), ('company', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Fieldston', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Public', 'ORGANIZATION'), ('Administration', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('National', 'ORGANIZATION'), ('Cleaning', 'ORGANIZATION'), ('Contractors', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Gerald', 'PERSON'), ('B.', 'PERSON'), ('Kasdin', 'PERSON'), ('of', 'O'), ('Short', 'LOCATION'), ('Hills', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Julie', 'PERSON'), ('S.', 'PERSON'), ('Kasdin', 'PERSON'), (',', 'O'), ('to', 'O'), ('Warren', 'PERSON'), ('S.', 'PERSON'), ('Odette', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Sol', 'PERSON'), ('W.', 'PERSON'), ('Odette', 'PERSON'), ('of', 'O'), ('Livingston', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('to', 'O'), ('be', 'O'), ('in', 'O'), ('November', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('an', 'O'), ('administrative', 'O'), ('assistant', 'O'), ('for', 'O'), ('the', 'O'), ('White', 'ORGANIZATION'), ('Rose', 'ORGANIZATION'), ('Meat', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Newark', 'LOCATION'), (',', 'O'), ('of', 'O'), ('which', 'O'), ('her', 'O'), ('father', 'O'), ('is', 'O'), ('senior', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('.', 'O'), ('She', 'O'), ('attended', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Hartford', 'ORGANIZATION'), ('and', 'O'), ('Northeastern', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Odette', 'PERSON'), ('is', 'O'), ('an', 'O'), ('associate', 'O'), ('of', 'O'), ('Odette', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Clarke', 'ORGANIZATION'), ('of', 'O'), ('Clifton', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('representatives', 'O'), ('of', 'O'), ('houseware', 'O'), ('manufacturers', 'O'), (',', 'O'), ('of', 'O'), ('which', 'O'), ('his', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Newark', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('in', 'O'), ('Livingston', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('attended', 'O'), ('Ithaca', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Gladys', 'PERSON'), ('Odette', 'PERSON'), (',', 'O'), ('is', 'O'), ('retired', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('women', 'O'), (\"'s\", 'O'), ('division', 'O'), ('of', 'O'), ('the', 'O'), ('United', 'ORGANIZATION'), ('Jewish', 'ORGANIZATION'), ('Federation', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Metro', 'ORGANIZATION'), ('West', 'LOCATION'), ('New', 'LOCATION'), ('Jersey', 'LOCATION'), ('in', 'O'), ('East', 'O'), ('Orange', 'O'), ('.', 'O')), (('Joan', 'PERSON'), ('Haaren', 'PERSON'), ('Wolfe', 'PERSON'), ('of', 'O'), ('Wilton', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('has', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('her', 'O'), ('daughter', 'O'), (',', 'O'), ('Lisa', 'PERSON'), ('R.', 'PERSON'), ('Wolfe', 'PERSON'), (',', 'O'), ('to', 'O'), ('Mark', 'PERSON'), ('J.', 'PERSON'), ('Vallely', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Wilfred', 'PERSON'), ('F.', 'PERSON'), ('Vallely', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Old', 'LOCATION'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('Nov.', 'O'), ('24', 'O'), ('.', 'O'), ('Miss', 'O'), ('Wolfe', 'PERSON'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('a', 'O'), ('daughter', 'O'), ('also', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Robert', 'PERSON'), ('P.', 'PERSON'), ('Wolfe', 'PERSON'), ('of', 'O'), ('Riverside', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('television', 'O'), ('commercial', 'O'), ('actress', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('New', 'ORGANIZATION'), ('Hampshire', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('chairman', 'O'), ('of', 'O'), ('Robert', 'ORGANIZATION'), ('Reid', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('hotel', 'O'), ('representation', 'O'), ('firm', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), ('is', 'O'), ('registrar', 'O'), ('of', 'O'), ('the', 'O'), ('GTE', 'ORGANIZATION'), ('Management', 'ORGANIZATION'), ('Development', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('in', 'O'), ('Norwalk', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('Brunswick', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Hamilton', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O')), (('Kim', 'PERSON'), ('Wallace', 'PERSON'), ('Pauly', 'PERSON'), ('and', 'O'), ('Stephen', 'PERSON'), ('Birdsall', 'PERSON'), ('Irish', 'PERSON'), ('plan', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('Nov.', 'O'), ('24', 'O'), (',', 'O'), ('her', 'O'), ('mother', 'O'), (',', 'O'), ('Mrs.', 'PERSON'), ('Wilmah', 'PERSON'), ('V.', 'PERSON'), ('Wallace', 'PERSON'), ('of', 'O'), ('Montclair', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('has', 'O'), ('announced', 'O'), ('.', 'O'), ('Miss', 'O'), ('Pauly', 'O'), ('is', 'O'), ('a', 'O'), ('daughter', 'O'), ('also', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Melvin', 'PERSON'), ('J.', 'PERSON'), ('Pauly', 'PERSON'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('Montclair', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('supervisor', 'O'), ('of', 'O'), ('customer', 'O'), ('relations', 'O'), ('at', 'O'), ('Cellular', 'O'), ('One', 'O'), (',', 'O'), ('a', 'O'), ('mobile-telephone', 'O'), ('company', 'O'), ('in', 'O'), ('Rockville', 'LOCATION'), (',', 'O'), ('Md.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('mechanical', 'O'), ('engineer', 'O'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('great-great-granddaughter', 'O'), ('of', 'O'), ('John', 'PERSON'), ('Norris', 'PERSON'), (',', 'O'), ('business', 'O'), ('manager', 'O'), ('of', 'O'), ('from', 'O'), ('1898', 'O'), ('to', 'O'), ('1908', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Irish', 'O'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Edwin', 'PERSON'), ('F.', 'PERSON'), ('Irish', 'PERSON'), ('of', 'O'), ('Rockville', 'LOCATION'), (',', 'O'), ('received', 'O'), ('a', 'O'), ('B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('Washington', 'LOCATION'), ('and', 'O'), ('Lee', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('B.S.', 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Maryland', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('manager', 'O'), ('in', 'O'), ('software', 'O'), ('development', 'O'), ('at', 'O'), ('GTE', 'ORGANIZATION'), ('CSC', 'ORGANIZATION'), ('Communications', 'ORGANIZATION'), ('Systems', 'ORGANIZATION'), ('in', 'O'), ('Reston', 'LOCATION'), (',', 'O'), ('Va.', 'LOCATION'), ('.', 'O')), (('Barbara', 'PERSON'), ('Ann', 'PERSON'), ('Ferrara', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Joseph', 'PERSON'), ('E.', 'PERSON'), ('Ferrara', 'PERSON'), ('of', 'O'), ('Montvale', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Richard', 'PERSON'), ('William', 'PERSON'), ('Kurz', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('Kurz', 'PERSON'), ('of', 'O'), ('Chatham', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('The', 'O'), ('Rev.', 'R'), ('James', 'PERSON'), ('Turro', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('Our', 'LOCATION'), ('Lady', 'LOCATION'), ('Mother', 'LOCATION'), ('of', 'LOCATION'), ('the', 'LOCATION'), ('Church', 'LOCATION'), ('in', 'O'), ('Woodcliff', 'LOCATION'), ('Lake', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('assisted', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Mary', 'PERSON'), ('Heyne', 'PERSON'), (',', 'O'), ('a', 'O'), ('Congregational', 'O'), ('minister', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Kurz', 'PERSON'), ('was', 'O'), ('an', 'O'), ('assistant', 'O'), ('vice', 'O'), ('president', 'O'), ('in', 'O'), ('the', 'O'), ('lending', 'O'), ('division', 'O'), ('of', 'O'), ('Chemical', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('engineer', 'O'), ('for', 'O'), ('the', 'O'), ('Singer', 'O'), ('-', 'O'), ('Kearfott', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('engineering', 'O'), ('concern', 'O'), ('in', 'O'), ('Little', 'LOCATION'), ('Falls', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Bernadette', 'PERSON'), ('Ferrara', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('registered', 'O'), ('nurse', 'O'), ('in', 'O'), ('the', 'O'), ('rehabilitation', 'O'), ('unit', 'O'), ('of', 'O'), ('the', 'O'), ('Bergen', 'LOCATION'), ('Pines', 'LOCATION'), ('Hospital', 'LOCATION'), ('in', 'O'), ('Paramus', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Pingry', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Hillside', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Swarthmore', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('International', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Public', 'ORGANIZATION'), ('Affairs', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('retired', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Horizon', 'ORGANIZATION'), ('Bancorporation', 'ORGANIZATION'), ('in', 'O'), ('Morristown', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Ruth', 'PERSON'), ('Helen', 'PERSON'), ('Marr', 'PERSON'), ('Kurz', 'PERSON'), (',', 'O'), ('is', 'O'), ('president', 'O'), ('and', 'O'), ('owner', 'O'), ('of', 'O'), ('the', 'O'), ('Madison', 'O'), ('-LRB-', 'O'), ('N.J.', 'LOCATION'), ('-RRB-', 'O'), ('Travel', 'ORGANIZATION'), ('Bureau', 'ORGANIZATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Edward', 'PERSON'), ('A.', 'PERSON'), ('Kilroy', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Shaker', 'LOCATION'), ('Heights', 'LOCATION'), (',', 'O'), ('Ohio', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Mari', 'PERSON'), ('Angela', 'PERSON'), ('Kilroy', 'PERSON'), (',', 'O'), ('to', 'O'), ('William', 'PERSON'), ('Pike', 'PERSON'), ('Talbert', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('F.', 'PERSON'), ('Talbert', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('A', 'O'), ('summer', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('Miss', 'O'), ('Kilroy', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('Hathaway', 'ORGANIZATION'), ('Brown', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Hollins', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Virginia', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('financial', 'O'), ('marketing', 'O'), ('representative', 'O'), ('of', 'O'), ('the', 'O'), ('International', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('Machines', 'ORGANIZATION'), ('Credit', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('former', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('Kilroy', 'ORGANIZATION'), ('Steel', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('of', 'O'), ('Cleveland', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Talbert', 'PERSON'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Morgan', 'ORGANIZATION'), ('Stanley', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('investment', 'O'), ('bankers', 'O'), (',', 'O'), ('and', 'O'), ('a', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('International', 'ORGANIZATION'), ('Tennis', 'ORGANIZATION'), ('Hall', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Fame', 'ORGANIZATION'), (',', 'O'), ('of', 'O'), ('which', 'O'), ('his', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('member', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bridegroom', 'G'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Choate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Williams', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('United', 'ORGANIZATION'), ('States', 'ORGANIZATION'), ('Banknote', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (',', 'O'), ('was', 'O'), ('ranked', 'O'), ('among', 'O'), ('the', 'O'), ('10', 'O'), ('top', 'O'), ('tennis', 'O'), ('players', 'O'), ('in', 'O'), ('the', 'O'), ('country', 'O'), ('for', 'O'), ('13', 'O'), ('years', 'O'), ('.', 'O'), ('He', 'O'), ('was', 'O'), ('captain', 'O'), ('of', 'O'), ('the', 'O'), ('United', 'LOCATION'), ('States', 'LOCATION'), ('Davis', 'O'), ('Cup', 'O'), ('team', 'O'), ('for', 'O'), ('five', 'O'), ('years', 'O'), ('in', 'O'), ('the', 'O'), ('1950', 'O'), (\"'s\", 'O'), ('.', 'O'), ('He', 'O'), ('later', 'O'), ('served', 'O'), ('for', 'O'), ('six', 'O'), ('years', 'O'), ('as', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('United', 'O'), ('States', 'O'), ('Open', 'O'), ('tennis', 'O'), ('tournament', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Donald', 'PERSON'), ('Phinney', 'PERSON'), ('Gregg', 'PERSON'), ('of', 'O'), ('Bethesda', 'LOCATION'), (',', 'O'), ('Md.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Putney', 'LOCATION'), (',', 'O'), ('Vt.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Lucy', 'PERSON'), ('Steuart', 'PERSON'), ('Gregg', 'PERSON'), (',', 'O'), ('to', 'O'), ('Christopher', 'PERSON'), ('Taylor', 'PERSON'), ('Buckley', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('F.', 'PERSON'), ('Buckley', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Stamford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Williams', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('she', 'O'), ('was', 'O'), ('elected', 'O'), ('to', 'O'), ('Phi', 'LOCATION'), ('Beta', 'LOCATION'), ('Kappa', 'LOCATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('reports', 'O'), ('officer', 'O'), ('for', 'O'), ('the', 'O'), ('State', 'ORGANIZATION'), ('Department', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('the', 'O'), ('assistant', 'O'), ('to', 'O'), ('the', 'O'), ('Vice', 'O'), ('President', 'O'), ('for', 'O'), ('national', 'O'), ('security', 'O'), ('affairs', 'O'), (',', 'O'), ('retired', 'O'), ('from', 'O'), ('the', 'O'), ('Central', 'ORGANIZATION'), ('Intelligence', 'ORGANIZATION'), ('Agency', 'ORGANIZATION'), ('in', 'O'), ('1982', 'O'), ('after', 'O'), ('31', 'O'), ('years', 'O'), ('.', 'O'), ('Miss', 'O'), ('Gregg', 'PERSON'), (\"'s\", 'O'), ('mother', 'O'), (',', 'O'), ('Margaret', 'PERSON'), ('Curry', 'PERSON'), ('Gregg', 'PERSON'), (',', 'O'), ('is', 'O'), ('in', 'O'), ('charge', 'O'), ('of', 'O'), ('membership', 'O'), ('and', 'O'), ('programs', 'O'), ('for', 'O'), ('the', 'O'), ('Asia', 'ORGANIZATION'), ('Society', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('R.', 'PERSON'), ('Eugene', 'PERSON'), ('Curry', 'PERSON'), ('of', 'O'), ('Armonk', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('where', 'O'), ('Mr.', 'PERSON'), ('Curry', 'PERSON'), ('is', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('Mianus', 'LOCATION'), ('River', 'LOCATION'), ('Gorge', 'LOCATION'), (',', 'O'), ('a', 'O'), ('nature', 'O'), ('conservancy', 'O'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('also', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Abel', 'PERSON'), ('J.', 'PERSON'), ('Gregg', 'PERSON'), ('of', 'O'), ('Washington', 'LOCATION'), (',', 'O'), ('whose', 'O'), ('late', 'O'), ('husband', 'O'), ('was', 'O'), ('the', 'O'), ('national', 'O'), ('secretary', 'O'), ('of', 'O'), ('boys', 'O'), (\"'\", 'O'), ('work', 'O'), ('of', 'O'), ('the', 'O'), ('Young', 'O'), ('Men', 'O'), (\"'s\", 'O'), ('Christian', 'ORGANIZATION'), ('Asssociation', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Buckley', 'PERSON'), (',', 'O'), ('the', 'O'), ('author', 'O'), ('of', 'O'), (\"''\", 'O'), ('Steaming', 'O'), ('to', 'O'), ('Bamboola', 'LOCATION'), (':', 'O'), ('The', 'O'), ('World', 'O'), ('of', 'O'), ('a', 'O'), ('Tramp', 'O'), ('Freighter', 'O'), (',', 'O'), (\"''\", 'O'), ('is', 'O'), ('the', 'O'), ('editor-at', 'O'), ('-', 'O'), ('large', 'O'), ('for', 'O'), ('Esquire', 'ORGANIZATION'), ('magazine', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('former', 'O'), ('speech', 'O'), ('writer', 'O'), ('for', 'O'), ('Vice', 'O'), ('President', 'O'), ('Bush', 'PERSON'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Portsmouth', 'ORGANIZATION'), ('Abbey', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Yale', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('F.', 'PERSON'), ('Buckley', 'PERSON'), ('of', 'O'), ('Sharon', 'PERSON'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Camden', 'LOCATION'), (',', 'O'), ('S.C.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Buckley', 'PERSON'), (',', 'O'), ('who', 'O'), ('held', 'O'), ('controlling', 'O'), ('interests', 'O'), ('in', 'O'), ('several', 'O'), ('oil', 'O'), ('companies', 'O'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Austin', 'PERSON'), ('C.', 'PERSON'), ('Taylor', 'PERSON'), ('of', 'O'), ('Vancouver', 'LOCATION'), (',', 'O'), ('British', 'LOCATION'), ('Columbia', 'LOCATION'), (',', 'O'), ('where', 'O'), ('Mr.', 'PERSON'), ('Taylor', 'PERSON'), ('was', 'O'), ('an', 'O'), ('industrialist', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Buckley', 'PERSON'), (\"'s\", 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('columnist', 'O'), (',', 'O'), ('author', 'O'), ('and', 'O'), ('television', 'O'), ('personality', 'O'), ('.', 'O')), (('Deborah', 'PERSON'), ('J.', 'PERSON'), ('Fanton', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Dwight', 'PERSON'), ('F.', 'PERSON'), ('Fanton', 'PERSON'), ('of', 'O'), ('Fairfield', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Richard', 'PERSON'), ('A.', 'PERSON'), ('Manley', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Manley', 'PERSON'), ('of', 'O'), ('Hingham', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('George', 'PERSON'), ('Coxe', 'PERSON'), ('Bland', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), (',', 'O'), ('assisted', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('John', 'PERSON'), ('Morton', 'PERSON'), ('Gallop', 'PERSON'), (',', 'O'), ('at', 'O'), ('the', 'O'), ('Greenfield', 'ORGANIZATION'), ('Hill', 'ORGANIZATION'), ('Congregational', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Fairfield', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('church', 'O'), (\"'s\", 'O'), ('first', 'O'), ('minister', 'O'), (',', 'O'), ('the', 'O'), ('Rev.', 'R'), ('John', 'PERSON'), ('Goodsell', 'PERSON'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('ancestor', 'O'), ('of', 'O'), ('the', 'O'), ('bride', 'B'), ('.', 'O'), ('Roma', 'PERSON'), ('R.', 'PERSON'), ('McCaffrey', 'PERSON'), ('was', 'O'), ('her', 'O'), ('sister', 'O'), (\"'s\", 'O'), ('matron', 'O'), ('of', 'O'), ('honor', 'O'), ('and', 'O'), ('John', 'PERSON'), ('Whipple', 'PERSON'), ('Filoon', 'PERSON'), ('3d', 'O'), ('the', 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retaining', 'O'), ('her', 'O'), ('name', 'O'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('account', 'O'), ('specialist', 'O'), ('for', 'O'), ('Gray', 'ORGANIZATION'), ('Strayton', 'ORGANIZATION'), ('International', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('public-relations', 'O'), ('and', 'O'), ('advertising', 'O'), ('concern', 'O'), ('in', 'O'), ('Wellesley', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('the', 'O'), ('Greens', 'ORGANIZATION'), ('Farms', 'ORGANIZATION'), ('-LRB-', 'O'), ('Conn.', 'LOCATION'), ('-RRB-', 'O'), ('Academy', 'O'), (',', 'O'), ('and', 'O'), ('she', 'O'), ('and', 'O'), ('Mr.', 'PERSON'), ('Manley', 'PERSON'), ('graduated', 'O'), ('from', 'O'), ('Colby', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('Bridgeport', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Pullman', 'PERSON'), (',', 'O'), ('Comley', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Bradley', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Reeves', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Roma', 'PERSON'), ('Fanton', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('broker', 'O'), ('for', 'O'), ('Merrill', 'ORGANIZATION'), ('Lynch', 'ORGANIZATION'), ('Realty', 'ORGANIZATION'), ('in', 'O'), ('Fairfield', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('brother', 'O'), (',', 'O'), ('Jonathan', 'PERSON'), ('F.', 'PERSON'), ('Fanton', 'PERSON'), (',', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('for', 'ORGANIZATION'), ('Social', 'ORGANIZATION'), ('Research', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('grandfather', 'O'), ('the', 'O'), ('late', 'O'), ('Willard', 'PERSON'), ('Fanton', 'PERSON'), ('was', 'O'), ('First', 'O'), ('Selectman', 'O'), ('of', 'O'), ('Weston', 'LOCATION'), (',', 'O'), ('where', 'O'), ('the', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('ancestor', 'O'), ('Jonathan', 'PERSON'), ('Fanton', 'PERSON'), ('settled', 'O'), ('in', 'O'), ('1680', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Manley', 'PERSON'), ('is', 'O'), ('a', 'O'), ('research', 'O'), ('associate', 'O'), ('with', 'O'), ('the', 'O'), ('Boston', 'ORGANIZATION'), ('Municipal', 'ORGANIZATION'), ('Research', 'ORGANIZATION'), ('Bureau', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Massachusetts', 'ORGANIZATION'), ('Taxpayers', 'ORGANIZATION'), ('Foundation', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), ('.', 'O')), (('Christ', 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Rye', 'O'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('the', 'O'), ('setting', 'O'), ('yesterday', 'O'), ('for', 'O'), ('the', 'O'), ('wedding', 'O'), ('of', 'O'), ('Carolyn', 'PERSON'), ('Jeanne', 'PERSON'), ('Charon', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Kenneth', 'PERSON'), ('A.', 'PERSON'), ('Charon', 'PERSON'), ('of', 'O'), ('White', 'LOCATION'), ('Plains', 'LOCATION'), (',', 'O'), ('Paris', 'LOCATION'), ('and', 'O'), ('Leysin', 'LOCATION'), (',', 'O'), ('Switzerland', 'LOCATION'), (',', 'O'), ('to', 'O'), ('Scott', 'PERSON'), ('Douglas', 'PERSON'), ('Dutton', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Robert', 'PERSON'), ('F.', 'PERSON'), ('Dutton', 'PERSON'), ('of', 'O'), ('Massapequa', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Gloria', 'PERSON'), ('Knab', 'PERSON'), ('Dutton', 'PERSON'), ('of', 'O'), ('Los', 'LOCATION'), ('Angeles', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Edward', 'PERSON'), ('Johnson', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('.', 'O'), ('Diane', 'PERSON'), ('Oddo', 'PERSON'), ('was', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('for', 'O'), ('her', 'O'), ('cousin', 'O'), ('and', 'O'), ('Ross', 'PERSON'), ('Dutton', 'PERSON'), ('was', 'O'), ('his', 'O'), ('brother', 'O'), (\"'s\", 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Dutton', 'PERSON'), (',', 'O'), ('a', 'O'), ('flight', 'O'), ('attendant', 'O'), ('for', 'O'), ('Delta', 'ORGANIZATION'), ('Airlines', 'ORGANIZATION'), (',', 'O'), ('for', 'O'), ('which', 'O'), ('her', 'O'), ('husband', 'O'), ('is', 'O'), ('a', 'O'), ('flight', 'O'), ('operations', 'O'), ('director', 'O'), ('in', 'O'), ('Pompano', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Paris', 'ORGANIZATION'), ('and', 'O'), ('attended', 'O'), ('Lafayette', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('group', 'O'), ('director', 'O'), ('for', 'O'), ('the', 'O'), ('International', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('Machines', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('White', 'LOCATION'), ('Plains', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Dutton', 'PERSON'), ('graduated', 'O'), ('from', 'O'), ('Broward', 'ORGANIZATION'), ('Community', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('retired', 'O'), ('as', 'O'), ('manager', 'O'), ('of', 'O'), ('the', 'O'), ('Pan', 'ORGANIZATION'), ('American', 'ORGANIZATION'), ('World', 'ORGANIZATION'), ('Airways', 'ORGANIZATION'), ('jet', 'O'), ('base', 'O'), ('at', 'O'), ('Kennedy', 'LOCATION'), ('International', 'LOCATION'), ('Airport', 'LOCATION'), ('.', 'O')), (('Clare', 'PERSON'), ('Irene', 'PERSON'), ('Burton', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Ted', 'PERSON'), ('Raymond', 'PERSON'), ('Burton', 'PERSON'), ('of', 'O'), ('Corpus', 'LOCATION'), ('Christi', 'LOCATION'), (',', 'O'), ('Tex.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Polson', 'PERSON'), (',', 'O'), ('Mont.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Joshua', 'PERSON'), ('Johnson', 'PERSON'), ('Weeks', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Dorothy', 'PERSON'), ('Johnson', 'PERSON'), ('Henry', 'PERSON'), ('of', 'O'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Edgartown', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Joshua', 'PERSON'), ('William', 'PERSON'), ('Weeks', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('Canaan', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Walter', 'PERSON'), ('Wagoner', 'PERSON'), ('performed', 'O'), ('a', 'O'), ('Protestant', 'ORGANIZATION'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Round', 'ORGANIZATION'), ('Hill', 'ORGANIZATION'), ('Community', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Greenwich', 'LOCATION'), ('.', 'O'), ('Berit', 'PERSON'), ('Louise', 'PERSON'), ('Burton', 'PERSON'), ('was', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('for', 'O'), ('her', 'O'), ('sister', 'O'), ('and', 'O'), ('William', 'PERSON'), ('Howard', 'PERSON'), ('Weeks', 'PERSON'), ('best', 'O'), ('man', 'O'), ('for', 'O'), ('his', 'O'), ('brother', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Weeks', 'O'), (',', 'O'), ('an', 'O'), ('administrative', 'O'), ('assistant', 'O'), ('for', 'O'), ('the', 'O'), ('Greenwich', 'LOCATION'), ('investment', 'O'), ('counseling', 'O'), ('firm', 'O'), ('Thorson', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Brown', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Plunkett', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Northfield', 'ORGANIZATION'), ('Mount', 'ORGANIZATION'), ('Hermon', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Denver', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retired', 'O'), ('from', 'O'), ('the', 'O'), ('Exxon', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('manager', 'O'), ('for', 'O'), ('Esso', 'ORGANIZATION'), ('Overseas', 'ORGANIZATION'), ('Limited', 'ORGANIZATION'), ('in', 'O'), ('Venezuela', 'LOCATION'), (',', 'O'), ('Nicaragua', 'LOCATION'), ('and', 'O'), ('Aruba', 'LOCATION'), (',', 'O'), ('Netherlands', 'LOCATION'), ('Antilles', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Weeks', 'O'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Greenwich', 'LOCATION'), ('Country', 'O'), ('Day', 'O'), ('School', 'O'), ('and', 'O'), ('Tabor', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), (',', 'O'), ('attended', 'O'), ('Cornell', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Denver', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('the', 'O'), ('service', 'O'), ('writer', 'O'), ('of', 'O'), ('the', 'O'), ('Mitsubishi', 'ORGANIZATION'), ('automobile', 'O'), ('division', 'O'), ('at', 'O'), ('the', 'O'), ('Pray', 'ORGANIZATION'), ('Automobile', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Greenwich', 'LOCATION'), ('and', 'O'), ('also', 'O'), ('is', 'O'), ('co-owner', 'O'), ('with', 'O'), ('his', 'O'), ('brother', 'O'), ('of', 'O'), ('the', 'O'), ('Howard', 'PERSON'), ('Johnson', 'PERSON'), ('Restaurant', 'O'), ('in', 'O'), ('Darien', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('grandfather', 'O'), (',', 'O'), ('the', 'O'), ('late', 'O'), ('Howard', 'PERSON'), ('D.', 'PERSON'), ('Johnson', 'PERSON'), ('of', 'O'), ('Boston', 'LOCATION'), (',', 'O'), ('was', 'O'), ('the', 'O'), ('founder', 'O'), ('of', 'O'), ('the', 'O'), ('Howard', 'ORGANIZATION'), ('Johnson', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('the', 'O'), ('food', 'O'), ('and', 'O'), ('lodging', 'O'), ('chain', 'O'), ('.', 'O')), (('Judy', 'PERSON'), ('Amanda', 'PERSON'), ('Block', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Lionel', 'PERSON'), ('V.', 'PERSON'), ('Block', 'PERSON'), ('of', 'O'), ('Toronto', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Jeffrey', 'PERSON'), ('Scott', 'PERSON'), ('Woodman', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Charles', 'PERSON'), ('E.', 'PERSON'), ('Woodman', 'PERSON'), ('of', 'O'), ('Laurel', 'ORGANIZATION'), ('Hollow', 'ORGANIZATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('The', 'O'), ('ceremony', 'O'), ('was', 'O'), ('performed', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('T.', 'PERSON'), ('Carleton', 'PERSON'), ('Lee', 'PERSON'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('John', 'ORGANIZATION'), (\"'s\", 'O'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Cold', 'O'), ('Spring', 'O'), ('Harbor', 'O'), (',', 'O'), ('L.I.', 'LOCATION'), ('Mrs.', 'PERSON'), ('Woodman', 'PERSON'), (',', 'O'), ('until', 'O'), ('recently', 'O'), ('executive', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Mississauga', 'ORGANIZATION'), ('Symphony', 'ORGANIZATION'), ('Orchestra', 'ORGANIZATION'), ('in', 'O'), ('Toronto', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('York', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Toronto', 'LOCATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('journalism', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Western', 'ORGANIZATION'), ('Ontario', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('psychologist', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Woodman', 'PERSON'), (',', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('Middlebury', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('trader', 'O'), ('for', 'O'), ('Thomson', 'ORGANIZATION'), ('McKinnon', 'ORGANIZATION'), ('Securities', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Smith', 'ORGANIZATION'), ('Barney', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Harris', 'ORGANIZATION'), ('Upham', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Charles', 'PERSON'), ('W.', 'PERSON'), ('Trout', 'PERSON'), (',', 'O'), ('dean', 'O'), ('of', 'O'), ('the', 'O'), ('faculty', 'O'), ('and', 'O'), ('provost', 'O'), ('of', 'O'), ('Colgate', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('Katherine', 'PERSON'), ('Taylor', 'PERSON'), ('Griffiths', 'PERSON'), (',', 'O'), ('a', 'O'), ('sixth-grade', 'O'), ('teacher', 'O'), ('at', 'O'), ('the', 'O'), ('Winsor', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), (',', 'O'), ('were', 'O'), ('married', 'O'), ('yesterday', 'O'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Elizabeth', 'PERSON'), ('Alexander', 'PERSON'), (',', 'O'), ('a', 'O'), ('Methodist', 'O'), ('minister', 'O'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Friends', 'ORGANIZATION'), ('Meeting', 'ORGANIZATION'), ('House', 'ORGANIZATION'), ('in', 'O'), ('North', 'LOCATION'), ('Sandwich', 'LOCATION'), (',', 'O'), ('N.H.', 'LOCATION'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Katherine', 'PERSON'), ('W.', 'PERSON'), ('Taylor', 'PERSON'), ('of', 'O'), ('Storrs', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Paul', 'PERSON'), ('N.', 'PERSON'), ('Taylor', 'PERSON'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Mount', 'ORGANIZATION'), ('Holyoke', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('professor', 'O'), ('of', 'O'), ('economics', 'O'), ('at', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Connecticut', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('previous', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), (',', 'O'), ('as', 'O'), ('did', 'O'), ('that', 'O'), ('of', 'O'), ('her', 'O'), ('husband', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Trout', 'O'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Elizabeth', 'PERSON'), ('Hathaway', 'PERSON'), ('Trout', 'PERSON'), ('of', 'O'), ('Oneida', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Charles', 'PERSON'), ('W.', 'PERSON'), ('Trout', 'PERSON'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Amherst', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('doctorate', 'O'), ('in', 'O'), ('history', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('sales', 'O'), ('manager', 'O'), ('for', 'O'), ('Oneida', 'ORGANIZATION'), ('Ltd.', 'ORGANIZATION'), (',', 'O'), ('the', 'O'), ('silversmiths', 'O'), ('.', 'O')), (('Courtney', 'PERSON'), ('Ann', 'PERSON'), ('Carpenter', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Oliver', 'PERSON'), ('T.', 'PERSON'), ('Carpenter', 'PERSON'), ('of', 'O'), ('Manhasset', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Dr.', 'PERSON'), ('Nicholas', 'PERSON'), ('P.', 'PERSON'), ('Bruno', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Louis', 'PERSON'), ('C.', 'PERSON'), ('Bruno', 'PERSON'), ('of', 'O'), ('Providence', 'LOCATION'), (',', 'O'), ('R.I.', 'LOCATION'), ('The', 'O'), ('Rev.', 'R'), ('Charles', 'PERSON'), ('Calcagni', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('First', 'ORGANIZATION'), ('Congregational', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Manhasset', 'ORGANIZATION'), (',', 'O'), ('assisted', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('John', 'PERSON'), ('Deniston', 'PERSON'), (',', 'O'), ('a', 'O'), ('Roman', 'O'), ('Catholic', 'O'), ('priest', 'R'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Bruno', 'PERSON'), ('graduated', 'O'), ('from', 'O'), ('Connecticut', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('she', 'O'), ('was', 'O'), ('elected', 'O'), ('to', 'O'), ('Phi', 'O'), ('Beta', 'O'), ('Kappa', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Teco', 'ORGANIZATION'), ('Enterprises', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('manufacturer', 'O'), ('of', 'O'), ('electrical', 'O'), ('equipment', 'O'), ('in', 'O'), ('Manhasset', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('Brown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('St.', 'ORGANIZATION'), ('Louis', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('completing', 'O'), ('his', 'O'), ('residency', 'O'), ('in', 'O'), ('dermatology', 'O'), ('at', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Maryland', 'ORGANIZATION'), ('Hospital', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('retired', 'O'), ('physician', 'O'), ('.', 'O')), (('Amy', 'PERSON'), ('Newman', 'PERSON'), ('Lowry', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Donald', 'PERSON'), ('I.', 'PERSON'), ('Lowry', 'PERSON'), ('of', 'O'), ('Cincinnati', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Robert', 'PERSON'), ('William', 'PERSON'), ('Poole', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Donald', 'PERSON'), ('F.', 'PERSON'), ('Philbrick', 'PERSON'), ('of', 'O'), ('Portland', 'LOCATION'), (',', 'O'), ('Me.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Burnell', 'PERSON'), ('Poole', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Englewood', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('The', 'O'), ('Rev.', 'R'), ('Charles', 'PERSON'), ('S.', 'PERSON'), ('Temple', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'O'), ('the', 'O'), ('Transfiguration', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('assisted', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Dr.', 'PERSON'), ('Charles', 'PERSON'), ('B.', 'PERSON'), ('Ketchum', 'PERSON'), (',', 'O'), ('a', 'O'), ('professor', 'O'), ('of', 'O'), ('religion', 'O'), ('and', 'O'), ('philosophy', 'O'), ('at', 'O'), ('Allegheny', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('cousin', 'O'), ('of', 'O'), ('the', 'O'), ('bridegroom', 'G'), ('.', 'O'), ('Sarah', 'PERSON'), ('Lowry', 'PERSON'), ('Fasoldt', 'PERSON'), ('was', 'O'), ('her', 'O'), ('sister', 'O'), (\"'s\", 'O'), ('matron', 'O'), ('of', 'O'), ('honor', 'O'), ('and', 'O'), ('Katherine', 'PERSON'), ('Anne', 'PERSON'), ('Lowry', 'PERSON'), ('was', 'O'), ('her', 'O'), ('aunt', 'O'), (\"'s\", 'O'), ('flower', 'O'), ('girl', 'O'), ('.', 'O'), ('David', 'PERSON'), ('Poole', 'PERSON'), ('was', 'O'), ('his', 'O'), ('brother', 'O'), (\"'s\", 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Poole', 'PERSON'), (',', 'O'), ('a', 'O'), ('freelance', 'O'), ('artist', 'O'), ('working', 'O'), ('with', 'O'), ('Luckett', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('advertising', 'O'), ('and', 'O'), ('design', 'O'), ('concern', 'O'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Gould', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('in', 'O'), ('Bethel', 'LOCATION'), (',', 'O'), ('Me.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Vermont', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('spent', 'O'), ('her', 'O'), ('junior', 'O'), ('year', 'O'), ('in', 'O'), ('the', 'O'), ('Sarah', 'PERSON'), ('Lawrence', 'PERSON'), ('Art', 'O'), ('Program', 'O'), ('in', 'O'), ('La', 'O'), ('Coste', 'O'), (',', 'O'), ('France', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Procter', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Gamble', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Poole', 'PERSON'), (',', 'O'), ('an', 'O'), ('officer', 'O'), ('in', 'O'), ('the', 'O'), ('international', 'O'), ('division', 'O'), ('of', 'O'), ('the', 'O'), ('Chemical', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Phillips', 'ORGANIZATION'), ('Exeter', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('and', 'O'), ('Wesleyan', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('broadcasting', 'O'), ('and', 'O'), ('advertising', 'O'), ('executive', 'O'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('Chellis', 'LOCATION'), (',', 'O'), ('Conwell', 'PERSON'), (',', 'O'), ('Gale', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Poole', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('Portland', 'LOCATION'), ('advertising', 'O'), ('agency', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Poole', 'PERSON'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('William', 'PERSON'), ('Arthur', 'PERSON'), ('Mitchell', 'PERSON'), ('of', 'O'), ('Cincinnati', 'LOCATION'), (',', 'O'), ('former', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('Central', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('of', 'O'), ('Cincinnati', 'LOCATION'), ('and', 'O'), ('a', 'O'), ('former', 'O'), ('partner', 'O'), ('in', 'O'), ('J.', 'ORGANIZATION'), ('P.', 'ORGANIZATION'), ('Morgan', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('JeanBlodgett', 'O'), (',', 'O'), ('Fund-Raiser', 'O'), (',', 'O'), ('Has', 'O'), ('Nuptials', 'O'), ('Jean', 'PERSON'), ('Cameron', 'PERSON'), ('Blodgett', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('Winthrop', 'PERSON'), ('Blodgett', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Wilton', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Daniel', 'PERSON'), ('John', 'PERSON'), ('Bruns', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Kenneth', 'PERSON'), ('H.', 'PERSON'), ('Bruns', 'PERSON'), ('of', 'O'), ('Melbourne', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Douglas', 'PERSON'), ('W.', 'PERSON'), ('Abbott', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Wilton', 'ORGANIZATION'), ('Congregational', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Bruns', 'PERSON'), (',', 'O'), ('assistant', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('Administration', 'ORGANIZATION'), ('Annual', 'O'), ('Fund', 'O'), (',', 'O'), ('graduated', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Tufts', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('Junior', 'ORGANIZATION'), ('League', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Boston', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('retired', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('United', 'ORGANIZATION'), ('Way', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Tri', 'ORGANIZATION'), ('-', 'O'), ('State', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Jean', 'PERSON'), ('Cameron', 'PERSON'), ('Brown', 'PERSON'), ('Blodgett', 'PERSON'), (',', 'O'), ('is', 'O'), ('retired', 'O'), ('and', 'O'), ('was', 'O'), ('a', 'O'), ('geologist', 'O'), ('with', 'O'), ('the', 'O'), ('United', 'ORGANIZATION'), ('States', 'ORGANIZATION'), ('Atomic', 'ORGANIZATION'), ('Energy', 'ORGANIZATION'), ('Commission', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('Louise', 'PERSON'), ('Quigg', 'PERSON'), ('Blodgett', 'PERSON'), ('of', 'O'), ('Alexandria', 'LOCATION'), (',', 'O'), ('Va.', 'LOCATION'), (',', 'O'), ('the', 'O'), ('late', 'O'), ('William', 'PERSON'), ('Winthrop', 'PERSON'), ('Blodgett', 'PERSON'), ('of', 'O'), ('Providence', 'LOCATION'), (',', 'O'), ('R.I.', 'LOCATION'), (',', 'O'), ('the', 'O'), ('late', 'O'), ('James', 'PERSON'), ('Hamilton', 'PERSON'), ('Brown', 'PERSON'), ('of', 'O'), ('Mount', 'LOCATION'), ('Vernon', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Dr.', 'PERSON'), ('Jean', 'PERSON'), ('Fleming', 'PERSON'), ('Brown', 'PERSON'), ('of', 'O'), ('Mount', 'LOCATION'), ('Vernon', 'LOCATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Blodgett', 'PERSON'), ('is', 'O'), ('retired', 'O'), ('and', 'O'), ('was', 'O'), ('chief', 'O'), ('of', 'O'), ('the', 'O'), ('division', 'O'), ('of', 'O'), ('labor', 'O'), ('standards', 'O'), ('for', 'O'), ('the', 'O'), ('United', 'ORGANIZATION'), ('States', 'ORGANIZATION'), ('Department', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Labor', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Blodgett', 'PERSON'), ('was', 'O'), ('a', 'O'), ('lawyer', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Brown', 'PERSON'), ('was', 'O'), ('transportation', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Borden', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Dr.', 'PERSON'), ('Brown', 'PERSON'), ('was', 'O'), ('the', 'O'), ('principal', 'O'), ('of', 'O'), ('Hunter', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('High', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Bruns', 'PERSON'), ('is', 'O'), ('the', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('General', 'ORGANIZATION'), ('Videotex', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Cambridge', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Pine', 'ORGANIZATION'), ('Crest', 'ORGANIZATION'), ('Preparatory', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Fort', 'LOCATION'), ('Lauderdale', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Williams', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('business', 'O'), ('administration', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('management', 'O'), ('consultant', 'O'), ('for', 'O'), ('AMF', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('the', 'O'), ('sporting-goods', 'O'), ('company', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Daniel', 'PERSON'), ('Michael', 'PERSON'), ('Cunning', 'PERSON'), ('of', 'O'), ('Troy', 'O'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Cynthia', 'PERSON'), ('Ann', 'PERSON'), ('Cunning', 'PERSON'), ('to', 'O'), ('James', 'PERSON'), ('Benjamin', 'PERSON'), ('Wilbur', 'PERSON'), ('4th', 'O'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Wilbur', 'PERSON'), ('3d', 'O'), ('of', 'O'), ('Geneseo', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Manchester', 'LOCATION'), (',', 'O'), ('Vt.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('known', 'O'), ('as', 'O'), ('Cee', 'O'), ('Cee', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('banking', 'O'), ('officer', 'O'), ('in', 'O'), ('credit', 'O'), ('administration', 'O'), ('for', 'O'), ('the', 'O'), ('Bank', 'ORGANIZATION'), ('Leumi', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Doane', 'ORGANIZATION'), ('Stuart', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Albany', 'LOCATION'), ('and', 'O'), ('Manhattanville', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('account', 'O'), ('executive', 'O'), ('for', 'O'), ('the', 'O'), ('First', 'ORGANIZATION'), ('Albany', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Patricia', 'PERSON'), ('Cunning', 'PERSON'), (',', 'O'), ('is', 'O'), ('in', 'O'), ('customer', 'O'), ('service', 'O'), ('at', 'O'), ('the', 'O'), ('Troy', 'ORGANIZATION'), ('Savings', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('.', 'O'), ('Miss', 'O'), ('Cunning', 'O'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('David', 'PERSON'), ('Z.', 'PERSON'), ('Mdivani', 'PERSON'), ('of', 'O'), ('West', 'LOCATION'), ('Los', 'LOCATION'), ('Angeles', 'LOCATION'), (',', 'O'), ('an', 'O'), ('organizer', 'O'), ('of', 'O'), ('the', 'O'), ('Pacific', 'ORGANIZATION'), ('Shore', 'ORGANIZATION'), ('Oil', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mae', 'PERSON'), ('Murray', 'PERSON'), (',', 'O'), ('the', 'O'), ('actress', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Wilbur', 'PERSON'), ('is', 'O'), ('an', 'O'), ('accountant', 'O'), ('with', 'O'), ('Coopers', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Lybrand', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('Western', 'ORGANIZATION'), ('Reserve', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('in', 'O'), ('Hudson', 'LOCATION'), (',', 'O'), ('Ohio', 'LOCATION'), (';', 'O'), ('Union', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Bath', 'ORGANIZATION'), (',', 'O'), ('England', 'LOCATION'), (',', 'O'), ('and', 'O'), ('he', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('Fordham', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('professor', 'O'), ('of', 'O'), ('philosophy', 'O'), ('at', 'O'), ('the', 'O'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('at', 'O'), ('Geneseo', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Marge', 'PERSON'), ('Wilbur', 'PERSON'), (',', 'O'), ('retired', 'O'), ('as', 'O'), ('a', 'O'), ('teacher', 'O'), ('in', 'O'), ('the', 'O'), ('Geneseo', 'LOCATION'), ('school', 'O'), ('system', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('great-grandson', 'O'), ('of', 'O'), ('James', 'PERSON'), ('Benjamin', 'PERSON'), ('Wilbur', 'PERSON'), ('of', 'O'), ('Manchester', 'LOCATION'), (',', 'O'), ('Vt.', 'LOCATION'), (',', 'O'), ('founder', 'O'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Chicago', 'ORGANIZATION'), ('Royal', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O')), (('Pamela', 'PERSON'), ('Joyce', 'PERSON'), ('Downing', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Denis', 'PERSON'), ('J.', 'PERSON'), ('Downing', 'O'), ('of', 'O'), ('Acton', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Stephen', 'PERSON'), ('John', 'PERSON'), ('Brake', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Cecil', 'PERSON'), ('Clifford', 'PERSON'), ('Brake', 'PERSON'), ('of', 'O'), ('Westport', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('William', 'PERSON'), ('Heuss', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'O'), ('the', 'O'), ('Good', 'O'), ('Shepherd', 'O'), ('in', 'O'), ('Acton', 'LOCATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Brake', 'O'), (',', 'O'), ('an', 'O'), ('associate', 'O'), ('with', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('Semel', 'PERSON'), (',', 'O'), ('Boeckmann', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Skydel', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Virginia', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('she', 'O'), ('and', 'O'), ('Mr.', 'PERSON'), ('Brake', 'O'), ('received', 'O'), ('law', 'O'), ('degrees', 'O'), ('from', 'O'), ('the', 'O'), ('Boston', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('he', 'O'), ('was', 'O'), ('executive', 'O'), ('editor', 'O'), ('of', 'O'), ('The', 'O'), ('Law', 'O'), ('Review', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('chemist', 'O'), ('for', 'O'), ('the', 'O'), ('Kendall', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('pipeline', 'O'), ('manfacturer', 'O'), ('in', 'O'), ('Lexington', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Barbara', 'PERSON'), ('Downing', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('secretary', 'O'), ('for', 'O'), ('Environmental', 'ORGANIZATION'), ('Research', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('Concord', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Brake', 'O'), (',', 'O'), ('an', 'O'), ('associate', 'O'), ('with', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('White', 'O'), ('&', 'O'), ('Case', 'O'), (',', 'O'), ('graduated', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Duke', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Scovill', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('manufacturer', 'O'), ('of', 'O'), ('locks', 'O'), ('and', 'O'), ('home', 'O'), ('appliances', 'O'), ('in', 'O'), ('Waterbury', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O')), (('Linda', 'PERSON'), ('Ann', 'PERSON'), ('Buchanan', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Russell', 'PERSON'), ('C.', 'PERSON'), ('Buchanan', 'PERSON'), ('of', 'O'), ('Mendham', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Boyd', 'PERSON'), ('Allen', 'PERSON'), ('3d', 'O'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Allen', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Warren', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('The', 'O'), ('ceremony', 'O'), ('was', 'O'), ('performed', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Thomas', 'PERSON'), ('E.', 'PERSON'), ('Robinson', 'PERSON'), ('at', 'O'), ('the', 'O'), ('First', 'ORGANIZATION'), ('Presbyterian', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Mendham', 'ORGANIZATION'), (',', 'O'), ('assisted', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Peter', 'PERSON'), ('Meaney', 'PERSON'), (',', 'O'), ('a', 'O'), ('Roman', 'O'), ('Catholic', 'O'), ('priest', 'R'), ('.', 'O'), ('Elizabeth', 'PERSON'), ('H.', 'PERSON'), ('Buchanan', 'PERSON'), ('was', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('for', 'O'), ('her', 'O'), ('sister-in-law', 'O'), ('.', 'O'), ('Bruce', 'PERSON'), ('Crawford', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Allen', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('Colgate', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('editor', 'O'), ('in', 'O'), ('the', 'O'), ('college', 'O'), ('division', 'O'), ('of', 'O'), ('the', 'O'), ('Houghton-Mifflin', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Midlantic', 'ORGANIZATION'), ('National', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('in', 'ORGANIZATION'), ('Edison', 'ORGANIZATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O')), (('Monika', 'PERSON'), ('Viola', 'PERSON'), ('Is', 'O'), ('Married', 'O'), ('Monika', 'PERSON'), ('Viola', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Hella', 'PERSON'), ('Viola', 'PERSON'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Anthony', 'PERSON'), ('Viola', 'PERSON'), ('of', 'O'), ('Todt', 'PERSON'), ('Hill', 'PERSON'), (',', 'O'), ('S.I.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('John', 'PERSON'), ('C.', 'PERSON'), ('Schiavo', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Anthony', 'PERSON'), ('Schiavo', 'PERSON'), ('of', 'O'), ('Douglaston', 'LOCATION'), (',', 'O'), ('Queens', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('uncle', 'O'), (',', 'O'), ('Justice', 'O'), ('Vito', 'PERSON'), ('J.', 'PERSON'), ('Titone', 'PERSON'), ('of', 'O'), ('the', 'O'), ('Appellate', 'O'), ('Division', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('Supreme', 'ORGANIZATION'), ('Court', 'ORGANIZATION'), ('in', 'O'), ('Brooklyn', 'LOCATION'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Center', 'O'), ('for', 'O'), ('Inter', 'ORGANIZATION'), ('-', 'O'), ('American', 'O'), ('Relations', 'O'), ('in', 'O'), ('Manhattan', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('father', 'O'), ('was', 'O'), ('County', 'O'), ('Clerk', 'O'), ('of', 'O'), ('Staten', 'LOCATION'), ('Island', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Schiavo', 'PERSON'), (\"'s\", 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('retired', 'O'), ('architect', 'O'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Helen', 'PERSON'), ('Schiavo', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('former', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('art', 'O'), ('department', 'O'), ('at', 'O'), ('Queens', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O')), (('The', 'O'), ('wedding', 'O'), ('ceremony', 'O'), ('of', 'O'), ('Lisa', 'PERSON'), ('Marguerite', 'PERSON'), ('Tomaino', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Walter', 'PERSON'), ('Fekula', 'PERSON'), ('and', 'O'), ('Frank', 'PERSON'), ('Tomaino', 'PERSON'), (',', 'O'), ('both', 'O'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('to', 'O'), ('Joseph', 'PERSON'), ('F.', 'PERSON'), ('Zemann', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Daniel', 'PERSON'), ('Zemann', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('took', 'O'), ('place', 'O'), ('yesterday', 'O'), ('at', 'O'), ('the', 'O'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('the', 'O'), ('Heavenly', 'O'), ('Rest', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Hugh', 'PERSON'), ('Hildesley', 'PERSON'), ('officiated', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Zemann', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('Nightingale-Bamford', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('a', 'O'), ('bachelor', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('from', 'O'), ('Hunter', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('as', 'O'), ('did', 'O'), ('her', 'O'), ('husband', 'O'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('an', 'O'), ('executive', 'O'), ('secretary', 'O'), ('to', 'O'), ('the', 'O'), ('president', 'O'), ('of', 'O'), ('Video', 'O'), ('Properties', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('First', 'ORGANIZATION'), ('Boston', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Zemann', 'PERSON'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Renaissance', 'O'), ('Craftsman', 'O'), (',', 'O'), ('a', 'O'), ('painting', 'O'), ('and', 'O'), ('contracting', 'O'), ('company', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('retired', 'O'), ('as', 'O'), ('a', 'O'), ('captain', 'O'), ('in', 'O'), ('the', 'O'), ('city', 'O'), (\"'s\", 'O'), ('Department', 'O'), ('of', 'O'), ('Correction', 'O'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Mary', 'PERSON'), ('Zemann', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('regional', 'O'), ('marketing', 'O'), ('assistant', 'O'), ('at', 'O'), ('Petro-Lewis', 'ORGANIZATION'), ('Securities', 'ORGANIZATION'), ('.', 'O')), (('Patricia', 'PERSON'), ('Ruth', 'PERSON'), ('Eisemann', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Aubrey', 'PERSON'), ('Gene', 'PERSON'), ('Eisemann', 'PERSON'), ('of', 'O'), ('Babylon', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Delray', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Thaddeus', 'PERSON'), ('Sumner', 'PERSON'), ('Logan', 'PERSON'), ('3d', 'O'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Logan', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Richmond', 'LOCATION'), ('and', 'O'), ('Naples', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Joseph', 'PERSON'), ('James', 'PERSON'), (\"O'Hare\", 'PERSON'), ('3d', 'O'), (',', 'O'), ('the', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('cousin', 'O'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Joseph', 'ORGANIZATION'), (\"'s\", 'O'), ('Roman', 'ORGANIZATION'), ('Catholic', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Babylon', 'LOCATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Logan', 'PERSON'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('public-relations', 'O'), ('staff', 'O'), ('at', 'O'), ('Summit', 'O'), ('Books', 'O'), (',', 'O'), ('a', 'O'), ('division', 'O'), ('of', 'O'), ('Simon', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Schuster', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('founder', 'O'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('Plimsoll', 'ORGANIZATION'), ('Oil', 'ORGANIZATION'), ('Agencies', 'ORGANIZATION'), ('Ltd.', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Logan', 'PERSON'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('port', 'O'), ('development', 'O'), ('for', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('City', 'ORGANIZATION'), ('Department', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Ports', 'ORGANIZATION'), ('and', 'O'), ('Terminals', 'O'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Virginia', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('urban', 'O'), ('studies', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('an', 'O'), ('administrator', 'O'), ('of', 'O'), ('transportation', 'O'), ('services', 'O'), ('for', 'O'), ('the', 'O'), ('General', 'ORGANIZATION'), ('Services', 'ORGANIZATION'), ('Administration', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('D.', 'PERSON'), ('Goldberg', 'PERSON'), ('of', 'O'), ('Hackensack', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Rebecca', 'PERSON'), ('Lynn', 'PERSON'), ('Goldberg', 'PERSON'), (',', 'O'), ('to', 'O'), ('Arthur', 'PERSON'), ('Biderman', 'PERSON'), ('of', 'O'), ('Hollis', 'PERSON'), (',', 'O'), ('Queens', 'LOCATION'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Louis', 'PERSON'), ('Biderman', 'PERSON'), ('of', 'O'), ('Yonkersand', 'O'), ('the', 'O'), ('late', 'O'), ('Ethel', 'PERSON'), ('Littman', 'PERSON'), ('Biderman', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('Nov.', 'O'), ('25', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('the', 'O'), ('owner', 'O'), ('of', 'O'), ('Visual', 'O'), ('Impact', 'O'), (',', 'O'), ('a', 'O'), ('picture', 'O'), ('research', 'O'), ('consulting', 'O'), ('concern', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('was', 'O'), ('formerly', 'O'), ('the', 'O'), ('photographic', 'O'), ('editor', 'O'), ('at', 'O'), ('Random', 'ORGANIZATION'), ('House', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('at', 'O'), ('which', 'O'), ('Mr.', 'PERSON'), ('Biderman', 'PERSON'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('science', 'O'), ('editor', 'O'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Chamberlayne', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), ('and', 'O'), ('Queens', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('studied', 'O'), ('at', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('Pratt', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Alliance', 'O'), ('Fran', 'O'), (',', 'O'), ('caise', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Larsam', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('electronics', 'O'), ('manufacturing', 'O'), ('company', 'O'), ('in', 'O'), ('West', 'LOCATION'), ('Orange', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('City', 'O'), ('College', 'O'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('marriage', 'O'), ('was', 'O'), ('annulled', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('mathematics', 'O'), ('teacher', 'O'), ('at', 'O'), ('the', 'O'), ('McCombs', 'ORGANIZATION'), ('Junior', 'ORGANIZATION'), ('High', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('the', 'O'), ('Bronx', 'LOCATION'), ('.', 'O')), (('Dr.', 'PERSON'), ('Paula', 'PERSON'), ('Ann', 'PERSON'), ('Randolph', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('James', 'PERSON'), ('W.', 'PERSON'), ('Randolph', 'PERSON'), ('of', 'O'), ('Mount', 'LOCATION'), ('Vernon', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Robert', 'PERSON'), ('Victor', 'PERSON'), ('Edney', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Minnie', 'PERSON'), ('B.', 'PERSON'), ('Clark', 'PERSON'), ('of', 'O'), ('Boston', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Leon', 'PERSON'), ('Edney', 'PERSON'), ('of', 'O'), ('Virginia', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Va.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('David', 'PERSON'), ('D.', 'PERSON'), ('Cockcroft', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Riverdale', 'LOCATION'), ('Presbyterian', 'LOCATION'), ('Church', 'LOCATION'), ('in', 'O'), ('the', 'O'), ('Bronx', 'LOCATION'), ('.', 'O'), ('Leslie', 'PERSON'), ('Randolph', 'PERSON'), ('was', 'O'), ('her', 'O'), ('sister', 'O'), (\"'s\", 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('and', 'O'), ('Russell', 'PERSON'), ('Edney', 'PERSON'), ('was', 'O'), ('his', 'O'), ('brother', 'O'), (\"'s\", 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('Dr.', 'PERSON'), ('Randolph', 'PERSON'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('retain', 'O'), ('her', 'O'), ('name', 'O'), ('professionally', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('resident', 'O'), ('in', 'O'), ('obstetrics', 'O'), ('and', 'O'), ('gynecology', 'O'), ('at', 'O'), ('Columbia-Presbyterian', 'LOCATION'), ('Hospital', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('medical', 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Physicians', 'ORGANIZATION'), ('and', 'O'), ('Surgeons', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('former', 'O'), ('assistant', 'O'), ('district', 'O'), ('attorney', 'O'), ('in', 'O'), ('the', 'O'), ('Bronx', 'LOCATION'), (',', 'O'), ('is', 'O'), ('Deputy', 'O'), ('State', 'O'), ('Superintendent', 'O'), ('of', 'O'), ('Insurance', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Edney', 'PERSON'), ('is', 'O'), ('a', 'O'), ('manager', 'O'), ('of', 'O'), ('media', 'O'), ('analysis', 'O'), ('at', 'O'), ('the', 'O'), ('CBS', 'ORGANIZATION'), ('Television', 'ORGANIZATION'), ('Network', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('summa', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Emerson', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), (',', 'O'), ('in', 'O'), ('a', 'O'), ('combined', 'O'), ('program', 'O'), (',', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('Administration', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('from', 'O'), ('its', 'O'), ('School', 'O'), ('of', 'O'), ('Journalism', 'O'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), ('is', 'O'), ('a', 'O'), ('manager', 'O'), ('for', 'O'), ('Abrahams', 'ORGANIZATION'), ('Property', 'ORGANIZATION'), ('Management', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('real-estate', 'O'), ('manager', 'O'), ('in', 'O'), ('Virginia', 'LOCATION'), ('Beach', 'LOCATION'), ('.', 'O')), (('Nancy', 'PERSON'), ('Patricia', 'PERSON'), ('Pivirotto', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Richard', 'PERSON'), ('Roy', 'PERSON'), ('Pivirotto', 'PERSON'), ('of', 'O'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('William', 'PERSON'), ('Albert', 'PERSON'), ('Barbe', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('W.', 'PERSON'), ('Barbe', 'PERSON'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Barbe', 'PERSON'), ('of', 'O'), ('Kansas', 'LOCATION'), ('City', 'LOCATION'), (',', 'O'), ('Mo.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Alastair', 'PERSON'), ('Votaw', 'PERSON'), ('and', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Jack', 'PERSON'), ('Bishop', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('Christ', 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Greenwich', 'LOCATION'), ('.', 'O'), ('Jennifer', 'PERSON'), ('Patton', 'PERSON'), ('Pivirotto', 'PERSON'), ('was', 'O'), ('her', 'O'), ('sister', 'O'), (\"'s\", 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('and', 'O'), ('Baird', 'PERSON'), ('Wooldridge', 'PERSON'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Barbe', 'PERSON'), (',', 'O'), ('an', 'O'), ('obstetrical', 'O'), ('nurse', 'O'), ('at', 'O'), ('the', 'O'), ('Stamford', 'LOCATION'), ('-LRB-', 'O'), ('Conn.', 'LOCATION'), ('-RRB-', 'O'), ('Hospital', 'O'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Greenwich', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('nursing', 'O'), ('degree', 'O'), ('from', 'O'), ('Duke', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('retired', 'O'), ('chairman', 'O'), ('and', 'O'), ('chief', 'O'), ('executive', 'O'), ('officer', 'O'), ('of', 'O'), ('the', 'O'), ('Associated', 'ORGANIZATION'), ('Dry', 'ORGANIZATION'), ('Goods', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('which', 'O'), ('owns', 'O'), ('11', 'O'), ('retail', 'O'), ('store', 'O'), ('groups', 'O'), (',', 'O'), ('including', 'O'), ('Lord', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Taylor', 'ORGANIZATION'), (',', 'O'), ('Loehmann', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('and', 'O'), ('Caldor', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('trustee', 'O'), ('of', 'O'), ('Princeton', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Barbe', 'PERSON'), (',', 'O'), ('an', 'O'), ('associate', 'O'), ('in', 'O'), ('the', 'O'), ('corporate', 'O'), ('finance', 'O'), ('division', 'O'), ('of', 'O'), ('the', 'O'), ('Mellon', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('in', 'O'), ('Pittsburgh', 'LOCATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('Kansas', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('president', 'O'), ('of', 'O'), ('Barbe', 'ORGANIZATION'), ('Florist', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('Kansas', 'LOCATION'), ('City', 'LOCATION'), (',', 'O'), ('which', 'O'), ('was', 'O'), ('founded', 'O'), ('in', 'O'), ('1886', 'O'), ('by', 'O'), ('the', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('grandfather', 'O'), (',', 'O'), ('the', 'O'), ('late', 'O'), ('Albert', 'PERSON'), ('F.', 'PERSON'), ('Barbe', 'PERSON'), ('.', 'O')), (('Margaret', 'PERSON'), ('Ditson', 'PERSON'), ('Ijams', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Alexandra', 'PERSON'), ('Ainsworth', 'PERSON'), ('Ijams', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Maitland', 'PERSON'), ('Tabb', 'PERSON'), ('Ijams', 'PERSON'), ('of', 'O'), ('Barneveld', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Wayne', 'PERSON'), ('Alan', 'PERSON'), ('Josephson', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Raymond', 'PERSON'), ('E.', 'PERSON'), ('Josephson', 'PERSON'), ('of', 'O'), ('Arlington', 'LOCATION'), ('Heights', 'LOCATION'), (',', 'O'), ('Ill.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Dr.', 'PERSON'), ('Earle', 'PERSON'), ('Pratt', 'PERSON'), ('Jr.', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('Trinity-St', 'O'), ('.', 'O'), ('Lucy', 'PERSON'), ('Manley', 'PERSON'), ('Ijams', 'PERSON'), ('was', 'O'), ('her', 'O'), ('cousin', 'O'), (\"'s\", 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('father', 'O'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Josephson', 'PERSON'), (',', 'O'), ('formerly', 'O'), ('a', 'O'), ('research', 'O'), ('assistant', 'O'), ('in', 'O'), ('the', 'O'), ('communications', 'O'), ('department', 'O'), ('of', 'O'), ('the', 'O'), ('Republican', 'ORGANIZATION'), ('National', 'ORGANIZATION'), ('Committee', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Purnell', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Bennett', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('was', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('Junior', 'O'), ('Assemblies', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('retired', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('investment', 'O'), ('banking', 'O'), ('firm', 'O'), ('of', 'O'), ('W.', 'ORGANIZATION'), ('C.', 'ORGANIZATION'), ('Langley', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('J.', 'PERSON'), ('Horton', 'PERSON'), ('Ijams', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Lawrence', 'PERSON'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('whose', 'O'), ('late', 'O'), ('husband', 'O'), ('was', 'O'), ('head', 'O'), ('of', 'O'), ('the', 'O'), ('bond', 'O'), ('department', 'O'), ('of', 'O'), ('the', 'O'), ('Continental', 'ORGANIZATION'), ('Insurance', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('great-granddaughter', 'O'), ('of', 'O'), ('H.', 'PERSON'), ('Hobart', 'PERSON'), ('Porter', 'PERSON'), ('of', 'O'), ('Lawrence', 'PERSON'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('a', 'O'), ('founding', 'O'), ('partner', 'O'), ('in', 'O'), ('Sanderson', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Porter', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('engineering', 'O'), ('firm', 'O'), (',', 'O'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('American', 'O'), ('Water', 'O'), ('Works', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Josephson', 'PERSON'), (',', 'O'), ('a', 'O'), ('venture', 'O'), ('capitalist', 'O'), ('and', 'O'), ('real-estate', 'O'), ('investor', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('founder', 'O'), (',', 'O'), ('director', 'O'), ('and', 'O'), ('former', 'O'), ('chairman', 'O'), ('of', 'O'), ('CitiPostal', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('shippers', 'O'), (\"'\", 'O'), ('agent', 'O'), ('for', 'O'), ('the', 'O'), ('air-express', 'O'), ('industry', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Emory', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Wharton', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('the', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('property', 'O'), ('claims', 'O'), ('manager', 'O'), ('for', 'O'), ('the', 'O'), ('Allstate', 'ORGANIZATION'), ('Insurance', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Northbrook', 'LOCATION'), (',', 'O'), ('Ill.', 'LOCATION'), ('.', 'O')), (('Maureen', 'PERSON'), ('Catherine', 'PERSON'), ('Miller', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Anthony', 'PERSON'), ('G.', 'PERSON'), ('Miller', 'PERSON'), ('of', 'O'), ('Wantagh', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Brian', 'PERSON'), ('Hugh', 'PERSON'), ('Marren', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Madeline', 'PERSON'), ('G.', 'PERSON'), ('Marren', 'PERSON'), ('of', 'O'), ('Mount', 'LOCATION'), ('Vernon', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('James', 'PERSON'), ('P.', 'PERSON'), ('Marren', 'PERSON'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Eugene', 'PERSON'), ('Connolly', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('in', 'O'), ('the', 'O'), ('Lady', 'O'), ('Chapel', 'O'), ('of', 'O'), ('St.', 'LOCATION'), ('Patrick', 'LOCATION'), (\"'s\", 'O'), ('Cathedral', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Patricia', 'PERSON'), ('Bergeron', 'PERSON'), ('Wittlif', 'PERSON'), ('was', 'O'), ('the', 'O'), ('matron', 'O'), ('of', 'O'), ('honor', 'O'), ('.', 'O'), ('Gerald', 'PERSON'), ('D.', 'PERSON'), ('Marren', 'PERSON'), ('was', 'O'), ('his', 'O'), ('brother', 'O'), (\"'s\", 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Marren', 'PERSON'), ('is', 'O'), ('a', 'O'), ('portfolio', 'O'), ('assistant', 'O'), ('at', 'O'), ('Smith', 'ORGANIZATION'), ('Barney', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Harris', 'ORGANIZATION'), ('Upham', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('St.', 'ORGANIZATION'), ('John', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('is', 'O'), ('studying', 'O'), ('for', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('business', 'O'), ('administration', 'O'), ('at', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('retired', 'O'), ('as', 'O'), ('assistant', 'O'), ('vice', 'O'), ('president', 'O'), ('in', 'O'), ('the', 'O'), ('treasurer', 'O'), (\"'s\", 'O'), ('department', 'O'), ('of', 'O'), ('the', 'O'), ('Equitable', 'ORGANIZATION'), ('Life', 'ORGANIZATION'), ('Assurance', 'ORGANIZATION'), ('Society', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Marren', 'PERSON'), ('is', 'O'), ('the', 'O'), ('manager', 'O'), ('of', 'O'), ('foreign', 'O'), ('exchange', 'O'), ('operations', 'O'), ('for', 'O'), ('Banque', 'ORGANIZATION'), ('IndoSuez', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('received', 'O'), ('bachelor', 'O'), (\"'s\", 'O'), ('and', 'O'), ('M.B.A.', 'O'), ('degrees', 'O'), ('from', 'O'), ('Iona', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('studied', 'O'), ('integrated', 'O'), ('information', 'O'), ('systems', 'O'), ('at', 'O'), ('Long', 'ORGANIZATION'), ('Island', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('firefighter', 'O'), ('with', 'O'), ('the', 'O'), ('Mount', 'ORGANIZATION'), ('Vernon', 'ORGANIZATION'), ('Fire', 'ORGANIZATION'), ('Department', 'ORGANIZATION'), ('.', 'O')), (('Doris', 'PERSON'), ('Ann', 'PERSON'), ('Downes', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Fielder', 'O'), ('B.', 'PERSON'), ('Downes', 'PERSON'), ('of', 'O'), ('Scottsdale', 'LOCATION'), (',', 'O'), ('Ariz.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Downes', 'PERSON'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Freeborn', 'PERSON'), ('Garrettson', 'PERSON'), ('Jewett', 'PERSON'), ('3d', 'O'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Jewett', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('McLean', 'PERSON'), (',', 'O'), ('Va.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('keep', 'O'), ('her', 'O'), ('name', 'O'), ('professionally', 'O'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('art', 'O'), ('director', 'O'), ('of', 'O'), ('Home', 'O'), ('Fashions', 'O'), ('Textiles', 'O'), ('magazine', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Maryland', 'ORGANIZATION'), ('and', 'O'), ('attended', 'O'), ('the', 'O'), ('Maryland', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'O'), ('Art', 'O'), ('in', 'O'), ('Baltimore', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('an', 'O'), ('artist', 'O'), ('and', 'O'), ('illustrator', 'O'), (',', 'O'), ('was', 'O'), ('the', 'O'), ('founder', 'O'), ('of', 'O'), ('Downes', 'ORGANIZATION'), ('Advertising', 'ORGANIZATION'), ('in', 'ORGANIZATION'), ('St.', 'ORGANIZATION'), ('Mary', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), (',', 'O'), ('Md.', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Jewett', 'PERSON'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('known', 'O'), ('as', 'O'), ('Garrett', 'PERSON'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('art', 'O'), ('director', 'O'), ('for', 'O'), ('Doyle', 'PERSON'), ('Dane', 'PERSON'), ('Bernbach', 'PERSON'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('St.', 'ORGANIZATION'), ('Alban', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), ('and', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Yale', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('deputy', 'O'), ('general', 'O'), ('counsel', 'O'), ('to', 'O'), ('the', 'O'), ('Inter-American', 'ORGANIZATION'), ('Development', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), (',', 'O'), ('first', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Corcoran', 'ORGANIZATION'), ('Gallery', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Art', 'ORGANIZATION'), ('and', 'O'), ('director', 'O'), ('and', 'O'), ('treasurer', 'O'), ('of', 'O'), ('the', 'O'), ('Environmental', 'O'), ('Defense', 'O'), ('Fund', 'O'), ('.', 'O')), (('Priscilla', 'PERSON'), ('Louise', 'PERSON'), ('Moody', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('W.', 'PERSON'), ('Jarvis', 'PERSON'), ('Moody', 'PERSON'), ('of', 'O'), ('Washington', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('David', 'PERSON'), ('Irl', 'PERSON'), ('Huffman', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('JoAnn', 'PERSON'), ('Huffman', 'PERSON'), ('of', 'O'), ('Lexington', 'LOCATION'), (',', 'O'), ('Va.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Palmer', 'PERSON'), ('Irl', 'PERSON'), ('Huffman', 'PERSON'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Jeffrey', 'PERSON'), ('Jeremiah', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Fourth', 'O'), ('Presbyterian', 'O'), ('Church', 'O'), ('of', 'O'), ('Bethesda', 'LOCATION'), (',', 'O'), ('Md.', 'LOCATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Huffman', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('Mary', 'ORGANIZATION'), ('Baldwin', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('department', 'O'), ('manager', 'O'), ('at', 'O'), ('Garfinckel', 'PERSON'), (\"'s\", 'O'), ('store', 'O'), ('in', 'O'), ('Bethesda', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('an', 'O'), ('assistant', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Morgan', 'ORGANIZATION'), ('Guaranty', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('is', 'O'), ('chairman', 'O'), ('and', 'O'), ('chief', 'O'), ('executive', 'O'), ('officer', 'O'), ('of', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('Security', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('mother', 'O'), (',', 'O'), ('Barbara', 'PERSON'), ('Moody', 'PERSON'), (',', 'O'), ('owns', 'O'), ('the', 'O'), ('Yellow', 'O'), ('Binding', 'O'), (',', 'O'), ('a', 'O'), ('needlepoint', 'O'), ('and', 'O'), ('kniting', 'O'), ('shop', 'O'), ('in', 'O'), ('Bethesda', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Huffman', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('Ferrum', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('credit', 'O'), ('analyst', 'O'), ('at', 'O'), ('the', 'O'), ('Suburban', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Bethesda', 'ORGANIZATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Arthur', 'PERSON'), ('H.', 'PERSON'), ('Solomon', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), ('Jane', 'PERSON'), ('Wolins', 'PERSON'), ('Solomon', 'PERSON'), ('to', 'O'), ('Steven', 'PERSON'), ('Todd', 'PERSON'), ('Siegel', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Norman', 'PERSON'), ('Siegel', 'PERSON'), (',', 'O'), ('also', 'O'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('to', 'O'), ('take', 'O'), ('place', 'O'), ('Nov.', 'O'), ('17', 'O'), ('.', 'O'), ('The', 'O'), ('father', 'O'), ('of', 'O'), ('the', 'O'), ('bride-to-be', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('King', 'ORGANIZATION'), ('Solomon', 'ORGANIZATION'), ('Foods', 'ORGANIZATION'), (',', 'O'), ('Brooklyn', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('future', 'O'), ('husband', 'O'), (\"'s\", 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Marty', 'ORGANIZATION'), ('Gutmacher', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('women', 'O'), (\"'s\", 'O'), ('apparel', 'O'), ('manufacturer', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Susan', 'PERSON'), ('Lori', 'PERSON'), ('Richards', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Alfred', 'PERSON'), ('J.', 'PERSON'), ('Ricchiuto', 'PERSON'), ('of', 'O'), ('Fort', 'LOCATION'), ('Lee', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Fort', 'LOCATION'), ('Lauderdale', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Charles', 'PERSON'), ('P.', 'PERSON'), ('McGlade', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('McGlade', 'PERSON'), ('of', 'O'), ('Philadelphia', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('George', 'PERSON'), ('Danavelil', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Roman', 'ORGANIZATION'), ('Catholic', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('the', 'O'), ('Madonna', 'PERSON'), ('in', 'O'), ('Fort', 'LOCATION'), ('Lee', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('retain', 'O'), ('her', 'O'), ('name', 'O'), (',', 'O'), ('which', 'O'), ('she', 'O'), ('had', 'O'), ('legally', 'O'), ('changed', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('computer', 'O'), ('room', 'O'), ('manager', 'O'), ('for', 'O'), ('CBS', 'ORGANIZATION'), ('Records', 'ORGANIZATION'), ('International', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Dwight', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Englewood', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('attended', 'O'), ('Skidmore', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('florist', 'O'), ('in', 'O'), ('North', 'LOCATION'), ('Bergen', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Manhattan', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('attended', 'O'), ('the', 'O'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('European', 'ORGANIZATION'), ('Studies', 'ORGANIZATION'), ('in', 'O'), ('Paris', 'LOCATION'), ('during', 'O'), ('his', 'O'), ('junior', 'O'), ('year', 'O'), ('and', 'O'), ('is', 'O'), ('attending', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('U-Haul', 'O'), ('Company', 'O'), ('of', 'O'), ('Philadelphia', 'LOCATION'), ('.', 'O')), (('Margaret', 'PERSON'), ('Lloyd', 'PERSON'), ('Bremer', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Paul', 'PERSON'), ('Bremer', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('Canaan', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Bremer', 'PERSON'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Robert', 'PERSON'), ('Earl', 'PERSON'), ('Nero', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('Chandler', 'PERSON'), ('Nero', 'PERSON'), ('of', 'O'), ('Whittier', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Charles', 'PERSON'), ('Crawford', 'PERSON'), ('Smith', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Congregational', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('New', 'ORGANIZATION'), ('Canaan', 'ORGANIZATION'), (',', 'O'), ('assisted', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Ann', 'PERSON'), ('Struthers', 'PERSON'), ('Coburn', 'PERSON'), (',', 'O'), ('an', 'O'), ('Episcopal', 'O'), ('priest', 'R'), ('and', 'O'), ('cousin', 'O'), ('of', 'O'), ('the', 'O'), ('bride', 'B'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Nero', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('Canaan', 'ORGANIZATION'), ('Country', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('Choate', 'PERSON'), ('Rosemary', 'PERSON'), ('Hall', 'PERSON'), ('and', 'O'), ('Hampshire', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('accountant', 'O'), ('with', 'O'), ('the', 'O'), ('Wood', 'ORGANIZATION'), ('River', 'ORGANIZATION'), ('Office', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Ketchum', 'LOCATION'), (',', 'O'), ('Idaho', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Christian', 'ORGANIZATION'), ('Dior', 'ORGANIZATION'), ('Perfumes', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Nina', 'PERSON'), ('Bremer', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('lecturer', 'O'), ('in', 'O'), ('art', 'O'), ('history', 'O'), ('at', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Bridgeport', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Nero', 'PERSON'), ('graduated', 'O'), ('from', 'O'), ('California', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('at', 'O'), ('Fullerton', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('overseas', 'O'), ('division', 'O'), ('of', 'O'), ('the', 'O'), ('Union', 'ORGANIZATION'), ('Oil', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Hong', 'LOCATION'), ('Kong', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('previous', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O')), (('Carol', 'PERSON'), ('Hanan', 'PERSON'), ('Ostrow', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Miriam', 'PERSON'), ('Ruskin', 'PERSON'), ('of', 'O'), ('Delray', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Solomon', 'PERSON'), ('Hanan', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('J.', 'PERSON'), ('Gene', 'PERSON'), ('Hochfelder', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Jack', 'PERSON'), ('Hochfelder', 'PERSON'), ('of', 'O'), ('Lynbrook', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Hollywood', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mrs.', 'PERSON'), ('Hochfelder', 'PERSON'), ('.', 'O'), ('Rabbi', 'R'), ('Norman', 'PERSON'), ('Kahan', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Hotel', 'O'), ('Pierre', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Hochfelder', 'PERSON'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Central', 'ORGANIZATION'), ('Tours', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), ('and', 'O'), ('of', 'O'), ('the', 'O'), ('Washington', 'LOCATION'), ('chapter', 'O'), ('of', 'O'), ('Toastmasters', 'ORGANIZATION'), ('International', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('is', 'O'), ('a', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Washington', 'ORGANIZATION'), ('Society', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Association', 'ORGANIZATION'), ('Executives', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('previous', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('restaurateur', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Hochfelder', 'PERSON'), (',', 'O'), ('a', 'O'), ('widower', 'W'), (',', 'O'), ('is', 'O'), ('president', 'O'), ('and', 'O'), ('chief', 'O'), ('executive', 'O'), ('officer', 'O'), ('of', 'O'), ('Beldoch', 'ORGANIZATION'), ('Industries', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('apparel', 'O'), ('and', 'O'), ('knitwear', 'O'), ('manufacturer', 'O'), ('that', 'O'), ('is', 'O'), ('the', 'O'), ('American', 'O'), ('licensee', 'O'), ('for', 'O'), ('women', 'O'), (\"'s\", 'O'), ('clothing', 'O'), ('for', 'O'), ('Pierre', 'PERSON'), ('Cardin', 'PERSON'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('North', 'ORGANIZATION'), ('Shore', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Hospital', 'ORGANIZATION'), ('in', 'O'), ('Manhasset', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('North', 'ORGANIZATION'), ('Shore', 'ORGANIZATION'), ('Child', 'ORGANIZATION'), ('Guidance', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('in', 'O'), ('Rosyln', 'LOCATION'), ('Heights', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('In', 'O'), ('World', 'O'), ('War', 'O'), ('II', 'O'), (',', 'O'), ('he', 'O'), ('was', 'O'), ('a', 'O'), ('paratroop', 'O'), ('captain', 'O'), ('in', 'O'), ('the', 'O'), ('Marine', 'ORGANIZATION'), ('Corps', 'ORGANIZATION'), ('at', 'O'), ('Guadalcanal', 'LOCATION'), (',', 'O'), ('Bougainville', 'LOCATION'), ('and', 'O'), ('Iwo', 'O'), ('Jima', 'O'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('Wharton', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('the', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('retired', 'O'), ('as', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Sellwell', 'ORGANIZATION'), ('Manufacturing', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('children', 'O'), (\"'s\", 'O'), ('wear', 'O'), ('concern', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Fran', 'O'), (',', 'O'), ('coise', 'O'), ('Perny', 'O'), ('Is', 'O'), ('Wed', 'O'), ('Fran', 'O'), (',', 'O'), ('coise', 'O'), ('Renee', 'PERSON'), ('Solange', 'PERSON'), ('Perny', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Jean', 'PERSON'), ('Albert', 'PERSON'), ('Charles', 'PERSON'), ('Perny', 'PERSON'), ('of', 'O'), ('Ch', 'O'), ('\\xc2\\xac', 'O'), ('alons-sur-Marne', 'O'), (',', 'O'), ('France', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Patrick', 'PERSON'), ('A.', 'PERSON'), ('Flanagan', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Arnold', 'PERSON'), ('D.', 'PERSON'), ('Flanagan', 'PERSON'), ('of', 'O'), ('Black', 'LOCATION'), ('Mountain', 'LOCATION'), (',', 'O'), ('N.C.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Rev.', 'R'), ('Arnold', 'PERSON'), ('D.', 'PERSON'), ('Flanagan', 'PERSON'), (',', 'O'), ('a', 'O'), ('Baptist', 'O'), ('minister', 'O'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Stephen', 'PERSON'), ('Garmey', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('Calvary', 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Perny', 'PERSON'), ('-', 'O'), ('Flanagan', 'PERSON'), (',', 'O'), ('whose', 'O'), ('previous', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), (',', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('African', 'O'), ('Step', 'O'), ('Travel', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Abidjan', 'LOCATION'), (',', 'O'), ('Ivory', 'LOCATION'), ('Coast', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('retired', 'O'), ('as', 'O'), ('an', 'O'), ('inspector', 'O'), ('with', 'O'), ('the', 'O'), ('French', 'ORGANIZATION'), ('Ministry', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Transportation', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Flanagan', 'PERSON'), ('is', 'O'), ('a', 'O'), ('freelance', 'O'), ('journalist', 'O'), ('.', 'O')), (('Helen', 'PERSON'), ('Lynn', 'PERSON'), ('Altman', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Stanley', 'PERSON'), ('F.', 'PERSON'), ('Altman', 'PERSON'), ('of', 'O'), ('Bedford', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('David', 'PERSON'), ('Paul', 'PERSON'), ('Felsher', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Roual', 'PERSON'), ('Felsher', 'PERSON'), ('of', 'O'), ('Graniteville', 'LOCATION'), (',', 'O'), ('S.I.', 'LOCATION'), ('Rabbi', 'R'), ('Maurice', 'PERSON'), ('Davis', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('home', 'O'), ('of', 'O'), ('the', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('parents', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Rye', 'ORGANIZATION'), ('Country', 'ORGANIZATION'), ('Day', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Mount', 'ORGANIZATION'), ('Holyoke', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('financial', 'O'), ('officer', 'O'), ('at', 'O'), ('the', 'O'), ('Marine', 'ORGANIZATION'), ('Midland', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('associate', 'O'), ('professor', 'O'), ('of', 'O'), ('surgery', 'O'), ('at', 'O'), ('the', 'O'), ('Albert', 'ORGANIZATION'), ('Einstein', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Medicine', 'ORGANIZATION'), ('and', 'O'), ('attending', 'O'), ('surgeon', 'O'), ('at', 'O'), ('Montefiore', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Felsher', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Massachusetts', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('from', 'O'), ('the', 'O'), ('Wharton', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('the', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('law', 'O'), ('degree', 'O'), ('from', 'O'), ('Fordham', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('lawyer', 'O'), ('for', 'O'), ('Chemical', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('a', 'O'), ('contracting', 'O'), ('company', 'O'), (',', 'O'), ('the', 'O'), ('Twin', 'ORGANIZATION'), ('Door', 'ORGANIZATION'), ('Aluminum', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('in', 'O'), ('Staten', 'LOCATION'), ('Island', 'LOCATION'), ('.', 'O')), (('Cara', 'PERSON'), ('Frances', 'PERSON'), ('Jonassen', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Ole', 'PERSON'), ('Thor', 'PERSON'), ('Jonassen', 'PERSON'), ('of', 'O'), ('Locust', 'LOCATION'), ('Valley', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Brian', 'PERSON'), ('Andrew', 'PERSON'), ('Bowers', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Reginald', 'PERSON'), ('Bowers', 'PERSON'), ('of', 'O'), ('Chislehurst', 'LOCATION'), (',', 'O'), ('Kent', 'PERSON'), (',', 'O'), ('England', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('David', 'PERSON'), ('Jacobsen', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('First', 'ORGANIZATION'), ('Presbyterian', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Sausalito', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('surgeon', 'O'), (',', 'O'), ('is', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('medical', 'O'), ('board', 'O'), ('of', 'O'), ('the', 'O'), ('Community', 'O'), ('Hospital', 'O'), ('of', 'O'), ('Glen', 'LOCATION'), ('Cove', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('Mr.', 'PERSON'), ('Bowers', 'PERSON'), (',', 'O'), ('who', 'O'), ('received', 'O'), ('an', 'O'), ('undergraduate', 'O'), ('degree', 'O'), ('from', 'O'), ('Oxford', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Shearson', 'ORGANIZATION'), ('LehmanAmerican', 'ORGANIZATION'), ('Express', 'ORGANIZATION'), ('in', 'O'), ('San', 'LOCATION'), ('Francisco', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('first', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('of', 'O'), ('Sedgwicks', 'ORGANIZATION'), ('North', 'ORGANIZATION'), ('America', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('insurance', 'O'), ('concern', 'O'), ('based', 'O'), ('in', 'O'), ('London', 'LOCATION'), ('.', 'O')), (('St.', 'O'), ('Joseph', 'PERSON'), (\"'s\", 'O'), ('Roman', 'ORGANIZATION'), ('Catholic', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Bronxville', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('the', 'O'), ('setting', 'O'), ('yesterday', 'O'), ('for', 'O'), ('the', 'O'), ('wedding', 'O'), ('of', 'O'), ('Lisa', 'PERSON'), ('Ann', 'PERSON'), ('DeCrane', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Alfred', 'PERSON'), ('C.', 'PERSON'), ('DeCrane', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Bronxville', 'LOCATION'), (',', 'O'), ('to', 'O'), ('Alvaro', 'PERSON'), ('Javier', 'PERSON'), ('Saralegui', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Jorge', 'PERSON'), ('Saralegui', 'PERSON'), ('of', 'O'), ('San', 'LOCATION'), ('Juan', 'LOCATION'), (',', 'O'), ('P.R.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Philip', 'PERSON'), ('Marquard', 'PERSON'), (',', 'O'), ('great-uncle', 'O'), ('of', 'O'), ('the', 'O'), ('bride', 'B'), (',', 'O'), ('and', 'O'), ('Msgr.', 'O'), ('Patrick', 'PERSON'), ('J.', 'PERSON'), ('Sheridan', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Saralegui', 'PERSON'), (',', 'O'), ('a', 'O'), ('cum', 'O'), ('laude', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Notre', 'ORGANIZATION'), ('Dame', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('account', 'O'), ('manager', 'O'), ('at', 'O'), ('McCaffrey', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('McCall', 'ORGANIZATION'), ('Advertising', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('president', 'O'), ('and', 'O'), ('a', 'O'), ('director', 'O'), ('of', 'O'), ('Texaco', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('founder', 'O'), ('and', 'O'), ('former', 'O'), ('owner', 'O'), ('of', 'O'), ('Saral', 'ORGANIZATION'), ('Publications', 'ORGANIZATION'), ('and', 'O'), ('Vanidades', 'PERSON'), (',', 'O'), ('a', 'O'), ('Spanish-language', 'O'), ('women', 'O'), (\"'s\", 'O'), ('magazine', 'O'), ('that', 'O'), ('circulates', 'O'), ('in', 'O'), ('Latin', 'LOCATION'), ('America', 'LOCATION'), ('.', 'O')), (('Leah', 'PERSON'), ('Greenwald', 'PERSON'), ('and', 'O'), ('Michael', 'PERSON'), ('Cavallo', 'PERSON'), ('were', 'O'), ('married', 'O'), ('yesterday', 'O'), ('at', 'O'), ('the', 'O'), ('Hyatt', 'O'), ('Regency', 'O'), ('Hotel', 'O'), ('in', 'O'), ('Cambridge', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('by', 'O'), ('Rabbi', 'R'), ('Frank', 'PERSON'), ('Waldorf', 'PERSON'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('keep', 'O'), ('her', 'O'), ('name', 'O'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('associate', 'O'), ('with', 'O'), ('Sasaki', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('Watertown', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('architectural', 'O'), ('concern', 'O'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('High', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Music', 'ORGANIZATION'), ('and', 'O'), ('Art', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('B.A.', 'O'), ('degree', 'O'), ('in', 'O'), ('film', 'O'), ('history', 'O'), ('from', 'O'), ('Yale', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('Master', 'O'), ('of', 'O'), ('Architecture', 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Massachusetts', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('is', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Bernard', 'PERSON'), ('Greenwald', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Westport', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('composer', 'O'), (',', 'O'), ('conductor', 'O'), ('and', 'O'), ('arranger', 'O'), (',', 'O'), ('known', 'O'), ('professionally', 'O'), ('as', 'O'), ('Bernard', 'PERSON'), ('Green', 'PERSON'), (',', 'O'), ('was', 'O'), ('responsible', 'O'), ('for', 'O'), ('the', 'O'), ('music', 'O'), ('for', 'O'), ('radio', 'O'), ('and', 'O'), ('television', 'O'), ('shows', 'O'), ('and', 'O'), ('films', 'O'), (',', 'O'), ('including', 'O'), (\"''\", 'O'), ('The', 'O'), ('Henry', 'ORGANIZATION'), ('Morgan', 'ORGANIZATION'), ('Radio', 'ORGANIZATION'), ('Show', 'ORGANIZATION'), (',', 'O'), (\"''\", 'O'), (\"''\", 'O'), ('Mr.', 'PERSON'), ('Peppers', 'O'), (\"''\", 'O'), ('and', 'O'), (\"''\", 'O'), ('Caesar', 'PERSON'), (\"'s\", 'O'), ('Hour', 'O'), (',', 'O'), (\"''\", 'O'), ('and', 'O'), ('the', 'O'), ('movie', 'O'), (\"''\", 'O'), ('All', 'O'), ('the', 'O'), ('Way', 'O'), ('Home', 'O'), ('.', 'O'), (\"''\", 'O'), ('Mr.', 'PERSON'), ('Cavallo', 'PERSON'), (',', 'O'), ('a', 'O'), ('commodities', 'O'), ('trader', 'O'), ('for', 'O'), ('Richard', 'ORGANIZATION'), ('Dennis', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Chicago', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('in', 'O'), ('1978', 'O'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Luigi', 'PERSON'), ('Cavallo', 'PERSON'), ('of', 'O'), ('Montigny', 'PERSON'), ('sur', 'O'), ('Loing', 'O'), (',', 'O'), ('France', 'LOCATION'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('a', 'O'), ('writer', 'O'), (',', 'O'), ('and', 'O'), ('Norma', 'PERSON'), ('Cavallo', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Michele', 'PERSON'), ('Trowbridge', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Clinton', 'PERSON'), ('Whiting', 'PERSON'), ('Trowbridge', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Philadelphia', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Thomas', 'PERSON'), ('Ballard', 'PERSON'), ('Parsons', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('David', 'PERSON'), ('Church', 'PERSON'), ('Parsons', 'PERSON'), ('of', 'O'), ('Muncie', 'LOCATION'), (',', 'O'), ('Ind.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Robert', 'PERSON'), ('Gustafson', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('First', 'ORGANIZATION'), ('Congregational', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'ORGANIZATION'), ('Blue', 'ORGANIZATION'), ('Hill', 'ORGANIZATION'), (',', 'O'), ('Me', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Parsons', 'PERSON'), ('until', 'O'), ('recently', 'O'), ('was', 'O'), ('a', 'O'), ('jewelry', 'O'), ('designer', 'O'), ('and', 'O'), ('saleswoman', 'O'), ('for', 'O'), ('the', 'O'), ('Aaron', 'ORGANIZATION'), ('Faber', 'ORGANIZATION'), ('Gallery', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('and', 'O'), ('Mr.', 'PERSON'), ('Parsons', 'PERSON'), ('graduated', 'O'), ('from', 'O'), ('Principia', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Elsah', 'LOCATION'), (',', 'O'), ('Ill.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('an', 'O'), ('author', 'O'), (',', 'O'), ('is', 'O'), ('retired', 'O'), ('and', 'O'), ('was', 'O'), ('formerly', 'O'), ('professor', 'O'), ('of', 'O'), ('English', 'O'), ('at', 'O'), ('Dowling', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('Jean', 'PERSON'), ('Whiting', 'PERSON'), ('Trowbridge', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Rev.', 'R'), ('George', 'PERSON'), ('Augustus', 'PERSON'), ('Trowbridge', 'PERSON'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('a', 'O'), ('minister', 'O'), ('at', 'O'), ('All', 'ORGANIZATION'), ('Angels', 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('St.', 'LOCATION'), ('Paul', 'LOCATION'), (\"'s\", 'O'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Chestnut', 'LOCATION'), ('Hill', 'LOCATION'), (',', 'O'), ('Philadelphia', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('great-granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Augustus', 'PERSON'), ('Trowbridge', 'PERSON'), ('of', 'O'), ('Princeton', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('dean', 'O'), ('of', 'O'), ('the', 'O'), ('graduate', 'O'), ('school', 'O'), ('of', 'O'), ('Princeton', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Parsons', 'PERSON'), ('is', 'O'), ('the', 'O'), ('western', 'O'), ('regional', 'O'), ('manager', 'O'), ('for', 'O'), ('Cherokee', 'ORGANIZATION'), ('Container', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('Chicago', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('owns', 'O'), ('and', 'O'), ('operates', 'O'), ('Ballard', 'ORGANIZATION'), ('Hardware', 'ORGANIZATION'), ('and', 'O'), ('Ritz', 'ORGANIZATION'), ('Sporting', 'ORGANIZATION'), ('Goods', 'ORGANIZATION'), (',', 'O'), ('both', 'O'), ('in', 'O'), ('Muncie', 'LOCATION'), ('.', 'O')), (('Carol', 'PERSON'), ('Ann', 'PERSON'), ('Jacobson', 'PERSON'), (',', 'O'), ('a', 'O'), ('nurse', 'O'), ('practitioner', 'O'), ('at', 'O'), ('the', 'O'), ('Gouverneur', 'O'), ('Diagnostic', 'O'), ('and', 'O'), ('Treatment', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('Dr.', 'PERSON'), ('Steven', 'PERSON'), ('Weiss', 'PERSON'), (',', 'O'), ('a', 'O'), ('senior', 'O'), ('resident', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Luke', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('-', 'O'), ('Roosevelt', 'ORGANIZATION'), ('Hospital', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), (',', 'O'), ('were', 'O'), ('married', 'O'), ('yesterday', 'O'), ('at', 'O'), ('the', 'O'), ('Pierre', 'PERSON'), ('Hotel', 'PERSON'), ('.', 'O'), ('Rabbi', 'R'), ('Peter', 'PERSON'), ('Kasdan', 'PERSON'), ('officiated', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Edwin', 'PERSON'), ('Jacobson', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Southhampton', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Arizona', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('nursing', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('investor', 'O'), ('.', 'O'), ('Dr.', 'PERSON'), ('Weiss', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('I.', 'PERSON'), ('Weiss', 'PERSON'), ('of', 'O'), ('West', 'LOCATION'), ('Orange', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Washington', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('his', 'O'), ('medical', 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Chicago', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('physician', 'O'), ('in', 'O'), ('Livingston', 'LOCATION'), ('and', 'O'), ('Union', 'O'), (',', 'O'), ('N.J.', 'LOCATION')), (('Elissa', 'PERSON'), ('Beth', 'PERSON'), ('Udell', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Bernard', 'PERSON'), ('Udell', 'PERSON'), ('of', 'O'), ('Plainview', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Dr.', 'PERSON'), ('Mark', 'PERSON'), ('Macher', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Ralph', 'PERSON'), ('Macher', 'PERSON'), ('of', 'O'), ('Brooklyn', 'LOCATION'), ('.', 'O'), ('Rabbi', 'R'), ('Dr.', 'PERSON'), ('Elliot', 'PERSON'), ('Udell', 'PERSON'), (',', 'O'), ('the', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('brother', 'O'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Manhattan', 'LOCATION'), ('Beach', 'LOCATION'), ('Jewish', 'O'), ('Center', 'O'), ('in', 'O'), ('Brooklyn', 'LOCATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Macher', 'PERSON'), (',', 'O'), ('an', 'O'), ('associate', 'O'), ('analyst', 'O'), ('in', 'O'), ('the', 'O'), ('forecasting', 'O'), ('and', 'O'), ('economic', 'O'), ('analysis', 'O'), ('department', 'O'), ('of', 'O'), ('the', 'O'), ('Consolidated', 'ORGANIZATION'), ('Edison', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('at', 'O'), ('Buffalo', 'LOCATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('urban', 'O'), ('and', 'O'), ('policy', 'O'), ('studies', 'O'), ('from', 'O'), ('its', 'O'), ('Stony', 'LOCATION'), ('Brook', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('campus', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('and', 'O'), ('her', 'O'), ('mother', 'O'), (',', 'O'), ('Ruth', 'PERSON'), ('Udell', 'PERSON'), (',', 'O'), ('is', 'O'), ('store', 'O'), ('manager', 'O'), ('of', 'O'), ('the', 'O'), ('Udell', 'ORGANIZATION'), ('Pharmacy', 'ORGANIZATION'), ('in', 'O'), ('Jericho', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('Her', 'O'), ('mother', 'O'), ('is', 'O'), ('also', 'O'), ('president', 'O'), ('of', 'O'), ('Dartmouth', 'ORGANIZATION'), ('Decorators', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('Plainview', 'LOCATION'), ('interior-decorating', 'O'), ('concern', 'O'), ('.', 'O'), ('Dr.', 'PERSON'), ('Macher', 'PERSON'), (',', 'O'), ('a', 'O'), ('resident', 'O'), ('in', 'O'), ('radiation', 'O'), ('oncology', 'O'), ('at', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Ohio', 'ORGANIZATION'), ('Wesleyan', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('psychology', 'O'), ('from', 'O'), ('Ohio', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('medical', 'O'), ('degree', 'O'), ('from', 'O'), ('Howard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('retired', 'O'), ('and', 'O'), ('was', 'O'), ('formerly', 'O'), ('president', 'O'), ('of', 'O'), ('Macher', 'ORGANIZATION'), ('Hosiery', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Hilary', 'PERSON'), ('Howard', 'PERSON'), ('Good', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Joel', 'PERSON'), ('Michael', 'PERSON'), ('Segal', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('East', 'LOCATION'), ('Hampton', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Barry', 'ORGANIZATION'), ('Campbell', 'ORGANIZATION'), ('Good', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('and', 'O'), ('Water', 'O'), ('Mill', 'O'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Noubar', 'PERSON'), ('Allen', 'PERSON'), ('Stone', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Charles', 'PERSON'), ('Cabeen', 'PERSON'), ('Stone', 'PERSON'), ('of', 'O'), ('Corpus', 'LOCATION'), ('Christi', 'LOCATION'), (',', 'O'), ('Tex.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Francis', 'PERSON'), ('B.', 'PERSON'), ('Creamer', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Luke', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('East', 'LOCATION'), ('Hampton', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('couple', 'O'), ('are', 'O'), ('both', 'O'), ('with', 'O'), ('ABC', 'ORGANIZATION'), ('SportsBeat', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('division', 'O'), ('of', 'O'), ('ABC', 'ORGANIZATION'), ('Sports', 'ORGANIZATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Stone', 'PERSON'), ('is', 'O'), ('the', 'O'), ('production', 'O'), ('manager', 'O'), ('and', 'O'), ('her', 'O'), ('husband', 'O'), ('is', 'O'), ('the', 'O'), ('director', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Stone', 'PERSON'), ('is', 'O'), ('also', 'O'), ('an', 'O'), ('associate', 'O'), ('director', 'O'), ('of', 'O'), ('ABC', 'ORGANIZATION'), ('Sports', 'ORGANIZATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Stone', 'PERSON'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Taft', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('studied', 'O'), ('at', 'O'), ('Hobart-William', 'ORGANIZATION'), ('Smith', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('Boston', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('managing', 'O'), ('director', 'O'), ('and', 'O'), ('senior', 'O'), ('analyst', 'O'), ('for', 'O'), ('Morgan', 'ORGANIZATION'), ('Stanley', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('investment', 'O'), ('concern', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Stone', 'PERSON'), ('graduated', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Baylor', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('real-estate', 'O'), ('developer', 'O'), ('in', 'O'), ('Corpus', 'LOCATION'), ('Christi', 'LOCATION'), ('.', 'O')), (('Janet', 'PERSON'), ('Pauline', 'PERSON'), ('Street', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('James', 'PERSON'), ('J.', 'PERSON'), ('Street', 'O'), ('of', 'O'), ('Metuchen', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Cesar', 'PERSON'), ('Ordonez', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Homero', 'PERSON'), ('Ordonez', 'PERSON'), ('of', 'O'), ('Brooklyn', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Graciela', 'PERSON'), ('Guerra', 'PERSON'), ('Ordonez', 'PERSON'), ('.', 'O'), ('Rabbi', 'R'), ('Philip', 'PERSON'), ('Berkowitz', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('Kirkpatrick', 'ORGANIZATION'), ('Chapel', 'ORGANIZATION'), ('at', 'O'), ('Rutgers', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Ordonez', 'PERSON'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('be', 'O'), ('known', 'O'), ('professionally', 'O'), ('as', 'O'), ('Janet', 'PERSON'), ('Street', 'PERSON'), ('Ordonez', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('special', 'O'), ('assistant', 'O'), ('to', 'O'), ('the', 'O'), ('director', 'O'), ('of', 'O'), ('finance', 'O'), ('of', 'O'), ('the', 'O'), ('North', 'LOCATION'), ('Central', 'LOCATION'), ('Bronx', 'LOCATION'), ('Hospital', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('Cornell', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('public', 'O'), ('administration', 'O'), ('from', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('professor', 'O'), ('of', 'O'), ('economics', 'O'), ('at', 'O'), ('Rutgers', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('was', 'O'), ('recently', 'O'), ('dean', 'O'), ('of', 'O'), ('University', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('there', 'O'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('former', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Association', 'ORGANIZATION'), ('for', 'ORGANIZATION'), ('Evolutionary', 'ORGANIZATION'), ('Economics', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Mabel', 'PERSON'), ('Carroll', 'PERSON'), ('Street', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('librarian', 'O'), ('at', 'O'), ('the', 'O'), ('Woodbridge', 'LOCATION'), ('-LRB-', 'O'), ('N.J.', 'LOCATION'), ('-RRB-', 'O'), ('High', 'O'), ('School', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Ordonez', 'PERSON'), (',', 'O'), ('a', 'O'), ('jeweler', 'O'), ('for', 'O'), ('Jacmel', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('jewelry', 'O'), ('manufacturer', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('St.', 'LOCATION'), ('Thomas', 'LOCATION'), ('Apostle', 'LOCATION'), ('Colegio', 'LOCATION'), ('in', 'O'), ('Rio', 'LOCATION'), ('Bamba', 'LOCATION'), (',', 'O'), ('Ecuador', 'LOCATION'), (',', 'O'), ('and', 'O'), ('attended', 'O'), ('the', 'O'), ('Central', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Ecuador', 'ORGANIZATION'), ('in', 'O'), ('Quito', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('retired', 'O'), ('.', 'O'), ('He', 'O'), ('was', 'O'), ('regional', 'O'), ('superintendent', 'O'), ('of', 'O'), ('communications', 'O'), ('in', 'O'), ('Rio', 'LOCATION'), ('Bamba', 'LOCATION'), ('for', 'O'), ('the', 'O'), ('National', 'ORGANIZATION'), ('Communications', 'ORGANIZATION'), ('System', 'ORGANIZATION'), ('in', 'O'), ('Ecuador', 'LOCATION'), ('.', 'O')), (('Elisabeth', 'PERSON'), ('Ann', 'PERSON'), ('Tabor', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Gerald', 'PERSON'), ('Y.', 'PERSON'), ('Tabor', 'PERSON'), ('of', 'O'), ('Fairfield', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Newport', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Eric', 'PERSON'), ('Torsten', 'PERSON'), ('Fredrikson', 'PERSON'), ('Fleisher', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Elizabeth', 'PERSON'), ('Fredrikson', 'PERSON'), ('Leake', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Eric', 'PERSON'), ('W.', 'PERSON'), ('Fleisher', 'PERSON'), ('of', 'O'), ('Bethesda', 'LOCATION'), (',', 'O'), ('Md.', 'LOCATION'), ('.', 'O'), ('Rabbi', 'R'), ('Bruce', 'PERSON'), ('Goldman', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Spinning', 'O'), ('Wheel', 'O'), ('Inn', 'O'), ('in', 'O'), ('Redding', 'LOCATION'), ('Ridge', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('distributor', 'O'), ('sales', 'O'), ('for', 'O'), ('PMH', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('Detroit', 'LOCATION'), ('marketing', 'O'), ('concern', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Fleisher', 'PERSON'), (',', 'O'), ('a', 'O'), ('guitarist', 'O'), ('and', 'O'), ('composer', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('horticulturalist', 'O'), ('for', 'O'), ('Steinhoff', 'PERSON'), ('Landscaping', 'O'), ('and', 'O'), ('for', 'O'), ('Good', 'O'), ('Plants', 'O'), (',', 'O'), ('an', 'O'), ('indoor', 'O'), ('plant', 'O'), ('maintenance', 'O'), ('concern', 'O'), (',', 'O'), ('both', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Masters', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Simsbury', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('Berklee', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Music', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('an', 'O'), ('author', 'O'), ('of', 'O'), ('books', 'O'), ('on', 'O'), ('Scandinavia', 'LOCATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('consultant', 'O'), ('to', 'O'), ('the', 'O'), ('Department', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('State', 'ORGANIZATION'), (',', 'O'), ('from', 'O'), ('which', 'O'), ('he', 'O'), ('retired', 'O'), ('as', 'O'), ('special', 'O'), ('assistant', 'O'), ('for', 'O'), ('global', 'O'), ('issues', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Fleisher', 'PERSON'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Wilfred', 'PERSON'), ('Fleisher', 'PERSON'), ('of', 'O'), ('Stockholm', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('a', 'O'), ('State', 'ORGANIZATION'), ('Department', 'ORGANIZATION'), ('correspondent', 'O'), ('for', 'O'), ('The', 'ORGANIZATION'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Times', 'ORGANIZATION'), (',', 'O'), ('the', 'O'), ('Tokyo', 'LOCATION'), ('correspondent', 'O'), ('for', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Herald', 'ORGANIZATION'), ('Tribune', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('managing', 'O'), ('editor', 'O'), ('of', 'O'), ('the', 'O'), ('Japan', 'LOCATION'), ('Advertiser', 'O'), (',', 'O'), ('an', 'O'), ('American', 'O'), ('newspaper', 'O'), ('in', 'O'), ('Tokyo', 'LOCATION'), ('that', 'O'), ('was', 'O'), ('founded', 'O'), ('by', 'O'), ('the', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('great-grandfather', 'O'), (',', 'O'), ('the', 'O'), ('late', 'O'), ('Benjamin', 'PERSON'), ('W.', 'PERSON'), ('Fleisher', 'PERSON'), ('of', 'O'), ('Philadelphia', 'LOCATION'), ('.', 'O')), (('Martha', 'PERSON'), ('Elizabeth', 'PERSON'), ('Miller', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('the', 'O'), ('Rev.', 'R'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Michael', 'PERSON'), ('R.', 'PERSON'), ('Miller', 'PERSON'), ('of', 'O'), ('Matawan', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('in', 'O'), ('Washington', 'LOCATION'), ('yesterday', 'O'), ('to', 'O'), ('Lawrence', 'PERSON'), ('C.', 'PERSON'), ('Duvall', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Charles', 'PERSON'), ('P.', 'PERSON'), ('Duvall', 'PERSON'), ('of', 'O'), ('Potomac', 'LOCATION'), (',', 'O'), ('Md.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('William', 'PERSON'), ('Foreman', 'PERSON'), (',', 'O'), ('assisted', 'O'), ('by', 'O'), ('the', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('father', 'O'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('National', 'ORGANIZATION'), ('Presbyterian', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('.', 'O'), ('Katherine', 'PERSON'), ('Blood', 'PERSON'), ('was', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('.', 'O'), ('Stephen', 'PERSON'), ('R.', 'PERSON'), ('Duvall', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('for', 'O'), ('his', 'O'), ('brother', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('the', 'O'), ('assistant', 'O'), ('office', 'O'), ('manager', 'O'), ('of', 'O'), ('the', 'O'), ('Washington', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Dunnells', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Duvall', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Bennett', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Porter', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('College', 'O'), ('of', 'O'), ('Wooster', 'LOCATION'), (',', 'O'), ('as', 'O'), ('did', 'O'), ('her', 'O'), ('husband', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('minister', 'O'), ('of', 'O'), ('the', 'O'), ('First', 'ORGANIZATION'), ('Presbyterian', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Matawan', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Deborah', 'PERSON'), ('Miller', 'PERSON'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('educational', 'O'), ('consultant', 'O'), ('for', 'O'), ('the', 'O'), ('Monmouth', 'LOCATION'), ('Presbytery', 'LOCATION'), ('in', 'O'), ('Red', 'LOCATION'), ('Bank', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('internist', 'O'), ('.', 'O')), (('Elise', 'PERSON'), ('Mary', 'PERSON'), ('Ambrose', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Myles', 'PERSON'), ('J.', 'PERSON'), ('Ambrose', 'PERSON'), ('of', 'O'), ('Washington', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Elaine', 'PERSON'), ('Ambrose', 'PERSON'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Sgt.', 'PERSON'), ('Robert', 'PERSON'), ('Daniel', 'PERSON'), ('Free', 'PERSON'), ('of', 'O'), ('the', 'O'), ('Army', 'ORGANIZATION'), ('military', 'O'), ('police', 'O'), ('branch', 'O'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Walter', 'PERSON'), ('B.', 'PERSON'), ('Free', 'O'), ('of', 'O'), ('Ardsley', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mary', 'PERSON'), ('Janis', 'PERSON'), ('Free', 'PERSON'), ('.', 'O'), ('Maj.', 'O'), ('James', 'PERSON'), ('Kleffman', 'PERSON'), ('of', 'O'), ('the', 'O'), ('Army', 'ORGANIZATION'), ('Chaplain', 'ORGANIZATION'), ('Corps', 'ORGANIZATION'), ('performed', 'O'), ('the', 'O'), ('Roman', 'O'), ('Catholic', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Memorial', 'O'), ('Chapel', 'O'), ('of', 'O'), ('the', 'O'), ('Walter', 'ORGANIZATION'), ('Reed', 'ORGANIZATION'), ('Army', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), (',', 'O'), ('where', 'O'), ('the', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('criminal', 'O'), ('investigator', 'O'), ('.', 'O'), ('Elizabeth', 'PERSON'), ('Perry', 'PERSON'), ('Curran', 'PERSON'), ('was', 'O'), ('the', 'O'), ('matron', 'O'), ('of', 'O'), ('honor', 'O'), ('.', 'O'), ('Robert', 'PERSON'), ('Hunter', 'PERSON'), ('Leigh', 'PERSON'), ('was', 'O'), ('the', 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Free', 'O'), (',', 'O'), ('until', 'O'), ('recently', 'O'), ('a', 'O'), ('co', 'O'), ('-', 'O'), ('owner', 'O'), ('of', 'O'), ('Those', 'O'), ('Cookies', 'O'), (',', 'O'), ('a', 'O'), ('bakery', 'O'), ('in', 'O'), ('Washington', 'LOCATION'), (',', 'O'), ('attended', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Maryland', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('partner', 'O'), ('of', 'O'), ('the', 'O'), ('Washington', 'LOCATION'), ('law', 'O'), ('firm', 'O'), (\"O'Connor\", 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Hannan', 'ORGANIZATION'), ('and', 'O'), ('was', 'O'), ('formerly', 'O'), ('the', 'O'), ('United', 'LOCATION'), ('States', 'LOCATION'), ('Commissioner', 'O'), ('of', 'O'), ('Customs', 'O'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), ('was', 'O'), ('a', 'O'), ('special', 'O'), ('assistant', 'O'), ('to', 'O'), ('Vice', 'O'), ('President', 'O'), ('Nelson', 'PERSON'), ('A.', 'PERSON'), ('Rockefeller', 'PERSON'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), ('attended', 'O'), ('Temple', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('photographer', 'O'), ('and', 'O'), ('a', 'O'), ('teacher', 'O'), ('at', 'O'), ('the', 'O'), ('Antonelli', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Photography', 'ORGANIZATION'), ('in', 'O'), ('Philadelphia', 'LOCATION'), ('.', 'O')), (('Lita', 'PERSON'), ('Grace', 'PERSON'), ('Flores', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Jose', 'PERSON'), ('E.', 'PERSON'), ('Flores', 'PERSON'), ('of', 'O'), ('Lima', 'LOCATION'), (',', 'O'), ('Peru', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Philip', 'PERSON'), ('Joseph', 'PERSON'), ('Romero', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Joseph', 'PERSON'), ('J.', 'PERSON'), ('Romero', 'PERSON'), ('of', 'O'), ('East', 'LOCATION'), ('Brunswick', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('The', 'O'), ('Rev.', 'R'), ('Campbell', 'PERSON'), ('Gillon', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Georgetown', 'ORGANIZATION'), ('Presbyterian', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), ('.', 'O')), (('Janet', 'PERSON'), ('Lockwood', 'PERSON'), ('Nettleton', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('C.', 'PERSON'), ('Nettleton', 'PERSON'), ('of', 'O'), ('Greenfield', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Peter', 'PERSON'), ('Jeffrey', 'PERSON'), ('Otto', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Paul', 'PERSON'), ('W.', 'PERSON'), ('Otto', 'PERSON'), ('of', 'O'), ('Longmeadow', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Dr.', 'PERSON'), ('Bryant', 'PERSON'), ('M.', 'PERSON'), ('Kirkland', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Fifth', 'O'), ('Avenue', 'O'), ('Presbyterian', 'O'), ('Church', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Franci', 'PERSON'), ('J.', 'PERSON'), ('Blassberg', 'PERSON'), ('was', 'O'), ('the', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('and', 'O'), ('Thomas', 'PERSON'), ('G.', 'PERSON'), ('Cauchois', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Otto', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('Smith', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('from', 'O'), ('Cornell', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('assistant', 'O'), ('secretary', 'O'), ('of', 'O'), ('the', 'O'), ('Manufacturers', 'ORGANIZATION'), ('Hanover', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('Heritage', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('for', 'ORGANIZATION'), ('Savings', 'ORGANIZATION'), ('in', 'O'), ('Amherst', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Otto', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('Case', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Technology', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('CLI', 'ORGANIZATION'), ('Securities', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('and', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('and', 'O'), ('director', 'O'), ('of', 'O'), ('program', 'O'), ('financing', 'O'), ('at', 'O'), ('Computer', 'ORGANIZATION'), ('Leasing', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('both', 'O'), ('in', 'O'), ('Hackensack', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('His', 'O'), ('father', 'O'), ('retired', 'O'), ('as', 'O'), ('chairman', 'O'), ('of', 'O'), ('United', 'ORGANIZATION'), ('Engineers', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('of', 'O'), ('Wakefield', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O')), (('Janet', 'PERSON'), ('Markoff', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Del', 'PERSON'), ('Markoff', 'PERSON'), ('of', 'O'), ('Westport', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Alan', 'PERSON'), ('G.', 'PERSON'), ('Momeyer', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Florence', 'PERSON'), ('Momeyer', 'PERSON'), ('of', 'O'), ('Kaneohe', 'LOCATION'), (',', 'O'), ('Hawaii', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Glenn', 'PERSON'), ('Momeyer', 'PERSON'), (',', 'O'), ('were', 'O'), ('married', 'O'), ('yesterday', 'O'), ('by', 'O'), ('Rabbi', 'R'), ('Burt', 'PERSON'), ('Siegel', 'PERSON'), ('at', 'O'), ('24', 'O'), ('Fifth', 'O'), ('Avenue', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('is', 'O'), ('an', 'O'), ('investment', 'O'), ('analyst', 'O'), ('for', 'O'), ('Integrated', 'ORGANIZATION'), ('Resources', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('financial', 'O'), ('services', 'O'), ('company', 'O'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), (',', 'O'), ('whose', 'O'), ('previous', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), (',', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('manpower', 'O'), ('planning', 'O'), ('and', 'O'), ('development', 'O'), ('at', 'O'), ('the', 'O'), ('Loews', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('James', 'PERSON'), ('J.', 'PERSON'), ('Thackara', 'PERSON'), ('of', 'O'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Bernard', 'PERSON'), (',', 'O'), ('Me.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Lucy', 'PERSON'), ('Riegel', 'PERSON'), ('Thackara', 'PERSON'), (',', 'O'), ('to', 'O'), ('Kevin', 'PERSON'), ('Patrick', 'PERSON'), ('Kennedy', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('J.', 'PERSON'), ('Kennedy', 'PERSON'), ('of', 'O'), ('Chappaqua', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('and', 'O'), ('bridegroom', 'G'), ('are', 'O'), ('sales', 'O'), ('representatives', 'O'), ('in', 'O'), ('the', 'O'), ('White', 'LOCATION'), ('Plains', 'LOCATION'), ('office', 'O'), ('of', 'O'), ('the', 'O'), ('Rolm', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('telecommunications', 'O'), ('concern', 'O'), ('.', 'O'), ('Miss', 'O'), ('Thackara', 'PERSON'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Westover', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('College', 'O'), ('of', 'O'), ('William', 'PERSON'), ('and', 'O'), ('Mary', 'PERSON'), ('.', 'O'), ('She', 'O'), ('was', 'O'), ('presented', 'O'), ('to', 'O'), ('society', 'O'), ('at', 'O'), ('the', 'O'), ('Junior', 'O'), ('League', 'O'), ('Ball', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('in', 'O'), ('1978', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('senior', 'O'), ('adviser', 'O'), ('for', 'O'), ('North', 'LOCATION'), ('America', 'LOCATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('for', 'O'), ('the', 'O'), ('Credit', 'O'), ('Agricole', 'O'), ('of', 'O'), ('Paris', 'LOCATION'), ('and', 'O'), ('was', 'O'), ('head', 'O'), ('of', 'O'), ('the', 'O'), ('Paris', 'LOCATION'), ('branch', 'O'), ('of', 'O'), ('the', 'O'), ('Chase', 'ORGANIZATION'), ('Manhattan', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Shirley', 'PERSON'), ('Ingalls', 'PERSON'), ('Thackara', 'PERSON'), (',', 'O'), ('was', 'O'), ('assistant', 'O'), ('to', 'O'), ('the', 'O'), ('director', 'O'), ('of', 'O'), ('sales', 'O'), ('of', 'O'), ('Steuben', 'O'), ('Glass', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('Wasps', 'O'), ('-LRB-', 'O'), ('Women', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('Air', 'ORGANIZATION'), ('Force', 'ORGANIZATION'), ('Service', 'ORGANIZATION'), ('Pilots', 'O'), ('-RRB-', 'O'), ('in', 'O'), ('World', 'O'), ('War', 'O'), ('II', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('descendant', 'O'), ('of', 'O'), ('Gen.', 'O'), ('William', 'PERSON'), ('Tecumseh', 'PERSON'), ('Sherman', 'PERSON'), ('.', 'O'), ('Mr.', 'PERSON'), ('Kennedy', 'PERSON'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('Fairfield', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('works', 'O'), ('for', 'O'), ('the', 'O'), ('F.', 'ORGANIZATION'), ('W.', 'ORGANIZATION'), ('Woolworth', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Pamela', 'PERSON'), ('Anne', 'PERSON'), ('Smith', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Wilbert', 'PERSON'), ('J.', 'PERSON'), ('Smith', 'PERSON'), ('of', 'O'), ('St.', 'LOCATION'), ('Louis', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('David', 'PERSON'), ('Drew', 'PERSON'), ('Brunell', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Ruth', 'PERSON'), ('W.', 'PERSON'), ('Ackley', 'PERSON'), ('of', 'O'), ('Hempstead', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Norman', 'PERSON'), ('Brunell', 'PERSON'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Edward', 'PERSON'), (\"O'Connell\", 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Holy', 'ORGANIZATION'), ('Trinity', 'ORGANIZATION'), ('Roman', 'ORGANIZATION'), ('Catholic', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Brunell', 'PERSON'), (',', 'O'), ('director', 'O'), ('of', 'O'), ('marketing', 'O'), ('for', 'O'), ('the', 'O'), ('Naisbitt', 'ORGANIZATION'), ('Group', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('social-science', 'O'), ('research', 'O'), ('concern', 'O'), ('in', 'O'), ('Washington', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Gonzaga', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('in', 'O'), ('Spokane', 'LOCATION'), (',', 'O'), ('Wash.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Worldwide', 'ORGANIZATION'), ('Underwriters', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Wausau', 'ORGANIZATION'), ('Underwriters', 'ORGANIZATION'), ('Insurance', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Wausau', 'ORGANIZATION'), ('Insurance', 'ORGANIZATION'), ('Companies', 'ORGANIZATION'), ('in', 'O'), ('St.', 'LOCATION'), ('Louis', 'LOCATION'), ('and', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('Insurance', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('for', 'ORGANIZATION'), ('Highway', 'ORGANIZATION'), ('Safety', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Brunell', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('Rensselaer', 'ORGANIZATION'), ('Polytechnic', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Harvard', 'ORGANIZATION'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('Administration', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('director', 'O'), ('and', 'O'), ('senior', 'O'), ('partner', 'O'), ('of', 'O'), ('Blake', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Ordway', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('investment', 'O'), ('banking', 'O'), ('and', 'O'), ('venture', 'O'), ('capital', 'O'), ('concern', 'O'), ('in', 'O'), ('Washington', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('chief', 'O'), ('materials', 'O'), ('engineer', 'O'), ('for', 'O'), ('the', 'O'), ('Bechtel', 'ORGANIZATION'), ('Group', 'ORGANIZATION'), ('in', 'O'), ('San', 'LOCATION'), ('Francisco', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), ('is', 'O'), ('the', 'O'), ('founder', 'O'), ('and', 'O'), ('past', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('Open', 'ORGANIZATION'), ('Gate', 'ORGANIZATION'), ('Association', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('center', 'O'), ('and', 'O'), ('residence', 'O'), ('for', 'O'), ('the', 'O'), ('elderly', 'O'), ('in', 'O'), ('Bay', 'LOCATION'), ('Shore', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('His', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O')), (('Annette', 'PERSON'), ('Syminetta', 'PERSON'), ('Martell', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Fred', 'PERSON'), ('C.', 'PERSON'), ('Martell', 'PERSON'), ('of', 'O'), ('Wanamassa', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Erhard', 'PERSON'), ('Schmidt', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Oskar', 'PERSON'), ('Schmidt', 'PERSON'), ('of', 'O'), ('Rochester', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('The', 'O'), ('Rev.', 'R'), ('Dudley', 'PERSON'), ('Rapp', 'PERSON'), (',', 'O'), ('an', 'O'), ('Episcopalian', 'O'), ('minister', 'O'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Junior', 'ORGANIZATION'), ('League', 'ORGANIZATION'), (',', 'O'), ('130', 'O'), ('East', 'O'), ('80th', 'O'), ('Street', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Schmidt', 'PERSON'), ('is', 'O'), ('promotion', 'O'), ('manager', 'O'), ('of', 'O'), ('House', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Garden', 'ORGANIZATION'), ('magazine', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('was', 'O'), ('a', 'O'), ('communications', 'O'), ('specialist', 'O'), ('for', 'O'), ('the', 'O'), ('United', 'ORGANIZATION'), ('States', 'ORGANIZATION'), ('Embassy', 'ORGANIZATION'), ('in', 'O'), ('Santiago', 'LOCATION'), (',', 'O'), ('Chile', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('Hood', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Frederick', 'LOCATION'), (',', 'O'), ('Md.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('International', 'O'), ('Exhibits', 'O'), (',', 'O'), ('a', 'O'), ('manufacturer', 'O'), ('of', 'O'), ('amusement', 'O'), ('park', 'O'), ('games', 'O'), ('in', 'O'), ('Asbury', 'LOCATION'), ('Park', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Rochester', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('he', 'O'), ('was', 'O'), ('elected', 'O'), ('to', 'O'), ('Phi', 'O'), ('Beta', 'O'), ('Kappa', 'O'), (',', 'O'), ('and', 'O'), ('he', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('previous', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('retired', 'O'), ('farmer', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('H.', 'PERSON'), ('Truesdale', 'PERSON'), ('2d', 'O'), ('of', 'O'), ('Cumberland', 'LOCATION'), (',', 'O'), ('Me.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Linda', 'PERSON'), ('Laughlin', 'PERSON'), ('Truesdale', 'PERSON'), (',', 'O'), ('to', 'O'), ('Michael', 'PERSON'), ('Boyle', 'PERSON'), ('Kilroy', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Edward', 'PERSON'), ('A.', 'PERSON'), ('Kilroy', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Shaker', 'O'), ('Heights', 'O'), (',', 'O'), ('Ohio', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Truesdale', 'PERSON'), (',', 'O'), ('a', 'O'), ('real-estate', 'O'), ('agent', 'O'), ('with', 'O'), ('Rector', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('of', 'O'), ('Alexandria', 'LOCATION'), (',', 'O'), ('Va.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Miss', 'ORGANIZATION'), ('Porter', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('B.A.', 'O'), ('degree', 'O'), ('in', 'O'), ('American', 'O'), ('studies', 'O'), ('from', 'O'), ('Yale', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('retired', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Industrial', 'ORGANIZATION'), ('Dryer', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Stamford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Melville', 'PERSON'), ('D.', 'PERSON'), ('Truesdale', 'PERSON'), ('of', 'O'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('also', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Warren', 'PERSON'), ('M.', 'PERSON'), ('Wells', 'PERSON'), ('of', 'O'), ('Devon', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Colgate', 'ORGANIZATION'), ('Darden', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('the', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Virginia', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Kilroy', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('private', 'O'), ('investment', 'O'), ('concern', 'O'), ('in', 'O'), ('Cleveland', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Kilroy', 'PERSON'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Charles', 'PERSON'), ('F.', 'PERSON'), ('McCrory', 'PERSON'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Edward', 'PERSON'), ('A.', 'PERSON'), ('Kilroy', 'PERSON'), ('of', 'O'), ('Shaker', 'O'), ('Heights', 'O'), (',', 'O'), ('Ohio', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Kilroy', 'PERSON'), ('was', 'O'), ('founder', 'O'), (',', 'O'), ('president', 'O'), ('and', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('Kilroy', 'ORGANIZATION'), ('Steel', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Cleveland', 'LOCATION'), ('.', 'O')), (('Sarah', 'PERSON'), ('Schuyler', 'PERSON'), ('Tweedy', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Helen', 'PERSON'), ('B.', 'PERSON'), ('Chenery', 'PERSON'), ('of', 'O'), ('Oyster', 'LOCATION'), ('Bay', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('John', 'PERSON'), ('Bayard', 'PERSON'), ('Tweedy', 'PERSON'), ('of', 'O'), ('Denver', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('David', 'PERSON'), ('Geror', 'PERSON'), ('Manning', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Manning', 'PERSON'), ('of', 'O'), ('St.', 'LOCATION'), ('Michaels', 'LOCATION'), (',', 'O'), ('Md.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Richard', 'PERSON'), ('Leonard', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Unitarian', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('All', 'ORGANIZATION'), ('Souls', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('keep', 'O'), ('her', 'O'), ('name', 'O'), ('professionally', 'O'), (',', 'O'), ('and', 'O'), ('Mr.', 'PERSON'), ('Manning', 'PERSON'), ('are', 'O'), ('owners', 'O'), ('of', 'O'), ('Atlantis', 'ORGANIZATION'), ('2', 'O'), (',', 'O'), ('a', 'O'), ('recreational', 'O'), ('scuba-diving', 'O'), ('training', 'O'), ('center', 'O'), ('and', 'O'), ('retail', 'O'), ('store', 'O'), ('in', 'O'), ('Manhattan', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Kent', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Denver', 'LOCATION'), ('and', 'O'), ('attended', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('Pace', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), ('is', 'O'), ('the', 'O'), ('owner', 'O'), ('of', 'O'), ('the', 'O'), ('Meadow', 'O'), ('Stable', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('lawyer', 'O'), ('in', 'O'), ('Denver', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Christopher', 'PERSON'), ('T.', 'PERSON'), ('Chenery', 'PERSON'), ('of', 'O'), ('Pelham', 'LOCATION'), ('Manor', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('Southern', 'ORGANIZATION'), ('Natural', 'ORGANIZATION'), ('Gas', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('founder', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Racing', 'ORGANIZATION'), ('Association', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mrs.', 'PERSON'), ('Chenery', 'PERSON'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('A.', 'PERSON'), ('Mellick', 'PERSON'), ('Tweedy', 'PERSON'), ('of', 'O'), ('Knickerbocker', 'O'), (',', 'O'), ('Tex.', 'LOCATION'), (',', 'O'), ('who', 'O'), ('were', 'O'), ('cattle', 'O'), ('ranchers', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Manning', 'PERSON'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('Denver', 'LOCATION'), ('Country', 'O'), ('Day', 'O'), ('School', 'O'), ('and', 'O'), ('studied', 'O'), ('architecture', 'O'), ('at', 'O'), ('the', 'O'), ('Pratt', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('recently', 'O'), ('retired', 'O'), ('as', 'O'), ('an', 'O'), ('area', 'O'), ('manager', 'O'), ('in', 'O'), ('the', 'O'), ('export', 'O'), ('division', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('of', 'O'), ('the', 'O'), ('ABEX', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('manufacturer', 'O'), ('of', 'O'), ('heavy', 'O'), ('machinery', 'O'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Frederick', 'PERSON'), ('Manning', 'PERSON'), ('of', 'O'), ('Easton', 'LOCATION'), (',', 'O'), ('Md.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('N.', 'PERSON'), ('Quinn', 'PERSON'), ('of', 'O'), ('Sherman', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Quinn', 'PERSON'), ('.', 'O')), (('Mary', 'PERSON'), ('Jane', 'PERSON'), ('Van', 'PERSON'), ('Vechten', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Schuyler', 'PERSON'), ('Van', 'PERSON'), ('Vechten', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Highlands', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Ann', 'PERSON'), ('Georgia', 'PERSON'), ('Stevens', 'PERSON'), ('Van', 'PERSON'), ('Vechten', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Rumson', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Thomas', 'PERSON'), ('Yoder', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Delores', 'PERSON'), ('Hagen', 'PERSON'), ('of', 'O'), ('Louisville', 'LOCATION'), (',', 'O'), ('Ky.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Mr.', 'PERSON'), ('Yoder', 'PERSON'), ('of', 'O'), ('Houston', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Harry', 'PERSON'), ('Sorrensen', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('All', 'ORGANIZATION'), ('Saints', 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Navesink', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('Mrs.', 'PERSON'), ('Yoder', 'PERSON'), (',', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('Boston', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('teacher', 'O'), ('in', 'O'), ('the', 'O'), ('Houston', 'LOCATION'), ('school', 'O'), ('system', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('publisher', 'O'), ('of', 'O'), ('The', 'O'), ('Retail', 'O'), ('Reader', 'O'), ('and', 'O'), ('The', 'O'), ('Ad', 'O'), ('Reader', 'O'), (',', 'O'), ('newsletters', 'O'), ('published', 'O'), ('in', 'O'), ('Atlantic', 'LOCATION'), ('Highlands', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (';', 'O'), ('he', 'O'), ('is', 'O'), ('a', 'O'), ('former', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Abercrombie', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Fitch', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Young', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Rubicam', 'ORGANIZATION'), ('advertising', 'O'), ('agency', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Schuyler', 'PERSON'), ('Van', 'PERSON'), ('Vechten', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('George', 'PERSON'), ('A.', 'PERSON'), ('Stevens', 'PERSON'), ('of', 'O'), ('Red', 'LOCATION'), ('Bank', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Yoder', 'PERSON'), ('is', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('sales', 'O'), ('and', 'O'), ('services', 'O'), ('for', 'O'), ('Air', 'ORGANIZATION'), ('Piper', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('aircraft', 'O'), ('concern', 'O'), ('in', 'O'), ('Houston', 'LOCATION'), (',', 'O'), ('and', 'O'), ('a', 'O'), ('former', 'O'), ('Air', 'ORGANIZATION'), ('Force', 'ORGANIZATION'), ('sergeant', 'O'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Embry-Riddle', 'ORGANIZATION'), ('Aeronautical', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('in', 'O'), ('Houston', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('previous', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('renovation', 'O'), ('contractor', 'O'), ('in', 'O'), ('Houston', 'LOCATION'), ('.', 'O')), (('Dr.', 'PERSON'), ('Barbara', 'PERSON'), ('Esther', 'PERSON'), ('Strassberg', 'PERSON'), (',', 'O'), ('a', 'O'), ('pediatrician', 'O'), (',', 'O'), ('and', 'O'), ('Judge', 'O'), ('Harold', 'PERSON'), ('Enten', 'PERSON'), (',', 'O'), ('supervising', 'O'), ('judge', 'O'), ('of', 'O'), ('the', 'O'), ('Bronx', 'ORGANIZATION'), ('Criminal', 'ORGANIZATION'), ('Court', 'ORGANIZATION'), ('and', 'O'), ('an', 'O'), ('acting', 'O'), ('justice', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('Supreme', 'ORGANIZATION'), ('Court', 'ORGANIZATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('their', 'O'), ('engagement', 'O'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('to', 'O'), ('take', 'O'), ('place', 'O'), ('Nov.', 'O'), ('18', 'O'), ('.', 'O'), ('Dr.', 'PERSON'), ('Strassberg', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Irving', 'PERSON'), ('Strassberg', 'PERSON'), ('of', 'O'), ('Monticello', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('attending', 'O'), ('pediatrician', 'O'), ('at', 'O'), ('the', 'O'), ('St.', 'ORGANIZATION'), ('Luke', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('-', 'O'), ('Roosevelt', 'ORGANIZATION'), ('Hospital', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('lecturer', 'O'), ('at', 'O'), ('the', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Physicians', 'ORGANIZATION'), ('and', 'O'), ('Surgeons', 'O'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Brooklyn', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('the', 'O'), ('Upstate', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('education', 'O'), ('from', 'O'), ('the', 'O'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('at', 'O'), ('Buffalo', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('parents', 'O'), ('are', 'O'), ('the', 'O'), ('former', 'O'), ('owners', 'O'), ('of', 'O'), ('Esther', 'PERSON'), ('Manor', 'PERSON'), (',', 'O'), ('a', 'O'), ('resort', 'O'), ('hotel', 'O'), ('in', 'O'), ('Monticello', 'LOCATION'), ('.', 'O'), ('Judge', 'O'), ('Enten', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Molly', 'PERSON'), ('Enten', 'PERSON'), ('of', 'O'), ('the', 'O'), ('Bronx', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Louis', 'PERSON'), ('Enten', 'PERSON'), (',', 'O'), ('was', 'O'), ('the', 'O'), ('former', 'O'), ('chief', 'O'), ('of', 'O'), ('the', 'O'), ('Supreme', 'ORGANIZATION'), ('Court', 'ORGANIZATION'), ('bureau', 'O'), ('of', 'O'), ('the', 'O'), ('Bronx', 'LOCATION'), ('District', 'LOCATION'), ('Attorney', 'LOCATION'), (\"'s\", 'O'), ('office', 'O'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Art', 'ORGANIZATION'), ('Guild', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('theatrical', 'O'), ('display', 'O'), ('concern', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Mary', 'PERSON'), ('Ellen', 'PERSON'), ('Hennessy', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Joseph', 'PERSON'), ('R.', 'PERSON'), ('Hennessy', 'PERSON'), ('of', 'O'), ('Scarsdale', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('William', 'PERSON'), ('Frank', 'PERSON'), ('Jones', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Jones', 'PERSON'), ('of', 'O'), ('Columbus', 'LOCATION'), (',', 'O'), ('Miss.', 'LOCATION'), ('.', 'O'), ('Msgr.', 'O'), ('Daniel', 'PERSON'), ('S.', 'PERSON'), ('Hamilton', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Church', 'O'), ('of', 'O'), ('Our', 'LOCATION'), ('Lady', 'LOCATION'), ('of', 'LOCATION'), ('Fatima', 'LOCATION'), ('in', 'O'), ('Scarsdale', 'LOCATION'), ('.', 'O'), ('Suzanne', 'PERSON'), ('A.', 'PERSON'), ('Kreinsen', 'PERSON'), ('was', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), (',', 'O'), ('and', 'O'), ('Mr.', 'PERSON'), ('Jones', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('for', 'O'), ('his', 'O'), ('son', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Jones', 'PERSON'), (',', 'O'), ('an', 'O'), ('assistant', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Morgan', 'ORGANIZATION'), ('Guaranty', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Wellesley', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('she', 'O'), ('was', 'O'), ('elected', 'O'), ('to', 'O'), ('Phi', 'O'), ('Beta', 'O'), ('Kappa', 'O'), (',', 'O'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('from', 'O'), ('the', 'O'), ('Wharton', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('the', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), (',', 'O'), ('as', 'O'), ('did', 'O'), ('her', 'O'), ('husband', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('retired', 'O'), ('as', 'O'), ('a', 'O'), ('customer', 'O'), ('representative', 'O'), ('for', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('Express', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Jones', 'PERSON'), (',', 'O'), ('a', 'O'), ('cum', 'O'), ('laude', 'O'), ('graduate', 'O'), ('of', 'O'), ('Princeton', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('who', 'O'), ('received', 'O'), ('a', 'O'), ('law', 'O'), ('degree', 'O'), ('from', 'O'), ('Georgetown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('securities', 'O'), ('analyst', 'O'), ('with', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('investment', 'O'), ('concern', 'O'), ('of', 'O'), ('J.', 'ORGANIZATION'), ('Bush', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('retired', 'O'), ('Navy', 'ORGANIZATION'), ('lieutenant', 'O'), ('commander', 'O'), ('.', 'O')), (('Lynn', 'PERSON'), ('Ellen', 'PERSON'), ('Gordon', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Ward', 'PERSON'), ('Blake', 'PERSON'), ('Gordon', 'PERSON'), ('of', 'O'), ('Weston', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Christopher', 'PERSON'), ('John', 'PERSON'), ('Sellon', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Peter', 'PERSON'), ('John', 'PERSON'), ('Sellon', 'PERSON'), ('of', 'O'), ('Rye', 'O'), (',', 'O'), ('N.Y.', 'LOCATION'), ('The', 'O'), ('Rev.', 'R'), ('Theodore', 'PERSON'), ('G.', 'PERSON'), ('Hoskins', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Saugatuck', 'ORGANIZATION'), ('Congregational', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Westport', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('Douglas', 'PERSON'), ('Dunn', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Sellon', 'PERSON'), (',', 'O'), ('a', 'O'), ('treaty', 'O'), ('coordinator', 'O'), ('for', 'O'), ('the', 'O'), ('Hanseco', 'ORGANIZATION'), ('Reinsurance', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Lawrence', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('of', 'O'), ('Intere', 'ORGANIZATION'), ('Intermediaries', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('reinsurance', 'O'), ('company', 'O'), (',', 'O'), ('and', 'O'), ('a', 'O'), ('governor', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Insurance', 'ORGANIZATION'), ('Exchange', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Sellon', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('Choate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Vermont', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('treaty', 'O'), ('analyst', 'O'), ('for', 'O'), ('Cameron', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Colby', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('Boston', 'LOCATION'), ('reinsurance', 'O'), ('company', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Sellon', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('reinsurance', 'O'), ('company', 'O'), ('in', 'O'), ('White', 'LOCATION'), ('Plains', 'LOCATION'), (',', 'O'), ('and', 'O'), ('a', 'O'), ('general', 'O'), ('partner', 'O'), ('of', 'O'), ('the', 'O'), ('Municipal', 'ORGANIZATION'), ('Issuers', 'ORGANIZATION'), ('Service', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('municipal-bond', 'O'), ('selling', 'O'), ('concern', 'O'), ('in', 'O'), ('White', 'LOCATION'), ('Plains', 'LOCATION'), ('.', 'O')), (('Rebecca', 'PERSON'), ('C.', 'PERSON'), ('Eaton', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Paul', 'PERSON'), ('Conant', 'PERSON'), ('Eaton', 'PERSON'), ('of', 'O'), ('Pasadena', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Kennebunkport', 'LOCATION'), (',', 'O'), ('Me.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Paul', 'PERSON'), ('Robert', 'PERSON'), ('Cooper', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Henry', 'PERSON'), ('G.', 'PERSON'), ('Cooper', 'PERSON'), ('of', 'O'), ('Springfield', 'LOCATION'), (',', 'O'), ('Vt.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Rev.', 'R'), ('Cooper', 'PERSON'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Robert', 'PERSON'), ('M.', 'PERSON'), ('Howes', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('South', 'ORGANIZATION'), ('Congregational', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Kennebunkport', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('film', 'O'), ('producer', 'O'), ('for', 'O'), ('public', 'O'), ('television', 'O'), ('station', 'O'), ('WGBH', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('husband', 'O'), ('is', 'O'), ('a', 'O'), ('sculptor', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('James', 'PERSON'), ('Edward', 'PERSON'), ('Buck', 'PERSON'), ('of', 'O'), ('Manhasset', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Tara', 'PERSON'), ('Killingsworth', 'PERSON'), ('Buck', 'PERSON'), (',', 'O'), ('to', 'O'), ('Jack', 'PERSON'), ('Bevel', 'PERSON'), ('Kester', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Kester', 'PERSON'), ('of', 'O'), ('Salisbury', 'LOCATION'), (',', 'O'), ('N.C.', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Buck', 'O'), (',', 'O'), ('a', 'O'), ('candidate', 'O'), ('for', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('library', 'O'), ('science', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('North', 'ORGANIZATION'), ('Carolina', 'ORGANIZATION'), ('at', 'O'), ('Chapel', 'LOCATION'), ('Hill', 'LOCATION'), (',', 'O'), ('received', 'O'), ('an', 'O'), ('A.B.', 'O'), ('degree', 'O'), ('in', 'O'), ('art', 'O'), ('history', 'O'), ('there', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('corporate', 'O'), ('secretary', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Stock', 'ORGANIZATION'), ('Exchange', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('mother', 'O'), (',', 'O'), ('Lucille', 'PERSON'), ('Buck', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('teacher', 'O'), ('at', 'O'), ('the', 'O'), ('Buckley', 'O'), ('Country', 'O'), ('Day', 'O'), ('School', 'O'), ('in', 'O'), ('Roslyn', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('from', 'O'), ('which', 'O'), ('Miss', 'O'), ('Buck', 'O'), ('graduated', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Kester', 'PERSON'), (',', 'O'), ('an', 'O'), ('accountant', 'O'), ('with', 'O'), ('Ernst', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Whinney', 'ORGANIZATION'), ('in', 'O'), ('Raleigh', 'LOCATION'), (',', 'O'), ('N.C.', 'LOCATION'), (',', 'O'), ('received', 'O'), ('a', 'O'), ('B.S.', 'O'), ('degree', 'O'), ('in', 'O'), ('business', 'O'), ('administration', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('North', 'ORGANIZATION'), ('Carolina', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('district', 'O'), ('representative', 'O'), ('of', 'O'), ('the', 'O'), ('Prudential', 'ORGANIZATION'), ('Life', 'ORGANIZATION'), ('Insurance', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Salisbury', 'LOCATION'), ('.', 'O')), (('Susan', 'PERSON'), ('Boslet', 'PERSON'), ('Smith', 'PERSON'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Robert', 'PERSON'), ('James', 'PERSON'), ('Glovsky', 'PERSON'), ('at', 'O'), ('the', 'O'), ('Marsh', 'ORGANIZATION'), ('Chapel', 'ORGANIZATION'), ('at', 'O'), ('Boston', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Joseph', 'PERSON'), ('Birmingham', 'PERSON'), (',', 'O'), ('a', 'O'), ('Roman', 'O'), ('Catholic', 'O'), ('priest', 'R'), (',', 'O'), ('and', 'O'), ('Rabbi', 'R'), ('Benjamin', 'PERSON'), ('Rudafsky', 'PERSON'), ('officiated', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Stewart', 'PERSON'), ('N.', 'PERSON'), ('Smith', 'PERSON'), ('of', 'O'), ('Toronto', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Smith', 'PERSON'), ('is', 'O'), ('president', 'O'), ('and', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('board', 'O'), ('of', 'O'), ('Uniroyal', 'ORGANIZATION'), ('Ltd.', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('husband', 'O'), ('is', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Priscilla', 'PERSON'), ('E.', 'PERSON'), ('Glovsky', 'PERSON'), ('of', 'O'), ('Chestnut', 'LOCATION'), ('Hill', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('William', 'PERSON'), ('M.', 'PERSON'), ('Glovsky', 'PERSON'), ('of', 'O'), ('Boston', 'LOCATION'), (',', 'O'), ('where', 'O'), ('his', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Mintz', 'LOCATION'), (',', 'O'), ('Levin', 'PERSON'), (',', 'O'), ('Cohn', 'PERSON'), (',', 'O'), ('Ferris', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Glovsky', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Popeo', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('Wheaton', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('consultant', 'O'), ('in', 'O'), ('the', 'O'), ('field', 'O'), ('assistance', 'O'), ('and', 'O'), ('support', 'O'), ('department', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('England', 'ORGANIZATION'), ('Life', 'ORGANIZATION'), ('Insurance', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), (',', 'O'), ('where', 'O'), ('the', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Baystate', 'ORGANIZATION'), ('Financial', 'ORGANIZATION'), ('Services', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Darrow', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('Lebanon', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('Dartmouth', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('Boston', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('he', 'O'), ('received', 'O'), ('a', 'O'), ('J.D.', 'O'), ('and', 'O'), ('an', 'O'), ('L.L.M.', 'O'), ('degree', 'O'), ('-LRB-', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('taxation', 'O'), ('-RRB-', 'O'), ('.', 'O'), ('His', 'O'), ('previous', 'O'), ('marriage', 'O'), ('was', 'O'), ('annulled', 'O'), ('.', 'O')), (('Margaret', 'PERSON'), ('Ackles', 'PERSON'), ('Stirton', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('A.', 'PERSON'), ('Stirton', 'PERSON'), ('of', 'O'), ('Longmeadow', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('John', 'PERSON'), ('Michael', 'PERSON'), ('Zebb', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Joseph', 'PERSON'), ('J.', 'PERSON'), ('Zebb', 'PERSON'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Zebb', 'PERSON'), ('of', 'O'), ('Springfield', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Jeffrey', 'PERSON'), ('M.', 'PERSON'), ('Lewis', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('First', 'ORGANIZATION'), ('Congregational', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Christ', 'ORGANIZATION'), ('in', 'O'), ('Longmeadow', 'LOCATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Zebb', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('MacDuffie', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Wheaton', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('English', 'O'), ('from', 'O'), ('Trinity', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Hartford', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('methods', 'O'), ('analyst', 'O'), ('for', 'O'), ('Aetna', 'ORGANIZATION'), ('Life', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Casualty', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('there', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('and', 'O'), ('owner', 'O'), ('of', 'O'), ('the', 'O'), ('J.', 'PERSON'), ('C.', 'PERSON'), ('Otto', 'PERSON'), ('Company', 'PERSON'), (',', 'O'), ('a', 'O'), ('printing', 'O'), ('and', 'O'), ('lithography', 'O'), ('concern', 'O'), ('in', 'O'), ('East', 'LOCATION'), ('Longmeadow', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Zebb', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Massachusetts', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('systems', 'O'), ('analyst', 'O'), ('for', 'O'), ('the', 'O'), ('Massachusetts', 'ORGANIZATION'), ('Mutual', 'ORGANIZATION'), ('Life', 'ORGANIZATION'), ('Insurance', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Springfield', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O')), (('Elizabeth', 'PERSON'), ('Ann', 'PERSON'), ('Murphy', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Francis', 'PERSON'), ('P.', 'PERSON'), ('Murphy', 'PERSON'), ('of', 'O'), ('Upper', 'LOCATION'), ('Montclair', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Groton', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Benjamin', 'PERSON'), ('Edward', 'PERSON'), ('Greenfield', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Audrey', 'ORGANIZATION'), ('Heard', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Mystic', 'ORGANIZATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Joseph', 'PERSON'), ('R.', 'PERSON'), ('Greenfield', 'PERSON'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('R.', 'PERSON'), ('Francis', 'PERSON'), ('Johnson', 'PERSON'), (',', 'O'), ('an', 'O'), ('Episcopal', 'LOCATION'), ('priest', 'R'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Harkness', 'ORGANIZATION'), ('Chapel', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Connecticut', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O')), (('Susan', 'PERSON'), ('Lyn', 'PERSON'), ('Browndorf', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Irving', 'PERSON'), ('Milrod', 'PERSON'), ('of', 'O'), ('River', 'LOCATION'), ('Edge', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Marvin', 'PERSON'), ('Browndorf', 'PERSON'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Paul', 'PERSON'), ('Odell', 'PERSON'), ('Hirschbiel', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Hirschbiel', 'PERSON'), ('of', 'O'), ('Staunton', 'O'), (',', 'O'), ('Va.', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('George', 'PERSON'), ('Cleaveland', 'PERSON'), ('Palmer', 'PERSON'), ('of', 'O'), ('Bayport', 'LOCATION'), ('and', 'O'), ('Fire', 'LOCATION'), ('Island', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('her', 'O'), ('daughter', 'O'), (',', 'O'), ('Pamela', 'PERSON'), ('Naylor', 'PERSON'), ('Henrich', 'PERSON'), (',', 'O'), ('also', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('George', 'PERSON'), ('Naylor', 'PERSON'), ('Henrich', 'PERSON'), (',', 'O'), ('to', 'O'), ('Gregory', 'PERSON'), ('Spencer', 'PERSON'), ('Kurey', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('John', 'PERSON'), ('Kurey', 'PERSON'), ('of', 'O'), ('Lancaster', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('L.', 'PERSON'), ('Talbot', 'PERSON'), ('Adamson', 'PERSON'), ('of', 'O'), ('Devon', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('Adamson', 'PERSON'), (\"'s\", 'O'), ('daughter', 'O'), (',', 'O'), ('Sabina', 'PERSON'), ('Stuart', 'PERSON'), ('Adamson', 'PERSON'), (',', 'O'), ('to', 'O'), ('Harrison', 'PERSON'), ('Wilson', 'PERSON'), ('Wood', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Joanne', 'PERSON'), ('Jolliffe', 'PERSON'), ('Strong', 'PERSON'), ('of', 'O'), ('Katonah', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Wood', 'PERSON'), ('of', 'O'), ('Malverne', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('to', 'O'), ('be', 'O'), ('in', 'O'), ('January', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('also', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Dorothea', 'PERSON'), ('Scott', 'PERSON'), ('Adamson', 'PERSON'), ('of', 'O'), ('Wayne', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('formerly', 'O'), ('headed', 'O'), ('the', 'O'), ('antiquities', 'O'), ('and', 'O'), ('tribal', 'O'), ('art', 'O'), ('department', 'O'), ('at', 'O'), ('Christie', 'O'), (\"'s\", 'O'), ('East', 'O'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('Miss', 'O'), ('Porter', 'PERSON'), (\"'s\", 'O'), ('School', 'O'), (',', 'O'), ('attended', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('London', 'ORGANIZATION'), (',', 'O'), ('took', 'O'), ('the', 'O'), ('Sotheby', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('Works', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Art', 'ORGANIZATION'), ('Course', 'ORGANIZATION'), ('in', 'O'), ('London', 'LOCATION'), ('and', 'O'), ('studied', 'O'), ('art', 'O'), ('conservation', 'O'), ('in', 'O'), ('Florence', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('made', 'O'), ('her', 'O'), ('debut', 'O'), ('at', 'O'), ('the', 'O'), ('Philadelphia', 'ORGANIZATION'), ('Assembly', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Bal', 'O'), ('du', 'O'), ('Bois', 'PERSON'), ('in', 'O'), ('Richmond', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('financial', 'O'), ('planner', 'O'), ('in', 'O'), ('Devon', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Wood', 'PERSON'), ('is', 'O'), ('a', 'O'), ('co-owner', 'O'), ('of', 'O'), ('the', 'O'), ('Eden', 'O'), ('restaurants', 'O'), ('in', 'O'), ('Philadephia', 'LOCATION'), ('and', 'O'), ('a', 'O'), ('former', 'O'), ('brand', 'O'), ('manager', 'O'), ('for', 'O'), ('Procter', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Gamble', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Mount', 'ORGANIZATION'), ('Hermon', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('Brown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Graduate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Business', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('caterer', 'O'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Carey', 'PERSON'), ('C.', 'PERSON'), ('Jolliffe', 'PERSON'), ('of', 'O'), ('Water', 'O'), ('Mill', 'O'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Jolliffe', 'PERSON'), (',', 'O'), ('the', 'O'), ('late', 'O'), ('Osborne', 'PERSON'), ('Wood', 'PERSON'), ('of', 'O'), ('Albuquerque', 'LOCATION'), (',', 'O'), ('N.M.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Katherine', 'PERSON'), ('Thompson', 'PERSON'), ('Wood', 'PERSON'), ('of', 'O'), ('Wilmington', 'LOCATION'), (',', 'O'), ('Del.', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('great-grandson', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Maj.', 'O'), ('Gen.', 'O'), ('Leonard', 'PERSON'), ('Wood', 'PERSON'), (',', 'O'), ('who', 'O'), ('organized', 'O'), ('the', 'O'), ('Rough', 'O'), ('Riders', 'O'), ('with', 'O'), ('Theodore', 'PERSON'), ('Roosevelt', 'PERSON'), ('and', 'O'), ('was', 'O'), ('Governor', 'O'), ('General', 'O'), ('of', 'O'), ('the', 'O'), ('Philippines', 'LOCATION'), ('and', 'O'), ('military', 'O'), ('governor', 'O'), ('of', 'O'), ('Cuba', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Herbert', 'PERSON'), ('Stern', 'PERSON'), ('of', 'O'), ('Massapequa', 'LOCATION'), ('Park', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Dr.', 'PERSON'), ('Jamie', 'PERSON'), ('Rhonda', 'PERSON'), ('Stern', 'PERSON'), (',', 'O'), ('to', 'O'), ('Jeffrey', 'PERSON'), ('Marc', 'PERSON'), ('Weiner', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Sondra', 'PERSON'), ('Weiner', 'PERSON'), ('of', 'O'), ('Massapequa', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('William', 'PERSON'), ('Weiner', 'PERSON'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('May', 'O'), ('.', 'O'), ('Dr.', 'PERSON'), ('Stern', 'PERSON'), ('is', 'O'), ('an', 'O'), ('otolaryngology', 'O'), ('resident', 'O'), ('at', 'O'), ('the', 'O'), ('Long', 'LOCATION'), ('Island', 'LOCATION'), ('Jewish', 'O'), ('Medical', 'O'), ('Center', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Weiner', 'PERSON'), ('is', 'O'), ('a', 'O'), ('certified', 'O'), ('public', 'O'), ('accountant', 'O'), ('with', 'O'), ('the', 'O'), ('Syosset', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('accounting', 'O'), ('firm', 'O'), ('of', 'O'), ('Marcum', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Kliegman', 'ORGANIZATION'), ('.', 'O')), (('The', 'O'), ('Roman', 'O'), ('Catholic', 'O'), ('Church', 'O'), ('of', 'O'), ('the', 'O'), ('Transfiguration', 'O'), ('in', 'O'), ('Norfolk', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('the', 'O'), ('setting', 'O'), ('yesterday', 'O'), ('for', 'O'), ('the', 'O'), ('wedding', 'O'), ('of', 'O'), ('Laura', 'PERSON'), ('Mabon', 'PERSON'), ('Childs', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('J.', 'PERSON'), ('Mabon', 'PERSON'), ('Childs', 'PERSON'), ('of', 'O'), ('Pittsburgh', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Kenneth', 'PERSON'), ('A.', 'PERSON'), ('Saverin', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Anthony', 'PERSON'), ('J.', 'PERSON'), ('Saverin', 'PERSON'), ('of', 'O'), ('Manhasset', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('The', 'O'), ('Rev.', 'R'), ('Joseph', 'PERSON'), ('A.', 'PERSON'), ('Krasinski', 'PERSON'), ('officiated', 'O'), ('.', 'O'), ('Marguerite', 'PERSON'), ('H.', 'PERSON'), ('C.', 'PERSON'), ('Detmer', 'PERSON'), ('and', 'O'), ('Sally', 'PERSON'), ('C.', 'PERSON'), ('Walsh', 'PERSON'), ('attended', 'O'), ('their', 'O'), ('sister', 'O'), ('.', 'O'), ('Ronald', 'PERSON'), ('F.', 'PERSON'), ('Saverin', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('for', 'O'), ('his', 'O'), ('brother', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Saverin', 'PERSON'), (',', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Merrill', 'ORGANIZATION'), ('Lynch', 'ORGANIZATION'), ('Capital', 'ORGANIZATION'), ('Markets', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('the', 'O'), ('Kent', 'O'), ('-LRB-', 'O'), ('Conn.', 'O'), ('-RRB-', 'O'), ('School', 'O'), ('and', 'O'), ('Yale', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('Stanford', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('ParkerHunter', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('banking', 'O'), ('and', 'O'), ('brokerage', 'O'), ('concern', 'O'), ('in', 'O'), ('Pittsburgh', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('James', 'PERSON'), ('F.', 'PERSON'), ('Hillman', 'PERSON'), (',', 'O'), ('founder', 'O'), ('of', 'O'), ('the', 'O'), ('Harmon', 'ORGANIZATION'), ('Creek', 'ORGANIZATION'), ('Coal', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Pittsburgh', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('great-granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('James', 'PERSON'), ('B.', 'PERSON'), ('Mabon', 'PERSON'), (',', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Stock', 'ORGANIZATION'), ('Exchange', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('founder', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('brokerage', 'O'), ('house', 'O'), ('of', 'O'), ('Mabon', 'LOCATION'), (',', 'O'), ('Nugent', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Saverin', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Taft', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Claremont', 'ORGANIZATION'), ('McKenna', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('law', 'O'), ('degree', 'O'), ('from', 'O'), ('Fordham', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('associate', 'O'), ('with', 'O'), ('Skadden', 'LOCATION'), (',', 'O'), ('Arps', 'LOCATION'), (',', 'O'), ('Slate', 'O'), (',', 'O'), ('Meagher', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Flom', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('senior', 'O'), ('managing', 'O'), ('partner', 'O'), ('of', 'O'), ('the', 'O'), ('accounting', 'O'), ('concern', 'O'), ('of', 'O'), ('Saverin', 'LOCATION'), (',', 'O'), ('DiVittorio', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O')), (('Victoria', 'PERSON'), ('Schaeffer', 'PERSON'), ('Blewer', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Sondra', 'PERSON'), ('G.', 'PERSON'), ('Blewer', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Sugar', 'LOCATION'), ('Hill', 'LOCATION'), (',', 'O'), ('N.H.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('John', 'PERSON'), ('M.', 'PERSON'), ('Blewer', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Essex', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Christopher', 'PERSON'), ('Aram', 'PERSON'), ('Bohjalian', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Aram', 'PERSON'), ('Bohjalian', 'PERSON'), ('of', 'O'), ('Mount', 'LOCATION'), ('Vernon', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('The', 'O'), ('Rev.', 'R'), ('Leslie', 'PERSON'), ('Merlin', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Brick', 'O'), ('Presbyterian', 'O'), ('Church', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Cecilia', 'PERSON'), ('Folger', 'PERSON'), ('Blewer', 'PERSON'), ('was', 'O'), ('her', 'O'), ('sister', 'O'), (\"'s\", 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('.', 'O'), ('Andrew', 'PERSON'), ('Peter', 'PERSON'), ('Bohjalian', 'PERSON'), ('was', 'O'), ('his', 'O'), ('brother', 'O'), (\"'s\", 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Bohjalian', 'PERSON'), ('is', 'O'), ('a', 'O'), ('trader', 'O'), ('in', 'O'), ('the', 'O'), ('unit', 'O'), ('trust', 'O'), ('department', 'O'), ('at', 'O'), ('Shearson', 'ORGANIZATION'), ('LehmanAmerican', 'ORGANIZATION'), ('Express', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('attended', 'O'), ('the', 'O'), ('Spence', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Westover', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Smith', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('John', 'ORGANIZATION'), ('M.', 'ORGANIZATION'), ('Blewer', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('investment', 'O'), ('counseling', 'O'), ('concern', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), ('is', 'O'), ('school', 'O'), ('secretary', 'O'), ('at', 'O'), ('the', 'O'), ('Robert', 'ORGANIZATION'), ('Louis', 'ORGANIZATION'), ('Stevenson', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('Carl', 'PERSON'), ('Gerdau', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mrs.', 'PERSON'), ('Gerdau', 'PERSON'), (',', 'O'), ('and', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Francis', 'PERSON'), ('L.', 'PERSON'), ('Blewer', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Sharon', 'PERSON'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Bohjalian', 'PERSON'), ('is', 'O'), ('an', 'O'), ('account', 'O'), ('representative', 'O'), ('for', 'O'), ('the', 'O'), ('J.', 'PERSON'), ('Walter', 'PERSON'), ('Thompson', 'PERSON'), ('advertising', 'O'), ('agency', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('summa', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Amherst', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('he', 'O'), ('was', 'O'), ('elected', 'O'), ('to', 'O'), ('Phi', 'LOCATION'), ('Beta', 'LOCATION'), ('Kappa', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Romann', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Tannenholz', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('advertising', 'O'), ('agency', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Allen', 'PERSON'), ('Fial', 'O'), ('of', 'O'), ('Rosyln', 'LOCATION'), ('Heights', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Alison', 'PERSON'), ('Lori', 'PERSON'), ('Fial', 'PERSON'), (',', 'O'), ('to', 'O'), ('Michael', 'PERSON'), ('Charles', 'PERSON'), ('Greene', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Alan', 'PERSON'), ('I.', 'PERSON'), ('Greene', 'PERSON'), ('of', 'O'), ('Great', 'LOCATION'), ('Neck', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('January', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('cash', 'O'), ('management', 'O'), ('specialist', 'O'), ('for', 'O'), ('the', 'O'), ('Morgan', 'ORGANIZATION'), ('Guaranty', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('Cornell', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('she', 'O'), ('is', 'O'), ('studying', 'O'), ('for', 'O'), (',', 'O'), ('and', 'O'), ('Mr.', 'PERSON'), ('Greene', 'PERSON'), ('has', 'O'), ('received', 'O'), (',', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('at', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Comiteau', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Levine', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Stock', 'ORGANIZATION'), ('Exchange', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Anita', 'PERSON'), ('Fial', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('Lewis', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Neale', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('public', 'O'), ('-', 'O'), ('relations', 'O'), ('agency', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Greene', 'PERSON'), (',', 'O'), ('a', 'O'), ('security', 'O'), ('analyst', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('for', 'O'), ('Drexel', 'ORGANIZATION'), ('Burnham', 'ORGANIZATION'), ('Lambert', 'O'), (',', 'O'), ('the', 'O'), ('investment', 'O'), ('concern', 'O'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Friends', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('in', 'O'), ('Locust', 'LOCATION'), ('Valley', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Colgate', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('managing', 'O'), ('partner', 'O'), ('of', 'O'), ('David', 'PERSON'), ('J.', 'PERSON'), ('Greene', 'PERSON'), ('Company', 'O'), (',', 'O'), ('an', 'O'), ('investment', 'O'), ('advisory', 'O'), ('concern', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('that', 'O'), ('was', 'O'), ('founded', 'O'), ('by', 'O'), ('the', 'O'), ('future', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('grandfather', 'O'), (',', 'O'), ('the', 'O'), ('late', 'O'), ('David', 'PERSON'), ('J.', 'PERSON'), ('Greene', 'PERSON'), ('of', 'O'), ('Kings', 'O'), ('Point', 'O'), (',', 'O'), ('L.I.', 'LOCATION'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Helen', 'PERSON'), ('Greene', 'PERSON'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('artist', 'O'), ('.', 'O')), (('Mary', 'PERSON'), ('Patricia', 'PERSON'), ('Keepnews', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Lawrence', 'PERSON'), ('W.', 'PERSON'), ('Keepnews', 'PERSON'), ('of', 'O'), ('Pelham', 'LOCATION'), ('Manor', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Keepnews', 'PERSON'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('William', 'PERSON'), ('Matthew', 'PERSON'), (\"O'Connor\", 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('F.', 'PERSON'), (\"O'Connor\", 'PERSON'), ('of', 'O'), ('Alexandria', 'LOCATION'), (',', 'O'), ('Va.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Joseph', 'PERSON'), ('G.', 'PERSON'), ('Keegan', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('Our', 'O'), ('Lady', 'O'), ('of', 'O'), ('Perpetual', 'ORGANIZATION'), ('Help', 'ORGANIZATION'), ('Roman', 'ORGANIZATION'), ('Catholic', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Pelham', 'LOCATION'), ('Manor', 'LOCATION'), ('.', 'O'), ('Mary', 'PERSON'), ('Susanne', 'PERSON'), ('Renz', 'PERSON'), ('was', 'O'), ('matron', 'O'), ('of', 'O'), ('honor', 'O'), ('for', 'O'), ('her', 'O'), ('sister', 'O'), ('.', 'O'), ('Benjamin', 'PERSON'), ('J.', 'PERSON'), ('Newman', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Ursuline', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Goucher', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('law', 'O'), ('degree', 'O'), ('from', 'O'), ('Fordham', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('associate', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Vittoria', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Parker', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('was', 'O'), ('presented', 'O'), ('to', 'O'), ('society', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Vincent', 'ORGANIZATION'), (\"'s\", 'O'), ('Debutante', 'O'), ('Cotillion', 'O'), ('and', 'O'), ('is', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('Junior', 'O'), ('League', 'O'), ('of', 'O'), ('Pelham', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('lawyer', 'O'), (',', 'O'), ('was', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('State', 'O'), ('Commissioner', 'O'), ('of', 'O'), ('Insurance', 'O'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Patricia', 'PERSON'), ('Keepnews', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('special', 'O'), ('assistant', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('to', 'O'), ('the', 'O'), ('State', 'O'), ('Commissioner', 'O'), ('of', 'O'), ('Social', 'O'), ('Services', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), (\"O'Connor\", 'PERSON'), (',', 'O'), ('an', 'O'), ('associate', 'O'), ('in', 'O'), ('the', 'O'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Cooperman', 'ORGANIZATION'), ('Levitt', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Winikoff', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('his', 'O'), ('undergraduate', 'O'), ('and', 'O'), ('law', 'O'), ('degrees', 'O'), ('from', 'O'), ('Fordham', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('staff', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('department', 'O'), ('of', 'O'), ('medicine', 'O'), ('and', 'O'), ('surgery', 'O'), ('of', 'O'), ('the', 'O'), ('Veterans', 'ORGANIZATION'), ('Administration', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), (',', 'O'), ('where', 'O'), ('the', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('mother', 'O'), (',', 'O'), ('Roslyn', 'PERSON'), (\"O'Connor\", 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('statistician', 'O'), ('for', 'O'), ('the', 'O'), ('Postal', 'ORGANIZATION'), ('Service', 'ORGANIZATION'), ('.', 'O')), (('Lucy', 'PERSON'), ('Schneider', 'PERSON'), ('McDiarmid', 'PERSON'), (',', 'O'), ('an', 'O'), ('assistant', 'O'), ('professor', 'O'), ('of', 'O'), ('English', 'O'), ('at', 'O'), ('Villanova', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('Harris', 'PERSON'), ('B.', 'PERSON'), ('Savin', 'PERSON'), (',', 'O'), ('an', 'O'), ('associate', 'O'), ('at', 'O'), ('the', 'O'), ('Philadelphia', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Diamond', 'ORGANIZATION'), (',', 'O'), ('Polsky', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Bauer', 'ORGANIZATION'), (',', 'O'), ('were', 'O'), ('married', 'O'), ('yesterday', 'O'), ('at', 'O'), ('the', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('farm', 'O'), ('in', 'O'), ('Thompson', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('retain', 'O'), ('the', 'O'), ('name', 'O'), ('McDiarmid', 'PERSON'), ('from', 'O'), ('her', 'O'), ('previous', 'O'), ('marriage', 'O'), (',', 'O'), ('which', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Alan', 'PERSON'), ('Neil', 'PERSON'), ('Schneider', 'PERSON'), ('of', 'O'), ('Coral', 'LOCATION'), ('Gables', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('a', 'O'), ('lawyer', 'O'), (',', 'O'), ('and', 'O'), ('Lucy', 'PERSON'), ('Selligman', 'PERSON'), ('Schneider', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Sheffield', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('a', 'O'), ('freelance', 'O'), ('children', 'O'), (\"'s\", 'O'), ('book', 'O'), ('editor', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('Brearley', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Swarthmore', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('a', 'O'), ('doctorate', 'O'), ('in', 'O'), ('English', 'O'), ('literature', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('the', 'O'), ('author', 'O'), ('of', 'O'), (\"''\", 'O'), ('Saving', 'O'), ('Civilization', 'O'), (':', 'O'), ('Yeats', 'PERSON'), (',', 'O'), ('Eliot', 'PERSON'), ('and', 'O'), ('Auden', 'PERSON'), ('Between', 'O'), ('the', 'O'), ('Wars', 'O'), (',', 'O'), (\"''\", 'O'), ('recently', 'O'), ('published', 'O'), ('by', 'O'), ('the', 'O'), ('Cambridge', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Press', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Savin', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('Brown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('a', 'O'), ('doctorate', 'O'), ('in', 'O'), ('psychology', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('law', 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('George', 'PERSON'), ('Savin', 'PERSON'), ('of', 'O'), ('Brookline', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Savin', 'PERSON'), (',', 'O'), ('an', 'O'), ('accountant', 'O'), ('and', 'O'), ('investment', 'O'), ('adviser', 'O'), ('.', 'O')), (('Dr.', 'PERSON'), ('Prudence', 'PERSON'), ('Anne', 'PERSON'), ('Goodman', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Maurice', 'PERSON'), ('Goodman', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Salisbury', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Dr.', 'PERSON'), ('Peter', 'PERSON'), ('Ernst', 'PERSON'), ('Simson', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Jerome', 'PERSON'), ('Simson', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('East', 'LOCATION'), ('Hampton', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('Justice', 'O'), ('of', 'O'), ('the', 'O'), ('Peace', 'O'), ('Stuyvesant', 'PERSON'), ('Bearns', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('home', 'O'), ('of', 'O'), ('the', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('parents', 'O'), ('in', 'O'), ('Salisbury', 'LOCATION'), ('.', 'O'), ('Susannah', 'PERSON'), ('Goodman', 'PERSON'), ('was', 'O'), ('her', 'O'), ('sister', 'O'), (\"'s\", 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('and', 'O'), ('the', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('father', 'O'), ('was', 'O'), ('the', 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('Dr.', 'PERSON'), ('Simson', 'PERSON'), ('and', 'O'), ('her', 'O'), ('husband', 'O'), ('are', 'O'), ('research', 'O'), ('fellows', 'O'), ('in', 'O'), ('the', 'O'), ('department', 'O'), ('of', 'O'), ('psychiatry', 'O'), ('at', 'O'), ('the', 'O'), ('Duke', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('in', 'O'), ('Durham', 'LOCATION'), (',', 'O'), ('N.C.', 'LOCATION'), ('The', 'O'), ('bride', 'B'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Chapin', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('Bennett', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Rochester', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('she', 'O'), ('and', 'O'), ('Dr.', 'PERSON'), ('Simson', 'PERSON'), ('received', 'O'), ('doctoral', 'O'), ('degrees', 'O'), ('in', 'O'), ('experimental', 'O'), ('psychology', 'O'), ('from', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('was', 'O'), ('a', 'O'), ('researcher', 'O'), ('at', 'O'), ('Rockefeller', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('was', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('Junior', 'ORGANIZATION'), ('Assembly', 'ORGANIZATION'), ('in', 'O'), ('1971', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('City', 'ORGANIZATION'), ('Task', 'ORGANIZATION'), ('Force', 'ORGANIZATION'), ('on', 'O'), ('Criminal', 'O'), ('Justice', 'O'), ('and', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('executive', 'O'), ('committee', 'O'), ('of', 'O'), ('the', 'O'), ('Mayor', 'O'), (\"'s\", 'O'), ('Voluntary', 'ORGANIZATION'), ('Action', 'ORGANIZATION'), ('Council', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Henry', 'PERSON'), ('James', 'PERSON'), ('Rake', 'PERSON'), ('of', 'O'), ('Toledo', 'LOCATION'), (',', 'O'), ('Ohio', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Sheboygan', 'LOCATION'), (',', 'O'), ('Wis.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Maurice', 'PERSON'), ('Goodman', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Rake', 'PERSON'), ('is', 'O'), ('retired', 'O'), ('fleet', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Reiss', 'ORGANIZATION'), ('Steamship', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Sheboygan', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Goodman', 'PERSON'), ('was', 'O'), ('general', 'O'), ('counsel', 'O'), ('to', 'O'), ('and', 'O'), ('a', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Keith', 'ORGANIZATION'), ('Orpheum', 'ORGANIZATION'), ('Circuit', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('R.K.O.', 'O'), ('Pictures', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (',', 'O'), ('of', 'O'), ('which', 'O'), ('he', 'O'), ('was', 'O'), ('a', 'O'), ('past', 'O'), ('president', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Simson', 'PERSON'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('George', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Swarthmore', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('rheumatologist', 'O'), ('and', 'O'), ('an', 'O'), ('assistant', 'O'), ('professor', 'O'), ('of', 'O'), ('clinical', 'O'), ('medicine', 'O'), ('at', 'O'), ('the', 'O'), ('N.Y.U.', 'ORGANIZATION'), ('Medical', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Sidney', 'PERSON'), ('W.', 'PERSON'), ('Davidson', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Bedford', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Milwaukee', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Mary', 'PERSON'), ('Brookfield', 'PERSON'), ('Davidson', 'PERSON'), (',', 'O'), ('to', 'O'), ('H.', 'PERSON'), ('William', 'PERSON'), ('Evans', 'PERSON'), ('3d', 'O'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Herbert', 'PERSON'), ('W.', 'PERSON'), ('Evans', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Osprey', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mrs.', 'PERSON'), ('Evans', 'PERSON'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('for', 'O'), ('Dec.', 'O'), ('22', 'O'), ('.', 'O'), ('Miss', 'O'), ('Davidson', 'PERSON'), ('is', 'O'), ('a', 'O'), ('portfolio', 'O'), ('manager', 'O'), ('in', 'O'), ('the', 'O'), ('investment', 'O'), ('counseling', 'O'), ('division', 'O'), ('of', 'O'), ('the', 'O'), ('Bank', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Rippowam', 'ORGANIZATION'), ('Cisqua', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Bedford', 'LOCATION'), (',', 'O'), ('Miss', 'ORGANIZATION'), ('Hall', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Vassar', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('studied', 'O'), ('at', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Venice', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('vice', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('Bruner', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('water-softener', 'O'), ('manufacturer', 'O'), ('in', 'O'), ('Milwaukee', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Sidney', 'PERSON'), ('W.', 'PERSON'), ('Davidson', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('senior', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Davidson', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Dawson', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Clark', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('John', 'PERSON'), ('G.', 'PERSON'), ('Moffat', 'PERSON'), ('of', 'O'), ('Scranton', 'LOCATION'), ('and', 'O'), ('Montrose', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('secretary', 'O'), ('and', 'O'), ('treasurer', 'O'), ('of', 'O'), ('the', 'O'), ('Moffat', 'ORGANIZATION'), ('Coal', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Scranton', 'LOCATION'), (',', 'O'), ('which', 'O'), ('was', 'O'), ('founded', 'O'), ('by', 'O'), ('the', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('great', 'O'), ('-', 'O'), ('grandfather', 'O'), (',', 'O'), ('the', 'O'), ('late', 'O'), ('William', 'PERSON'), ('Young', 'PERSON'), ('Moffat', 'PERSON'), ('of', 'O'), ('Scranton', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Evans', 'PERSON'), (',', 'O'), ('headmaster', 'O'), ('of', 'O'), ('the', 'O'), ('Dublin', 'LOCATION'), ('-LRB-', 'O'), ('N.H.', 'LOCATION'), ('-RRB-', 'O'), ('School', 'O'), (',', 'O'), ('was', 'O'), ('formerly', 'O'), ('dean', 'O'), ('at', 'O'), ('the', 'O'), ('Tabor', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('in', 'O'), ('Marion', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Princeton', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('classics', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('retired', 'O'), ('president', 'O'), ('and', 'O'), ('chairman', 'O'), ('of', 'O'), ('Woolsey', 'ORGANIZATION'), ('Marine', 'ORGANIZATION'), ('Industries', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Albert', 'PERSON'), ('Brumley', 'PERSON'), ('of', 'O'), ('Baltimore', 'LOCATION'), ('and', 'O'), ('Scarsdale', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('who', 'O'), ('had', 'O'), ('a', 'O'), ('seat', 'O'), ('on', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Stock', 'ORGANIZATION'), ('Exchange', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Herbert', 'PERSON'), ('W.', 'PERSON'), ('Evans', 'PERSON'), ('of', 'O'), ('Scarsdale', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('a', 'O'), ('mechanical', 'O'), ('engineer', 'O'), ('on', 'O'), ('the', 'O'), ('Manhattan', 'LOCATION'), ('Project', 'O'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('great-grandson', 'O'), ('of', 'O'), ('William', 'PERSON'), ('D.', 'PERSON'), ('-LRB-', 'O'), ('Judge', 'O'), ('-RRB-', 'O'), ('Evans', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('who', 'O'), ('retired', 'O'), ('in', 'O'), ('1952', 'O'), ('at', 'O'), ('the', 'O'), ('age', 'O'), ('of', 'O'), ('90', 'O'), ('as', 'O'), ('the', 'O'), ('head', 'O'), ('of', 'O'), ('the', 'O'), ('copy', 'O'), ('desk', 'O'), ('at', 'O'), ('The', 'ORGANIZATION'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Times', 'ORGANIZATION'), ('that', 'O'), ('handled', 'O'), ('entertainment', 'O'), (',', 'O'), ('obituary', 'O'), ('and', 'O'), ('society', 'O'), ('news', 'O'), ('.', 'O')), (('Elizabeth', 'PERSON'), ('Fontaine', 'PERSON'), ('Maury', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('M.', 'PERSON'), ('Maury', 'PERSON'), ('of', 'O'), ('Rowayton', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('David', 'PERSON'), ('Bulkley', 'PERSON'), ('Perry', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Hoyt', 'PERSON'), ('O.', 'PERSON'), ('Perry', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Southport', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Douglas', 'PERSON'), ('Ray', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Luke', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Darien', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('assisted', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Donald', 'PERSON'), ('Emig', 'PERSON'), (',', 'O'), ('a', 'O'), ('United', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Christ', 'ORGANIZATION'), ('minister', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Perry', 'PERSON'), ('is', 'O'), ('a', 'O'), ('research', 'O'), ('assistant', 'O'), ('for', 'O'), ('the', 'O'), ('Oxford', 'ORGANIZATION'), ('Venture', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('investment', 'O'), ('company', 'O'), ('in', 'O'), ('Stamford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('independent', 'O'), ('marine', 'O'), ('surveyor', 'O'), ('in', 'O'), ('Rowayton', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Thomas', 'PERSON'), ('E.', 'PERSON'), ('Brown', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Tuxedo', 'LOCATION'), ('Park', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Arthur', 'PERSON'), ('G.', 'PERSON'), ('Maury', 'PERSON'), ('of', 'O'), ('Darien', 'LOCATION'), ('and', 'O'), ('St.', 'LOCATION'), ('David', 'LOCATION'), (\"'s\", 'LOCATION'), ('Island', 'LOCATION'), (',', 'O'), ('Bermuda', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Perry', 'PERSON'), ('is', 'O'), ('a', 'O'), ('lecturer', 'O'), ('on', 'O'), ('sailing', 'O'), ('tactics', 'O'), (',', 'O'), ('a', 'O'), ('judge', 'O'), ('for', 'O'), ('the', 'O'), ('United', 'ORGANIZATION'), ('States', 'ORGANIZATION'), ('Yacht', 'ORGANIZATION'), ('Racing', 'ORGANIZATION'), ('Union', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('author', 'O'), ('of', 'O'), (\"''\", 'O'), ('Winning', 'O'), ('in', 'O'), ('One', 'O'), ('Design', 'O'), (',', 'O'), (\"''\", 'O'), ('published', 'O'), ('last', 'O'), ('January', 'O'), ('by', 'O'), ('Dodd', 'PERSON'), ('Mead', 'PERSON'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('retired', 'O'), ('as', 'O'), ('director', 'O'), ('and', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('City', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('in', 'O'), ('Bridgeport', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O')), (('Catherine', 'PERSON'), ('Cowle', 'PERSON'), ('Crane', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('William', 'PERSON'), ('B.', 'PERSON'), ('Crane', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Darien', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Margaret', 'PERSON'), ('Cramer', 'PERSON'), ('Crane', 'PERSON'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('E.', 'PERSON'), ('Raymond', 'PERSON'), ('Boc', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Edward', 'PERSON'), ('Charles', 'PERSON'), ('Boc', 'PERSON'), ('of', 'O'), ('Rome', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('The', 'O'), ('Rev.', 'R'), ('Douglas', 'PERSON'), ('E.', 'PERSON'), ('Theuner', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('John', 'ORGANIZATION'), (\"'s\", 'O'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Stamford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('retain', 'O'), ('her', 'O'), ('name', 'O'), ('professionally', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('lecturer', 'O'), ('and', 'O'), ('consultant', 'O'), ('on', 'O'), ('interior', 'O'), ('design', 'O'), ('and', 'O'), ('the', 'O'), ('author', 'O'), ('of', 'O'), (\"''\", 'O'), ('What', 'O'), ('Do', 'O'), ('You', 'O'), ('Say', 'O'), ('to', 'O'), ('a', 'O'), ('Naked', 'O'), ('Room', 'O'), (',', 'O'), (\"''\", 'O'), ('published', 'O'), ('in', 'O'), ('1979', 'O'), ('by', 'O'), ('the', 'O'), ('Dial', 'O'), ('Press', 'O'), (',', 'O'), ('and', 'O'), (\"''\", 'O'), ('Personal', 'O'), ('Places', 'O'), (',', 'O'), (\"''\", 'O'), ('published', 'O'), ('in', 'O'), ('1982', 'O'), ('by', 'O'), ('the', 'O'), ('Whitney', 'O'), ('Library', 'O'), ('of', 'O'), ('Design', 'O'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('Canaan', 'ORGANIZATION'), ('Country', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('Rosemary', 'PERSON'), ('Hall', 'PERSON'), ('and', 'O'), ('Smith', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Boc', 'PERSON'), (',', 'O'), ('an', 'O'), ('engineer', 'O'), ('and', 'O'), ('water', 'O'), ('resources', 'O'), ('planner', 'O'), (',', 'O'), ('is', 'O'), ('project', 'O'), ('coordinator', 'O'), ('of', 'O'), ('the', 'O'), ('Passaic', 'LOCATION'), ('River', 'LOCATION'), ('and', 'O'), ('special', 'O'), ('studies', 'O'), ('branch', 'O'), ('of', 'O'), ('the', 'O'), ('Army', 'ORGANIZATION'), ('Corps', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Engineers', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Rome', 'ORGANIZATION'), ('Free', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('and', 'O'), ('Syracuse', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O')), (('Carol', 'PERSON'), ('Ann', 'PERSON'), ('Salvati', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Eugene', 'PERSON'), ('Philip', 'PERSON'), ('Salvati', 'PERSON'), ('of', 'O'), ('Bridgewater', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('James', 'PERSON'), ('Kevin', 'PERSON'), ('Spry', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('James', 'PERSON'), ('Edward', 'PERSON'), ('Spry', 'PERSON'), ('of', 'O'), ('North', 'LOCATION'), ('Caldwell', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('The', 'O'), ('Rev.', 'R'), ('Michael', 'PERSON'), ('Moran', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('Roman', 'O'), ('Catholic', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Chapel', 'O'), ('of', 'O'), ('the', 'O'), ('Immaculate', 'ORGANIZATION'), ('Conception', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Mount', 'ORGANIZATION'), ('St.', 'ORGANIZATION'), ('Mary', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('in', 'O'), ('Watchung', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('Mrs.', 'PERSON'), ('Spry', 'O'), ('is', 'O'), ('an', 'O'), ('assistant', 'O'), ('marketing', 'O'), ('manager', 'O'), ('for', 'O'), ('Citibank', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Spry', 'PERSON'), ('is', 'O'), ('an', 'O'), ('assistant', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('United', 'ORGANIZATION'), ('States', 'ORGANIZATION'), ('Testing', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Hoboken', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION')), (('Lynn', 'PERSON'), ('Suzanne', 'PERSON'), ('Byron', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('James', 'PERSON'), ('R.', 'PERSON'), ('Byron', 'PERSON'), ('of', 'O'), ('Newport', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Don', 'PERSON'), ('M.', 'PERSON'), ('Wilson', 'PERSON'), ('3d', 'O'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Wilson', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Ravenna', 'LOCATION'), (',', 'O'), ('Ohio', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Dr.', 'PERSON'), ('Herbert', 'PERSON'), ('B.', 'PERSON'), ('Anderson', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Brick', 'O'), ('Presbyterian', 'O'), ('Church', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Wilson', 'PERSON'), ('was', 'O'), ('an', 'O'), ('assistant', 'O'), ('manager', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('for', 'O'), ('the', 'O'), ('Chemical', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), (',', 'O'), ('of', 'O'), ('which', 'O'), ('Mr.', 'PERSON'), ('Wilson', 'PERSON'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('and', 'O'), ('regional', 'O'), ('manager', 'O'), ('in', 'O'), ('San', 'LOCATION'), ('Francisco', 'LOCATION'), ('and', 'O'), ('Los', 'LOCATION'), ('Angeles', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('attended', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('London', 'LOCATION'), ('and', 'O'), ('graduated', 'O'), ('from', 'O'), ('Russell', 'ORGANIZATION'), ('Sage', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('sales', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Fluor', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Irvine', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('retired', 'O'), ('realty', 'O'), ('developer', 'O'), ('in', 'O'), ('Ravenna', 'LOCATION'), (',', 'O'), ('where', 'O'), ('his', 'O'), ('mother', 'O'), (',', 'O'), ('Helen', 'PERSON'), ('Jane', 'PERSON'), ('Wilson', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('teacher', 'O'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('L.', 'PERSON'), ('Lyons', 'PERSON'), ('of', 'O'), ('Lewisburg', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Amy', 'PERSON'), ('Jo', 'PERSON'), ('Lyons', 'PERSON'), (',', 'O'), ('to', 'O'), ('David', 'PERSON'), ('S.', 'PERSON'), ('Kemler', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('R.', 'PERSON'), ('Leonard', 'PERSON'), ('Kemler', 'PERSON'), ('of', 'O'), ('West', 'LOCATION'), ('Hartford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Lyons', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('Pennsylvania', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('aquatic', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Hartford', 'LOCATION'), ('Jewish', 'O'), ('Community', 'O'), ('Center', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('marketing', 'O'), ('representative', 'O'), ('for', 'O'), ('Pharmaceutical', 'ORGANIZATION'), ('Group', 'ORGANIZATION'), ('Services', 'ORGANIZATION'), ('in', 'O'), ('Mifflinburg', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Joan', 'PERSON'), ('R.', 'PERSON'), ('Kemler', 'PERSON'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('assistant', 'O'), ('majority', 'O'), ('leader', 'O'), ('of', 'O'), ('the', 'O'), ('Connecticut', 'ORGANIZATION'), ('House', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Representatives', 'ORGANIZATION'), (';', 'O'), ('a', 'O'), ('Democratic', 'O'), (',', 'O'), ('she', 'O'), ('is', 'O'), ('in', 'O'), ('her', 'O'), ('fifth', 'O'), ('term', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('thoracic', 'O'), ('cardiovascular', 'O'), ('surgery', 'O'), ('at', 'O'), ('Mount', 'LOCATION'), ('Sinai', 'LOCATION'), ('Hospital', 'LOCATION'), ('in', 'O'), ('Hartford', 'LOCATION'), ('.', 'O')), (('Catherine', 'PERSON'), ('Therese', 'PERSON'), ('Attridge', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Patrick', 'PERSON'), ('J.', 'PERSON'), ('Attridge', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Eugene', 'PERSON'), ('F.', 'PERSON'), ('Martin', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Martin', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Msgr.', 'O'), ('Edward', 'PERSON'), ('Jolley', 'PERSON'), (',', 'O'), ('the', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('cousin', 'O'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Thomas', 'ORGANIZATION'), ('More', 'ORGANIZATION'), ('Roman', 'ORGANIZATION'), ('Catholic', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('known', 'O'), ('as', 'O'), ('Cathey', 'PERSON'), ('and', 'O'), ('will', 'O'), ('keep', 'O'), ('her', 'O'), ('name', 'O'), ('professionally', 'O'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('interior', 'O'), ('designer', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Martin', 'PERSON'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('T.E.G.', 'O'), ('Management', 'O'), (',', 'O'), ('a', 'O'), ('Manhattan', 'LOCATION'), ('real', 'O'), ('estate', 'O'), ('company', 'O'), ('.', 'O')), (('Margaret', 'PERSON'), ('McCargo', 'PERSON'), ('Meyer', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Charles', 'PERSON'), ('O.', 'PERSON'), ('Thompson', 'PERSON'), ('of', 'O'), ('Oyster', 'LOCATION'), ('Bay', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Edward', 'PERSON'), ('B.', 'PERSON'), ('Meyer', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('East', 'LOCATION'), ('Hampton', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('G.', 'PERSON'), ('Crossan', 'PERSON'), ('Seybolt', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('George', 'PERSON'), ('C.', 'PERSON'), ('Seybolt', 'PERSON'), ('of', 'O'), ('Dedham', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Charles', 'PERSON'), ('G.', 'PERSON'), ('Newberry', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('John', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Lattingtown', 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Locust', 'LOCATION'), ('Valley', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('Leslie', 'PERSON'), ('Royce', 'PERSON'), ('Brown', 'PERSON'), ('was', 'O'), ('the', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('.', 'O'), ('Edith', 'PERSON'), ('Winkhaus', 'PERSON'), ('was', 'O'), ('her', 'O'), ('sister', 'O'), (\"'s\", 'O'), ('matron', 'O'), ('of', 'O'), ('honor', 'O'), ('.', 'O'), ('Calvert', 'PERSON'), ('H.', 'PERSON'), ('Seybolt', 'PERSON'), ('was', 'O'), ('his', 'O'), ('brother', 'O'), (\"'s\", 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('graduated', 'O'), ('from', 'O'), ('Choate', 'PERSON'), ('Rosemary', 'PERSON'), ('Hall', 'PERSON'), (',', 'O'), ('attended', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Vermont', 'ORGANIZATION'), ('and', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('C.', 'ORGANIZATION'), ('W.', 'ORGANIZATION'), ('Post', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Long', 'ORGANIZATION'), ('Island', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('is', 'O'), ('studying', 'O'), ('interior', 'O'), ('design', 'O'), ('at', 'O'), ('the', 'O'), ('Parsons', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Design', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('was', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('Junior', 'ORGANIZATION'), ('Assembly', 'ORGANIZATION'), ('in', 'O'), ('1976', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Kenneth', 'ORGANIZATION'), ('Ives', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('real-estate', 'O'), ('concern', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('D.', 'PERSON'), ('Garrison', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Garrison', 'PERSON'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('a', 'O'), ('former', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Lord', 'O'), ('Day', 'O'), ('&', 'O'), ('Lord', 'O'), (',', 'O'), ('and', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('Crane', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Southport', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Meyer', 'PERSON'), ('of', 'O'), ('Edgartown', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('great-granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Grant', 'PERSON'), ('McCargo', 'PERSON'), ('of', 'O'), ('Pittsburgh', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Pennsylvania', 'ORGANIZATION'), ('Lubricating', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Pittsburgh', 'LOCATION'), (',', 'O'), ('and', 'O'), ('a', 'O'), ('great-great-granddaughter', 'O'), ('of', 'O'), ('William', 'PERSON'), ('Graham', 'PERSON'), ('of', 'O'), ('Pittsburgh', 'LOCATION'), (',', 'O'), ('a', 'O'), ('founder', 'O'), ('of', 'O'), ('the', 'O'), ('Dixie', 'ORGANIZATION'), ('Cup', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('Can', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Seybolt', 'PERSON'), ('is', 'O'), ('a', 'O'), ('financial', 'O'), ('consultant', 'O'), ('for', 'O'), ('Shearson', 'ORGANIZATION'), ('LehmanAmerican', 'ORGANIZATION'), ('Express', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('St.', 'ORGANIZATION'), ('George', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Newport', 'LOCATION'), (',', 'O'), ('R.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Middlebury', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('retired', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('William', 'ORGANIZATION'), ('Underwood', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('food', 'O'), ('concern', 'O'), ('in', 'O'), ('Boston', 'LOCATION'), (',', 'O'), ('and', 'O'), ('president', 'O'), ('emeritus', 'O'), ('of', 'O'), ('the', 'O'), ('Museum', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Fine', 'ORGANIZATION'), ('Arts', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), ('.', 'O')), (('Amy', 'PERSON'), ('Willard', 'PERSON'), ('Higgons', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('John', 'PERSON'), ('Axford', 'PERSON'), ('Higgons', 'PERSON'), ('3d', 'O'), ('of', 'O'), ('Irvington-on-Hudson', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Joseph', 'PERSON'), ('Francis', 'PERSON'), ('Stern', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Evelyn', 'PERSON'), ('Regina', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('Rochelle', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Joseph', 'PERSON'), ('Wallace', 'PERSON'), ('Stern', 'PERSON'), ('of', 'O'), ('White', 'LOCATION'), ('Plains', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Frederick', 'PERSON'), ('F.', 'PERSON'), ('Jenkins', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('Irvington', 'LOCATION'), ('Presbyterian', 'O'), ('Church', 'O'), ('.', 'O'), ('Nancy', 'PERSON'), ('Louise', 'PERSON'), ('Higgons', 'PERSON'), ('and', 'O'), ('Jenny', 'PERSON'), ('Hunter', 'PERSON'), ('Higgons', 'PERSON'), ('were', 'O'), ('their', 'O'), ('sister', 'O'), (\"'s\", 'O'), ('maids', 'O'), ('of', 'O'), ('honor', 'O'), ('.', 'O'), ('Don', 'PERSON'), ('Stern', 'PERSON'), ('was', 'O'), ('his', 'O'), ('brother', 'O'), (\"'s\", 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Stern', 'PERSON'), (',', 'O'), ('a', 'O'), ('media', 'O'), ('buyer', 'O'), ('for', 'O'), ('Levine', 'PERSON'), (',', 'O'), ('Huntley', 'PERSON'), (',', 'O'), ('Schmidt', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Beaver', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('advertising', 'O'), ('agency', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('attended', 'O'), ('Mount', 'ORGANIZATION'), ('Vernon', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), ('and', 'O'), ('graduated', 'O'), ('from', 'O'), ('Monmouth', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('marketing', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('City', 'ORGANIZATION'), ('Regional', 'ORGANIZATION'), ('Magazines', 'ORGANIZATION'), ('Association', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('was', 'O'), ('a', 'O'), ('publishing', 'O'), ('consultant', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('marketing', 'O'), ('director', 'O'), ('of', 'O'), ('Discover', 'O'), ('magazine', 'O'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('June', 'PERSON'), ('Higgons', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('registered', 'O'), ('nurse', 'O'), ('at', 'O'), ('the', 'O'), ('Dobbs', 'O'), ('Ferry', 'O'), ('-LRB-', 'O'), ('N.Y.', 'LOCATION'), ('-RRB-', 'O'), ('Hospital', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('John', 'PERSON'), ('Axford', 'PERSON'), ('Higgons', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('the', 'O'), ('founder', 'O'), ('of', 'O'), ('J.', 'O'), ('A.', 'O'), ('Higgons', 'O'), ('&', 'O'), ('Son', 'O'), (',', 'O'), ('a', 'O'), ('commodities', 'O'), ('brokerage', 'O'), (',', 'O'), ('and', 'O'), ('founder', 'O'), ('and', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('National', 'ORGANIZATION'), ('Association', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Commodities', 'ORGANIZATION'), ('Exchanges', 'ORGANIZATION'), ('and', 'O'), ('Allied', 'O'), ('Trades', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Stern', 'PERSON'), ('is', 'O'), ('a', 'O'), ('theatrical', 'O'), ('lighting', 'O'), ('technician', 'O'), ('for', 'O'), ('Joseph', 'ORGANIZATION'), ('Harris', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), (',', 'O'), ('theatrical', 'O'), ('producers', 'O'), ('and', 'O'), ('managers', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('stage', 'O'), ('electrician', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Adrian', 'PERSON'), ('R.', 'PERSON'), ('Mottola', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Alfred', 'PERSON'), ('Mottola', 'PERSON'), ('of', 'O'), ('Longport', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Andrew', 'PERSON'), ('N.', 'PERSON'), ('Rosen', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Shirley', 'PERSON'), ('Rosen', 'PERSON'), ('of', 'O'), ('Palm', 'LOCATION'), ('Springs', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Carl', 'PERSON'), ('Rosen', 'PERSON'), ('.', 'O'), ('Rabbi', 'R'), ('Ronald', 'PERSON'), ('Sobel', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Hotel', 'O'), ('Pierre', 'O'), ('.', 'O'), ('Dawn', 'PERSON'), ('Theresa', 'PERSON'), ('Mottola', 'PERSON'), ('was', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('for', 'O'), ('her', 'O'), ('sister', 'O'), ('.', 'O'), ('Douglas', 'PERSON'), ('Peter', 'PERSON'), ('Rosen', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('for', 'O'), ('his', 'O'), ('brother', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Rosen', 'PERSON'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Florida', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('general', 'O'), ('contractor', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('Jersey', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Gloria', 'PERSON'), ('Mottola', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('restaurant', 'O'), ('consultant', 'O'), ('in', 'O'), ('Atlantic', 'LOCATION'), ('City', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Rosen', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Robert', 'ORGANIZATION'), ('Louis', 'ORGANIZATION'), ('Stevenson', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Pebble', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('attended', 'O'), ('the', 'O'), ('University', 'O'), ('of', 'O'), ('Miami', 'LOCATION'), ('-LRB-', 'O'), ('Fla.', 'LOCATION'), ('-RRB-', 'O'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('president', 'O'), ('of', 'O'), ('Calvin', 'ORGANIZATION'), ('Klein', 'ORGANIZATION'), ('Jeans', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('died', 'O'), ('last', 'O'), ('year', 'O'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('philanthropist', 'O'), ('and', 'O'), ('chairman', 'O'), ('and', 'O'), ('chief', 'O'), ('executive', 'O'), ('officer', 'O'), ('of', 'O'), ('the', 'O'), ('Puritan', 'ORGANIZATION'), ('Fashions', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('developed', 'O'), ('Puritan', 'O'), ('from', 'O'), ('a', 'O'), ('Boston', 'LOCATION'), ('dressmaking', 'O'), ('company', 'O'), (',', 'O'), ('founded', 'O'), ('by', 'O'), ('his', 'O'), ('father', 'O'), (',', 'O'), ('the', 'O'), ('late', 'O'), ('Arthur', 'PERSON'), ('Rosen', 'PERSON'), (',', 'O'), ('into', 'O'), ('a', 'O'), ('major', 'O'), ('clothing', 'O'), ('manufacturer', 'O'), ('whose', 'O'), ('products', 'O'), ('include', 'O'), ('Calvin', 'PERSON'), ('Klein', 'PERSON'), ('jeans', 'O'), ('and', 'O'), ('other', 'O'), ('Calvin', 'PERSON'), ('Klein', 'PERSON'), ('apparel', 'O'), ('.', 'O')), (('Susan', 'PERSON'), ('Marilyn', 'PERSON'), ('Wershba', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Samuel', 'PERSON'), ('Wershba', 'PERSON'), ('of', 'O'), ('Sands', 'LOCATION'), ('Point', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Steven', 'PERSON'), ('David', 'PERSON'), ('Zerin', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Stanley', 'PERSON'), ('Zerin', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Rabbi', 'R'), ('Martin', 'PERSON'), ('Rozenberg', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Pine', 'ORGANIZATION'), ('Hollow', 'ORGANIZATION'), ('Country', 'ORGANIZATION'), ('Club', 'ORGANIZATION'), ('in', 'O'), ('East', 'LOCATION'), ('Norwich', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('Mrs.', 'PERSON'), ('Zerin', 'PERSON'), ('is', 'O'), ('a', 'O'), ('marketing', 'O'), ('consultant', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('was', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Leber', 'ORGANIZATION'), ('Katz', 'ORGANIZATION'), ('Partners', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('advertising', 'O'), ('agency', 'O'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('chief', 'O'), ('executive', 'O'), ('officer', 'O'), ('of', 'O'), ('A.A.R.', 'O'), ('Tech', 'O'), (',', 'O'), ('a', 'O'), ('subsidiary', 'O'), ('of', 'O'), ('the', 'O'), ('A.A.R.', 'O'), ('Corporation', 'O'), (',', 'O'), ('an', 'O'), ('avionics', 'O'), ('concern', 'O'), ('in', 'O'), ('Garden', 'LOCATION'), ('City', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('Mr.', 'PERSON'), ('Zerin', 'PERSON'), ('is', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('Sperry', 'PERSON'), (',', 'O'), ('Weinberg', 'PERSON'), (',', 'O'), ('Wels', 'PERSON'), (',', 'O'), ('Waldman', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Rubenstein', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Syracuse', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('St.', 'ORGANIZATION'), ('John', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Zirmo', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('arms', 'O'), ('and', 'O'), ('ammunition', 'O'), ('exporting', 'O'), ('concern', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Anne', 'PERSON'), ('Elizabeth', 'PERSON'), ('Diamond', 'PERSON'), ('and', 'O'), ('Jonathan', 'PERSON'), ('Edward', 'PERSON'), ('Diamond', 'PERSON'), (',', 'O'), ('both', 'O'), ('seniors', 'O'), ('at', 'O'), ('Yale', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('plan', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('in', 'O'), ('June', 'O'), (',', 'O'), ('her', 'O'), ('parents', 'O'), (',', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Leonard', 'PERSON'), ('Diamond', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Milford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('Diamond', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('two', 'O'), ('families', 'O'), ('are', 'O'), ('not', 'O'), ('related', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Spence', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('provisional', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Junior', 'ORGANIZATION'), ('League', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('supervising', 'O'), ('and', 'O'), ('training', 'O'), ('analyst', 'O'), ('at', 'O'), ('the', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('for', 'ORGANIZATION'), ('Psychoanalytic', 'ORGANIZATION'), ('Training', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Research', 'ORGANIZATION'), ('and', 'O'), ('an', 'O'), ('assistant', 'O'), ('clinical', 'O'), ('professor', 'O'), ('of', 'O'), ('psychiatry', 'O'), ('at', 'O'), ('the', 'O'), ('Columbia', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Physicians', 'ORGANIZATION'), ('and', 'O'), ('Surgeons', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Diamond', 'PERSON'), ('is', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('Collegiate', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('lawyer', 'O'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('Federal', 'O'), ('regional', 'O'), ('administrator', 'O'), ('of', 'O'), ('the', 'O'), ('General', 'ORGANIZATION'), ('Services', 'ORGANIZATION'), ('Administration', 'ORGANIZATION'), (',', 'O'), ('with', 'O'), ('jurisdiction', 'O'), ('over', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('New', 'LOCATION'), ('Jersey', 'LOCATION'), (',', 'O'), ('Puerto', 'LOCATION'), ('Rico', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('United', 'LOCATION'), ('States', 'LOCATION'), ('Virgin', 'LOCATION'), ('Islands', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('mother', 'O'), (',', 'O'), ('Marilyn', 'PERSON'), ('G.', 'PERSON'), ('Diamond', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Cohn', 'PERSON'), (',', 'O'), ('Glickstein', 'PERSON'), (',', 'O'), ('Lurie', 'PERSON'), (',', 'O'), ('Ostrin', 'LOCATION'), (',', 'O'), ('Lubell', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Lubell', 'ORGANIZATION'), ('.', 'O')), (('Valerie', 'PERSON'), ('Grace', 'PERSON'), ('Ronson', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('Ronson', 'PERSON'), ('of', 'O'), ('Trumbull', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('J.', 'O'), ('B.', 'PERSON'), ('Maxwell', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Maxwell', 'PERSON'), ('of', 'O'), ('Clarksburg', 'LOCATION'), (',', 'O'), ('W.Va', 'O'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Milton', 'PERSON'), ('Ryder', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('Presbyterian', 'O'), ('Church', 'O'), ('of', 'O'), ('the', 'O'), ('Covenant', 'O'), ('in', 'O'), ('Boston', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('keeping', 'O'), ('her', 'O'), ('name', 'O'), ('professionally', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('financial', 'O'), ('planner', 'O'), ('and', 'O'), ('account', 'O'), ('executive', 'O'), ('with', 'O'), ('E.', 'ORGANIZATION'), ('F.', 'ORGANIZATION'), ('Hutton', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('Southern', 'ORGANIZATION'), ('Connecticut', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('studied', 'O'), ('at', 'O'), ('the', 'O'), ('Goethe', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('in', 'O'), ('Freiburg', 'LOCATION'), (',', 'O'), ('West', 'LOCATION'), ('Germany', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Connecticut', 'ORGANIZATION'), ('in', 'O'), ('Storrs', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Airtite', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('Trumbull', 'LOCATION'), ('home', 'O'), ('improvement', 'O'), ('contractor', 'O'), ('.', 'O'), ('Her', 'O'), ('great', 'O'), ('-', 'O'), ('grandfather', 'O'), ('Frederick', 'PERSON'), ('Bergner', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('was', 'O'), ('a', 'O'), ('founder', 'O'), ('and', 'O'), ('conductor', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('Philharmonic', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Maxwell', 'PERSON'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('financial', 'O'), ('planning', 'O'), ('for', 'O'), ('Dean', 'ORGANIZATION'), ('Witter', 'ORGANIZATION'), ('Reynolds', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('Martech', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('management', 'O'), ('and', 'O'), ('marketing', 'O'), ('consulting', 'O'), ('company', 'O'), ('in', 'O'), ('Portland', 'LOCATION'), (',', 'O'), ('Me', 'O'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Salem', 'LOCATION'), ('-LRB-', 'O'), ('W.Va', 'O'), ('.', 'O'), ('-RRB-', 'O'), ('His', 'O'), ('previous', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Union', 'ORGANIZATION'), ('National', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('in', 'O'), ('Clarksburg', 'LOCATION'), ('and', 'O'), ('a', 'O'), ('retired', 'O'), ('dairyman', 'O'), ('.', 'O')), (('Vice', 'O'), ('Adm.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Julien', 'PERSON'), ('J.', 'PERSON'), ('LeBourgeois', 'PERSON'), ('of', 'O'), ('Tamworth', 'LOCATION'), (',', 'O'), ('N.H.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Anne', 'PERSON'), ('Armour', 'PERSON'), ('LeBourgeois', 'PERSON'), (',', 'O'), ('to', 'O'), ('Robert', 'PERSON'), ('Thomas', 'PERSON'), ('Grieves', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('James', 'PERSON'), ('H.', 'PERSON'), ('Grieves', 'PERSON'), ('of', 'O'), ('Kenmore', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Georgian', 'LOCATION'), ('Bay', 'LOCATION'), (',', 'O'), ('Ontario', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Grieves', 'PERSON'), ('.', 'O'), ('The', 'O'), ('wedding', 'O'), ('is', 'O'), ('to', 'O'), ('be', 'O'), ('on', 'O'), ('Nov.', 'O'), ('10', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), ('is', 'O'), ('an', 'O'), ('assistant', 'O'), ('vice', 'O'), ('president', 'O'), ('in', 'O'), ('the', 'O'), ('international', 'O'), ('division', 'O'), ('of', 'O'), ('the', 'O'), ('Manufacturers', 'ORGANIZATION'), ('Hanover', 'ORGANIZATION'), ('Trust', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Middlebury', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Johns', 'ORGANIZATION'), ('Hopkins', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Advanced', 'ORGANIZATION'), ('International', 'ORGANIZATION'), ('Studies', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Naval', 'ORGANIZATION'), ('War', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Newport', 'LOCATION'), (',', 'O'), ('R.I.', 'LOCATION'), (',', 'O'), ('from', 'O'), ('1974', 'O'), ('to', 'O'), ('1977', 'O'), ('and', 'O'), ('had', 'O'), ('been', 'O'), ('chief', 'O'), ('of', 'O'), ('staff', 'O'), ('to', 'O'), ('the', 'O'), ('Supreme', 'O'), ('Allied', 'O'), ('Commander', 'O'), (',', 'O'), ('Atlantic', 'LOCATION'), (',', 'O'), ('of', 'O'), ('the', 'O'), ('North', 'ORGANIZATION'), ('Atlantic', 'ORGANIZATION'), ('Treaty', 'ORGANIZATION'), ('Organization', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Grieves', 'PERSON'), ('is', 'O'), ('a', 'O'), ('reporter', 'O'), ('and', 'O'), ('writer', 'O'), ('for', 'O'), ('Time', 'O'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('the', 'O'), ('Nichols', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Buffalo', 'LOCATION'), ('and', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Hamilton', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('he', 'O'), ('was', 'O'), ('elected', 'O'), ('to', 'O'), ('Phi', 'LOCATION'), ('Beta', 'LOCATION'), ('Kappa', 'LOCATION'), (',', 'O'), ('and', 'O'), ('he', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('journalism', 'O'), ('at', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('business', 'O'), ('manager', 'O'), ('for', 'O'), ('baseball', 'O'), ('teams', 'O'), ('in', 'O'), ('the', 'O'), ('St.', 'ORGANIZATION'), ('Louis', 'ORGANIZATION'), ('Cardinals', 'ORGANIZATION'), (\"'\", 'O'), ('farm', 'O'), ('system', 'O'), ('and', 'O'), ('was', 'O'), ('a', 'O'), ('sports', 'O'), ('writer', 'O'), ('for', 'O'), ('United', 'ORGANIZATION'), ('Press', 'ORGANIZATION'), ('.', 'O')), (('St.', 'ORGANIZATION'), ('Barnabas', 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Greenwich', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('the', 'O'), ('setting', 'O'), ('yesterday', 'O'), ('for', 'O'), ('the', 'O'), ('wedding', 'O'), ('of', 'O'), ('Elizabeth', 'PERSON'), ('Scott', 'PERSON'), ('Jeffery', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Carleton', 'PERSON'), ('Jeffery', 'PERSON'), ('of', 'O'), ('Greenwich', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Jeffery', 'PERSON'), (',', 'O'), ('to', 'O'), ('Peter', 'PERSON'), ('Baldwin', 'PERSON'), ('Hubbell', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Herbert', 'PERSON'), ('B.', 'PERSON'), ('Hubbell', 'PERSON'), ('of', 'O'), ('Woodbridge', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Richard', 'PERSON'), ('Van', 'PERSON'), ('Wely', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), (',', 'O'), ('assisted', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Dr.', 'PERSON'), ('Harold', 'PERSON'), ('Bassage', 'PERSON'), ('.', 'O'), ('Jill', 'PERSON'), ('Burr', 'PERSON'), ('Jeffery', 'PERSON'), ('was', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('for', 'O'), ('her', 'O'), ('sister', 'O'), ('.', 'O'), ('David', 'PERSON'), ('Randall', 'PERSON'), ('Hubbell', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('for', 'O'), ('his', 'O'), ('brother', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Hubbell', 'PERSON'), (',', 'O'), ('an', 'O'), ('assistant', 'O'), ('buyer', 'O'), ('for', 'O'), ('Bonwit', 'O'), ('Teller', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Greenwich', 'LOCATION'), ('Country', 'O'), ('Day', 'O'), ('School', 'O'), (',', 'O'), ('the', 'O'), ('Kent', 'O'), ('-LRB-', 'O'), ('Conn.', 'LOCATION'), ('-RRB-', 'O'), ('School', 'O'), ('and', 'O'), ('Trinity', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Hartford', 'LOCATION'), (',', 'O'), ('from', 'O'), ('which', 'O'), ('her', 'O'), ('husband', 'O'), ('also', 'O'), ('graduated', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('an', 'O'), ('account', 'O'), ('executive', 'O'), ('and', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('at', 'O'), ('Dancer', 'ORGANIZATION'), ('Fitzgerald', 'ORGANIZATION'), ('Sample', 'ORGANIZATION'), (',', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('advertising', 'O'), ('firm', 'O'), (',', 'O'), ('and', 'O'), ('business', 'O'), ('manager', 'O'), ('of', 'O'), ('the', 'O'), ('Nutmegger', 'O'), ('magazine', 'O'), ('in', 'O'), ('Greenwich', 'LOCATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Hubbell', 'PERSON'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Louis', 'PERSON'), ('W.', 'PERSON'), ('Fairchild', 'PERSON'), (',', 'O'), ('chairman', 'O'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('Fairchild', 'ORGANIZATION'), ('Publications', 'ORGANIZATION'), (',', 'O'), ('which', 'O'), ('was', 'O'), ('founded', 'O'), ('by', 'O'), ('her', 'O'), ('great-grandfather', 'O'), ('Edmund', 'PERSON'), ('Wade', 'PERSON'), ('Fairchild', 'PERSON'), ('.', 'O'), ('Mr.', 'PERSON'), ('Hubbell', 'PERSON'), ('is', 'O'), ('an', 'O'), ('account', 'O'), ('executive', 'O'), ('with', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('advertising', 'O'), ('agency', 'O'), ('Cunningham', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Walsh', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('formerly', 'O'), ('an', 'O'), ('assistant', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('First', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('New', 'ORGANIZATION'), ('Haven', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('independent', 'O'), ('broker', 'O'), ('of', 'O'), ('Oriental', 'O'), ('goods', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Andrew', 'PERSON'), ('C.', 'PERSON'), ('Sigler', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('Canaan', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('have', 'O'), ('announced', 'O'), ('the', 'O'), ('engagement', 'O'), ('of', 'O'), ('their', 'O'), ('daughter', 'O'), (',', 'O'), ('Patricia', 'PERSON'), ('Eleanor', 'PERSON'), ('Sigler', 'PERSON'), (',', 'O'), ('to', 'O'), ('Keith', 'PERSON'), ('Edward', 'PERSON'), ('Lindner', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Carl', 'PERSON'), ('H.', 'PERSON'), ('Lindner', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Cincinnati', 'LOCATION'), ('.', 'O'), ('Miss', 'O'), ('Sigler', 'PERSON'), ('and', 'O'), ('her', 'O'), ('fiance', 'O'), ('plan', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('in', 'O'), ('December', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('marketing', 'O'), ('representative', 'O'), ('in', 'O'), ('Manchester', 'LOCATION'), (',', 'O'), ('N.H.', 'LOCATION'), (',', 'O'), ('for', 'O'), ('the', 'O'), ('I.B.M.', 'O'), ('Corporation', 'O'), (',', 'O'), ('received', 'O'), ('a', 'O'), ('B.A.', 'O'), ('degree', 'O'), ('in', 'O'), ('policy', 'O'), ('studies', 'O'), ('from', 'O'), ('Dartmouth', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('and', 'O'), ('chief', 'O'), ('executive', 'O'), ('officer', 'O'), ('of', 'O'), ('the', 'O'), ('Champion', 'ORGANIZATION'), ('International', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (',', 'O'), ('with', 'O'), ('headquarters', 'O'), ('in', 'O'), ('Stamford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('Money', 'ORGANIZATION'), ('Management', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Cincinnati', 'LOCATION'), (',', 'O'), ('a', 'O'), ('subsidiary', 'O'), ('of', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('Financial', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (',', 'O'), ('of', 'O'), ('which', 'O'), ('his', 'O'), ('father', 'O'), ('is', 'O'), ('chairman', 'O'), ('.', 'O')), (('Alejandra', 'PERSON'), ('Amada', 'PERSON'), ('Ramirez', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Alonzo', 'PERSON'), ('Ramirez', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Andrew', 'PERSON'), ('Willard', 'PERSON'), ('Smethurst', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('E.', 'PERSON'), ('William', 'PERSON'), ('Smethurst', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Ridgewood', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('The', 'O'), ('Rev.', 'R'), ('Daniel', 'PERSON'), ('Kreller', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Bartholomew', 'ORGANIZATION'), (\"'s\", 'O'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Hohokus', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('Naomi', 'PERSON'), ('Rush', 'PERSON'), ('was', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('.', 'O'), ('James', 'PERSON'), ('E.', 'PERSON'), ('Smethurst', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('for', 'O'), ('his', 'O'), ('brother', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Smethurst', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('Fieldston', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Radcliffe', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('business', 'O'), ('administrator', 'O'), ('for', 'O'), ('Architectural', 'O'), ('Resources', 'O'), ('in', 'O'), ('Cambridge', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('building', 'O'), ('superintendent', 'O'), ('and', 'O'), ('a', 'O'), ('member', 'O'), ('of', 'O'), ('the', 'O'), ('executive', 'O'), ('board', 'O'), ('of', 'O'), ('Local', 'O'), ('32B', 'O'), ('of', 'O'), ('the', 'O'), ('Service', 'ORGANIZATION'), ('Employees', 'ORGANIZATION'), ('Union', 'ORGANIZATION'), ('in', 'O'), ('Manhattan', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Smethurst', 'PERSON'), ('graduated', 'O'), ('from', 'O'), ('Phillips', 'ORGANIZATION'), ('Exeter', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('and', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('he', 'O'), ('was', 'O'), ('elected', 'O'), ('to', 'O'), ('Phi', 'O'), ('Beta', 'O'), ('Kappa', 'O'), ('and', 'O'), ('is', 'O'), ('now', 'O'), ('a', 'O'), ('doctoral', 'O'), ('candidate', 'O'), ('in', 'O'), ('Greek', 'O'), ('philology', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('senior', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('investment', 'O'), ('company', 'O'), ('Cyrus', 'ORGANIZATION'), ('J.', 'ORGANIZATION'), ('Lawrence', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('.', 'O')), (('Marjorie', 'PERSON'), ('Ellen', 'PERSON'), ('McAboy', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Margaret', 'PERSON'), ('McGlynn', 'PERSON'), ('McAboy', 'PERSON'), ('of', 'O'), ('LaCanada', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('William', 'PERSON'), ('Kincaid', 'PERSON'), ('McAboy', 'PERSON'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('Richard', 'PERSON'), ('H.', 'PERSON'), ('Lowe', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Arnold', 'PERSON'), ('Lowe', 'PERSON'), ('of', 'O'), ('Abington', 'PERSON'), (',', 'O'), ('Pa.', 'LOCATION'), ('.', 'O'), ('Rabbi', 'R'), ('Bruce', 'PERSON'), ('Goldman', 'PERSON'), ('and', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Louis', 'PERSON'), ('Gioia', 'PERSON'), (',', 'O'), ('a', 'O'), ('Roman', 'O'), ('Catholic', 'O'), ('priest', 'R'), (',', 'O'), ('officiated', 'O'), ('at', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Snuff', 'O'), ('Mill', 'O'), ('at', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('Botanical', 'LOCATION'), ('Garden', 'LOCATION'), ('in', 'O'), ('the', 'O'), ('Bronx', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retaining', 'O'), ('her', 'O'), ('name', 'O'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('associate', 'O'), ('with', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('law', 'O'), ('firm', 'O'), (\"O'Melveny\", 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Myers', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('Stanford', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('an', 'O'), ('engineer', 'O'), ('for', 'O'), ('the', 'O'), ('Jet', 'O'), ('Propulsion', 'O'), ('Laboratory', 'O'), ('in', 'O'), ('Pasadena', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('computer', 'O'), ('consultant', 'O'), ('for', 'O'), ('the', 'O'), ('Sperry', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Parsippany', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION')), (('Patricia', 'PERSON'), ('Kathryn', 'PERSON'), ('Halloran', 'PERSON'), (',', 'O'), ('a', 'O'), ('third', 'O'), ('-', 'O'), ('year', 'O'), ('student', 'O'), ('at', 'O'), ('George', 'ORGANIZATION'), ('Washington', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('Andrew', 'PERSON'), ('McBrayer', 'PERSON'), ('Garvey', 'PERSON'), (',', 'O'), ('a', 'O'), ('candidate', 'O'), ('for', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('at', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('plan', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), ('Dec.', 'O'), ('29', 'O'), ('.', 'O'), ('The', 'O'), ('announcement', 'O'), ('of', 'O'), ('their', 'O'), ('engagement', 'O'), ('has', 'O'), ('been', 'O'), ('made', 'O'), ('by', 'O'), ('her', 'O'), ('parents', 'O'), (',', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Leo', 'PERSON'), ('A.', 'PERSON'), ('Halloran', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('Canaan', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('Both', 'O'), ('later', 'O'), ('worked', 'O'), ('at', 'O'), ('the', 'O'), ('Bank', 'O'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('vice', 'O'), ('president', 'O'), ('for', 'O'), ('finance', 'O'), ('of', 'O'), ('the', 'O'), ('General', 'ORGANIZATION'), ('Electric', 'ORGANIZATION'), ('Credit', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Stamford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('father', 'O'), ('is', 'O'), ('an', 'O'), ('internist', 'O'), ('.', 'O')), (('Heather', 'PERSON'), ('Smith', 'PERSON'), ('MacIsaac', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Virginia', 'PERSON'), ('MacIsaac', 'PERSON'), ('of', 'O'), ('Brooklyn', 'LOCATION'), ('and', 'O'), ('J.', 'PERSON'), ('Val', 'PERSON'), ('Smith', 'PERSON'), ('of', 'O'), ('Dallas', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Peter', 'PERSON'), ('Lewis', 'PERSON'), ('Menderson', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Elizabeth', 'PERSON'), ('Menderson', 'PERSON'), ('of', 'O'), ('Glasgow', 'LOCATION'), ('and', 'O'), ('Ted', 'PERSON'), ('Menderson', 'PERSON'), ('of', 'O'), ('Cincinnati', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Harold', 'PERSON'), ('Elliot', 'PERSON'), ('Barrett', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('Episcopal', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Grace', 'O'), ('Church', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('keeping', 'O'), ('her', 'O'), ('name', 'O'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('architecture', 'O'), ('editor', 'O'), ('of', 'O'), ('House', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Garden', 'ORGANIZATION'), ('magazine', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Winchester-Thurston', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Pittsburgh', 'LOCATION'), ('and', 'O'), ('Yale', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Marshal', 'ORGANIZATION'), ('Security', 'ORGANIZATION'), ('Systems', 'ORGANIZATION'), ('in', 'O'), ('Dallas', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('stepfather', 'O'), (',', 'O'), ('Brittan', 'PERSON'), ('MacIsaac', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('marketing', 'O'), ('consultant', 'O'), ('for', 'O'), ('Englert', 'ORGANIZATION'), ('Metals', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('Woodbridge', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Cincinnati', 'LOCATION'), ('Country', 'O'), ('Day', 'O'), ('School', 'O'), ('and', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Tufts', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('fine', 'O'), ('arts', 'O'), ('from', 'O'), ('the', 'O'), ('Yale', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Art', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('and', 'O'), ('chief', 'O'), ('executive', 'O'), ('officer', 'O'), ('of', 'O'), ('Galvin', 'ORGANIZATION'), ('Menderson', 'ORGANIZATION'), ('Maier', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Press', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('advertising', 'O'), ('agency', 'O'), ('in', 'O'), ('Cincinnati', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Melanie', 'PERSON'), ('Menderson', 'PERSON'), ('of', 'O'), ('Cincinnati', 'LOCATION'), (',', 'O'), ('an', 'O'), ('author', 'O'), ('who', 'O'), ('wrote', 'O'), ('about', 'O'), ('parliamentary', 'O'), ('procedure', 'O'), ('.', 'O')), (('Patricia', 'PERSON'), ('Ann', 'PERSON'), ('Haas', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('George', 'PERSON'), ('A.', 'PERSON'), ('Haas', 'PERSON'), ('of', 'O'), ('Alexandria', 'LOCATION'), (',', 'O'), ('Va.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('David', 'PERSON'), ('Adams', 'PERSON'), ('Cleveland', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('G.', 'PERSON'), ('Cleveland', 'PERSON'), ('of', 'O'), ('Washington', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('ceremony', 'O'), ('was', 'O'), ('performed', 'O'), ('in', 'O'), ('the', 'O'), ('great', 'O'), ('choir', 'O'), ('of', 'O'), ('the', 'O'), ('National', 'ORGANIZATION'), ('Cathedral', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), ('by', 'O'), ('the', 'O'), ('Very', 'O'), ('Rev.', 'R'), ('Francis', 'PERSON'), ('B.', 'PERSON'), ('Sayre', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('an', 'O'), ('Episcopalian', 'O'), ('who', 'O'), ('is', 'O'), ('former', 'O'), ('dean', 'O'), ('of', 'O'), ('the', 'O'), ('cathedral', 'O'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('Rev.', 'R'), ('William', 'PERSON'), ('J.', 'PERSON'), ('English', 'PERSON'), (',', 'O'), ('a', 'O'), ('Roman', 'O'), ('Catholic', 'O'), ('priest', 'R'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Cleveland', 'PERSON'), (',', 'O'), ('an', 'O'), ('international', 'O'), ('economist', 'O'), ('in', 'O'), ('the', 'O'), ('office', 'O'), ('of', 'O'), ('the', 'O'), ('Secretary', 'O'), ('of', 'O'), ('the', 'O'), ('Treasury', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Mary', 'ORGANIZATION'), ('Washington', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Fredericksburg', 'LOCATION'), (',', 'O'), ('Va.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Johns', 'ORGANIZATION'), ('Hopkins', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Advanced', 'ORGANIZATION'), ('International', 'ORGANIZATION'), ('Studies', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('research', 'O'), ('physicist', 'O'), ('at', 'O'), ('the', 'O'), ('Naval', 'ORGANIZATION'), ('Research', 'ORGANIZATION'), ('Laboratory', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Cleveland', 'PERSON'), (',', 'O'), ('a', 'O'), ('writer', 'O'), ('for', 'O'), ('the', 'O'), ('Voice', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('America', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Groton', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Princeton', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('retired', 'O'), ('and', 'O'), ('was', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('office', 'O'), ('of', 'O'), ('public', 'O'), ('services', 'O'), ('in', 'O'), ('the', 'O'), ('Department', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('and', 'O'), ('an', 'O'), ('economic', 'O'), ('counselor', 'O'), ('in', 'O'), ('the', 'O'), ('United', 'LOCATION'), ('States', 'LOCATION'), ('Embassies', 'O'), ('in', 'O'), ('Yugoslavia', 'LOCATION'), ('and', 'O'), ('Thailand', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('great-grandson', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Dr.', 'PERSON'), ('Clement', 'PERSON'), ('Cleveland', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('a', 'O'), ('founder', 'O'), ('of', 'O'), ('the', 'O'), ('American', 'ORGANIZATION'), ('Cancer', 'ORGANIZATION'), ('Society', 'ORGANIZATION'), ('.', 'O')), (('Betsy', 'PERSON'), ('Jane', 'PERSON'), ('Becker', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Stanley', 'PERSON'), ('R.', 'PERSON'), ('Becker', 'PERSON'), ('of', 'O'), ('Palm', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('East', 'LOCATION'), ('Hampton', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Zelma', 'PERSON'), ('A.', 'PERSON'), ('Becker', 'PERSON'), (',', 'O'), ('and', 'O'), ('Matthew', 'PERSON'), ('Robert', 'PERSON'), ('Salinger', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('Claire', 'PERSON'), ('Douglas', 'PERSON'), ('of', 'O'), ('San', 'LOCATION'), ('Francisco', 'LOCATION'), ('and', 'O'), ('J.', 'PERSON'), ('D.', 'PERSON'), ('Salinger', 'PERSON'), ('of', 'O'), ('Cornish', 'LOCATION'), (',', 'O'), ('N.H.', 'LOCATION'), (',', 'O'), ('plan', 'O'), ('to', 'O'), ('be', 'O'), ('married', 'O'), (',', 'O'), ('according', 'O'), ('to', 'O'), ('the', 'O'), ('announcement', 'O'), ('of', 'O'), ('their', 'O'), ('engagement', 'O'), ('made', 'O'), ('by', 'O'), ('the', 'O'), ('future', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('father', 'O'), ('.', 'O'), ('A', 'O'), ('May', 'O'), ('wedding', 'O'), ('is', 'O'), ('planned', 'O'), ('.', 'O'), ('Miss', 'O'), ('Becker', 'PERSON'), (',', 'O'), ('who', 'O'), ('attended', 'O'), ('Ch', 'O'), ('\\xc2\\xac', 'O'), ('ateau', 'O'), ('Brillantmont', 'O'), ('in', 'O'), ('Lausanne', 'LOCATION'), (',', 'O'), ('Switzerland', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Choate', 'PERSON'), ('Rosemary', 'PERSON'), ('Hall', 'PERSON'), ('and', 'O'), ('from', 'O'), ('Sarah', 'PERSON'), ('Lawrence', 'PERSON'), ('College', 'PERSON'), ('with', 'O'), ('a', 'O'), ('B.A.', 'O'), ('degree', 'O'), ('in', 'O'), ('art', 'O'), ('history', 'O'), ('.', 'O'), ('The', 'O'), ('future', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('jewelry', 'O'), ('designer', 'O'), ('for', 'O'), ('ZEBE', 'ORGANIZATION'), ('Ltd.', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Los', 'LOCATION'), ('Angeles', 'LOCATION'), (',', 'O'), ('formerly', 'O'), ('was', 'O'), ('an', 'O'), ('assistant', 'O'), ('and', 'O'), ('later', 'O'), ('a', 'O'), ('cataloguer', 'O'), ('in', 'O'), ('the', 'O'), ('old', 'O'), ('master', 'O'), (\"'s\", 'O'), ('painting', 'O'), ('department', 'O'), ('for', 'O'), ('Sotheby', 'ORGANIZATION'), (\"'s\", 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('an', 'O'), ('independent', 'O'), ('commercial', 'O'), ('real-estate', 'O'), ('developer', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Connecticut', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Salinger', 'PERSON'), (',', 'O'), ('an', 'O'), ('actor', 'O'), ('professionally', 'O'), ('known', 'O'), ('as', 'O'), ('Matt', 'PERSON'), ('Salinger', 'PERSON'), (',', 'O'), ('is', 'O'), ('currently', 'O'), ('appearing', 'O'), ('in', 'O'), ('the', 'O'), ('movie', 'O'), (\"''\", 'O'), ('The', 'O'), ('Revenge', 'O'), ('of', 'O'), ('the', 'O'), ('Nerds', 'O'), ('.', 'O'), (\"''\", 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Phillips', 'ORGANIZATION'), ('Andover', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), (',', 'O'), ('attended', 'O'), ('Princeton', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('B.A.', 'O'), ('degree', 'O'), ('in', 'O'), ('art', 'O'), ('history', 'O'), ('and', 'O'), ('drama', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('the', 'O'), ('writer', 'O'), (',', 'O'), ('is', 'O'), ('author', 'O'), ('of', 'O'), (\"''\", 'O'), ('The', 'O'), ('Catcher', 'O'), ('in', 'O'), ('the', 'O'), ('Rye', 'O'), (',', 'O'), (\"''\", 'O'), ('published', 'O'), ('in', 'O'), ('1951', 'O'), ('by', 'O'), ('Little', 'ORGANIZATION'), ('Brown', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('mother', 'O'), ('is', 'O'), ('a', 'O'), ('psychologist', 'O'), ('in', 'O'), ('San', 'LOCATION'), ('Francisco', 'LOCATION'), ('.', 'O')), (('Deborah', 'PERSON'), ('Mae', 'PERSON'), ('Graham', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('George', 'PERSON'), ('G.', 'PERSON'), ('Graham', 'PERSON'), ('of', 'O'), ('Mill', 'LOCATION'), ('Valley', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Peter', 'PERSON'), ('Hendrickson', 'PERSON'), ('Bice', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('the', 'O'), ('Rev.', 'R'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Arthur', 'PERSON'), ('L.', 'PERSON'), ('Bice', 'PERSON'), ('of', 'O'), ('Herkimer', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('The', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('father', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Thomas', 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('assisted', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('.', 'O'), ('Gary', 'PERSON'), ('P.', 'PERSON'), ('Fertig', 'PERSON'), ('and', 'O'), ('Leslie', 'PERSON'), ('J.', 'PERSON'), ('A.', 'PERSON'), ('Lang', 'PERSON'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('keep', 'O'), ('her', 'O'), ('name', 'O'), ('professionally', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('ballet', 'O'), ('teacher', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('a', 'O'), ('saleswoman', 'O'), ('at', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('bookstore', 'O'), ('Rizzoli', 'O'), ('International', 'O'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('California', 'ORGANIZATION'), ('at', 'O'), ('Los', 'LOCATION'), ('Angeles', 'LOCATION'), ('and', 'O'), ('was', 'O'), ('a', 'O'), ('dancer', 'O'), ('with', 'O'), ('the', 'O'), ('San', 'ORGANIZATION'), ('Francisco', 'ORGANIZATION'), ('Ballet', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('principal', 'O'), ('dancer', 'O'), ('with', 'O'), ('the', 'O'), ('Swiss', 'O'), ('State', 'O'), ('Ballet', 'O'), ('of', 'O'), ('St.', 'LOCATION'), ('Gall', 'LOCATION'), (',', 'O'), ('Switzerland', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('retired', 'O'), ('real', 'O'), ('estate', 'O'), ('developer', 'O'), ('in', 'O'), ('San', 'LOCATION'), ('Francisco', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Bice', 'PERSON'), ('is', 'O'), ('the', 'O'), ('operator', 'O'), ('of', 'O'), ('the', 'O'), ('Blue', 'ORGANIZATION'), ('Spruce', 'ORGANIZATION'), ('Farm', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('he', 'O'), ('raises', 'O'), ('horses', 'O'), (',', 'O'), ('in', 'O'), ('Saratoga', 'LOCATION'), ('Springs', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('is', 'O'), ('a', 'O'), ('private', 'O'), ('investor', 'O'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('Italian', 'O'), ('University', 'ORGANIZATION'), ('for', 'ORGANIZATION'), ('Foreigners', 'ORGANIZATION'), ('in', 'O'), ('Perugia', 'LOCATION'), (',', 'O'), ('Italy', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('rector', 'O'), ('emeritus', 'O'), ('of', 'O'), ('the', 'O'), ('Emmanuel', 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Little', 'LOCATION'), ('Falls', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('founder', 'O'), ('and', 'O'), ('owner', 'O'), ('of', 'O'), ('the', 'O'), ('St.', 'ORGANIZATION'), ('Thomas', 'ORGANIZATION'), ('Guild', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('liturgical', 'O'), ('supply', 'O'), ('house', 'O'), ('in', 'O'), ('Herkimer', 'LOCATION'), ('.', 'O')), (('Alexandra', 'PERSON'), ('Lynde', 'PERSON'), ('Du', 'PERSON'), ('Val', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Philip', 'PERSON'), ('L.', 'PERSON'), ('R.', 'PERSON'), ('Du', 'PERSON'), ('Val', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('Canaan', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Edward', 'PERSON'), ('Spaulding', 'PERSON'), ('of', 'O'), ('Santa', 'LOCATION'), ('Barbara', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Joost', 'PERSON'), ('Bongaerts', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Annette', 'PERSON'), ('Bongaerts', 'PERSON'), ('-', 'O'), ('Hafkemeijer', 'PERSON'), ('of', 'O'), ('The', 'O'), ('Hague', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Josephus', 'PERSON'), ('Bongaerts', 'PERSON'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('T.', 'PERSON'), ('Guthrie', 'PERSON'), ('Speers', 'PERSON'), ('Jr.', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('First', 'O'), ('Presbyterian', 'O'), ('Church', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('Canaan', 'LOCATION'), (',', 'O'), ('assisted', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Edward', 'PERSON'), ('J.', 'PERSON'), ('Howley', 'PERSON'), (',', 'O'), ('pastor', 'O'), ('of', 'O'), ('St.', 'ORGANIZATION'), ('Thomas', 'ORGANIZATION'), ('More', 'ORGANIZATION'), ('Roman', 'ORGANIZATION'), ('Catholic', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Darien', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('Laguna', 'ORGANIZATION'), ('Blanca', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Santa', 'LOCATION'), ('Barbara', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Lewis', 'PERSON'), ('and', 'O'), ('Clark', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('was', 'O'), ('until', 'O'), ('recently', 'O'), ('the', 'O'), ('assistant', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('American', 'O'), ('Indian', 'O'), ('program', 'O'), ('for', 'O'), ('the', 'O'), ('Save', 'O'), ('the', 'O'), ('Children', 'ORGANIZATION'), ('Federation', 'ORGANIZATION'), ('in', 'O'), ('Westport', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('marketing', 'O'), ('director', 'O'), ('of', 'O'), ('Magazine', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Bongaerts', 'PERSON'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('Land', 'O'), ('en', 'O'), ('Tuinbouw', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('agricultural', 'O'), ('college', 'O'), ('in', 'O'), ('Gouda', 'LOCATION'), (',', 'O'), ('the', 'O'), ('Netherlands', 'LOCATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('northeastern', 'O'), ('representative', 'O'), ('for', 'O'), ('the', 'O'), ('Vandenberg', 'ORGANIZATION'), ('Bulb', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('importer', 'O'), ('of', 'O'), ('flowering', 'O'), ('bulbs', 'O'), ('and', 'O'), ('plants', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('active', 'O'), ('in', 'O'), ('agricultural', 'O'), ('and', 'O'), ('real-estate', 'O'), ('management', 'O'), ('in', 'O'), ('the', 'O'), ('Netherlands', 'LOCATION'), ('.', 'O')), (('Margaret', 'PERSON'), ('Ann', 'PERSON'), ('Shukur', 'PERSON'), (',', 'O'), ('a', 'O'), ('legislative', 'O'), ('aide', 'O'), ('to', 'O'), ('Senator', 'O'), ('Daniel', 'PERSON'), ('Patrick', 'PERSON'), ('Moynihan', 'PERSON'), (',', 'O'), ('Democrat', 'O'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Robert', 'PERSON'), ('Harris', 'PERSON'), ('Ruxin', 'PERSON'), (',', 'O'), ('an', 'O'), ('associate', 'O'), ('in', 'O'), ('the', 'O'), ('Washington', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Preston', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Thorgrimson', 'ORGANIZATION'), (',', 'ORGANIZATION'), ('Ellis', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Holman', 'ORGANIZATION'), (',', 'O'), ('were', 'O'), ('married', 'O'), ('yesterday', 'O'), ('.', 'O'), ('Paula', 'PERSON'), ('Winnig', 'PERSON'), (',', 'O'), ('a', 'O'), ('rabbinical', 'O'), ('student', 'O'), ('at', 'O'), ('the', 'O'), ('Hebrew', 'ORGANIZATION'), ('Union', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Lillian', 'O'), ('and', 'O'), ('Albert', 'PERSON'), ('Small', 'O'), ('Jewish', 'O'), ('Museum', 'O'), ('in', 'O'), ('Washington', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('retain', 'O'), ('her', 'O'), ('name', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Wisconsin', 'ORGANIZATION'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('D.', 'PERSON'), ('K.', 'PERSON'), ('Shukur', 'PERSON'), ('of', 'O'), ('Bayside', 'LOCATION'), (',', 'O'), ('Wis.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('overseas', 'O'), ('projects', 'O'), ('for', 'O'), ('the', 'O'), ('Allis-Chalmers', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('West', 'LOCATION'), ('Allis', 'LOCATION'), (',', 'O'), ('Wis.', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('the', 'O'), ('author', 'O'), ('of', 'O'), ('the', 'O'), ('recently', 'O'), ('published', 'O'), (\"''\", 'O'), ('An', 'O'), ('Athlete', 'O'), (\"'s\", 'O'), ('Guide', 'O'), ('to', 'O'), ('Agents', 'O'), ('.', 'O'), (\"''\", 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('dentist', 'O'), ('.', 'O')), (('Catherine', 'PERSON'), ('J.', 'PERSON'), ('Perri', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Anthony', 'PERSON'), ('Perri', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('Haven', 'LOCATION'), ('and', 'O'), ('Singer', 'LOCATION'), ('Island', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Aron', 'PERSON'), ('L.', 'PERSON'), ('Pasternack', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('Alan', 'PERSON'), ('Pasternack', 'PERSON'), ('of', 'O'), ('Avon', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Bette', 'PERSON'), ('Kolman', 'PERSON'), ('Pasternack', 'PERSON'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Russell', 'PERSON'), ('Hicks', 'PERSON'), (',', 'O'), ('a', 'O'), ('Congregational', 'O'), ('minister', 'O'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('civil', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('Haven', 'ORGANIZATION'), ('Lawn', 'ORGANIZATION'), ('Club', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retaining', 'O'), ('her', 'O'), ('name', 'O'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('production', 'O'), ('manager', 'O'), ('for', 'O'), ('Film', 'O'), ('Search', 'O'), (',', 'O'), ('a', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('film', 'O'), ('production', 'O'), ('company', 'O'), ('.', 'O'), ('She', 'O'), ('attended', 'O'), ('Wells', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Maryland', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Art', 'ORGANIZATION'), ('in', 'O'), ('Baltimore', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('retired', 'O'), ('president', 'O'), ('of', 'O'), ('R.', 'ORGANIZATION'), ('Perri', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Sons', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('meatpacking', 'O'), ('concern', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('Haven', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Pasternack', 'PERSON'), ('is', 'O'), ('an', 'O'), ('insurance', 'O'), ('broker', 'O'), ('in', 'O'), ('the', 'O'), ('marine', 'O'), ('and', 'O'), ('energy', 'O'), ('division', 'O'), ('of', 'O'), ('Marsh', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('McLennan', 'ORGANIZATION'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Trinity', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('doctoral', 'O'), ('degree', 'O'), ('in', 'O'), ('drama', 'O'), ('from', 'O'), ('Tufts', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('dentist', 'O'), ('in', 'O'), ('Avon', 'LOCATION'), ('.', 'O')), (('Amy', 'PERSON'), ('Bogardus', 'PERSON'), ('Holof', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('Morton', 'PERSON'), ('Holof', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Elberon', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Archibald', 'PERSON'), ('Alexander', 'PERSON'), ('Rhodes', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('William', 'PERSON'), ('H.', 'PERSON'), ('Rhodes', 'PERSON'), ('of', 'O'), ('Villanova', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Augustine', 'PERSON'), ('Janeway', 'PERSON'), ('Rhodes', 'PERSON'), ('of', 'O'), ('Tucson', 'LOCATION'), (',', 'O'), ('Ariz.', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('Grammar', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Preparatory', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('attended', 'O'), ('Ithaca', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Arizona', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('Gardenbolt', 'ORGANIZATION'), ('Industries', 'ORGANIZATION'), (',', 'O'), ('importer', 'O'), ('of', 'O'), ('fasteners', 'O'), ('in', 'O'), ('Garden', 'LOCATION'), ('City', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('for', 'O'), ('which', 'O'), ('Mr.', 'PERSON'), ('Rhodes', 'PERSON'), ('is', 'O'), ('a', 'O'), ('sales', 'O'), ('representative', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('mother', 'O'), (',', 'O'), ('Georgia', 'LOCATION'), ('Holof', 'LOCATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('lyricist', 'O'), ('.', 'O'), ('Her', 'O'), ('great-great-grandfather', 'O'), (',', 'O'), ('George', 'PERSON'), ('T.', 'PERSON'), ('Musson', 'PERSON'), (',', 'O'), ('was', 'O'), ('founder', 'O'), ('and', 'O'), ('publisher', 'O'), ('of', 'O'), ('The', 'ORGANIZATION'), ('Brooklyn', 'ORGANIZATION'), ('Standard', 'ORGANIZATION'), ('Star', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('predecessor', 'O'), ('of', 'O'), ('The', 'ORGANIZATION'), ('Brooklyn', 'ORGANIZATION'), ('Eagle', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Rhodes', 'PERSON'), (',', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('St.', 'ORGANIZATION'), ('Andrew', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('attended', 'O'), ('Villanova', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Arizona', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('professor', 'O'), ('of', 'O'), ('veterinary', 'O'), ('radiology', 'O'), ('at', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('Helen', 'PERSON'), ('G.', 'PERSON'), ('Janeway', 'PERSON'), ('of', 'O'), ('Villanova', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Brig.', 'O'), ('Gen.', 'O'), ('Augustine', 'PERSON'), ('Janeway', 'PERSON'), (',', 'O'), ('U.S.A.', 'LOCATION')), (('Jane', 'PERSON'), ('Esther', 'PERSON'), ('Schaffer', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Aaron', 'PERSON'), ('Dechter', 'PERSON'), ('of', 'O'), ('Los', 'LOCATION'), ('Angeles', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Martin', 'PERSON'), ('J.', 'PERSON'), ('Schaffer', 'PERSON'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Benjamin', 'PERSON'), ('Robert', 'PERSON'), ('Gruberg', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Pearl', 'O'), ('Richter', 'O'), ('of', 'O'), ('Ridgewood', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Leon', 'PERSON'), ('Davis', 'PERSON'), ('Gruberg', 'PERSON'), ('.', 'O'), ('Rabbi', 'R'), ('Erwin', 'PERSON'), ('Zimet', 'PERSON'), ('officiated', 'O'), ('at', 'O'), ('the', 'O'), ('Valeur', 'LOCATION'), ('Manor', 'LOCATION'), ('in', 'O'), ('Rhinebeck', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('keep', 'O'), ('her', 'O'), ('name', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('freelance', 'O'), ('writer', 'O'), ('and', 'O'), ('producer', 'O'), ('of', 'O'), ('business', 'O'), ('communications', 'O'), ('materials', 'O'), ('.', 'O'), ('Her', 'O'), ('previous', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O'), ('Mr.', 'PERSON'), ('Gruberg', 'PERSON'), ('is', 'O'), ('the', 'O'), ('assistant', 'O'), ('director', 'O'), ('of', 'O'), ('Mayor', 'ORGANIZATION'), ('Koch', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('Office', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Film', 'ORGANIZATION'), (',', 'O'), ('Theater', 'O'), ('and', 'O'), ('Broadcasting', 'O'), ('.', 'O')), (('Laurie', 'PERSON'), ('Ellen', 'PERSON'), ('Lieberman', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Marvin', 'PERSON'), ('Lieberman', 'PERSON'), ('of', 'O'), ('Brooklyn', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Dr.', 'PERSON'), ('Edward', 'PERSON'), ('Telzak', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Louis', 'PERSON'), ('Telzak', 'PERSON'), ('of', 'O'), ('Forest', 'LOCATION'), ('Hills', 'LOCATION'), (',', 'O'), ('Queens', 'LOCATION'), ('.', 'O'), ('Rabbi', 'R'), ('Neal', 'PERSON'), ('I.', 'PERSON'), ('Borovitz', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('home', 'O'), ('of', 'O'), ('the', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('parents', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('retain', 'O'), ('her', 'O'), ('name', 'O'), ('professionally', 'O'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('architect', 'O'), ('for', 'O'), ('Carol', 'ORGANIZATION'), ('Fippin', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('Cambridge', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('interior', 'O'), ('designers', 'O'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('Oberlin', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('Master', 'O'), ('of', 'O'), ('Architecture', 'O'), ('degree', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('executive', 'O'), ('secretary', 'O'), ('of', 'O'), ('the', 'O'), ('committee', 'O'), ('on', 'O'), ('medicine', 'O'), ('in', 'O'), ('society', 'O'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Medicine', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Purlaine', 'PERSON'), ('Lieberman', 'PERSON'), (',', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('research', 'O'), ('for', 'O'), ('the', 'O'), ('Health', 'ORGANIZATION'), ('Insurance', 'ORGANIZATION'), ('Association', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('America', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Dr.', 'PERSON'), ('Telzak', 'PERSON'), (',', 'O'), ('a', 'O'), ('fellow', 'O'), ('in', 'O'), ('infectious', 'O'), ('diseases', 'O'), ('at', 'O'), ('the', 'O'), ('Beth', 'LOCATION'), ('Israel', 'LOCATION'), ('and', 'O'), ('Peter', 'ORGANIZATION'), ('Bent', 'ORGANIZATION'), ('Brigham', 'ORGANIZATION'), ('Hospitals', 'ORGANIZATION'), ('in', 'O'), ('Boston', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('the', 'O'), ('Albert', 'ORGANIZATION'), ('Einstein', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Medicine', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('retired', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Lema', 'ORGANIZATION'), ('Clothing', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('men', 'O'), (\"'s\", 'O'), ('clothing', 'O'), ('manufacturer', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('Judith', 'PERSON'), ('Glassman', 'PERSON'), ('Daniels', 'PERSON'), (',', 'O'), ('a', 'O'), ('senior', 'O'), ('editor', 'O'), ('at', 'O'), ('Time', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('Lee', 'PERSON'), ('Dunham', 'PERSON'), ('Webb', 'PERSON'), (',', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('National', 'ORGANIZATION'), ('Center', 'ORGANIZATION'), ('for', 'ORGANIZATION'), ('Policy', 'ORGANIZATION'), ('Alternatives', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('public', 'O'), ('-', 'O'), ('policy', 'O'), ('research', 'O'), ('institute', 'O'), ('in', 'O'), ('Washington', 'LOCATION'), (',', 'O'), ('were', 'O'), ('married', 'O'), ('yesterday', 'O'), ('at', 'O'), ('the', 'O'), ('Norumbega', 'O'), ('Inn', 'O'), ('in', 'O'), ('Camden', 'LOCATION'), (',', 'O'), ('Me', 'O'), ('.', 'O'), ('James', 'PERSON'), ('Tierney', 'PERSON'), (',', 'O'), ('the', 'O'), ('Attorney', 'O'), ('General', 'O'), ('of', 'O'), ('Maine', 'LOCATION'), (',', 'O'), ('officiated', 'O'), ('.', 'O'), ('Jennifer', 'PERSON'), ('Brooke', 'PERSON'), ('Stanton', 'PERSON'), ('Webb', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('the', 'O'), ('bridegroom', 'G'), ('from', 'O'), ('his', 'O'), ('previous', 'O'), ('marriage', 'O'), (',', 'O'), ('which', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), (',', 'O'), ('attended', 'O'), ('the', 'O'), ('couple', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('retain', 'O'), ('her', 'O'), ('name', 'O'), ('professionally', 'O'), (',', 'O'), ('graduated', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Smith', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Before', 'O'), ('joining', 'O'), ('Time', 'O'), (',', 'O'), ('she', 'O'), ('was', 'O'), ('the', 'O'), ('editor', 'O'), ('in', 'O'), ('chief', 'O'), ('of', 'O'), ('Savvy', 'O'), ('magazine', 'O'), (',', 'O'), ('which', 'O'), ('she', 'O'), ('had', 'O'), ('founded', 'O'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Joel', 'PERSON'), ('Glassman', 'PERSON'), ('of', 'O'), ('Nashville', 'LOCATION'), ('and', 'O'), ('Florence', 'LOCATION'), (',', 'O'), ('Italy', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('shoe', 'O'), ('designer', 'O'), ('and', 'O'), ('fashion', 'O'), ('consultant', 'O'), ('in', 'O'), ('Florence', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('first', 'O'), ('husband', 'O'), ('was', 'O'), ('the', 'O'), ('late', 'O'), ('Ronald', 'PERSON'), ('S.', 'PERSON'), ('Daniels', 'PERSON'), (',', 'O'), ('a', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('lawyer', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Webb', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('Webb', 'PERSON'), ('of', 'O'), ('Brookline', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Phillips', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('and', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Boston', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('economics', 'O'), ('from', 'O'), ('Goddard', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('retired', 'O'), ('as', 'O'), ('a', 'O'), ('manager', 'O'), ('for', 'O'), ('the', 'O'), ('Homelite', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('division', 'O'), ('of', 'O'), ('the', 'O'), ('Textron', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), (',', 'O'), ('in', 'O'), ('Boston', 'LOCATION'), ('.', 'O')), (('Jane', 'PERSON'), ('Carole', 'PERSON'), ('Bernstein', 'PERSON'), ('and', 'O'), ('Steven', 'PERSON'), ('Mitchell', 'PERSON'), ('Nadler', 'PERSON'), ('were', 'O'), ('married', 'O'), ('yesterday', 'O'), ('by', 'O'), ('Rabbi', 'R'), ('Ruth', 'PERSON'), ('Sohn', 'PERSON'), ('at', 'O'), ('the', 'O'), ('home', 'O'), ('of', 'O'), ('the', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('parents', 'O'), (',', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('S.', 'PERSON'), ('Bernstein', 'PERSON'), (',', 'O'), ('in', 'O'), ('Short', 'LOCATION'), ('Hills', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Nadler', 'PERSON'), (',', 'O'), ('a', 'O'), ('cum-laude', 'O'), ('graduate', 'O'), ('of', 'O'), ('Barnard', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('assistant', 'O'), ('to', 'O'), ('the', 'O'), ('director', 'O'), ('of', 'O'), ('guidance', 'O'), ('at', 'O'), ('the', 'O'), ('Birch', 'ORGANIZATION'), ('Wathen', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Manhattan', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('husband', 'O'), (',', 'O'), ('an', 'O'), ('instructor', 'O'), ('at', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Washington', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('in', 'O'), ('St.', 'LOCATION'), ('Louis', 'LOCATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('philosophy', 'O'), ('from', 'O'), ('Columbia', 'LOCATION'), (',', 'O'), ('where', 'O'), ('he', 'O'), ('is', 'O'), ('studying', 'O'), ('for', 'O'), ('a', 'O'), ('Ph.D.', 'O'), ('degree', 'O'), ('in', 'O'), ('philosophy', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('and', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('board', 'O'), ('of', 'O'), ('Compuscan', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('image-processing', 'O'), ('systems', 'O'), ('manufacturer', 'O'), ('in', 'O'), ('Fairfield', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('.', 'O')), (('Sally', 'PERSON'), ('Joan', 'PERSON'), ('Placksin', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Edith', 'PERSON'), ('Chochlow', 'PERSON'), ('Placksin', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Samuel', 'PERSON'), ('Z.', 'PERSON'), ('Placksin', 'PERSON'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('James', 'PERSON'), ('Stephen', 'PERSON'), ('Luce', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Lawrence', 'PERSON'), ('Luce', 'PERSON'), ('of', 'O'), ('Falmouth', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Marguerite', 'PERSON'), ('Lumbert', 'PERSON'), ('Luce', 'PERSON'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('John', 'PERSON'), ('Garcia', 'PERSON'), ('Gensel', 'PERSON'), ('of', 'O'), ('St.', 'ORGANIZATION'), ('Peter', 'ORGANIZATION'), (\"'s\", 'O'), ('Lutheran', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('and', 'O'), ('Rabbi', 'R'), ('Burt', 'PERSON'), ('Aaron', 'PERSON'), ('Siegel', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Terrace', 'O'), ('Restaurant', 'O'), ('at', 'O'), ('Butler', 'ORGANIZATION'), ('Hall', 'ORGANIZATION'), ('in', 'O'), ('Manhattan', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retaining', 'O'), ('her', 'O'), ('name', 'O'), ('professionally', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('radio', 'O'), ('producer', 'O'), ('and', 'O'), ('the', 'O'), ('author', 'O'), ('of', 'O'), (\"''\", 'O'), ('American', 'O'), ('Women', 'O'), ('in', 'O'), ('Jazz', 'O'), (',', 'O'), ('1900', 'O'), ('to', 'O'), ('the', 'O'), ('Present', 'O'), (',', 'O'), (\"''\", 'O'), ('which', 'O'), ('was', 'O'), ('published', 'O'), ('in', 'O'), ('1982', 'O'), ('by', 'O'), ('WideviewPutnam', 'O'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('also', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Jazztour', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('travel', 'O'), ('concern', 'O'), ('of', 'O'), ('which', 'O'), ('the', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('president', 'O'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('the', 'O'), ('City', 'O'), ('College', 'O'), ('of', 'O'), ('the', 'O'), ('City', 'O'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('lawyer', 'O'), (',', 'O'), ('was', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Brotherhood', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Railway', 'ORGANIZATION'), ('and', 'ORGANIZATION'), ('Airline', 'ORGANIZATION'), ('Clerks', 'ORGANIZATION'), ('in', 'O'), ('Chicago', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Luce', 'PERSON'), (',', 'O'), ('also', 'O'), ('an', 'O'), ('announcer', 'O'), ('on', 'O'), ('WBGO-FM', 'O'), (',', 'O'), ('a', 'O'), ('jazz', 'O'), ('radio', 'O'), ('station', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Kimball', 'ORGANIZATION'), ('Union', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('in', 'O'), ('Meriden', 'LOCATION'), (',', 'O'), ('N.H.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Emerson', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('retired', 'O'), ('residential', 'O'), ('builder', 'O'), ('in', 'O'), ('Falmouth', 'LOCATION'), ('.', 'O')), (('Carolina', 'PERSON'), ('Somoza', 'PERSON'), (',', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Equitable', 'ORGANIZATION'), ('Investment', 'ORGANIZATION'), ('Management', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Dr.', 'PERSON'), ('James', 'PERSON'), ('Minskoff', 'PERSON'), ('Sterling', 'PERSON'), (',', 'O'), ('a', 'O'), ('clinical', 'O'), ('psychologist', 'O'), ('.', 'O'), ('Justice', 'O'), ('Thomas', 'PERSON'), ('J.', 'PERSON'), ('Hughes', 'PERSON'), ('of', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('Supreme', 'ORGANIZATION'), ('Court', 'ORGANIZATION'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Sherry', 'O'), ('Netherland', 'O'), ('Hotel', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Sterling', 'PERSON'), ('is', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Hope', 'PERSON'), ('Somoza', 'PERSON'), ('Baldocchi', 'PERSON'), ('of', 'O'), ('Key', 'LOCATION'), ('Biscayne', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Gen.', 'O'), ('Anastasio', 'PERSON'), ('Somoza', 'PERSON'), ('Debayle', 'PERSON'), ('of', 'O'), ('Managua', 'LOCATION'), (',', 'O'), ('Nicaragua', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Kent', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Wellesley', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('a', 'O'), ('former', 'O'), ('president', 'O'), ('of', 'O'), ('Nicaragua', 'LOCATION'), ('and', 'O'), ('had', 'O'), ('succeeded', 'O'), ('her', 'O'), ('grandfather', 'O'), (',', 'O'), ('the', 'O'), ('late', 'O'), ('Anastasio', 'PERSON'), ('Somoza', 'PERSON'), ('Garcia', 'PERSON'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('granddaughter', 'O'), ('also', 'O'), ('of', 'O'), ('the', 'O'), ('late', 'O'), ('Dr.', 'PERSON'), ('Nestor', 'PERSON'), ('Portocarreo', 'PERSON'), ('of', 'O'), ('Tampa', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('who', 'O'), ('was', 'O'), ('a', 'O'), ('gynecologist', 'O'), ('.', 'O'), ('Dr.', 'PERSON'), ('Sterling', 'PERSON'), (',', 'O'), ('who', 'O'), ('changed', 'O'), ('his', 'O'), ('name', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Henry', 'PERSON'), ('Minskoff', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('Harrison', 'PERSON'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Palm', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Minskoff', 'PERSON'), ('.', 'O'), ('He', 'O'), ('attended', 'O'), ('the', 'O'), ('Lyceum', 'O'), ('Alpinum', 'O'), ('in', 'O'), ('Zuoz', 'LOCATION'), (',', 'O'), ('Switzerland', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Phillips', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), (',', 'O'), ('attended', 'O'), ('Yale', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('California', 'ORGANIZATION'), ('at', 'O'), ('Berkeley', 'LOCATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('business', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('a', 'O'), ('doctorate', 'O'), ('in', 'O'), ('clinical', 'O'), ('psychology', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Chicago', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('was', 'O'), ('president', 'O'), ('of', 'O'), ('Sam', 'ORGANIZATION'), ('Minskoff', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Sons', 'ORGANIZATION'), (',', 'O'), ('the', 'O'), ('construction', 'O'), ('company', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('founded', 'O'), ('by', 'O'), ('the', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('grandfather', 'O'), ('in', 'O'), ('1908', 'O'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('previous', 'O'), ('marriage', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), (',', 'O'), ('as', 'O'), ('did', 'O'), ('the', 'O'), ('bride', 'B'), (\"'s\", 'O'), ('.', 'O')), (('Paula', 'PERSON'), ('Theda', 'PERSON'), ('Raider', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Dr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Louis', 'PERSON'), ('Raider', 'PERSON'), ('of', 'O'), ('Mobile', 'O'), (',', 'O'), ('Ala.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('yesterday', 'O'), ('to', 'O'), ('Dr.', 'PERSON'), ('John', 'PERSON'), ('James', 'PERSON'), ('Olichney', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Joseph', 'PERSON'), ('Olichney', 'PERSON'), ('of', 'O'), ('Spencer', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('Judge', 'O'), ('William', 'PERSON'), ('H.', 'PERSON'), ('Thom', 'PERSON'), ('of', 'O'), ('the', 'O'), ('Civil', 'O'), ('Court', 'O'), ('of', 'O'), ('the', 'O'), ('City', 'O'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('home', 'O'), ('of', 'O'), ('Jonathan', 'PERSON'), ('Dudley', 'PERSON'), ('and', 'O'), ('John', 'PERSON'), ('Andersen', 'PERSON'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Olichney', 'PERSON'), (',', 'O'), ('a', 'O'), ('flight', 'O'), ('attendant', 'O'), ('with', 'O'), ('Trans', 'ORGANIZATION'), ('World', 'ORGANIZATION'), ('Airlines', 'ORGANIZATION'), (',', 'O'), ('attended', 'O'), ('Newcomb', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Tulane', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('senior', 'O'), ('radiologist', 'O'), ('at', 'O'), ('Providence', 'LOCATION'), ('Hospital', 'LOCATION'), ('in', 'O'), ('Mobile', 'O'), ('and', 'O'), ('a', 'O'), ('clinical', 'O'), ('professor', 'O'), ('of', 'O'), ('radiology', 'O'), ('at', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('South', 'ORGANIZATION'), ('Alabama', 'ORGANIZATION'), ('.', 'O'), ('Dr.', 'PERSON'), ('Olichney', 'PERSON'), ('is', 'O'), ('a', 'O'), ('physician', 'O'), ('on', 'O'), ('the', 'O'), ('staff', 'O'), ('of', 'O'), ('Roosevelt', 'LOCATION'), ('Hospital', 'LOCATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('the', 'O'), ('general', 'O'), ('physician', 'O'), ('for', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Mets', 'ORGANIZATION'), ('and', 'O'), ('an', 'O'), ('assistant', 'O'), ('professor', 'O'), ('of', 'O'), ('medicine', 'O'), ('at', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Rutgers', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.D.', 'O'), ('degree', 'O'), ('from', 'O'), ('Union', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Albany', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('an', 'O'), ('organist', 'O'), ('and', 'O'), ('pianist', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retired', 'O'), ('music', 'O'), ('director', 'O'), ('of', 'O'), ('the', 'O'), ('Spencer', 'ORGANIZATION'), ('Central', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('formerly', 'O'), ('taught', 'O'), ('music', 'O'), ('at', 'O'), ('Ithaca', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('St.', 'ORGANIZATION'), ('Leo', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), ('and', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('previous', 'O'), ('marriages', 'O'), ('ended', 'O'), ('in', 'O'), ('divorce', 'D'), ('.', 'O')), (('Gail', 'PERSON'), ('Mitchell', 'PERSON'), ('Harrity', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Robert', 'PERSON'), ('Johnstone', 'PERSON'), ('Harrity', 'PERSON'), ('of', 'O'), ('Rosemont', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Sheldon', 'PERSON'), ('Tilney', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Norcross', 'PERSON'), ('Sheldon', 'PERSON'), ('Tilney', 'PERSON'), ('of', 'O'), ('Cedarhurst', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Palm', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Timothy', 'PERSON'), ('Pickering', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('the', 'O'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'O'), ('the', 'O'), ('Redeemer', 'O'), ('in', 'O'), ('Bryn', 'LOCATION'), ('Mawr', 'LOCATION'), (',', 'O'), ('Pa.', 'LOCATION'), ('.', 'O'), ('James', 'PERSON'), ('Weeks', 'PERSON'), ('Tilney', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('for', 'O'), ('his', 'O'), ('brother', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('retain', 'O'), ('her', 'O'), ('name', 'O'), ('professionally', 'O'), (',', 'O'), ('is', 'O'), ('the', 'O'), ('manager', 'O'), ('of', 'O'), ('purchasing', 'O'), ('for', 'O'), ('the', 'O'), ('Metropolitan', 'ORGANIZATION'), ('Museum', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Art', 'ORGANIZATION'), ('.', 'O'), ('A', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('Shipley', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Boston', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('she', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('management', 'O'), ('from', 'O'), ('Yale', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Philadelphia', 'ORGANIZATION'), ('National', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Tilney', 'PERSON'), (',', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Arab', 'ORGANIZATION'), ('Banking', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Deerfield', 'ORGANIZATION'), ('Academy', 'ORGANIZATION'), ('and', 'O'), ('Trinity', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Hartford', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('education', 'O'), ('from', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('from', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('formerly', 'O'), ('owned', 'O'), ('a', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('investment', 'O'), ('counseling', 'O'), ('service', 'O'), ('bearing', 'O'), ('his', 'O'), ('name', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('consultant', 'O'), ('.', 'O')), (('Linda', 'PERSON'), ('Susan', 'PERSON'), ('Rogers', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Susan', 'PERSON'), ('S.', 'PERSON'), ('Rogers', 'PERSON'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Thomas', 'PERSON'), ('W.', 'PERSON'), ('Rogers', 'PERSON'), ('of', 'O'), ('Ballston', 'ORGANIZATION'), ('Spa', 'ORGANIZATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Andrew', 'PERSON'), ('Safran', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Melvin', 'PERSON'), ('H.', 'PERSON'), ('Safran', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Ocean', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('Associate', 'O'), ('Justice', 'O'), ('Theodore', 'PERSON'), ('R.', 'PERSON'), ('Kupferman', 'PERSON'), ('of', 'O'), ('the', 'O'), ('Appellate', 'O'), ('Division', 'O'), (',', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Supreme', 'ORGANIZATION'), ('Court', 'ORGANIZATION'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('Harkness', 'ORGANIZATION'), ('House', 'ORGANIZATION'), (',', 'O'), ('4', 'O'), ('East', 'O'), ('75th', 'O'), ('Street', 'O'), ('.', 'O'), ('Dr.', 'PERSON'), ('Christine', 'PERSON'), ('R.', 'PERSON'), ('Kurland', 'PERSON'), ('was', 'O'), ('her', 'O'), ('sister', 'O'), (\"'s\", 'O'), ('matron', 'O'), ('of', 'O'), ('honor', 'O'), ('and', 'O'), ('Dr.', 'PERSON'), ('Charles', 'PERSON'), ('Safran', 'PERSON'), ('was', 'O'), ('his', 'O'), ('brother', 'O'), (\"'s\", 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Safran', 'PERSON'), (',', 'O'), ('manager', 'O'), ('of', 'O'), ('rights', 'O'), ('and', 'O'), ('permissions', 'O'), ('for', 'O'), ('Harper', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Row', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('Elmira', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('retired', 'O'), ('as', 'O'), ('an', 'O'), ('inspector', 'O'), ('for', 'O'), ('the', 'O'), ('Defense', 'ORGANIZATION'), ('Department', 'ORGANIZATION'), ('at', 'O'), ('the', 'O'), ('Knolls', 'ORGANIZATION'), ('Atomic', 'ORGANIZATION'), ('Power', 'ORGANIZATION'), ('Laboratory', 'ORGANIZATION'), ('in', 'O'), ('Schenectady', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('a', 'O'), ('registered', 'O'), ('nurse', 'O'), (',', 'O'), ('retired', 'O'), ('as', 'O'), ('a', 'O'), ('nursing', 'O'), ('instructor', 'O'), ('for', 'O'), ('a', 'O'), ('Board', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Cooperative', 'ORGANIZATION'), ('Education', 'ORGANIZATION'), ('Services', 'ORGANIZATION'), ('program', 'O'), ('in', 'O'), ('Saratoga', 'LOCATION'), ('Springs', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Safran', 'PERSON'), ('is', 'O'), ('a', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Chemical', 'ORGANIZATION'), ('Bank', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('was', 'O'), ('a', 'O'), ('consultant', 'O'), ('to', 'O'), ('the', 'O'), ('United', 'ORGANIZATION'), ('States', 'ORGANIZATION'), ('Embassy', 'ORGANIZATION'), ('in', 'O'), ('Bujumbura', 'LOCATION'), (',', 'O'), ('Burundi', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Taft', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Tufts', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('international', 'O'), ('economics', 'O'), ('from', 'O'), ('its', 'O'), ('Fletcher', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('and', 'O'), ('Diplomacy', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('founding', 'O'), ('partner', 'O'), ('of', 'O'), ('Safran', 'ORGANIZATION'), ('Brothers', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('realty', 'O'), ('developer', 'O'), ('in', 'O'), ('Edison', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Nan', 'PERSON'), ('Safran', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('saleswoman', 'O'), ('for', 'O'), ('Tiffany', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O')), (('At', 'O'), ('St.', 'ORGANIZATION'), ('James', 'ORGANIZATION'), (\"'\", 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('Upper', 'LOCATION'), ('Montclair', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('yesterday', 'O'), ('Hilary', 'PERSON'), ('Frances', 'PERSON'), ('Mills', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('James', 'PERSON'), ('T.', 'PERSON'), ('Mills', 'PERSON'), ('of', 'O'), ('Upper', 'LOCATION'), ('Montclair', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('to', 'O'), ('Brian', 'PERSON'), ('John', 'PERSON'), ('Lambert', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Maura', 'PERSON'), ('Curran', 'PERSON'), ('Lambert', 'PERSON'), ('and', 'O'), ('Robert', 'PERSON'), ('Lambert', 'PERSON'), (',', 'O'), ('both', 'O'), ('of', 'O'), ('Cleveland', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Frederick', 'PERSON'), ('J.', 'PERSON'), ('Warnecke', 'PERSON'), (',', 'O'), ('an', 'O'), ('Episcopal', 'LOCATION'), ('priest', 'R'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), (',', 'O'), ('assisted', 'O'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Clarence', 'PERSON'), ('Chambers', 'PERSON'), (',', 'O'), ('a', 'O'), ('Roman', 'O'), ('Catholic', 'O'), ('priest', 'R'), ('and', 'O'), ('cousin', 'O'), ('of', 'O'), ('the', 'O'), ('bridegroom', 'G'), ('.', 'O'), ('Elizabeth', 'PERSON'), ('Ritchie', 'PERSON'), ('Mills', 'PERSON'), ('was', 'O'), ('maid', 'O'), ('of', 'O'), ('honor', 'O'), ('for', 'O'), ('her', 'O'), ('sister', 'O'), ('and', 'O'), ('John', 'PERSON'), ('Price', 'PERSON'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('graphics', 'O'), ('designer', 'O'), ('for', 'O'), ('Activision', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('computer', 'O'), ('software', 'O'), ('company', 'O'), ('in', 'O'), ('Mountain', 'LOCATION'), ('View', 'LOCATION'), (',', 'O'), ('Calif.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('formerly', 'O'), ('a', 'O'), ('computer', 'O'), ('art', 'O'), ('designer', 'O'), ('for', 'O'), ('the', 'O'), ('Children', 'O'), (\"'s\", 'O'), ('Television', 'O'), ('Workshop', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Northfield', 'ORGANIZATION'), ('Mount', 'ORGANIZATION'), ('Hermon', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Ithaca', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('communications', 'O'), ('design', 'O'), ('from', 'O'), ('Pratt', 'ORGANIZATION'), ('Institute', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Conference', 'ORGANIZATION'), ('Board', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('international', 'O'), ('business', 'O'), ('research', 'O'), ('organization', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Lambert', 'PERSON'), (',', 'O'), ('a', 'O'), ('government', 'O'), ('bond', 'O'), ('broker', 'O'), ('for', 'O'), ('Kenney', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Branisel', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('San', 'LOCATION'), ('Francisco', 'LOCATION'), (',', 'O'), ('formerly', 'O'), ('was', 'O'), ('a', 'O'), ('City', 'O'), ('Councilman', 'O'), ('in', 'O'), ('Cleveland', 'LOCATION'), ('.', 'O'), ('He', 'O'), ('graduated', 'O'), ('from', 'O'), ('Cleveland', 'ORGANIZATION'), ('State', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('he', 'O'), ('also', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('urban', 'O'), ('planning', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('business', 'O'), ('consultant', 'O'), ('in', 'O'), ('Cleveland', 'LOCATION'), ('.', 'O')), (('In', 'O'), ('the', 'O'), ('Presbyterian', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Mount', 'ORGANIZATION'), ('Kisco', 'ORGANIZATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('yesterday', 'O'), ('Anne', 'PERSON'), ('Edwards', 'PERSON'), ('Paddock', 'PERSON'), ('was', 'O'), ('married', 'O'), ('to', 'O'), ('Andrew', 'PERSON'), ('Lawrence', 'PERSON'), ('Schieffelin', 'PERSON'), ('by', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Jack', 'PERSON'), ('Silvey', 'PERSON'), ('Miller', 'PERSON'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('Annin', 'PERSON'), ('Paddock', 'PERSON'), ('of', 'O'), ('Charlottesville', 'LOCATION'), (',', 'O'), ('Va.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Vinalhaven', 'LOCATION'), (',', 'O'), ('Me', 'O'), ('.', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('Paddock', 'PERSON'), ('of', 'O'), ('Katonah', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('had', 'O'), ('Rosemary', 'PERSON'), ('Fischer', 'PERSON'), ('as', 'O'), ('matron', 'O'), ('of', 'O'), ('honor', 'O'), ('.', 'O'), ('Her', 'O'), ('attendants', 'O'), ('included', 'O'), ('Alexis', 'PERSON'), ('Belinda', 'PERSON'), ('Schieffelin', 'PERSON'), (',', 'O'), ('sister-in-law', 'O'), ('of', 'O'), ('the', 'O'), ('bridegroom', 'G'), (',', 'O'), ('and', 'O'), ('Hope', 'PERSON'), ('Schieffelin', 'PERSON'), ('Dooley', 'PERSON'), (',', 'O'), ('the', 'O'), ('bridegroom', 'G'), (\"'s\", 'O'), ('sister', 'O'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('Jay', 'PERSON'), ('Schieffelin', 'PERSON'), ('3d', 'O'), ('of', 'O'), ('Mount', 'LOCATION'), ('Kisco', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('consultant', 'O'), ('and', 'O'), ('former', 'O'), ('chairman', 'O'), ('of', 'O'), ('the', 'O'), ('board', 'O'), ('of', 'O'), ('Schieffelin', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('the', 'O'), ('wine', 'O'), ('and', 'O'), ('spirit', 'O'), ('importers', 'O'), (',', 'O'), ('served', 'O'), ('as', 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('the', 'O'), ('Cisqua', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Mount', 'LOCATION'), ('Kisco', 'LOCATION'), (',', 'O'), ('the', 'O'), ('Darrow', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('Lebanon', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Boston', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('descendant', 'O'), ('of', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Jonathan', 'PERSON'), ('Edwards', 'PERSON'), ('and', 'O'), ('the', 'O'), ('Rev.', 'R'), ('Timothy', 'PERSON'), ('Dwight', 'PERSON'), ('.', 'O'), ('Her', 'O'), ('mother', 'O'), (',', 'O'), ('Trudy', 'PERSON'), ('Paddock', 'PERSON'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('painter', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('an', 'O'), ('editor', 'O'), ('of', 'O'), ('the', 'O'), ('old', 'O'), ('International', 'ORGANIZATION'), ('News', 'ORGANIZATION'), ('Service', 'ORGANIZATION'), (',', 'O'), ('later', 'O'), ('served', 'O'), ('as', 'O'), ('public', 'O'), ('relations', 'O'), ('director', 'O'), ('of', 'O'), ('T.', 'ORGANIZATION'), ('J.', 'ORGANIZATION'), ('Ross', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('maternal', 'O'), ('grandfather', 'O'), (',', 'O'), ('the', 'O'), ('late', 'O'), ('William', 'PERSON'), ('Woodburn', 'PERSON'), ('Potter', 'PERSON'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('Philadelphia', 'LOCATION'), ('architect', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Schieffelin', 'PERSON'), (',', 'O'), ('a', 'O'), ('descendant', 'O'), ('of', 'O'), ('Commodore', 'ORGANIZATION'), ('Cornelius', 'ORGANIZATION'), ('Vanderbilt', 'ORGANIZATION'), (',', 'O'), ('the', 'O'), ('railroad', 'O'), ('magnate', 'O'), (',', 'O'), ('and', 'O'), ('of', 'O'), ('John', 'PERSON'), ('Jay', 'PERSON'), (',', 'O'), ('first', 'O'), ('Chief', 'O'), ('Justice', 'O'), ('of', 'O'), ('the', 'O'), ('United', 'LOCATION'), ('States', 'LOCATION'), (',', 'O'), ('attended', 'O'), ('the', 'O'), ('Bedford-Rippowam', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Bedford', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('graduated', 'O'), ('from', 'O'), ('New', 'ORGANIZATION'), ('England', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Henniker', 'LOCATION'), (',', 'O'), ('N.H.', 'LOCATION'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('sales', 'O'), ('representative', 'O'), ('for', 'O'), ('Eddie', 'ORGANIZATION'), ('Bauer', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('expedition', 'O'), ('outfitter', 'O'), (',', 'O'), ('in', 'O'), ('Stamford', 'LOCATION'), (',', 'O'), ('Conn.', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('grandson', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Schieffelin', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('and', 'O'), ('Ashville', 'LOCATION'), (',', 'O'), ('Me.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('Ross', 'PERSON'), ('Proctor', 'PERSON'), ('of', 'O'), ('Pittstown', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Eldred', 'PERSON'), (',', 'O'), ('N.Y.', 'LOCATION')), (('The', 'O'), ('marriage', 'O'), ('of', 'O'), ('Judith', 'PERSON'), ('Hidden', 'PERSON'), ('Lanius', 'PERSON'), (',', 'O'), ('head', 'O'), ('of', 'O'), ('the', 'O'), ('exhibition', 'O'), ('and', 'O'), ('film', 'O'), ('division', 'O'), ('at', 'O'), ('the', 'O'), ('National', 'ORGANIZATION'), ('Building', 'ORGANIZATION'), ('Museum', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), (',', 'O'), ('to', 'O'), ('Robert', 'PERSON'), ('M.', 'PERSON'), ('Sussman', 'PERSON'), (',', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('the', 'O'), ('Washington', 'LOCATION'), ('law', 'O'), ('firm', 'O'), ('of', 'O'), ('Covington', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Burling', 'ORGANIZATION'), (',', 'O'), ('took', 'O'), ('place', 'O'), ('yesterday', 'O'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Robert', 'PERSON'), ('L.', 'PERSON'), ('Tate', 'PERSON'), (',', 'O'), ('an', 'O'), ('Episcopal', 'LOCATION'), ('priest', 'R'), (',', 'O'), ('and', 'O'), ('Cantor', 'PERSON'), ('Siegfried', 'PERSON'), ('Rowe', 'PERSON'), ('co-officiated', 'O'), ('at', 'O'), ('the', 'O'), ('Sulgrave', 'ORGANIZATION'), ('Club', 'ORGANIZATION'), ('in', 'O'), ('Washington', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('keep', 'O'), ('her', 'O'), ('name', 'O'), ('professionally', 'O'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Paul', 'PERSON'), ('Baxter', 'PERSON'), ('Lanius', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Denver', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Madeira', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('Boston', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('from', 'O'), ('which', 'O'), ('she', 'O'), ('also', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('art', 'O'), ('history', 'O'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('a', 'O'), ('retired', 'O'), ('Foreign', 'ORGANIZATION'), ('Service', 'ORGANIZATION'), ('officer', 'O'), (',', 'O'), ('was', 'O'), ('United', 'LOCATION'), ('States', 'LOCATION'), ('consul', 'O'), ('general', 'O'), ('in', 'O'), ('Turin', 'LOCATION'), (',', 'O'), ('Italy', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('grandfather', 'O'), (',', 'O'), ('the', 'O'), ('late', 'O'), ('William', 'PERSON'), ('F.', 'PERSON'), ('Wyman', 'PERSON'), ('of', 'O'), ('Augusta', 'LOCATION'), (',', 'O'), ('Me.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('chairman', 'O'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('the', 'O'), ('Central', 'ORGANIZATION'), ('Maine', 'ORGANIZATION'), ('Power', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Sussman', 'PERSON'), (',', 'O'), ('the', 'O'), ('son', 'O'), ('of', 'O'), ('Gertrude', 'PERSON'), ('Sussman', 'PERSON'), ('of', 'O'), ('Silver', 'O'), ('Spring', 'O'), (',', 'O'), ('Md.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Nathan', 'PERSON'), ('Sussman', 'PERSON'), ('of', 'O'), ('Hicksville', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Yale', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('a', 'O'), ('J.D.', 'O'), ('degreee', 'O'), ('from', 'O'), ('the', 'O'), ('Yale', 'ORGANIZATION'), ('Law', 'ORGANIZATION'), ('School', 'ORGANIZATION'), (',', 'O'), ('where', 'O'), ('he', 'O'), ('was', 'O'), ('an', 'O'), ('editor', 'O'), ('of', 'O'), ('The', 'O'), ('Law', 'O'), ('Journal', 'O'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('chief', 'O'), ('engineer', 'O'), ('of', 'O'), ('the', 'O'), ('Fire', 'ORGANIZATION'), ('Burglary', 'ORGANIZATION'), ('Instrument', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Hauppauge', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), ('Joan', 'PERSON'), ('Lanius-Nichol', 'PERSON'), ('was', 'O'), ('matron', 'O'), ('of', 'O'), ('honor', 'O'), ('for', 'O'), ('her', 'O'), ('sister', 'O'), ('and', 'O'), ('Ralph', 'PERSON'), ('Arditi', 'PERSON'), ('the', 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O')), (('At', 'O'), ('Temple', 'ORGANIZATION'), ('Emanuel', 'ORGANIZATION'), ('in', 'O'), ('Andover', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('yesterday', 'O'), ('Robin', 'PERSON'), ('Leigh', 'PERSON'), ('Klinetsky', 'PERSON'), (',', 'O'), ('a', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('George', 'PERSON'), ('Klinetsky', 'PERSON'), ('of', 'O'), ('Atkinson', 'LOCATION'), (',', 'O'), ('N.H.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Boca', 'LOCATION'), ('Raton', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('to', 'O'), ('Bruce', 'PERSON'), ('Stephen', 'PERSON'), ('Maier', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Arthur', 'PERSON'), ('I.', 'PERSON'), ('Maier', 'PERSON'), ('of', 'O'), ('Scarsdale', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), ('Rabbis', 'O'), ('Ira', 'LOCATION'), ('Korinow', 'LOCATION'), ('and', 'O'), ('Harry', 'PERSON'), ('A.', 'PERSON'), ('Roth', 'PERSON'), ('officiated', 'O'), ('.', 'O'), ('Jodi', 'PERSON'), ('Patricia', 'PERSON'), ('Klinetsky', 'PERSON'), ('and', 'O'), ('Elaine', 'PERSON'), ('K.', 'PERSON'), ('McGuire', 'PERSON'), ('were', 'O'), ('maid', 'O'), ('and', 'O'), ('matron', 'O'), ('of', 'O'), ('honor', 'O'), ('for', 'O'), ('their', 'O'), ('sister', 'O'), ('.', 'O'), ('Peter', 'PERSON'), ('Sternberg', 'PERSON'), ('was', 'O'), ('best', 'O'), ('man', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('an', 'O'), ('alumna', 'O'), ('of', 'O'), ('the', 'O'), ('Chapel', 'ORGANIZATION'), ('Hill', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('in', 'O'), ('Waltham', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Lesley', 'ORGANIZATION'), ('College', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('a', 'O'), ('master', 'O'), (\"'s\", 'O'), ('degree', 'O'), ('in', 'O'), ('social', 'O'), ('work', 'O'), ('from', 'O'), ('Simmons', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('May', 'O'), ('.', 'O'), ('She', 'O'), ('is', 'O'), ('a', 'O'), ('psychiatric', 'O'), ('social', 'O'), ('worker', 'O'), ('at', 'O'), ('the', 'O'), ('Children', 'O'), (\"'s\", 'O'), ('Aid', 'O'), ('and', 'O'), ('Family', 'ORGANIZATION'), ('Society', 'ORGANIZATION'), ('in', 'O'), ('Haverhill', 'LOCATION'), (',', 'O'), ('Mass.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('founder', 'O'), ('and', 'O'), ('president', 'O'), ('of', 'O'), ('Gare', 'ORGANIZATION'), ('Inc.', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('manufacturer', 'O'), ('of', 'O'), ('ceramic', 'O'), ('products', 'O'), ('in', 'O'), ('Haverhill', 'LOCATION'), (',', 'O'), ('for', 'O'), ('which', 'O'), ('her', 'O'), ('mother', 'O'), (',', 'O'), ('Alma', 'PERSON'), ('Klinetsky', 'PERSON'), (',', 'O'), ('also', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('design', 'O'), ('consultant', 'O'), ('.', 'O'), ('Mr.', 'PERSON'), ('Maier', 'PERSON'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Loomis', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('magna', 'O'), ('cum', 'O'), ('laude', 'O'), ('from', 'O'), ('Tufts', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('Harvard', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('in', 'O'), ('June', 'O'), ('.', 'O'), ('He', 'O'), ('is', 'O'), ('a', 'O'), ('manager', 'O'), ('at', 'O'), ('Bourgeois', 'ORGANIZATION'), ('Fils', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('private', 'O'), ('investment', 'O'), ('banking', 'O'), ('house', 'O'), ('in', 'O'), ('Exeter', 'LOCATION'), (',', 'O'), ('N.H.', 'LOCATION'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('K', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('M', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), (',', 'O'), ('a', 'O'), ('costume', 'O'), ('jewelry', 'O'), ('wholesaler', 'O'), ('in', 'O'), ('Pawtucket', 'LOCATION'), (',', 'O'), ('R.I.', 'LOCATION'), ('His', 'O'), ('mother', 'O'), (',', 'O'), ('Susan', 'PERSON'), ('Maier', 'PERSON'), (',', 'O'), ('is', 'O'), ('director', 'O'), ('of', 'O'), ('legal', 'O'), ('recruitment', 'O'), ('at', 'O'), ('Marc', 'ORGANIZATION'), ('Nichols', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), (',', 'O'), ('an', 'O'), ('executive', 'O'), ('search', 'O'), ('firm', 'O'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('bridegroom', 'G'), ('is', 'O'), ('a', 'O'), ('great-great', 'O'), ('-', 'O'), ('grandson', 'O'), ('of', 'O'), ('Joseph', 'PERSON'), ('B.', 'PERSON'), ('Bloomingdale', 'PERSON'), (',', 'O'), ('co-founder', 'O'), ('with', 'O'), ('his', 'O'), ('brother', 'O'), (',', 'O'), ('Lyman', 'PERSON'), ('G.', 'PERSON'), ('Bloomingdale', 'PERSON'), (',', 'O'), ('of', 'O'), ('Bloomingdale', 'ORGANIZATION'), (\"'s\", 'O'), (',', 'O'), ('the', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('department', 'O'), ('store', 'O'), ('.', 'O')), (('St.', 'ORGANIZATION'), ('Paul', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('Chapel', 'ORGANIZATION'), ('at', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('was', 'O'), ('the', 'O'), ('setting', 'O'), ('yesterday', 'O'), ('for', 'O'), ('the', 'O'), ('marriage', 'O'), ('of', 'O'), ('Denise', 'PERSON'), ('Mary', 'PERSON'), ('Svatos', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Gerald', 'PERSON'), ('Charles', 'PERSON'), ('Svatos', 'PERSON'), ('of', 'O'), ('Atlanta', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Henry', 'PERSON'), ('Hoen', 'PERSON'), ('Thomas', 'PERSON'), ('Jr.', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Thomas', 'PERSON'), ('of', 'O'), ('Fair', 'LOCATION'), ('Haven', 'LOCATION'), (',', 'O'), ('N.J.', 'LOCATION'), ('The', 'O'), ('Rev.', 'R'), ('Paul', 'PERSON'), ('Dinter', 'PERSON'), (',', 'O'), ('a', 'O'), ('Roman', 'O'), ('Catholic', 'O'), ('priest', 'R'), (',', 'O'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('will', 'O'), ('retain', 'O'), ('her', 'O'), ('name', 'O'), (',', 'O'), ('is', 'O'), ('manager', 'O'), ('of', 'O'), ('fuel', 'O'), ('contracts', 'O'), ('for', 'O'), ('Trans', 'ORGANIZATION'), ('World', 'ORGANIZATION'), ('Airlines', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('She', 'O'), ('attended', 'O'), ('St.', 'ORGANIZATION'), ('Mary', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('Dominican', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('Orleans', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Georgia', 'ORGANIZATION'), ('and', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('the', 'O'), ('Wharton', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('the', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Pennsylvania', 'ORGANIZATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('retired', 'O'), ('from', 'O'), ('the', 'O'), ('sales', 'O'), ('division', 'O'), ('of', 'O'), ('the', 'O'), ('Campbell', 'ORGANIZATION'), ('Soup', 'ORGANIZATION'), ('Company', 'ORGANIZATION'), ('in', 'O'), ('Atlanta', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Thomas', 'PERSON'), (',', 'O'), ('an', 'O'), ('architect', 'O'), ('for', 'O'), ('Dworsky', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), ('in', 'O'), ('Los', 'LOCATION'), ('Angeles', 'LOCATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('graduate', 'O'), ('of', 'O'), ('Brown', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('and', 'O'), ('the', 'O'), ('Columbia', 'ORGANIZATION'), ('University', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Architecture', 'ORGANIZATION'), ('.', 'O'), ('He', 'O'), ('also', 'O'), ('received', 'O'), ('an', 'O'), ('M.B.A.', 'O'), ('degree', 'O'), ('from', 'O'), ('Wharton', 'LOCATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), (',', 'O'), ('who', 'O'), ('is', 'O'), ('retired', 'O'), (',', 'O'), ('was', 'O'), ('a', 'O'), ('ceramic', 'O'), ('engineer', 'O'), ('for', 'O'), ('the', 'O'), ('Mobay', 'ORGANIZATION'), ('Chemical', 'ORGANIZATION'), ('Corporation', 'ORGANIZATION'), ('in', 'O'), ('Pittsburgh', 'LOCATION'), ('.', 'O')), (('Susan', 'PERSON'), ('Comey', 'PERSON'), ('Dayton', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mrs.', 'PERSON'), ('Frederick', 'PERSON'), ('H.', 'PERSON'), ('Owen', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('East', 'LOCATION'), ('Hampton', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('Vero', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('Fla.', 'LOCATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('late', 'O'), ('Daniel', 'PERSON'), ('L.', 'PERSON'), ('Dayton', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Upper', 'LOCATION'), ('Brookville', 'LOCATION'), (',', 'O'), ('L.I.', 'LOCATION'), (',', 'O'), ('was', 'O'), ('married', 'O'), ('yesterday', 'O'), ('to', 'O'), ('Martin', 'PERSON'), ('Orlo', 'PERSON'), ('Olive', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Orlo', 'PERSON'), ('Francis', 'PERSON'), ('Olive', 'PERSON'), ('of', 'O'), ('Corning', 'O'), (',', 'O'), ('Iowa', 'LOCATION'), ('.', 'O'), ('The', 'O'), ('Rev.', 'R'), ('Francis', 'PERSON'), ('Creamer', 'PERSON'), ('performed', 'O'), ('the', 'O'), ('ceremony', 'O'), ('at', 'O'), ('St.', 'ORGANIZATION'), ('Luke', 'ORGANIZATION'), (\"'s\", 'ORGANIZATION'), ('Episcopal', 'ORGANIZATION'), ('Church', 'ORGANIZATION'), ('in', 'O'), ('East', 'LOCATION'), ('Hampton', 'LOCATION'), ('.', 'O'), ('Mrs.', 'PERSON'), ('Olive', 'PERSON'), (',', 'O'), ('the', 'O'), ('owner', 'O'), ('of', 'O'), ('Soup', 'O'), ('to', 'O'), ('Nuts', 'O'), (',', 'O'), ('a', 'O'), ('catering', 'O'), ('concern', 'O'), ('in', 'O'), ('East', 'O'), ('Hampton', 'O'), ('and', 'O'), ('Vero', 'LOCATION'), ('Beach', 'LOCATION'), (',', 'O'), ('graduated', 'O'), ('from', 'O'), ('the', 'O'), ('Foxcroft', 'ORGANIZATION'), ('School', 'ORGANIZATION'), ('and', 'O'), ('attended', 'O'), ('Windham', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('in', 'O'), ('Putney', 'LOCATION'), (',', 'O'), ('Vt.', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('was', 'O'), ('an', 'O'), ('executive', 'O'), ('vice', 'O'), ('president', 'O'), ('of', 'O'), ('Cushman', 'ORGANIZATION'), ('&', 'ORGANIZATION'), ('Wakefield', 'ORGANIZATION'), ('in', 'O'), ('New', 'LOCATION'), ('York', 'LOCATION'), ('.', 'O'), ('Mr.', 'PERSON'), ('Olive', 'PERSON'), (',', 'O'), ('a', 'O'), ('partner', 'O'), ('in', 'O'), ('Construction', 'ORGANIZATION'), ('Associates', 'ORGANIZATION'), ('in', 'O'), ('East', 'LOCATION'), ('Hampton', 'LOCATION'), (',', 'O'), ('is', 'O'), ('an', 'O'), ('alumnus', 'O'), ('of', 'O'), ('Harvard', 'ORGANIZATION'), ('College', 'ORGANIZATION'), ('.', 'O'), ('His', 'O'), ('father', 'O'), ('is', 'O'), ('the', 'O'), ('owner', 'O'), ('of', 'O'), ('Olive', 'O'), ('Farms', 'O'), (',', 'O'), ('a', 'O'), ('dairy', 'O'), ('concern', 'O'), ('in', 'O'), ('Corning', 'O'), (',', 'O'), ('Iowa', 'LOCATION'), ('.', 'O')), (('The', 'O'), ('marriage', 'O'), ('of', 'O'), ('Karen', 'PERSON'), ('Jill', 'PERSON'), ('Rossman', 'PERSON'), (',', 'O'), ('the', 'O'), ('daughter', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('Jerome', 'PERSON'), ('I.', 'PERSON'), ('Rossman', 'PERSON'), ('Jr.', 'PERSON'), ('of', 'O'), ('Scarsdale', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('to', 'O'), ('Douglas', 'PERSON'), ('Goldsmith', 'PERSON'), ('Kaufman', 'PERSON'), (',', 'O'), ('a', 'O'), ('son', 'O'), ('of', 'O'), ('Mr.', 'PERSON'), ('and', 'O'), ('Mrs.', 'PERSON'), ('William', 'PERSON'), ('E.', 'PERSON'), ('Kaufman', 'PERSON'), ('of', 'O'), ('Armonk', 'LOCATION'), (',', 'O'), ('N.Y.', 'LOCATION'), (',', 'O'), ('took', 'O'), ('place', 'O'), ('yesterday', 'O'), ('at', 'O'), ('the', 'O'), ('Sunningdale', 'ORGANIZATION'), ('Country', 'ORGANIZATION'), ('Club', 'ORGANIZATION'), ('in', 'O'), ('Scarsdale', 'LOCATION'), ('.', 'O'), ('Rabbi', 'R'), ('Maurice', 'PERSON'), ('Davis', 'PERSON'), ('officiated', 'O'), ('.', 'O'), ('The', 'O'), ('bride', 'B'), (',', 'O'), ('who', 'O'), ('graduated', 'O'), ('from', 'O'), ('Syracuse', 'ORGANIZATION'), ('University', 'ORGANIZATION'), (',', 'O'), ('is', 'O'), ('a', 'O'), ('wine', 'O'), ('saleswoman', 'O'), ('with', 'O'), ('Peerless', 'O'), ('Importers', 'O'), ('in', 'O'), ('Brooklyn', 'LOCATION'), ('.', 'O'), ('Her', 'O'), ('father', 'O'), ('is', 'O'), ('a', 'O'), ('vice', 'O'),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment