*-------------------------------------------------------------------------* | | | SAS DATA DEFINITION STATEMENTS FOR ICPSR 8908 | | 'Study of Consumer Purchases in the United States 1935-36' | | ('PARTS 3-4: Income and expenditure data') | | '2nd ICPSR EDITION' | | 'April, 1999' | | | | PROC FORMAT: creates user-defined formats for the variables. Formats | | replace original value codes with value code descriptions. Not all | | variables necessarily have user-defined formats. | | | | DATA: begins a SAS data step and names an output SAS data set. | | | | INFILE: identifies the input file to be read with the input statement. | | Users must replace the "physical-filename" with host computer specific | | input file specifications. | | | | INPUT: assigns the name, type, decimal specification (if any), and | | specifies the beginning and ending column locations for each variable | | in the data file. | | | | FORMAT: associates the formats created by the PROC FORMAT step with | | the variables named in the INPUT statement. | | | | NOTE: Users should modify these data definition statements to suit | | their specific needs. PROC FORMAT and FORMAT sections have been | | marked by SAS comment statements. To include these sections in a | | final SAS setup, users should remove the SAS comment statements | | from the desired section(s). | | | | These data definition statements have been tested for compatability | | with SAS Release 6.11 for UNIX and/or SAS Release 6.11 for Windows. | | | *-------------------------------------------------------------------------; * SAS PROC FORMAT; PROC FORMAT; VALUE V1FT (MAX=40) 8908 = "ICPSR Study Number"; VALUE V2FT (MAX=40) 1 = "February, 1991 Release" 2 = "April, 1999 Release"; VALUE V3FT (MAX=40) 3 = "Urban matched income/expense/food/fur" 4 = "Rural matched income/expense/food/fur"; VALUE V9FT (MAX=40) 99 = "No family member data for this family"; VALUE V10FT (MAX=40) 0 = "No reply/Not applicable" 1 = "Avon, MA" 2 = "East Bridgewater, MA" 3 = "Hebronville, MA" 4 = "Kingston, MA" 5 = "North Easton, MA" 6 = "North Dighton, MA" 10 = "Essex Junction, VT" 11 = "Northfield, VT" 12 = "Richford, VT" 13 = "Swanton, VT" 15 = "Atlanta, IL" 16 = "Bement, IL" 17 = "Cerro Gordo, IL" 18 = "Farmer City, IL" 19 = "Maroa, IL" 20 = "Monticello, IL" 21 = "Mount Pulaski, IL" 22 = "Tuscola, IL" 23 = "Brooklyn, IA" 24 = "Bussey, IA" 25 = "Dallas, IA" 26 = "Earlham, IA" 28 = "Melcher, IA" 29 = "Montezuma, IA" 30 = "New Sharon, IA" 31 = "Pleasantville, IA" 32 = "State Center, IA" 33 = "Victor, IA" 34 = "Blissfield, MI" 35 = "Chelsea, MI" 36 = "Concord, MI" 37 = "Grass Lake, MI" 38 = "Hudson, MI" 39 = "Jonesville, MI" 40 = "Parma, MI" 41 = "Tecumseh, MI" 42 = "Bellville, OH" 43 = "Cardington, OH" 44 = "Fredericktown, OH" 45 = "Mount Gilead, OH" 47 = "Plymouth, OH" 48 = "Denver, PA" 49 = "Marietta, PA" 50 = "New Freedom, PA" 51 = "New Holland, PA" 52 = "Quarryville, PA" 53 = "Spring Grove, PA" 54 = "Wrightsville, PA" 55 = "Horicon, WI" 56 = "Lake Mills, WI" 57 = "Mayville, WI" 58 = "Mount Horeb, WI" 59 = "Sun Praire, WI" 60 = "Waterloo, WI" 61 = "Comer, GA" 62 = "Commerce, GA" 63 = "Greensboro, GA" 64 = "Jefferson, GA" 65 = "Madison, GA" 66 = "Social Circle, GA" 67 = "Washington, GA" 68 = "Winder, GA" 69 = "Drew, MS" 70 = "Hollandale, MS" 71 = "Indianola, MS" 72 = "Itta Bena, MS" 73 = "Leland, MS" 74 = "Moorhead, MS" 75 = "Mound Bayou, MS" 76 = "Rosedale, MS" 77 = "Rubeville, MS" 78 = "Shaw, MS" 79 = "Shelby, MS" 80 = "Elm City, NC" 81 = "Franklinton, NC" 82 = "Louisberg, NC" 83 = "Nashville, NC" 84 = "Spring Hope, NC" 85 = "Wake Forest, NC" 86 = "Whitakers, NC" 87 = "Zebulon, NC" 88 = "Bishopsville, SC" 89 = "Camden, SC" 90 = "Lake City, SC" 91 = "Lamar, SC" 92 = "Manning, SC" 93 = "Summerton, SC" 94 = "Timmonsville, SC" 95 = "Glenwood Springs, CO" 96 = "Meeker, CO" 97 = "Red Cliff, CO" 98 = "Rifle, CO" 99 = "Bucklin, KS" 100 = "Cimarron, KS" 101 = "Fowler, KS" 102 = "Kinsley, KS" 103 = "Meade, KS" 104 = "Spearville, KS" 105 = "Forsyth, MT" 106 = "Casselton, ND" 107 = "Cooperstown, ND" 108 = "Finley, ND" 109 = "Hatton, ND" 110 = "Hillsboro, ND" 111 = "Hope, ND" 112 = "Lidgerwood, ND" 113 = "Mayville, ND" 114 = "Portland, ND" 115 = "Belle Fourche, SD" 116 = "Sturgis, SD" 117 = "Beaumont, CA" 118 = "Brea, CA" 119 = "Ceres, CA" 120 = "Elsinore, CA" 121 = "Hemet, CA" 122 = "La Habra, CA" 123 = "Manteca, CA" 124 = "Newman, CA" 125 = "Oakdale, CA" 126 = "Placentia, CA" 127 = "San Jacinto, CA" 128 = "Tustin, CA" 129 = "McMinnville, OR" 130 = "Newberg, OR" 131 = "Sheridan, OR" 132 = "Silverton, OR" 133 = "Woodburn, OR" 134 = "Arlington, WA" 135 = "Blaine, WA" 136 = "Burlington, WA" 137 = "Lynden, WA" 138 = "Marysville, WA" 139 = "Monroe, WA" 140 = "Snohomish, WA" 141 = "Astoria, OR" 150 = "Albany, NY" 200 = "Atlanta, GA" 201 = "Beaver Dam, WI" 202 = "Beres, CA" 204 = "Boone, IA" 205 = "Bryantville, MA" 209 = "Clark Center, IA" 210 = "Columbia, MO" 211 = "Dodge City, KS" 213 = "Eugene, OR" 215 = "Frebektor, OH" 217 = "Greeley, CO" 218 = "Greenfield, MA" 219 = "Griffin, GA" 221 = "Hanson, MA" 225 = "Klamath, OR" 226 = "Klamath Falls, OR" 227 = "Laurinburg, NC" 228 = "Lincoln, IL" 229 = "Little Bena, MS" 230 = "Logan, UT" 233 = "Minder, GA" 234 = "Moberly, MO" 237 = "Mount Vernon, OH" 240 = "New Philadelphia, OH" 242 = "Olympia, WA" 243 = "Provo, UT" 245 = "Raynham, MA" 249 = "Shelley, MS" 253 = "Sumter, SC" 255 = "Westbrook, ME" 258 = "Simmonsville, SC" 350 = "Aberdeen-Hoquiam, WA" 450 = "Beaver Falls, PA" 550 = "Bellingham, WA" 650 = "Billings, MT" 1100 = "Butte, MT" 1150 = "Columbia, SC" 1800 = "Chicago, IL" 1850 = "Connellsville, PA" 2200 = "Columbus, OH" 2800 = "Denver, CO" 2850 = "Dubuque, IA" 3700 = "Everett, WA" 3750 = "Gastonia, NC" 3850 = "Haverhill, MA" 3950 = "Logansport, IN" 4050 = "Mattoon, IL" 6000 = "Mobile, AL" 6050 = "Muncie, IN" 6150 = "New Britain, CT" 6250 = "New Castle, PA" 6400 = "New York, NY" 6800 = "Council Bluffs, IA/Omaha, NE" 6850 = "Peru, IN" 7300 = "Portland, OR" 7400 = "Providence, RI" 7450 = "Pueblo, CO" 7550 = "Springfield, IL" 7650 = "Springfield, MO" 7750 = "Wallingford, CT" 7850 = "Willimantic, CT" 9999 = "Illegible/Meaningless"; VALUE V11FT (MAX=40) 0 = "No reply/Not applicable (all urban famil" 1 = "Bristol, MA" 2 = "Plymouth, MA" 3 = "Chittenden, VT" 4 = "Franklin, VT" 5 = "De Witt, IL" 6 = "Logan, IL" 7 = "Macon, IL" 8 = "Piatt, IL" 9 = "Madison, IA" 10 = "Mahaska, IA" 11 = "Marion, IA" 12 = "Marshall, IA" 13 = "Poweshiek, IA" 14 = "Lenawee, MI" 15 = "Camden, NJ" 16 = "Gloucester, NJ" 17 = "Salem, NJ" 18 = "Crawford, OH" 19 = "Knox, OH" 20 = "Richland, OH" 21 = "Lancaster, PA" 22 = "Dane, WI" 23 = "Clarke, GA" 24 = "Elbert, GA" 25 = "Greene, GA" 26 = "Jackson, GA" 27 = "Madison, GA" 28 = "Morgan, GA" 29 = "Oconee, GA" 30 = "Wilkes, GA" 31 = "Bolivar, MS" 32 = "Leflore, MS" 33 = "Sunflower, MS" 34 = "Washington, MS" 35 = "Jackson, NC" 36 = "Macon, NC" 37 = "Edgecombe, NC" 38 = "Nash, NC" 39 = "Clarendon, SC" 40 = "Darlington, SC" 41 = "Florence, SC" 42 = "Lee, SC" 43 = "Marion, SC" 44 = "Sumter, SC" 45 = "Eagle, CO" 46 = "Garfield, CO" 47 = "Rio Blanco, CO" 48 = "Edwards, KS" 49 = "Ford, KS" 50 = "Gray, KS" 51 = "Meade, KS" 52 = "Custer, MT" 53 = "Barnes, ND" 54 = "Cass, ND" 55 = "Griggs, ND" 56 = "Steele, ND" 57 = "Pennington, SD" 58 = "Orange, CA" 59 = "Riverside, CA" 60 = "San Joaquin, CA" 61 = "Clackamas, OR" 62 = "Marion, OR" 63 = "Multnomah, OR" 64 = "Polk, OR" 65 = "Marion, OR" 66 = "Whatcom, WA" 67 = "Allegany, MD" 74 = "Lane, OR" 91 = "Butte, SD" 103 = "Kershaw, SC" 116 = "Snohomish, WA" 123 = "Tuscarawas, OH" 163 = "Wicomico, MD" 999 = "Illegible/Meaningless"; VALUE V12FT (MAX=40) 1 = "Connecticut" 2 = "Maine" 3 = "Massachusetts" 4 = "New Hampshire" 5 = "Rhode Island" 6 = "Vermont" 11 = "Delaware" 12 = "New Jersey" 13 = "New York" 14 = "Pennsylvania" 21 = "Illinois" 22 = "Indiana" 23 = "Michigan" 24 = "Ohio" 25 = "Wisconsin" 31 = "Iowa" 32 = "Kansas" 33 = "Minnesota" 34 = "Missouri" 35 = "Nebraska" 36 = "North Dakota" 37 = "South Dakota" 38 = "Iowa/Nebraska" 40 = "Virginia" 41 = "Alabama" 42 = "Arkansas" 43 = "Florida" 44 = "Georgia" 45 = "Louisiana" 46 = "Mississippi" 47 = "North Carolina" 48 = "South Carolina" 49 = "Texas" 51 = "Kentucky" 52 = "Maryland" 53 = "Oklahoma" 54 = "Tennessee" 56 = "West Virginia" 61 = "Arizona" 62 = "Colorado" 63 = "Idaho" 64 = "Montana" 65 = "Nevada" 66 = "New Mexico" 67 = "Utah" 68 = "Wyoming" 71 = "California" 72 = "Oregon" 73 = "Washington" 81 = "Alaska" 82 = "Hawaii"; VALUE V14FT (MAX=40) 1 = "Urban" 2 = "Rural (Village)" 3 = "Rural (Farm)"; VALUE V15FT (MAX=40) 0 = "Dont know/not applicable" 622 = "June 22"; VALUE V16FT (MAX=40) 0 = "Dont know/not applicable" 6 = "1936" 7 = "1937"; VALUE V17FT (MAX=40) 101 = "January 1"; VALUE V18FT (MAX=40) 0 = "Dont know/not applicable" 5 = "1935" 6 = "1936"; VALUE V19FT (MAX=40) 0 = "Dont know/not applicable" 1231 = "December 31" 9999 = "Illegible/Meaningless"; VALUE V20FT (MAX=40) 0 = "Dont know/not applicable" 5 = "1935" 6 = "1936" 7 = "1937" 8 = "1938" 9 = "1939"; VALUE V21FT (MAX=40) 0 = "Refused to give age, no rep, dont know/" 99 = "No Husband for this family"; VALUE V22FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 98 = "Dont know/not applicable" 99 = "No husband in this family"; VALUE V23FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 98 = "Dont know/not applicable" 99 = "No husband in this family"; VALUE V24FT (MAX=40) 0 = "Refused to give age, no rep, dont know/" 99 = "No Wife for this family"; VALUE V25FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 98 = "Not applicable" 99 = "No Wife in the family"; VALUE V26FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 98 = "Not applicable" 99 = "No Wife in the family"; VALUE V27FT (MAX=40) 0 = "No such family member" 1 = "Daughter" 3 = "Head" 4 = "Son" 5 = "Grandson" 6 = "Sister of wife" 7 = "Son (adopted)" 8 = "Daughter (adopted)" 9 = "Granddaughter" 10 = "Son in law" 11 = "Husband" 12 = "Wife" 13 = "Father (w)" 14 = "Mother of wife" 16 = "Daughter of wife" 17 = "Sister" 18 = "Son (w)" 19 = "Brother-in-law" 20 = "Nephew" 21 = "Brother of husband" 22 = "Cousin of husband" 24 = "Mother" 25 = "Sister (h)" 26 = "Daughter (h)" 27 = "Daughter-in-law (w-3)" 28 = "Father" 29 = "Friend" 30 = "Granddaughter (d-3)" 31 = "Grandson (s-3)" 32 = "Niece (w)" 33 = "Brother" 34 = "Daughter-in-law" 35 = "Aunt" 37 = "Mother (h)" 38 = "Cousin" 39 = "Father (h)" 40 = "Niece" 41 = "Head Female" 42 = "Brother of wife" 43 = "Daughter of Husband" 45 = "Son of husband" 46 = "Niece (h)" 47 = "Nephew (h)" 48 = "Aunt (w)" 49 = "Cousin (w)" 52 = "Son-in-law (h-3)" 54 = "nephew(w)" 55 = "Mother-in-law" 56 = "Grandson (3)" 57 = "Stepson (h)" 60 = "Stepson" 62 = "Wife's Mother/Mother of Wife" 64 = "Aunt (h)" 65 = "Granddaughter (3)" 70 = "Father (2)" 71 = "Son (foster)" 74 = "Son-in-law (h-4)" 75 = "Grandson (s-4, 5)" 76 = "Householder" 77 = "Son of wife" 78 = "Father-in-law" 79 = "Partner householder" 80 = "Roomer" 82 = "Bachelor" 84 = "Boy" 86 = "Husband (5)" 88 = "Daughter (5 & 6)" 89 = "Grand daughter (L-4)" 92 = "Widow" 93 = "Widower" 94 = "Sister-in-law" 102 = "Brother in law (husband of #5)" 107 = "Female friend" 109 = "Son (4)" 111 = "Son in law (h-4)" 116 = "Great Grandmother (w)" 118 = "Brother-in-law (h-4)" 119 = "Great Granddaughter" 120 = "Sister (II 1)" 121 = "Sister (II 3)" 122 = "Granddaughter-in-law" 123 = "Grandson (h)" 124 = "Husband (son-in-law)" 125 = "Daughter (w-3)" 126 = "Gr.daughter (d3-7)" 127 = "Grandson (s-3-4)" 128 = "Great grandmother" 130 = "Daughter (d4)" 132 = "Grand nephew (w)" 133 = "Gr.daughter d4" 134 = "Female" 135 = "Nephew #-2" 200 = "Boy (Ward)" 201 = "Child" 202 = "Foster daughter" 203 = "Friend Of Husband & Wife" 205 = "Granddaughter (H)" 206 = "Nephew (H and W)" 207 = "Orphan - No Relation" 208 = "Step Daughter" 209 = "Unrelated Woman" 212 = "Daughter In Law (H)" 213 = "Protege" 214 = "Taken boy" 215 = "Unrelated" 216 = "Husbands Half Brother" 217 = "Man" 218 = "Stillborn Child" 219 = "Friend Of Family" 223 = "Foster Child" 225 = "Grandmother (H)" 229 = "Daughter of 4" 230 = "Daughter-In-Law (W)" 232 = "Girl Living In" 233 = "Grandniece (W)" 236 = "Mother-In-Law of Son on Line 3" 240 = "Children" 257 = "Godson - adopted" 998 = "Not applicable" 999 = "Illegible/Meaningless"; VALUE V28FT (MAX=40) 1 = "Male" 2 = "Female" 9 = "No such family member"; VALUE V29FT (MAX=40) 00.00 = "Refused to give age, no rep, dont know/" 99.99 = "No such family member"; VALUE V30FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 99 = "No such family member"; VALUE V31FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 99 = "No such family member"; VALUE V32FT (MAX=40) 0 = "No such family member" 1 = "Daughter" 3 = "Head" 4 = "Son" 5 = "Grandson" 6 = "Sister of wife" 7 = "Son (adopted)" 8 = "Daughter (adopted)" 9 = "Granddaughter" 10 = "Son in law" 11 = "Husband" 12 = "Wife" 13 = "Father (w)" 14 = "Mother of wife" 16 = "Daughter of wife" 17 = "Sister" 18 = "Son (w)" 19 = "Brother-in-law" 20 = "Nephew" 21 = "Brother of husband" 22 = "Cousin of husband" 24 = "Mother" 25 = "Sister (h)" 26 = "Daughter (h)" 27 = "Daughter-in-law (w-3)" 28 = "Father" 29 = "Friend" 30 = "Granddaughter (d-3)" 31 = "Grandson (s-3)" 32 = "Niece (w)" 33 = "Brother" 34 = "Daughter-in-law" 35 = "Aunt" 37 = "Mother (h)" 38 = "Cousin" 39 = "Father (h)" 40 = "Niece" 41 = "Head Female" 42 = "Brother of wife" 43 = "Daughter of Husband" 45 = "Son of husband" 46 = "Niece (h)" 47 = "Nephew (h)" 48 = "Aunt (w)" 49 = "Cousin (w)" 52 = "Son-in-law (h-3)" 54 = "nephew(w)" 55 = "Mother-in-law" 56 = "Grandson (3)" 57 = "Stepson (h)" 60 = "Stepson" 62 = "Wife's Mother/Mother of Wife" 64 = "Aunt (h)" 65 = "Granddaughter (3)" 70 = "Father (2)" 71 = "Son (foster)" 74 = "Son-in-law (h-4)" 75 = "Grandson (s-4, 5)" 76 = "Householder" 77 = "Son of wife" 78 = "Father-in-law" 79 = "Partner householder" 80 = "Roomer" 82 = "Bachelor" 84 = "Boy" 86 = "Husband (5)" 88 = "Daughter (5 & 6)" 89 = "Grand daughter (L-4)" 92 = "Widow" 93 = "Widower" 94 = "Sister-in-law" 102 = "Brother in law (husband of #5)" 107 = "Female friend" 109 = "Son (4)" 111 = "Son in law (h-4)" 116 = "Great Grandmother (w)" 118 = "Brother-in-law (h-4)" 119 = "Great Granddaughter" 120 = "Sister (II 1)" 121 = "Sister (II 3)" 122 = "Granddaughter-in-law" 123 = "Grandson (h)" 124 = "Husband (son-in-law)" 125 = "Daughter (w-3)" 126 = "Gr.daughter (d3-7)" 127 = "Grandson (s-3-4)" 128 = "Great grandmother" 130 = "Daughter (d4)" 132 = "Grand nephew (w)" 133 = "Gr.daughter d4" 134 = "Female" 135 = "Nephew #-2" 200 = "Boy (Ward)" 201 = "Child" 202 = "Foster daughter" 203 = "Friend Of Husband & Wife" 205 = "Granddaughter (H)" 206 = "Nephew (H and W)" 207 = "Orphan - No Relation" 208 = "Step Daughter" 209 = "Unrelated Woman" 212 = "Daughter In Law (H)" 213 = "Protege" 214 = "Taken boy" 215 = "Unrelated" 216 = "Husbands Half Brother" 217 = "Man" 218 = "Stillborn Child" 219 = "Friend Of Family" 223 = "Foster Child" 225 = "Grandmother (H)" 229 = "Daughter of 4" 230 = "Daughter-In-Law (W)" 232 = "Girl Living In" 233 = "Grandniece (W)" 236 = "Mother-In-Law of Son on Line 3" 240 = "Children" 257 = "Godson - adopted" 998 = "Not applicable" 999 = "Illegible/Meaningless"; VALUE V33FT (MAX=40) 1 = "Male" 2 = "Female" 9 = "No such family member"; VALUE V34FT (MAX=40) 00.00 = "Refused to give age, no rep, dont know/" 99.99 = "No such family member"; VALUE V35FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 99 = "No such family member"; VALUE V36FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 99 = "No such family member"; VALUE V37FT (MAX=40) 0 = "No such family member" 1 = "Daughter" 3 = "Head" 4 = "Son" 5 = "Grandson" 6 = "Sister of wife" 7 = "Son (adopted)" 8 = "Daughter (adopted)" 9 = "Granddaughter" 10 = "Son in law" 11 = "Husband" 12 = "Wife" 13 = "Father (w)" 14 = "Mother of wife" 16 = "Daughter of wife" 17 = "Sister" 18 = "Son (w)" 19 = "Brother-in-law" 20 = "Nephew" 21 = "Brother of husband" 22 = "Cousin of husband" 24 = "Mother" 25 = "Sister (h)" 26 = "Daughter (h)" 27 = "Daughter-in-law (w-3)" 28 = "Father" 29 = "Friend" 30 = "Granddaughter (d-3)" 31 = "Grandson (s-3)" 32 = "Niece (w)" 33 = "Brother" 34 = "Daughter-in-law" 35 = "Aunt" 37 = "Mother (h)" 38 = "Cousin" 39 = "Father (h)" 40 = "Niece" 41 = "Head Female" 42 = "Brother of wife" 43 = "Daughter of Husband" 45 = "Son of husband" 46 = "Niece (h)" 47 = "Nephew (h)" 48 = "Aunt (w)" 49 = "Cousin (w)" 52 = "Son-in-law (h-3)" 54 = "nephew(w)" 55 = "Mother-in-law" 56 = "Grandson (3)" 57 = "Stepson (h)" 60 = "Stepson" 62 = "Wife's Mother/Mother of Wife" 64 = "Aunt (h)" 65 = "Granddaughter (3)" 70 = "Father (2)" 71 = "Son (foster)" 74 = "Son-in-law (h-4)" 75 = "Grandson (s-4, 5)" 76 = "Householder" 77 = "Son of wife" 78 = "Father-in-law" 79 = "Partner householder" 80 = "Roomer" 82 = "Bachelor" 84 = "Boy" 86 = "Husband (5)" 88 = "Daughter (5 & 6)" 89 = "Grand daughter (L-4)" 92 = "Widow" 93 = "Widower" 94 = "Sister-in-law" 102 = "Brother in law (husband of #5)" 107 = "Female friend" 109 = "Son (4)" 111 = "Son in law (h-4)" 116 = "Great Grandmother (w)" 118 = "Brother-in-law (h-4)" 119 = "Great Granddaughter" 120 = "Sister (II 1)" 121 = "Sister (II 3)" 122 = "Granddaughter-in-law" 123 = "Grandson (h)" 124 = "Husband (son-in-law)" 125 = "Daughter (w-3)" 126 = "Gr.daughter (d3-7)" 127 = "Grandson (s-3-4)" 128 = "Great grandmother" 130 = "Daughter (d4)" 132 = "Grand nephew (w)" 133 = "Gr.daughter d4" 134 = "Female" 135 = "Nephew #-2" 200 = "Boy (Ward)" 201 = "Child" 202 = "Foster daughter" 203 = "Friend Of Husband & Wife" 205 = "Granddaughter (H)" 206 = "Nephew (H and W)" 207 = "Orphan - No Relation" 208 = "Step Daughter" 209 = "Unrelated Woman" 212 = "Daughter In Law (H)" 213 = "Protege" 214 = "Taken boy" 215 = "Unrelated" 216 = "Husbands Half Brother" 217 = "Man" 218 = "Stillborn Child" 219 = "Friend Of Family" 223 = "Foster Child" 225 = "Grandmother (H)" 229 = "Daughter of 4" 230 = "Daughter-In-Law (W)" 232 = "Girl Living In" 233 = "Grandniece (W)" 236 = "Mother-In-Law of Son on Line 3" 240 = "Children" 257 = "Godson - adopted" 998 = "Not applicable" 999 = "Illegible/Meaningless"; VALUE V38FT (MAX=40) 1 = "Male" 2 = "Female" 9 = "No such family member"; VALUE V39FT (MAX=40) 00.00 = "Refused to give age, no rep, dont know/" 99.99 = "No such family member"; VALUE V40FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 99 = "No such family member"; VALUE V41FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 99 = "No such family member"; VALUE V42FT (MAX=40) 0 = "No such family member" 1 = "Daughter" 3 = "Head" 4 = "Son" 5 = "Grandson" 6 = "Sister of wife" 7 = "Son (adopted)" 8 = "Daughter (adopted)" 9 = "Granddaughter" 10 = "Son in law" 11 = "Husband" 12 = "Wife" 13 = "Father (w)" 14 = "Mother of wife" 16 = "Daughter of wife" 17 = "Sister" 18 = "Son (w)" 19 = "Brother-in-law" 20 = "Nephew" 21 = "Brother of husband" 22 = "Cousin of husband" 24 = "Mother" 25 = "Sister (h)" 26 = "Daughter (h)" 27 = "Daughter-in-law (w-3)" 28 = "Father" 29 = "Friend" 30 = "Granddaughter (d-3)" 31 = "Grandson (s-3)" 32 = "Niece (w)" 33 = "Brother" 34 = "Daughter-in-law" 35 = "Aunt" 37 = "Mother (h)" 38 = "Cousin" 39 = "Father (h)" 40 = "Niece" 41 = "Head Female" 42 = "Brother of wife" 43 = "Daughter of Husband" 45 = "Son of husband" 46 = "Niece (h)" 47 = "Nephew (h)" 48 = "Aunt (w)" 49 = "Cousin (w)" 52 = "Son-in-law (h-3)" 54 = "nephew(w)" 55 = "Mother-in-law" 56 = "Grandson (3)" 57 = "Stepson (h)" 60 = "Stepson" 62 = "Wife's Mother/Mother of Wife" 64 = "Aunt (h)" 65 = "Granddaughter (3)" 70 = "Father (2)" 71 = "Son (foster)" 74 = "Son-in-law (h-4)" 75 = "Grandson (s-4, 5)" 76 = "Householder" 77 = "Son of wife" 78 = "Father-in-law" 79 = "Partner householder" 80 = "Roomer" 82 = "Bachelor" 84 = "Boy" 86 = "Husband (5)" 88 = "Daughter (5 & 6)" 89 = "Grand daughter (L-4)" 92 = "Widow" 93 = "Widower" 94 = "Sister-in-law" 102 = "Brother in law (husband of #5)" 107 = "Female friend" 109 = "Son (4)" 111 = "Son in law (h-4)" 116 = "Great Grandmother (w)" 118 = "Brother-in-law (h-4)" 119 = "Great Granddaughter" 120 = "Sister (II 1)" 121 = "Sister (II 3)" 122 = "Granddaughter-in-law" 123 = "Grandson (h)" 124 = "Husband (son-in-law)" 125 = "Daughter (w-3)" 126 = "Gr.daughter (d3-7)" 127 = "Grandson (s-3-4)" 128 = "Great grandmother" 130 = "Daughter (d4)" 132 = "Grand nephew (w)" 133 = "Gr.daughter d4" 134 = "Female" 135 = "Nephew #-2" 200 = "Boy (Ward)" 201 = "Child" 202 = "Foster daughter" 203 = "Friend Of Husband & Wife" 205 = "Granddaughter (H)" 206 = "Nephew (H and W)" 207 = "Orphan - No Relation" 208 = "Step Daughter" 209 = "Unrelated Woman" 212 = "Daughter In Law (H)" 213 = "Protege" 214 = "Taken boy" 215 = "Unrelated" 216 = "Husbands Half Brother" 217 = "Man" 218 = "Stillborn Child" 219 = "Friend Of Family" 223 = "Foster Child" 225 = "Grandmother (H)" 229 = "Daughter of 4" 230 = "Daughter-In-Law (W)" 232 = "Girl Living In" 233 = "Grandniece (W)" 236 = "Mother-In-Law of Son on Line 3" 240 = "Children" 257 = "Godson - adopted" 998 = "Not applicable" 999 = "Illegible/Meaningless"; VALUE V43FT (MAX=40) 1 = "Male" 2 = "Female" 9 = "No such family member"; VALUE V44FT (MAX=40) 00.00 = "Refused to give age, no rep, dont know/" 99.99 = "No such family member"; VALUE V45FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 99 = "No such family member"; VALUE V46FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 99 = "No such family member"; VALUE V47FT (MAX=40) 0 = "No such family member" 1 = "Daughter" 3 = "Head" 4 = "Son" 5 = "Grandson" 6 = "Sister of wife" 7 = "Son (adopted)" 8 = "Daughter (adopted)" 9 = "Granddaughter" 10 = "Son in law" 11 = "Husband" 12 = "Wife" 13 = "Father (w)" 14 = "Mother of wife" 16 = "Daughter of wife" 17 = "Sister" 18 = "Son (w)" 19 = "Brother-in-law" 20 = "Nephew" 21 = "Brother of husband" 22 = "Cousin of husband" 24 = "Mother" 25 = "Sister (h)" 26 = "Daughter (h)" 27 = "Daughter-in-law (w-3)" 28 = "Father" 29 = "Friend" 30 = "Granddaughter (d-3)" 31 = "Grandson (s-3)" 32 = "Niece (w)" 33 = "Brother" 34 = "Daughter-in-law" 35 = "Aunt" 37 = "Mother (h)" 38 = "Cousin" 39 = "Father (h)" 40 = "Niece" 41 = "Head Female" 42 = "Brother of wife" 43 = "Daughter of Husband" 45 = "Son of husband" 46 = "Niece (h)" 47 = "Nephew (h)" 48 = "Aunt (w)" 49 = "Cousin (w)" 52 = "Son-in-law (h-3)" 54 = "nephew(w)" 55 = "Mother-in-law" 56 = "Grandson (3)" 57 = "Stepson (h)" 60 = "Stepson" 62 = "Wife's Mother/Mother of Wife" 64 = "Aunt (h)" 65 = "Granddaughter (3)" 70 = "Father (2)" 71 = "Son (foster)" 74 = "Son-in-law (h-4)" 75 = "Grandson (s-4, 5)" 76 = "Householder" 77 = "Son of wife" 78 = "Father-in-law" 79 = "Partner householder" 80 = "Roomer" 82 = "Bachelor" 84 = "Boy" 86 = "Husband (5)" 88 = "Daughter (5 & 6)" 89 = "Grand daughter (L-4)" 92 = "Widow" 93 = "Widower" 94 = "Sister-in-law" 102 = "Brother in law (husband of #5)" 107 = "Female friend" 109 = "Son (4)" 111 = "Son in law (h-4)" 116 = "Great Grandmother (w)" 118 = "Brother-in-law (h-4)" 119 = "Great Granddaughter" 120 = "Sister (II 1)" 121 = "Sister (II 3)" 122 = "Granddaughter-in-law" 123 = "Grandson (h)" 124 = "Husband (son-in-law)" 125 = "Daughter (w-3)" 126 = "Gr.daughter (d3-7)" 127 = "Grandson (s-3-4)" 128 = "Great grandmother" 130 = "Daughter (d4)" 132 = "Grand nephew (w)" 133 = "Gr.daughter d4" 134 = "Female" 135 = "Nephew #-2" 200 = "Boy (Ward)" 201 = "Child" 202 = "Foster daughter" 203 = "Friend Of Husband & Wife" 205 = "Granddaughter (H)" 206 = "Nephew (H and W)" 207 = "Orphan - No Relation" 208 = "Step Daughter" 209 = "Unrelated Woman" 212 = "Daughter In Law (H)" 213 = "Protege" 214 = "Taken boy" 215 = "Unrelated" 216 = "Husbands Half Brother" 217 = "Man" 218 = "Stillborn Child" 219 = "Friend Of Family" 223 = "Foster Child" 225 = "Grandmother (H)" 229 = "Daughter of 4" 230 = "Daughter-In-Law (W)" 232 = "Girl Living In" 233 = "Grandniece (W)" 236 = "Mother-In-Law of Son on Line 3" 240 = "Children" 257 = "Godson - adopted" 998 = "Not applicable" 999 = "Illegible/Meaningless"; VALUE V48FT (MAX=40) 1 = "Male" 2 = "Female" 9 = "No such family member"; VALUE V49FT (MAX=40) 00.00 = "Refused to give age, no rep, dont know/" 99.99 = "No such family member"; VALUE V50FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 99 = "No such family member"; VALUE V51FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 99 = "No such family member"; VALUE V52FT (MAX=40) 0 = "No such family member" 1 = "Daughter" 3 = "Head" 4 = "Son" 5 = "Grandson" 6 = "Sister of wife" 7 = "Son (adopted)" 8 = "Daughter (adopted)" 9 = "Granddaughter" 10 = "Son in law" 11 = "Husband" 12 = "Wife" 13 = "Father (w)" 14 = "Mother of wife" 16 = "Daughter of wife" 17 = "Sister" 18 = "Son (w)" 19 = "Brother-in-law" 20 = "Nephew" 21 = "Brother of husband" 22 = "Cousin of husband" 24 = "Mother" 25 = "Sister (h)" 26 = "Daughter (h)" 27 = "Daughter-in-law (w-3)" 28 = "Father" 29 = "Friend" 30 = "Granddaughter (d-3)" 31 = "Grandson (s-3)" 32 = "Niece (w)" 33 = "Brother" 34 = "Daughter-in-law" 35 = "Aunt" 37 = "Mother (h)" 38 = "Cousin" 39 = "Father (h)" 40 = "Niece" 41 = "Head Female" 42 = "Brother of wife" 43 = "Daughter of Husband" 45 = "Son of husband" 46 = "Niece (h)" 47 = "Nephew (h)" 48 = "Aunt (w)" 49 = "Cousin (w)" 52 = "Son-in-law (h-3)" 54 = "nephew(w)" 55 = "Mother-in-law" 56 = "Grandson (3)" 57 = "Stepson (h)" 60 = "Stepson" 62 = "Wife's Mother/Mother of Wife" 64 = "Aunt (h)" 65 = "Granddaughter (3)" 70 = "Father (2)" 71 = "Son (foster)" 74 = "Son-in-law (h-4)" 75 = "Grandson (s-4, 5)" 76 = "Householder" 77 = "Son of wife" 78 = "Father-in-law" 79 = "Partner householder" 80 = "Roomer" 82 = "Bachelor" 84 = "Boy" 86 = "Husband (5)" 88 = "Daughter (5 & 6)" 89 = "Grand daughter (L-4)" 92 = "Widow" 93 = "Widower" 94 = "Sister-in-law" 102 = "Brother in law (husband of #5)" 107 = "Female friend" 109 = "Son (4)" 111 = "Son in law (h-4)" 116 = "Great Grandmother (w)" 118 = "Brother-in-law (h-4)" 119 = "Great Granddaughter" 120 = "Sister (II 1)" 121 = "Sister (II 3)" 122 = "Granddaughter-in-law" 123 = "Grandson (h)" 124 = "Husband (son-in-law)" 125 = "Daughter (w-3)" 126 = "Gr.daughter (d3-7)" 127 = "Grandson (s-3-4)" 128 = "Great grandmother" 130 = "Daughter (d4)" 132 = "Grand nephew (w)" 133 = "Gr.daughter d4" 134 = "Female" 135 = "Nephew #-2" 200 = "Boy (Ward)" 201 = "Child" 202 = "Foster daughter" 203 = "Friend Of Husband & Wife" 205 = "Granddaughter (H)" 206 = "Nephew (H and W)" 207 = "Orphan - No Relation" 208 = "Step Daughter" 209 = "Unrelated Woman" 212 = "Daughter In Law (H)" 213 = "Protege" 214 = "Taken boy" 215 = "Unrelated" 216 = "Husbands Half Brother" 217 = "Man" 218 = "Stillborn Child" 219 = "Friend Of Family" 223 = "Foster Child" 225 = "Grandmother (H)" 229 = "Daughter of 4" 230 = "Daughter-In-Law (W)" 232 = "Girl Living In" 233 = "Grandniece (W)" 236 = "Mother-In-Law of Son on Line 3" 240 = "Children" 257 = "Godson - adopted" 998 = "Not applicable" 999 = "Illegible/Meaningless"; VALUE V53FT (MAX=40) 1 = "Male" 2 = "Female" 9 = "No such family member"; VALUE V54FT (MAX=40) 00.00 = "Refused to give age, no rep, dont know/" 99.99 = "No such family member"; VALUE V55FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 99 = "No such family member"; VALUE V56FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 99 = "No such family member"; VALUE V57FT (MAX=40) 0 = "No such family member" 1 = "Daughter" 3 = "Head" 4 = "Son" 5 = "Grandson" 6 = "Sister of wife" 7 = "Son (adopted)" 8 = "Daughter (adopted)" 9 = "Granddaughter" 10 = "Son in law" 11 = "Husband" 12 = "Wife" 13 = "Father (w)" 14 = "Mother of wife" 16 = "Daughter of wife" 17 = "Sister" 18 = "Son (w)" 19 = "Brother-in-law" 20 = "Nephew" 21 = "Brother of husband" 22 = "Cousin of husband" 24 = "Mother" 25 = "Sister (h)" 26 = "Daughter (h)" 27 = "Daughter-in-law (w-3)" 28 = "Father" 29 = "Friend" 30 = "Granddaughter (d-3)" 31 = "Grandson (s-3)" 32 = "Niece (w)" 33 = "Brother" 34 = "Daughter-in-law" 35 = "Aunt" 37 = "Mother (h)" 38 = "Cousin" 39 = "Father (h)" 40 = "Niece" 41 = "Head Female" 42 = "Brother of wife" 43 = "Daughter of Husband" 45 = "Son of husband" 46 = "Niece (h)" 47 = "Nephew (h)" 48 = "Aunt (w)" 49 = "Cousin (w)" 52 = "Son-in-law (h-3)" 54 = "nephew(w)" 55 = "Mother-in-law" 56 = "Grandson (3)" 57 = "Stepson (h)" 60 = "Stepson" 62 = "Wife's Mother/Mother of Wife" 64 = "Aunt (h)" 65 = "Granddaughter (3)" 70 = "Father (2)" 71 = "Son (foster)" 74 = "Son-in-law (h-4)" 75 = "Grandson (s-4, 5)" 76 = "Householder" 77 = "Son of wife" 78 = "Father-in-law" 79 = "Partner householder" 80 = "Roomer" 82 = "Bachelor" 84 = "Boy" 86 = "Husband (5)" 88 = "Daughter (5 & 6)" 89 = "Grand daughter (L-4)" 92 = "Widow" 93 = "Widower" 94 = "Sister-in-law" 102 = "Brother in law (husband of #5)" 107 = "Female friend" 109 = "Son (4)" 111 = "Son in law (h-4)" 116 = "Great Grandmother (w)" 118 = "Brother-in-law (h-4)" 119 = "Great Granddaughter" 120 = "Sister (II 1)" 121 = "Sister (II 3)" 122 = "Granddaughter-in-law" 123 = "Grandson (h)" 124 = "Husband (son-in-law)" 125 = "Daughter (w-3)" 126 = "Gr.daughter (d3-7)" 127 = "Grandson (s-3-4)" 128 = "Great grandmother" 130 = "Daughter (d4)" 132 = "Grand nephew (w)" 133 = "Gr.daughter d4" 134 = "Female" 135 = "Nephew #-2" 200 = "Boy (Ward)" 201 = "Child" 202 = "Foster daughter" 203 = "Friend Of Husband & Wife" 205 = "Granddaughter (H)" 206 = "Nephew (H and W)" 207 = "Orphan - No Relation" 208 = "Step Daughter" 209 = "Unrelated Woman" 212 = "Daughter In Law (H)" 213 = "Protege" 214 = "Taken boy" 215 = "Unrelated" 216 = "Husbands Half Brother" 217 = "Man" 218 = "Stillborn Child" 219 = "Friend Of Family" 223 = "Foster Child" 225 = "Grandmother (H)" 229 = "Daughter of 4" 230 = "Daughter-In-Law (W)" 232 = "Girl Living In" 233 = "Grandniece (W)" 236 = "Mother-In-Law of Son on Line 3" 240 = "Children" 257 = "Godson - adopted" 998 = "Not applicable" 999 = "Illegible/Meaningless"; VALUE V58FT (MAX=40) 1 = "Male" 2 = "Female" 9 = "No such family member"; VALUE V59FT (MAX=40) 00.00 = "Refused to give age, no rep, dont know/" 99.99 = "No such family member"; VALUE V60FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 99 = "No such family member"; VALUE V61FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 99 = "No such family member"; VALUE V62FT (MAX=40) 0 = "No such family member" 1 = "Daughter" 3 = "Head" 4 = "Son" 5 = "Grandson" 6 = "Sister of wife" 7 = "Son (adopted)" 8 = "Daughter (adopted)" 9 = "Granddaughter" 10 = "Son in law" 11 = "Husband" 12 = "Wife" 13 = "Father (w)" 14 = "Mother of wife" 16 = "Daughter of wife" 17 = "Sister" 18 = "Son (w)" 19 = "Brother-in-law" 20 = "Nephew" 21 = "Brother of husband" 22 = "Cousin of husband" 24 = "Mother" 25 = "Sister (h)" 26 = "Daughter (h)" 27 = "Daughter-in-law (w-3)" 28 = "Father" 29 = "Friend" 30 = "Granddaughter (d-3)" 31 = "Grandson (s-3)" 32 = "Niece (w)" 33 = "Brother" 34 = "Daughter-in-law" 35 = "Aunt" 37 = "Mother (h)" 38 = "Cousin" 39 = "Father (h)" 40 = "Niece" 41 = "Head Female" 42 = "Brother of wife" 43 = "Daughter of Husband" 45 = "Son of husband" 46 = "Niece (h)" 47 = "Nephew (h)" 48 = "Aunt (w)" 49 = "Cousin (w)" 52 = "Son-in-law (h-3)" 54 = "nephew(w)" 55 = "Mother-in-law" 56 = "Grandson (3)" 57 = "Stepson (h)" 60 = "Stepson" 62 = "Wife's Mother/Mother of Wife" 64 = "Aunt (h)" 65 = "Granddaughter (3)" 70 = "Father (2)" 71 = "Son (foster)" 74 = "Son-in-law (h-4)" 75 = "Grandson (s-4, 5)" 76 = "Householder" 77 = "Son of wife" 78 = "Father-in-law" 79 = "Partner householder" 80 = "Roomer" 82 = "Bachelor" 84 = "Boy" 86 = "Husband (5)" 88 = "Daughter (5 & 6)" 89 = "Grand daughter (L-4)" 92 = "Widow" 93 = "Widower" 94 = "Sister-in-law" 102 = "Brother in law (husband of #5)" 107 = "Female friend" 109 = "Son (4)" 111 = "Son in law (h-4)" 116 = "Great Grandmother (w)" 118 = "Brother-in-law (h-4)" 119 = "Great Granddaughter" 120 = "Sister (II 1)" 121 = "Sister (II 3)" 122 = "Granddaughter-in-law" 123 = "Grandson (h)" 124 = "Husband (son-in-law)" 125 = "Daughter (w-3)" 126 = "Gr.daughter (d3-7)" 127 = "Grandson (s-3-4)" 128 = "Great grandmother" 130 = "Daughter (d4)" 132 = "Grand nephew (w)" 133 = "Gr.daughter d4" 134 = "Female" 135 = "Nephew #-2" 200 = "Boy (Ward)" 201 = "Child" 202 = "Foster daughter" 203 = "Friend Of Husband & Wife" 205 = "Granddaughter (H)" 206 = "Nephew (H and W)" 207 = "Orphan - No Relation" 208 = "Step Daughter" 209 = "Unrelated Woman" 212 = "Daughter In Law (H)" 213 = "Protege" 214 = "Taken boy" 215 = "Unrelated" 216 = "Husbands Half Brother" 217 = "Man" 218 = "Stillborn Child" 219 = "Friend Of Family" 223 = "Foster Child" 225 = "Grandmother (H)" 229 = "Daughter of 4" 230 = "Daughter-In-Law (W)" 232 = "Girl Living In" 233 = "Grandniece (W)" 236 = "Mother-In-Law of Son on Line 3" 240 = "Children" 257 = "Godson - adopted" 998 = "Not applicable" 999 = "Illegible/Meaningless"; VALUE V63FT (MAX=40) 1 = "Male" 2 = "Female" 9 = "No such family member"; VALUE V64FT (MAX=40) 00.00 = "Refused to give age, no rep, dont know/" 99.99 = "No such family member"; VALUE V65FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 99 = "No such family member"; VALUE V66FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 99 = "No such family member"; VALUE V67FT (MAX=40) 00.00 = "No first adult child"; VALUE V68FT (MAX=40) 1 = "Male" 2 = "Female" 9 = "No first adult child"; VALUE V69FT (MAX=40) 9 = "No adult children boarding and rooming a"; VALUE V70FT (MAX=40) 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 99 = "No adult children boarding and rooming a"; VALUE V71FT (MAX=40) 00.00 = "No second adult child"; VALUE V72FT (MAX=40) 1 = "Male" 2 = "Female" 9 = "No second adult child"; VALUE V73FT (MAX=40) 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 99 = "No adult children boarding and rooming a"; VALUE V75FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks"; VALUE V77FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks"; VALUE V79FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks"; VALUE V81FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks"; VALUE V83FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks"; VALUE V85FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks"; VALUE V86FT (MAX=40) .00 = "None" 1.00 = "1 month" 2.00 = "2 months" 3.00 = "3 months" 4.00 = "4 months" 5.00 = "5 months" 6.00 = "6 months" 7.00 = "7 months" 8.00 = "8 months" 9.00 = "9 months" 10.00 = "10 months" 11.00 = "11 months" 12.00 = "12 months"; VALUE V87FT (MAX=40) .00 = "None" 1.00 = "1 month" 2.00 = "2 months" 3.00 = "3 months" 4.00 = "4 months" 5.00 = "5 months" 6.00 = "6 months" 7.00 = "7 months" 8.00 = "8 months" 9.00 = "9 months" 10.00 = "10 months" 11.00 = "11 months" 12.00 = "12 months"; VALUE V88FT (MAX=40) .00 = "None" 1.00 = "1 month" 2.00 = "2 months" 3.00 = "3 months" 4.00 = "4 months" 5.00 = "5 months" 6.00 = "6 months" 7.00 = "7 months" 8.00 = "8 months" 9.00 = "9 months" 10.00 = "10 months" 11.00 = "11 months" 12.00 = "12 months"; VALUE V91FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V92FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V95FT (MAX=40) .00 = "None" 1.00 = "1 month" 2.00 = "2 months" 3.00 = "3 months" 4.00 = "4 months" 5.00 = "5 months" 6.00 = "6 months" 7.00 = "7 months" 8.00 = "8 months" 9.00 = "9 months" 10.00 = "10 months" 11.00 = "11 months" 12.00 = "12 months"; VALUE V96FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V97FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V98FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V100FT (MAX=40) 0 = "Dont know/not applicable" 1 = "A one-fam house, detached." 2 = "A one-fam house, attached." 3 = "A two-fam house, side by side." 4 = "A two-fam house, two decker." 5 = "An apt in a building for three families." 6 = "An apt in a building for four families." 7 = "An apt in a building for five or more fa" 8 = "A dwelling unit in a business building." 9 = "A room or rooms with another family." 10 = "A room or rooms in a rooming house." 11 = "Other." 13 = "A one-fam house, detached and two-family" 16 = "A one-fam house, detached and Other." 19 = "A one-fam house, attached and one-family" 20 = "A one-fam house detached, a room or room"; VALUE V101FT (MAX=40) 0 = "None specified" 1 = "White" 2 = "Negro"; VALUE V102FT (MAX=40) 0 = "No such family member" 1 = "Daughter" 3 = "Head" 4 = "Son" 5 = "Grandson" 6 = "Sister of wife" 7 = "Son (adopted)" 8 = "Daughter (adopted)" 9 = "Granddaughter" 10 = "Son in law" 11 = "Husband" 12 = "Wife" 13 = "Father (w)" 14 = "Mother of wife" 16 = "Daughter of wife" 17 = "Sister" 18 = "Son (w)" 19 = "Brother-in-law" 20 = "Nephew" 21 = "Brother of husband" 22 = "Cousin of husband" 24 = "Mother" 25 = "Sister (h)" 26 = "Daughter (h)" 27 = "Daughter-in-law (w-3)" 28 = "Father" 29 = "Friend" 30 = "Granddaughter (d-3)" 31 = "Grandson (s-3)" 32 = "Niece (w)" 33 = "Brother" 34 = "Daughter-in-law" 35 = "Aunt" 37 = "Mother (h)" 38 = "Cousin" 39 = "Father (h)" 40 = "Niece" 41 = "Head Female" 42 = "Brother of wife" 43 = "Daughter of Husband" 45 = "Son of husband" 46 = "Niece (h)" 47 = "Nephew (h)" 48 = "Aunt (w)" 49 = "Cousin (w)" 52 = "Son-in-law (h-3)" 54 = "nephew(w)" 55 = "Mother-in-law" 56 = "Grandson (3)" 57 = "Stepson (h)" 60 = "Stepson" 62 = "Wife's Mother/Mother of Wife" 64 = "Aunt (h)" 65 = "Granddaughter (3)" 70 = "Father (2)" 71 = "Son (foster)" 74 = "Son-in-law (h-4)" 75 = "Grandson (s-4, 5)" 76 = "Householder" 77 = "Son of wife" 78 = "Father-in-law" 79 = "Partner householder" 80 = "Roomer" 82 = "Bachelor" 84 = "Boy" 86 = "Husband (5)" 88 = "Daughter (5 & 6)" 89 = "Grand daughter (L-4)" 92 = "Widow" 93 = "Widower" 94 = "Sister-in-law" 102 = "Brother in law (husband of #5)" 107 = "Female friend" 109 = "Son (4)" 111 = "Son in law (h-4)" 116 = "Great Grandmother (w)" 118 = "Brother-in-law (h-4)" 119 = "Great Granddaughter" 120 = "Sister (II 1)" 121 = "Sister (II 3)" 122 = "Granddaughter-in-law" 123 = "Grandson (h)" 124 = "Husband (son-in-law)" 125 = "Daughter (w-3)" 126 = "Gr.daughter (d3-7)" 127 = "Grandson (s-3-4)" 128 = "Great grandmother" 130 = "Daughter (d4)" 132 = "Grand nephew (w)" 133 = "Gr.daughter d4" 134 = "Female" 135 = "Nephew #-2" 200 = "Boy (Ward)" 201 = "Child" 202 = "Foster daughter" 203 = "Friend Of Husband & Wife" 205 = "Granddaughter (H)" 206 = "Nephew (H and W)" 207 = "Orphan - No Relation" 208 = "Step Daughter" 209 = "Unrelated Woman" 212 = "Daughter In Law (H)" 213 = "Protege" 214 = "Taken boy" 215 = "Unrelated" 216 = "Husbands Half Brother" 217 = "Man" 218 = "Stillborn Child" 219 = "Friend Of Family" 223 = "Foster Child" 225 = "Grandmother (H)" 229 = "Daughter of 4" 230 = "Daughter-In-Law (W)" 232 = "Girl Living In" 233 = "Grandniece (W)" 236 = "Mother-In-Law of Son on Line 3" 240 = "Children" 257 = "Godson - adopted" 998 = "Not applicable" 999 = "Illegible/Meaningless"; VALUE V103FT (MAX=40) 0 = "None Specified" 99 = "No such family member"; VALUE V104FT (MAX=40) 0 = "Refused to give age, no rep, dont know/" 99 = "No such family member"; VALUE V107FT (MAX=40) 0 = "None specified" 1 = "Self-employed" 2 = "Salaried worker/wage earner" 3 = "Employed on work-relief project" 9 = "No such family member"; VALUE V108FT (MAX=40) 99999.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V109FT (MAX=40) 0 = "Refused to give, no rep, dont know/not" 1 = "Hour" 2 = "Day" 3 = "Week" 4 = "Month" 5 = "Year" 9 = "No such family member"; VALUE V110FT (MAX=40) 9999.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V111FT (MAX=40) 99999.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V112FT (MAX=40) 0 = "No such family member" 1 = "Daughter" 3 = "Head" 4 = "Son" 5 = "Grandson" 6 = "Sister of wife" 7 = "Son (adopted)" 8 = "Daughter (adopted)" 9 = "Granddaughter" 10 = "Son in law" 11 = "Husband" 12 = "Wife" 13 = "Father (w)" 14 = "Mother of wife" 16 = "Daughter of wife" 17 = "Sister" 18 = "Son (w)" 19 = "Brother-in-law" 20 = "Nephew" 21 = "Brother of husband" 22 = "Cousin of husband" 24 = "Mother" 25 = "Sister (h)" 26 = "Daughter (h)" 27 = "Daughter-in-law (w-3)" 28 = "Father" 29 = "Friend" 30 = "Granddaughter (d-3)" 31 = "Grandson (s-3)" 32 = "Niece (w)" 33 = "Brother" 34 = "Daughter-in-law" 35 = "Aunt" 37 = "Mother (h)" 38 = "Cousin" 39 = "Father (h)" 40 = "Niece" 41 = "Head Female" 42 = "Brother of wife" 43 = "Daughter of Husband" 45 = "Son of husband" 46 = "Niece (h)" 47 = "Nephew (h)" 48 = "Aunt (w)" 49 = "Cousin (w)" 52 = "Son-in-law (h-3)" 54 = "nephew(w)" 55 = "Mother-in-law" 56 = "Grandson (3)" 57 = "Stepson (h)" 60 = "Stepson" 62 = "Wife's Mother/Mother of Wife" 64 = "Aunt (h)" 65 = "Granddaughter (3)" 70 = "Father (2)" 71 = "Son (foster)" 74 = "Son-in-law (h-4)" 75 = "Grandson (s-4, 5)" 76 = "Householder" 77 = "Son of wife" 78 = "Father-in-law" 79 = "Partner householder" 80 = "Roomer" 82 = "Bachelor" 84 = "Boy" 86 = "Husband (5)" 88 = "Daughter (5 & 6)" 89 = "Grand daughter (L-4)" 92 = "Widow" 93 = "Widower" 94 = "Sister-in-law" 102 = "Brother in law (husband of #5)" 107 = "Female friend" 109 = "Son (4)" 111 = "Son in law (h-4)" 116 = "Great Grandmother (w)" 118 = "Brother-in-law (h-4)" 119 = "Great Granddaughter" 120 = "Sister (II 1)" 121 = "Sister (II 3)" 122 = "Granddaughter-in-law" 123 = "Grandson (h)" 124 = "Husband (son-in-law)" 125 = "Daughter (w-3)" 126 = "Gr.daughter (d3-7)" 127 = "Grandson (s-3-4)" 128 = "Great grandmother" 130 = "Daughter (d4)" 132 = "Grand nephew (w)" 133 = "Gr.daughter d4" 134 = "Female" 135 = "Nephew #-2" 200 = "Boy (Ward)" 201 = "Child" 202 = "Foster daughter" 203 = "Friend Of Husband & Wife" 205 = "Granddaughter (H)" 206 = "Nephew (H and W)" 207 = "Orphan - No Relation" 208 = "Step Daughter" 209 = "Unrelated Woman" 212 = "Daughter In Law (H)" 213 = "Protege" 214 = "Taken boy" 215 = "Unrelated" 216 = "Husbands Half Brother" 217 = "Man" 218 = "Stillborn Child" 219 = "Friend Of Family" 223 = "Foster Child" 225 = "Grandmother (H)" 229 = "Daughter of 4" 230 = "Daughter-In-Law (W)" 232 = "Girl Living In" 233 = "Grandniece (W)" 236 = "Mother-In-Law of Son on Line 3" 240 = "Children" 257 = "Godson - adopted" 998 = "Not applicable" 999 = "Illegible/Meaningless"; VALUE V113FT (MAX=40) 0 = "None specified" 99 = "No such family member"; VALUE V114FT (MAX=40) 0 = "Refused to give age, no rep, dont know/" 99 = "No such family member"; VALUE V117FT (MAX=40) 0 = "None specified" 1 = "Self-employed" 2 = "Salaried worker/wage earner" 3 = "Employed on work-relief project" 9 = "No such family member"; VALUE V118FT (MAX=40) 9999.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V119FT (MAX=40) 0 = "Refused to give, no rep, dont know/not" 1 = "Hour" 2 = "Day" 3 = "Week" 4 = "Month" 5 = "Year" 9 = "No such family member"; VALUE V120FT (MAX=40) 9999.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V121FT (MAX=40) 9999.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V122FT (MAX=40) 0 = "No such family member" 1 = "Daughter" 3 = "Head" 4 = "Son" 5 = "Grandson" 6 = "Sister of wife" 7 = "Son (adopted)" 8 = "Daughter (adopted)" 9 = "Granddaughter" 10 = "Son in law" 11 = "Husband" 12 = "Wife" 13 = "Father (w)" 14 = "Mother of wife" 16 = "Daughter of wife" 17 = "Sister" 18 = "Son (w)" 19 = "Brother-in-law" 20 = "Nephew" 21 = "Brother of husband" 22 = "Cousin of husband" 24 = "Mother" 25 = "Sister (h)" 26 = "Daughter (h)" 27 = "Daughter-in-law (w-3)" 28 = "Father" 29 = "Friend" 30 = "Granddaughter (d-3)" 31 = "Grandson (s-3)" 32 = "Niece (w)" 33 = "Brother" 34 = "Daughter-in-law" 35 = "Aunt" 37 = "Mother (h)" 38 = "Cousin" 39 = "Father (h)" 40 = "Niece" 41 = "Head Female" 42 = "Brother of wife" 43 = "Daughter of Husband" 45 = "Son of husband" 46 = "Niece (h)" 47 = "Nephew (h)" 48 = "Aunt (w)" 49 = "Cousin (w)" 52 = "Son-in-law (h-3)" 54 = "nephew(w)" 55 = "Mother-in-law" 56 = "Grandson (3)" 57 = "Stepson (h)" 60 = "Stepson" 62 = "Wife's Mother/Mother of Wife" 64 = "Aunt (h)" 65 = "Granddaughter (3)" 70 = "Father (2)" 71 = "Son (foster)" 74 = "Son-in-law (h-4)" 75 = "Grandson (s-4, 5)" 76 = "Householder" 77 = "Son of wife" 78 = "Father-in-law" 79 = "Partner householder" 80 = "Roomer" 82 = "Bachelor" 84 = "Boy" 86 = "Husband (5)" 88 = "Daughter (5 & 6)" 89 = "Grand daughter (L-4)" 92 = "Widow" 93 = "Widower" 94 = "Sister-in-law" 102 = "Brother in law (husband of #5)" 107 = "Female friend" 109 = "Son (4)" 111 = "Son in law (h-4)" 116 = "Great Grandmother (w)" 118 = "Brother-in-law (h-4)" 119 = "Great Granddaughter" 120 = "Sister (II 1)" 121 = "Sister (II 3)" 122 = "Granddaughter-in-law" 123 = "Grandson (h)" 124 = "Husband (son-in-law)" 125 = "Daughter (w-3)" 126 = "Gr.daughter (d3-7)" 127 = "Grandson (s-3-4)" 128 = "Great grandmother" 130 = "Daughter (d4)" 132 = "Grand nephew (w)" 133 = "Gr.daughter d4" 134 = "Female" 135 = "Nephew #-2" 200 = "Boy (Ward)" 201 = "Child" 202 = "Foster daughter" 203 = "Friend Of Husband & Wife" 205 = "Granddaughter (H)" 206 = "Nephew (H and W)" 207 = "Orphan - No Relation" 208 = "Step Daughter" 209 = "Unrelated Woman" 212 = "Daughter In Law (H)" 213 = "Protege" 214 = "Taken boy" 215 = "Unrelated" 216 = "Husbands Half Brother" 217 = "Man" 218 = "Stillborn Child" 219 = "Friend Of Family" 223 = "Foster Child" 225 = "Grandmother (H)" 229 = "Daughter of 4" 230 = "Daughter-In-Law (W)" 232 = "Girl Living In" 233 = "Grandniece (W)" 236 = "Mother-In-Law of Son on Line 3" 240 = "Children" 257 = "Godson - adopted" 998 = "Not applicable" 999 = "Illegible/Meaningless"; VALUE V123FT (MAX=40) 0 = "None specified" 9 = "No such family member"; VALUE V124FT (MAX=40) 0 = "Refused to give age, no rep, dont know/" 99 = "No such family member"; VALUE V127FT (MAX=40) 0 = "None specified" 1 = "Self-employed" 2 = "Salaried worker/wage earner" 3 = "Employed on work-relief project" 9 = "No such family member"; VALUE V128FT (MAX=40) 9999.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V129FT (MAX=40) 0 = "Refused to give, no rep, dont know/not" 1 = "Hour" 2 = "Day" 3 = "Week" 4 = "Month" 5 = "Year" 9 = "No such family member"; VALUE V130FT (MAX=40) 999.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V131FT (MAX=40) 9999.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V132FT (MAX=40) 0 = "No such family member" 1 = "Daughter" 3 = "Head" 4 = "Son" 5 = "Grandson" 6 = "Sister of wife" 7 = "Son (adopted)" 8 = "Daughter (adopted)" 9 = "Granddaughter" 10 = "Son in law" 11 = "Husband" 12 = "Wife" 13 = "Father (w)" 14 = "Mother of wife" 16 = "Daughter of wife" 17 = "Sister" 18 = "Son (w)" 19 = "Brother-in-law" 20 = "Nephew" 21 = "Brother of husband" 22 = "Cousin of husband" 24 = "Mother" 25 = "Sister (h)" 26 = "Daughter (h)" 27 = "Daughter-in-law (w-3)" 28 = "Father" 29 = "Friend" 30 = "Granddaughter (d-3)" 31 = "Grandson (s-3)" 32 = "Niece (w)" 33 = "Brother" 34 = "Daughter-in-law" 35 = "Aunt" 37 = "Mother (h)" 38 = "Cousin" 39 = "Father (h)" 40 = "Niece" 41 = "Head Female" 42 = "Brother of wife" 43 = "Daughter of Husband" 45 = "Son of husband" 46 = "Niece (h)" 47 = "Nephew (h)" 48 = "Aunt (w)" 49 = "Cousin (w)" 52 = "Son-in-law (h-3)" 54 = "nephew(w)" 55 = "Mother-in-law" 56 = "Grandson (3)" 57 = "Stepson (h)" 60 = "Stepson" 62 = "Wife's Mother/Mother of Wife" 64 = "Aunt (h)" 65 = "Granddaughter (3)" 70 = "Father (2)" 71 = "Son (foster)" 74 = "Son-in-law (h-4)" 75 = "Grandson (s-4, 5)" 76 = "Householder" 77 = "Son of wife" 78 = "Father-in-law" 79 = "Partner householder" 80 = "Roomer" 82 = "Bachelor" 84 = "Boy" 86 = "Husband (5)" 88 = "Daughter (5 & 6)" 89 = "Grand daughter (L-4)" 92 = "Widow" 93 = "Widower" 94 = "Sister-in-law" 102 = "Brother in law (husband of #5)" 107 = "Female friend" 109 = "Son (4)" 111 = "Son in law (h-4)" 116 = "Great Grandmother (w)" 118 = "Brother-in-law (h-4)" 119 = "Great Granddaughter" 120 = "Sister (II 1)" 121 = "Sister (II 3)" 122 = "Granddaughter-in-law" 123 = "Grandson (h)" 124 = "Husband (son-in-law)" 125 = "Daughter (w-3)" 126 = "Gr.daughter (d3-7)" 127 = "Grandson (s-3-4)" 128 = "Great grandmother" 130 = "Daughter (d4)" 132 = "Grand nephew (w)" 133 = "Gr.daughter d4" 134 = "Female" 135 = "Nephew #-2" 200 = "Boy (Ward)" 201 = "Child" 202 = "Foster daughter" 203 = "Friend Of Husband & Wife" 205 = "Granddaughter (H)" 206 = "Nephew (H and W)" 207 = "Orphan - No Relation" 208 = "Step Daughter" 209 = "Unrelated Woman" 212 = "Daughter In Law (H)" 213 = "Protege" 214 = "Taken boy" 215 = "Unrelated" 216 = "Husbands Half Brother" 217 = "Man" 218 = "Stillborn Child" 219 = "Friend Of Family" 223 = "Foster Child" 225 = "Grandmother (H)" 229 = "Daughter of 4" 230 = "Daughter-In-Law (W)" 232 = "Girl Living In" 233 = "Grandniece (W)" 236 = "Mother-In-Law of Son on Line 3" 240 = "Children" 257 = "Godson - adopted" 998 = "Not applicable" 999 = "Illegible/Meaningless"; VALUE V133FT (MAX=40) 0 = "None specified" 99 = "No such family member"; VALUE V134FT (MAX=40) 0 = "Refused to give age, no rep, dont know/" 99 = "No such family member"; VALUE V137FT (MAX=40) 0 = "None specified" 1 = "Self-employed" 2 = "Salaried worker/wage earner" 3 = "Employed on work-relief project" 9 = "No such family member"; VALUE V138FT (MAX=40) 999.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V139FT (MAX=40) 0 = "Refused to give, no reply, DK/NA" 1 = "Hour" 2 = "Day" 3 = "Week" 4 = "Month" 5 = "Year" 9 = "No such family member"; VALUE V140FT (MAX=40) 999.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V141FT (MAX=40) 9999.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V142FT (MAX=40) 0 = "No such family member" 1 = "Daughter" 3 = "Head" 4 = "Son" 5 = "Grandson" 6 = "Sister of wife" 7 = "Son (adopted)" 8 = "Daughter (adopted)" 9 = "Granddaughter" 10 = "Son in law" 11 = "Husband" 12 = "Wife" 13 = "Father (w)" 14 = "Mother of wife" 16 = "Daughter of wife" 17 = "Sister" 18 = "Son (w)" 19 = "Brother-in-law" 20 = "Nephew" 21 = "Brother of husband" 22 = "Cousin of husband" 24 = "Mother" 25 = "Sister (h)" 26 = "Daughter (h)" 27 = "Daughter-in-law (w-3)" 28 = "Father" 29 = "Friend" 30 = "Granddaughter (d-3)" 31 = "Grandson (s-3)" 32 = "Niece (w)" 33 = "Brother" 34 = "Daughter-in-law" 35 = "Aunt" 37 = "Mother (h)" 38 = "Cousin" 39 = "Father (h)" 40 = "Niece" 41 = "Head Female" 42 = "Brother of wife" 43 = "Daughter of Husband" 45 = "Son of husband" 46 = "Niece (h)" 47 = "Nephew (h)" 48 = "Aunt (w)" 49 = "Cousin (w)" 52 = "Son-in-law (h-3)" 54 = "nephew(w)" 55 = "Mother-in-law" 56 = "Grandson (3)" 57 = "Stepson (h)" 60 = "Stepson" 62 = "Wife's Mother/Mother of Wife" 64 = "Aunt (h)" 65 = "Granddaughter (3)" 70 = "Father (2)" 71 = "Son (foster)" 74 = "Son-in-law (h-4)" 75 = "Grandson (s-4, 5)" 76 = "Householder" 77 = "Son of wife" 78 = "Father-in-law" 79 = "Partner householder" 80 = "Roomer" 82 = "Bachelor" 84 = "Boy" 86 = "Husband (5)" 88 = "Daughter (5 & 6)" 89 = "Grand daughter (L-4)" 92 = "Widow" 93 = "Widower" 94 = "Sister-in-law" 102 = "Brother in law (husband of #5)" 107 = "Female friend" 109 = "Son (4)" 111 = "Son in law (h-4)" 116 = "Great Grandmother (w)" 118 = "Brother-in-law (h-4)" 119 = "Great Granddaughter" 120 = "Sister (II 1)" 121 = "Sister (II 3)" 122 = "Granddaughter-in-law" 123 = "Grandson (h)" 124 = "Husband (son-in-law)" 125 = "Daughter (w-3)" 126 = "Gr.daughter (d3-7)" 127 = "Grandson (s-3-4)" 128 = "Great grandmother" 130 = "Daughter (d4)" 132 = "Grand nephew (w)" 133 = "Gr.daughter d4" 134 = "Female" 135 = "Nephew #-2" 200 = "Boy (Ward)" 201 = "Child" 202 = "Foster daughter" 203 = "Friend Of Husband & Wife" 205 = "Granddaughter (H)" 206 = "Nephew (H and W)" 207 = "Orphan - No Relation" 208 = "Step Daughter" 209 = "Unrelated Woman" 212 = "Daughter In Law (H)" 213 = "Protege" 214 = "Taken boy" 215 = "Unrelated" 216 = "Husbands Half Brother" 217 = "Man" 218 = "Stillborn Child" 219 = "Friend Of Family" 223 = "Foster Child" 225 = "Grandmother (H)" 229 = "Daughter of 4" 230 = "Daughter-In-Law (W)" 232 = "Girl Living In" 233 = "Grandniece (W)" 236 = "Mother-In-Law of Son on Line 3" 240 = "Children" 257 = "Godson - adopted" 998 = "Not applicable" 999 = "Illegible/Meaningless"; VALUE V143FT (MAX=40) 0 = "None specified" 99 = "No such family member"; VALUE V144FT (MAX=40) 0 = "Refused to give age, no rep, dont know/" 99 = "No such family member"; VALUE V147FT (MAX=40) 0 = "None specified" 1 = "Self-employed" 2 = "Salaried worker/wage earner" 3 = "Employed on work-relief project" 9 = "No such family member"; VALUE V148FT (MAX=40) 999.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V149FT (MAX=40) 0 = "Refused to give, no reply, dont know/no" 1 = "Hour" 2 = "Day" 3 = "Week" 4 = "Month" 5 = "Year" 9 = "No such family member"; VALUE V150FT (MAX=40) 999.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V151FT (MAX=40) 9999.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V152FT (MAX=40) 0 = "No such family member" 1 = "Daughter" 3 = "Head" 4 = "Son" 5 = "Grandson" 6 = "Sister of wife" 7 = "Son (adopted)" 8 = "Daughter (adopted)" 9 = "Granddaughter" 10 = "Son in law" 11 = "Husband" 12 = "Wife" 13 = "Father (w)" 14 = "Mother of wife" 16 = "Daughter of wife" 17 = "Sister" 18 = "Son (w)" 19 = "Brother-in-law" 20 = "Nephew" 21 = "Brother of husband" 22 = "Cousin of husband" 24 = "Mother" 25 = "Sister (h)" 26 = "Daughter (h)" 27 = "Daughter-in-law (w-3)" 28 = "Father" 29 = "Friend" 30 = "Granddaughter (d-3)" 31 = "Grandson (s-3)" 32 = "Niece (w)" 33 = "Brother" 34 = "Daughter-in-law" 35 = "Aunt" 37 = "Mother (h)" 38 = "Cousin" 39 = "Father (h)" 40 = "Niece" 41 = "Head Female" 42 = "Brother of wife" 43 = "Daughter of Husband" 45 = "Son of husband" 46 = "Niece (h)" 47 = "Nephew (h)" 48 = "Aunt (w)" 49 = "Cousin (w)" 52 = "Son-in-law (h-3)" 54 = "nephew(w)" 55 = "Mother-in-law" 56 = "Grandson (3)" 57 = "Stepson (h)" 60 = "Stepson" 62 = "Wife's Mother/Mother of Wife" 64 = "Aunt (h)" 65 = "Granddaughter (3)" 70 = "Father (2)" 71 = "Son (foster)" 74 = "Son-in-law (h-4)" 75 = "Grandson (s-4, 5)" 76 = "Householder" 77 = "Son of wife" 78 = "Father-in-law" 79 = "Partner householder" 80 = "Roomer" 82 = "Bachelor" 84 = "Boy" 86 = "Husband (5)" 88 = "Daughter (5 & 6)" 89 = "Grand daughter (L-4)" 92 = "Widow" 93 = "Widower" 94 = "Sister-in-law" 102 = "Brother in law (husband of #5)" 107 = "Female friend" 109 = "Son (4)" 111 = "Son in law (h-4)" 116 = "Great Grandmother (w)" 118 = "Brother-in-law (h-4)" 119 = "Great Granddaughter" 120 = "Sister (II 1)" 121 = "Sister (II 3)" 122 = "Granddaughter-in-law" 123 = "Grandson (h)" 124 = "Husband (son-in-law)" 125 = "Daughter (w-3)" 126 = "Gr.daughter (d3-7)" 127 = "Grandson (s-3-4)" 128 = "Great grandmother" 130 = "Daughter (d4)" 132 = "Grand nephew (w)" 133 = "Gr.daughter d4" 134 = "Female" 135 = "Nephew #-2" 200 = "Boy (Ward)" 201 = "Child" 202 = "Foster daughter" 203 = "Friend Of Husband & Wife" 205 = "Granddaughter (H)" 206 = "Nephew (H and W)" 207 = "Orphan - No Relation" 208 = "Step Daughter" 209 = "Unrelated Woman" 212 = "Daughter In Law (H)" 213 = "Protege" 214 = "Taken boy" 215 = "Unrelated" 216 = "Husbands Half Brother" 217 = "Man" 218 = "Stillborn Child" 219 = "Friend Of Family" 223 = "Foster Child" 225 = "Grandmother (H)" 229 = "Daughter of 4" 230 = "Daughter-In-Law (W)" 232 = "Girl Living In" 233 = "Grandniece (W)" 236 = "Mother-In-Law of Son on Line 3" 240 = "Children" 257 = "Godson - adopted" 998 = "Not applicable" 999 = "Illegible/Meaningless"; VALUE V153FT (MAX=40) 0 = "None specified" 99 = "No such family member"; VALUE V154FT (MAX=40) 0 = "Refused to give age, no rep, dont know/" 99 = "No such family member"; VALUE V157FT (MAX=40) 0 = "None specified" 1 = "Self-employed" 2 = "Salaried worker/wage earner" 3 = "Employed on work-relief project" 9 = "No such family member"; VALUE V158FT (MAX=40) 999.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V159FT (MAX=40) 0 = "Refused to give, no rep, dont know/not" 1 = "Hour" 2 = "Day" 3 = "Week" 4 = "Month" 5 = "Year" 9 = "No such family member"; VALUE V160FT (MAX=40) 99.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V161FT (MAX=40) 999.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V162FT (MAX=40) 0 = "No such family member" 1 = "Daughter" 3 = "Head" 4 = "Son" 5 = "Grandson" 6 = "Sister of wife" 7 = "Son (adopted)" 8 = "Daughter (adopted)" 9 = "Granddaughter" 10 = "Son in law" 11 = "Husband" 12 = "Wife" 13 = "Father (w)" 14 = "Mother of wife" 16 = "Daughter of wife" 17 = "Sister" 18 = "Son (w)" 19 = "Brother-in-law" 20 = "Nephew" 21 = "Brother of husband" 22 = "Cousin of husband" 24 = "Mother" 25 = "Sister (h)" 26 = "Daughter (h)" 27 = "Daughter-in-law (w-3)" 28 = "Father" 29 = "Friend" 30 = "Granddaughter (d-3)" 31 = "Grandson (s-3)" 32 = "Niece (w)" 33 = "Brother" 34 = "Daughter-in-law" 35 = "Aunt" 37 = "Mother (h)" 38 = "Cousin" 39 = "Father (h)" 40 = "Niece" 41 = "Head Female" 42 = "Brother of wife" 43 = "Daughter of Husband" 45 = "Son of husband" 46 = "Niece (h)" 47 = "Nephew (h)" 48 = "Aunt (w)" 49 = "Cousin (w)" 52 = "Son-in-law (h-3)" 54 = "nephew(w)" 55 = "Mother-in-law" 56 = "Grandson (3)" 57 = "Stepson (h)" 60 = "Stepson" 62 = "Wife's Mother/Mother of Wife" 64 = "Aunt (h)" 65 = "Granddaughter (3)" 70 = "Father (2)" 71 = "Son (foster)" 74 = "Son-in-law (h-4)" 75 = "Grandson (s-4, 5)" 76 = "Householder" 77 = "Son of wife" 78 = "Father-in-law" 79 = "Partner householder" 80 = "Roomer" 82 = "Bachelor" 84 = "Boy" 86 = "Husband (5)" 88 = "Daughter (5 & 6)" 89 = "Grand daughter (L-4)" 92 = "Widow" 93 = "Widower" 94 = "Sister-in-law" 102 = "Brother in law (husband of #5)" 107 = "Female friend" 109 = "Son (4)" 111 = "Son in law (h-4)" 116 = "Great Grandmother (w)" 118 = "Brother-in-law (h-4)" 119 = "Great Granddaughter" 120 = "Sister (II 1)" 121 = "Sister (II 3)" 122 = "Granddaughter-in-law" 123 = "Grandson (h)" 124 = "Husband (son-in-law)" 125 = "Daughter (w-3)" 126 = "Gr.daughter (d3-7)" 127 = "Grandson (s-3-4)" 128 = "Great grandmother" 130 = "Daughter (d4)" 132 = "Grand nephew (w)" 133 = "Gr.daughter d4" 134 = "Female" 135 = "Nephew #-2" 200 = "Boy (Ward)" 201 = "Child" 202 = "Foster daughter" 203 = "Friend Of Husband & Wife" 205 = "Granddaughter (H)" 206 = "Nephew (H and W)" 207 = "Orphan - No Relation" 208 = "Step Daughter" 209 = "Unrelated Woman" 212 = "Daughter In Law (H)" 213 = "Protege" 214 = "Taken boy" 215 = "Unrelated" 216 = "Husbands Half Brother" 217 = "Man" 218 = "Stillborn Child" 219 = "Friend Of Family" 223 = "Foster Child" 225 = "Grandmother (H)" 229 = "Daughter of 4" 230 = "Daughter-In-Law (W)" 232 = "Girl Living In" 233 = "Grandniece (W)" 236 = "Mother-In-Law of Son on Line 3" 240 = "Children" 257 = "Godson - adopted" 998 = "Not applicable" 999 = "Illegible/Meaningless"; VALUE V163FT (MAX=40) 0 = "None specified" 99 = "No such family member"; VALUE V164FT (MAX=40) 0 = "Refused to give age, no rep, dont know/" 99 = "No such family member"; VALUE V167FT (MAX=40) 0 = "None specified" 1 = "Self-employed" 2 = "Salaried worker/wage earner" 3 = "Employed on work-relief project" 9 = "No such family member"; VALUE V168FT (MAX=40) 99.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V169FT (MAX=40) 0 = "Refused to give, no reply, DK/NA" 1 = "Hour" 2 = "Day" 3 = "Week" 4 = "Month" 5 = "Year" 9 = "No such family member"; VALUE V170FT (MAX=40) 99.99 = "Refused to give, no reply, DK/NA, no suc"; VALUE V171FT (MAX=40) 999.99 = "Refused to give, no reply, DK/NA, no suc"; VALUE V172FT (MAX=40) 0 = "No such family member" 1 = "Daughter" 3 = "Head" 4 = "Son" 5 = "Grandson" 6 = "Sister of wife" 7 = "Son (adopted)" 8 = "Daughter (adopted)" 9 = "Granddaughter" 10 = "Son in law" 11 = "Husband" 12 = "Wife" 13 = "Father (w)" 14 = "Mother of wife" 16 = "Daughter of wife" 17 = "Sister" 18 = "Son (w)" 19 = "Brother-in-law" 20 = "Nephew" 21 = "Brother of husband" 22 = "Cousin of husband" 24 = "Mother" 25 = "Sister (h)" 26 = "Daughter (h)" 27 = "Daughter-in-law (w-3)" 28 = "Father" 29 = "Friend" 30 = "Granddaughter (d-3)" 31 = "Grandson (s-3)" 32 = "Niece (w)" 33 = "Brother" 34 = "Daughter-in-law" 35 = "Aunt" 37 = "Mother (h)" 38 = "Cousin" 39 = "Father (h)" 40 = "Niece" 41 = "Head Female" 42 = "Brother of wife" 43 = "Daughter of Husband" 45 = "Son of husband" 46 = "Niece (h)" 47 = "Nephew (h)" 48 = "Aunt (w)" 49 = "Cousin (w)" 52 = "Son-in-law (h-3)" 54 = "nephew(w)" 55 = "Mother-in-law" 56 = "Grandson (3)" 57 = "Stepson (h)" 60 = "Stepson" 62 = "Wife's Mother/Mother of Wife" 64 = "Aunt (h)" 65 = "Granddaughter (3)" 70 = "Father (2)" 71 = "Son (foster)" 74 = "Son-in-law (h-4)" 75 = "Grandson (s-4, 5)" 76 = "Householder" 77 = "Son of wife" 78 = "Father-in-law" 79 = "Partner householder" 80 = "Roomer" 82 = "Bachelor" 84 = "Boy" 86 = "Husband (5)" 88 = "Daughter (5 & 6)" 89 = "Grand daughter (L-4)" 92 = "Widow" 93 = "Widower" 94 = "Sister-in-law" 102 = "Brother in law (husband of #5)" 107 = "Female friend" 109 = "Son (4)" 111 = "Son in law (h-4)" 116 = "Great Grandmother (w)" 118 = "Brother-in-law (h-4)" 119 = "Great Granddaughter" 120 = "Sister (II 1)" 121 = "Sister (II 3)" 122 = "Granddaughter-in-law" 123 = "Grandson (h)" 124 = "Husband (son-in-law)" 125 = "Daughter (w-3)" 126 = "Gr.daughter (d3-7)" 127 = "Grandson (s-3-4)" 128 = "Great grandmother" 130 = "Daughter (d4)" 132 = "Grand nephew (w)" 133 = "Gr.daughter d4" 134 = "Female" 135 = "Nephew #-2" 200 = "Boy (Ward)" 201 = "Child" 202 = "Foster daughter" 203 = "Friend Of Husband & Wife" 205 = "Granddaughter (H)" 206 = "Nephew (H and W)" 207 = "Orphan - No Relation" 208 = "Step Daughter" 209 = "Unrelated Woman" 212 = "Daughter In Law (H)" 213 = "Protege" 214 = "Taken boy" 215 = "Unrelated" 216 = "Husbands Half Brother" 217 = "Man" 218 = "Stillborn Child" 219 = "Friend Of Family" 223 = "Foster Child" 225 = "Grandmother (H)" 229 = "Daughter of 4" 230 = "Daughter-In-Law (W)" 232 = "Girl Living In" 233 = "Grandniece (W)" 236 = "Mother-In-Law of Son on Line 3" 240 = "Children" 257 = "Godson - adopted" 998 = "Not applicable" 999 = "Illegible/Meaningless"; VALUE V173FT (MAX=40) 0 = "None specified" 99 = "No such family member"; VALUE V174FT (MAX=40) 0 = "Refused to give age, no rep, dont know/" 99 = "No such family member"; VALUE V177FT (MAX=40) 0 = "None specified" 1 = "Self-employed" 2 = "Salaried worker/wage earner" 3 = "Employed on work-relief project" 9 = "No such family member"; VALUE V178FT (MAX=40) 99.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V179FT (MAX=40) 0 = "Refused to give, no rep, dont know/not" 1 = "Hour" 2 = "Day" 3 = "Week" 4 = "Month" 5 = "Year" 9 = "No such family member"; VALUE V180FT (MAX=40) 99.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V181FT (MAX=40) 999.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V182FT (MAX=40) 0 = "No such family member" 1 = "Daughter" 3 = "Head" 4 = "Son" 5 = "Grandson" 6 = "Sister of wife" 7 = "Son (adopted)" 8 = "Daughter (adopted)" 9 = "Granddaughter" 10 = "Son in law" 11 = "Husband" 12 = "Wife" 13 = "Father (w)" 14 = "Mother of wife" 16 = "Daughter of wife" 17 = "Sister" 18 = "Son (w)" 19 = "Brother-in-law" 20 = "Nephew" 21 = "Brother of husband" 22 = "Cousin of husband" 24 = "Mother" 25 = "Sister (h)" 26 = "Daughter (h)" 27 = "Daughter-in-law (w-3)" 28 = "Father" 29 = "Friend" 30 = "Granddaughter (d-3)" 31 = "Grandson (s-3)" 32 = "Niece (w)" 33 = "Brother" 34 = "Daughter-in-law" 35 = "Aunt" 37 = "Mother (h)" 38 = "Cousin" 39 = "Father (h)" 40 = "Niece" 41 = "Head Female" 42 = "Brother of wife" 43 = "Daughter of Husband" 45 = "Son of husband" 46 = "Niece (h)" 47 = "Nephew (h)" 48 = "Aunt (w)" 49 = "Cousin (w)" 52 = "Son-in-law (h-3)" 54 = "nephew(w)" 55 = "Mother-in-law" 56 = "Grandson (3)" 57 = "Stepson (h)" 60 = "Stepson" 62 = "Wife's Mother/Mother of Wife" 64 = "Aunt (h)" 65 = "Granddaughter (3)" 70 = "Father (2)" 71 = "Son (foster)" 74 = "Son-in-law (h-4)" 75 = "Grandson (s-4, 5)" 76 = "Householder" 77 = "Son of wife" 78 = "Father-in-law" 79 = "Partner householder" 80 = "Roomer" 82 = "Bachelor" 84 = "Boy" 86 = "Husband (5)" 88 = "Daughter (5 & 6)" 89 = "Grand daughter (L-4)" 92 = "Widow" 93 = "Widower" 94 = "Sister-in-law" 102 = "Brother in law (husband of #5)" 107 = "Female friend" 109 = "Son (4)" 111 = "Son in law (h-4)" 116 = "Great Grandmother (w)" 118 = "Brother-in-law (h-4)" 119 = "Great Granddaughter" 120 = "Sister (II 1)" 121 = "Sister (II 3)" 122 = "Granddaughter-in-law" 123 = "Grandson (h)" 124 = "Husband (son-in-law)" 125 = "Daughter (w-3)" 126 = "Gr.daughter (d3-7)" 127 = "Grandson (s-3-4)" 128 = "Great grandmother" 130 = "Daughter (d4)" 132 = "Grand nephew (w)" 133 = "Gr.daughter d4" 134 = "Female" 135 = "Nephew #-2" 200 = "Boy (Ward)" 201 = "Child" 202 = "Foster daughter" 203 = "Friend Of Husband & Wife" 205 = "Granddaughter (H)" 206 = "Nephew (H and W)" 207 = "Orphan - No Relation" 208 = "Step Daughter" 209 = "Unrelated Woman" 212 = "Daughter In Law (H)" 213 = "Protege" 214 = "Taken boy" 215 = "Unrelated" 216 = "Husbands Half Brother" 217 = "Man" 218 = "Stillborn Child" 219 = "Friend Of Family" 223 = "Foster Child" 225 = "Grandmother (H)" 229 = "Daughter of 4" 230 = "Daughter-In-Law (W)" 232 = "Girl Living In" 233 = "Grandniece (W)" 236 = "Mother-In-Law of Son on Line 3" 240 = "Children" 257 = "Godson - adopted" 998 = "Not applicable" 999 = "Illegible/Meaningless"; VALUE V183FT (MAX=40) 0 = "None specified" 99 = "No such family member"; VALUE V184FT (MAX=40) 0 = "Refused to give age, no rep, dont know/" 99 = "No such family member"; VALUE V187FT (MAX=40) 0 = "None specified" 1 = "Self-employed" 2 = "Salaried worker/wage earner" 3 = "Employed on work-relief project" 9 = "No such family member"; VALUE V188FT (MAX=40) 99.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V189FT (MAX=40) 0 = "Refused to give, no rep, dont know/not" 1 = "Hour" 2 = "Day" 3 = "Week" 4 = "Month" 5 = "Year" 9 = "No such family member"; VALUE V190FT (MAX=40) 99.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V191FT (MAX=40) 999.99 = "Refused to give, no rep, DK/NA, no such"; VALUE V192FT (MAX=40) 99999.99 = "Refused to give, no rep, dont know/not"; VALUE V193FT (MAX=40) 99999.99 = "Refused to give, no rep, dont know/not"; VALUE V206FT (MAX=40) 99999.99 = "Missing data"; VALUE V207FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V208FT (MAX=40) 0 = "No" 1 = "Yes" 9 = "Illegible/Meaningless"; VALUE V209FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V210FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V212FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V214FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V216FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V218FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V220FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V222FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V224FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V226FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V228FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V230FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V252FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V256FT (MAX=40) 0 = "None" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks"; VALUE V259FT (MAX=40) 0 = "None" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks" 99 = "Illegible/ Meaningless"; VALUE V262FT (MAX=40) 0 = "None" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks"; VALUE V265FT (MAX=40) 0 = "None" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks"; VALUE V297FT (MAX=40) 622 = "June 22" 9999 = "Illegibl/ Meaningless"; VALUE V298FT (MAX=40) 101 = "January 1" 9999 = "Missing Data"; VALUE V299FT (MAX=40) 1231 = "December 31" 9999 = "Illegible/Meaningless"; VALUE V300FT (MAX=40) 0 = "Dont know/not applicable" 5 = "1935" 6 = "1936" 7 = "1937" 8 = "1938"; VALUE V301FT (MAX=40) .00 = "None" 1.00 = "1 month" 2.00 = "2 months" 3.00 = "3 months" 4.00 = "4 months" 5.00 = "5 months" 6.00 = "6 months" 7.00 = "7 months" 8.00 = "8 months" 9.00 = "9 months" 10.00 = "10 months" 11.00 = "11 months" 12.00 = "12 months"; VALUE V302FT (MAX=40) 1 = "A - Single family detached" 2 = "B - One family attached" 3 = "C - 2 Family - side by side" 4 = "D - 2 family house, 2 decks (d)" 5 = "E - Multiple dwelling" 6 = "F - 4 fam. apt. build." 7 = "G - 5 fam. apt. build." 8 = "H - Residence in building" 10 = "J" 11 = "K - Dwelling unit in church" 50 = "1 family house" 51 = "2 family house" 53 = "3 family house" 54 = "4 family house" 55 = "5 family house" 56 = "6 family house" 57 = "7 family house" 58 = "8 family house" 59 = "9 family house" 60 = "Apartment Building" 62 = "l a h r" 63 = "lah nr" 65 = "m. f. d." 66 = "Multiple" 67 = "Multiple family dwelling" 68 = "N" 69 = "One family house" 70 = "Room" 71 = "Westmore apartment building" 72 = "X" 73 = "y" 75 = "Basement of apartment house" 76 = "Detached 2 family house" 77 = "Multiple family apartments" 78 = "One family floorlong" 79 = "Two story farm dwelling" 80 = "Hotel-apartment" 81 = "Multiple family dwelling, 3 families" 82 = "One family side by side" 83 = "Rooms" 84 = "Three family house" 99 = "Illegible/Meaningless"; VALUE V303FT (MAX=40) 1 = "One" 2 = "Two" 3 = "Three" 4 = "Four" 5 = "Five" 6 = "Six" 7 = "Seven" 8 = "Eight" 9 = "Nine" 10 = "Ten" 97 = "Refused" 98 = "Dont know" 99 = "Missing data"; VALUE V305FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V306FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V307FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V308FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V309FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V310FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V311FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V312FT (MAX=40) 0 = "Missing Data" 1 = "Family reported having this facility" 2 = "Family did not report having this facili"; VALUE V313FT (MAX=40) 0 = "Missing Data" 1 = "Family reported having this facility" 2 = "Family did not report having this facili"; VALUE V314FT (MAX=40) 0 = "Missing Data" 1 = "Family reported having this facility" 2 = "Family did not report having this facili"; VALUE V315FT (MAX=40) 0 = "Missing Data" 1 = "Family reported having this facility" 2 = "Family did not report having this facili"; VALUE V316FT (MAX=40) 0 = "Missing Data" 1 = "Family reported having this facility" 2 = "Family did not report having this facili"; VALUE V317FT (MAX=40) 0 = "Missing Data" 1 = "Family reported having this facility" 2 = "Family did not report having this facili"; VALUE V318FT (MAX=40) 0 = "Missing Data" 1 = "Family reported having this facility" 2 = "Family did not report having this facili"; VALUE V319FT (MAX=40) 0 = "Missing Data" 1 = "Family reported having this facility" 2 = "Family did not report having this facili"; VALUE V320FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V321FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V322FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V323FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V324FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V325FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V326FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V327FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V328FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V329FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V332FT (MAX=40) 0 = "Missing Data" 1 = "Family reported having this facility" 2 = "Family did not report having this facili"; VALUE V333FT (MAX=40) 0 = "Missing Data" 1 = "Family reported using this method"; VALUE V334FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V335FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V336FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V338FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V339FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V340FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V341FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V342FT (MAX=40) 0 = "Missing Data" 1 = "Family reported using this method"; VALUE V343FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V344FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V345FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V346FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V347FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V348FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V349FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V350FT (MAX=40) 0 = "Missing Data" 1 = "Family reported using this fuel."; VALUE V351FT (MAX=40) 0 = "Missing Data" 1 = "Family reported using this fuel."; VALUE V352FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V353FT (MAX=40) .00 = "Zero months" 1.00 = "One month" 2.00 = "Two months" 3.00 = "Three months" 4.00 = "Four months" 5.00 = "Five months" 6.00 = "Six months" 7.00 = "Seven months" 8.00 = "Eight months" 9.00 = "Nine months" 10.00 = "Ten months" 11.00 = "Eleven months" 12.00 = "Twelve months"; VALUE V354FT (MAX=40) .00 = "Zero months" 1.00 = "One month" 2.00 = "Two months" 3.00 = "Three months" 4.00 = "Four months" 5.00 = "Five months" 6.00 = "Six months" 7.00 = "Seven months" 8.00 = "Eight months" 9.00 = "Nine months" 10.00 = "Ten months" 11.00 = "Eleven months" 12.00 = "Twelve months"; VALUE V365FT (MAX=40) .00 = "Zero months" 1.00 = "One month" 2.00 = "Two months" 3.00 = "Three months" 4.00 = "Four months" 5.00 = "Five months" 6.00 = "Six months" 7.00 = "Seven months" 8.00 = "Eight months" 9.00 = "Nine months" 10.00 = "Ten months" 11.00 = "Eleven months" 12.00 = "Twelve months"; VALUE V366FT (MAX=40) .00 = "Zero months" 1.00 = "One month" 2.00 = "Two months" 3.00 = "Three months" 4.00 = "Four months" 5.00 = "Five months" 6.00 = "Six months" 7.00 = "Seven months" 8.00 = "Eight months" 9.00 = "Nine months" 10.00 = "Ten months" 11.00 = "Eleven months" 12.00 = "Twelve months"; VALUE V367FT (MAX=40) .00 = "Zero months" 1.00 = "One month" 2.00 = "Two months" 3.00 = "Three months" 4.00 = "Four months" 5.00 = "Five months" 6.00 = "Six months" 7.00 = "Seven months" 8.00 = "Eight months" 9.00 = "Nine months" 10.00 = "Ten months" 11.00 = "Eleven months" 12.00 = "Twelve months"; VALUE V368FT (MAX=40) .00 = "Zero months" 1.00 = "One month" 2.00 = "Two months" 3.00 = "Three months" 4.00 = "Four months" 5.00 = "Five months" 6.00 = "Six months" 7.00 = "Seven months" 8.00 = "Eight months" 9.00 = "Nine months" 10.00 = "Ten months" 11.00 = "Eleven months" 12.00 = "Twelve months"; VALUE V404FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V405FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V406FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V407FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V408FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V409FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V410FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V411FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V412FT (MAX=40) 0 = "No Reply" 1 = "January" 2 = "February" 3 = "March" 4 = "April" 5 = "May" 6 = "June" 7 = "July" 8 = "August" 9 = "September" 10 = "October" 11 = "November" 12 = "December" 13 = "December, January, February" 14 = "March, April, May" 15 = "June, July, August" 16 = "September, October, November" 17 = "January, February" 18 = "January, February, March" 19 = "March, April" 20 = "April, May" 21 = "April, May, June" 22 = "June, July" 23 = "July, August" 24 = "August, September" 25 = "September, October" 26 = "October, November" 27 = "October, November, December" 28 = "December, January" 29 = "February, March" 30 = "Spring" 31 = "Summer" 32 = "Fall" 33 = "Winter" 91 = "December, April, May" 93 = "June, July, October" 94 = "April, October, November" 95 = "September, October, February" 96 = "September, November, December 1935" 99 = "Illegible/ Meaningless"; VALUE V413FT (MAX=40) 0 = "No Reply" 1 = "January" 2 = "February" 3 = "March" 4 = "April" 5 = "May" 6 = "June" 7 = "July" 8 = "August" 9 = "September" 10 = "October" 11 = "November" 12 = "December" 13 = "December, January, February" 14 = "March, April, May" 15 = "June, July, August" 16 = "September, October, November" 17 = "January, February" 18 = "January, February, March" 19 = "March, April" 20 = "April, May" 21 = "April, May, June" 22 = "June, July" 23 = "July, August" 24 = "August, September" 25 = "September, October" 26 = "October, November" 27 = "October, November, December" 28 = "December, January" 29 = "February, March" 30 = "Spring" 31 = "Summer" 32 = "Fall" 33 = "Winter" 91 = "December, April, May" 93 = "June, July, October" 94 = "April, October, November" 95 = "September, October, February" 96 = "September, November, December 1935" 99 = "Illegible/ Meaningless"; VALUE V414FT (MAX=40) 0 = "No Reply" 1 = "January" 2 = "February" 3 = "March" 4 = "April" 5 = "May" 6 = "June" 7 = "July" 8 = "August" 9 = "September" 10 = "October" 11 = "November" 12 = "December" 13 = "December, January, February" 14 = "March, April, May" 15 = "June, July, August" 16 = "September, October, November" 17 = "January, February" 18 = "January, February, March" 19 = "March, April" 20 = "April, May" 21 = "April, May, June" 22 = "June, July" 23 = "July, August" 24 = "August, September" 25 = "September, October" 26 = "October, November" 27 = "October, November, December" 28 = "December, January" 29 = "February, March" 30 = "Spring" 31 = "Summer" 32 = "Fall" 33 = "Winter" 91 = "December, April, May" 93 = "June, July, October" 94 = "April, October, November" 95 = "September, October, February" 96 = "September, November, December 1935" 99 = "Illegible/ Meaningless"; VALUE V415FT (MAX=40) 0 = "No Reply" 1 = "January" 2 = "February" 3 = "March" 4 = "April" 5 = "May" 6 = "June" 7 = "July" 8 = "August" 9 = "September" 10 = "October" 11 = "November" 12 = "December" 13 = "December, January, February" 14 = "March, April, May" 15 = "June, July, August" 16 = "September, October, November" 17 = "January, February" 18 = "January, February, March" 19 = "March, April" 20 = "April, May" 21 = "April, May, June" 22 = "June, July" 23 = "July, August" 24 = "August, September" 25 = "September, October" 26 = "October, November" 27 = "October, November, December" 28 = "December, January" 29 = "February, March" 30 = "Spring" 31 = "Summer" 32 = "Fall" 33 = "Winter" 91 = "December, April, May" 93 = "June, July, October" 94 = "April, October, November" 95 = "September, October, February" 96 = "September, November, December 1935" 99 = "Illegible/ Meaningless"; VALUE V416FT (MAX=40) 0 = "No Reply" 1 = "January" 2 = "February" 3 = "March" 4 = "April" 5 = "May" 6 = "June" 7 = "July" 8 = "August" 9 = "September" 10 = "October" 11 = "November" 12 = "December" 13 = "December, January, February" 14 = "March, April, May" 15 = "June, July, August" 16 = "September, October, November" 17 = "January, February" 18 = "January, February, March" 19 = "March, April" 20 = "April, May" 21 = "April, May, June" 22 = "June, July" 23 = "July, August" 24 = "August, September" 25 = "September, October" 26 = "October, November" 27 = "October, November, December" 28 = "December, January" 29 = "February, March" 30 = "Spring" 31 = "Summer" 32 = "Fall" 33 = "Winter" 91 = "December, April, May" 93 = "June, July, October" 94 = "April, October, November" 95 = "September, October, February" 96 = "September, November, December 1935" 99 = "Illegible/ Meaningless"; VALUE V417FT (MAX=40) 0 = "No Reply" 1 = "100 pound bag / 1 cwt" 2 = "Ton" 3 = "1/2 ton / 1000 pound ton" 4 = "20 pound bag" 5 = "200 pounds" 6 = "2000 pound ton for 4.50, 100 pound sack" 7 = "2000 pound ton, 100 pound sack" 8 = "2000 pound ton, 5 tons at 8.00 each and" 9 = "2000 pound ton; 4 tons at 5.50, 12 tons" 10 = "300 pound sack" 11 = "50 pound bag" 12 = "80 pound bu" 13 = "Bag" 14 = "Cord" 15 = "Pound" 16 = "Ton, 12.50 for 5 tons, and 10.25 for 1 t" 17 = "R refused to itemize expenses" 18 = "2000 pound ton / short ton" 19 = "1/4 ton 1 165" 99 = "Illegible/ Meaningless"; VALUE V429FT (MAX=40) 0 = "No Reply" 1 = "1 pound" 2 = "100 pound" 3 = "1000 pound ton" 4 = "15 pounds" 5 = "18 pound bag" 6 = "2000 pound ton" 7 = "3 pound bag" 8 = "6 pound bag" 9 = "Bag" 10 = "Briquets in tons" 11 = "Sack" 12 = "Ton" 13 = "11 tons for 13.00/ton and 2 tons for 12." 99 = "Illegible/ Meaningless"; VALUE V441FT (MAX=40) 0 = "No Reply" 1 = "Gallon" 2 = "50 gallon barrel" 3 = "100 gallons" 4 = "200 gallon" 5 = "3 pound bag"; VALUE V453FT (MAX=40) 0 = "No Reply" 1 = ".1 cord" 2 = ".25 cord" 3 = ".25 truck" 4 = ".5 cord" 5 = "1/8 cord" 6 = "10 pound" 7 = "100 pound" 8 = "1000 pound" 9 = "15 pound bag" 10 = "16 inch cord" 11 = "18 pound" 12 = "2 bag" 13 = "2 bundles" 14 = "2 bunch" 15 = "2 bushel basket" 16 = "2 cords at 5.00 each, and 1 load at 2.00" 17 = "200 cubic feet sawdust" 18 = "200 pound sawdust" 19 = "2000 pounds" 20 = "250 pound" 21 = "3 10 pound bags" 22 = "3 baskets" 23 = "3 bundles" 24 = "300 pound" 25 = "4 load" 26 = "500 pound" 27 = "Bag" 28 = "Bags, cords" 29 = "Basket" 30 = "Bundle" 31 = "Bunch" 32 = "Bushel" 33 = "Bundle of kindling" 34 = "Bucket" 35 = "Cord, bundle" 36 = "Bunch, cord" 37 = "Cord" 38 = "Bushel basket" 39 = "Gallon" 40 = "Load" 41 = "Load for 4.00, cord for 5.00" 42 = "Sack" 43 = "Rick" 44 = "Load kindling" 45 = "Sack, cord" 46 = "Sawdust" 47 = "Ton" 48 = ".2 cord" 49 = "1/1000 cord" 50 = "1/250 cord" 51 = "1/12 cord" 52 = "6 bunches" 98 = "X"; VALUE V465FT (MAX=40) 0 = "No Reply" 1 = "1 carton presto logs" 2 = "175 gallons" 3 = "5 gallons" 4 = "50 gallons" 5 = "Gallon" 6 = "Gallon gas" 7 = "Gallon range oil" 8 = "Load" 9 = "LT" 10 = "N.R." 11 = "Quarts" 12 = "2 gallion" 76 = "1" 77 = "Kilowatt-hour"; VALUE V478FT (MAX=40) 0 = "No Reply" 1 = "1 kilowatt-hour" 2 = "100 kilowatt-hours" 3 = "1000 kilowatt-hours" 4 = "60 kilowatt-hours" 5 = "Kilowatt-hour" 6 = "Kilowatt-hour sliding scale" 7 = "elect. hr." 9 = "Illegible/ Meaningless"; VALUE V485FT (MAX=40) 0 = "No Reply" 1 = "1 m" 2 = "1 m. ft." 3 = "100 cubic feet" 4 = "1000 cubic feet" 5 = "1000 cubic feet sliding scale" 6 = "1800 cubic feet" 7 = "200 cubic feet for .75" 8 = "2000 cubic feet" 9 = "6 cubic feet" 10 = "Cubic feet" 11 = "Cubic feet slding scale" 12 = "Cubic feet sliding scale water heater" 13 = "hot water heater" 14 = "I.M sliding scale" 15 = "M cubic feet" 16 = "Rate" 17 = "Sliding scale" 18 = "Therm" 19 = "Therm sliding scale" 72 = "6" 73 = "Cubmotor" 74 = "M" 75 = "Pounds" 99 = "Illegible/ Meaningless"; VALUE V492FT (MAX=40) 0 = "No Reply" 1 = ".5 pound" 2 = ".5 CWT." 3 = "1 pound" 4 = "10 pound" 5 = "100 pound" 6 = "1000 pound" 7 = "12.5 pound" 8 = "2.5 pound" 9 = "20 pound" 10 = "200 pound" 11 = "25 pound" 12 = "30 pound" 13 = "35 pound" 14 = "40 pound" 15 = "5 pound" 16 = "50 pound" 17 = "500 pound" 18 = "59 pound cake" 19 = "75 pound" 20 = "Crate" 21 = "Pound" 22 = "Piece" 23 = "X" 24 = "Cubic feet" 80 = "1" 81 = "100" 82 = "3.6" 83 = "30" 84 = "33" 85 = "50" 86 = "8.67" 87 = "1000 c f" 88 = "25 CWT"; VALUE V504FT (MAX=40) 0 = "No Reply" 1 = "1 pound 12 oz bag of charcoal" 2 = "200 cubic feet sawdust" 3 = "Pound" 4 = "Saw dust 100 pound unit" 5 = "Saw dust 200 pound unit" 6 = "Sawdust" 7 = "Load" 8 = "Bag of charcoal" 9 = "Bundle of kindling" 10 = "Kindling" 11 = "Load" 12 = "Load of kindling" 13 = "Load of sawdust" 14 = "Unit of sawdust" 99 = "Illegible/ Meaningless"; VALUE V532FT (MAX=40) 0 = "No Reply" 12 = "1 Ton" 13 = "11 tons for 13.00/ton and 2 tons for 12." 20 = ".2" 21 = ".5" 22 = "1" 23 = "1.5" 24 = "12" 25 = "2" 26 = "3" 27 = "4" 28 = "5" 29 = "6" 30 = "7.5" 40 = ".25" 41 = ".6" 42 = "1 Load" 43 = "10 Cords" 44 = "24" 45 = "8"; VALUE V534FT (MAX=40) 0 = "No Reply" 30 = "Bundle" 37 = "1 cord" 40 = "1 load" 47 = "1 ton" 50 = "1" 51 = "1 acre" 52 = "10" 53 = "10 cords" 54 = "11" 55 = "12" 56 = "12 cords" 57 = "13 cords" 58 = "14 cords" 59 = "15" 60 = "15 cords" 61 = "16" 62 = "2" 63 = "2 cords" 64 = "20" 65 = "20 racks" 66 = "25 cords" 67 = "3" 68 = "3 cords" 69 = "30" 70 = "32" 71 = "35" 72 = "4" 73 = "4 cords" 74 = "40" 75 = "42" 76 = "5" 77 = "5 cords" 78 = "5 loads" 79 = "50" 80 = "6" 81 = "6 cords" 82 = "7" 83 = "7 cords" 84 = "8" 85 = "8 cords" 86 = "9" 87 = "9 cords" 98 = "x" 101 = ".17" 102 = ".25" 103 = ".33" 104 = ".33 cord" 105 = ".5" 106 = ".5 cord" 107 = ".5 ton" 108 = ".67" 109 = ".75" 110 = "1 pile & 1 tier" 111 = "1.25" 112 = "1.25 cords" 113 = "1.5" 114 = "1.5 cords" 115 = "1.6" 116 = "10 sacks" 117 = "100" 118 = "11 cords" 119 = "12 loads" 120 = "13" 121 = "14" 122 = "16 cords" 123 = "16 loads" 124 = "19" 125 = "2 loads" 126 = "2.5" 127 = "20 cords" 128 = "20 loads" 129 = "22" 130 = "24" 131 = "25" 132 = "26" 133 = "3 loads" 134 = "3.25" 135 = "3.5" 136 = "3.75" 137 = "30 cords" 138 = "33" 139 = "4 loads" 140 = "4.5" 141 = "40 loads" 142 = "48" 143 = "5.33" 144 = "5.5" 145 = "52" 146 = "52 loads" 147 = "6 loads" 148 = "6.5" 149 = "6.6" 150 = "7 loads" 151 = "7.5" 152 = "70" 153 = "90" 154 = "900" 155 = "Cob (2 loads)" 156 = "Cob 1 load"; VALUE V561FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks"; VALUE V562FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V563FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V564FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V565FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V569FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks"; VALUE V570FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V571FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V572FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V573FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V577FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks"; VALUE V578FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V579FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V580FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V584FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks"; VALUE V585FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V586FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V587FT (MAX=40) 0 = "No" 1 = "Yes" 9 = "Illegible/ Meaningless"; VALUE V588FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V592FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks"; VALUE V593FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V594FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V595FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V596FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V622FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V623FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V624FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V625FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V628FT (MAX=40) .00 = "Zero months" 1.00 = "One month" 2.00 = "Two months" 3.00 = "Three months" 4.00 = "Four months" 5.00 = "Five months" 6.00 = "Six months" 7.00 = "Seven months" 8.00 = "Eight months" 9.00 = "Nine months" 10.00 = "Ten months" 11.00 = "Eleven months" 12.00 = "Twelve months"; VALUE V631FT (MAX=40) 0 = "0 weeks" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" 6 = "6 weeks" 7 = "7 weeks" 8 = "8 weeks" 9 = "9 weeks" 10 = "10 weeks" 11 = "11 weeks" 12 = "12 weeks" 13 = "13 weeks" 14 = "14 weeks" 15 = "15 weeks" 16 = "16 weeks" 17 = "17 weeks" 18 = "18 weeks" 19 = "19 weeks" 20 = "20 weeks" 21 = "21 weeks" 22 = "22 weeks" 23 = "23 weeks" 24 = "24 weeks" 25 = "25 weeks" 26 = "26 weeks" 27 = "27 weeks" 28 = "28 weeks" 29 = "29 weeks" 30 = "30 weeks" 31 = "31 weeks" 32 = "32 weeks" 33 = "33 weeks" 34 = "34 weeks" 35 = "35 weeks" 36 = "36 weeks" 37 = "37 weeks" 38 = "38 weeks" 39 = "39 weeks" 40 = "40 weeks" 41 = "41 weeks" 42 = "42 weeks" 43 = "43 weeks" 44 = "44 weeks" 45 = "45 weeks" 46 = "46 weeks" 47 = "47 weeks" 48 = "48 weeks" 49 = "49 weeks" 50 = "50 weeks" 51 = "51 weeks" 52 = "52 weeks"; VALUE V633FT (MAX=40) 0 = "No laundry service specified" 1 = "Cleaned" 2 = "Complete" 3 = "Curtains, draperies, etc." 4 = "Damp wash" 5 = "Done at home" 6 = "Family finish" 7 = "Family" 8 = "Finised" 9 = "Finish shirts" 10 = "Finished - wet work" 11 = "Flat" 12 = "Flat finish" 13 = "Flat ironed" 14 = "Flat wash" 15 = "Flat work" 16 = "Flat work finished" 17 = "Flat work wash" 18 = "Half wet, half finished" 19 = "Hydro" 20 = "Hydro. shirts finished" 21 = "Ironed" 22 = "Ironed and wet wash" 23 = "Ironed and mangled" 24 = "Laundry ironed" 25 = "Mangled" 26 = "Mangled - shirt finished" 27 = "Mangled shirts ironed" 28 = "Semi finish" 29 = "Shirts finished, rest rough dry" 30 = "Shirts-ironed" 31 = "Washed and ironed" 32 = "Washed and ironed finished" 33 = "Wet" 34 = "Wet and dry" 35 = "Wet wash" 36 = "Wet wash and mangled" 37 = "Wet wash shirts finished" 38 = "Combination" 39 = "Economy wash" 40 = "Finished (complete)" 41 = "Finished (prim pressed)" 42 = "Flat dryed" 43 = "Flat work ironed balance wet wash" 44 = "Rough" 45 = "Rough dry , mangled, ironed" 46 = "Rough dry, partly finished" 47 = "Rough dry, shirts finished" 48 = "Sales coats ironed" 49 = "Semi-flat" 50 = "Thrift" 51 = "Rough dried" 52 = "Rough dry finish bleach" 53 = "Collars ironed"; VALUE V640FT (MAX=40) 99 = "Illegible/ Meaningless"; VALUE V643FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V644FT (MAX=40) 99 = "Illegible/Meaningless"; VALUE V647FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V649FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V651FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V652FT (MAX=40) 0 = "01 Adenoids" 2 = "Asthma" 3 = "Astropith" 4 = "Baby" 5 = "Bone" 6 = "Chest" 7 = "Chiropodist" 8 = "Chiropractor" 9 = "Chiropractor, ear & nose" 10 = "Dental" 11 = "Dermatologist" 12 = "Ear" 13 = "Ear-nose-throat" 14 = "Eye" 15 = "Eye, ear, nose n throat" 16 = "Eye-ear-nose" 17 = "Eyes, ears & throat" 18 = "Foot" 19 = "General surgery" 20 = "General ex." 21 = "Goiter" 22 = "Gynecologist" 23 = "Heart" 24 = "Kidney" 25 = "Lansing ear" 26 = "Limb" 27 = "Nerve" 28 = "Nose" 29 = "Nose and throat" 30 = "O.b." 31 = "Operation" 32 = "Osteopath" 33 = "Pediatrician, 2 calls @ 3.00 each" 34 = "Portland sanitarium, eye-ear-nose and th" 35 = "Rdctum" 36 = "Stomach" 37 = "Throat" 38 = "Tonsilectomy" 39 = "X-ray" 40 = "Appendectomist (throat specialist)" 41 = "Appendectomy" 42 = "Blood specialist" 43 = "Bone surgeon" 44 = "Brain surgeon" 45 = "Child" 46 = "Confinement" 47 = "Dental surgeon" 48 = "Diagnostician" 49 = "Diognostician, surgeon" 50 = "Ear surgeon" 51 = "Eye, ear" 52 = "For operation" 53 = "Heart examination" 54 = "Heart-lung" 55 = "Hernia" 56 = "Lung" 57 = "Nerve- eye" 58 = "Orthopedist" 59 = "Ostepath eye" 60 = "Pre natal care" 61 = "Radiologist" 62 = "Radium-treat" 63 = "Sinus" 70 = "Cancer" 71 = "Dental x rays" 72 = "Eczyma" 73 = "Female operation" 74 = "Miscarriage" 75 = "Operation for tumor" 76 = "Setting broken arm" 77 = "Treatment for wry neck" 80 = "Child birth" 81 = "Diabetic" 82 = "Doctor at hospital" 83 = "Female specialist" 84 = "Minor operation" 85 = "Thyroid" 99 = "Illegible/ Meaningless"; VALUE V654FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V655FT (MAX=40) 99 = "Illegible/ Meaningless"; VALUE V658FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V659FT (MAX=40) 99 = "Illegible/ Meaningless"; VALUE V662FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V666FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V667FT (MAX=40) 99 = "Illegible/Meaningless"; VALUE V670FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V674FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V676FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V678FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V680FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V682FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V684FT (MAX=40) 0 = "No" 1 = "Yes"; VALUE V688FT (MAX=40) 0 = "No Reply" 1 = "Connecticut" 2 = "Maine" 3 = "Massachusetts" 4 = "New Hampshire" 5 = "Rhode Island" 6 = "Vermont" 11 = "Delaware" 12 = "New Jersey" 13 = "New York" 14 = "Pennsylvania" 21 = "Illinois" 22 = "Indiana" 23 = "Michigan" 24 = "Ohio" 25 = "Wisconsin" 31 = "Iowa" 32 = "Kansas" 33 = "Minnesota" 34 = "Missouri" 35 = "Nebraska" 36 = "North Dakota" 37 = "South Dakota" 38 = "Iowa/Nebraska" 40 = "Virginia" 41 = "Alabama" 42 = "Arkansas" 43 = "Florida" 44 = "Georgia" 45 = "Louisiana" 46 = "Mississippi" 47 = "North Carolina" 48 = "South Carolina" 49 = "Texas" 51 = "Kentucky" 52 = "Maryland" 53 = "Oklahoma" 54 = "Tennessee" 56 = "West Virginia" 61 = "Arizona" 62 = "Colorado" 63 = "Idaho" 64 = "Montana" 65 = "Nevada" 66 = "New Mexico" 67 = "Utah" 68 = "Wyoming" 71 = "California" 72 = "Oregon" 73 = "Washington" 81 = "Alaska" 82 = "Hawaii" 101 = "10 YRS. MINNESOTA, 28 YRS. WASHINGTON" 102 = "12 YRS. MICHIGAN,7 YRS. FLORIDA" 103 = "16-Colo./23-Ill." 104 = "19-Mo./5-Kansas/1-Colorado" 105 = "20 YRS. TENNESSEE, 9 YRS. GEORGIA" 106 = "20 YRS. TENNESSEE, 11 YRS. GEORGIA" 107 = "21-Mo./5-Kansas/1-Colorado" 108 = "25 YRS. TENNESSEE, 6 YRS. GEORGIA" 109 = "26 YRS. TENNESSEE, 6 YRS. GEORGIA" 110 = "27 YRS. MINNESOTA, 7 YRS. GEORGIA" 111 = "28 YRS.KENTUCKY,5 YRS.GEORGIA." 112 = "30 YRS. MINNESOTA, 7 YRS. GEORGIA" 113 = "31 YRS. OREGON, 1 YR. WASHINGTON" 114 = "33 YRS. OREGON, 1 YR. WASHINGTON" 115 = "4 YRS. MINNESOTA, 28 YRS. WASHINGTON." 116 = "4-Georgia/3-Florida/19-Colorado" 117 = "46 YRS.KENTUCKY, 5 YRS.GEORGIA" 118 = "6 YRS. FLORIDA,41 YRS.GEORGIA" 119 = "9 YRS. ALABAMA, 1 YR. GEORGIA" 120 = "ark, mo" 121 = "ARK,COLO" 122 = "CAL, ILL" 123 = "cal, ind" 124 = "cal, n.y., ala, la" 125 = "cal, wash" 126 = "CALIF,ORE" 127 = "CALIF., MONT" 128 = "COLO, MO, ILL" 129 = "colo, ore, ark" 130 = "COLO., MONT." 131 = "Colorado/Missouri" 132 = "MD., OHIO" 133 = "fla, s. c." 134 = "ga, ala" 135 = "ga, s. c." 136 = "georgia, ind, ore" 137 = "GA AND FL" 138 = "IA, ILL" 139 = "ILL, IND" 140 = "ill, mass" 141 = "ILL, N YORK" 142 = "ILLINOIS, OHIO" 143 = "ILLINOIS-6, WASHINGTON-20" 144 = "ILL,WASH" 145 = "ILL, WISC" 146 = "ILL,MISSOURI, CAL,WASH.ORE" 147 = "ILL., MINN." 148 = "ILL., MONT" 149 = "INDIANA, PENNSYLVANIA" 150 = "ILLINOIS OREGON" 151 = "IOWA, D.C., OHIO" 152 = "Iowa, Illinois, Indiana" 153 = "iowa, ohio" 154 = "IOWA,WASH" 155 = "Iowa/Colorado" 156 = "KAN. OKLA. ORE. MONT." 157 = "Kan.,Minn.,Neb." 158 = "kans, okla" 159 = "KANSAS OREGON" 160 = "KANSAS,WASH" 161 = "KENTUCKY COLORADO" 162 = "KENTUCKY, NEW YORK" 163 = "kentucky, ohio" 164 = "KY,ILL" 165 = "la, ala" 166 = "mass, ala" 167 = "MASS, IOWA" 168 = "mass, n y, wash d.c." 169 = "mass, ny" 170 = "MASS, OHIO" 171 = "MASS,PA" 172 = "Mass. Rhode Island" 173 = "Mass., Maine, Rhode Island" 174 = "IND, KY" 175 = "ind, mont, ore" 176 = "MICH MONT." 177 = "MICHIGAN, INDIANA" 178 = "mich, ind, pa, ohio" 179 = "MICH,WASH" 180 = "MICH,ILL,OHIO" 181 = "MICHIGAN ILLINOIS" 182 = "MINN, IOWA" 183 = "MINN, MONT" 184 = "minn, ohio" 185 = "MINN, WASH, MONT" 186 = "MINN,ILL,WASH" 187 = "MINN,WASH" 188 = "MINN., WIS." 189 = "MINNESOTA,N.DAKOTA" 190 = "MISS, TEXAS" 191 = "MISS,MICH,MRY, ILL" 192 = "MO, ILL" 193 = "Mo.-5/Colo.-24" 194 = "Mo.-5/Okla.-14/Colo.-18" 195 = "MONT, MISS, TEXAS" 196 = "MONT, NEV." 197 = "WASH, MONT" 198 = "MONT,TENN, IOWA" 199 = "Mont., Neb." 200 = "n c, ore" 201 = "N.J., N.Y." 202 = "n j, penn, n y" 203 = "N.DAKOTA,WASH" 204 = "n. y., ala" 205 = "n. y., and s. c." 206 = "N.Y., PA., ILL." 207 = "N.Y., WASH" 208 = "n.y./s.c." 209 = "NC/CA" 210 = "NEB, WASH" 211 = "NEB., COLO." 212 = "NEB., TEX., IOWA & ILL." 213 = "NEBR, N.Y., CAL, ILL" 214 = "NEBRASKA OREGON" 215 = "New Hamp., Mass." 216 = "ohio, fla, kent." 217 = "Ohio, Kent., Ind." 218 = "OHIO, MICHIGAN" 219 = "ohio, ore" 220 = "S.C., OHIO" 221 = "INDIANA, OHIO, ILLINOIS" 222 = "OHIO,PA" 223 = "OK,SC,KS" 224 = "okla, ark" 225 = "OKLA,COLO" 226 = "okla, kans" 227 = "okla, wash" 228 = "INDIANA, NEW MEXICO" 229 = "OKLA,MISSOURI,COLO" 230 = "OKLAHOMA 9 YRS. TEXAS 7 YRS. MONTANA 5 Y" 231 = "ILL, S. DAK" 232 = "WISCONSIN OREGON" 233 = "ORE,WASH" 234 = "PA, IOWA" 235 = "PA,N.Y." 236 = "pa, w va" 237 = "PA,NY,OHIO" 238 = "Rhode Island, N. Hampshire" 239 = "SO. DAKOTA, MONT" 240 = "tenn, ohio" 241 = "TENNESSEE 28 YRS. GEORGIA 5 YRS." 242 = "TENNESSEE 32 YRS. GEORGIA 5 YRS." 243 = "TENNESSEE, TEXAS, OREGON" 244 = "tex, calif, mich, ohio" 245 = "INDIANA, OHIO" 246 = "TEXAS,WASH" 247 = "UTAH COLORADO" 248 = "UTAH,WASH" 249 = "VA, OHIO" 250 = "w. va., indiana, abroad(missionary), wn." 251 = "W. VA., OHIO" 252 = "W.VA, IND" 253 = "wash d. c., wash" 254 = "wash, alaska" 255 = "wash, ark" 256 = "WASH, ILL, IOWA" 257 = "WASHINGTON, IDAHO" 258 = "WIS., N.D." 259 = "WISC, IOWA" 260 = "WISCONSIN IDAHO" 261 = "WISCONSIN ILLINOIS IOWA OREGON" 262 = "WISCONSIN, WASHINGTON" 263 = "WISCONSIN, MINNESOTA, NORTH DAKOTA" 264 = "WYOMING IDAHO" 265 = "WYOMING OREGON" 266 = "PA, ILL" 268 = "ore, wash, cal" 269 = "tex, ohio, mich" 270 = "WASHINGTON OREGON COLORADO" 271 = "wash, miss" 272 = "ill, ala" 273 = "FLA, ALA" 300 = "abroad, wn." 301 = "B.C." 302 = "CANADA" 303 = "CANADA, ILLINOIS" 304 = "CANADA, OHIO" 305 = "EUROPE" 306 = "foreign" 307 = "france, austria, ore" 308 = "IOWA CANADA" 309 = "MI, CANADA" 310 = "missouri, scotland" 311 = "oregon, canada" 312 = "panama" 313 = "SOUTH AMERICA" 999 = "Illegible/ Meaningless"; VALUE V690FT (MAX=40) 0 = "No Reply" 1 = "Connecticut" 2 = "Maine" 3 = "Massachusetts" 4 = "New Hampshire" 5 = "Rhode Island" 6 = "Vermont" 11 = "Delaware" 12 = "New Jersey" 13 = "New York" 14 = "Pennsylvania" 21 = "Illinois" 22 = "Indiana" 23 = "Michigan" 24 = "Ohio" 25 = "Wisconsin" 31 = "Iowa" 32 = "Kansas" 33 = "Minnesota" 34 = "Missouri" 35 = "Nebraska" 36 = "North Dakota" 37 = "South Dakota" 38 = "Iowa/Nebraska" 40 = "Virginia" 41 = "Alabama" 42 = "Arkansas" 43 = "Florida" 44 = "Georgia" 45 = "Louisiana" 46 = "Mississippi" 47 = "North Carolina" 48 = "South Carolina" 49 = "Texas" 51 = "Kentucky" 52 = "Maryland" 53 = "Oklahoma" 54 = "Tennessee" 56 = "West Virginia" 61 = "Arizona" 62 = "Colorado" 63 = "Idaho" 64 = "Montana" 65 = "Nevada" 66 = "New Mexico" 67 = "Utah" 68 = "Wyoming" 71 = "California" 72 = "Oregon" 73 = "Washington" 81 = "Alaska" 82 = "Hawaii" 101 = "10 YRS. MINNESOTA, 28 YRS. WASHINGTON" 102 = "12 YRS. MICHIGAN,7 YRS. FLORIDA" 103 = "16-Colo./23-Ill." 104 = "19-Mo./5-Kansas/1-Colorado" 105 = "20 YRS. TENNESSEE, 9 YRS. GEORGIA" 106 = "20 YRS. TENNESSEE, 11 YRS. GEORGIA" 107 = "21-Mo./5-Kansas/1-Colorado" 108 = "25 YRS. TENNESSEE, 6 YRS. GEORGIA" 109 = "26 YRS. TENNESSEE, 6 YRS. GEORGIA" 110 = "27 YRS. MINNESOTA, 7 YRS. GEORGIA" 111 = "28 YRS.KENTUCKY,5 YRS.GEORGIA." 112 = "30 YRS. MINNESOTA, 7 YRS. GEORGIA" 113 = "31 YRS. OREGON, 1 YR. WASHINGTON" 114 = "33 YRS. OREGON, 1 YR. WASHINGTON" 115 = "4 YRS. MINNESOTA, 28 YRS. WASHINGTON." 116 = "4-Georgia/3-Florida/19-Colorado" 117 = "46 YRS.KENTUCKY, 5 YRS.GEORGIA" 118 = "6 YRS. FLORIDA,41 YRS.GEORGIA" 119 = "9 YRS. ALABAMA, 1 YR. GEORGIA" 120 = "ark, mo" 121 = "ARK,COLO" 122 = "CAL, ILL" 123 = "cal, ind" 124 = "cal, n.y., ala, la" 125 = "cal, wash" 126 = "CALIF,ORE" 127 = "CALIF., MONT" 128 = "COLO, MO, ILL" 129 = "colo, ore, ark" 130 = "COLO., MONT." 131 = "Colorado/Missouri" 132 = "MD., OHIO" 133 = "fla, s. c." 134 = "ga, ala" 135 = "ga, s. c." 136 = "georgia, ind, ore" 137 = "GA AND FL" 138 = "IA, ILL" 139 = "ILL, IND" 140 = "ill, mass" 141 = "ILL, N YORK" 142 = "ILLINOIS, OHIO" 143 = "ILLINOIS-6, WASHINGTON-20" 144 = "ILL,WASH" 145 = "ILL, WISC" 146 = "ILL,MISSOURI, CAL,WASH.ORE" 147 = "ILL., MINN." 148 = "ILL., MONT" 149 = "INDIANA, PENNSYLVANIA" 150 = "ILLINOIS OREGON" 151 = "IOWA, D.C., OHIO" 152 = "Iowa, Illinois, Indiana" 153 = "iowa, ohio" 154 = "IOWA,WASH" 155 = "Iowa/Colorado" 156 = "KAN. OKLA. ORE. MONT." 157 = "Kan.,Minn.,Neb." 158 = "kans, okla" 159 = "KANSAS OREGON" 160 = "KANSAS,WASH" 161 = "KENTUCKY COLORADO" 162 = "KENTUCKY, NEW YORK" 163 = "kentucky, ohio" 164 = "KY,ILL" 165 = "la, ala" 166 = "mass, ala" 167 = "MASS, IOWA" 168 = "mass, n y, wash d.c." 169 = "mass, ny" 170 = "MASS, OHIO" 171 = "MASS,PA" 172 = "Mass. Rhode Island" 173 = "Mass., Maine, Rhode Island" 174 = "IND, KY" 175 = "ind, mont, ore" 176 = "MICH MONT." 177 = "MICHIGAN, INDIANA" 178 = "mich, ind, pa, ohio" 179 = "MICH,WASH" 180 = "MICH,ILL,OHIO" 181 = "MICHIGAN ILLINOIS" 182 = "MINN, IOWA" 183 = "MINN, MONT" 184 = "minn, ohio" 185 = "MINN, WASH, MONT" 186 = "MINN,ILL,WASH" 187 = "MINN,WASH" 188 = "MINN., WIS." 189 = "MINNESOTA,N.DAKOTA" 190 = "MISS, TEXAS" 191 = "MISS,MICH,MRY, ILL" 192 = "MO, ILL" 193 = "Mo.-5/Colo.-24" 194 = "Mo.-5/Okla.-14/Colo.-18" 195 = "MONT, MISS, TEXAS" 196 = "MONT, NEV." 197 = "WASH, MONT" 198 = "MONT,TENN, IOWA" 199 = "Mont., Neb." 200 = "n c, ore" 201 = "N.J., N.Y." 202 = "n j, penn, n y" 203 = "N.DAKOTA,WASH" 204 = "n. y., ala" 205 = "n. y., and s. c." 206 = "N.Y., PA., ILL." 207 = "N.Y., WASH" 208 = "n.y./s.c." 209 = "NC/CA" 210 = "NEB, WASH" 211 = "NEB., COLO." 212 = "NEB., TEX., IOWA & ILL." 213 = "NEBR, N.Y., CAL, ILL" 214 = "NEBRASKA OREGON" 215 = "New Hamp., Mass." 216 = "ohio, fla, kent." 217 = "Ohio, Kent., Ind." 218 = "OHIO, MICHIGAN" 219 = "ohio, ore" 220 = "S.C., OHIO" 221 = "INDIANA, OHIO, ILLINOIS" 222 = "OHIO,PA" 223 = "OK,SC,KS" 224 = "okla, ark" 225 = "OKLA,COLO" 226 = "okla, kans" 227 = "okla, wash" 228 = "INDIANA, NEW MEXICO" 229 = "OKLA,MISSOURI,COLO" 230 = "OKLAHOMA 9 YRS. TEXAS 7 YRS. MONTANA 5 Y" 231 = "ILL, S. DAK" 232 = "WISCONSIN OREGON" 233 = "ORE,WASH" 234 = "PA, IOWA" 235 = "PA,N.Y." 236 = "pa, w va" 237 = "PA,NY,OHIO" 238 = "Rhode Island, N. Hampshire" 239 = "SO. DAKOTA, MONT" 240 = "tenn, ohio" 241 = "TENNESSEE 28 YRS. GEORGIA 5 YRS." 242 = "TENNESSEE 32 YRS. GEORGIA 5 YRS." 243 = "TENNESSEE, TEXAS, OREGON" 244 = "tex, calif, mich, ohio" 245 = "INDIANA, OHIO" 246 = "TEXAS,WASH" 247 = "UTAH COLORADO" 248 = "UTAH,WASH" 249 = "VA, OHIO" 250 = "w. va., indiana, abroad(missionary), wn." 251 = "W. VA., OHIO" 252 = "W.VA, IND" 253 = "wash d. c., wash" 254 = "wash, alaska" 255 = "wash, ark" 256 = "WASH, ILL, IOWA" 257 = "WASHINGTON, IDAHO" 258 = "WIS., N.D." 259 = "WISC, IOWA" 260 = "WISCONSIN IDAHO" 261 = "WISCONSIN ILLINOIS IOWA OREGON" 262 = "WISCONSIN, WASHINGTON" 263 = "WISCONSIN, MINNESOTA, NORTH DAKOTA" 264 = "WYOMING IDAHO" 265 = "WYOMING OREGON" 266 = "PA, ILL" 268 = "ore, wash, cal" 269 = "tex, ohio, mich" 270 = "WASHINGTON OREGON COLORADO" 271 = "wash, miss" 272 = "ill, ala" 273 = "FLA, ALA" 300 = "abroad, wn." 301 = "B.C." 302 = "CANADA" 303 = "CANADA, ILLINOIS" 304 = "CANADA, OHIO" 305 = "EUROPE" 306 = "foreign" 307 = "france, austria, ore" 308 = "IOWA CANADA" 309 = "MI, CANADA" 310 = "missouri, scotland" 311 = "oregon, canada" 312 = "panama" 313 = "SOUTH AMERICA" 999 = "Illegible/ Meaningless"; VALUE V692FT (MAX=40) 0 = "No Reply" 1 = "Connecticut" 2 = "Maine" 3 = "Massachusetts" 4 = "New Hampshire" 5 = "Rhode Island" 6 = "Vermont" 11 = "Delaware" 12 = "New Jersey" 13 = "New York" 14 = "Pennsylvania" 21 = "Illinois" 22 = "Indiana" 23 = "Michigan" 24 = "Ohio" 25 = "Wisconsin" 31 = "Iowa" 32 = "Kansas" 33 = "Minnesota" 34 = "Missouri" 35 = "Nebraska" 36 = "North Dakota" 37 = "South Dakota" 38 = "Iowa/Nebraska" 40 = "Virginia" 41 = "Alabama" 42 = "Arkansas" 43 = "Florida" 44 = "Georgia" 45 = "Louisiana" 46 = "Mississippi" 47 = "North Carolina" 48 = "South Carolina" 49 = "Texas" 51 = "Kentucky" 52 = "Maryland" 53 = "Oklahoma" 54 = "Tennessee" 56 = "West Virginia" 61 = "Arizona" 62 = "Colorado" 63 = "Idaho" 64 = "Montana" 65 = "Nevada" 66 = "New Mexico" 67 = "Utah" 68 = "Wyoming" 71 = "California" 72 = "Oregon" 73 = "Washington" 81 = "Alaska" 82 = "Hawaii" 101 = "10 YRS. MINNESOTA, 28 YRS. WASHINGTON" 102 = "12 YRS. MICHIGAN,7 YRS. FLORIDA" 103 = "16-Colo./23-Ill." 104 = "19-Mo./5-Kansas/1-Colorado" 105 = "20 YRS. TENNESSEE, 9 YRS. GEORGIA" 106 = "20 YRS. TENNESSEE, 11 YRS. GEORGIA" 107 = "21-Mo./5-Kansas/1-Colorado" 108 = "25 YRS. TENNESSEE, 6 YRS. GEORGIA" 109 = "26 YRS. TENNESSEE, 6 YRS. GEORGIA" 110 = "27 YRS. MINNESOTA, 7 YRS. GEORGIA" 111 = "28 YRS.KENTUCKY,5 YRS.GEORGIA." 112 = "30 YRS. MINNESOTA, 7 YRS. GEORGIA" 113 = "31 YRS. OREGON, 1 YR. WASHINGTON" 114 = "33 YRS. OREGON, 1 YR. WASHINGTON" 115 = "4 YRS. MINNESOTA, 28 YRS. WASHINGTON." 116 = "4-Georgia/3-Florida/19-Colorado" 117 = "46 YRS.KENTUCKY, 5 YRS.GEORGIA" 118 = "6 YRS. FLORIDA,41 YRS.GEORGIA" 119 = "9 YRS. ALABAMA, 1 YR. GEORGIA" 120 = "ark, mo" 121 = "ARK,COLO" 122 = "CAL, ILL" 123 = "cal, ind" 124 = "cal, n.y., ala, la" 125 = "cal, wash" 126 = "CALIF,ORE" 127 = "CALIF., MONT" 128 = "COLO, MO, ILL" 129 = "colo, ore, ark" 130 = "COLO., MONT." 131 = "Colorado/Missouri" 132 = "MD., OHIO" 133 = "fla, s. c." 134 = "ga, ala" 135 = "ga, s. c." 136 = "georgia, ind, ore" 137 = "GA AND FL" 138 = "IA, ILL" 139 = "ILL, IND" 140 = "ill, mass" 141 = "ILL, N YORK" 142 = "ILLINOIS, OHIO" 143 = "ILLINOIS-6, WASHINGTON-20" 144 = "ILL,WASH" 145 = "ILL, WISC" 146 = "ILL,MISSOURI, CAL,WASH.ORE" 147 = "ILL., MINN." 148 = "ILL., MONT" 149 = "INDIANA, PENNSYLVANIA" 150 = "ILLINOIS OREGON" 151 = "IOWA, D.C., OHIO" 152 = "Iowa, Illinois, Indiana" 153 = "iowa, ohio" 154 = "IOWA,WASH" 155 = "Iowa/Colorado" 156 = "KAN. OKLA. ORE. MONT." 157 = "Kan.,Minn.,Neb." 158 = "kans, okla" 159 = "KANSAS OREGON" 160 = "KANSAS,WASH" 161 = "KENTUCKY COLORADO" 162 = "KENTUCKY, NEW YORK" 163 = "kentucky, ohio" 164 = "KY,ILL" 165 = "la, ala" 166 = "mass, ala" 167 = "MASS, IOWA" 168 = "mass, n y, wash d.c." 169 = "mass, ny" 170 = "MASS, OHIO" 171 = "MASS,PA" 172 = "Mass. Rhode Island" 173 = "Mass., Maine, Rhode Island" 174 = "IND, KY" 175 = "ind, mont, ore" 176 = "MICH MONT." 177 = "MICHIGAN, INDIANA" 178 = "mich, ind, pa, ohio" 179 = "MICH,WASH" 180 = "MICH,ILL,OHIO" 181 = "MICHIGAN ILLINOIS" 182 = "MINN, IOWA" 183 = "MINN, MONT" 184 = "minn, ohio" 185 = "MINN, WASH, MONT" 186 = "MINN,ILL,WASH" 187 = "MINN,WASH" 188 = "MINN., WIS." 189 = "MINNESOTA,N.DAKOTA" 190 = "MISS, TEXAS" 191 = "MISS,MICH,MRY, ILL" 192 = "MO, ILL" 193 = "Mo.-5/Colo.-24" 194 = "Mo.-5/Okla.-14/Colo.-18" 195 = "MONT, MISS, TEXAS" 196 = "MONT, NEV." 197 = "WASH, MONT" 198 = "MONT,TENN, IOWA" 199 = "Mont., Neb." 200 = "n c, ore" 201 = "N.J., N.Y." 202 = "n j, penn, n y" 203 = "N.DAKOTA,WASH" 204 = "n. y., ala" 205 = "n. y., and s. c." 206 = "N.Y., PA., ILL." 207 = "N.Y., WASH" 208 = "n.y./s.c." 209 = "NC/CA" 210 = "NEB, WASH" 211 = "NEB., COLO." 212 = "NEB., TEX., IOWA & ILL." 213 = "NEBR, N.Y., CAL, ILL" 214 = "NEBRASKA OREGON" 215 = "New Hamp., Mass." 216 = "ohio, fla, kent." 217 = "Ohio, Kent., Ind." 218 = "OHIO, MICHIGAN" 219 = "ohio, ore" 220 = "S.C., OHIO" 221 = "INDIANA, OHIO, ILLINOIS" 222 = "OHIO,PA" 223 = "OK,SC,KS" 224 = "okla, ark" 225 = "OKLA,COLO" 226 = "okla, kans" 227 = "okla, wash" 228 = "INDIANA, NEW MEXICO" 229 = "OKLA,MISSOURI,COLO" 230 = "OKLAHOMA 9 YRS. TEXAS 7 YRS. MONTANA 5 Y" 231 = "ILL, S. DAK" 232 = "WISCONSIN OREGON" 233 = "ORE,WASH" 234 = "PA, IOWA" 235 = "PA,N.Y." 236 = "pa, w va" 237 = "PA,NY,OHIO" 238 = "Rhode Island, N. Hampshire" 239 = "SO. DAKOTA, MONT" 240 = "tenn, ohio" 241 = "TENNESSEE 28 YRS. GEORGIA 5 YRS." 242 = "TENNESSEE 32 YRS. GEORGIA 5 YRS." 243 = "TENNESSEE, TEXAS, OREGON" 244 = "tex, calif, mich, ohio" 245 = "INDIANA, OHIO" 246 = "TEXAS,WASH" 247 = "UTAH COLORADO" 248 = "UTAH,WASH" 249 = "VA, OHIO" 250 = "w. va., indiana, abroad(missionary), wn." 251 = "W. VA., OHIO" 252 = "W.VA, IND" 253 = "wash d. c., wash" 254 = "wash, alaska" 255 = "wash, ark" 256 = "WASH, ILL, IOWA" 257 = "WASHINGTON, IDAHO" 258 = "WIS., N.D." 259 = "WISC, IOWA" 260 = "WISCONSIN IDAHO" 261 = "WISCONSIN ILLINOIS IOWA OREGON" 262 = "WISCONSIN, WASHINGTON" 263 = "WISCONSIN, MINNESOTA, NORTH DAKOTA" 264 = "WYOMING IDAHO" 265 = "WYOMING OREGON" 266 = "PA, ILL" 268 = "ore, wash, cal" 269 = "tex, ohio, mich" 270 = "WASHINGTON OREGON COLORADO" 271 = "wash, miss" 272 = "ill, ala" 273 = "FLA, ALA" 300 = "abroad, wn." 301 = "B.C." 302 = "CANADA" 303 = "CANADA, ILLINOIS" 304 = "CANADA, OHIO" 305 = "EUROPE" 306 = "foreign" 307 = "france, austria, ore" 308 = "IOWA CANADA" 309 = "MI, CANADA" 310 = "missouri, scotland" 311 = "oregon, canada" 312 = "panama" 313 = "SOUTH AMERICA" 999 = "Illegible/ Meaningless"; VALUE V694FT (MAX=40) 0 = "No Reply" 1 = "Connecticut" 2 = "Maine" 3 = "Massachusetts" 4 = "New Hampshire" 5 = "Rhode Island" 6 = "Vermont" 11 = "Delaware" 12 = "New Jersey" 13 = "New York" 14 = "Pennsylvania" 21 = "Illinois" 22 = "Indiana" 23 = "Michigan" 24 = "Ohio" 25 = "Wisconsin" 31 = "Iowa" 32 = "Kansas" 33 = "Minnesota" 34 = "Missouri" 35 = "Nebraska" 36 = "North Dakota" 37 = "South Dakota" 38 = "Iowa/Nebraska" 40 = "Virginia" 41 = "Alabama" 42 = "Arkansas" 43 = "Florida" 44 = "Georgia" 45 = "Louisiana" 46 = "Mississippi" 47 = "North Carolina" 48 = "South Carolina" 49 = "Texas" 51 = "Kentucky" 52 = "Maryland" 53 = "Oklahoma" 54 = "Tennessee" 56 = "West Virginia" 61 = "Arizona" 62 = "Colorado" 63 = "Idaho" 64 = "Montana" 65 = "Nevada"