/*------------------------------------------------------------------------------------*/ /*by Jean Roth Mon Jun 7 18:35:07 EDT 2004 This program reads the 1992 SIPP Wave 9 Topical Module Data File NOTE: This program is distributed under the GNU GPL. See end of this file and http://www.gnu.org/licenses/ for details. Please report errors to jroth@nber.org Six steps: (1) Uncomment the 'options compress=yes' statement if desired to save space (2) Uncomment 'LENGTH' statement if desired to save space (3) Specify output directories in 'libname' statements (4) Specify the input file name/location in the 'filename' statement (5) On a PC, use backslashes as in C:\ (6) Read in the compressed or uncompressed raw data file. See the 'filename' and 'INFILE' statements. Other changes may be user and platform specific. NOTE: A value of -1 (or -1/# of implied decimals) indicates 'Not in Universe' */ /*------------------------------------------------------------------------------------*/ *options obs=100; *options compress=yes; *Choose compress=yes to save space ; *Choose compress=no if converting to another package using transfer software ; *options pagesize=59 linesize=72; /*------------------------------------------------------------------------------------*/ libname library './'; *See the codebook for more detail; PROC FORMAT cntlout=library.fsp92t9; /* The PROC FORMAT statement will store the formats in a sas data set called fsip92t9 To use the stored formats in a subsequent program, include something like this: proc format cntlin=library.fsp92t9; PROC freq; tables pesex ; format pesex P135L.; For more information, consult the SAS Procedures Guide section of PROC FORMAT */ ; VALUE STATE (default=32) 1 = "Alabama" 4 = "Arizona" 5 = "Arkansas" 6 = "California" 8 = "Colorado" 9 = "Connecticut" 10 = "Delaware" 11 = "District of Columbia" 12 = "Florida" 13 = "Georgia" 15 = "Hawaii" 17 = "Illinois" 18 = "Indiana" 20 = "Kansas" 21 = "Kentucky" 22 = "Louisiana" 24 = "Maryland" 25 = "Massachusetts" 26 = "Michigan" 27 = "Minnesota" 28 = "Mississippi" 29 = "Missouri" 31 = "Nebraska" 32 = "Nevada" 33 = "New Hampshire" 34 = "New Jersey" 35 = "New Mexico" 36 = "New York" 37 = "North Carolina" 39 = "Ohio" 40 = "Oklahoma" 41 = "Oregon" 42 = "Pennsylvania" 44 = "Rhode Island" 45 = "South Carolina" 47 = "Tennessee" 48 = "Texas" 49 = "Utah" 51 = "Virginia" 53 = "Washington" 54 = "West Virginia" 55 = "Wisconsin" 61 = "Maine,Vermont" 62 = "Iowa,North Dakota,South Dakota" 63 = "Alaska,Idaho,Montana,Wyoming" ; VALUE ITEM36B (default=32) 1 = "Interviewed" 2 = "No one home" 3 = "Temporarily absent" 4 = "Refused" 5 = "Unable to locate" 6 = "Other Type A, Type B" 9 = "Vacant" 10 = "Occupied by persons with URE" 11 = "Unfit or to be demolished" 12 = "Under construction, not ready" 13 = "Converted to temporary business" 14 = "Unoccupied site for mobile" 15 = "Permit granted, construction" 17 = "Demolished" 18 = "House or trailer moved" 19 = "Converted to permanent business" 20 = "Merged" 21 = "Condemned" 23 = "Entire household deceased," 24 = "Moved, address unknown" 25 = "Moved within country beyond" 26 = "All sample persons relisted on" 28 = "Merged HHLDs across panels" ; VALUE INTVW (default=32) 0 = "Not applicable (children" 1 = "Interview (Self)" 2 = "Interview (proxy)" 3 = "Noninterview - Type Z refusal" 4 = "Noninterview - Type Z other" ; VALUE PP_MIS5L (default=32) 1 = "Interview" 2 = "Non-interview" ; VALUE RRP (default=32) 0 = "Not a sample person in this" 1 = "Household reference person," 2 = "Household reference person" 3 = "Spouse of household reference" 4 = "Child of household reference" 5 = "Other relative of household" 6 = "Non-relative of household" 7 = "Non-relative of household" ; VALUE AGE (default=32) 0 = "Less than 1 full year" 1 = "1 year etc." ; VALUE SEX (default=32) 1 = "Male" 2 = "Female" ; VALUE RACE (default=32) 1 = "White" 2 = "Black" 3 = "American Indian, Eskimo or Aleut" 4 = "Asian or Pacific Islander" ; VALUE MS (default=32) 0 = "Not a sample person in this" 1 = "Married, spouse present" 2 = "Married, spouse absent" 3 = "Widowed" 4 = "Divorced" 5 = "Separated" 6 = "Never married" ; VALUE PNSP (default=32) 0 = "Not a sample person in this" 999 = "Not applicable" ; VALUE PNPT (default=32) 0 = "Not a sample person in this" 999 = "Not applicable" ; VALUE HIGRADE (default=32) 0 = "Not applicable if under 15, did" ; VALUE GRD_CMPL (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE ETHNICTY (default=32) 1 = "German" 2 = "English" 3 = "Irish" 4 = "French" 5 = "Italian" 6 = "Scottish" 7 = "Polish" 8 = "Dutch" 9 = "Swedish" 10 = "Norwegian" 11 = "Russian" 12 = "Ukrainian" 13 = "Welsh" 14 = "Mexican-American" 15 = "Chicano" 16 = "Mexican" 17 = "Puerto Rican" 18 = "Cuban" 19 = "Central or South American" 20 = "Other Spanish" 21 = "Afro-American (Black or Negro)" 30 = "Another group not listed" 39 = "Don't know" ; VALUE TM8000L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T2" ; VALUE TM8001L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T2" ; VALUE TM8002L (default=32) 0 = "Not applicable" 1 = "One" 2 = "Two" 3 = "Three or more" ; VALUE TM8004L (default=32) 0 = "Not applicable" ; VALUE TM8006L (default=32) 0 = "Not applicable" ; VALUE TM8008L (default=32) 0 = "Not applicable" ; VALUE TM8010L (default=32) 0 = "Not applicable" ; VALUE TM8012L (default=32) 0 = "Not applicable" 1 = "Monday through Friday (first" ; VALUE TM8014L (default=32) 0 = "Not applicable" 1 = "Monday through Friday (second" ; VALUE TM8016L (default=32) 0 = "Not applicable" 1 = "Sunday (first employer)" ; VALUE TM8018L (default=32) 0 = "Not applicable" 1 = "Sunday (second employer)" ; VALUE TM8020L (default=32) 0 = "Not applicable" 1 = "Monday (first employer)" ; VALUE TM8022L (default=32) 0 = "Not applicable" 1 = "Monday (second employer)" ; VALUE TM8024L (default=32) 0 = "Not applicable" 1 = "Tuesday (first employer)" ; VALUE TM8026L (default=32) 0 = "Not applicable" 1 = "Tuesday (second employer)" ; VALUE TM8028L (default=32) 0 = "Not applicable" 1 = "Wednesday (first employer)" ; VALUE TM8030L (default=32) 0 = "Not applicable" 1 = "Wednesday (second employer)" ; VALUE TM8032L (default=32) 0 = "Not applicable" 1 = "Thursday (first employer)" ; VALUE TM8034L (default=32) 0 = "Not applicable" 1 = "Thursday (second employer)" ; VALUE TM8036L (default=32) 0 = "Not applicable" 1 = "Friday (first employer)" ; VALUE TM8038L (default=32) 0 = "Not applicable" 1 = "Friday (second employer)" ; VALUE TM8040L (default=32) 0 = "Not applicable" 1 = "Saturday (first employer)" ; VALUE TM8042L (default=32) 0 = "Not applicable" 1 = "Saturday (second employer)" ; VALUE TM8044L (default=32) 0 = "Not applicable" -5 = "All days (first employer)" ; VALUE TM8046L (default=32) 0 = "Not applicable" -5 = "All days (second employer)" ; VALUE TM8048L (default=32) 0 = "Not applicable" ; VALUE TM8050L (default=32) 0 = "Not applicable" 1 = "A.M." 2 = "P.M." ; VALUE TM8052L (default=32) 0 = "Not applicable" ; VALUE TM8054L (default=32) 0 = "Not applicable" 1 = "A.M." 2 = "P.M." ; VALUE TM8056L (default=32) 0 = "Not applicable" ; VALUE TM8058L (default=32) 0 = "Not applicable" 1 = "A.M." 2 = "P.M." ; VALUE TM8060L (default=32) 0 = "Not applicable" ; VALUE TM8062L (default=32) 0 = "Not applicable" 1 = "A.M." 2 = "P.M." ; VALUE TM8064L (default=32) 0 = "Not applicable" 1 = "Regular daytime schedule" 2 = "Regular evening shift" 3 = "Regular night shift" 4 = "Rotating shift (one that" 5 = "Split shift (one consisting of" 6 = "Irregular schedule (one that" 7 = "Other" ; VALUE TM8066L (default=32) 0 = "Not applicable" 1 = "Regular daytime schedule" 2 = "Regular evening shift" 3 = "Regular night shift" 4 = "Rotating shift (one that" 5 = "Split shift (one consisting of" 6 = "Irregular schedule (one that" 7 = "Other" ; VALUE TM8068L (default=32) 0 = "Not applicable" 1 = "Better child care arrangements" 2 = "Better pay" 3 = "Better arrangements for care of" 4 = "Allows time for school" 5 = "Other voluntary reasons" 6 = "Could not get any other job" 7 = "Requirement of the job" 8 = "Other involuntary reasons" ; VALUE TM8070L (default=32) 0 = "Not applicable" 1 = "Better child care arrangements" 2 = "Better pay" 3 = "Better arrangements for care of" 4 = "Allows time for school" 5 = "Other voluntary reasons" 6 = "Could not get any other job" 7 = "Requirements of the job" 8 = "Other involuntary reasons" ; VALUE TM8072L (default=32) 0 = "Not applicable" 1 = "Yes - ask items 1c though 1i" 2 = "No - go to check item T2" ; VALUE TM7990L (default=32) 1 = "Under 10" 2 = "10-24" 3 = "25-99" 4 = "100-499" 5 = "500-999" 6 = "1000+" ; VALUE TM7992L (default=32) 1 = "Under 10" 2 = "10-24" 3 = "25-99" 4 = "100-499" 5 = "500-999" 6 = "1000+" ; VALUE TM8100L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip TM8400" ; VALUE TM8105L (default=32) 0 = "Not applicable" 1 = "Yes - skip to check item T6" 2 = "No" ; VALUE TM8106L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T5" ; VALUE TM8107L (default=32) 0 = "Not applicable" -1 = "Hours varied - skip to check" -2 = "Dk - skip to check item T6" -3 = "Not enrolled last month" ; VALUE TM8108L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8400" ; VALUE TM8109L (default=32) 0 = "Not applicable" -1 = "Hours varied" -2 = "Dk" -3 = "Did not look for a job last" ; VALUE TM8114L (default=32) 0 = "Not applicable" ; VALUE TM8116L (default=32) 0 = "Not applicable" ; VALUE TM8118L (default=32) 0 = "Not applicable" ; VALUE TM8120L (default=32) 0 = "Not applicable" 1 = "Child's other parent/stepparent" 2 = "Child's brother/sister" 3 = "Child's grandparent" 4 = "Other relative of child" 5 = "Nonrelative of child" 6 = "Child in day/group care center" 7 = "Child in nursery/preschool" 8 = "Child in organized school-based" 9 = "Child in kindergarten," 10 = "Child cares for self" 11 = "... works at home" 12 = "... cares for child at work (in" 13 = "Child not born as of last month" 14 = "... did not work, go to school," ; VALUE TM8122L (default=32) 0 = "Not applicable" 1 = "Child's other parent/stepparent" 2 = "Child's brother/sister" 3 = "Child's grandparent" 4 = "Other relative of child" 5 = "Nonrelative of child" 6 = "Child in day/group care center" 7 = "Child in nursery/preschool" 8 = "Child in organized school-based" 9 = "Child in kindergarten," 10 = "Child cares for self" 11 = "... works at home" 12 = "... cares for child at work (in" 13 = "Child not born as of last month" ; VALUE TM8124L (default=32) 0 = "Not applicable" 1 = "Child's other parent/stepparent" 2 = "Child's brother/sister" 3 = "Child's grandparent" 4 = "Other relative of child" 5 = "Nonrelative of child" 6 = "Child in day/group care center" 7 = "Child in nursery/preschool" 8 = "Child in organized school-based" 9 = "Child in kindergarten," 10 = "Child cares for self" 11 = "... works at home" 12 = "... cares for child at work (in" 13 = "Child not born as of last month" ; VALUE TM8126L (default=32) 0 = "Not applicable" 1 = "Child's home" 2 = "Other private home" 3 = "Other place" ; VALUE TM8128L (default=32) 0 = "Not applicable" 1 = "Child's home" 2 = "Other private home" 3 = "Other place" ; VALUE TM8130L (default=32) 0 = "Not applicable" 1 = "Child's home" 2 = "Other private home" 3 = "Other place" ; VALUE TM8132L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8158" ; VALUE TM8134L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8160" ; VALUE TM8136L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8162" ; VALUE TM8138L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8158" ; VALUE TM8140L (default=32) 0 = "Not applicable" 1 = "Yes- skip to TM8148" 2 = "No - skip to TM8160" ; VALUE TM8142L (default=32) 0 = "Not applicable" 1 = "Yes- skip to TM8150" 2 = "No - skip to TM8162" ; VALUE TM8144L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8152" ; VALUE TM8146L (default=32) 0 = "Not applicable" 1 = "Payment for youngest child" 2 = "Includes another child" ; VALUE TM8148L (default=32) 0 = "Not applicable" 1 = "Payment for second youngest" 2 = "Includes another child" ; VALUE TM8150L (default=32) 0 = "Not applicable" 1 = "Payment for third youngest" 2 = "Includes another child" ; VALUE TM8152L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM8154L (default=32) 0 = "Not applicable" -1 = "Dk" -2 = "Previously recorded for" ; VALUE TM8156L (default=32) 0 = "Not applicable" -1 = "Dk" -2 = "Previously recorded for" -3 = "Previously recorded for second" ; VALUE TM8158L (default=32) 0 = "Not applicable" ; VALUE TM8160L (default=32) 0 = "Not applicable" ; VALUE TM8162L (default=32) 0 = "Not applicable" ; VALUE TM8164L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to next child or" ; VALUE TM8166L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to next child or" ; VALUE TM8168L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T11" ; VALUE TM8170L (default=32) 0 = "Not applicable" 1 = "Child's other parent/step-" 2 = "Child's brother/sister" 3 = "Child's grandparent" 4 = "Other relative of child" 5 = "Nonrelative of child" 6 = "Child in day/group care center" 7 = "Child in nursery/preschool" 8 = "Child in organized school-based" 9 = "Child in kindergarten" 10 = "Child cares for self" 11 = "... works at home" 12 = "... cares for child at work (in" ; VALUE TM8172L (default=32) 0 = "Not applicable" 1 = "Child's other parent/stepparent" 2 = "Child's brother/sister" 3 = "Child's grandparent" 4 = "Other relative of child" 5 = "Nonrelative of child" 6 = "Child in day/group care center" 7 = "Child in nursery/preschool" 8 = "Child in organized school-based" 9 = "Child in kindergarten" 10 = "Child cares for self" 11 = "... works at home" 12 = "... cares for child at work (in" ; VALUE TM8174L (default=32) 0 = "Not applicable" 1 = "Child's other parent/stepparent" 2 = "Child's brother/sister" 3 = "Child's grandparent" 4 = "Other relative of child" 5 = "Nonrelative of child" 6 = "Child in day/group care center" 7 = "Child in nursey/preschool" 8 = "Child in organized school-based" 9 = "Child in kindergarten," 10 = "Child cares for self" 11 = "... works at home" 12 = "... cares for child at work (in" ; VALUE TM8176L (default=32) 0 = "Not applicable" 1 = "Child's home" 2 = "Other private home" 3 = "Other place" ; VALUE TM8178L (default=32) 0 = "Not applicable" 1 = "Child's home" 2 = "Other private home" 3 = "Other place" ; VALUE TM8180L (default=32) 0 = "Not applicable" 1 = "Child's home" 2 = "Other private home" 3 = "Other place" ; VALUE TM8182L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8208" ; VALUE TM8184L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8210" ; VALUE TM8186L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8212" ; VALUE TM8188L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8208" ; VALUE TM8190L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM8198" 2 = "No - skip to TM8210" ; VALUE TM8192L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM8200" 2 = "No - skip to TM8212" ; VALUE TM8194L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8202" ; VALUE TM8196L (default=32) 0 = "Not applicable" 1 = "Payment for youngest child" 2 = "Includes another child" ; VALUE TM8198L (default=32) 0 = "Not applicable" 1 = "Payment for second youngest" 2 = "Includes another child" ; VALUE TM8200L (default=32) 0 = "Not applicable" 1 = "Payment for third youngest" 2 = "Includes another child" ; VALUE TM8202L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM8204L (default=32) 0 = "Not applicable" -1 = "Dk" -2 = "Previously recorded for" ; VALUE TM8206L (default=32) 0 = "Not applicable" -1 = "Dk" -2 = "Previously recorded for" -3 = "Previously recorded for second" ; VALUE TM8208L (default=32) 0 = "Not applicable" ; VALUE TM8210L (default=32) 0 = "Not applicable" ; VALUE TM8212L (default=32) 0 = "Not applicable" ; VALUE TM8322L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8326" ; VALUE TM8324L (default=32) 0 = "Not applicable" 999999 = "Per week" -2 = "All costs already recorded for" ; VALUE TM8326L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8400" ; VALUE TM8328L (default=32) 0 = "Not applicable" 1 = "Yes, respondent lost time" 2 = "Yes spouse lost time" 3 = "Both, respondent and spouse" 4 = "No" -1 = "Don't know" ; VALUE TM8400L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to part d (TM8700)" ; VALUE TM8401L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to part d (TM8700)" ; VALUE TM8402L (default=32) 0 = "Not applicable" 4 = "04+ children with a parent" ; VALUE TM8403L (default=32) 0 = "Not applicable" ; VALUE TM8404L (default=32) 0 = "Not applicable" 1 = "Yes" ; VALUE TM8405L (default=32) 0 = "Not applicable" 1 = "Yes" ; VALUE TM8406L (default=32) 0 = "Not applicable" 1 = "Yes" ; VALUE TM8407L (default=32) 0 = "Not applicable" ; VALUE TM8408L (default=32) 0 = "Not applicable" 1 = "Yes" ; VALUE TM8409L (default=32) 0 = "Not applicable" 1 = "Yes" ; VALUE TM8410L (default=32) 0 = "Not applicable" 1 = "Yes" ; VALUE TM8411L (default=32) 0 = "Not applicable" ; VALUE TM8412L (default=32) 0 = "Not applicable" 1 = "Yes" ; VALUE TM8413L (default=32) 0 = "Not applicable" 1 = "Yes" ; VALUE TM8414L (default=32) 0 = "Not applicable" 1 = "Yes" ; VALUE TM8415L (default=32) 0 = "Not applicable" ; VALUE TM8416L (default=32) 0 = "Not applicable" 1 = "Yes" ; VALUE TM8417L (default=32) 0 = "Not applicable" 1 = "Yes" ; VALUE TM8418L (default=32) 0 = "Not applicable" 1 = "Yes" ; VALUE TM8435L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - for each child listed" ; VALUE TM8436L (default=32) 0 = "Not applicable" 1 = "Yes - mark the 'yes' box in" 2 = "No" ; VALUE TM8437L (default=32) 0 = "Not applicable" ; VALUE TM8438L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to 1j" ; VALUE TM8439L (default=32) 0 = "Not applicable" ; VALUE TM8440L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8441" ; VALUE TM8441L (default=32) 0 = "Not applicabple" 1 = "Voluntary written agreement" 2 = "Court-ordered agreement." 3 = "Other type of written" 4 = "Non written (verbal agreement)" ; VALUE TM8442L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM8443L (default=32) 0 = "Not applicable" ; VALUE TM8444L (default=32) 0 = "Not applicable" ; VALUE TM8445L (default=32) 0 = "Not applicable" ; VALUE TM8446L (default=32) 0 = "Not applicable" ; VALUE TM8447L (default=32) 0 = "Not applicable" -1 = "Don't know" ; VALUE TM8448L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8456" ; VALUE TM8449L (default=32) -1 = "Dk" 0 = "Not applicable" ; VALUE TM8450L (default=32) 0 = "not applicable" ; VALUE TM8451L (default=32) 0 = "Not applicable" ; VALUE TM8452L (default=32) 0 = "Not applicable" ; VALUE TM8453L (default=32) 0 = "Not applicable" 100000 = "Dollars per year" ; VALUE TM8454L (default=32) 0 = "Not applicable" -1 = "Don't know" ; VALUE TM8455L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM8456L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM8458" 2 = "No" ; VALUE TM8457L (default=32) 0 = "Not applicable" 1 = "Child(ren) over the age limit" 2 = "Other parent not working" 3 = "Other parent in jail or" 4 = "Payment suspended by court or" 5 = "Other skip to TM8462" ; VALUE TM8458L (default=32) 0 = "Not applicable" 100000 = "Amount supposed" -1 = "Dk" ; VALUE TM8459L (default=32) 0 = "Not applicable" 1 = "Directly from the other parent?" 2 = "Through a court?" 3 = "Through the welfare or child" 4 = "Some other method" -1 = "Dk" ; VALUE TM8460L (default=32) 0 = "Not applicable" 100000 = "Total amount received" -3 = "None - skip to TM8462" -1 = "Dk" ; VALUE TM8461L (default=32) 0 = "Not applicable" 1 = "All of the time" 2 = "Most of the time" 3 = "Some of the time" 4 = "None of the time" ; VALUE TM8462L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM8464" 2 = "No" -1 = "Dk" ; VALUE TM8463L (default=32) 0 = "Not applicable" 1 = "Less than $500" 2 = "Between $500 and $5,000" 3 = "More than $5,000" -1 = "Dk" ; VALUE TM8464L (default=32) 0 = "Not applicable" 1 = "Non-custodial parent to provide" ; VALUE TM8465L (default=32) 0 = "Not applicable" 1 = "Custodial parent to provide" ; VALUE TM8466L (default=32) 0 = "Not applicable" 1 = "Non-custodial parent to pay" ; VALUE TM8467L (default=32) 0 = "Not applicable" 1 = "Child support payments to" ; VALUE TM8468L (default=32) 0 = "Not applicable" 1 = "None" ; VALUE TM8469L (default=32) 0 = "Not applicable" 1 = "Other" ; VALUE TM8470L (default=32) 0 = "Not applicable" 1 = "Joint legal and physical" 2 = "Joint legal with mother" 3 = "Joint legal with father" 4 = "Mother legal and physical" 5 = "Father legal and physical" 6 = "Split custody" 7 = "Other" ; VALUE TM8471L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM8472L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8474" ; VALUE TM8473L (default=32) 0 = "Not applicable" 1 = "Yes ask TM8474 for all children" 2 = "No ask TM8484 for oldest child" ; VALUE TM8474L (default=32) 0 = "Not applicable" ; VALUE TM8475L (default=32) 0 = "Not applicable" ; VALUE TM8476L (default=32) 0 = "Not applicable" ; VALUE TM8477L (default=32) -3 = "None" ; VALUE TM8478L (default=32) -1 = "Dk" ; VALUE TM8479L (default=32) 0 = "Not applicable" 1 = "Same county/city" 2 = "Same state (different" 3 = "Different state" 4 = "Other parent now deceased -" 5 = "Other" 6 = "Unknown - skip to TM8528" ; VALUE TM8480L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM8528" 2 = "No" ; VALUE TM8481L (default=32) 0 = "Not applicable" 1 = "Respondent - skip TM8528" 2 = "Other parent - skip TM8528" 3 = "Both respondent and other" ; VALUE TM8482L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM8483L (default=32) 0 = "Not applicable" ; VALUE TM8484L (default=32) 0 = "Not applicable" ; VALUE TM8485L (default=32) 0 = "Not applicable" ; VALUE TM8486L (default=32) 0 = "Not applicable" 99999 = "Dollars per year" 100000 = "100000+ dollars per year" ; VALUE TM8487L (default=32) 0 = "Not applicable" -1 = "Don't know" ; VALUE TM8488L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8495" ; VALUE TM8489L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM8490L (default=32) 0 = "Not applicable" ; VALUE TM8491L (default=32) 0 = "Not applicable" ; VALUE TM8492L (default=32) 0 = "Not applicable" ; VALUE TM8493L (default=32) 0 = "Not applicable" 99999 = "Dollars per year" 100000 = "100000+ dollars per year" ; VALUE TM8494L (default=32) 0 = "Not applicable" -1 = "Don't know" ; VALUE TM8495L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM8497" 2 = "No" ; VALUE TM8496L (default=32) 0 = "Not applicable" 1 = "Child(ren) too old" 2 = "Other parent not working" 3 = "Other parent in jail or" 4 = "Other skip to TM8500" ; VALUE TM8497L (default=32) 0 = "Not applicable" 99999 = "Total amount that ...was" 100000 = "100000+ total amount that ...was" -1 = "Dk" ; VALUE TM8498L (default=32) 0 = "Not applicable" 99999 = "Total amount that ... actually" 100000 = "100000+ total amount that ..." -1 = "Dk" -3 = "None - skip to TM8500" ; VALUE TM8499L (default=32) 0 = "Not applicable" 1 = "All of the time" 2 = "Most of the time" 3 = "Some of the time" 4 = "None of the time" ; VALUE TM8500L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8502" -1 = "Dk" ; VALUE TM8501L (default=32) 0 = "Not applicable" 1 = "Less than $500" 2 = "Between $500 and $5,000" 3 = "More" -1 = "Dk" ; VALUE TM8502L (default=32) 0 = "Not applicable" 1 = "Non-custodial parent to provide" ; VALUE TM8503L (default=32) 0 = "Not applicable" 1 = "Custodial parent to provide" ; VALUE TM8504L (default=32) 0 = "Not applicable" 1 = "Non-custodial parent to pay" ; VALUE TM8505L (default=32) 0 = "Not applicable" 1 = "Child support payments to" ; VALUE TM8506L (default=32) 0 = "Not applicable" 1 = "None" ; VALUE TM8507L (default=32) 0 = "Not applicable" 1 = "Other" ; VALUE TM8508L (default=32) 0 = "Not applicable" 1 = "Child(ren) live with mother" 2 = "Child(ren) live with father" 3 = "Child(ren) live with mother and" 4 = "None" 5 = "Other" ; VALUE TM8509L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM8510L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8512" ; VALUE TM8511L (default=32) 0 = "Not applicable" 1 = "Yes ask TM8412 for all children" 2 = "No ask TM8412 for oldest child" ; VALUE TM8512L (default=32) 0 = "Not applicable" ; VALUE TM8513L (default=32) 0 = "Not applicable" ; VALUE TM8514L (default=32) 0 = "Not applicable" ; VALUE TM8515L (default=32) 0 = "Not applicable" -3 = "None" ; VALUE TM8516L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM8517L (default=32) 0 = "Not applicable" 1 = "Male - skip to TM8648" 2 = "Female" ; VALUE TM8518L (default=32) 0 = "Not applicable" 1 = "Never married - go to TM8519" 2 = "All others - skip to TM8583" ; VALUE TM8519L (default=32) 0 = "Not applicable" ; VALUE TM8520L (default=32) 0 = "Not applicable" ; VALUE TM8521L (default=32) 0 = "Not applicable" ; VALUE TM8522L (default=32) 0 = "Not applicable" ; VALUE TM8523L (default=32) 0 = "Not applicable" ; VALUE TM8524L (default=32) 0 = "Not applicable" ; VALUE TM8525L (default=32) 0 = "Not applicable" ; VALUE TM8526L (default=32) 0 = "Not applicable" ; VALUE TM8527L (default=32) 0 = "Not applicable" ; VALUE TM8528L (default=32) 0 = "Not applicable" ; VALUE TM8529L (default=32) 0 = "Not applicable" ; VALUE TM8530L (default=32) 0 = "Not applicable" ; VALUE TM8531L (default=32) 0 = "Not applicable" ; VALUE TM8532L (default=32) 0 = "Not applicable" ; VALUE TM8533L (default=32) 0 = "Not applicable" ; VALUE TM8534L (default=32) 0 = "Not applicable" ; VALUE TM8535L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8536L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8537L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8538L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8539L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8540L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8541L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8542L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8543L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8544L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8545L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8546L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8547L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8548L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8549L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8550L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8551L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8552L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8553L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8554L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8555L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8556L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8557L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8558L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8559L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8560L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8561L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8562L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8563L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8564L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8565L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8566L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8567L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8568L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8569L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8570L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8571L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8572L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8573L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8574L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8575L (default=32) 0 = "Not applicable" 1 = "Yes - ask TM8535 through TM8574" 2 = "No - skip to TM8648" ; VALUE TM8576L (default=32) 0 = "Not applicable" 1 = "Yes - ask TM8535 through TM8574" 2 = "No - skip to TM8648" ; VALUE TM8577L (default=32) 0 = "Not applicable" 1 = "Yes - ask TM8535 through TM8574" 2 = "No - skip to TM8648" ; VALUE TM8578L (default=32) 0 = "Not applicable" 1 = "Yes - ask TM8535 through TM8574" 2 = "No - skip to TM8648" ; VALUE TM8579L (default=32) 0 = "Not applicable" 1 = "Yes - ask TM8535 through TM8574" 2 = "No - skip to TM8648" ; VALUE TM8580L (default=32) 0 = "Not applicable" 1 = "Yes - ask TM8535 through TM8574" 2 = "No - skip to TM8648" ; VALUE TM8581L (default=32) 0 = "Not applicable" 1 = "Yes - ask TM8535 through TM8574" 2 = "No - skip to TM8648" ; VALUE TM8583L (default=32) 0 = "Not applicable" ; VALUE TM8584L (default=32) 0 = "Not applicable" ; VALUE TM8585L (default=32) 0 = "Not applicable" ; VALUE TM8586L (default=32) 0 = "Not applicable" ; VALUE TM8587L (default=32) 0 = "Not applicable" ; VALUE TM8588L (default=32) 0 = "Not applicable" ; VALUE TM8589L (default=32) 0 = "Not applicable" ; VALUE TM8590L (default=32) 0 = "Not applicable" ; VALUE TM8591L (default=32) 0 = "Not applicable" ; VALUE TM8592L (default=32) 0 = "Not applicable" ; VALUE TM8593L (default=32) 0 = "Not applicable" ; VALUE TM8594L (default=32) 0 = "Not applicable" ; VALUE TM8595L (default=32) 0 = "Not applicable" ; VALUE TM8596L (default=32) 0 = "Not applicable" ; VALUE TM8597L (default=32) 0 = "Not applicable" ; VALUE TM8598L (default=32) 0 = "Not applicable" ; VALUE TM8599L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM8648" 2 = "No" ; VALUE TM8600L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8601L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8602L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8603L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8604L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8605L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8606L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8607L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8608L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8609L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8610L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8611L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8612L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8613L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8614L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8615L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8616L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8617L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8618L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8619L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8620L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8621L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8622L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8623L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8624L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8625L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8626L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8627L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8628L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8629L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8630L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8631L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8632L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8633L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8634L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8635L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8636L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8637L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8638L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8639L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8640L (default=32) 0 = "Not applicable" 1 = "Yes - ask TM8600 through TM8639" 2 = "No - skip to TM8648" ; VALUE TM8641L (default=32) 0 = "Not applicable" 1 = "Yes - ask TM8600 through TM8639" 2 = "No - skip to TM8648" ; VALUE TM8642L (default=32) 0 = "Not applicable" 1 = "Yes - ask TM8600 through TM8639" 2 = "No - skip to TM8648" ; VALUE TM8643L (default=32) 0 = "Not applicable" 1 = "Yes - ask TM8600 through TM8639" 2 = "No - skip to TM8648" ; VALUE TM8644L (default=32) 0 = "Not applicable" 1 = "Yes - ask TM8600 through TM8639" 2 = "No - skip to TM8648" ; VALUE TM8645L (default=32) 0 = "Not applicable" 1 = "Yes - ask TM8600 through TM8639" 2 = "No - skip to TM8648" ; VALUE TM8646L (default=32) 0 = "Not applicable" 1 = "Yes - ask TM8600 through TM8639" 2 = "No - skip to TM8648" ; VALUE TM8648L (default=32) 0 = "Not applicable" 1 = "Legal paternity not established" ; VALUE TM8649L (default=32) 0 = "Not applicable" 1 = "Unable to locate parent" ; VALUE TM8650L (default=32) 0 = "Not applicable" 1 = "Other parent unable to pay" ; VALUE TM8651L (default=32) 0 = "Not applicable" 1 = "Final agreement pending" ; VALUE TM8652L (default=32) 0 = "Not applicable" 1 = "Accepted property settlement in" ; VALUE TM8653L (default=32) 0 = "Not applicable" 1 = "Do not want a legal child" ; VALUE TM8654L (default=32) 0 = "Not applicable" 1 = "Did not pursue award" ; VALUE TM8655L (default=32) 0 = "Not applicable" 1 = "Other" ; VALUE TM8656L (default=32) 0 = "Not applicable" 1 = "Same county / city" 2 = "Same state (different county /" 3 = "Different state" 4 = "Other parent now deceased -" 5 = "Other" 6 = "Unknown - skip to check" ; VALUE TM8658L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM8660L (default=32) 0 = "Not applicable" 1 = "Respondent" 2 = "Other parent" 3 = "Both respondent and other" ; VALUE TM8662L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8676" ; VALUE TM8664L (default=32) 0 = "Not applicable" ; VALUE TM8666L (default=32) 0 = "Not applicable" 999999 = "Dollars biweekly" ; VALUE TM8668L (default=32) 0 = "Not applicable" ; VALUE TM8670L (default=32) 0 = "Not applicable" ; VALUE TM8672L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" ; VALUE TM8674L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" ; VALUE TM8676L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T18" ; VALUE TM8678L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM8680L (default=32) 0 = "Not applicable" 1 = "Locate the other parent" ; VALUE TM8682L (default=32) 0 = "Not applicable" 1 = "Establish paternity" ; VALUE TM8684L (default=32) 0 = "Not applicable" 1 = "Establish support obligation" ; VALUE TM8686L (default=32) 0 = "Not applicable" 1 = "Establish medical support" ; VALUE TM8688L (default=32) 0 = "Not applicable" 1 = "Enforce support order" ; VALUE TM8690L (default=32) 0 = "Not applicable" 1 = "Modify an order" ; VALUE TM8692L (default=32) 0 = "Not applicable" 1 = "Other" ; VALUE TM8694L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T18" ; VALUE TM8696L (default=32) 0 = "Not applicable" 1 = "Locate the other parent" ; VALUE TM8698L (default=32) 0 = "Not applicable" 1 = "Establish paternity" ; VALUE TM8700L (default=32) 0 = "Not applicable" 1 = "Establish support obligation" ; VALUE TM8702L (default=32) 0 = "Not applicable" 1 = "Establish medical support" ; VALUE TM8704L (default=32) 0 = "Not applicable" 1 = "Enforce support order" ; VALUE TM8706L (default=32) 0 = "Not applicable" 1 = "Modify an order" ; VALUE TM8708L (default=32) 0 = "Not applicable" 1 = "Other" ; VALUE TM8710L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to 12" ; VALUE TM8712L (default=32) 0 = "Not applicable" 1 = "Male - skip to check item T27" 2 = "Female" ; VALUE TM8714L (default=32) 0 = "Not applicable" 1 = "Never married" 2 = "All others - skip to" ; VALUE TM8715L (default=32) 0 = "Not applicable" ; VALUE TM8716L (default=32) 0 = "Not applicable" ; VALUE TM8717L (default=32) 0 = "Not applicable" ; VALUE TM8718L (default=32) 0 = "Not applicable" ; VALUE TM8719L (default=32) 0 = "Not applicable" ; VALUE TM8720L (default=32) 0 = "Not applicable" ; VALUE TM8721L (default=32) 0 = "Not applicable" ; VALUE TM8722L (default=32) 0 = "Not applicable" ; VALUE TM8723L (default=32) 0 = "Not applicable" ; VALUE TM8724L (default=32) 0 = "Not applicable" ; VALUE TM8725L (default=32) 0 = "Not applicable" ; VALUE TM8726L (default=32) 0 = "Not applicable" ; VALUE TM8727L (default=32) 0 = "Not applicable" ; VALUE TM8728L (default=32) 0 = "Not applicable" ; VALUE TM8729L (default=32) 0 = "Not applicable" ; VALUE TM8730L (default=32) 0 = "Not applicable" ; VALUE TM8731L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8732L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8733L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8734L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8735L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8736L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8737L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8738L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8739L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8740L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8741L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8742L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8743L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8744L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8745L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8746L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8747L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8748L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8749L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8750L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8751L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8752L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8753L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8754L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8755L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8756L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8757L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8758L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8759L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8760L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8761L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8762L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8763L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8764L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8765L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8766L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8767L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8768L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8769L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8770L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk check item T21b" ; VALUE TM8771L (default=32) 0 = "Not applicable" 1 = "Yes - ask 6a through 6e for" 2 = "No - skip to 9a" ; VALUE TM8772L (default=32) 0 = "Not applicable" 1 = "Yes - ask 6a through 6e for" 2 = "No - skip to 9a" ; VALUE TM8773L (default=32) 0 = "Not applicable" 1 = "Yes - ask 6a through 6e for" 2 = "No - skip to 9a" ; VALUE TM8774L (default=32) 0 = "Not applicable" 1 = "Yes - ask 6a through 6e for" 2 = "No - skip to 9a" ; VALUE TM8775L (default=32) 0 = "Not applicable" 1 = "Yes - ask 6a through 6e for" 2 = "No - skip to 9a" ; VALUE TM8776L (default=32) 0 = "Not applicable" 1 = "Yes - ask 6a through 6e for" 2 = "No - skip to 9a" ; VALUE TM8777L (default=32) 0 = "Not applicable" 1 = "Yes - ask 6a through 6e for" 2 = "No - skip to 9 a skip to 9a" ; VALUE TM8779L (default=32) 0 = "Not applicable" ; VALUE TM8780L (default=32) 0 = "Not applicable" ; VALUE TM8781L (default=32) 0 = "Not applicable" ; VALUE TM8782L (default=32) 0 = "Not applicable" ; VALUE TM8783L (default=32) 0 = "Not applicable" ; VALUE TM8784L (default=32) 0 = "Not applicable" ; VALUE TM8785L (default=32) 0 = "Not applicable" ; VALUE TM8786L (default=32) 0 = "Not applicable" ; VALUE TM8787L (default=32) 0 = "Not applicable" ; VALUE TM8788L (default=32) 0 = "Not applicable" ; VALUE TM8789L (default=32) 0 = "Not applicable" ; VALUE TM8790L (default=32) 0 = "Not applicable" ; VALUE TM8791L (default=32) 0 = "Not applicable" ; VALUE TM8792L (default=32) 0 = "Not applicable" ; VALUE TM8793L (default=32) 0 = "Not applicable" ; VALUE TM8794L (default=32) 0 = "Not applicable" ; VALUE TM8795L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM8805 for this" ; VALUE TM8796L (default=32) 0 = "Not applicable" 1 = "Yes - if last child skip to" 2 = "No - skip to TM8805 for this" ; VALUE TM8797L (default=32) 0 = "Not applicable" 1 = "Yes - if last child skip to" 2 = "No - skip to TM8805 for child" ; VALUE TM8798L (default=32) 0 = "Not applicable" 1 = "Yes - if last child skip to" 2 = "No - skip to TM8805 for this" ; VALUE TM8799L (default=32) 0 = "Not applicable" 1 = "Yes - if last child skip to" 2 = "No - skip to TM8805 for this" ; VALUE TM8800L (default=32) 0 = "Not applicable" 1 = "Yes - if last child skip to" 2 = "No - skip to TM8805 for this" ; VALUE TM8801L (default=32) 0 = "Not applicable" 1 = "Yes - if last child skip to" 2 = "No - skip to TM8805 for this" ; VALUE TM8802L (default=32) 0 = "Not applicable" 1 = "Yes - if last child skip to" 2 = "No - skip to TM8805 for child" ; VALUE TM8803L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to 9a and ask 9a" ; VALUE TM8804L (default=32) 0 = "Not applicable" 1 = "Yes - skip to 9a and ask 9a" 2 = "No - go to 7a for the next" ; VALUE TM8805L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8806L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8807L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8808L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8809L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8810L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8811L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8812L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8813L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8814L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8815L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8816L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8817L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8818L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8819L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8820L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8821L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8822L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8823L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8824L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8825L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8826L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8827L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8828L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8829L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8830L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8831L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8832L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8833L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8834L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8835L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8836L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8837L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8838L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8839L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8840L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8841L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8842L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8843L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" ; VALUE TM8844L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk check item T24" ; VALUE TM8845L (default=32) 0 = "Not applicable" 1 = "Yes - go to 7a for next child" 2 = "No - skip to 9a" ; VALUE TM8846L (default=32) 0 = "Not applicable" 1 = "Yes - go to 7a for next child" 2 = "No" ; VALUE TM8847L (default=32) 0 = "Not applicable" 1 = "Yes - go to 7a for next child" 2 = "No" ; VALUE TM8848L (default=32) 0 = "Not applicable" 1 = "Yes - go to 7a for next child" 2 = "No" ; VALUE TM8849L (default=32) 0 = "Not applicable" 1 = "Yes - go to 7a for next child" 2 = "No" ; VALUE TM8850L (default=32) 0 = "Not applicable" 1 = "Yes - go to 7a for next child" 2 = "No" ; VALUE TM8851L (default=32) 0 = "Not applicable" 1 = "Yes - go to 7a for next child" 2 = "No" ; VALUE TM8853L (default=32) 0 = "Not applicable" 1 = "Yes - skip to check item T26" 2 = "No - skip to 8a" ; VALUE TM8854L (default=32) 0 = "Not applicable" 1 = "Yes - skip to check item T26" 2 = "No - skip to 8a" ; VALUE TM8855L (default=32) 0 = "Not applicable" 1 = "Yes - skip to check item T26" 2 = "No - skip to 8a" ; VALUE TM8856L (default=32) 0 = "Not applicable" 1 = "Yes - skip to check item T26" 2 = "No - skip to 8a" ; VALUE TM8857L (default=32) 0 = "Not applicable" 1 = "Yes - skip to check item T26" 2 = "No - skip to 8a" ; VALUE TM8858L (default=32) 0 = "Not applicable" 1 = "Yes - skip to check item T26" 2 = "No - skip to 8a" ; VALUE TM8859L (default=32) 0 = "Not applicable" 1 = "Yes - skip to check item T26" 2 = "No - skip to 8a" ; VALUE TM8862L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No check item T26" ; VALUE TM8864L (default=32) 0 = "Not applicable" 1 = "Yes - ask 9a-9c for first child" 2 = "No - ask 9a-9c for first and" ; VALUE TM8866L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - ask 9a-9c for child marked" ; VALUE TM8868L (default=32) 0 = "Not applicable" 1 = "Yes - ask 9a-9c for youngest" 2 = "No - ask 9a-9c for youngest and" ; VALUE TM8869L (default=32) 0 = "Not applicable" ; VALUE TM8870L (default=32) 0 = "Not applicable" ; VALUE TM8871L (default=32) 0 = "Not applicable" 1 = "Legal paternity not established" ; VALUE TM8872L (default=32) 0 = "Not applicable" 1 = "Legal paternity not established" ; VALUE TM8873L (default=32) 0 = "Not applicable" 1 = "Unable to locate parent" ; VALUE TM8874L (default=32) 0 = "Not applicable" 1 = "Unable to locate parent" ; VALUE TM8875L (default=32) 0 = "Not applicable" 1 = "Other parent unable to pay" ; VALUE TM8876L (default=32) 0 = "Not applicable" 1 = "Other parent unable to pay" ; VALUE TM8877L (default=32) 0 = "Not applicable" 1 = "Final agreement pending" ; VALUE TM8878L (default=32) 0 = "Not applicable" 1 = "Final agreement pending" ; VALUE TM8879L (default=32) 0 = "Not applicable" 1 = "Accepted property or cash" ; VALUE TM8880L (default=32) 0 = "Not applicable" 1 = "Accepted property or cash" ; VALUE TM8881L (default=32) 0 = "Not applicable" 1 = "Do not want child support" ; VALUE TM8882L (default=32) 0 = "Not applicable" 1 = "Do not want child support" ; VALUE TM8883L (default=32) 0 = "Not applicable" 1 = "Did not pursue award" ; VALUE TM8884L (default=32) 0 = "Not applicable" 1 = "Did not pursue award" ; VALUE TM8885L (default=32) 0 = "Not applicable" 1 = "Other" ; VALUE TM8886L (default=32) 0 = "Not applicable" 1 = "Other" ; VALUE TM8887L (default=32) 0 = "Not applicable" 1 = "Same county/city" ; VALUE TM8888L (default=32) 0 = "Not applicable" 1 = "Same county/city" ; VALUE TM8889L (default=32) 0 = "Not applicable" 1 = "Same state (different county/" ; VALUE TM8890L (default=32) 0 = "Not applicable" 1 = "Same state (different county/" ; VALUE TM8891L (default=32) 0 = "Not applicable" 1 = "Different state" ; VALUE TM8892L (default=32) 0 = "Not applicable" 1 = "Different state" ; VALUE TM8893L (default=32) 0 = "Not applicable" 1 = "Other parent deceased -" ; VALUE TM8894L (default=32) 0 = "Not applicable" 1 = "Other parent deceased -" ; VALUE TM8895L (default=32) 0 = "Not applicable" 1 = "Other" -1 = "Unknown" ; VALUE TM8896L (default=32) 0 = "Not applicable" 1 = "Other" -1 = "Unknown" ; VALUE TM8897L (default=32) 0 = "Not applicable" ; VALUE TM8898L (default=32) 0 = "Not applicable" ; VALUE TM8900L (default=32) 0 = "Not applicable" ; VALUE TM8901L (default=32) 0 = "Not applicable" ; VALUE TM8902L (default=32) 0 = "Not applicable" ; VALUE TM8903L (default=32) 0 = "Not applicable" ; VALUE TM8904L (default=32) 0 = "Not applicable" -3 = "None" ; VALUE TM8905L (default=32) 0 = "Not applicable" -3 = "None" ; VALUE TM8906L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM8907L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM8908L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to 12" ; VALUE TM8909L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM8910L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9002L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to part e" -1 = "Dk - skip to part e" ; VALUE TM9004L (default=32) 0 = "Not applicable" 1 = "Regular" 2 = "Lump-sum" 3 = "Both" ; VALUE TM9006L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9007L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9008L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to 4d" ; VALUE TM9010L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9012L (default=32) 0 = "Not applicable" 1 = "Voluntary written agreement" 2 = "Court-ordered agreement" 3 = "Other type of written agreement" 4 = "Non-written agreement" ; VALUE TM9014L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9016L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9020" -1 = "Dk - skip to TM9020" ; VALUE TM9018L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9019L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9020L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9022L (default=32) 0 = "Not applicable" 012800 = "Amount paid" -1 = "Dk" ; VALUE TM9024L (default=32) 0 = "Not applicable" 1 = "Through employment related wage" 2 = "Directly to the other parent" 3 = "Directly to the court" 4 = "Directly to a child support" 5 = "Other" -1 = "Dk" ; VALUE TM9026L (default=32) 0 = "Not applicable" 1 = "Non-custodial parent to provide" ; VALUE TM9028L (default=32) 0 = "Not applicable" 1 = "Custodial parent to provide" ; VALUE TM9030L (default=32) 0 = "Not applicable" 1 = "Non-custodial parent to pay" ; VALUE TM9032L (default=32) 0 = "Not applicable" 1 = "Child support payments to" ; VALUE TM9034L (default=32) 0 = "Not applicable" 1 = "Other" ; VALUE TM9036L (default=32) 0 = "Not applicable" -3 = "None" ; VALUE TM9038L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9042" ; VALUE TM9040L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9042L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to part e" ; VALUE TM9044L (default=32) 0 = "Not applicable" 010600 = "The amount of child support" -1 = "Dk" ; VALUE TM9100L (default=32) 0 = "Not applicable" 1 = "Excellent" 2 = "Very good" 3 = "Good" 4 = "Fair" 5 = "Poor" ; VALUE TM9102L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9104L (default=32) 0 = "Not applicable" 1 = "Yes" ; VALUE TM9106L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9110" ; VALUE TM9108L (default=32) 1 = "Yes" 2 = "No" ; VALUE TM9110L (default=32) 0 = "Not applicable" 1 = "Has difficulty" 2 = "No difficulty - skip to TM9114" ; VALUE TM9112L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9114L (default=32) 0 = "Not applicable" 1 = "Has difficulty" 2 = "No difficulty - skip to TM9118" ; VALUE TM9116L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9118L (default=32) 0 = "Not applicable" 1 = "Has difficulty" 2 = "No difficulty - skip to TM9122" ; VALUE TM9120L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9122L (default=32) 0 = "Not applicable" 1 = "Has difficulty" 2 = "No diffculty- skip to TM9126" ; VALUE TM9124L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9126L (default=32) 0 = "Not applicable" 1 = "Has difficulty" 2 = "No difficulty - skip to TM9130" ; VALUE TM9128L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9130L (default=32) 0 = "Not applicable" 1 = "Has difficulty" 2 = "No difficulty - skip to TM9134" ; VALUE TM9132L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9134L (default=32) 0 = "Not applicable" 1 = "Has difficulty" 2 = "No difficulty - skip to TM9138" ; VALUE TM9136L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9138L (default=32) 0 = "Not applicable" 1 = "Has difficulty - ask TM9139" 2 = "No difficulty" ; VALUE TM9139L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9140L (default=32) 0 = "Not applicable" 1 = "Has difficulty - ask TM9141" 2 = "No difficulty" ; VALUE TM9141L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9142L (default=32) 0 = "Not applicable" 1 = "Has difficulty - ask TM9143" 2 = "No difficulty" ; VALUE TM9143L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9144L (default=32) 0 = "Not applicable" 1 = "Has difficulty - ask TM8845" 2 = "No difficulty" ; VALUE TM9145L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9146L (default=32) 0 = "Not applicable" 1 = "Has difficulty - ask TM9147" 2 = "No difficulty" ; VALUE TM9147L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9148L (default=32) 0 = "Not applicable" 1 = "Has difficulty - ask TM9149" 2 = "No difficulty" ; VALUE TM9149L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9150L (default=32) 0 = "Not applicable" 1 = "Has difficulty - ask TM9151" 2 = "No difficulty" ; VALUE TM9151L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9152L (default=32) 0 = "Not applicable" 1 = "Has difficulty - ask TM9153" 2 = "No difficulty" ; VALUE TM9153L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9154L (default=32) 0 = "Not applicable" 1 = "Has difficulty - ask TM9155" 2 = "No difficulty" ; VALUE TM9155L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9156L (default=32) 0 = "Not applicable" 1 = "Has difficulty - ask TM9157" 2 = "No difficulty" ; VALUE TM9157L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9158L (default=32) 0 = "Not applicable" 1 = "Has difficulty - ask TM9159" 2 = "No difficulty" ; VALUE TM9159L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9160L (default=32) 0 = "Not applicable" 1 = "Has difficulty - ask TM9161" 2 = "No difficulty" ; VALUE TM9161L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No check item T29" ; VALUE TM9162L (default=32) 0 = "Not applicable" 1 = "Yes - go to TM9176" 2 = "No - skip to TM9190" ; VALUE TM9176L (default=32) 0 = "Not applicable" 1 = "Son" 2 = "Daughter" 3 = "Spouse" 4 = "Parent" 5 = "Other relative nonrelative" 6 = "Friend or neighbor" 7 = "Paid help" 8 = "Other nonrelative" 9 = "Did not receive help - skip to" ; VALUE TM9178L (default=32) 0 = "Not applicable" 1 = "Son" 2 = "Daughter" 3 = "Spouse" 4 = "Parent" 5 = "Other relative nonrelative" 6 = "Friend or neighbor" 7 = "Paid help" 8 = "Other nonrelative" ; VALUE TM9180L (default=32) 0 = "Not applicable" 1 = "Yes" ; VALUE TM9182L (default=32) 0 = "Not applicable" 1 = "Yes" ; VALUE TM9183L (default=32) 0 = "Not applicable" ; VALUE TM9184L (default=32) 0 = "Not applicable" ; VALUE TM9185L (default=32) 0 = "Not applicable" 1 = "No" ; VALUE TM9186L (default=32) 0 = "Not applicable" 1 = "No" ; VALUE TM9187L (default=32) 0 = "Not applicable" 1 = "Less than 6 months" 2 = "6 to 11 months" 3 = "1 to 2 years" 4 = "3 to 5 years" 5 = "More than 5 years" ; VALUE TM9188L (default=32) 0 = "Not applicable" 2 = "No - skip to TM9192" -1 = "Don't know - skip to TM9192" ; VALUE TM9189L (default=32) 0 = "Not applicable" 999999 = "Dollars" -1 = "Dk" ; VALUE TM9190L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9202" ; VALUE TM9192L (default=32) 0 = "Not applicable" ; VALUE TM9194L (default=32) 0 = "Not applicable" ; VALUE TM9196L (default=32) 0 = "Not applicable" ; VALUE TM9197L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No check item T31" ; VALUE TM9198L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9202" ; VALUE TM9200L (default=32) 0 = "Not applicable" ; VALUE TM9202L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9204L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9206L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9208L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9210L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9212L (default=32) 0 = "Not applicable" 1 = "15 years old - skip to TM8941" 2 = "16 to 67 years old" 3 = "68 years old or older - skip to" ; VALUE TM9214L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM9218" 2 = "No" ; VALUE TM9216L (default=32) 0 = "Not applicable" 1 = "Item 18a is blank - skip to" 2 = "Yes" 3 = "No - skip to TM9226" ; VALUE TM9218L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM9222" 2 = "No - skip to TM9226" ; VALUE TM9220L (default=32) 0 = "Not applicable" 1 = "Yes - mark '171' on iss" 2 = "No skip to TM9226" ; VALUE TM9222L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM9226" 2 = "No" ; VALUE TM9224L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9226L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9230" ; VALUE TM9228L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9230L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9300" ; VALUE TM9232L (default=32) 0 = "Not applicable" ; VALUE TM9234L (default=32) 0 = "Not applicable" ; VALUE TM9236L (default=32) 0 = "Not applicable" ; VALUE TM9238L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9300" ; VALUE TM9240L (default=32) 0 = "Not applicable" ; VALUE TM9242L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9300" ; VALUE TM9300L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9322" ; VALUE TM9302L (default=32) 0 = "Not applicable" -1 = "Don't know" ; VALUE TM9304L (default=32) 0 = "Not applicable" 1 = "Child birth" ; VALUE TM9306L (default=32) 0 = "Not applicable" 1 = "Surgery or operation(incl." ; VALUE TM9308L (default=32) 0 = "Not applicable" 1 = "Other medical" ; VALUE TM9310L (default=32) 0 = "Not applicable" 1 = "Mental or emotional problem or" ; VALUE TM9312L (default=32) 0 = "Not applicable" 1 = "Drug or alcohol abuse problem" ; VALUE TM9314L (default=32) 0 = "Not applicable" 1 = "Yes, military" 2 = "Yes, VA" 3 = "Yes, both military and va" 4 = "No" ; VALUE TM9316L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9318L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9320L (default=32) 0 = "Not applicable" -5 = "All nights" -3 = "None" -1 = "Dk" ; VALUE TM9322L (default=32) 0 = "Not applicable" -5 = "All days" -3 = "None" -1 = "Dk" ; VALUE TM9324L (default=32) 0 = "Not applicable" -3 = "None - skip to TM9327" -1 = "Dk" ; VALUE TM9326L (default=32) 0 = "Not applicable" -3 = "None" -1 = "Dk" ; VALUE TM9327L (default=32) -3 = "None - skip to TM9329" -1 = "Dk" 0 = "Not applicable" ; VALUE TM9328L (default=32) -3 = "None" -1 = "Don't know (Dk)" 0 = "Not applicable" ; VALUE TM9329L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T38" ; VALUE TM9330L (default=32) 0 = "Not applicable" 1 = "Doctor's office (or HMO)" 2 = "VA hospital" 3 = "Military hospital" 4 = "Hospital outpatient clinic (not" 5 = "Hospital emergency room" 6 = "Company or industry clinic" 7 = "Health center (neighborhood" 8 = "Psychiatric clinic" 9 = "Psychiatric hospital" 10 = "Private practice psychiatrist" 11 = "Other" ; VALUE TM9332L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T40" ; VALUE TM9333L (default=32) 0 = "Not applicable" 1 = "Yes - skip to check item T41" 2 = "No" ; VALUE TM9334L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9336" ; VALUE TM9335L (default=32) 0 = "Not applicable" 1 = "Yes - skip to check item T41" 2 = "No" ; VALUE TM9336L (default=32) 0 = "Not applicable" 1 = "Correct" 2 = "Incorrect - covered by some" ; VALUE TM9338L (default=32) 0 = "Not applicable" 1 = "Job layoff, job loss, or any" 2 = "Employer does not offer health" 3 = "Can't obtain health insurance" 4 = "Too expensive, can't afford" 5 = "Don't believe in health" 6 = "Have been healthy, not much" 7 = "Able to go to VA or military" 8 = "Covered by some other health" 9 = "Other" ; VALUE TM9400L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item TM7936" ; VALUE TM9401L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item TM9437" ; VALUE TM9402L (default=32) 0 = "Not applicable" ; VALUE TM9403L (default=32) 0 = "Not applicable" ; VALUE TM9404L (default=32) 0 = "Not applicable" ; VALUE TM9405L (default=32) 0 = "Not applicable" ; VALUE TM9406L (default=32) 0 = "Not applicable" ; VALUE TM9407L (default=32) 0 = "Not applicable" ; VALUE TM9408L (default=32) 0 = "Not applicable" ; VALUE TM9409L (default=32) 0 = "Not applicable" ; VALUE TM9410L (default=32) 0 = "Not applicable" ; VALUE TM9411L (default=32) 0 = "Not applicable" ; VALUE TM9412L (default=32) 0 = "Not applicable" ; VALUE TM9413L (default=32) 0 = "Not applicable" ; VALUE TM9414L (default=32) 0 = "Not applicable" ; VALUE TM9415L (default=32) 0 = "Not applicable" ; VALUE TM9416L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9417L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9418L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9419L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9420L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9421L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9422L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9423L (default=32) 0 = "Not applicable" 1 = "Yes - skip to next child, or" 2 = "No - skip to next child, or" ; VALUE TM9424L (default=32) 0 = "Not applicable" 1 = "Yes - skip to next child, or" 2 = "No - skip to next child, or" ; VALUE TM9425L (default=32) 0 = "Not applicable" 1 = "Yes - skip to next child, or" 2 = "No - skip to next child, or" ; VALUE TM9426L (default=32) 0 = "Not applicable" 1 = "Yes - skip to next child, or" 2 = "No - skip to next child, or" ; VALUE TM9427L (default=32) 0 = "Not applicable" 1 = "Yes - skip to next child, or" 2 = "No - skip to next child, or" ; VALUE TM9428L (default=32) 0 = "Not applicable" 1 = "Yes - skip to next child, or" 2 = "No - skip to next child, or" ; VALUE TM9429L (default=32) 0 = "Not applicable" 1 = "Yes - skip to next child, or" 2 = "No - skip to next child, or" ; VALUE TM9430L (default=32) 0 = "Not applicable" 1 = "Yes - go to next child, or" 2 = "No - go to next child, or check" ; VALUE TM9431L (default=32) 0 = "Not applicable" 1 = "Yes - go to next child, or" 2 = "No - go to next child, or check" ; VALUE TM9432L (default=32) 0 = "Not applicable" 1 = "Yes - go to next child, or" 2 = "No - go to next child, or check" ; VALUE TM9433L (default=32) 0 = "Not applicable" 1 = "Yes - go to next child, or" 2 = "No - go to next child, or check" ; VALUE TM9434L (default=32) 0 = "Not applicable" 1 = "Yes - go to next child, or" 2 = "No - go to next child, or check" ; VALUE TM9435L (default=32) 0 = "Not applicable" 1 = "Yes - go to next child, or" 2 = "No - go to next child, or check" ; VALUE TM9436L (default=32) 0 = "Not applicable" 1 = "Yes - go to next child, or" 2 = "No - go to next child, or check" ; VALUE TM9737L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item TM9696" ; VALUE TM9437L (default=32) 0 = "Not applicable" ; VALUE TM9438L (default=32) 0 = "Not applicable" ; VALUE TM9439L (default=32) 0 = "Not applicable" ; VALUE TM9440L (default=32) 0 = "Not applicable" ; VALUE TM9441L (default=32) 0 = "Not applicable" ; VALUE TM9442L (default=32) 0 = "Not applicable" ; VALUE TM9443L (default=32) 0 = "Not applicable" ; VALUE TM9444L (default=32) 0 = "Not applicable" ; VALUE TM9445L (default=32) 0 = "Not applicable" ; VALUE TM9446L (default=32) 0 = "Not applicable" ; VALUE TM9447L (default=32) 0 = "Not applicable" ; VALUE TM9448L (default=32) 0 = "Not applicable" ; VALUE TM9449L (default=32) 0 = "Not applicable" ; VALUE TM9450L (default=32) 0 = "Not applicable" ; VALUE TM9451L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9452L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9453L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9454L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9455L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9456L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9457L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9458L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9459L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9460L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9461L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9462L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9463L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9464L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9465L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9466L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9467L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9468L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9469L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9470L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9471L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9472L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9473L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9474L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9475L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9476L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9477L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9478L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9479L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9480L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9481L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9482L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9483L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9484L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9485L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9486L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9500" ; VALUE TM9487L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9500" ; VALUE TM9488L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9500" ; VALUE TM9489L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9500" ; VALUE TM9490L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9500" ; VALUE TM9491L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9500" ; VALUE TM9492L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9500" ; VALUE TM9493L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9494L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9495L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9496L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9497L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9498L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9499L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9500L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9501L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9502L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9503L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9504L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9505L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9506L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9507L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9508L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9509L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9510L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9511L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9512L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9513L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9514L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9535" ; VALUE TM9515L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9535" ; VALUE TM9516L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9535" ; VALUE TM9517L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9535" ; VALUE TM9518L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9535" ; VALUE TM9519L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9535" ; VALUE TM9520L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9535" ; VALUE TM9521L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9522L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9523L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9524L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9525L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9526L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9527L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9528L (default=32) 0 = "Not applicable" ; VALUE TM9529L (default=32) 0 = "Not applicable" ; VALUE TM9530L (default=32) 0 = "Not applicable" ; VALUE TM9531L (default=32) 0 = "Not applicable" ; VALUE TM9532L (default=32) 0 = "Not applicable" ; VALUE TM9533L (default=32) 0 = "Not applicable" ; VALUE TM9534L (default=32) 0 = "Not applicable" ; VALUE TM9535L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9549" ; VALUE TM9536L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9549" ; VALUE TM9537L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9549" ; VALUE TM9538L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9549" ; VALUE TM9539L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9549" ; VALUE TM9540L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9549" ; VALUE TM9541L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9549" ; VALUE TM9542L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9543L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9544L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9545L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9546L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9547L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9548L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9549L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9563" ; VALUE TM9550L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9563" ; VALUE TM9551L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9563" ; VALUE TM9552L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9563" ; VALUE TM9553L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9563" ; VALUE TM9554L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9563" ; VALUE TM9555L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9563" ; VALUE TM9556L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9557L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9558L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9559L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9560L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9561L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9562L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9563L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9564L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9565L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9566L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9567L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9568L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9569L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9570L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9584" ; VALUE TM9571L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9585" ; VALUE TM9572L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9586" ; VALUE TM9573L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9587" ; VALUE TM9574L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9588" ; VALUE TM9575L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9589" ; VALUE TM9576L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9590" ; VALUE TM9577L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9578L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9579L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9580L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9581L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9582L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9583L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9584L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9598" ; VALUE TM9585L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9599" ; VALUE TM9586L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9600" ; VALUE TM9587L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9601" ; VALUE TM9588L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9602" ; VALUE TM9589L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9603" ; VALUE TM9590L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9604" ; VALUE TM9591L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9592L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9593L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9594L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9595L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9596L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9597L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9598L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9619" ; VALUE TM9599L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9620" ; VALUE TM9600L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9621" ; VALUE TM9601L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9622" ; VALUE TM9602L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9623" ; VALUE TM9603L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9624" ; VALUE TM9604L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9625" ; VALUE TM9605L (default=32) 0 = "Not applicable" ; VALUE TM9606L (default=32) 0 = "Not applicable" ; VALUE TM9607L (default=32) 0 = "Not applicable" ; VALUE TM9608L (default=32) 0 = "Not applicable" ; VALUE TM9609L (default=32) 0 = "Not applicable" ; VALUE TM9610L (default=32) 0 = "Not applicable" ; VALUE TM9611L (default=32) 0 = "Not applicable" ; VALUE TM9612L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9613L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9614L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9615L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9616L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9617L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9618L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9619L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9633" ; VALUE TM9620L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9634" ; VALUE TM9621L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9635" ; VALUE TM9622L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9636" ; VALUE TM9623L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9637" ; VALUE TM9624L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9638" ; VALUE TM9625L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9639" ; VALUE TM9626L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9627L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9628L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9629L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9630L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9631L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9632L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9633L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9647" ; VALUE TM9634L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9648" ; VALUE TM9635L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9649" ; VALUE TM9636L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9650" ; VALUE TM9637L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9651" ; VALUE TM9638L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9652" ; VALUE TM9639L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9653" ; VALUE TM9640L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9641L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9642L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9643L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9644L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9645L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9646L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9647L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T47" ; VALUE TM9648L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T47" ; VALUE TM9649L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T47" ; VALUE TM9650L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T47" ; VALUE TM9651L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T47" ; VALUE TM9652L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T47" ; VALUE TM9653L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T47" ; VALUE TM9654L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9655L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9656L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9657L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9658L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9659L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9660L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9661L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - go to TM9451 for next" ; VALUE TM9662L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - go to TM9452 for next" ; VALUE TM9663L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - go to TM9453 for next" ; VALUE TM9664L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - go to TM9454 for next" ; VALUE TM9665L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - go to TM9455 for next" ; VALUE TM9666L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - go to TM9456 for next" ; VALUE TM9667L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T48" ; VALUE TM9668L (default=32) 0 = "Not applicable" ; VALUE TM9669L (default=32) 0 = "Not applicable" ; VALUE TM9670L (default=32) 0 = "Not applicable" ; VALUE TM9671L (default=32) 0 = "Not applicable" ; VALUE TM9672L (default=32) 0 = "Not applicable" ; VALUE TM9673L (default=32) 0 = "Not applicable" ; VALUE TM9674L (default=32) 0 = "Not applicable" ; VALUE TM9675L (default=32) 0 = "Not applicable" ; VALUE TM9676L (default=32) 0 = "Not applicable" ; VALUE TM9677L (default=32) 0 = "Not applicable" ; VALUE TM9678L (default=32) 0 = "Not applicable" ; VALUE TM9679L (default=32) 0 = "Not applicable" ; VALUE TM9680L (default=32) 0 = "Not applicable" ; VALUE TM9681L (default=32) 0 = "Not applicable" ; VALUE TM9682L (default=32) 0 = "Not applicable" ; VALUE TM9683L (default=32) 0 = "Not applicable" ; VALUE TM9684L (default=32) 0 = "Not applicable" ; VALUE TM9685L (default=32) 0 = "Not applicable" ; VALUE TM9686L (default=32) 0 = "Not applicable" ; VALUE TM9687L (default=32) 0 = "Not applicable" ; VALUE TM9688L (default=32) 0 = "Not applicable" ; VALUE TM9689L (default=32) 0 = "Not applicable" 1 = "Yes - go to TM9451 for next" 2 = "No - go to TM9451 for next" ; VALUE TM9690L (default=32) 0 = "Not applicable" 1 = "Yes - go to TM9452 for next" 2 = "No - go to TM9452 for next" ; VALUE TM9691L (default=32) 0 = "Not applicable" 1 = "Yes - go to TM9453 for next" 2 = "No - go to TM9453 for next" ; VALUE TM9692L (default=32) 0 = "Not applicable" 1 = "Yes - go to TM9454 for next" 2 = "No - go to TM9454 for next" ; VALUE TM9693L (default=32) 0 = "Not applicable" 1 = "Yes - go to TM9455 for next" 2 = "No - go to TM9455 for next" ; VALUE TM9694L (default=32) 0 = "Not applicable" 1 = "Yes - go to TM9456 for next" 2 = "No - go to TM9456 for next" ; VALUE TM9695L (default=32) 0 = "Not applicable" 1 = "Yes - go to check item T48" 2 = "No - go to check item T48" ; VALUE TM9696L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T51" ; VALUE TM9697L (default=32) 0 = "Not applicable" ; VALUE TM9698L (default=32) 0 = "Not applicable" ; VALUE TM9699L (default=32) 0 = "Not applicable" ; VALUE TM9700L (default=32) 0 = "Not applicable" ; VALUE TM9701L (default=32) 0 = "Not applicable" ; VALUE TM9702L (default=32) 0 = "Not applicable" ; VALUE TM9703L (default=32) 0 = "Not applicable" ; VALUE TM9704L (default=32) 0 = "Not applicable" ; VALUE TM9705L (default=32) 0 = "Not applicable" ; VALUE TM9706L (default=32) 0 = "Not applicable" ; VALUE TM9707L (default=32) 0 = "Not applicable" ; VALUE TM9708L (default=32) 0 = "Not applicable" ; VALUE TM9709L (default=32) 0 = "Not applicable" ; VALUE TM9710L (default=32) 0 = "Not applicable" ; VALUE TM9711L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9712L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9713L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9714L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9715L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9716L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9717L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9718L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - go to next child, or" ; VALUE TM9719L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - go to next child, or" ; VALUE TM9720L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - go to next child, or" ; VALUE TM9721L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - go to next child, or" ; VALUE TM9722L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - go to next child, or" ; VALUE TM9723L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - go to next child, or" ; VALUE TM9724L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - go to next child, or" ; VALUE TM9725L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9726L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9727L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9728L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9729L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9730L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9731L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE TM9800L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7000" ; VALUE TM9801L (default=32) 0 = "Not applicable" ; VALUE TM9802L (default=32) 0 = "Not applicable" ; VALUE TM9803L (default=32) 0 = "Not applicable" ; VALUE TM9804L (default=32) 0 = "Not applicable" ; VALUE TM9805L (default=32) 0 = "Not applicable" ; VALUE TM9806L (default=32) 0 = "Not applicable" ; VALUE TM9807L (default=32) 0 = "Not applicable" ; VALUE TM9808L (default=32) 0 = "Not applicable" ; VALUE TM9809L (default=32) 0 = "Not applicable" ; VALUE TM9810L (default=32) 0 = "Not applicable" ; VALUE TM9811L (default=32) 0 = "Not applicable" ; VALUE TM9812L (default=32) 0 = "Not applicable" ; VALUE TM9813L (default=32) 0 = "Not applicable" ; VALUE TM9814L (default=32) 0 = "Not applicable" ; VALUE TM9815L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9850" ; VALUE TM9816L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9851" ; VALUE TM9817L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9852" ; VALUE TM9818L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9853" ; VALUE TM9819L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9854" ; VALUE TM9820L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9855" ; VALUE TM9821L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9856" ; VALUE TM9822L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9823L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9824L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9825L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9826L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9827L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9828L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9829L (default=32) 0 = "Not applicable" 1 = "Surgery or operation (include" 2 = "Other medical" 3 = "Mental or emotional problem or" 4 = "Drug or alcohol abuse problem" 5 = "Child birth" ; VALUE TM9830L (default=32) 0 = "Not applicable" 1 = "Surgery or operation (include" 2 = "Other medical" 3 = "Mental or emotional problem or" 4 = "Drug or alcohol abuse problem" 5 = "Child birth" ; VALUE TM9831L (default=32) 0 = "Not applicable" 1 = "Surgery or operation (include" 2 = "Other medical" 3 = "Mental or emotional problem or" 4 = "Drug or alcohol abuse problem" 5 = "Child birth" ; VALUE TM9832L (default=32) 0 = "Not applicable" 1 = "Surgery or operation (include" 2 = "Other medical" 3 = "Mental or emotional problem or" 4 = "Drug or alcohol abuse problem" 5 = "Child birth" ; VALUE TM9833L (default=32) 0 = "Not applicable" 1 = "Surgery or operation (include" 2 = "Other medical" 3 = "Mental or emotional problem or" 4 = "Drug or alcohol abuse problem" 5 = "Child birth" ; VALUE TM9834L (default=32) 0 = "Not applicable" 1 = "Surgery or operation (include" 2 = "Other medical" 3 = "Mental or emotional problem or" 4 = "Drug or alcohol abuse problem" 5 = "Child birth" ; VALUE TM9835L (default=32) 0 = "Not applicable" 1 = "Surgery or operation (include" 2 = "Other medical" 3 = "Mental or emotional problem or" 4 = "Drug or alcohol abuse problem" 5 = "Child birth" ; VALUE TM9836L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9837L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9838L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9839L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9840L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9841L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9842L (default=32) 0 = "Not applicable" -1 = "Dk" ; VALUE TM9843L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" -5 = "All nights" ; VALUE TM9844L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" -5 = "All nights" ; VALUE TM9845L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" -5 = "All nights" ; VALUE TM9846L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" -5 = "All nights" ; VALUE TM9847L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" -5 = "All nights" ; VALUE TM9848L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" -5 = "All nights" ; VALUE TM9849L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" -5 = "All nights" ; VALUE TM9850L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" -5 = "All days" ; VALUE TM9851L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" -5 = "All days" ; VALUE TM9852L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" -5 = "All days" ; VALUE TM9853L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" -5 = "All days" ; VALUE TM9854L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" -5 = "All days" ; VALUE TM9855L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" -5 = "All days" ; VALUE TM9856L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" -5 = "All days" ; VALUE TM9857L (default=32) 0 = "Not applicable" ; VALUE TM9858L (default=32) 0 = "Not applicable" ; VALUE TM9859L (default=32) 0 = "Not applicable" ; VALUE TM9860L (default=32) 0 = "Not applicable" ; VALUE TM9861L (default=32) 0 = "Not applicable" ; VALUE TM9862L (default=32) 0 = "Not applicable" ; VALUE TM9863L (default=32) 0 = "Not applicable" ; VALUE TM9864L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None - skip to TM9878" ; VALUE TM9865L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None - skip to TM9879" ; VALUE TM9866L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None - skip to TM9880" ; VALUE TM9867L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None - skip to TM9881" ; VALUE TM9868L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None - skip to TM9882" ; VALUE TM9869L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None - skip to TM9883" ; VALUE TM9870L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None - skip to TM9884" ; VALUE TM9871L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" ; VALUE TM9872L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" ; VALUE TM9873L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" ; VALUE TM9874L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" ; VALUE TM9875L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" ; VALUE TM9876L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" ; VALUE TM9877L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" ; VALUE TM9878L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None - skip to TM9892" ; VALUE TM9879L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None - skip to TM9893" ; VALUE TM9880L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None - skip to TM9894" ; VALUE TM9881L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None - skip to TM9895" ; VALUE TM9882L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None - skip to TM9896" ; VALUE TM9883L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None - skip to TM9897" ; VALUE TM9884L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None - skip to TM9898" ; VALUE TM9885L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" ; VALUE TM9886L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" ; VALUE TM9887L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" ; VALUE TM9888L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" ; VALUE TM9889L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" ; VALUE TM9890L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" ; VALUE TM9891L (default=32) 0 = "Not applicable" -1 = "Dk" -3 = "None" ; VALUE TM9892L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T53" ; VALUE TM9893L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T53" ; VALUE TM9894L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T53" ; VALUE TM9895L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T53" ; VALUE TM9896L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T53" ; VALUE TM9897L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T53" ; VALUE TM9898L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T53" ; VALUE TM9899L (default=32) 0 = "Not applicable" 1 = "Doctor's office (or HMO)" 2 = "VA hospital" 3 = "Military hospital" 4 = "Hospital outpatient clinic (not" 5 = "Hospital emergency room" 6 = "Company or industry clinic" 7 = "Health center (neighborhood" 8 = "Psychiatric clinic" 9 = "Psychiatric hospital" 10 = "Private practice psychiatrist" 11 = "Other" ; VALUE TM9900L (default=32) 0 = "Not applicable" 1 = "Doctor's office (or HMO)" 2 = "VA hospital" 3 = "Military hospital" 4 = "Hospital outpatient clinic (not" 5 = "Hospital emergency room" 6 = "Company or industry clinic" 7 = "Health center (neighborhood" 8 = "Psychiatric clinic" 9 = "Psychiatric hospital" 10 = "Private practice psychiatrist" 11 = "Other" ; VALUE TM9901L (default=32) 0 = "Not applicable" 1 = "Doctor's office (or HMO)" 2 = "VA hospital" 3 = "Military hospital" 4 = "Hospital outpatient clinic (not" 5 = "Hospital emergency room" 6 = "Company or industry clinic" 7 = "Health center (neighborhood" 8 = "Psychiatric clinic" 9 = "Psychiatric hospital" 10 = "Private practice psychiatrist" 11 = "Other" ; VALUE TM9902L (default=32) 0 = "Not applicable" 1 = "Doctor's office (or HMO)" 2 = "VA hospital" 3 = "Military hospital" 4 = "Hospital outpatient clinic (not" 5 = "Hospital emergency room" 6 = "Company or industry clinic" 7 = "Health center (neighborhood" 8 = "Psychiatric clinic" 9 = "Psychiatric hospital" 10 = "Private practice psychiatrist" 11 = "Other" ; VALUE TM9903L (default=32) 0 = "Not applicable" 1 = "Doctor's office (or HMO)" 2 = "VA hospital" 3 = "Military hospital" 4 = "Hospital outpatient clinic (not" 5 = "Hospital emergency room" 6 = "Company or industry clinic" 7 = "Health center (neighborhood" 8 = "Psychiatric clinic" 9 = "Psychiatric hospital" 10 = "Private practice psychiatrist" 11 = "Other" ; VALUE TM9904L (default=32) 0 = "Not applicable" 1 = "Doctor's office (or HMO)" 2 = "VA hospital" 3 = "Military hospital" 4 = "Hospital outpatient clinic" 5 = "Hospital emergency room" 6 = "Company or industry clinic" 7 = "Health center (neighborhood" 8 = "Psychiatric clinic" 9 = "Psychiatric hospital" 10 = "Private practice psychiatrist" 11 = "Other" ; VALUE TM9905L (default=32) 0 = "Not applicable" 1 = "Doctor's office (or HMO)" 2 = "VA hospital" 3 = "Military hospital" 4 = "Hospital outpatient clinic" 5 = "Hospital emergency room" 6 = "Company or industry clinic" 7 = "Health center (neighborhood" 8 = "Psychiatric clinic" 9 = "Psychiatric hospital" 10 = "Private practice psychiatrist" 11 = "Other" ; VALUE TM9906L (default=32) 0 = "Not applicable" 1 = "Yes - ask items 1a through 5b" 2 = "No - skip to check item T54" ; VALUE TM9907L (default=32) 0 = "Not applicable" 1 = "Yes - ask items 1a through 5b" 2 = "No - skip to check item T54" ; VALUE TM9908L (default=32) 0 = "Not applicable" 1 = "Yes - ask items 1a through 5b" 2 = "No - skip to check item T54" ; VALUE TM9909L (default=32) 0 = "Not applicable" 1 = "Yes - ask items 1a through 5b" 2 = "No - skip to check item T54" ; VALUE TM9910L (default=32) 0 = "Not applicable" 1 = "Yes - ask items 1a through 5b" 2 = "No - skip to check item T54" ; VALUE TM9911L (default=32) 0 = "Not applicable" 1 = "Yes - ask items 1a through 5b" 2 = "No - skip to check item T54" ; VALUE TM9913L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM9915" ; VALUE TM9914L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7000" 2 = "No" ; VALUE TM9915L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7000" 2 = "No" ; VALUE TM9916L (default=32) 0 = "Not applicable" 1 = "Correct" 2 = "Incorrect - covered by some" ; VALUE TM9917L (default=32) 0 = "Not applicable" 1 = "Job layoff, job loss, or any" 2 = "Employer does not offer health" 3 = "Can't obtain health insurance" 4 = "Too expensive; can't afford" 5 = "Don't believe in health" 6 = "Have been healthy; not much" 7 = "Able to go to VA or military" 8 = "Covered by some other health" 9 = "Other" ; VALUE TM7000L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T77" ; VALUE TM7001L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T68" ; VALUE TM7002L (default=32) 0 = "Not applicable" ; VALUE TM7003L (default=32) 0 = "Not applicable" ; VALUE TM7004L (default=32) 0 = "Not applicable" ; VALUE TM7005L (default=32) 0 = "Not applicable" ; VALUE TM7006L (default=32) 0 = "Not applicable" ; VALUE TM7007L (default=32) 0 = "Not applicable" ; VALUE TM7008L (default=32) 0 = "Not applicable" ; VALUE TM7009L (default=32) 0 = "Not applicable" ; VALUE TM7010L (default=32) 0 = "Not applicable" ; VALUE TM7011L (default=32) 0 = "Not applicable" ; VALUE TM7012L (default=32) 0 = "Not applicable" ; VALUE TM7013L (default=32) 0 = "Not applicable" ; VALUE TM7014L (default=32) 0 = "Not applicable" ; VALUE TM7015L (default=32) 0 = "Not applicable" ; VALUE TM7016L (default=32) 0 = "Not applicable" 1 = "Excellent" 2 = "Very good" 3 = "Good" 4 = "Fair" 5 = "Poor" -9 = "No response" ; VALUE TM7017L (default=32) 0 = "Not applicable" 1 = "Excellent" 2 = "Very good" 3 = "Good" 4 = "Fair" 5 = "Poor" -9 = "No response" ; VALUE TM7018L (default=32) 0 = "Not applicable" 1 = "Excellent" 2 = "Very good" 3 = "Good" 4 = "Fair" 5 = "Poor" -9 = "Dk" ; VALUE TM7019L (default=32) 0 = "Not applicable" 1 = "Excellent" 2 = "Very good" 3 = "Good" 4 = "Fair" 5 = "Poor" -9 = "Dk" ; VALUE TM7020L (default=32) 0 = "Not applicable" 1 = "Excellent" 2 = "Very good" 3 = "Good" 4 = "Fair" 5 = "Poor" -9 = "Dk" ; VALUE TM7021L (default=32) 0 = "Not applicable" 1 = "Excellent" 2 = "Very good" 3 = "Good" 4 = "Fair" 5 = "Poor" -9 = "No response" ; VALUE TM7022L (default=32) 0 = "Not applicable" 1 = "Excellent" 2 = "Very good" 3 = "Good" 4 = "Fair" 5 = "Poor" -9 = "No response" ; VALUE TM7023L (default=32) 0 = "Not applicable" ; VALUE TM7024L (default=32) 0 = "Not applicable" ; VALUE TM7025L (default=32) 0 = "Not applicable" ; VALUE TM7026L (default=32) 0 = "Not applicable" ; VALUE TM7027L (default=32) 0 = "Not applicable" ; VALUE TM7028L (default=32) 0 = "Not applicable" ; VALUE TM7029L (default=32) 0 = "Not applicable" ; VALUE TM7030L (default=32) 0 = "Not applicable" -1 = "Dk" -9 = "No response" ; VALUE TM7031L (default=32) 0 = "Not applicable" -1 = "Dk" -9 = "No response" ; VALUE TM7032L (default=32) 0 = "Not applicable" -1 = "Dk" -9 = "No response" ; VALUE TM7033L (default=32) 0 = "Not applicable" -1 = "Dk" -9 = "No response" ; VALUE TM7034L (default=32) 0 = "Not applicable" -1 = "Dk" -9 = "No response" ; VALUE TM7035L (default=32) 0 = "Not applicable" -1 = "Dk" -9 = "No response" ; VALUE TM7036L (default=32) 0 = "Not applicable" -1 = "Dk" -9 = "No response" ; VALUE TM7037L (default=32) 0 = "Not applicable" -1 = "Dk" -9 = "No response" ; VALUE TM7038L (default=32) 0 = "Not applicable" -1 = "Dk" -9 = "No response" ; VALUE TM7039L (default=32) 0 = "Not applicable" -1 = "Dk" -9 = "No response" ; VALUE TM7040L (default=32) 0 = "Not applicable" -1 = "Dk" -9 = "No response" ; VALUE TM7041L (default=32) 0 = "Not applicable" -1 = "Dk" -9 = "No response" ; VALUE TM7042L (default=32) 0 = "Not applicable" -1 = "Dk" -9 = "No response" ; VALUE TM7043L (default=32) 0 = "Not applicable" -1 = "Dk" -9 = "No response" ; VALUE TM7044L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T61" ; VALUE TM7045L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T61" ; VALUE TM7046L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T61" ; VALUE TM7047L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T61" ; VALUE TM7048L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T61" ; VALUE TM7049L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T61" ; VALUE TM7050L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T61" ; VALUE TM7051L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7065" -9 = "No response" ; VALUE TM7052L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7066" -9 = "No response" ; VALUE TM7053L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7067" -9 = "No response" ; VALUE TM7054L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7068" -9 = "No response" ; VALUE TM7055L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7069" -9 = "No response" ; VALUE TM7056L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7070" -9 = "No response" ; VALUE TM7057L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7071" -9 = "No response" ; VALUE TM7058L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7059L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7060L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7061L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7062L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7063L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7064L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7065L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7093" 2 = "No" -9 = "No response" ; VALUE TM7066L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7094" 2 = "No" -9 = "No response" ; VALUE TM7067L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7095" 2 = "No" -9 = "No response" ; VALUE TM7068L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7096" 2 = "No" -9 = "No response" ; VALUE TM7069L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7097" 2 = "No" -9 = "No response" ; VALUE TM7070L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7098" 2 = "No" -9 = "No response" ; VALUE TM7071L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7099" 2 = "No" -9 = "No response" ; VALUE TM7072L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7093" 2 = "No" ; VALUE TM7073L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7094" 2 = "No" ; VALUE TM7074L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7095" 2 = "No" ; VALUE TM7075L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7096" 2 = "No" ; VALUE TM7076L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7097" 2 = "No" ; VALUE TM7077L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7098" 2 = "No" ; VALUE TM7078L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7099" 2 = "No" ; VALUE TM7079L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7093" -9 = "No response" ; VALUE TM7080L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7094" -9 = "No response" ; VALUE TM7081L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7095" -9 = "No response" ; VALUE TM7082L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7096" -9 = "No response" ; VALUE TM7083L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7097" -9 = "No response" ; VALUE TM7084L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7098" -9 = "No response" ; VALUE TM7085L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7099" -9 = "No response" ; VALUE TM7086L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7087L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7088L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7089L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7090L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7091L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7092L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7093L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7107" -9 = "No response" ; VALUE TM7094L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7108" -9 = "No response" ; VALUE TM7095L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7109" -9 = "No response" ; VALUE TM7096L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7110" -9 = "No response" ; VALUE TM7097L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7111" -9 = "No response" ; VALUE TM7098L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7112" -9 = "No response" ; VALUE TM7099L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7113" -9 = "No response" ; VALUE TM7100L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7101L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7102L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7103L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7104L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7105L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7106L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7107L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7135" -9 = "No response" ; VALUE TM7108L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7136" -9 = "No response" ; VALUE TM7109L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7137" -9 = "No response" ; VALUE TM7110L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7138" -9 = "No response" ; VALUE TM7111L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7139" -9 = "No response" ; VALUE TM7112L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7140" -9 = "No response" ; VALUE TM7113L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7141" -9 = "No response" ; VALUE TM7114L (default=32) 0 = "Not applicable" ; VALUE TM7115L (default=32) 0 = "Not applicable" ; VALUE TM7116L (default=32) 0 = "Not applicable" ; VALUE TM7117L (default=32) 0 = "Not applicable" ; VALUE TM7118L (default=32) 0 = "Not applicable" ; VALUE TM7119L (default=32) 0 = "Not applicable" ; VALUE TM7120L (default=32) 0 = "Not applicable" ; VALUE TM7121L (default=32) 0 = "Not applicable" 1 = "Related" 2 = "Not related" 3 = "Both" -9 = "No response" ; VALUE TM7122L (default=32) 0 = "Not applicable" 1 = "Related" 2 = "Not related" 3 = "Both" -9 = "No response" ; VALUE TM7123L (default=32) 0 = "Not applicable" 1 = "Related" 2 = "Not related" 3 = "Both" -9 = "No response" ; VALUE TM7124L (default=32) 0 = "Not applicable" 1 = "Related" 2 = "Not related" 3 = "Both" -9 = "No response" ; VALUE TM7125L (default=32) 0 = "Not applicable" 1 = "Related" 2 = "Not related" 3 = "Both" -9 = "No response" ; VALUE TM7126L (default=32) 0 = "Not applicable" 1 = "Related" 2 = "Not related" 3 = "Both" -9 = "No response" ; VALUE TM7127L (default=32) 0 = "Not applicable" 1 = "Related" 2 = "Not related" 3 = "Both" -9 = "No response" ; VALUE TM7128L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7129L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7130L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7131L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7132L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7133L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7134L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7135L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T62" -9 = "No response" ; VALUE TM7136L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T62" -9 = "No response" ; VALUE TM7137L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T62" -9 = "No response" ; VALUE TM7138L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T62" -9 = "No response" ; VALUE TM7139L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T62" -9 = "No response" ; VALUE TM7140L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T62" -9 = "No response" ; VALUE TM7141L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T62" -9 = "No response" ; VALUE TM7142L (default=32) 0 = "Not applicable" 1 = "Related" 2 = "Not related" 3 = "Both" -9 = "No response" ; VALUE TM7143L (default=32) 0 = "Not applicable" 1 = "Related" 2 = "Not related" 3 = "Both" -9 = "No response" ; VALUE TM7144L (default=32) 0 = "Not applicable" 1 = "Related" 2 = "Not related" 3 = "Both" -9 = "No response" ; VALUE TM7145L (default=32) 0 = "Not applicable" 1 = "Related" 2 = "Not related" 3 = "Both" -9 = "No response" ; VALUE TM7146L (default=32) 0 = "Not applicable" 1 = "Related" 2 = "Not related" 3 = "Both" -9 = "No response" ; VALUE TM7147L (default=32) 0 = "Not applicable" 1 = "Related" 2 = "Not related" 3 = "Both" -9 = "No response" ; VALUE TM7148L (default=32) 0 = "Not applicable" 1 = "Related" 2 = "Not related" 3 = "Both" -9 = "No response" ; VALUE TM7149L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7150L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7151L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7152L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7153L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7154L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7155L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7156L (default=32) 0 = "Not applicable" 1 = "Yes - skip to check item T65" 2 = "No" ; VALUE TM7157L (default=32) 0 = "Not applicable" 1 = "Yes - skip to check item T65" 2 = "No" ; VALUE TM7158L (default=32) 0 = "Not applicable" 1 = "Yes - skip to check item T65" 2 = "No" ; VALUE TM7159L (default=32) 0 = "Not applicable" 1 = "Yes - skip to check item T65" 2 = "No" ; VALUE TM7160L (default=32) 0 = "Not applicable" 1 = "Yes - skip to check item T65" 2 = "No" ; VALUE TM7161L (default=32) 0 = "Not applicable" 1 = "Yes - skip to check item T65" 2 = "No" ; VALUE TM7162L (default=32) 0 = "Not applicable" 1 = "Yes - skip to check item T65" 2 = "No" ; VALUE TM7163L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T65" ; VALUE TM7164L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T65" ; VALUE TM7165L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T65" ; VALUE TM7166L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T65" ; VALUE TM7167L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T65" ; VALUE TM7168L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T65" ; VALUE TM7169L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T65" ; VALUE TM7170L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T64" -9 = "No response" ; VALUE TM7171L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T64" -9 = "No response" ; VALUE TM7172L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T64" -9 = "No response" ; VALUE TM7173L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T64" -9 = "No response" ; VALUE TM7174L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T64" -9 = "No response" ; VALUE TM7175L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T64" -9 = "No response" ; VALUE TM7176L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T64" -9 = "No response" ; VALUE TM7177L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7178L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7179L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7180L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7181L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7182L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7183L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7184L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7185L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7186L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7187L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7188L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7189L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7190L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7191L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T65" ; VALUE TM7192L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T65" ; VALUE TM7193L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T65" ; VALUE TM7194L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T65" ; VALUE TM7195L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T65" ; VALUE TM7196L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T65" ; VALUE TM7197L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T65" ; VALUE TM7198L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7199L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7200L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7201L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7202L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7203L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7204L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7205L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7206L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7207L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7208L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7209L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7210L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7211L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7212L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7233" 2 = "No" ; VALUE TM7213L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7234" 2 = "No" ; VALUE TM7214L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7235" 2 = "No" ; VALUE TM7215L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7236" 2 = "No" ; VALUE TM7216L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7237" 2 = "No" ; VALUE TM7217L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7238" 2 = "No" ; VALUE TM7218L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7239" 2 = "No" ; VALUE TM7219L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7254" -9 = "No response" ; VALUE TM7220L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7255" -9 = "No response" ; VALUE TM7221L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7256" -9 = "No response" ; VALUE TM7222L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7257" -9 = "No response" ; VALUE TM7223L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7258" -9 = "No response" ; VALUE TM7224L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7259" -9 = "No response" ; VALUE TM7225L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7260" -9 = "No response" ; VALUE TM7226L (default=32) 0 = "Not applicable" ; VALUE TM7227L (default=32) 0 = "Not applicable" ; VALUE TM7228L (default=32) 0 = "Not applicable" ; VALUE TM7229L (default=32) 0 = "Not applicable" ; VALUE TM7230L (default=32) 0 = "Not applicable" ; VALUE TM7231L (default=32) 0 = "Not applicable" ; VALUE TM7232L (default=32) 0 = "Not applicable" ; VALUE TM7233L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7234L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7235L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7236L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7237L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7238L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7239L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7240L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7241L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7242L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7243L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7244L (default=32) 0 = "Not applicable" ; VALUE TM7245L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7246L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7247L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7248L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7249L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7250L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7251L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7252L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7253L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7254L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7255L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7256L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7257L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7258L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7259L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7260L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7261L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7275" ; VALUE TM7262L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7275" ; VALUE TM7263L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7276" ; VALUE TM7264L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7277" ; VALUE TM7265L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7278" ; VALUE TM7266L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7279" ; VALUE TM7267L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7280" ; VALUE TM7268L (default=32) 0 = "Not applicable" -3 = "None" -9 = "No response" ; VALUE TM7269L (default=32) 0 = "Not applicable" -3 = "None" -9 = "No response" ; VALUE TM7270L (default=32) 0 = "Not applicable" -3 = "None" -9 = "No response" ; VALUE TM7271L (default=32) 0 = "Not applicable" -3 = "None" -9 = "No response" ; VALUE TM7272L (default=32) 0 = "Not applicable" -3 = "None" -9 = "No response" ; VALUE TM7273L (default=32) 0 = "Not applicable" -3 = "None" -9 = "No response" ; VALUE TM7274L (default=32) 0 = "Not applicable" -3 = "None" -9 = "No response" ; VALUE TM7275L (default=32) 0 = "Not applicable" -3 = "None" -9 = "No response" ; VALUE TM7276L (default=32) 0 = "Not applicable" -3 = "None" -9 = "No response" ; VALUE TM7277L (default=32) 0 = "Not applicable" -3 = "None" -9 = "No response" ; VALUE TM7278L (default=32) 0 = "Not applicable" -3 = "None" -9 = "No response" ; VALUE TM7279L (default=32) 0 = "Not applicable" -3 = "None" -9 = "No response" ; VALUE TM7280L (default=32) 0 = "Not applicable" -3 = "None" -9 = "No response" ; VALUE TM7281L (default=32) 0 = "Not applicable" -3 = "None" -9 = "No response" ; VALUE TM7282L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T68" ; VALUE TM7283L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T68" ; VALUE TM7284L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T68" ; VALUE TM7285L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T68" ; VALUE TM7286L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T68" ; VALUE TM7287L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T68" ; VALUE TM7288L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T68" ; VALUE TM7289L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7290L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7291L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7292L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7293L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7294L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7295L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7296L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7297L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7298L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7299L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7300L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7301L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7302L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7303L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7304L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7305L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7306L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7307L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7308L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7309L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7310L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T72" ; VALUE TM7311L (default=32) 0 = "Not applicable" ; VALUE TM7312L (default=32) 0 = "Not applicable" ; VALUE TM7313L (default=32) 0 = "Not applicable" ; VALUE TM7314L (default=32) 0 = "Not applicable" ; VALUE TM7315L (default=32) 0 = "Not applicable" ; VALUE TM7316L (default=32) 0 = "Not applicable" ; VALUE TM7317L (default=32) 0 = "Not applicable" ; VALUE TM7318L (default=32) 0 = "Not applicable" ; VALUE TM7319L (default=32) 0 = "Not applicable" ; VALUE TM7320L (default=32) 0 = "Not applicable" ; VALUE TM7321L (default=32) 0 = "Not applicable" ; VALUE TM7322L (default=32) 0 = "Not applicable" ; VALUE TM7323L (default=32) 0 = "Not applicable" ; VALUE TM7324L (default=32) 0 = "Not applicable" ; VALUE TM7325L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7326L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7327L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7328L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7329L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7330L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7331L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7332L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7388" 2 = "No" -9 = "No response" ; VALUE TM7333L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7389" 2 = "No" -9 = "No response" ; VALUE TM7334L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7390" 2 = "No" -9 = "No response" ; VALUE TM7335L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7391" 2 = "No" -9 = "No response" ; VALUE TM7336L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7392" 2 = "No" -9 = "No response" ; VALUE TM7337L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7393" 2 = "No" -9 = "No response" ; VALUE TM7338L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7394" 2 = "No" -9 = "No response" ; VALUE TM7339L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7556" -9 = "No response" ; VALUE TM7340L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7557" -9 = "No response" ; VALUE TM7341L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7558" -9 = "No response" ; VALUE TM7342L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7559" -9 = "No response" ; VALUE TM7343L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7560" -9 = "No response" ; VALUE TM7344L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7561" -9 = "No response" ; VALUE TM7345L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7562" -9 = "No response" ; VALUE TM7346L (default=32) 0 = "Not applicable" 1 = "Kindergarten - skip to TM7360" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade or higher" -3 = "No grade completed" -9 = "No response" ; VALUE TM7347L (default=32) 0 = "Not applicable" 1 = "Kindergarten - skip to TM7361" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade or higher" -3 = "No grade completed" -9 = "No response" ; VALUE TM7348L (default=32) 0 = "Not applicable" 1 = "Kindergarten - skip to TM7362" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade or higher" -3 = "No grade completed" -9 = "No response" ; VALUE TM7349L (default=32) 0 = "Not applicable" 1 = "Kindergarten - skip to TM7363" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade or higher" -3 = "No grade completed" -9 = "No response" ; VALUE TM7350L (default=32) 0 = "Not applicable" 1 = "Kindergarten - skip to TM7364" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade or higher" -3 = "No grade completed" -9 = "No response" ; VALUE TM7351L (default=32) 0 = "Not applicable" 1 = "Kindergarten - skip to TM7365" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade or higher" -3 = "No grade completed" -9 = "No response" ; VALUE TM7352L (default=32) 0 = "Not applicable" 1 = "Kindergarten - skip to TM7366" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade or higher" -3 = "No grade completed" -9 = "No response" ; VALUE TM7353L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T71" -9 = "No response" ; VALUE TM7354L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T71" -9 = "No response" ; VALUE TM7355L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T71" -9 = "No response" ; VALUE TM7356L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T71" -9 = "No response" ; VALUE TM7357L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T71" -9 = "No response" ; VALUE TM7358L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T71" -9 = "No response" ; VALUE TM7359L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T71" -9 = "No response" ; VALUE TM7360L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7361L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7362L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7363L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7364L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7365L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7366L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7367L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7368L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7369L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7370L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7371L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7372L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7373L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7374L (default=32) 0 = "Not applicable" ; VALUE TM7375L (default=32) 0 = "Not applicable" ; VALUE TM7376L (default=32) 0 = "Not applicable" ; VALUE TM7377L (default=32) 0 = "Not applicable" ; VALUE TM7378L (default=32) 0 = "Not applicable" ; VALUE TM7379L (default=32) 0 = "Not applicable" ; VALUE TM7380L (default=32) 0 = "Not applicable" ; VALUE TM7381L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7557" 2 = "No - skip to TM7459" ; VALUE TM7382L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7558" 2 = "No - skip to TM7460" ; VALUE TM7383L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7559" 2 = "No - skip to TM7461" ; VALUE TM7384L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7560" 2 = "No - skip to TM7462" ; VALUE TM7385L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7561" 2 = "No - skip to TM7463" ; VALUE TM7386L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7562" 2 = "No - skip to TM7464" ; VALUE TM7387L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7563" 2 = "No - skip to TM7465" ; VALUE TM7388L (default=32) 0 = "Not applicable" 1 = "Kindergarten" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade or higher" ; VALUE TM7389L (default=32) 0 = "Not applicable" 1 = "Kindergarten" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade or higher" ; VALUE TM7390L (default=32) 0 = "Not applicable" 1 = "Kindergarten" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade or higher" ; VALUE TM7391L (default=32) 0 = "Not applicable" 1 = "Kindergarten" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade or higher" ; VALUE TM7392L (default=32) 0 = "Not applicable" 1 = "Kindergarten" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade or higher" ; VALUE TM7393L (default=32) 0 = "Not applicable" 1 = "Kindergarten" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade or higher" ; VALUE TM7394L (default=32) 0 = "Not applicable" 1 = "Kindergarten" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade or higher" ; VALUE TM7395L (default=32) 0 = "Not applicable" 1 = "Public" 2 = "Private - skip to TM7409" -9 = "No response" ; VALUE TM7396L (default=32) 0 = "Not applicable" 1 = "Public" 2 = "Private - skip to TM7410" -9 = "No response" ; VALUE TM7397L (default=32) 0 = "Not applicable" 1 = "Public" 2 = "Private - skip to TM7411" -9 = "No response" ; VALUE TM7398L (default=32) 0 = "Not applicable" 1 = "Public" 2 = "Private - skip to TM7412" -9 = "No response" ; VALUE TM7399L (default=32) 0 = "Not applicable" 1 = "Public" 2 = "Private - skip to TM7413" -9 = "No response" ; VALUE TM7400L (default=32) 0 = "Not applicable" 1 = "Public" 2 = "Private - skip to TM7414" -9 = "No response" ; VALUE TM7401L (default=32) 0 = "Not applicable" 1 = "Public" 2 = "Private - skip to TM7415" -9 = "No response" ; VALUE TM7402L (default=32) 0 = "Not applicable" 1 = "Assigned - skip to TM7416" 2 = "Chosen - skip to TM7416" 3 = "Assigned school is school of" -9 = "No response" ; VALUE TM7403L (default=32) 0 = "Not applicable" 1 = "Assigned - skip to TM7417" 2 = "Chosen - skip to TM7417" 3 = "Assigned school is school of" -9 = "No response" ; VALUE TM7404L (default=32) 0 = "Not applicable" 1 = "Assigned - skip to TM7418" 2 = "Chosen - skip to TM7418" 3 = "Assigned school is school of" -9 = "No response" ; VALUE TM7405L (default=32) 0 = "Not applicable" 1 = "Assigned - skip to TM7419" 2 = "Chosen - skip to TM7419" 3 = "Assigned school is school of" -9 = "No response" ; VALUE TM7406L (default=32) 0 = "Not applicable" 1 = "Assigned - skip to TM7420" 2 = "Chosen - skip to TM7420" 3 = "Assigned school is school of" ; VALUE TM7407L (default=32) 0 = "Not applicable" 1 = "Assigned - skip to TM7421" 2 = "Chosen - skip to TM7421" 3 = "Assigned school is school of" -9 = "No response" ; VALUE TM7408L (default=32) 0 = "Not applicable" 1 = "Assigned - skip to TM7422" 2 = "Chosen - skip to TM7422" 3 = "Assigned school is school of" -9 = "No response" ; VALUE TM7409L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7410L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7411L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7412L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7413L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7414L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7415L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7416L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7444" -9 = "No response" ; VALUE TM7417L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7445" -9 = "No response" ; VALUE TM7418L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7446" -9 = "No response" ; VALUE TM7419L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7447" -9 = "No response" ; VALUE TM7420L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7448" -9 = "No response" ; VALUE TM7421L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7449" -9 = "No response" ; VALUE TM7422L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7450" -9 = "No response" ; VALUE TM7423L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7424L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7425L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7426L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7427L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7428L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7429L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7430L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7431L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7432L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7433L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7434L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7435L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7436L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7437L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7556" 2 = "No" ; VALUE TM7438L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7557" 2 = "No" ; VALUE TM7439L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7558" 2 = "No" ; VALUE TM7440L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7559" 2 = "No" ; VALUE TM7441L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7560" 2 = "No" ; VALUE TM7442L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7561" 2 = "No" ; VALUE TM7443L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7562" 2 = "No" ; VALUE TM7444L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7445L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7446L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7447L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7448L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7449L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7450L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7451L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7452L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7453L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7454L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7455L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7456L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7457L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7458L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7479" -1 = "Dk - skip to TM7479" -2 = "Ref. - skip to TM7479" -9 = "No response - skip to TM7479" ; VALUE TM7459L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7480" -1 = "Dk - skip to TM7480" -2 = "Ref. - skip to TM7480" -9 = "No response - skip to TM7480" ; VALUE TM7460L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7481" -1 = "Dk - skip to TM7481" -2 = "Ref. - skip to TM7481" -9 = "No response - skip to TM7481" ; VALUE TM7461L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7482" -1 = "Dk - skip to TM7482" -2 = "Ref. - skip to TM7482" -9 = "No response - skip to TM7482" ; VALUE TM7462L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7483" -1 = "No response - skip to TM7483" -2 = "Ref. - skip to TM7483" -9 = "No response - skip to TM7483" ; VALUE TM7463L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7484" -1 = "No response - skip to TM7484" -2 = "Ref. - skip to TM7484" -9 = "No response - skip to TM7484" ; VALUE TM7464L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7485" -1 = "Dk - skip to TM7485" -2 = "Ref. - skip to TM7485" -9 = "No response - skip to TM7485" ; VALUE TM7465L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7466L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7467L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7468L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7469L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7470L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7471L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7472L (default=32) 0 = "Not applicable" ; VALUE TM7473L (default=32) 0 = "Not applicable" ; VALUE TM7474L (default=32) 0 = "Not applicable" ; VALUE TM7475L (default=32) 0 = "Not applicable" ; VALUE TM7476L (default=32) 0 = "Not applicable" ; VALUE TM7477L (default=32) 0 = "Not applicable" ; VALUE TM7478L (default=32) 0 = "Not applicable" ; VALUE TM7479L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7549" -1 = "Dk - skip to TM7549" -2 = "Ref.- skip to TM7549" -9 = "No response" ; VALUE TM7480L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7550" -1 = "Dk - skip to TM7550" -2 = "Ref.- skip to TM7550" -9 = "No response" ; VALUE TM7481L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7551" -1 = "Dk - skip to TM7551" -2 = "Ref.- skip to TM7551" -9 = "No response" ; VALUE TM7482L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7552" -1 = "Dk - skip to TM7552" -2 = "Ref.- skip to TM7552" -9 = "No response" ; VALUE TM7483L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7553" -1 = "Dk - skip to TM7553" -2 = "Ref.- skip to TM7553" -9 = "No response" ; VALUE TM7484L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7554" -1 = "Dk - skip to TM7554" -2 = "Ref.- skip to TM7554" -9 = "No response" ; VALUE TM7485L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7555" -1 = "Dk - skip to TM7555" -2 = "Ref.- skip to TM7555" -9 = "No response" ; VALUE TM7486L (default=32) 0 = "Not applicable" 1 = "Kindergarten" ; VALUE TM7487L (default=32) 0 = "Not applicable" 1 = "Kindergarten" ; VALUE TM7488L (default=32) 0 = "Not applicable" 1 = "Kindergarten" ; VALUE TM7489L (default=32) 0 = "Not applicable" 1 = "Kindergarten" ; VALUE TM7490L (default=32) 0 = "Not applicable" 1 = "Kindergarten" ; VALUE TM7491L (default=32) 0 = "Not applicable" 1 = "Kindergarten" ; VALUE TM7492L (default=32) 0 = "Not applicable" 1 = "Kindergarten" ; VALUE TM7493L (default=32) 0 = "Not applicable" 1 = "First grade" ; VALUE TM7494L (default=32) 0 = "Not applicable" 1 = "First grade" ; VALUE TM7495L (default=32) 0 = "Not applicable" 1 = "First grade" ; VALUE TM7496L (default=32) 0 = "Not applicable" 1 = "First grade" ; VALUE TM7497L (default=32) 0 = "Not applicable" 1 = "First grade" ; VALUE TM7498L (default=32) 0 = "Not applicable" 1 = "First grade" ; VALUE TM7499L (default=32) 0 = "Not applicable" 1 = "First grade" ; VALUE TM7500L (default=32) 0 = "Not applicable" 1 = "Second grade" ; VALUE TM7501L (default=32) 0 = "Not applicable" 1 = "Second grade" ; VALUE TM7502L (default=32) 0 = "Not applicable" 1 = "Second grade" ; VALUE TM7503L (default=32) 0 = "Not applicable" 1 = "Second grade" ; VALUE TM7504L (default=32) 0 = "Not applicable" 1 = "Second grade" ; VALUE TM7505L (default=32) 0 = "Not applicable" 1 = "Second grade" ; VALUE TM7506L (default=32) 0 = "Not applicable" 1 = "Second grade" ; VALUE TM7507L (default=32) 0 = "Not applicable" 1 = "Third grade" ; VALUE TM7508L (default=32) 0 = "Not applicable" 1 = "Third grade" ; VALUE TM7509L (default=32) 0 = "Not applicable" 1 = "Third grade" ; VALUE TM7510L (default=32) 0 = "Not applicable" 1 = "Third grade" ; VALUE TM7511L (default=32) 0 = "Not applicable" 1 = "Third grade" ; VALUE TM7512L (default=32) 0 = "Not applicable" 1 = "Third grade" ; VALUE TM7513L (default=32) 0 = "Not applicable" 1 = "Third grade" ; VALUE TM7514L (default=32) 0 = "Not applicable" 1 = "Fourth grade" ; VALUE TM7515L (default=32) 0 = "Not applicable" 1 = "Fourth grade" ; VALUE TM7516L (default=32) 0 = "Not applicable" 1 = "Fourth grade" ; VALUE TM7517L (default=32) 0 = "Not applicable" 1 = "Fourth grade" ; VALUE TM7518L (default=32) 0 = "Not applicable" 1 = "Fourth grade" ; VALUE TM7519L (default=32) 0 = "Not applicable" 1 = "Fourth grade" ; VALUE TM7520L (default=32) 0 = "Not applicable" 1 = "Fourth grade" ; VALUE TM7521L (default=32) 0 = "Not applicable" 1 = "Fifth grade" ; VALUE TM7522L (default=32) 0 = "Not applicable" 1 = "Fifth grade" ; VALUE TM7523L (default=32) 0 = "Not applicable" 1 = "Fifth grade" ; VALUE TM7524L (default=32) 0 = "Not applicable" 1 = "Fifth grade" ; VALUE TM7525L (default=32) 0 = "Not applicable" 1 = "Fifth grade" ; VALUE TM7526L (default=32) 0 = "Not applicable" 1 = "Fifth grade" ; VALUE TM7527L (default=32) 0 = "Not applicable" 1 = "Fifth grade" ; VALUE TM7528L (default=32) 0 = "Not applicable" 1 = "Sixth grade" ; VALUE TM7529L (default=32) 0 = "Not applicable" 1 = "Sixth grade" ; VALUE TM7530L (default=32) 0 = "Not applicable" 1 = "Sixth grade" ; VALUE TM7531L (default=32) 0 = "Not applicable" 1 = "Sixth grade" ; VALUE TM7532L (default=32) 0 = "Not applicable" 1 = "Sixth grade" ; VALUE TM7533L (default=32) 0 = "Not applicable" 1 = "Sixth grade" ; VALUE TM7534L (default=32) 0 = "Not applicable" 1 = "Sixth grade" ; VALUE TM7535L (default=32) 0 = "Not applicable" 1 = "Seventh grade" ; VALUE TM7536L (default=32) 0 = "Not applicable" 1 = "Seventh grade" ; VALUE TM7537L (default=32) 0 = "Not applicable" 1 = "Seventh grade" ; VALUE TM7538L (default=32) 0 = "Not applicable" 1 = "Seventh grade" ; VALUE TM7539L (default=32) 0 = "Not applicable" 1 = "Seventh grade" ; VALUE TM7540L (default=32) 0 = "Not applicable" 1 = "Seventh grade" ; VALUE TM7541L (default=32) 0 = "Not applicable" 1 = "Seventh grade" ; VALUE TM7542L (default=32) 0 = "Not applicable" 1 = "Eighth grade or higher" ; VALUE TM7543L (default=32) 0 = "Not applicable" 1 = "Eighth grade or higher" ; VALUE TM7544L (default=32) 0 = "Not applicable" 1 = "Eighth grade or higher" ; VALUE TM7545L (default=32) 0 = "Not applicable" 1 = "Eighth grade or higher" ; VALUE TM7546L (default=32) 0 = "Not applicable" 1 = "Eighth grade or higher" ; VALUE TM7547L (default=32) 0 = "Not applicable" 1 = "Eighth grade or higher" ; VALUE TM7548L (default=32) 0 = "Not applicable" 1 = "Eighth grade or higher" ; VALUE TM7549L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7550L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7551L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7552L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7553L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7554L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7555L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7556L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7557L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7558L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7559L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7560L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7561L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7562L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7563L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7564L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7565L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7566L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7567L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7568L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7569L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7570L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7571L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7572L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7573L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7574L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7575L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7576L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7577L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7578L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7579L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7580L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7581L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7582L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7583L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7584L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" -2 = "Ref." ; VALUE TM7585L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7586L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7587L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7588L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7589L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7590L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7591L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7592L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7593L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7594L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7595L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7596L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7597L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7598L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T76" ; VALUE TM7599L (default=32) 0 = "Not applicable" ; VALUE TM7600L (default=32) 0 = "Not applicable" ; VALUE TM7601L (default=32) 0 = "Not applicable" ; VALUE TM7602L (default=32) 0 = "Not applicable" ; VALUE TM7603L (default=32) 0 = "Not applicable" ; VALUE TM7604L (default=32) 0 = "Not applicable" ; VALUE TM7605L (default=32) 0 = "Not applicable" ; VALUE TM7606L (default=32) 0 = "Not applicable" ; VALUE TM7607L (default=32) 0 = "Not applicable" ; VALUE TM7608L (default=32) 0 = "Not applicable" ; VALUE TM7609L (default=32) 0 = "Not applicable" ; VALUE TM7610L (default=32) 0 = "Not applicable" ; VALUE TM7611L (default=32) 0 = "Not applicable" ; VALUE TM7612L (default=32) 0 = "Not applicable" ; VALUE TM7613L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7669" 2 = "No" -9 = "No response" ; VALUE TM7614L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7670" 2 = "No" -9 = "No response" ; VALUE TM7615L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7671" 2 = "No" -9 = "No response" ; VALUE TM7616L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7672" 2 = "No" -9 = "No response" ; VALUE TM7617L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7673" 2 = "No" -9 = "No response" ; VALUE TM7618L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7674" 2 = "No" -9 = "No response" ; VALUE TM7619L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7675" 2 = "No" -9 = "No response" ; VALUE TM7620L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7879" -9 = "No response" ; VALUE TM7621L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7880" -9 = "No response" ; VALUE TM7622L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7881" -9 = "No response" ; VALUE TM7623L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7882" -9 = "No response" ; VALUE TM7624L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7883" -9 = "No response" ; VALUE TM7625L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7884" -9 = "No response" ; VALUE TM7626L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7885" -9 = "No response" ; VALUE TM7627L (default=32) 0 = "Not applicable" 1 = "Kindergarten - skip to TM7641" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade" 10 = "Ninth grade" 11 = "Tenth grade" 12 = "Eleventh grade" 13 = "Twelfth grade" 14 = "College - one year or more" -3 = "No grade completed" -9 = "No response" ; VALUE TM7628L (default=32) 0 = "Not applicable" 1 = "Kindergarten - skip to TM7642" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade" 10 = "Ninth grade" 11 = "Tenth grade" 12 = "Eleventh grade" 13 = "Twelfth grade" 14 = "College - one year or more" -3 = "No grade completed" -9 = "No response" ; VALUE TM7629L (default=32) 0 = "Not applicable" 1 = "Kindergarten - skip to TM7643" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade" 10 = "Ninth grade" 11 = "Tenth grade" 12 = "Eleventh grade" 13 = "Twelfth grade" 14 = "College - one year or more" -3 = "No grade completed" -9 = "No response" ; VALUE TM7630L (default=32) 0 = "Not applicable" 1 = "Kindergarten - skip to TM7644" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade" 10 = "Ninth grade" 11 = "Tenth grade" 12 = "Eleventh grade" 13 = "Twelfth grade" 14 = "College - one year or more" -3 = "No grade completed" -9 = "No response" ; VALUE TM7631L (default=32) 0 = "Not applicable" 1 = "Kindergarten - skip to TM7645" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade" 10 = "Ninth grade" 11 = "Tenth grade" 12 = "Eleventh grade" 13 = "Twelfth grade" 14 = "College - one year or more" -3 = "No grade completed" -9 = "No response" ; VALUE TM7632L (default=32) 0 = "Not applicable" 1 = "Kindergarten - skip to TM7646" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade" 10 = "Ninth grade" 11 = "Tenth grade" 12 = "Eleventh grade" 13 = "Twelfth grade" 14 = "College - one year or more" -3 = "No grade completed" -9 = "No response" ; VALUE TM7633L (default=32) 0 = "Not applicable" 1 = "Kindergarten - skip to TM7647" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade" 10 = "Ninth grade" 11 = "Tenth grade" 12 = "Eleventh grade" 13 = "Twelfth grade" 14 = "College - one year or more" -3 = "No grade completed" -9 = "No response" ; VALUE TM7634L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T75" -9 = "No response" ; VALUE TM7635L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T75" -9 = "No response" ; VALUE TM7636L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T75" -9 = "No response" ; VALUE TM7637L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T75" -9 = "No response" ; VALUE TM7638L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T75" -9 = "No response" ; VALUE TM7639L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T75" -9 = "No response" ; VALUE TM7640L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T75" -9 = "No response" ; VALUE TM7641L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7642L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7643L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7644L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7645L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7646L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7647L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7648L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7649L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7650L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7651L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7652L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7653L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7654L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7655L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7879" 2 = "No - skip to TM7739" -9 = "No response" ; VALUE TM7656L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7880" 2 = "No - skip to TM7740" -9 = "No response" ; VALUE TM7657L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7881" 2 = "No - skip to TM7741" -9 = "No response" ; VALUE TM7658L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7882" 2 = "No - skip to TM7742" -9 = "No response" ; VALUE TM7659L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7883" 2 = "No - skip to TM7743" -9 = "No response" ; VALUE TM7660L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7884" 2 = "No - skip to TM7744" -9 = "No response" ; VALUE TM7661L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7885" 2 = "No - skip to TM7745" -9 = "No response" ; VALUE TM7662L (default=32) 0 = "Not applicable" ; VALUE TM7663L (default=32) 0 = "Not applicable" ; VALUE TM7664L (default=32) 0 = "Not applicable" ; VALUE TM7665L (default=32) 0 = "Not applicable" ; VALUE TM7666L (default=32) 0 = "Not applicable" ; VALUE TM7667L (default=32) 0 = "Not applicable" ; VALUE TM7668L (default=32) 0 = "Not applicable" ; VALUE TM7669L (default=32) 0 = "Not applicable" 1 = "Fourth grade" 2 = "Fifth grade" 3 = "Sixth grade" 4 = "Seventh grade" 5 = "Eighth grade" 6 = "Ninth grade" 7 = "Tenth grade" 8 = "Eleventh grade" 9 = "Twelfth grade" 10 = "College - one year or more" ; VALUE TM7670L (default=32) 0 = "Not applicable" 1 = "Fourth grade" 2 = "Fifth grade" 3 = "Sixth grade" 4 = "Seventh grade" 5 = "Eighth grade" 6 = "Ninth grade" 7 = "Tenth grade" 8 = "Eleventh grade" 9 = "Twelfth grade" 10 = "College - one year or more" ; VALUE TM7671L (default=32) 0 = "Not applicable" 1 = "Fourth grade" 2 = "Fifth grade" 3 = "Sixth grade" 4 = "Seventh grade" 5 = "Eighth grade" 6 = "Ninth grade" 7 = "Tenth grade" 8 = "Eleventh grade" 9 = "Twelfth grade" 10 = "College - one year or more" ; VALUE TM7672L (default=32) 0 = "Not applicable" 1 = "Fourth grade" 2 = "Fifth grade" 3 = "Sixth grade" 4 = "Seventh grade" 5 = "Eighth grade" 6 = "Ninth grade" 7 = "Tenth grade" 8 = "Eleventh grade" 9 = "Twelfth grade" 10 = "College - one year or more" ; VALUE TM7673L (default=32) 0 = "Not applicable" 1 = "Fourth grade" 2 = "Fifth grade" 3 = "Sixth grade" 4 = "Seventh grade" 5 = "Eighth grade" 6 = "Ninth grade" 7 = "Tenth grade" 8 = "Eleventh grade" 9 = "Twelfth grade" 10 = "College - one year or more" ; VALUE TM7674L (default=32) 0 = "Not applicable" 1 = "Fourth grade" 2 = "Fifth grade" 3 = "Sixth grade" 4 = "Seventh grade" 5 = "Eighth grade" 6 = "Ninth grade" 7 = "Tenth grade" 8 = "Eleventh grade" 9 = "Twelfth grade" 10 = "College - one year or more" ; VALUE TM7675L (default=32) 0 = "Not applicable" 1 = "Fourth grade" 2 = "Fifth grade" 3 = "Sixth grade" 4 = "Seventh grade" 5 = "Eighth grade" 6 = "Ninth grade" 7 = "Tenth grade" 8 = "Eleventh grade" 9 = "Twelfth grade" 10 = "College - one year or more" ; VALUE TM7676L (default=32) 0 = "Not applicable" 1 = "Public" 2 = "Private - skip to TM7690" -9 = "No response" ; VALUE TM7677L (default=32) 0 = "Not applicable" 1 = "Public" 2 = "Private - skip to TM7691" -9 = "No response" ; VALUE TM7678L (default=32) 0 = "Not applicable" 1 = "Public" 2 = "Private - skip to TM7692" -9 = "No response" ; VALUE TM7679L (default=32) 0 = "Not applicable" 1 = "Public" 2 = "Private - skip to TM7693" -9 = "No response" ; VALUE TM7680L (default=32) 0 = "Not applicable" 1 = "Public" 2 = "Private - skip to TM7694" -9 = "No response" ; VALUE TM7681L (default=32) 0 = "Not applicable" 1 = "Public" 2 = "Private - skip to TM7695" -9 = "No response" ; VALUE TM7682L (default=32) 0 = "Not applicable" 1 = "Public" 2 = "Private - skip to TM7696" -9 = "No response" ; VALUE TM7683L (default=32) 0 = "Not applicable" 1 = "Assigned - skip to TM7697" 2 = "Chosen - skip to TM7697" 3 = "Assigned school is school of" -9 = "No response" ; VALUE TM7684L (default=32) 0 = "Not applicable" 1 = "Assigned - skip to TM7698" 2 = "Chosen - skip to TM7698" 3 = "Assigned school is school of" -9 = "No response" ; VALUE TM7685L (default=32) 0 = "Not applicable" 1 = "Assigned - skip to TM7699" 2 = "Chosen - skip to TM7699" 3 = "Assigned school is school of" -9 = "No response" ; VALUE TM7686L (default=32) 0 = "Not applicable" 1 = "Assigned - skip to TM7700" 2 = "Chosen - skip to TM7700" 3 = "Assigned school is school of" -9 = "No response" ; VALUE TM7687L (default=32) 0 = "Not applicable" 1 = "Assigned - skip to TM7701" 2 = "Chosen - skip to TM7701" 3 = "Assigned school is school of" -9 = "No response" ; VALUE TM7688L (default=32) 0 = "Not applicable" 1 = "Assigned - skip to TM7702" 2 = "Chosen - skip to TM7702" 3 = "Assigned school is school of" -9 = "No response" ; VALUE TM7689L (default=32) 0 = "Not applicable" 1 = "Assigned - skip to TM7703" 2 = "Chosen - skip to TM7703" 3 = "Assigned school is school of" -9 = "No response" ; VALUE TM7690L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7691L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7692L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7693L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7694L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7695L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7696L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -9 = "No response" ; VALUE TM7697L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7725" -9 = "No response" ; VALUE TM7698L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7726" -9 = "No response" ; VALUE TM7699L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7727" -9 = "No response" ; VALUE TM7700L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7728" -9 = "No response" ; VALUE TM7701L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7729" -9 = "No response" ; VALUE TM7702L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7730" -9 = "No response" ; VALUE TM7703L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7731" -9 = "No response" ; VALUE TM7704L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7705L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7706L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7707L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7708L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7709L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7710L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7711L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7712L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7713L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7714L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7715L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7716L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7717L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7718L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7879" ; VALUE TM7719L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7880" ; VALUE TM7720L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7881" ; VALUE TM7721L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7882" ; VALUE TM7722L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7883" ; VALUE TM7723L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7884" ; VALUE TM7724L (default=32) 0 = "Not applicable" 1 = "Yes - skip to TM7885" ; VALUE TM7725L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7726L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7727L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7728L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7729L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7730L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7731L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7732L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7733L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7734L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7735L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7736L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7737L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7738L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7739L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7760" -1 = "Dk - skip to TM7760" -2 = "Ref. - skip to TM7760" -9 = "No response" ; VALUE TM7740L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7761" -1 = "Dk - skip to TM7761" -2 = "Ref. - skip to TM7761" -9 = "No response" ; VALUE TM7741L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7762" -1 = "Dk - skip to TM7762" -2 = "Ref. - skip to TM7762" -9 = "No response" ; VALUE TM7742L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7763" -1 = "Dk - skip to TM7763" -2 = "Ref. - skip to TM7763" -9 = "No response" ; VALUE TM7743L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7764" -1 = "Dk - skip to TM7764" -2 = "Ref. - skip to TM7764" -9 = "No response - skip to TM7764" ; VALUE TM7744L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7765" -1 = "Dk - skip to TM7765" -2 = "Ref. - skip to TM7765" -9 = "No response - skip to TM7765" ; VALUE TM7745L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7766" -1 = "Dk - skip to TM7766" -2 = "Ref. - skip to TM7766" -9 = "No response - skip to TM7766" ; VALUE TM7746L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7747L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7748L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7749L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7750L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7751L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7752L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7753L (default=32) 0 = "Not applicable" ; VALUE TM7754L (default=32) 0 = "Not applicable" ; VALUE TM7755L (default=32) 0 = "Not applicable" ; VALUE TM7756L (default=32) 0 = "Not applicable" ; VALUE TM7757L (default=32) 0 = "Not applicable" ; VALUE TM7758L (default=32) 0 = "Not applicable" ; VALUE TM7759L (default=32) 0 = "Not applicable" ; VALUE TM7760L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7858" -1 = "Dk - skip to TM7858" -2 = "Ref. - skip to TM7858" -9 = "No response - skip to TM7858" ; VALUE TM7761L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7859" -1 = "Dk - skip to TM7859" -2 = "Ref. - skip to TM7859" -9 = "No response - skip to TM7859" ; VALUE TM7762L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7860" -1 = "Dk - skip to TM7860" -2 = "Ref. - skip to TM7860" -9 = "No response - skip to TM7860" ; VALUE TM7763L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7861" -1 = "Dk - skip to TM7861" -2 = "Ref. - skip to TM7861" -9 = "No response - skip to TM7861" ; VALUE TM7764L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7862" -1 = "Dk - skip to TM7862" -2 = "Ref. - skip to TM7862" -9 = "Dk - skip to TM7862" ; VALUE TM7765L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7863" -1 = "Dk - skip to TM7863" -2 = "Ref. - skip to TM7863" -9 = "No response - skip to TM7863" ; VALUE TM7766L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7864" -1 = "Dk - skip to TM7864" -2 = "Ref. - skip to TM7864" -9 = "No response - skip to TM7864" ; VALUE TM7767L (default=32) 0 = "Not applicable" 1 = "Kindergarten" ; VALUE TM7768L (default=32) 0 = "Not applicable" 1 = "Kindergarten" ; VALUE TM7769L (default=32) 0 = "Not applicable" 1 = "Kindergarten" ; VALUE TM7770L (default=32) 0 = "Not applicable" 1 = "Kindergarten" ; VALUE TM7771L (default=32) 0 = "Not applicable" 1 = "Kindergarten" ; VALUE TM7772L (default=32) 0 = "Not applicable" 1 = "Kindergarten" ; VALUE TM7773L (default=32) 0 = "Not applicable" 1 = "Kindergarten" ; VALUE TM7774L (default=32) 0 = "Not applicable" 1 = "First grade" ; VALUE TM7775L (default=32) 0 = "Not applicable" 1 = "First grade" ; VALUE TM7776L (default=32) 0 = "Not applicable" 1 = "First grade" ; VALUE TM7777L (default=32) 0 = "Not applicable" 1 = "First grade" ; VALUE TM7778L (default=32) 0 = "Not applicable" 1 = "First grade" ; VALUE TM7779L (default=32) 0 = "Not applicable" 1 = "First grade" ; VALUE TM7780L (default=32) 0 = "Not applicable" 1 = "First grade" ; VALUE TM7781L (default=32) 0 = "Not applicable" 1 = "Second grade" ; VALUE TM7782L (default=32) 0 = "Not applicable" 1 = "Second grade" ; VALUE TM7783L (default=32) 0 = "Not applicable" 1 = "Second grade" ; VALUE TM7784L (default=32) 0 = "Not applicable" 1 = "Second grade" ; VALUE TM7785L (default=32) 0 = "Not applicable" 1 = "Second grade" ; VALUE TM7786L (default=32) 0 = "Not applicable" 1 = "Second grade" ; VALUE TM7787L (default=32) 0 = "Not applicable" 1 = "Second grade" ; VALUE TM7788L (default=32) 0 = "Not applicable" 1 = "Third grade" ; VALUE TM7789L (default=32) 0 = "Not applicable" 1 = "Third grade" ; VALUE TM7790L (default=32) 0 = "Not applicable" 1 = "Third grade" ; VALUE TM7791L (default=32) 0 = "Not applicable" 1 = "Third grade" ; VALUE TM7792L (default=32) 0 = "Not applicable" 1 = "Third grade" ; VALUE TM7793L (default=32) 0 = "Not applicable" 1 = "Third grade" ; VALUE TM7794L (default=32) 0 = "Not applicable" 1 = "Third grade" ; VALUE TM7795L (default=32) 0 = "Not applicable" 1 = "Fourth grade" ; VALUE TM7796L (default=32) 0 = "Not applicable" 1 = "Fourth grade" ; VALUE TM7797L (default=32) 0 = "Not applicable" 1 = "Fourth grade" ; VALUE TM7798L (default=32) 0 = "Not applicable" 1 = "Fourth grade" ; VALUE TM7799L (default=32) 0 = "Not applicable" 1 = "Fourth grade" ; VALUE TM7800L (default=32) 0 = "Not applicable" 1 = "Fourth grade" ; VALUE TM7801L (default=32) 0 = "Not applicable" 1 = "Fourth grade" ; VALUE TM7802L (default=32) 0 = "Not applicable" 1 = "Fifth grade" ; VALUE TM7803L (default=32) 0 = "Not applicable" 1 = "Fifth grade" ; VALUE TM7804L (default=32) 0 = "Not applicable" 1 = "Fifth grade" ; VALUE TM7805L (default=32) 0 = "Not applicable" 1 = "Fifth grade" ; VALUE TM7806L (default=32) 0 = "Not applicable" 1 = "Fifth grade" ; VALUE TM7807L (default=32) 0 = "Not applicable" 1 = "Fifth grade" ; VALUE TM7808L (default=32) 0 = "Not applicable" 1 = "Fifth grade" ; VALUE TM7809L (default=32) 0 = "Not applicable" 1 = "Sixth grade" ; VALUE TM7810L (default=32) 0 = "Not applicable" 1 = "Sixth grade" ; VALUE TM7811L (default=32) 0 = "Not applicable" 1 = "Sixth grade" ; VALUE TM7812L (default=32) 0 = "Not applicable" 1 = "Sixth grade" ; VALUE TM7813L (default=32) 0 = "Not applicable" 1 = "Sixth grade" ; VALUE TM7814L (default=32) 0 = "Not applicable" 1 = "Sixth grade" ; VALUE TM7815L (default=32) 0 = "Not applicable" 1 = "Sixth grade" ; VALUE TM7816L (default=32) 0 = "Not applicable" 1 = "Seventh grade" ; VALUE TM7817L (default=32) 0 = "Not applicable" 1 = "Seventh grade" ; VALUE TM7818L (default=32) 0 = "Not applicable" 1 = "Seventh grade" ; VALUE TM7819L (default=32) 0 = "Not applicable" 1 = "Seventh grade" ; VALUE TM7820L (default=32) 0 = "Not applicable" 1 = "Seventh grade" ; VALUE TM7821L (default=32) 0 = "Not applicable" 1 = "Seventh grade" ; VALUE TM7822L (default=32) 0 = "Not applicable" 1 = "Seventh grade" ; VALUE TM7823L (default=32) 0 = "Not applicable" 1 = "Eighth grade" ; VALUE TM7824L (default=32) 0 = "Not applicable" 1 = "Eighth grade" ; VALUE TM7825L (default=32) 0 = "Not applicable" 1 = "Eighth grade" ; VALUE TM7826L (default=32) 0 = "Not applicable" 1 = "Eighth grade" ; VALUE TM7827L (default=32) 0 = "Not applicable" 1 = "Eighth grade" ; VALUE TM7828L (default=32) 0 = "Not applicable" 1 = "Eighth grade" ; VALUE TM7829L (default=32) 0 = "Not applicable" 1 = "Eighth grade" ; VALUE TM7830L (default=32) 0 = "Not applicable" 1 = "Ninth grade" ; VALUE TM7831L (default=32) 0 = "Not applicable" 1 = "Ninth grade" ; VALUE TM7832L (default=32) 0 = "Not applicable" 1 = "Ninth grade" ; VALUE TM7833L (default=32) 0 = "Not applicable" 1 = "Ninth grade" ; VALUE TM7834L (default=32) 0 = "Not applicable" 1 = "Ninth grade" ; VALUE TM7835L (default=32) 0 = "Not applicable" 1 = "Ninth grade" ; VALUE TM7836L (default=32) 0 = "Not applicable" 1 = "Ninth grade" ; VALUE TM7837L (default=32) 0 = "Not applicable" 1 = "Tenth grade" ; VALUE TM7838L (default=32) 0 = "Not applicable" 1 = "Tenth grade" ; VALUE TM7839L (default=32) 0 = "Not applicable" 1 = "Tenth grade" ; VALUE TM7840L (default=32) 0 = "Not applicable" 1 = "Tenth grade" ; VALUE TM7841L (default=32) 0 = "Not applicable" 1 = "Tenth grade" ; VALUE TM7842L (default=32) 0 = "Not applicable" 1 = "Tenth grade" ; VALUE TM7843L (default=32) 0 = "Not applicable" 1 = "Tenth grade" ; VALUE TM7844L (default=32) 0 = "Not applicable" 1 = "Eleventh grade" ; VALUE TM7845L (default=32) 0 = "Not applicable" 1 = "Eleventh grade" ; VALUE TM7846L (default=32) 0 = "Not applicable" 1 = "Eleventh grade" ; VALUE TM7847L (default=32) 0 = "Not applicable" 1 = "Eleventh grade" ; VALUE TM7848L (default=32) 0 = "Not applicable" 1 = "Eleventh grade" ; VALUE TM7849L (default=32) 0 = "Not applicable" 1 = "Eleventh grade" ; VALUE TM7850L (default=32) 0 = "Not applicable" 1 = "Eleventh grade" ; VALUE TM7851L (default=32) 0 = "Not applicable" 1 = "Twelfth grade" ; VALUE TM7852L (default=32) 0 = "Not applicable" 1 = "Twelfth grade" ; VALUE TM7853L (default=32) 0 = "Not applicable" 1 = "Twelfth grade" ; VALUE TM7854L (default=32) 0 = "Not applicable" 1 = "Twelfth grade" ; VALUE TM7855L (default=32) 0 = "Not applicable" 1 = "Twelfth grade" ; VALUE TM7856L (default=32) 0 = "Not applicable" 1 = "Twelfth grade" ; VALUE TM7857L (default=32) 0 = "Not applicable" 1 = "Twelfth grade" ; VALUE TM7858L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7879" -1 = "Dk - skip to TM7879" -2 = "Ref. - skip to TM7879" -9 = "No response - skip to TM7879" ; VALUE TM7859L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7880" -1 = "Dk - skip to TM7880" -2 = "Ref. - skip to TM7880" -9 = "No response - skip to TM7880" ; VALUE TM7860L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7881" -1 = "Dk - skip to TM7881" -2 = "Ref. - skip to TM7881" -9 = "No response - skip to TM7881" ; VALUE TM7861L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7882" -1 = "Dk - skip to TM7882" -2 = "Ref. - skip to TM7882" -9 = "No response - skip to TM7882" ; VALUE TM7862L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7883" -1 = "Dk - skip to TM7883" -2 = "Ref. - skip to TM7883" -9 = "No response - skip to TM7883" ; VALUE TM7863L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7884" -1 = "Dk - skip to TM7884" -2 = "Ref. - skip to TM7884" -9 = "No response - skip to TM7884" ; VALUE TM7864L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to TM7885" -1 = "Dk - skip to TM7885" -2 = "Ref. - skip to TM7885" -9 = "No response - skip to TM7885" ; VALUE TM7865L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7866L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7867L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7868L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7869L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7870L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7871L (default=32) 0 = "Not applicable" -9 = "No response" ; VALUE TM7872L (default=32) 0 = "Not applicable" 1 = "Kindergarten" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade" 10 = "Ninth grade" 11 = "Tenth grade" 12 = "Eleventh grade" 13 = "Twelfth grade" -1 = "Dk" -9 = "No response" ; VALUE TM7873L (default=32) 0 = "Not applicable" 1 = "Kindergarten" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade" 10 = "Ninth grade" 11 = "Tenth grade" 12 = "Eleventh grade" 13 = "Twelfth grade" -1 = "Dk" -9 = "No response" ; VALUE TM7874L (default=32) 0 = "Not applicable" 1 = "Kindergarten" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade" 10 = "Ninth grade" 11 = "Tenth grade" 12 = "Eleventh grade" 13 = "Twelfth grade" -1 = "Dk" -9 = "No response" ; VALUE TM7875L (default=32) 0 = "Not applicable" 1 = "Kindergarten" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade" 10 = "Ninth grade" 11 = "Tenth grade" 12 = "Eleventh grade" 13 = "Twelfth grade" -1 = "Dk" -9 = "No response" ; VALUE TM7876L (default=32) 0 = "Not applicable" 1 = "Kindergarten" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade" 10 = "Ninth grade" 11 = "Tenth grade" 12 = "Eleventh grade" 13 = "Twelfth grade" -1 = "Dk" -9 = "No response" ; VALUE TM7877L (default=32) 0 = "Not applicable" 1 = "Kindergarten" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade" 10 = "Ninth grade" 11 = "Tenth grade" 12 = "Eleventh grade" 13 = "Twelfth grade" -1 = "Dk" -9 = "No response" ; VALUE TM7878L (default=32) 0 = "Not applicable" 1 = "Kindergarten" 2 = "First grade" 3 = "Second grade" 4 = "Third grade" 5 = "Fourth grade" 6 = "Fifth grade" 7 = "Sixth grade" 8 = "Seventh grade" 9 = "Eighth grade" 10 = "Ninth grade" 11 = "Tenth grade" 12 = "Eleventh grade" 13 = "Twelfth grade" -1 = "Dk" -9 = "No response" ; VALUE TM7879L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7880L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7881L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7882L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7883L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7884L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7885L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7886L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7887L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7888L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7889L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7890L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7891L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7892L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7893L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7894L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7895L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7896L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7897L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7898L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7899L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7900L (default=32) 0 = "Not applicable" ; VALUE TM7901L (default=32) 0 = "Not applicable" ; VALUE TM7902L (default=32) 0 = "Not applicable" ; VALUE TM7903L (default=32) 0 = "Not applicable" ; VALUE TM7904L (default=32) 0 = "Not applicable" ; VALUE TM7905L (default=32) 0 = "Not applicable" ; VALUE TM7906L (default=32) 0 = "Not applicable" ; VALUE TM7907L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7908L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7909L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7910L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7911L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7912L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7913L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7914L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7915L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7916L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7917L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7918L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7919L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7920L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7921L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7922L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7923L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7924L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7925L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7926L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7927L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" -1 = "Dk" -2 = "Ref." -9 = "No response" ; VALUE TM7928L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item T77" ; VALUE TM7929L (default=32) -9 = "Blank" ; VALUE TM7931L (default=32) -9 = "Blank" ; VALUE TM7932L (default=32) -9 = "Blank" ; VALUE TM7933L (default=32) -9 = "Blank" ; VALUE TM7934L (default=32) -9 = "Blank" ; VALUE TM7935L (default=32) -9 = "Blank" ; VALUE TM7936L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No - skip to check item c1" ; VALUE TM7937L (default=32) -9 = "Blank" ; VALUE TM7938L (default=32) -9 = "Blank" ; VALUE TM7939L (default=32) -9 = "Blank" ; VALUE TM7940L (default=32) 0 = "Not applicable" 1 = "Very safe" 2 = "Fairly safe" 3 = "Fairly unsafe" 4 = "Very unsafe" -1 = "Dk" ; VALUE TM7941L (default=32) 0 = "Not applicable" 1 = "Very safe" 2 = "Fairly safe" 3 = "Fairly unsafe" 4 = "Very unsafe" -1 = "Dk" ; filename raw pipe "unzip -p /homes/data/sipp/1992/sipp92t9.zip "; data library.sip92t9; missing A; infile raw lrecl = 20000 missover ; * To read in uncompressed file, uncomment INFILE & comment filename & infile lines; * On a PC, you may need to change the direction of the slashes as in C:\; *INFILE '/homes/data/sipp/1992/sipp92t9.dat' LRECL=20000 PAD END=EOF; *LENGTH SUSEQNUM $5 ID $9 ADDID $2 PP_MIS5 4 ENTRY $2 FINALWGT 8 TM8004 8 TM8006 8 TM8048 4 TM8052 4 TM8056 4 TM8060 4 TM8324 4 TM8442 4 TM8443 4 TM8444 4 TM8445 4 TM8446 4 TM8449 4 TM8450 4 TM8451 4 TM8452 4 TM8453 4 TM8458 4 TM8460 4 TM8482 4 TM8483 4 TM8484 4 TM8485 4 TM8486 4 TM8489 4 TM8490 4 TM8491 4 TM8492 4 TM8493 4 TM8497 4 TM8498 4 TM8664 4 TM8666 4 TM8668 4 TM8670 4 TM8674 4 TM8678 4 TM8909 4 TM9014 4 TM9018 4 TM9022 4 TM9040 4 TM9044 4 TM9189 4 DEFAULT=3; /*-------------------------------------------------------------------------------------*/ /* The following changes in variable names have been made, if necessary: '$' to 'd'; '-' to '_'; '%' to 'p'; Note: Variable names in SAS are not case-sensitive */ /*-------------------------------------------------------------------------------------*/ INPUT @1 SUSEQNUM $5. @6 ID $9. @15 ROTATION 1. @16 STATE 2. @18 PINX 2. @20 ADDID $2. @22 ITEM36B 2. @24 INTVW 1. @25 PP_MIS5 5. @30 ENTRY $2. @32 PNUM $3. @38 FINALWGT 9.4 @47 RRP 1. @48 AGE 3. @51 SEX 1. @52 RACE 1. @53 MS 1. @54 PNSP 3. @57 PNPT 3. @60 HIGRADE 2. @62 GRD_CMPL 1. @63 ETHNICTY 2. @65 WAVE 1. @69 TM8000 1. @70 TM8001 1. @71 TM8002 1. @72 TM8004 3.1 @75 TM8006 3.1 @78 TM8008 1. @79 TM8010 1. @80 TM8012 1. @81 TM8014 1. @82 TM8016 1. @83 TM8018 1. @84 TM8020 1. @85 TM8022 1. @86 TM8024 1. @87 TM8026 1. @88 TM8028 1. @89 TM8030 1. @90 TM8032 1. @91 TM8034 1. @92 TM8036 1. @93 TM8038 1. @94 TM8040 1. @95 TM8042 1. @96 TM8044 2. @98 TM8046 2. @100 TM8048 4. @104 TM8050 1. @105 TM8052 4. @109 TM8054 1. @110 TM8056 4. @114 TM8058 1. @115 TM8060 4. @119 TM8062 1. @120 TM8064 1. @121 TM8066 1. @122 TM8068 1. @123 TM8070 1. @124 TM8072 1. @125 TM7990 1. @126 TM7992 1. @127 IMP8001 1. @128 IMP8004 1. @129 IMP0840 1. @130 IMP1640 1. @131 IMP4858 1. @132 IMP4850 1. @133 IMP8050 1. @134 IMP5658 1. @135 IMP8064 1. @136 IMP8068 1. @137 IMP8006 1. @138 IMP1042 1. @139 IMP1842 1. @140 IMP5262 1. @141 IMP5254 1. @142 IMP8054 1. @143 IMP6062 1. @144 IMP8066 1. @145 IMP8070 1. @146 IMP7990 1. @147 IMP7992 1. @149 TM8100 1. @150 TM8105 1. @151 TM8106 1. @152 TM8107 2. @154 TM8108 1. @155 TM8109 2. @157 TM8114 3. @160 TM8116 3. @163 TM8118 3. @166 TM8120 2. @168 TM8122 2. @170 TM8124 2. @172 TM8126 1. @173 TM8128 1. @174 TM8130 1. @175 TM8132 1. @176 TM8134 1. @177 TM8136 1. @178 TM8138 1. @179 TM8140 1. @180 TM8142 1. @181 TM8144 1. @182 TM8146 1. @183 TM8148 1. @184 TM8150 1. @185 TM8152 3. @188 TM8154 3. @191 TM8156 3. @194 TM8158 2. @196 TM8160 2. @198 TM8162 2. @200 TM8164 1. @201 TM8166 1. @202 TM8168 1. @203 TM8170 2. @205 TM8172 2. @207 TM8174 2. @209 TM8176 1. @210 TM8178 1. @211 TM8180 1. @212 TM8182 1. @213 TM8184 1. @214 TM8186 1. @215 TM8188 1. @216 TM8190 1. @217 TM8192 1. @218 TM8194 1. @219 TM8196 1. @220 TM8198 1. @221 TM8200 1. @222 TM8202 3. @225 TM8204 3. @228 TM8206 3. @231 TM8208 2. @233 TM8210 2. @235 TM8212 2. @237 TM8322 1. @238 TM8324 6. @244 TM8326 1. @245 TM8328 2. @247 IMP8107 1. @248 IMP8109 1. @249 IMP8120 1. @250 IMP8122 1. @251 IMP8124 1. @252 IMP8126 1. @253 IMP8128 1. @254 IMP8130 1. @255 IMP8170 1. @256 IMP8172 1. @257 IMP8174 1. @258 IMP8176 1. @259 IMP8178 1. @260 IMP8180 1. @261 IMP8138 1. @262 IMP8140 1. @263 IMP8142 1. @264 IMP8146 1. @265 IMP8152 1. @266 IMP8148 1. @267 IMP8154 1. @268 IMP8150 1. @269 IMP8156 1. @270 IMP8158A 1. @271 IMP8160A 1. @272 IMP8162A 1. @273 IMP8158B 1. @274 IMP8160B 1. @275 IMP8162B 1. @276 IMP8188 1. @277 IMP8190 1. @278 IMP8192 1. @279 IMP8196 1. @280 IMP8202 1. @281 IMP8198 1. @282 IMP8204 1. @283 IMP8200 1. @284 IMP8206 1. @285 IMP8208a 1. @286 IMP8210a 1. @287 IMP8212A 1. @288 IMP8208B 1. @289 IMP8210B 1. @290 IMP8212B 1. @291 IMP8324 1. @292 IMP8326 1. @293 IMP8328 1. @297 TM8400 1. @298 TM8401 1. @299 TM8402 2. @301 TM8403 3. @304 TM8404 1. @305 TM8405 1. @306 TM8406 1. @307 TM8407 3. @310 TM8408 1. @311 TM8409 1. @312 TM8410 1. @313 TM8411 3. @316 TM8412 1. @317 TM8413 1. @318 TM8414 1. @319 TM8415 3. @322 TM8416 1. @323 TM8417 1. @324 TM8418 1. @325 TM8419 3. @328 TM8420 1. @329 TM8421 1. @330 TM8422 1. @331 TM8423 3. @334 TM8424 1. @335 TM8425 1. @336 TM8426 1. @337 TM8427 3. @340 TM8428 1. @341 TM8429 1. @342 TM8430 1. @343 TM8431 3. @346 TM8432 1. @347 TM8433 1. @348 TM8434 1. @349 TM8435 1. @350 TM8436 1. @351 TM8437 2. @353 TM8438 1. @354 TM8439 2. @356 TM8440 1. @357 TM8441 1. @358 TM8442 4. @362 TM8443 6. @368 TM8444 6. @374 TM8445 6. @380 TM8446 6. @386 TM8447 2. @388 TM8448 1. @389 TM8449 4. @393 TM8450 6. @399 TM8451 6. @405 TM8452 6. @411 TM8453 6. @417 TM8454 2. @419 TM8455 1. @420 TM8456 1. @421 TM8457 1. @422 TM8458 6. @428 TM8459 2. @430 TM8460 6. @436 TM8461 1. @437 TM8462 2. @439 TM8463 2. @441 TM8464 1. @442 TM8465 1. @443 TM8466 1. @444 TM8467 1. @445 TM8468 1. @446 TM8469 1. @447 TM8470 1. @448 TM8471 1. @449 TM8472 1. @450 TM8473 1. @451 TM8474 3. @454 TM8475 2. @456 TM8476 2. @458 TM8477 2. @460 TM8478 2. @462 TM8479 1. @463 TM8480 1. @464 TM8481 1. @465 TM8482 4. @469 TM8483 6. @475 TM8484 6. @481 TM8485 6. @487 TM8486 6. @493 TM8487 2. @495 TM8488 1. @496 TM8489 4. @500 TM8490 6. @506 TM8491 6. @512 TM8492 6. @518 TM8493 6. @524 TM8494 2. @526 TM8495 1. @527 TM8496 1. @528 TM8497 6. @534 TM8498 6. @540 TM8499 1. @541 TM8500 2. @543 TM8501 2. @545 TM8502 1. @546 TM8503 1. @547 TM8504 1. @548 TM8505 1. @549 TM8506 1. @550 TM8507 1. @551 TM8508 1. @552 TM8509 1. @553 TM8510 1. @554 TM8511 1. @555 TM8512 3. @558 TM8513 2. @560 TM8514 2. @562 TM8515 2. @564 TM8516 2. @566 TM8517 1. @567 TM8518 1. @568 TM8519 3. @571 TM8520 3. @574 TM8521 3. @577 TM8522 3. @580 TM8523 3. @583 TM8524 3. @586 TM8525 3. @589 TM8526 3. @592 TM8527 2. @594 TM8528 2. @596 TM8529 2. @598 TM8530 2. @600 TM8531 2. @602 TM8532 2. @604 TM8533 2. @606 TM8534 2. @608 TM8535 2. @610 TM8536 2. @612 TM8537 2. @614 TM8538 2. @616 TM8539 2. @618 TM8540 2. @620 TM8541 2. @622 TM8542 2. @624 TM8543 2. @626 TM8544 2. @628 TM8545 2. @630 TM8546 2. @632 TM8547 2. @634 TM8548 2. @636 TM8549 2. @638 TM8550 2. @640 TM8551 2. @642 TM8552 2. @644 TM8553 2. @646 TM8554 2. @648 TM8555 2. @650 TM8556 2. @652 TM8557 2. @654 TM8558 2. @656 TM8559 2. @658 TM8560 2. @660 TM8561 2. @662 TM8562 2. @664 TM8563 2. @666 TM8564 2. @668 TM8565 2. @670 TM8566 2. @672 TM8567 2. @674 TM8568 2. @676 TM8569 2. @678 TM8570 2. @680 TM8571 2. @682 TM8572 2. @684 TM8573 2. @686 TM8574 2. @688 TM8575 1. @689 TM8576 1. @690 TM8577 1. @691 TM8578 1. @692 TM8579 1. @693 TM8580 1. @694 TM8581 1. @695 TM8583 3. @698 TM8584 3. @701 TM8585 3. @704 TM8586 3. @707 TM8587 3. @710 TM8588 3. @713 TM8589 3. @716 TM8590 3. @719 TM8591 2. @721 TM8592 2. @723 TM8593 2. @725 TM8594 2. @727 TM8595 2. @729 TM8596 2. @731 TM8597 2. @733 TM8598 2. @735 TM8599 1. @736 TM8600 2. @738 TM8601 2. @740 TM8602 2. @742 TM8603 2. @744 TM8604 2. @746 TM8605 2. @748 TM8606 2. @750 TM8607 2. @752 TM8608 2. @754 TM8609 2. @756 TM8610 2. @758 TM8611 2. @760 TM8612 2. @762 TM8613 2. @764 TM8614 2. @766 TM8615 2. @768 TM8616 2. @770 TM8617 2. @772 TM8618 2. @774 TM8619 2. @776 TM8620 2. @778 TM8621 2. @780 TM8622 2. @782 TM8623 2. @784 TM8624 2. @786 TM8625 2. @788 TM8626 2. @790 TM8627 2. @792 TM8628 2. @794 TM8629 2. @796 TM8630 2. @798 TM8631 2. @800 TM8632 2. @802 TM8633 2. @804 TM8634 2. @806 TM8635 2. @808 TM8636 2. @810 TM8637 2. @812 TM8638 2. @814 TM8639 2. @816 TM8640 1. @817 TM8641 1. @818 TM8642 1. @819 TM8643 1. @820 TM8644 1. @821 TM8645 1. @822 TM8646 1. @823 TM8648 1. @824 TM8649 1. @825 TM8650 1. @826 TM8651 1. @827 TM8652 1. @828 TM8653 1. @829 TM8654 1. @830 TM8655 1. @831 TM8656 1. @832 TM8658 1. @833 TM8660 1. @834 TM8662 1. @835 TM8664 6. @841 TM8666 6. @847 TM8668 6. @853 TM8670 6. @859 TM8672 2. @861 TM8674 6. @867 TM8676 1. @868 TM8678 4. @872 TM8680 1. @873 TM8682 1. @874 TM8684 1. @875 TM8686 1. @876 TM8688 1. @877 TM8690 1. @878 TM8692 1. @879 TM8694 1. @880 TM8696 1. @881 TM8698 1. @882 TM8700 1. @883 TM8702 1. @884 TM8704 1. @885 TM8706 1. @886 TM8708 1. @887 TM8710 1. @888 TM8712 1. @889 TM8714 1. @890 TM8715 3. @893 TM8716 3. @896 TM8717 3. @899 TM8718 3. @902 TM8719 3. @905 TM8720 3. @908 TM8721 3. @911 TM8722 3. @914 TM8723 2. @916 TM8724 2. @918 TM8725 2. @920 TM8726 2. @922 TM8727 2. @924 TM8728 2. @926 TM8729 2. @928 TM8730 2. @930 TM8731 2. @932 TM8732 2. @934 TM8733 2. @936 TM8734 2. @938 TM8735 2. @940 TM8736 2. @942 TM8737 2. @944 TM8738 2. @946 TM8739 2. @948 TM8740 2. @950 TM8741 2. @952 TM8742 2. @954 TM8743 2. @956 TM8744 2. @958 TM8745 2. @960 TM8746 2. @962 TM8747 2. @964 TM8748 2. @966 TM8749 2. @968 TM8750 2. @970 TM8751 2. @972 TM8752 2. @974 TM8753 2. @976 TM8754 2. @978 TM8755 2. @980 TM8756 2. @982 TM8757 2. @984 TM8758 2. @986 TM8759 2. @988 TM8760 2. @990 TM8761 2. @992 TM8762 2. @994 TM8763 2. @996 TM8764 2. @998 TM8765 2. @1000 TM8766 2. @1002 TM8767 2. @1004 TM8768 2. @1006 TM8769 2. @1008 TM8770 2. @1010 TM8771 1. @1011 TM8772 1. @1012 TM8773 1. @1013 TM8774 1. @1014 TM8775 1. @1015 TM8776 1. @1016 TM8777 1. @1017 TM8779 3. @1020 TM8780 3. @1023 TM8781 3. @1026 TM8782 3. @1029 TM8783 3. @1032 TM8784 3. @1035 TM8785 3. @1038 TM8786 3. @1041 TM8787 2. @1043 TM8788 2. @1045 TM8789 2. @1047 TM8790 2. @1049 TM8791 2. @1051 TM8792 2. @1053 TM8793 2. @1055 TM8794 2. @1057 TM8795 1. @1058 TM8796 1. @1059 TM8797 1. @1060 TM8798 1. @1061 TM8799 1. @1062 TM8800 1. @1063 TM8801 1. @1064 TM8802 1. @1065 TM8803 1. @1066 TM8804 1. @1067 TM8805 2. @1069 TM8806 2. @1071 TM8807 2. @1073 TM8808 2. @1075 TM8809 2. @1077 TM8810 2. @1079 TM8811 2. @1081 TM8812 2. @1083 TM8813 2. @1085 TM8814 2. @1087 TM8815 2. @1089 TM8816 2. @1091 TM8817 2. @1093 TM8818 2. @1095 TM8819 2. @1097 TM8820 2. @1099 TM8821 2. @1101 TM8822 2. @1103 TM8823 2. @1105 TM8824 2. @1107 TM8825 2. @1109 TM8826 2. @1111 TM8827 2. @1113 TM8828 2. @1115 TM8829 2. @1117 TM8830 2. @1119 TM8831 2. @1121 TM8832 2. @1123 TM8833 2. @1125 TM8834 2. @1127 TM8835 2. @1129 TM8836 2. @1131 TM8837 2. @1133 TM8838 2. @1135 TM8839 2. @1137 TM8840 2. @1139 TM8841 2. @1141 TM8842 2. @1143 TM8843 2. @1145 TM8844 2. @1147 TM8845 1. @1148 TM8846 1. @1149 TM8847 1. @1150 TM8848 1. @1151 TM8849 1. @1152 TM8850 1. @1153 TM8851 1. @1154 TM8853 1. @1155 TM8854 1. @1156 TM8855 1. @1157 TM8856 1. @1158 TM8857 1. @1159 TM8858 1. @1160 TM8859 1. @1161 TM8862 1. @1162 TM8864 1. @1163 TM8866 1. @1164 TM8868 1. @1165 TM8869 3. @1168 TM8870 3. @1171 TM8871 1. @1172 TM8872 1. @1173 TM8873 1. @1174 TM8874 1. @1175 TM8875 1. @1176 TM8876 1. @1177 TM8877 1. @1178 TM8878 1. @1179 TM8879 1. @1180 TM8880 1. @1181 TM8881 1. @1182 TM8882 1. @1183 TM8883 1. @1184 TM8884 1. @1185 TM8885 1. @1186 TM8886 1. @1187 TM8887 1. @1188 TM8888 1. @1189 TM8889 1. @1190 TM8890 1. @1191 TM8891 1. @1192 TM8892 1. @1193 TM8893 1. @1194 TM8894 1. @1195 TM8895 2. @1197 TM8896 2. @1199 TM8897 3. @1202 TM8898 3. @1205 TM8900 2. @1207 TM8901 2. @1209 TM8902 2. @1211 TM8903 2. @1213 TM8904 2. @1215 TM8905 2. @1217 TM8906 2. @1219 TM8907 2. @1221 TM8908 1. @1222 TM8909 6. @1228 TM8910 1. @1229 IM8401 1. @1230 IM8403 1. @1231 IM8439 1. @1232 IM8441 1. @1233 IM8442 1. @1234 IM8443 1. @1235 IM8448 1. @1236 IM8449 1. @1237 IM8450 1. @1238 IM8455 1. @1239 IM8456 1. @1240 IM8457 1. @1241 IM8458 1. @1242 IM8459 1. @1243 IM8460 1. @1244 IM8461 1. @1245 IM8462 1. @1246 IM8463 1. @1247 IM8464 1. @1248 IM8470 1. @1249 IM8471 1. @1250 IM8473 1. @1251 IM8474 1. @1252 IM8479 1. @1253 IM8480 1. @1254 IM8481 1. @1255 IM8482 1. @1256 IM8483 1. @1257 IM8488 1. @1258 IM8489 1. @1259 IM8493 1. @1260 IM8495 1. @1261 IM8496 1. @1262 IM8497 1. @1263 IM8498 1. @1264 IM8499 1. @1265 IM8500 1. @1266 IM8501 1. @1267 IM8502 1. @1268 IM8508 1. @1269 IM8509 1. @1270 IM8511 1. @1271 IM8512 1. @1272 IM8535 1. @1273 IM8536 1. @1274 IM8537 1. @1275 IM8538 1. @1276 IM8539 1. @1277 IM8540 1. @1278 IM8541 1. @1279 IM8542 1. @1280 IM8543 1. @1281 IM8544 1. @1282 IM8545 1. @1283 IM8546 1. @1284 IM8547 1. @1285 IM8548 1. @1286 IM8549 1. @1287 IM8550 1. @1288 IM8551 1. @1289 IM8552 1. @1290 IM8553 1. @1291 IM8554 1. @1292 IM8555 1. @1293 IM8556 1. @1294 IM8557 1. @1295 IM8558 1. @1296 IM8559 1. @1297 IM8560 1. @1298 IM8561 1. @1299 IM8562 1. @1300 IM8563 1. @1301 IM8564 1. @1302 IM8565 1. @1303 IM8566 1. @1304 IM8567 1. @1305 IM8568 1. @1306 IM8569 1. @1307 IM8570 1. @1308 IM8571 1. @1309 IM8572 1. @1310 IM8573 1. @1311 IM8574 1. @1312 IM8600 1. @1313 IM8601 1. @1314 IM8602 1. @1315 IM8603 1. @1316 IM8604 1. @1317 IM8605 1. @1318 IM8606 1. @1319 IM8607 1. @1320 IM8608 1. @1321 IM8609 1. @1322 IM8610 1. @1323 IM8611 1. @1324 IM8612 1. @1325 IM8613 1. @1326 IM8614 1. @1327 IM8615 1. @1328 IM8616 1. @1329 IM8617 1. @1330 IM8618 1. @1331 IM8619 1. @1332 IM8620 1. @1333 IM8621 1. @1334 IM8622 1. @1335 IM8623 1. @1336 IM8624 1. @1337 IM8625 1. @1338 IM8626 1. @1339 IM8627 1. @1340 IM8628 1. @1341 IM8629 1. @1342 IM8630 1. @1343 IM8631 1. @1344 IM8632 1. @1345 IM8633 1. @1346 IM8634 1. @1347 IM8635 1. @1348 IM8636 1. @1349 IM8637 1. @1350 IM8638 1. @1351 IM8639 1. @1352 IM8648 1. @1353 IM8656 1. @1354 IM8658 1. @1355 IM8660 1. @1356 IM8664 1. @1357 IM8674 1. @1358 IM8676 1. @1359 IM8678 1. @1360 IM8680 1. @1361 IM8694 1. @1362 IM8696 1. @1363 IM8731 1. @1364 IM8732 1. @1365 IM8733 1. @1366 IM8734 1. @1367 IM8735 1. @1368 IM8736 1. @1369 IM8737 1. @1370 IM8738 1. @1371 IM8739 1. @1372 IM8740 1. @1373 IM8741 1. @1374 IM8742 1. @1375 IM8743 1. @1376 IM8744 1. @1377 IM8745 1. @1378 IM8746 1. @1379 IM8747 1. @1380 IM8748 1. @1381 IM8749 1. @1382 IM8750 1. @1383 IM8751 1. @1384 IM8752 1. @1385 IM8753 1. @1386 IM8754 1. @1387 IM8755 1. @1388 IM8756 1. @1389 IM8757 1. @1390 IM8758 1. @1391 IM8759 1. @1392 IM8760 1. @1393 IM8761 1. @1394 IM8762 1. @1395 IM8763 1. @1396 IM8764 1. @1397 IM8765 1. @1398 IM8766 1. @1399 IM8767 1. @1400 IM8768 1. @1401 IM8769 1. @1402 IM8770 1. @1403 IM8795 1. @1404 IM8796 1. @1405 IM8797 1. @1406 IM8798 1. @1407 IM8799 1. @1408 IM8800 1. @1409 IM8801 1. @1410 IM8802 1. @1411 IM8804 1. @1412 IM8805 1. @1413 IM8806 1. @1414 IM8807 1. @1415 IM8808 1. @1416 IM8809 1. @1417 IM8810 1. @1418 IM8811 1. @1419 IM8812 1. @1420 IM8813 1. @1421 IM8814 1. @1422 IM8815 1. @1423 IM8816 1. @1424 IM8817 1. @1425 IM8818 1. @1426 IM8819 1. @1427 IM8820 1. @1428 IM8821 1. @1429 IM8822 1. @1430 IM8823 1. @1431 IM8824 1. @1432 IM8825 1. @1433 IM8826 1. @1434 IM8827 1. @1435 IM8828 1. @1436 IM8829 1. @1437 IM8830 1. @1438 IM8831 1. @1439 IM8832 1. @1440 IM8833 1. @1441 IM8834 1. @1442 IM8835 1. @1443 IM8836 1. @1444 IM8837 1. @1445 IM8838 1. @1446 IM8839 1. @1447 IM8840 1. @1448 IM8841 1. @1449 IM8842 1. @1450 IM8843 1. @1451 IM8844 1. @1452 IM8868 1. @1453 IM8871 1. @1454 IM8872 1. @1455 IM8887 1. @1456 IM8888 1. @1457 IM8897 1. @1458 IM8898 1. @1459 IM8908 1. @1460 IM8909 1. @1461 IM8910 1. @1465 TM9002 2. @1467 TM9004 1. @1468 TM9006 2. @1470 TM9007 2. @1472 TM9008 1. @1473 TM9010 2. @1475 TM9012 1. @1476 TM9014 4. @1480 TM9016 2. @1482 TM9018 4. @1486 TM9019 1. @1487 TM9020 1. @1488 TM9022 6. @1494 TM9024 2. @1496 TM9026 1. @1497 TM9028 1. @1498 TM9030 1. @1499 TM9032 1. @1500 TM9034 1. @1501 TM9036 2. @1503 TM9038 1. @1504 TM9040 6. @1510 TM9042 1. @1511 TM9044 6. @1517 IMP9000 1. @1518 IMP9002 1. @1519 IMP9004 1. @1520 IMP9006 1. @1521 IMP9007 1. @1522 IMP9008 1. @1523 IMP9010 1. @1524 IMP9012 1. @1525 IMP9014 1. @1526 IMP9016 1. @1527 IMP9018 1. @1528 IMP9019 1. @1529 IMP9020 1. @1530 IMP9022 1. @1531 IMP9024 1. @1532 IMP26_36 1. @1533 IMP9038 1. @1534 IMP9040 1. @1535 IMP9042 1. @1536 IMP9044 1. @1537 IMP9046 1. @1538 IMP9048 1. @1539 IMP9050 1. @1540 IMP9052 1. @1541 IMP9054 1. @1542 IMP9056 1. @1543 IMP9058 1. @1544 IMP9060 1. @1545 IMP9064 1. @1549 TM9100 1. @1550 TM9102 1. @1551 TM9104 1. @1552 TM9106 1. @1553 TM9108 1. @1554 TM9110 1. @1555 TM9112 1. @1556 TM9114 1. @1557 TM9116 1. @1558 TM9118 1. @1559 TM9120 1. @1560 TM9122 1. @1561 TM9124 1. @1562 TM9126 1. @1563 TM9128 1. @1564 TM9130 1. @1565 TM9132 1. @1566 TM9134 1. @1567 TM9136 1. @1568 TM9138 1. @1569 TM9139 1. @1570 TM9140 1. @1571 TM9141 1. @1572 TM9142 1. @1573 TM9143 1. @1574 TM9144 1. @1575 TM9145 1. @1576 TM9146 1. @1577 TM9147 1. @1578 TM9148 1. @1579 TM9149 1. @1580 TM9150 1. @1581 TM9151 1. @1582 TM9152 1. @1583 TM9153 1. @1584 TM9154 1. @1585 TM9155 1. @1586 TM9156 1. @1587 TM9157 1. @1588 TM9158 1. @1589 TM9159 1. @1590 TM9160 1. @1591 TM9161 1. @1592 TM9162 1. @1593 TM9176 1. @1594 TM9178 1. @1595 TM9180 1. @1596 TM9182 1. @1597 TM9183 3. @1600 TM9184 3. @1603 TM9185 1. @1604 TM9186 1. @1605 TM9187 1. @1606 TM9188 2. @1608 TM9189 6. @1614 TM9190 1. @1615 TM9192 2. @1617 TM9194 2. @1619 TM9196 2. @1621 TM9197 1. @1622 TM9198 1. @1623 TM9200 2. @1625 TM9202 1. @1626 TM9204 1. @1627 TM9206 1. @1628 TM9208 1. @1629 TM9210 1. @1630 TM9212 1. @1631 TM9214 1. @1632 TM9216 1. @1633 TM9218 1. @1634 TM9220 1. @1635 TM9222 1. @1636 TM9224 1. @1637 TM9226 1. @1638 TM9228 1. @1639 TM9230 1. @1640 TM9232 2. @1642 TM9234 2. @1644 TM9236 2. @1646 TM9238 1. @1647 TM9240 2. @1649 TM9242 1. @1650 IM9100 1. @1651 IM9102 1. @1652 IM9104 1. @1653 IM9108 1. @1654 IM9110 1. @1655 IM9112 1. @1656 IM9114 1. @1657 IM9116 1. @1658 IM9118 1. @1659 IM9120 1. @1660 IM9122 1. @1661 IM9124 1. @1662 IM9126 1. @1663 IM9128 1. @1664 IM9130 1. @1665 IM9132 1. @1666 IM9134 1. @1667 IM9136 1. @1668 IM9138 1. @1669 IM9139 1. @1670 IM9140 1. @1671 IM9141 1. @1672 IM9142 1. @1673 IM9143 1. @1674 IM9144 1. @1675 IM9145 1. @1676 IM9146 1. @1677 IM9147 1. @1678 IM9148 1. @1679 IM9149 1. @1680 IM9150 1. @1681 IM9151 1. @1682 IM9152 1. @1683 IM9153 1. @1684 IM9154 1. @1685 IM9155 1. @1686 IM9156 1. @1687 IM9157 1. @1688 IM9158 1. @1689 IM9159 1. @1690 IM9160 1. @1691 IM9161 1. @1692 IM9176 1. @1693 IM9178 1. @1694 IM9187 1. @1695 IM9188 1. @1696 IM9189 1. @1697 IM9190 1. @1698 IM9192 1. @1699 IM9194 1. @1700 IM9196 1. @1701 IM9197 1. @1702 IM9202 1. @1703 IM9204 1. @1704 IM9206 1. @1705 IM9208 1. @1706 IM9210 1. @1707 IM9218 1. @1708 IM9222 1. @1709 IM9224 1. @1710 IM9226 1. @1711 IM9228 1. @1712 IM9230 1. @1713 IM9232 1. @1714 IM9234 1. @1715 IM9236 1. @1716 IM9238 1. @1717 IM9240 1. @1718 IM9242 1. @1721 TM9300 1. @1722 TM9302 2. @1724 TM9304 1. @1725 TM9306 1. @1726 TM9308 1. @1727 TM9310 1. @1728 TM9312 1. @1729 TM9314 1. @1730 TM9316 1. @1731 TM9318 3. @1734 TM9320 3. @1737 TM9322 3. @1740 TM9324 2. @1742 TM9326 2. @1744 TM9327 2. @1746 TM9328 2. @1748 TM9329 1. @1749 TM9330 2. @1751 TM9332 1. @1752 TM9333 1. @1753 TM9334 1. @1754 TM9335 1. @1755 TM9336 1. @1756 TM9338 1. @1757 IM9302 1. @1758 I9304_12 1. @1759 IM9314 1. @1760 IM9316 1. @1761 IM9318 1. @1762 IM9320 1. @1763 IM9322 1. @1764 IM9324 1. @1765 IM9326 1. @1766 IM9327 1. @1767 IM9328 1. @1768 IM9329 1. @1769 IM9330 1. @1770 IM9335 1. @1771 IM9336 1. @1772 IM9338 1. @1773 TM9400 1. @1774 TM9401 1. @1775 TM9402 3. @1778 TM9403 3. @1781 TM9404 3. @1784 TM9405 3. @1787 TM9406 3. @1790 TM9407 3. @1793 TM9408 3. @1796 TM9409 2. @1798 TM9410 2. @1800 TM9411 2. @1802 TM9412 2. @1804 TM9413 2. @1806 TM9414 2. @1808 TM9415 2. @1810 TM9416 1. @1811 TM9417 1. @1812 TM9418 1. @1813 TM9419 1. @1814 TM9420 1. @1815 TM9421 1. @1816 TM9422 1. @1817 TM9423 1. @1818 TM9424 1. @1819 TM9425 1. @1820 TM9426 1. @1821 TM9427 1. @1822 TM9428 1. @1823 TM9429 1. @1824 TM9430 1. @1825 TM9431 1. @1826 TM9432 1. @1827 TM9433 1. @1828 TM9434 1. @1829 TM9435 1. @1830 TM9436 1. @1831 TM9737 1. @1832 TM9437 3. @1835 TM9438 3. @1838 TM9439 3. @1841 TM9440 3. @1844 TM9441 3. @1847 TM9442 3. @1850 TM9443 3. @1853 TM9444 2. @1855 TM9445 2. @1857 TM9446 2. @1859 TM9447 2. @1861 TM9448 2. @1863 TM9449 2. @1865 TM9450 2. @1867 TM9451 1. @1868 TM9452 1. @1869 TM9453 1. @1870 TM9454 1. @1871 TM9455 1. @1872 TM9456 1. @1873 TM9457 1. @1874 TM9458 1. @1875 TM9459 1. @1876 TM9460 1. @1877 TM9461 1. @1878 TM9462 1. @1879 TM9463 1. @1880 TM9464 1. @1881 TM9465 1. @1882 TM9466 1. @1883 TM9467 1. @1884 TM9468 1. @1885 TM9469 1. @1886 TM9470 1. @1887 TM9471 1. @1888 TM9472 1. @1889 TM9473 1. @1890 TM9474 1. @1891 TM9475 1. @1892 TM9476 1. @1893 TM9477 1. @1894 TM9478 1. @1895 TM9479 1. @1896 TM9480 1. @1897 TM9481 1. @1898 TM9482 1. @1899 TM9483 1. @1900 TM9484 1. @1901 TM9485 1. @1902 TM9486 1. @1903 TM9487 1. @1904 TM9488 1. @1905 TM9489 1. @1906 TM9490 1. @1907 TM9491 1. @1908 TM9492 1. @1909 TM9493 1. @1910 TM9494 1. @1911 TM9495 1. @1912 TM9496 1. @1913 TM9497 1. @1914 TM9498 1. @1915 TM9499 1. @1916 TM9500 1. @1917 TM9501 1. @1918 TM9502 1. @1919 TM9503 1. @1920 TM9504 1. @1921 TM9505 1. @1922 TM9506 1. @1923 TM9507 1. @1924 TM9508 1. @1925 TM9509 1. @1926 TM9510 1. @1927 TM9511 1. @1928 TM9512 1. @1929 TM9513 1. @1930 TM9514 1. @1931 TM9515 1. @1932 TM9516 1. @1933 TM9517 1. @1934 TM9518 1. @1935 TM9519 1. @1936 TM9520 1. @1937 TM9521 1. @1938 TM9522 1. @1939 TM9523 1. @1940 TM9524 1. @1941 TM9525 1. @1942 TM9526 1. @1943 TM9527 1. @1944 TM9528 3. @1947 TM9529 3. @1950 TM9530 3. @1953 TM9531 3. @1956 TM9532 3. @1959 TM9533 3. @1962 TM9534 3. @1965 TM9535 1. @1966 TM9536 1. @1967 TM9537 1. @1968 TM9538 1. @1969 TM9539 1. @1970 TM9540 1. @1971 TM9541 1. @1972 TM9542 1. @1973 TM9543 1. @1974 TM9544 1. @1975 TM9545 1. @1976 TM9546 1. @1977 TM9547 1. @1978 TM9548 1. @1979 TM9549 1. @1980 TM9550 1. @1981 TM9551 1. @1982 TM9552 1. @1983 TM9553 1. @1984 TM9554 1. @1985 TM9555 1. @1986 TM9556 1. @1987 TM9557 1. @1988 TM9558 1. @1989 TM9559 1. @1990 TM9560 1. @1991 TM9561 1. @1992 TM9562 1. @1993 TM9563 1. @1994 TM9564 1. @1995 TM9565 1. @1996 TM9566 1. @1997 TM9567 1. @1998 TM9568 1. @1999 TM9569 1. @2000 TM9570 1. @2001 TM9571 1. @2002 TM9572 1. @2003 TM9573 1. @2004 TM9574 1. @2005 TM9575 1. @2006 TM9576 1. @2007 TM9577 1. @2008 TM9578 1. @2009 TM9579 1. @2010 TM9580 1. @2011 TM9581 1. @2012 TM9582 1. @2013 TM9583 1. @2014 TM9584 1. @2015 TM9585 1. @2016 TM9586 1. @2017 TM9587 1. @2018 TM9588 1. @2019 TM9589 1. @2020 TM9590 1. @2021 TM9591 1. @2022 TM9592 1. @2023 TM9593 1. @2024 TM9594 1. @2025 TM9595 1. @2026 TM9596 1. @2027 TM9597 1. @2028 TM9598 1. @2029 TM9599 1. @2030 TM9600 1. @2031 TM9601 1. @2032 TM9602 1. @2033 TM9603 1. @2034 TM9604 1. @2035 TM9605 3. @2038 TM9606 3. @2041 TM9607 3. @2044 TM9608 3. @2047 TM9609 3. @2050 TM9610 3. @2053 TM9611 3. @2056 TM9612 1. @2057 TM9613 1. @2058 TM9614 1. @2059 TM9615 1. @2060 TM9616 1. @2061 TM9617 1. @2062 TM9618 1. @2063 TM9619 1. @2064 TM9620 1. @2065 TM9621 1. @2066 TM9622 1. @2067 TM9623 1. @2068 TM9624 1. @2069 TM9625 1. @2070 TM9626 1. @2071 TM9627 1. @2072 TM9628 1. @2073 TM9629 1. @2074 TM9630 1. @2075 TM9631 1. @2076 TM9632 1. @2077 TM9633 1. @2078 TM9634 1. @2079 TM9635 1. @2080 TM9636 1. @2081 TM9637 1. @2082 TM9638 1. @2083 TM9639 1. @2084 TM9640 1. @2085 TM9641 1. @2086 TM9642 1. @2087 TM9643 1. @2088 TM9644 1. @2089 TM9645 1. @2090 TM9646 1. @2091 TM9647 1. @2092 TM9648 1. @2093 TM9649 1. @2094 TM9650 1. @2095 TM9651 1. @2096 TM9652 1. @2097 TM9653 1. @2098 TM9654 1. @2099 TM9655 1. @2100 TM9656 1. @2101 TM9657 1. @2102 TM9658 1. @2103 TM9659 1. @2104 TM9660 1. @2105 TM9661 1. @2106 TM9662 1. @2107 TM9663 1. @2108 TM9664 1. @2109 TM9665 1. @2110 TM9666 1. @2111 TM9667 1. @2112 TM9668 2. @2114 TM9669 2. @2116 TM9670 2. @2118 TM9671 2. @2120 TM9672 2. @2122 TM9673 2. @2124 TM9674 2. @2126 TM9675 2. @2128 TM9676 2. @2130 TM9677 2. @2132 TM9678 2. @2134 TM9679 2. @2136 TM9680 2. @2138 TM9681 2. @2140 TM9682 2. @2142 TM9683 2. @2144 TM9684 2. @2146 TM9685 2. @2148 TM9686 2. @2150 TM9687 2. @2152 TM9688 2. @2154 TM9689 1. @2155 TM9690 1. @2156 TM9691 1. @2157 TM9692 1. @2158 TM9693 1. @2159 TM9694 1. @2160 TM9695 1. @2161 TM9696 1. @2162 TM9697 3. @2165 TM9698 3. @2168 TM9699 3. @2171 TM9700 3. @2174 TM9701 3. @2177 TM9702 3. @2180 TM9703 3. @2183 TM9704 2. @2185 TM9705 2. @2187 TM9706 2. @2189 TM9707 2. @2191 TM9708 2. @2193 TM9709 2. @2195 TM9710 2. @2197 TM9711 1. @2198 TM9712 1. @2199 TM9713 1. @2200 TM9714 1. @2201 TM9715 1. @2202 TM9716 1. @2203 TM9717 1. @2204 TM9718 1. @2205 TM9719 1. @2206 TM9720 1. @2207 TM9721 1. @2208 TM9722 1. @2209 TM9723 1. @2210 TM9724 1. @2211 TM9725 1. @2212 TM9726 1. @2213 TM9727 1. @2214 TM9728 1. @2215 TM9729 1. @2216 TM9730 1. @2217 TM9731 1. @2218 IM9416 1. @2219 IM9417 1. @2220 IM9418 1. @2221 IM9419 1. @2222 IM9420 1. @2223 IM9421 1. @2224 IM9422 1. @2225 IM9423 1. @2226 IM9424 1. @2227 IM9425 1. @2228 IM9426 1. @2229 IM9427 1. @2230 IM9428 1. @2231 IM9429 1. @2232 IM9430 1. @2233 IM9431 1. @2234 IM9432 1. @2235 IM9433 1. @2236 IM9434 1. @2237 IM9435 1. @2238 IM9436 1. @2239 IM9451 1. @2240 IM9452 1. @2241 IM9453 1. @2242 IM9454 1. @2243 IM9455 1. @2244 IM9456 1. @2245 IM9457 1. @2246 IM9458 1. @2247 IM9459 1. @2248 IM9460 1. @2249 IM9461 1. @2250 IM9462 1. @2251 IM9463 1. @2252 IM9464 1. @2253 IM9465 1. @2254 IM9466 1. @2255 IM9467 1. @2256 IM9468 1. @2257 IM9469 1. @2258 IM9470 1. @2259 IM9471 1. @2260 IM9472 1. @2261 IM9473 1. @2262 IM9474 1. @2263 IM9475 1. @2264 IM9476 1. @2265 IM9477 1. @2266 IM9478 1. @2267 IM9479 1. @2268 IM9480 1. @2269 IM9481 1. @2270 IM9482 1. @2271 IM9483 1. @2272 IM9484 1. @2273 IM9485 1. @2274 IM9486 1. @2275 IM9487 1. @2276 IM9488 1. @2277 IM9489 1. @2278 IM9490 1. @2279 IM9491 1. @2280 IM9492 1. @2281 IM9493 1. @2282 IM9494 1. @2283 IM9495 1. @2284 IM9496 1. @2285 IM9497 1. @2286 IM9498 1. @2287 IM9499 1. @2288 IM9500 1. @2289 IM9501 1. @2290 IM9502 1. @2291 IM9503 1. @2292 IM9504 1. @2293 IM9505 1. @2294 IM9506 1. @2295 IM9507 1. @2296 IM9508 1. @2297 IM9509 1. @2298 IM9510 1. @2299 IM9511 1. @2300 IM9512 1. @2301 IM9513 1. @2302 IM9521 1. @2303 IM9522 1. @2304 IM9523 1. @2305 IM9524 1. @2306 IM9525 1. @2307 IM9526 1. @2308 IM9527 1. @2309 IM9535 1. @2310 IM9536 1. @2311 IM9537 1. @2312 IM9538 1. @2313 IM9539 1. @2314 IM9540 1. @2315 IM9541 1. @2316 IM9542 1. @2317 IM9543 1. @2318 IM9544 1. @2319 IM9545 1. @2320 IM9546 1. @2321 IM9547 1. @2322 IM9548 1. @2323 IM9549 1. @2324 IM9550 1. @2325 IM9551 1. @2326 IM9552 1. @2327 IM9553 1. @2328 IM9554 1. @2329 IM9555 1. @2330 IM9556 1. @2331 IM9557 1. @2332 IM9558 1. @2333 IM9559 1. @2334 IM9560 1. @2335 IM9561 1. @2336 IM9562 1. @2337 IM9563 1. @2338 IM9564 1. @2339 IM9565 1. @2340 IM9566 1. @2341 IM9567 1. @2342 IM9568 1. @2343 IM9569 1. @2344 IM9570 1. @2345 IM9571 1. @2346 IM9572 1. @2347 IM9573 1. @2348 IM9574 1. @2349 IM9575 1. @2350 IM9576 1. @2351 IM9577 1. @2352 IM9578 1. @2353 IM9579 1. @2354 IM9580 1. @2355 IM9581 1. @2356 IM9582 1. @2357 IM9583 1. @2358 IM9584 1. @2359 IM9585 1. @2360 IM9586 1. @2361 IM9587 1. @2362 IM9588 1. @2363 IM9589 1. @2364 IM9590 1. @2365 IM9591 1. @2366 IM9592 1. @2367 IM9593 1. @2368 IM9594 1. @2369 IM9595 1. @2370 IM9596 1. @2371 IM9597 1. @2372 IM9598 1. @2373 IM9599 1. @2374 IM9600 1. @2375 IM9601 1. @2376 IM9602 1. @2377 IM9603 1. @2378 IM9604 1. @2379 IM9612 1. @2380 IM9613 1. @2381 IM9614 1. @2382 IM9615 1. @2383 IM9616 1. @2384 IM9617 1. @2385 IM9618 1. @2386 IM9619 1. @2387 IM9620 1. @2388 IM9621 1. @2389 IM9622 1. @2390 IM9623 1. @2391 IM9624 1. @2392 IM9625 1. @2393 IM9626 1. @2394 IM9627 1. @2395 IM9628 1. @2396 IM9629 1. @2397 IM9630 1. @2398 IM9631 1. @2399 IM9632 1. @2400 IM9633 1. @2401 IM9634 1. @2402 IM9635 1. @2403 IM9636 1. @2404 IM9637 1. @2405 IM9638 1. @2406 IM9639 1. @2407 IM9640 1. @2408 IM9641 1. @2409 IM9642 1. @2410 IM9643 1. @2411 IM9644 1. @2412 IM9645 1. @2413 IM9646 1. @2414 IM9647 1. @2415 IM9648 1. @2416 IM9649 1. @2417 IM9650 1. @2418 IM9651 1. @2419 IM9652 1. @2420 IM9653 1. @2421 IM9654 1. @2422 IM9655 1. @2423 IM9656 1. @2424 IM9657 1. @2425 IM9658 1. @2426 IM9659 1. @2427 IM9660 1. @2428 IM9689 1. @2429 IM9690 1. @2430 IM9691 1. @2431 IM9692 1. @2432 IM9693 1. @2433 IM9694 1. @2434 IM9695 1. @2435 IM9711 1. @2436 IM9712 1. @2437 IM9713 1. @2438 IM9714 1. @2439 IM9715 1. @2440 IM9716 1. @2441 IM9717 1. @2442 IM9725 1. @2443 IM9726 1. @2444 IM9727 1. @2445 IM9728 1. @2446 IM9729 1. @2447 IM9730 1. @2448 IM9731 1. @2449 TM9800 1. @2450 TM9801 3. @2453 TM9802 3. @2456 TM9803 3. @2459 TM9804 3. @2462 TM9805 3. @2465 TM9806 3. @2468 TM9807 3. @2471 TM9808 2. @2473 TM9809 2. @2475 TM9810 2. @2477 TM9811 2. @2479 TM9812 2. @2481 TM9813 2. @2483 TM9814 2. @2485 TM9815 1. @2486 TM9816 1. @2487 TM9817 1. @2488 TM9818 1. @2489 TM9819 1. @2490 TM9820 1. @2491 TM9821 1. @2492 TM9822 2. @2494 TM9823 2. @2496 TM9824 2. @2498 TM9825 2. @2500 TM9826 2. @2502 TM9827 2. @2504 TM9828 2. @2506 TM9829 1. @2507 TM9830 1. @2508 TM9831 1. @2509 TM9832 1. @2510 TM9833 1. @2511 TM9834 1. @2512 TM9835 1. @2513 TM9836 3. @2516 TM9837 3. @2519 TM9838 3. @2522 TM9839 3. @2525 TM9840 3. @2528 TM9841 3. @2531 TM9842 3. @2534 TM9843 3. @2537 TM9844 3. @2540 TM9845 3. @2543 TM9846 3. @2546 TM9847 3. @2549 TM9848 3. @2552 TM9849 3. @2555 TM9850 3. @2558 TM9851 3. @2561 TM9852 3. @2564 TM9853 3. @2567 TM9854 3. @2570 TM9855 3. @2573 TM9856 3. @2576 TM9857 3. @2579 TM9858 3. @2582 TM9859 3. @2585 TM9860 3. @2588 TM9861 3. @2591 TM9862 3. @2594 TM9863 3. @2597 TM9864 2. @2599 TM9865 2. @2601 TM9866 2. @2603 TM9867 2. @2605 TM9868 2. @2607 TM9869 2. @2609 TM9870 2. @2611 TM9871 2. @2613 TM9872 2. @2615 TM9873 2. @2617 TM9874 2. @2619 TM9875 2. @2621 TM9876 2. @2623 TM9877 2. @2625 TM9878 2. @2627 TM9879 2. @2629 TM9880 2. @2631 TM9881 2. @2633 TM9882 2. @2635 TM9883 2. @2637 TM9884 2. @2639 TM9885 2. @2641 TM9886 2. @2643 TM9887 2. @2645 TM9888 2. @2647 TM9889 2. @2649 TM9890 2. @2651 TM9891 2. @2653 TM9892 1. @2654 TM9893 1. @2655 TM9894 1. @2656 TM9895 1. @2657 TM9896 1. @2658 TM9897 1. @2659 TM9898 1. @2660 TM9899 2. @2662 TM9900 2. @2664 TM9901 2. @2666 TM9902 2. @2668 TM9903 2. @2670 TM9904 2. @2672 TM9905 2. @2674 TM9906 1. @2675 TM9907 1. @2676 TM9908 1. @2677 TM9909 1. @2678 TM9910 1. @2679 TM9911 1. @2680 TM9913 1. @2681 TM9914 1. @2682 TM9915 1. @2683 TM9916 1. @2684 TM9917 1. @2685 IM9822 1. @2686 IM9823 1. @2687 IM9824 1. @2688 IM9825 1. @2689 IM9826 1. @2690 IM9827 1. @2691 IM9828 1. @2692 IM9829 1. @2693 IM9830 1. @2694 IM9831 1. @2695 IM9832 1. @2696 IM9833 1. @2697 IM9834 1. @2698 IM9835 1. @2699 IM9836 1. @2700 IM9837 1. @2701 IM9838 1. @2702 IM9839 1. @2703 IM9840 1. @2704 IM9841 1. @2705 IM9842 1. @2706 IM9843 1. @2707 IM9844 1. @2708 IM9845 1. @2709 IM9846 1. @2710 IM9847 1. @2711 IM9848 1. @2712 IM9849 1. @2713 IM9850 1. @2714 IM9851 1. @2715 IM9852 1. @2716 IM9853 1. @2717 IM9854 1. @2718 IM9855 1. @2719 IM9856 1. @2720 IM9864 1. @2721 IM9865 1. @2722 IM9866 1. @2723 IM9867 1. @2724 IM9868 1. @2725 IM9869 1. @2726 IM9870 1. @2727 IM9871 1. @2728 IM9872 1. @2729 IM9873 1. @2730 IM9874 1. @2731 IM9875 1. @2732 IM9876 1. @2733 IM9877 1. @2734 IM9878 1. @2735 IM9879 1. @2736 IM9880 1. @2737 IM9881 1. @2738 IM9882 1. @2739 IM9883 1. @2740 IM9884 1. @2741 IM9885 1. @2742 IM9886 1. @2743 IM9887 1. @2744 IM9888 1. @2745 IM9889 1. @2746 IM9890 1. @2747 IM9891 1. @2748 IM9892 1. @2749 IM9893 1. @2750 IM9894 1. @2751 IM9895 1. @2752 IM9896 1. @2753 IM9897 1. @2754 IM9898 1. @2755 IM9899 1. @2756 IM9900 1. @2757 IM9901 1. @2758 IM9902 1. @2759 IM9903 1. @2760 IM9904 1. @2761 IM9905 1. @2762 IM9914 1. @2763 IM9915 1. @2764 IM9916 1. @2765 IM9917 1. @2769 TM7000 1. @2770 TM7001 1. @2771 TM7002 3. @2774 TM7003 3. @2777 TM7004 3. @2780 TM7005 3. @2783 TM7006 3. @2786 TM7007 3. @2789 TM7008 3. @2792 TM7009 2. @2794 TM7010 2. @2796 TM7011 2. @2798 TM7012 2. @2800 TM7013 2. @2802 TM7014 2. @2804 TM7015 2. @2806 TM7016 2. @2808 TM7017 2. @2810 TM7018 2. @2812 TM7019 2. @2814 TM7020 2. @2816 TM7021 2. @2818 TM7022 2. @2820 TM7023 1. @2821 TM7024 1. @2822 TM7025 1. @2823 TM7026 1. @2824 TM7027 1. @2825 TM7028 1. @2826 TM7029 1. @2827 TM7030 2. @2829 TM7031 2. @2831 TM7032 2. @2833 TM7033 2. @2835 TM7034 2. @2837 TM7035 2. @2839 TM7036 2. @2841 TM7037 2. @2843 TM7038 2. @2845 TM7039 2. @2847 TM7040 2. @2849 TM7041 2. @2851 TM7042 2. @2853 TM7043 2. @2855 TM7044 1. @2856 TM7045 1. @2857 TM7046 1. @2858 TM7047 1. @2859 TM7048 1. @2860 TM7049 1. @2861 TM7050 1. @2862 TM7051 2. @2864 TM7052 2. @2866 TM7053 2. @2868 TM7054 2. @2870 TM7055 2. @2872 TM7056 2. @2874 TM7057 2. @2876 TM7058 2. @2878 TM7059 2. @2880 TM7060 2. @2882 TM7061 2. @2884 TM7062 2. @2886 TM7063 2. @2888 TM7064 2. @2890 TM7065 2. @2892 TM7066 2. @2894 TM7067 2. @2896 TM7068 2. @2898 TM7069 2. @2900 TM7070 2. @2902 TM7071 2. @2904 TM7072 1. @2905 TM7073 1. @2906 TM7074 1. @2907 TM7075 1. @2908 TM7076 1. @2909 TM7077 1. @2910 TM7078 1. @2911 TM7079 2. @2913 TM7080 2. @2915 TM7081 2. @2917 TM7082 2. @2919 TM7083 2. @2921 TM7084 2. @2923 TM7085 2. @2925 TM7086 2. @2927 TM7087 2. @2929 TM7088 2. @2931 TM7089 2. @2933 TM7090 2. @2935 TM7091 2. @2937 TM7092 2. @2939 TM7093 2. @2941 TM7094 2. @2943 TM7095 2. @2945 TM7096 2. @2947 TM7097 2. @2949 TM7098 2. @2951 TM7099 2. @2953 TM7100 2. @2955 TM7101 2. @2957 TM7102 2. @2959 TM7103 2. @2961 TM7104 2. @2963 TM7105 2. @2965 TM7106 2. @2967 TM7107 2. @2969 TM7108 2. @2971 TM7109 2. @2973 TM7110 2. @2975 TM7111 2. @2977 TM7112 2. @2979 TM7113 2. @2981 TM7114 3. @2984 TM7115 3. @2987 TM7116 3. @2990 TM7117 3. @2993 TM7118 3. @2996 TM7119 3. @2999 TM7120 3. @3002 TM7121 2. @3004 TM7122 2. @3006 TM7123 2. @3008 TM7124 2. @3010 TM7125 2. @3012 TM7126 2. @3014 TM7127 2. @3016 TM7128 2. @3018 TM7129 2. @3020 TM7130 2. @3022 TM7131 2. @3024 TM7132 2. @3026 TM7133 2. @3028 TM7134 2. @3030 TM7135 2. @3032 TM7136 2. @3034 TM7137 2. @3036 TM7138 2. @3038 TM7139 2. @3040 TM7140 2. @3042 TM7141 2. @3044 TM7142 2. @3046 TM7143 2. @3048 TM7144 2. @3050 TM7145 2. @3052 TM7146 2. @3054 TM7147 2. @3056 TM7148 2. @3058 TM7149 2. @3060 TM7150 2. @3062 TM7151 2. @3064 TM7152 2. @3066 TM7153 2. @3068 TM7154 2. @3070 TM7155 2. @3072 TM7156 1. @3073 TM7157 1. @3074 TM7158 1. @3075 TM7159 1. @3076 TM7160 1. @3077 TM7161 1. @3078 TM7162 1. @3079 TM7163 1. @3080 TM7164 1. @3081 TM7165 1. @3082 TM7166 1. @3083 TM7167 1. @3084 TM7168 1. @3085 TM7169 1. @3086 TM7170 2. @3088 TM7171 2. @3090 TM7172 2. @3092 TM7173 2. @3094 TM7174 2. @3096 TM7175 2. @3098 TM7176 2. @3100 TM7177 2. @3102 TM7178 2. @3104 TM7179 2. @3106 TM7180 2. @3108 TM7181 2. @3110 TM7182 2. @3112 TM7183 2. @3114 TM7184 2. @3116 TM7185 2. @3118 TM7186 2. @3120 TM7187 2. @3122 TM7188 2. @3124 TM7189 2. @3126 TM7190 2. @3128 TM7191 1. @3129 TM7192 1. @3130 TM7193 1. @3131 TM7194 1. @3132 TM7195 1. @3133 TM7196 1. @3134 TM7197 1. @3135 TM7198 2. @3137 TM7199 2. @3139 TM7200 2. @3141 TM7201 2. @3143 TM7202 2. @3145 TM7203 2. @3147 TM7204 2. @3149 TM7205 2. @3151 TM7206 2. @3153 TM7207 2. @3155 TM7208 2. @3157 TM7209 2. @3159 TM7210 2. @3161 TM7211 2. @3163 TM7212 1. @3164 TM7213 1. @3165 TM7214 1. @3166 TM7215 1. @3167 TM7216 1. @3168 TM7217 1. @3169 TM7218 1. @3170 TM7219 2. @3172 TM7220 2. @3174 TM7221 2. @3176 TM7222 2. @3178 TM7223 2. @3180 TM7224 2. @3182 TM7225 2. @3184 TM7226 3. @3187 TM7227 3. @3190 TM7228 3. @3193 TM7229 3. @3196 TM7230 3. @3199 TM7231 3. @3202 TM7232 3. @3205 TM7233 2. @3207 TM7234 2. @3209 TM7235 2. @3211 TM7236 2. @3213 TM7237 2. @3215 TM7238 2. @3217 TM7239 2. @3219 TM7240 2. @3221 TM7241 2. @3223 TM7242 2. @3225 TM7243 2. @3227 TM7244 2. @3229 TM7245 2. @3231 TM7246 2. @3233 TM7247 2. @3235 TM7248 2. @3237 TM7249 2. @3239 TM7250 2. @3241 TM7251 2. @3243 TM7252 2. @3245 TM7253 2. @3247 TM7254 2. @3249 TM7255 2. @3251 TM7256 2. @3253 TM7257 2. @3255 TM7258 2. @3257 TM7259 2. @3259 TM7260 2. @3261 TM7261 1. @3262 TM7262 1. @3263 TM7263 1. @3264 TM7264 1. @3265 TM7265 1. @3266 TM7266 1. @3267 TM7267 1. @3268 TM7268 2. @3270 TM7269 2. @3272 TM7270 2. @3274 TM7271 2. @3276 TM7272 2. @3278 TM7273 2. @3280 TM7274 2. @3282 TM7275 2. @3284 TM7276 2. @3286 TM7277 2. @3288 TM7278 2. @3290 TM7279 2. @3292 TM7280 2. @3294 TM7281 2. @3296 TM7282 1. @3297 TM7283 1. @3298 TM7284 1. @3299 TM7285 1. @3300 TM7286 1. @3301 TM7287 1. @3302 TM7288 1. @3303 TM7289 2. @3305 TM7290 2. @3307 TM7291 2. @3309 TM7292 2. @3311 TM7293 2. @3313 TM7294 2. @3315 TM7295 2. @3317 TM7296 2. @3319 TM7297 2. @3321 TM7298 2. @3323 TM7299 2. @3325 TM7300 2. @3327 TM7301 2. @3329 TM7302 2. @3331 TM7303 2. @3333 TM7304 2. @3335 TM7305 2. @3337 TM7306 2. @3339 TM7307 2. @3341 TM7308 2. @3343 TM7309 2. @3345 TM7310 1. @3346 TM7311 3. @3349 TM7312 3. @3352 TM7313 3. @3355 TM7314 3. @3358 TM7315 3. @3361 TM7316 3. @3364 TM7317 3. @3367 TM7318 2. @3369 TM7319 2. @3371 TM7320 2. @3373 TM7321 2. @3375 TM7322 2. @3377 TM7323 2. @3379 TM7324 2. @3381 TM7325 2. @3383 TM7326 2. @3385 TM7327 2. @3387 TM7328 2. @3389 TM7329 2. @3391 TM7330 2. @3393 TM7331 2. @3395 TM7332 2. @3397 TM7333 2. @3399 TM7334 2. @3401 TM7335 2. @3403 TM7336 2. @3405 TM7337 2. @3407 TM7338 2. @3409 TM7339 2. @3411 TM7340 2. @3413 TM7341 2. @3415 TM7342 2. @3417 TM7343 2. @3419 TM7344 2. @3421 TM7345 2. @3423 TM7346 2. @3425 TM7347 2. @3427 TM7348 2. @3429 TM7349 2. @3431 TM7350 2. @3433 TM7351 2. @3435 TM7352 2. @3437 TM7353 2. @3439 TM7354 2. @3441 TM7355 2. @3443 TM7356 2. @3445 TM7357 2. @3447 TM7358 2. @3449 TM7359 2. @3451 TM7360 2. @3453 TM7361 2. @3455 TM7362 2. @3457 TM7363 2. @3459 TM7364 2. @3461 TM7365 2. @3463 TM7366 2. @3465 TM7367 2. @3467 TM7368 2. @3469 TM7369 2. @3471 TM7370 2. @3473 TM7371 2. @3475 TM7372 2. @3477 TM7373 2. @3479 TM7374 3. @3482 TM7375 3. @3485 TM7376 3. @3488 TM7377 3. @3491 TM7378 3. @3494 TM7379 3. @3497 TM7380 3. @3500 TM7381 1. @3501 TM7382 1. @3502 TM7383 1. @3503 TM7384 1. @3504 TM7385 1. @3505 TM7386 1. @3506 TM7387 1. @3507 TM7388 1. @3508 TM7389 1. @3509 TM7390 1. @3510 TM7391 1. @3511 TM7392 1. @3512 TM7393 1. @3513 TM7394 1. @3514 TM7395 2. @3516 TM7396 2. @3518 TM7397 2. @3520 TM7398 2. @3522 TM7399 2. @3524 TM7400 2. @3526 TM7401 2. @3528 TM7402 2. @3530 TM7403 2. @3532 TM7404 2. @3534 TM7405 2. @3536 TM7406 2. @3538 TM7407 2. @3540 TM7408 2. @3542 TM7409 2. @3544 TM7410 2. @3546 TM7411 2. @3548 TM7412 2. @3550 TM7413 2. @3552 TM7414 2. @3554 TM7415 2. @3556 TM7416 2. @3558 TM7417 2. @3560 TM7418 2. @3562 TM7419 2. @3564 TM7420 2. @3566 TM7421 2. @3568 TM7422 2. @3570 TM7423 2. @3572 TM7424 2. @3574 TM7425 2. @3576 TM7426 2. @3578 TM7427 2. @3580 TM7428 2. @3582 TM7429 2. @3584 TM7430 2. @3586 TM7431 2. @3588 TM7432 2. @3590 TM7433 2. @3592 TM7434 2. @3594 TM7435 2. @3596 TM7436 2. @3598 TM7437 1. @3599 TM7438 1. @3600 TM7439 1. @3601 TM7440 1. @3602 TM7441 1. @3603 TM7442 1. @3604 TM7443 1. @3605 TM7444 2. @3607 TM7445 2. @3609 TM7446 2. @3611 TM7447 2. @3613 TM7448 2. @3615 TM7449 2. @3617 TM7450 2. @3619 TM7451 2. @3621 TM7452 2. @3623 TM7453 2. @3625 TM7454 2. @3627 TM7455 2. @3629 TM7456 2. @3631 TM7457 2. @3633 TM7458 2. @3635 TM7459 2. @3637 TM7460 2. @3639 TM7461 2. @3641 TM7462 2. @3643 TM7463 2. @3645 TM7464 2. @3647 TM7465 2. @3649 TM7466 2. @3651 TM7467 2. @3653 TM7468 2. @3655 TM7469 2. @3657 TM7470 2. @3659 TM7471 2. @3661 TM7472 3. @3664 TM7473 3. @3667 TM7474 3. @3670 TM7475 3. @3673 TM7476 3. @3676 TM7477 3. @3679 TM7478 3. @3682 TM7479 2. @3684 TM7480 2. @3686 TM7481 2. @3688 TM7482 2. @3690 TM7483 2. @3692 TM7484 2. @3694 TM7485 2. @3696 TM7486 1. @3697 TM7487 1. @3698 TM7488 1. @3699 TM7489 1. @3700 TM7490 1. @3701 TM7491 1. @3702 TM7492 1. @3703 TM7493 1. @3704 TM7494 1. @3705 TM7495 1. @3706 TM7496 1. @3707 TM7497 1. @3708 TM7498 1. @3709 TM7499 1. @3710 TM7500 1. @3711 TM7501 1. @3712 TM7502 1. @3713 TM7503 1. @3714 TM7504 1. @3715 TM7505 1. @3716 TM7506 1. @3717 TM7507 1. @3718 TM7508 1. @3719 TM7509 1. @3720 TM7510 1. @3721 TM7511 1. @3722 TM7512 1. @3723 TM7513 1. @3724 TM7514 1. @3725 TM7515 1. @3726 TM7516 1. @3727 TM7517 1. @3728 TM7518 1. @3729 TM7519 1. @3730 TM7520 1. @3731 TM7521 1. @3732 TM7522 1. @3733 TM7523 1. @3734 TM7524 1. @3735 TM7525 1. @3736 TM7526 1. @3737 TM7527 1. @3738 TM7528 1. @3739 TM7529 1. @3740 TM7530 1. @3741 TM7531 1. @3742 TM7532 1. @3743 TM7533 1. @3744 TM7534 1. @3745 TM7535 1. @3746 TM7536 1. @3747 TM7537 1. @3748 TM7538 1. @3749 TM7539 1. @3750 TM7540 1. @3751 TM7541 1. @3752 TM7542 1. @3753 TM7543 1. @3754 TM7544 1. @3755 TM7545 1. @3756 TM7546 1. @3757 TM7547 1. @3758 TM7548 1. @3759 TM7549 2. @3761 TM7550 2. @3763 TM7551 2. @3765 TM7552 2. @3767 TM7553 2. @3769 TM7554 2. @3771 TM7555 2. @3773 TM7556 2. @3775 TM7557 2. @3777 TM7558 2. @3779 TM7559 2. @3781 TM7560 2. @3783 TM7561 2. @3785 TM7562 2. @3787 TM7563 2. @3789 TM7564 2. @3791 TM7565 2. @3793 TM7566 2. @3795 TM7567 2. @3797 TM7568 2. @3799 TM7569 2. @3801 TM7570 2. @3803 TM7571 2. @3805 TM7572 2. @3807 TM7573 2. @3809 TM7574 2. @3811 TM7575 2. @3813 TM7576 2. @3815 TM7577 2. @3817 TM7578 2. @3819 TM7579 2. @3821 TM7580 2. @3823 TM7581 2. @3825 TM7582 2. @3827 TM7583 2. @3829 TM7584 2. @3831 TM7585 2. @3833 TM7586 2. @3835 TM7587 2. @3837 TM7588 2. @3839 TM7589 2. @3841 TM7590 2. @3843 TM7591 2. @3845 TM7592 2. @3847 TM7593 2. @3849 TM7594 2. @3851 TM7595 2. @3853 TM7596 2. @3855 TM7597 2. @3857 TM7598 1. @3858 TM7599 3. @3861 TM7600 3. @3864 TM7601 3. @3867 TM7602 3. @3870 TM7603 3. @3873 TM7604 3. @3876 TM7605 3. @3879 TM7606 2. @3881 TM7607 2. @3883 TM7608 2. @3885 TM7609 2. @3887 TM7610 2. @3889 TM7611 2. @3891 TM7612 2. @3893 TM7613 2. @3895 TM7614 2. @3897 TM7615 2. @3899 TM7616 2. @3901 TM7617 2. @3903 TM7618 2. @3905 TM7619 2. @3907 TM7620 2. @3909 TM7621 2. @3911 TM7622 2. @3913 TM7623 2. @3915 TM7624 2. @3917 TM7625 2. @3919 TM7626 2. @3921 TM7627 2. @3923 TM7628 2. @3925 TM7629 2. @3927 TM7630 2. @3929 TM7631 2. @3931 TM7632 2. @3933 TM7633 2. @3935 TM7634 2. @3937 TM7635 2. @3939 TM7636 2. @3941 TM7637 2. @3943 TM7638 2. @3945 TM7639 2. @3947 TM7640 2. @3949 TM7641 2. @3951 TM7642 2. @3953 TM7643 2. @3955 TM7644 2. @3957 TM7645 2. @3959 TM7646 2. @3961 TM7647 2. @3963 TM7648 2. @3965 TM7649 2. @3967 TM7650 2. @3969 TM7651 2. @3971 TM7652 2. @3973 TM7653 2. @3975 TM7654 2. @3977 TM7655 2. @3979 TM7656 2. @3981 TM7657 2. @3983 TM7658 2. @3985 TM7659 2. @3987 TM7660 2. @3989 TM7661 2. @3991 TM7662 3. @3994 TM7663 3. @3997 TM7664 3. @4000 TM7665 3. @4003 TM7666 3. @4006 TM7667 3. @4009 TM7668 3. @4012 TM7669 2. @4014 TM7670 2. @4016 TM7671 2. @4018 TM7672 2. @4020 TM7673 2. @4022 TM7674 2. @4024 TM7675 2. @4026 TM7676 2. @4028 TM7677 2. @4030 TM7678 2. @4032 TM7679 2. @4034 TM7680 2. @4036 TM7681 2. @4038 TM7682 2. @4040 TM7683 2. @4042 TM7684 2. @4044 TM7685 2. @4046 TM7686 2. @4048 TM7687 2. @4050 TM7688 2. @4052 TM7689 2. @4054 TM7690 2. @4056 TM7691 2. @4058 TM7692 2. @4060 TM7693 2. @4062 TM7694 2. @4064 TM7695 2. @4066 TM7696 2. @4068 TM7697 2. @4070 TM7698 2. @4072 TM7699 2. @4074 TM7700 2. @4076 TM7701 2. @4078 TM7702 2. @4080 TM7703 2. @4082 TM7704 2. @4084 TM7705 2. @4086 TM7706 2. @4088 TM7707 2. @4090 TM7708 2. @4092 TM7709 2. @4094 TM7710 2. @4096 TM7711 2. @4098 TM7712 2. @4100 TM7713 2. @4102 TM7714 2. @4104 TM7715 2. @4106 TM7716 2. @4108 TM7717 2. @4110 TM7718 1. @4111 TM7719 1. @4112 TM7720 1. @4113 TM7721 1. @4114 TM7722 1. @4115 TM7723 1. @4116 TM7724 1. @4117 TM7725 2. @4119 TM7726 2. @4121 TM7727 2. @4123 TM7728 2. @4125 TM7729 2. @4127 TM7730 2. @4129 TM7731 2. @4131 TM7732 2. @4133 TM7733 2. @4135 TM7734 2. @4137 TM7735 2. @4139 TM7736 2. @4141 TM7737 2. @4143 TM7738 2. @4145 TM7739 2. @4147 TM7740 2. @4149 TM7741 2. @4151 TM7742 2. @4153 TM7743 2. @4155 TM7744 2. @4157 TM7745 2. @4159 TM7746 2. @4161 TM7747 2. @4163 TM7748 2. @4165 TM7749 2. @4167 TM7750 2. @4169 TM7751 2. @4171 TM7752 2. @4173 TM7753 3. @4176 TM7754 3. @4179 TM7755 3. @4182 TM7756 3. @4185 TM7757 3. @4188 TM7758 3. @4191 TM7759 3. @4194 TM7760 2. @4196 TM7761 2. @4198 TM7762 2. @4200 TM7763 2. @4202 TM7764 2. @4204 TM7765 2. @4206 TM7766 2. @4208 TM7767 1. @4209 TM7768 1. @4210 TM7769 1. @4211 TM7770 1. @4212 TM7771 1. @4213 TM7772 1. @4214 TM7773 1. @4215 TM7774 1. @4216 TM7775 1. @4217 TM7776 1. @4218 TM7777 1. @4219 TM7778 1. @4220 TM7779 1. @4221 TM7780 1. @4222 TM7781 1. @4223 TM7782 1. @4224 TM7783 1. @4225 TM7784 1. @4226 TM7785 1. @4227 TM7786 1. @4228 TM7787 1. @4229 TM7788 1. @4230 TM7789 1. @4231 TM7790 1. @4232 TM7791 1. @4233 TM7792 1. @4234 TM7793 1. @4235 TM7794 1. @4236 TM7795 1. @4237 TM7796 1. @4238 TM7797 1. @4239 TM7798 1. @4240 TM7799 1. @4241 TM7800 1. @4242 TM7801 1. @4243 TM7802 1. @4244 TM7803 1. @4245 TM7804 1. @4246 TM7805 1. @4247 TM7806 1. @4248 TM7807 1. @4249 TM7808 1. @4250 TM7809 1. @4251 TM7810 1. @4252 TM7811 1. @4253 TM7812 1. @4254 TM7813 1. @4255 TM7814 1. @4256 TM7815 1. @4257 TM7816 1. @4258 TM7817 1. @4259 TM7818 1. @4260 TM7819 1. @4261 TM7820 1. @4262 TM7821 1. @4263 TM7822 1. @4264 TM7823 1. @4265 TM7824 1. @4266 TM7825 1. @4267 TM7826 1. @4268 TM7827 1. @4269 TM7828 1. @4270 TM7829 1. @4271 TM7830 1. @4272 TM7831 1. @4273 TM7832 1. @4274 TM7833 1. @4275 TM7834 1. @4276 TM7835 1. @4277 TM7836 1. @4278 TM7837 1. @4279 TM7838 1. @4280 TM7839 1. @4281 TM7840 1. @4282 TM7841 1. @4283 TM7842 1. @4284 TM7843 1. @4285 TM7844 1. @4286 TM7845 1. @4287 TM7846 1. @4288 TM7847 1. @4289 TM7848 1. @4290 TM7849 1. @4291 TM7850 1. @4292 TM7851 1. @4293 TM7852 1. @4294 TM7853 1. @4295 TM7854 1. @4296 TM7855 1. @4297 TM7856 1. @4298 TM7857 1. @4299 TM7858 2. @4301 TM7859 2. @4303 TM7860 2. @4305 TM7861 2. @4307 TM7862 2. @4309 TM7863 2. @4311 TM7864 2. @4313 TM7865 2. @4315 TM7866 2. @4317 TM7867 2. @4319 TM7868 2. @4321 TM7869 2. @4323 TM7870 2. @4325 TM7871 2. @4327 TM7872 2. @4329 TM7873 2. @4331 TM7874 2. @4333 TM7875 2. @4335 TM7876 2. @4337 TM7877 2. @4339 TM7878 2. @4341 TM7879 2. @4343 TM7880 2. @4345 TM7881 2. @4347 TM7882 2. @4349 TM7883 2. @4351 TM7884 2. @4353 TM7885 2. @4355 TM7886 2. @4357 TM7887 2. @4359 TM7888 2. @4361 TM7889 2. @4363 TM7890 2. @4365 TM7891 2. @4367 TM7892 2. @4369 TM7893 2. @4371 TM7894 2. @4373 TM7895 2. @4375 TM7896 2. @4377 TM7897 2. @4379 TM7898 2. @4381 TM7899 2. @4383 TM7900 3. @4386 TM7901 3. @4389 TM7902 3. @4392 TM7903 3. @4395 TM7904 3. @4398 TM7905 3. @4401 TM7906 3. @4404 TM7907 2. @4406 TM7908 2. @4408 TM7909 2. @4410 TM7910 2. @4412 TM7911 2. @4414 TM7912 2. @4416 TM7913 2. @4418 TM7914 2. @4420 TM7915 2. @4422 TM7916 2. @4424 TM7917 2. @4426 TM7918 2. @4428 TM7919 2. @4430 TM7920 2. @4432 TM7921 2. @4434 TM7922 2. @4436 TM7923 2. @4438 TM7924 2. @4440 TM7925 2. @4442 TM7926 2. @4444 TM7927 2. @4446 TM7928 1. @4447 TM7929 2. @4449 TM7930 2. @4451 TM7931 2. @4453 TM7932 2. @4455 TM7933 2. @4457 TM7934 2. @4459 TM7935 2. @4461 TM7936 1. @4462 TM7937 2. @4464 TM7938 2. @4466 TM7939 2. @4468 TM7940 2. @4470 TM7941 2. @4472 IMP7023 1. @4473 IMP7024 1. @4474 IMP7025 1. @4475 IMP7026 1. @4476 IMP7027 1. @4477 IMP7028 1. @4478 IMP7029 1. @4479 IMP7030 1. @4480 IMP7031 1. @4481 IMP7032 1. @4482 IMP7033 1. @4483 IMP7034 1. @4484 IMP7035 1. @4485 IMP7036 1. @4486 IMP7037 1. @4487 IMP7038 1. @4488 IMP7039 1. @4489 IMP7040 1. @4490 IMP7041 1. @4491 IMP7042 1. @4492 IMP7043 1. @4493 IMP7388 1. @4494 IMP7389 1. @4495 IMP7390 1. @4496 IMP7391 1. @4497 IMP7392 1. @4498 IMP7393 1. @4499 IMP7394 1. @4500 IMP7669 1. @4501 IMP7670 1. @4502 IMP7671 1. @4503 IMP7672 1. @4504 IMP7673 1. @4505 IMP7674 1. @4506 IMP7675 1. ; LABEL SUSEQNUM = "Sequence number of sample unit" ID = "Sample unit identifier" ROTATION = "Rotation" STATE = "FIPs state code from the MST/GRIN file" PINX = "Person index from core" ADDID = "Address ID. - This field differentiate" ITEM36B = "Control card item 36b -" INTVW = "Person's interview status" PP_MIS5 = "Monthly person's interview status" ENTRY = "Edited entry address ID" PNUM = "Edited person number" FINALWGT = "'STAGE1WT' second stage factor." RRP = "Edited relationship to reference perso" AGE = "Edited and imputed age as of last" SEX = "Sex of this person" RACE = "Race of this person" MS = "Marital status." PNSP = "Person number of spouse." PNPT = "Person number of parent." HIGRADE = "What is the highest grade or year of" GRD_CMPL = "Did he/she complete that grade" ETHNICTY = "Ethnic origin" TM8000 = "Is 'worked' (code 170) marked on the I" TM8001 = "Did ... work at all last month" TM8002 = "How many employers did ... work for" TM8004 = "How many hours per day did ... work th" TM8006 = "How many hours per day did ... work th" TM8008 = "How many days did ... work during that" TM8010 = "How many days did ... work during that" TM8048 = "During that week, at what time of day" TM8052 = "During that week, at what time of day" TM8056 = "At what time of day did ... end work" TM8060 = "At what time of day did ... end work" TM8064 = "Which of the following best describes" TM8066 = "Which of the following best describes" TM8068 = "What is the main reason ... works (fir" TM8070 = "What is the main reason ... works" TM8072 = "Refer to item 1b (TM8002). Is box 2 or" TM7990 = "Counting all locations where this" TM7992 = "Counting all locations where this" IMP8004 = "Imputation of 'TM8004'" IMP0840 = "Imputation of 'TM8008' and imputation " IMP1640 = "Imputation of 'TM8016' through 'TM8040" IMP4858 = "Imputation of 'TM8048, TM8050, TM8056," IMP4850 = "Imputation of 'TM8048' and 'TM8050'" IMP8050 = "Imputation of 'TM8050'" IMP5658 = "Imputation of 'TM8056' and 'TM8058'" IMP8064 = "Imputation of 'TM8064'" IMP8068 = "Imputation of 'TM8068'" IMP8006 = "Imputation of 'TM8006'" IMP1042 = "Imputation of 'TM8010' and imputation " IMP1842 = "Imputation of 'TM8018' through 'TM8042" IMP5262 = "Imputation of 'TM8052, TM8054, TM8060," IMP5254 = "Imputation of 'TM8052' and 'TM8054'" IMP8054 = "Imputation of 'TM8054'" IMP6062 = "Imputation of 'TM8060' and 'TM8062'" IMP8066 = "Imputation of 'TM8066'" IMP8070 = "Imputation of 'TM8070'" IMP7990 = "Imputation of 'TM7990'" IMP7992 = "Imputation of 'TM7992'" TM8100 = "Is ... the designated parent or guardi" TM8105 = "Is 'worked' marked on the ISS" TM8106 = "Was ... enrolled in school during the" TM8107 = "About how many hours per week" TM8108 = "Did ... spend any time looking for wor" TM8109 = "About how many hours did per week did" TM8114 = "Person number of youngest child" TM8116 = "Person number of second youngest child" TM8118 = "Person number of third youngest child" TM8120 = "During (last month) what was (name of" TM8122 = "During (last month) what was (name of" TM8124 = "During (last month) what was (name of" TM8126 = "Was (name of child) usually cared for " TM8128 = "Was (name of child) usually cared for " TM8130 = "Was (name of child) usually cared for " TM8132 = "Is box 3-8 marked for TM8120" TM8134 = "Is box 3-8 marked for TM8122" TM8136 = "Is box 3-8 marked for TM8124" TM8138 = "Was any money payment usually made for" TM8140 = "Was any money payment usually made for" TM8142 = "Was any money payment usually made for" TM8144 = "Are there 2 or more children listed in" TM8146 = "Does ... (or ...'s family) pay for (na" TM8148 = "Does ... (or ...'s family) pay for (na" TM8150 = "Does ... (or ...'s family) pay for (na" TM8152 = "In a typical week, how much did ... (o" TM8154 = "In a typical week, how much did ... (o" TM8156 = "In a typical week, how much did ... (o" TM8158 = "About how many hours per week was (nam" TM8160 = "About how many hours per week was (nam" TM8162 = "About how many hours per week was (nam" TM8164 = "Was any other arrangement usually used" TM8166 = "Was any other arrangement usually used" TM8168 = "Was any other arrangement usually used" TM8170 = "What did (name of child) do or how was" TM8172 = "What did (name of child) do or how was" TM8174 = "What did (name of child) do or how was" TM8176 = "Was (name of child) usually cared for " TM8178 = "Was (name of child) usually cared for " TM8180 = "Was (name of child) usually cared for " TM8182 = "Is box 3-8 marked in TM8170" TM8184 = "Is box 3-8 marked in TM8172" TM8186 = "Is box 3-8 marked in TM8174" TM8188 = "Was any money payment usually made for" TM8190 = "Was any money payment usually made for" TM8192 = "Was any money payment usually made for" TM8194 = "Are there 2 or more children listed in" TM8196 = "Does ... (or ...'s family) pay for (na" TM8198 = "Does ... (or ...'s family) pay for (na" TM8200 = "Does ... (or ...'s family) pay for (na" TM8202 = "In a typical week, how much did ... (o" TM8204 = "In a typical week, how much did ... (o" TM8206 = "In a typical week, how much did ... (o" TM8208 = "About how many hours per week was (nam" TM8210 = "About how many hours per week was (nam" TM8212 = "About how many hours per week was (nam" TM8322 = "Is ... the designated parent or guardi" TM8324 = "Considering all of ...'s children unde" TM8326 = "Thinking now only about the arrangemen" TM8328 = "When these changes in arrangements for" IMP8107 = "Imputation of 'TM8107'" IMP8109 = "Imputation of 'TM8109'" IMP8120 = "Imputation of 'TM8120'" IMP8122 = "Imputation of 'TM8122'" IMP8124 = "Imputation of 'TM8124'" IMP8126 = "Imputation of 'TM8126'" IMP8128 = "Imputation of 'TM8128'" IMP8130 = "Imputation of 'TM8130'" IMP8170 = "Imputation of 'TM8170'" IMP8172 = "Imputation of 'TM8172'" IMP8174 = "Imputation of 'TM8174'" IMP8176 = "Imputation of 'TM8176'" IMP8178 = "Imputation of 'TM8178'" IMP8180 = "Imputation of 'TM8180'" IMP8138 = "Imputation of 'TM8138'" IMP8140 = "Imputation of 'TM8140'" IMP8142 = "Imputation of 'TM8142'" IMP8146 = "Imputation of 'TM8146'" IMP8152 = "Imputation of 'TM8152'" IMP8148 = "Imputation of 'TM8148'" IMP8154 = "Imputation of 'TM8154'" IMP8150 = "Imputation of 'TM8150'" IMP8156 = "Imputation of 'TM8156'" IMP8158A = "Imputation of 'TM8158'" IMP8160A = "Imputation of 'TM8160'" IMP8162A = "Imputation of 'TM8162'" IMP8158B = "Imputation of 'TM8158'" IMP8160B = "Imputation of 'TM8160'" IMP8162B = "Imputation of 'TM8162'" IMP8188 = "Imputation of 'TM8188'" IMP8190 = "Imputation of 'TM8190'" IMP8192 = "Imputation of 'TM8192'" IMP8196 = "Imputation of 'TM8196'" IMP8202 = "Imputation of 'TM8202'" IMP8198 = "Imputation of 'TM8198'" IMP8204 = "Imputation of 'TM8204'" IMP8200 = "Imputation of 'TM8200'" IMP8206 = "Imputation of 'TM8206'" IMP8208a = "Imputation of 'TM8208'" IMP8210a = "Imputation of 'TM8210'" IMP8212A = "Imputation of 'TM8212'" IMP8208B = "Imputation of 'TM8208'" IMP8210B = "Imputation of 'TM8210'" IMP8212B = "Imputation of 'TM8212'" IMP8324 = "Imputation of 'TM8324'" IMP8326 = "Imputation of 'TM8326'" IMP8328 = "Imputation of 'TM8328'" TM8400 = "Is ... the parent of children under 21" TM8401 = "Does ... have any children of...'s own" TM8402 = "How many of ...'s own children living" TM8403 = "Person number" TM8404 = "Children with no support agreement" TM8405 = "Children covered, most recent agreemen" TM8406 = "Children covered, all other agreements" TM8407 = "Person number" TM8408 = "Children with no support agreement" TM8409 = "Children covered, most recent agreemen" TM8410 = "Children covered, all other agreements" TM8411 = "Person number" TM8412 = "Children with no support agreement" TM8413 = "Children covered, most recent agreemen" TM8414 = "Children covered, all other agreements" TM8415 = "Person number" TM8416 = "Children with no support agreement" TM8417 = "Children covered, most recent agreemen" TM8418 = "Children covered, all other agreements" TM8435 = "Have child support payments ever been" TM8436 = "Is only one person number entered?" TM8437 = "How many children are covered by a" TM8438 = "Care...'s children that we have just" TM8439 = "How many different child support" TM8440 = "Do any of the chidren listed in the" TM8441 = "The following questions refer to the" TM8442 = "In what year was this agreement first" TM8443 = "What was the dollar amount of that" TM8444 = "What was the dollar amount of that" TM8445 = "What was the dollar amount of that" TM8446 = "What was the dollar amount of that" TM8447 = "What was the dollar amount of that" TM8448 = "Has that dollar amount ever been" TM8449 = "In what year was the amount last" TM8450 = "What was the dollar amount of that" TM8451 = "What was the dollar amount of that" TM8452 = "What was the dollar amount of that" TM8453 = "What was the dollar amount of that" TM8454 = "What was the dollar amount of that" TM8455 = "Was this change made or agreed to by a" TM8456 = "Were any payments due in the last 12" TM8457 = "Why were no payments due in the last 1" TM8458 = "What is the total amount that ...was" TM8459 = "How are the payments supposed to be" TM8460 = "What is the total amount that ...actua" TM8461 = "How regularly are child support paymen" TM8462 = "Under the terms of the agreement with" TM8463 = "Would you say the amount due ... Is -" TM8470 = "What child custody arrangements does t" TM8471 = "Does the child support agreement speci" TM8472 = "Is more than one child marked 'yes'?" TM8473 = "Did all the children visit the other" TM8474 = "What is the total amount of time (the" TM8475 = "What is the total amount of time (the" TM8476 = "What is the total amount of time (the" TM8477 = "What is the total amount of time (the" TM8478 = "What is the total amount of time (the" TM8479 = "Where does the other parent (for this" TM8480 = "Do you and the other parent still live" TM8481 = "Who moved?" TM8482 = "Now I would like to ask a few question" TM8483 = "What was the dollar amount of that" TM8484 = "What was the dollar amount of that" TM8485 = "What was the dollar amount of that" TM8486 = "What was the dollar amount of that" TM8487 = "What was the dollar amount of that" TM8488 = "Has the dollar amount ever been change" TM8489 = "In what year was the amount last" TM8490 = "What was the dollar amount for the" TM8491 = "What was the dollar amount for the" TM8492 = "What was the dollar amount for the" TM8493 = "What was the dollar amount for the" TM8494 = "What was the dollar amount for the" TM8495 = "Were any payments to be received in th" TM8496 = "Why were no payments due in the last 1" TM8497 = "What is the total amount that ...was" TM8498 = "What is the total amount that ..." TM8499 = "How regularly are child support paymen" TM8500 = "Under the terms of the" TM8501 = "Would you say the amount due... Is" TM8502 = "What kinds of provisions for health ca" TM8503 = "What kinds of provisions for health ca" TM8504 = "What kinds of provisions for health ca" TM8505 = "What kinds of provisions for health ca" TM8506 = "What kinds of provisions for health ca" TM8507 = "What kinds of provisions for health ca" TM8508 = "What child custody arrangements does t" TM8509 = "Does the child support" TM8510 = "(Refer to the roster, column 1H/1J) is" TM8511 = "Did all the children visit the other" TM8512 = "What is the total amount of time (the" TM8513 = "What is the total amount of time (the" TM8514 = "What is the total amount of time (the" TM8515 = "What is the total amount of time (the" TM8516 = "What is the total amount of time (the" TM8517 = "Refer to cc item 28. Is...male/female?" TM8518 = "Refer to cc item 26a. What is...'s" TM8519 = "Person number of youngest child" TM8520 = "Person number of second youngest child" TM8521 = "Person number of third youngest child" TM8522 = "Person number of fourth youngest child" TM8523 = "Person number of fifth youngest child" TM8524 = "Person number of sixth youngest child" TM8525 = "Person number of seventh youngest chil" TM8526 = "Person number of eighth youngest child" TM8527 = "Age of youngest child" TM8528 = "Age of second youngest child" TM8529 = "Age of third youngest child" TM8530 = "Age of fourth youngest child" TM8531 = "Age of fifth youngest child" TM8532 = "Age of sixth youngest child" TM8533 = "Age of seventh youngest child" TM8534 = "Age of eighth youngest child" TM8535 = "Was (youngest child's name) father eve" TM8536 = "Was (second youngest child's name)" TM8537 = "Was (third youngest child's name) fath" TM8538 = "Was (fourth youngest child's name)" TM8539 = "Was (fifth youngest child's name) fath" TM8540 = "Was (sixth youngest child's name) fath" TM8541 = "Was (seventh youngest child's name)" TM8542 = "Was (eighth youngest child's name)" TM8543 = "Was (youngest child's name) father eve" TM8544 = "Was (second youngest child's name)" TM8545 = "Was (third youngest child's name) fath" TM8546 = "Was (fourth youngest child's name)" TM8547 = "Was (fifth youngest child's name) fath" TM8548 = "Was (sixth youngest child's name) fath" TM8549 = "Was (seventh youngest child's name)" TM8550 = "Was (eighth youngest child's name)" TM8551 = "Did (his/her) father ever write his ow" TM8552 = "Did (his/her) father ever write his ow" TM8553 = "Did (his/her) father ever write his ow" TM8554 = "Did (his/her) father ever write his ow" TM8555 = "Did (his/her) father ever write his ow" TM8556 = "Did (his/her) father ever write his ow" TM8557 = "Did (his/her) father ever write his ow" TM8558 = "Did (his/her) father ever write his ow" TM8559 = "Other than the application for a birth" TM8560 = "Other than the application for a birth" TM8561 = "Other than the application for a birth" TM8562 = "Other than the application for a birth" TM8563 = "Other than the application for a birth" TM8564 = "Other than the application for a birth" TM8565 = "Other than the application for a birth" TM8566 = "Other than the application for a birth" TM8567 = "Did (youngest child's name) father eve" TM8568 = "Did (second youngest child's name)" TM8569 = "Did (third youngest child's name) fath" TM8570 = "Did (fourth youngest child's name)" TM8571 = "Did (fifth youngest child's name) fath" TM8572 = "Did (sixth youngest child's name) fath" TM8573 = "Did (seventh youngest child's name)" TM8574 = "Did (eighth youngest child's name)" TM8575 = "Are there any more children recorded i" TM8576 = "Are there any more children recorded i" TM8577 = "Are there any more children recorded i" TM8578 = "Are there any more children recorded i" TM8579 = "Are there any more children recorded i" TM8580 = "Are there any more children recorded i" TM8581 = "Are there any more children recorded i" TM8583 = "Person number of youngest child" TM8584 = "Person number of second youngest child" TM8585 = "Person number of third youngest child" TM8586 = "Person number of fourth youngest child" TM8587 = "Person number of fifth youngest child" TM8588 = "Person number of sixth youngest child" TM8589 = "Person number of seventh youngest chil" TM8590 = "Person number of eighth youngest child" TM8591 = "Age of youngest child" TM8592 = "Age of second youngest child" TM8593 = "Age of third youngest child" TM8594 = "Age of fourth youngest child" TM8595 = "Age of fifth youngest child" TM8596 = "Age of sixth youngest child" TM8597 = "Age of seventh youngest child" TM8598 = "Age of eighth youngest child" TM8599 = "Was...ever married to (child's name)" TM8600 = "Was (youngest child's name) father eve" TM8601 = "Was (second youngest child's name)" TM8602 = "Was (third youngest child's name) fath" TM8603 = "Was (fourth youngest child's name)" TM8604 = "Was (fifth youngest child's name) fath" TM8605 = "Was (sixth youngest child's name) fath" TM8606 = "Was (seventh youngest child's name)" TM8607 = "Was (eighth youngest child's name)" TM8608 = "Was (youngest child's name) father eve" TM8609 = "Was (second youngest child's name)" TM8610 = "Was (third youngest child's name) fath" TM8611 = "Was (fourth youngest child's name)" TM8612 = "Was (fifth youngest child's name) fath" TM8613 = "Was (sixth youngest child's name) fath" TM8614 = "Was (seventh youngest child's name)" TM8615 = "Was (eighth youngest child's name)" TM8616 = "Did (his/her) father ever write his ow" TM8617 = "Did (his/her) father ever write his ow" TM8618 = "Did (his/her) father ever write his ow" TM8619 = "Did (his/her) father ever write his ow" TM8620 = "Did (his/her) father ever write his ow" TM8621 = "Did (his/her) father ever write his ow" TM8622 = "Did (his/her) father ever write his ow" TM8623 = "Did (his/her) father ever write his ow" TM8624 = "Other than the application for a birth" TM8625 = "Other than the application for a birth" TM8626 = "Other than the application for a birth" TM8627 = "Other than the application for a birth" TM8628 = "Other than the application for a birth" TM8629 = "Other than the application for a birth" TM8630 = "Other than the application for a birth" TM8631 = "Other than the application for a birth" TM8632 = "Did (youngest child's name) father eve" TM8633 = "Did (second youngest child's name)" TM8634 = "Did (third youngest child's name) fath" TM8635 = "Did (fourth youngest child's name)" TM8636 = "Did (fifth youngest child's name) fath" TM8637 = "Did (sixth youngest child's name) fath" TM8638 = "Did (seventh youngest child's name)" TM8639 = "Did (eighth youngest child's name)" TM8640 = "Are there any more children recorded i" TM8641 = "Are there any more children recorded i" TM8642 = "Are there any more children recorded i" TM8643 = "Are there any more children recorded i" TM8644 = "Are there any more children recorded i" TM8645 = "Are there any more children recorded i" TM8646 = "Are there any more children recorded i" TM8664 = "What is the total amount that ...was" TM8666 = "What is the total amount that ...was" TM8668 = "What is the total amount that ...was" TM8670 = "What is the total amount that ...was" TM8672 = "What is the total amount that ...was" TM8674 = "What is the total amount that ...actua" TM8676 = "This next question refers to all of..." TM8678 = "In what year Did ...last ask for help?" TM8680 = "What type of help Did ...ask for (last" TM8682 = "What type of help Did ...ask for (last" TM8684 = "What type of help Did ...ask for (last" TM8686 = "What type of help Did ...ask for (last" TM8688 = "What type of help Did ...ask for (last" TM8690 = "What type of help Did ...ask for (last" TM8692 = "What type of help Did ...ask for (last" TM8694 = "Did ...receive any help from the agenc" TM8696 = "What kind of help Did ...receive (last" TM8698 = "What kind of help Did ...receive (last" TM8700 = "What kind of help Did ...receive (last" TM8702 = "What kind of help Did ...receive (last" TM8704 = "What kind of help Did ...receive (last" TM8706 = "What kind of help Did ...receive (last" TM8708 = "What kind of help Did ...receive (last" TM8710 = "Are any children listed in column A of" TM8712 = "What is...'s sex?" TM8714 = "What is...'s marital status?" TM8715 = "Person number of youngest child" TM8716 = "Person number of second youngest child" TM8717 = "Person number of third youngest child" TM8718 = "Person number of fourth youngest child" TM8719 = "Person number of fifth youngest child" TM8720 = "Person number of sixth youngest child" TM8721 = "Person number of seventh youngest chil" TM8722 = "Person number of eighth youngest child" TM8723 = "Age of youngest child" TM8724 = "Age of second youngest child" TM8725 = "Age of third youngest child" TM8726 = "Age of fourth youngest child" TM8727 = "Age of fifth youngest child" TM8728 = "Age of sixth youngest child" TM8729 = "Age of seventh youngest child" TM8730 = "Age of eighth youngest child" TM8731 = "Was (youngest child's name) father eve" TM8732 = "Was (second youngest child's name)" TM8733 = "Was (third youngest child's name) fath" TM8734 = "Was (fourth youngest child's name)" TM8735 = "Was (fifth youngest child's name) fath" TM8736 = "Was (sixth youngest child's name) fath" TM8737 = "Was (seventh youngest child's name)" TM8738 = "Was (eighth youngest child's name)" TM8739 = "Was (youngest child's name) father eve" TM8740 = "Was (second youngest child's name)" TM8741 = "Was (third youngest child's name) fath" TM8742 = "Was (fourth youngest child's name)" TM8743 = "Was (fifth youngest child's name) fath" TM8744 = "Was (sixth youngest child's name) fath" TM8745 = "Was (seventh youngest child's name)" TM8746 = "Was (eighth youngest child's name)" TM8747 = "Did (his/her) father ever write his ow" TM8748 = "Did (his/her) father ever write his ow" TM8749 = "Did (his/her) father ever write his ow" TM8750 = "Did (his/her) father ever write his ow" TM8751 = "Did (his/her) father ever write his ow" TM8752 = "Did (his/her) father ever write his ow" TM8753 = "Did (his/her) father ever write his ow" TM8754 = "Did (his/her) father ever write his ow" TM8755 = "Other than the application for a birth" TM8756 = "Other than the application for a birth" TM8757 = "Other than the application for a birth" TM8758 = "Other than the application for a birth" TM8759 = "Other than the application for a birth" TM8760 = "Other than the application for a birth" TM8761 = "Other than the application for a birth" TM8762 = "Other than the application for a birth" TM8763 = "Did (youngest child's name) father eve" TM8764 = "Did (second youngest child's name)" TM8765 = "Did (third youngest child's name) fath" TM8766 = "Did (fourth youngest child's name)" TM8767 = "Did (fifth youngest child's name) fath" TM8768 = "Did (sixth youngest child's name) fath" TM8769 = "Did (seventh youngest child's name)" TM8770 = "Did (eighth youngest child's name)" TM8771 = "Are there any more children recorded i" TM8772 = "Are there any more children recorded i" TM8773 = "Are there any more children recorded i" TM8774 = "Are there any more children recorded i" TM8775 = "Are there any more children recorded i" TM8776 = "Are there any more children recorded i" TM8777 = "Are there any more children recorded i" TM8779 = "Person number of youngest child" TM8780 = "Person number of second youngest child" TM8781 = "Person number of third youngest child" TM8782 = "Person number of fourth youngest child" TM8783 = "Person number of fifth youngest child" TM8784 = "Person number of sixth youngest child" TM8785 = "Person number of seventh youngest chil" TM8786 = "Person number of eighth youngest child" TM8787 = "Age of youngest child" TM8788 = "Age of second youngest child" TM8789 = "Age of third youngest child" TM8790 = "Age of fourth youngest child" TM8791 = "Age of fifth youngest child" TM8792 = "Age of sixth youngest child" TM8793 = "Age of seventh youngest child" TM8794 = "Age of eighth youngest child" TM8795 = "Was...ever married to (youngest child'" TM8796 = "Was...ever married to (youngest child'" TM8797 = "Was...ever married to (youngest child'" TM8798 = "Was...ever married to (youngest child'" TM8799 = "Was...ever married to (youngest child'" TM8800 = "Was...ever married to (youngest child'" TM8801 = "Was...ever married to (youngest child'" TM8802 = "Was...ever married to (youngest child'" TM8803 = "Are there any more children recorded i" TM8804 = "Do (read names of all children recorde" TM8805 = "Was (youngest child's name) father eve" TM8806 = "Was (second youngest child's name)" TM8807 = "Was (third youngest child's name) fath" TM8808 = "Was (fourth youngest child's name)" TM8809 = "Was (fifth youngest child's name) fath" TM8810 = "Was (sixth youngest child's name) fath" TM8811 = "Was (seventh youngest child's name)" TM8812 = "Was (eighth youngest child's name)" TM8813 = "Was (youngest child's name) father eve" TM8814 = "Was (second youngest child's name)" TM8815 = "Was (third youngest child's name) fath" TM8816 = "Was (fourth youngest child's name)" TM8817 = "Was (fifth youngest child's name) fath" TM8818 = "Was (sixth youngest child's name) fath" TM8819 = "Was (seventh youngest child's name)" TM8820 = "Was (eighth youngest child's name)" TM8821 = "Did (his/her) father ever write his ow" TM8822 = "Did (his/her) father ever write his ow" TM8823 = "Did (his/her) father ever write his ow" TM8824 = "Did (his/her) father ever write his ow" TM8825 = "Did (his/her) father ever write his ow" TM8826 = "Did (his/her) father ever write his ow" TM8827 = "Did (his/her) father ever write his ow" TM8828 = "Did (his/her) father ever write his ow" TM8829 = "Other than the application for a birth" TM8830 = "Other than the application for a birth" TM8831 = "Other than the application for a birth" TM8832 = "Other than the application for a birth" TM8833 = "Other than the application for a birth" TM8834 = "Other than the application for a birth" TM8835 = "Other than the application for a birth" TM8836 = "Other than the application for a birth" TM8837 = "Did (youngest child's name) father eve" TM8838 = "Did (second youngest child's name)" TM8839 = "Did (third youngest child's name) fath" TM8840 = "Did (fourth youngest child's name)" TM8841 = "Did (fifth youngest child's name) fath" TM8842 = "Did (sixth youngest child's name) fath" TM8843 = "Did (seventh youngest child's name)" TM8844 = "Did (eighth youngest child's name)" TM8845 = "Are there any more children recorded i" TM8846 = "Are there any more children recorded i" TM8847 = "Are there any more children recorded i" TM8848 = "Are there any more children recorded i" TM8849 = "Are there any more children recorded i" TM8850 = "Are there any more children recorded i" TM8851 = "Are there any more children recorded i" TM8853 = "Is there an answer marked, in item 7b?" TM8854 = "Is there an answer marked, in item 7b?" TM8855 = "Is there an answer marked, in item 7b?" TM8856 = "Is there an answer marked, in item 7b?" TM8857 = "Is there an answer marked, in item 7b?" TM8858 = "Is there an answer marked, in item 7b?" TM8859 = "Is there an answer marked, in item 7b?" TM8862 = "Do (read names of all children recorde" TM8864 = "Do all of the children have the same" TM8866 = "Does more than one child have column B" TM8868 = "Do (read names of all children marked" TM8869 = "Person number of youngest child" TM8870 = "Person number of oldest child" TM8871 = "Youngest child" TM8872 = "Oldest child" TM8873 = "Youngest child" TM8874 = "Oldest child" TM8875 = "Youngest child" TM8876 = "Oldest child" TM8877 = "Youngest child" TM8878 = "Oldest child" TM8879 = "Youngest child" TM8880 = "Oldest child" TM8881 = "Youngest child" TM8882 = "Oldest child" TM8883 = "Youngest child" TM8884 = "Oldest child" TM8885 = "Youngest child" TM8886 = "Oldest child" TM8887 = "Youngest child" TM8888 = "Oldest child" TM8889 = "Youngest child" TM8890 = "Oldest child" TM8891 = "Youngest child" TM8892 = "Oldest child" TM8893 = "Youngest child" TM8894 = "Oldest child" TM8895 = "Youngest child" TM8896 = "Oldest child" TM8897 = "Number of days for youngest child" TM8898 = "Number of days for oldest child" TM8900 = "Number of weeks for youngest child" TM8901 = "Number of weeks for oldest child" TM8902 = "Number of months for youngest child" TM8903 = "Number of months for oldest child" TM8904 = "Youngest child" TM8905 = "Oldest child" TM8906 = "Youngest child" TM8907 = "Oldest child" TM8908 = "Were any payments received from the" TM8909 = "What is the total amount that ..." TM8910 = "Were any non-cash items or services fo" IM8401 = "Imputation of 'TM8401'" IM8403 = "Imputation of 'TM8404-TM8434'" IM8439 = "Imputation of 'TM8439'" IM8441 = "Imputation of 'TM8441'" IM8442 = "Imputation of 'TM8442'" IM8443 = "Imputation of 'TM8443-TM8446'" IM8448 = "Imputation of 'TM8448'" IM8449 = "Imputation of 'TM8449'" IM8450 = "Imputation of 'TM8450-TM8453'" IM8455 = "Imputation of 'TM8455'" IM8456 = "Imputation of 'TM8456'" IM8457 = "Imputation of 'TM8457'" IM8458 = "Imputation of 'TM8452'" IM8459 = "Imputation of 'TM8459'" IM8460 = "Imputation of 'TM8460'" IM8461 = "Imputation of 'TM8461'" IM8462 = "Imputation of 'TM8462'" IM8463 = "Imputation of 'TM8463'" IM8464 = "Imputation of 'TM8464-TM8468'" IM8470 = "Imputation of 'TM8470'" IM8471 = "Imputation of 'TM8471'" IM8473 = "Imputation of 'TM8473'" IM8474 = "Imputation of 'TM8474-TM8477'" IM8479 = "Imputation of 'TM8479'" IM8480 = "Imputation of 'TM8480'" IM8481 = "Imputation of 'TM8481'" IM8482 = "Imputation of 'TM8482'" IM8483 = "Imputation of 'TM8483-TM8486'" IM8488 = "Imputation of 'TM8488'" IM8489 = "Imputation of 'TM8489'" IM8493 = "Imputation of 'TM8490-TM8493'" IM8495 = "Imputation of 'TM8495'" IM8496 = "Imputation of 'TM8496'" IM8497 = "Imputation of 'TM8497'" IM8498 = "Imputation of 'TM8498'" IM8499 = "Imputation of 'TM8499'" IM8500 = "Imputation of 'TM8500'" IM8501 = "Imputation of 'TM8501'" IM8502 = "Imputation of 'TM8502-TM8507'" IM8508 = "Imputation of 'TM8508'" IM8509 = "Imputation of 'TM8509'" IM8511 = "Imputation of 'TM8511'" IM8512 = "Imputation of 'TM8512-TM8515'" IM8535 = "Imputation of 'TM8535'" IM8536 = "Imputation of 'TM8536'" IM8537 = "Imputation of 'TM8537-TM8545'" IM8538 = "Imputation of 'TM8538'" IM8539 = "Imputation of 'TM8539'" IM8540 = "Imputation of 'TM8540'" IM8541 = "Imputation of 'TM8541'" IM8542 = "Imputation of 'TM8542'" IM8543 = "Imputation of 'TM8543'" IM8544 = "Imputation of 'TM8544'" IM8545 = "Imputation of 'TM8545'" IM8546 = "Imputation of 'TM8546'" IM8547 = "Imputation of 'TM8547'" IM8548 = "Imputation of 'TM8548'" IM8549 = "Imputation of 'TM8549'" IM8550 = "Imputation of 'TM8550'" IM8551 = "Imputation of 'TM8551'" IM8552 = "Imputation of 'TM8552'" IM8553 = "Imputation of 'TM8553'" IM8554 = "Imputation of 'TM8554'" IM8555 = "Imputation of 'TM8555'" IM8556 = "Imputation of 'TM8556'" IM8557 = "Imputation of 'TM8557'" IM8558 = "Imputation of 'TM8558'" IM8559 = "Imputation of 'TM8559'" IM8560 = "Imputation of 'TM8560'" IM8561 = "Imputation of 'TM8561'" IM8562 = "Imputation of 'TM8562'" IM8563 = "Imputation of 'TM8563'" IM8564 = "Imputation of 'TM8564'" IM8565 = "Imputation of 'TM8565'" IM8566 = "Imputation of 'TM8566'" IM8567 = "Imputation of 'TM8567'" IM8568 = "Imputation of 'TM8568'" IM8569 = "Imputation of 'TM8569'" IM8570 = "Imputation of 'TM8570'" IM8571 = "Imputation of 'TM8571'" IM8572 = "Imputation of 'TM8572'" IM8573 = "Imputation of 'TM8573'" IM8574 = "Imputation of 'TM8574'" IM8600 = "Imputation of 'TM8600'" IM8601 = "Imputation of 'TM8601'" IM8602 = "Imputation of 'TM8602-TM8607'" IM8603 = "Imputation of 'TM8603'" IM8604 = "Imputation of 'TM8604'" IM8605 = "Imputation of 'TM8605'" IM8606 = "Imputation of 'TM8606'" IM8607 = "Imputation of 'TM8607'" IM8608 = "Imputation of 'TM8608'" IM8609 = "Imputation of 'TM8609'" IM8610 = "Imputation of 'TM8610'" IM8611 = "Imputation of 'TM8611'" IM8612 = "Imputation of 'TM8612'" IM8613 = "Imputation of 'TM8613'" IM8614 = "Imputation of 'TM8614'" IM8615 = "Imputation of 'TM8615'" IM8616 = "Imputation of 'TM8616'" IM8617 = "Imputation of 'TM8617'" IM8618 = "Imputation of 'TM8618'" IM8619 = "Imputation of 'TM8619'" IM8620 = "Imputation of 'TM8620'" IM8621 = "Imputation of 'TM8621'" IM8622 = "Imputation of 'TM8622'" IM8623 = "Imputation of 'TM8623'" IM8624 = "Imputation of 'TM8624'" IM8625 = "Imputation of 'TM8625'" IM8626 = "Imputation of 'TM8626'" IM8627 = "Imputation of 'TM8627'" IM8628 = "Imputation of 'TM8628'" IM8629 = "Imputation of 'TM8629'" IM8630 = "Imputation of 'TM8630'" IM8631 = "Imputation of 'TM8631'" IM8633 = "Imputation of 'TM8633'" IM8634 = "Imputation of 'TM8634'" IM8635 = "Imputation of 'TM8635'" IM8636 = "Imputation of 'TM8636'" IM8637 = "Imputation of 'TM8637'" IM8638 = "Imputation of 'TM8638'" IM8639 = "Imputation of 'TM8639'" IM8648 = "Imputation of 'TM8648'" IM8656 = "Imputation of 'TM8656'" IM8658 = "Imputation of 'TM8658'" IM8660 = "Imputation of 'TM8660'" IM8664 = "Imputation of 'TM8664'" IM8674 = "Imputation of 'TM8674'" IM8676 = "Imputation of 'TM8676'" IM8678 = "Imputation of 'TM8678'" IM8680 = "Imputation of 'TM8680'" IM8694 = "Imputation of 'TM8694'" IM8696 = "Imputation of 'TM8696'" IM8731 = "Imputation of 'TM8731'" IM8732 = "Imputation of 'TM8732'" IM8733 = "Imputation of 'TM8733'" IM8734 = "Imputation of 'TM8734'" IM8735 = "Imputation of 'TM8735'" IM8736 = "Imputation of 'TM8736'" IM8737 = "Imputation of 'TM8737'" IM8738 = "Imputation of 'TM8738'" IM8739 = "Imputation of 'TM8739'" IM8740 = "Imputation of 'TM8740'" IM8741 = "Imputation of 'TM8741'" IM8742 = "Imputation of 'TM8742'" IM8743 = "Imputation of 'TM8743'" IM8744 = "Imputation of 'TM8744'" IM8745 = "Imputation of 'TM8745'" IM8746 = "Imputation of 'TM8746'" IM8747 = "Imputation of 'TM8747'" IM8748 = "Imputation of 'TM8748'" IM8749 = "Imputation of 'TM8749'" IM8750 = "Imputation of 'TM8750'" IM8751 = "Imputation of 'TM8751'" IM8752 = "Imputation of 'TM8752'" IM8753 = "Imputation of 'TM8753'" IM8754 = "Imputation of 'TM8754'" IM8755 = "Imputation of 'TM8755'" IM8756 = "Imputation of 'TM8756'" IM8757 = "Imputation of 'TM8757'" IM8758 = "Imputation of 'TM8758'" IM8759 = "Imputation of 'TM8759'" IM8760 = "Imputation of 'TM8760'" IM8761 = "Imputation of 'TM8761'" IM8762 = "Imputation of 'TM8762'" IM8763 = "Imputation of 'TM8763'" IM8764 = "Imputation of 'TM8764'" IM8765 = "Imputation of 'TM8765'" IM8766 = "Imputation of 'TM8766'" IM8767 = "Imputation of 'TM8767'" IM8768 = "Imputation of 'TM8768'" IM8769 = "Imputation of 'TM8769'" IM8770 = "Imputation of 'TM8770'" IM8795 = "Imputation of 'TM8795'" IM8796 = "Imputation of 'TM8796'" IM8797 = "Imputation of 'TM8797'" IM8798 = "Imputation of 'TM8798'" IM8799 = "Imputation of 'TM8799'" IM8800 = "Imputation of 'TM8800'" IM8801 = "Imputation of 'TM8801'" IM8802 = "Imputation of 'TM8802'" IM8804 = "Imputation of 'TM8804'" IM8805 = "Imputation of 'TM8805'" IM8806 = "Imputation of 'TM8806'" IM8807 = "Imputation of 'TM8807'" IM8808 = "Imputation of 'TM8808'" IM8809 = "Imputation of 'TM8809'" IM8810 = "Imputation of 'TM8810'" IM8811 = "Imputation of 'TM8811'" IM8812 = "Imputation of 'TM8812'" IM8813 = "Imputation of 'TM8813'" IM8814 = "Imputation of 'TM8814'" IM8815 = "Imputation of 'TM8815'" IM8816 = "Imputation of 'TM8816'" IM8817 = "Imputation of 'TM8817'" IM8818 = "Imputation of 'TM8818'" IM8819 = "Imputation of 'TM8819'" IM8820 = "Imputation of 'TM8820'" IM8821 = "Imputation of 'TM8821'" IM8822 = "Imputation of 'TM8822'" IM8823 = "Imputation of 'TM8823'" IM8824 = "Imputation of 'TM8824'" IM8825 = "Imputation of 'TM8825'" IM8826 = "Imputation of 'TM8826'" IM8827 = "Imputation of 'TM8827'" IM8828 = "Imputation of 'TM8828'" IM8829 = "Imputation of 'TM8829'" IM8830 = "Imputation of 'TM8830'" IM8831 = "Imputation of 'TM8831'" IM8832 = "Imputation of 'TM8832'" IM8833 = "Imputation of 'TM8833'" IM8834 = "Imputation of 'TM8834'" IM8835 = "Imputation of 'TM8835'" IM8836 = "Imputation of 'TM8836'" IM8837 = "Imputation of 'TM8837'" IM8838 = "Imputation of 'TM8838'" IM8839 = "Imputation of 'TM8839'" IM8840 = "Imputation of 'TM8840'" IM8841 = "Imputation of 'TM8841'" IM8842 = "Imputation of 'TM8842'" IM8843 = "Imputation of 'TM8843'" IM8844 = "Imputation of 'TM8844'" IM8868 = "Imputation of 'TM8868'" IM8871 = "Imputation of 'TM8871'" IM8872 = "Imputation of 'TM8872'" IM8887 = "Imputation of 'TM8887'" IM8888 = "Imputation of 'TM8888'" IM8897 = "Imputation of 'TM8897'" IM8898 = "Imputation of 'TM8898'" IM8908 = "Imputation of 'TM8908'" IM8909 = "Imputation of 'TM8909'" IM8910 = "Imputation of 'TM8910'" TM9002 = "During the past 12 months, did ... mak" TM9004 = "Did ... make regular payments, lump-su" TM9006 = "For how many children did ... make" TM9007 = "How many of these children were under" TM9008 = "Were any of these payments the result " TM9010 = "How many children are covered by that" TM9012 = "Was this agreement a voluntary written" TM9014 = "In what year was this agreement first" TM9016 = "Has the dollar amount originally agree" TM9018 = "In what year was the amount last chang" TM9019 = "Was this change made or agreed to by a" TM9020 = "Is ... still supposed to pay child" TM9022 = "How much did ... pay in child support" TM9024 = "Are these payments made--" TM9026 = "What kinds of provisions for health ca" TM9028 = "What kinds of provisions for health ca" TM9030 = "What kinds of provisions for health ca" TM9032 = "What kinds of provisions for health ca" TM9034 = "What kinds of provisions for health ca" TM9036 = "What kinds of provisions for health ca" TM9038 = "(Other than the most recent support" TM9040 = "How much did ... pay in child support" TM9042 = "Were any child support payments made" TM9044 = "How much did ... pay for child support" IMP9000 = "Imputation of 'TM9000'" IMP9002 = "Imputation of 'TM9002'" IMP9004 = "Imputation of 'TM9004'" IMP9006 = "Imputation of 'TM9006'" IMP9007 = "Imputation of 'TM9007'" IMP9008 = "Imputation of 'TM9008'" IMP9010 = "Imputation of 'TM9010'" IMP9012 = "Imputation of 'TM9012'" IMP9014 = "Imputation of 'TM9014'" IMP9016 = "Imputation of 'TM9016'" IMP9018 = "Imputation of 'TM9018'" IMP9019 = "Imputation of 'TM9019'" IMP9020 = "Imputation of 'TM9020'" IMP9022 = "Imputation of 'TM9022'" IMP9024 = "Imputation of 'TM9024'" IMP26_36 = "Imputation of 'TM9026-TM9036'" IMP9038 = "Imputation of 'TM9038'" IMP9040 = "Imputation of 'TM9040'" IMP9042 = "Imputation of 'TM9042'" IMP9044 = "Imputation of 'TM9044'" IMP9046 = "Imputation of 'TM9046'" IMP9048 = "Imputation of 'TM9048'" IMP9050 = "Imputation of 'TM9050'" IMP9052 = "Imputation of 'TM9052'" IMP9054 = "Imputation of 'TM9054'" IMP9056 = "Imputation of 'TM9056'" IMP9058 = "Imputation of 'TM9058'" IMP9060 = "Imputation of 'TM9060'" IMP9064 = "Imputation of 'TM9064'" TM9100 = "These next few questions are about ..." TM9102 = "Does ... use any of the following aids" TM9104 = "Does ... use any of the following" TM9106 = "Is 'yes' marked in TM9102 or TM9104" TM9108 = "Has ... used (aid mentioned in TM9102 " TM9110 = "Does...have difficulty seeing words an" TM9112 = "Is...able to see the words and letters" TM9114 = "Does...have any difficulty hearing wha" TM9116 = "Is...able to hear what is said in a" TM9118 = "Because of a health condition or a" TM9120 = "Is ... able to have his/her speech" TM9122 = "Does...have any difficulty lifting and" TM9124 = "Is...able to lift and carry this much" TM9126 = "Does...have any difficulty walking up " TM9128 = "Is...able to walk up a flight of stair" TM9130 = "Does...have any difficulty walking for" TM9132 = "Is...able to walk a quarter of a mile " TM9134 = "Does...have any difficulty using the" TM9136 = "Is...able to use the telephone at all?" TM9138 = "Does... have any difficulty getting" TM9139 = "Does...need the help of another person" TM9140 = "Does...have any difficulty getting" TM9141 = "Does...need the help of another person" TM9142 = "Does...have any difficulty getting int" TM9143 = "Does...need the help of another person" TM9144 = "Does... have any difficulty taking a" TM9145 = "Does...need the help of another person" TM9146 = "Does... have any difficulty getting" TM9147 = "Does...need the help of another person" TM9148 = "Does... have any difficulty walking?" TM9149 = "Does...need the help of another person" TM9150 = "Does... have any difficulty eating?" TM9151 = "Does...need the help of another person" TM9152 = "Does... have any difficulty using the" TM9153 = "Does...need the help of another person" TM9154 = "Does... have any difficulty keeping" TM9155 = "Does...need the help of another person" TM9156 = "Does... have any difficulty preparing" TM9157 = "Does...need the help of another person" TM9158 = "Does... have any difficulty doing ligh" TM9159 = "Does...need the help of another person" TM9160 = "Does... have any difficulty taking the" TM9161 = "Does...need the help another person in" TM9162 = "Is 'yes' marked in 11b for any of the" TM9176 = "You have said that ... needs the help " TM9178 = "You have said that ... needs the help " TM9180 = "Is (person mentioned above) a househol" TM9182 = "Is (person mentioned above) a househol" TM9183 = "Is (person mentioned above) a househol" TM9184 = "Is (person mentioned above) a househol" TM9185 = "Is (person mentioned above) a househol" TM9186 = "Is (person mentioned above) a househol" TM9187 = "For how long has ... needed the help o" TM9188 = "During the past month did ... (or ...'" TM9189 = "How much was paid for such help in las" TM9190 = "Is 'has difficulty' marked in TM9110," TM9192 = "I have recorded that ... has difficult" TM9194 = "I have recorded that ... has difficult" TM9196 = "I have recorded that ... has difficult" TM9197 = "Are any of these conditions the result" TM9198 = "Are two or more conditions entered in" TM9200 = "Which if the conditions do you conside" TM9202 = "Does ... have a learning disability su" TM9204 = "Does ... have a mental retardation?" TM9206 = "Does ... have a a developmental" TM9208 = "Does ... have a alzheimers disease," TM9212 = "What is ....'s age?" TM9214 = "Is 'disabled' (code 171) marked on the" TM9216 = "What is marked in item sc1386?" TM9218 = "We have recorded that ...'s health or" TM9220 = "Does ... have a physical, mental or" TM9222 = "Is 'worked' (code 170) marked on iss?" TM9224 = "Does ...'s health or condition prevent" TM9226 = "Does ... have a physical, mental or" TM9228 = "Does ...'s health or condition" TM9230 = "Is 'yes' marked in TM9218, TM9220 or" TM9232 = "I have marked that ... Is limited in" TM9234 = "I have marked that ... Is limited in" TM9236 = "I have marked that ... Is limited in" TM9238 = "Are two or more conditions entered in" TM9240 = "Which of the conditions do you conside" TM9242 = "In the last 12 months, has...applied f" IM9100 = "Imputation of 'TM9100'" IM9102 = "Imputation of 'TM9102'" IM9104 = "Imputation of 'TM9104'" IM9108 = "Imputation of 'TM9108'" IM9110 = "Imputation of 'TM9110'" IM9112 = "Imputation of 'TM9112'" IM9114 = "Imputation of 'TM9114'" IM9116 = "Imputation of 'TM9116'" IM9118 = "Imputation of 'TM9118'" IM9120 = "Imputation of 'TM9120'" IM9122 = "Imputation of 'TM9122'" IM9124 = "Imputation of 'TM9124'" IM9126 = "Imputation of 'TM9126'" IM9128 = "Imputation of 'TM9128'" IM9130 = "Imputation of 'TM9130'" IM9132 = "Imputation of 'TM9132'" IM9134 = "Imputation of 'TM9134'" IM9136 = "Imputation of 'TM9136'" IM9138 = "Imputation of 'TM9138'" IM9139 = "Imputation of 'TM9139'" IM9140 = "Imputation of 'TM9140'" IM9141 = "Imputation of 'TM9141'" IM9142 = "Imputation of 'TM9142'" IM9143 = "Imputation of 'TM9143'" IM9144 = "Imputation of 'TM9144'" IM9145 = "Imputation of 'TM9145'" IM9146 = "Imputation of 'TM9146'" IM9147 = "Imputation of 'TM9147'" IM9148 = "Imputation of 'TM9148'" IM9149 = "Imputation of 'TM9149'" IM9150 = "Imputation of 'TM9150'" IM9151 = "Imputation of 'TM9151'" IM9152 = "Imputation of 'TM9152'" IM9153 = "Imputation of 'TM9153'" IM9154 = "Imputation of 'TM9154'" IM9155 = "Imputation of 'TM9155'" IM9156 = "Imputation of 'TM9156'" IM9157 = "Imputation of 'TM9157'" IM9158 = "Imputation of 'TM9158'" IM9159 = "Imputation of 'TM9159'" IM9160 = "Imputation of 'TM9160'" IM9161 = "Imputation of 'TM9161'" IM9176 = "Imputation of 'TM9176'" IM9178 = "Imputation of 'TM9178'" IM9187 = "Imputation of 'TM9187'" IM9188 = "Imputation of 'TM9188'" IM9189 = "Imputation of 'TM9189'" IM9190 = "Imputation of 'TM9190'" IM9192 = "Imputation of 'TM9192'" IM9194 = "Imputation of 'TM9194'" IM9196 = "Imputation of 'TM9196'" IM9197 = "Imputation of 'TM9197'" IM9202 = "Imputation of 'TM9202'" IM9204 = "Imputation of 'TM9204'" IM9206 = "Imputation of 'TM9206'" IM9208 = "Imputation of 'TM9208'" IM9210 = "Imputation of 'TM9210'" IM9218 = "Imputation of 'TM9218'" IM9222 = "Imputation of 'TM9222'" IM9224 = "Imputation of 'TM9224'" IM9226 = "Imputation of 'TM9226'" IM9228 = "Imputation of 'TM9228'" IM9230 = "Imputation of 'TM9230'" IM9232 = "Imputation of 'TM9232'" IM9234 = "Imputation of 'TM9234'" IM9236 = "Imputation of 'TM9236'" IM9238 = "Imputation of 'TM9238'" IM9240 = "Imputation of 'TM9240'" IM9242 = "Imputation of 'TM9242'" TM9300 = "During the past 12 months, was .... a" TM9302 = "How many different times did .... stay" TM9304 = "What was the reason for ...'s last" TM9306 = "What was the reason for ...'s last" TM9308 = "What was the reason for ...'s last" TM9310 = "What was the reason for ...'s last" TM9312 = "What was the reason for ...'s last" TM9314 = "Was ... a patient in a VA or military" TM9316 = "Was ... a patient in a psychiatric" TM9318 = "How many nights in all did ... spend i" TM9320 = "How many of these nights were in the" TM9322 = "During the past 4 months, about how ma" TM9324 = "During the past 12 months, how many" TM9326 = "How many of these visits or calls were" TM9327 = "During the past 12 months, how many" TM9328 = "How many of these visits were in the" TM9329 = "Is there a particular clinic, health" TM9330 = "To what kind of place does ... usually" TM9332 = "Was ... covered by a health insurance" TM9333 = "Was ... covered by a health insurance" TM9334 = "Is 'medicare' (code 172) or 'medicaid'" TM9335 = "Was...covered by medicare/medicaid" TM9336 = "I have recorded that ... Is not covere" TM9338 = "Which answer on this card best describ" IM9302 = "Imputation of 'TM9302'" I9304_12 = "Imputation of 'TM9304-12'" IM9314 = "Imputation of 'TM9314'" IM9316 = "Imputation of 'TM9316'" IM9318 = "Imputation of 'TM9318'" IM9320 = "Imputation of 'TM9320'" IM9322 = "Imputation of 'TM9322'" IM9324 = "Imputation of 'TM9324'" IM9326 = "Imputation of 'TM9326'" IM9327 = "Imputation of 'TM9327'" IM9328 = "Imputation of 'TM9328'" IM9329 = "Imputation of 'TM9329'" IM9330 = "Imputation of 'TM9330'" IM9335 = "Imputation of 'TM9335'" IM9336 = "Imputation of 'TM9336'" IM9338 = "Imputation of 'TM9338'" TM9400 = "Is...the designated parent or guardian" TM9401 = "Is...the designated parent or guardian" TM9402 = "Person number of youngest child" TM9403 = "Person number of second youngest child" TM9404 = "Person number of third youngest child" TM9405 = "Person number of fourth youngest child" TM9406 = "Person number of fifth youngest child" TM9407 = "Person number of sixth youngest child" TM9408 = "Person number of seventh youngest chil" TM9409 = "Age of youngest child" TM9410 = "Age of second youngest child" TM9411 = "Age of third youngest child" TM9412 = "Age of fourth youngest child" TM9413 = "Age of fifth youngest child" TM9414 = "Age of sixth youngest child" TM9415 = "Age of seventh youngest child" TM9416 = "Because of a physical, learning, or" TM9417 = "Because of a physical, learning, or" TM9418 = "Because of a physical, learning, or" TM9419 = "Because of a physical, learning, or" TM9420 = "Because of a physical, learning, or" TM9421 = "Because of a physical, learning, or" TM9422 = "Because of a physical, learning, or" TM9423 = "Has (youngest child's name) ever" TM9424 = "Has (second youngest child's name) eve" TM9425 = "Has (third youngest child's name) ever" TM9426 = "Has (fourth youngest child's name) eve" TM9427 = "Has (fifth youngest child's name) ever" TM9428 = "Has (sixth youngest child's name) ever" TM9429 = "Has (seventh youngest child's name) ev" TM9430 = "Is (youngest child's name) currently" TM9431 = "Is (second youngest child's name)" TM9432 = "Is (third youngest child's name)" TM9433 = "Is (fourth youngest child's name)" TM9434 = "Is (fifth youngest child's name)" TM9435 = "Is (sixth youngest child's name)" TM9436 = "Is (seventh youngest child's name)" TM9737 = "Is...the designated parent or guardian" TM9437 = "Person number of youngest child" TM9438 = "Person number of second youngest child" TM9439 = "Person number of third youngest child" TM9440 = "Person number of fourth youngest child" TM9441 = "Person number of fifth youngest child" TM9442 = "Person number of sixth youngest child" TM9443 = "Person number of seventh youngest chil" TM9444 = "Age of youngest child" TM9445 = "Age of second youngest child" TM9446 = "Age of third youngest child" TM9447 = "Age of fourth youngest child" TM9448 = "Age of fifth youngest child" TM9449 = "Age of sixth youngest child" TM9450 = "Age of seventh youngest child" TM9451 = "Does (youngest child's name) have a" TM9452 = "Does (second youngest child's name) ha" TM9453 = "Does (third youngest child's name) hav" TM9454 = "Does (fourth youngest child's name) ha" TM9455 = "Does (fifth youngest child's name) hav" TM9456 = "Does (sixth youngest child's name) hav" TM9457 = "Does (seventh youngest child's name)" TM9458 = "Does (youngest child's name) have ment" TM9459 = "Does (second youngest child's name) ha" TM9460 = "Does (third youngest child's name) hav" TM9461 = "Does (fourth youngest child's name) ha" TM9462 = "Does (fifth youngest child's name) hav" TM9463 = "Does (sixth youngest child's name) hav" TM9464 = "Does (seventh youngest child's name)" TM9465 = "Does (youngest child's name) have a" TM9466 = "Does (second youngest child's name) ha" TM9467 = "Does (third youngest child's name) hav" TM9468 = "Does (fourth youngest child's name) ha" TM9469 = "Does (fifth youngest child's name) hav" TM9470 = "Does (sixth youngest child's name) hav" TM9471 = "Does (seventh youngest child's name)" TM9472 = "Does (youngest child's name) have any" TM9473 = "Does (second youngest child's name) ha" TM9474 = "Does (third youngest child's name) hav" TM9475 = "Does (fourth youngest child's name) ha" TM9476 = "Does (fifth youngest child's name) hav" TM9477 = "Does (sixth youngest child's name) hav" TM9478 = "Does (seventh youngest child's name)" TM9479 = "Because of a physical, learning, or" TM9480 = "Because of a physical, learning, or" TM9481 = "Because of a physical, learning, or" TM9482 = "Because of a physical, learning, or" TM9483 = "Because of a physical, learning, or" TM9484 = "Because of a physical, learning, or" TM9485 = "Because of a physical, learning, or" TM9486 = "Has (youngest child's name) ever" TM9487 = "Has (second youngest child's name) eve" TM9488 = "Has (third youngest child's name) ever" TM9489 = "Has (fourth youngest child's name) eve" TM9490 = "Has (fifth youngest child's name) ever" TM9491 = "Has (sixth youngest child's name) ever" TM9492 = "Has (seventh youngest child's name) ev" TM9493 = "Is (youngest child's name) currently" TM9494 = "Is (second youngest child's name)" TM9495 = "Is (third youngest child's name)" TM9496 = "Is (fourth youngest child's name)" TM9497 = "Is (fifth youngest child's name)" TM9498 = "Is (sixth youngest child's name)" TM9499 = "Is (seventh youngest child's name)" TM9500 = "Does (youngest child's name) use a can" TM9501 = "Does (second youngest child's name) us" TM9502 = "Does (third youngest child's name) use" TM9503 = "Does (fourth youngest child's name) us" TM9504 = "Does (fifth youngest child's name) use" TM9505 = "Does (sixth youngest child's name) use" TM9506 = "Does (seventh youngest child's name) u" TM9507 = "Does (youngest child's name) use a" TM9508 = "Does (second youngest child's name) us" TM9509 = "Does (third youngest child's name) use" TM9510 = "Does (fourth youngest child's name) us" TM9511 = "Does (fifth youngest child's name) use" TM9512 = "Does (sixth youngest child's name) use" TM9513 = "Does (seventh youngest child's name) u" TM9514 = "Is 'yes' marked in TM9500 or TM9507" TM9515 = "Is 'yes' marked in TM9501 or TM9508" TM9516 = "Is 'yes' marked in TM9502 or TM9509" TM9517 = "Is 'yes' marked in TM9503 or TM9510" TM9518 = "Is 'yes' marked in TM9504 or TM9511" TM9519 = "Is 'yes' marked in TM9505 or TM9512" TM9520 = "Is 'yes' marked in TM9506 or TM9513" TM9521 = "Has (youngest child's name) used (aid" TM9522 = "Has (second youngest child's name) use" TM9523 = "Has (third youngest child's name) used" TM9524 = "Has (fourth youngest child's name) use" TM9525 = "Has (second youngest child's name) use" TM9526 = "Has (second youngest child's name) use" TM9527 = "Has (second youngest child's name) use" TM9528 = "Transcribe youngest child's person" TM9529 = "Transcribe second youngest child's" TM9530 = "Transcribe third youngest child's pers" TM9531 = "Transcribe fourth youngest child's" TM9532 = "Transcribe fifth youngest child's pers" TM9533 = "Transcribe sixth youngest child's pers" TM9534 = "Transcribe seventh youngest child's" TM9535 = "Does (youngest child's name) have" TM9536 = "Does (second youngest child's name) ha" TM9537 = "Does (third youngest child's name) hav" TM9538 = "Does (fourth youngest child's name) ha" TM9539 = "Does (fifth youngest child's name) hav" TM9540 = "Does (sixth youngest child's name) hav" TM9541 = "Does (seventh youngest child's name)" TM9542 = "Is (youngest child's name) able to see" TM9543 = "Is (second youngest child's name) able" TM9544 = "Is (third youngest child's name) able " TM9545 = "Is (fourth youngest child's name) able" TM9546 = "Is (fifth youngest child's name) able " TM9547 = "Is (sixth youngest child's name) able " TM9548 = "Is (seventh youngest child's name) abl" TM9549 = "Does (youngest child's name) have any" TM9550 = "Does (second youngest child's name) ha" TM9551 = "Does (third youngest child's name) hav" TM9552 = "Does (fourth youngest child's name) ha" TM9553 = "Does (fifth youngest child's name) hav" TM9554 = "Does (sixth youngest child's name) hav" TM9555 = "Does (seventh youngest child's name)" TM9556 = "Is (youngest child's name) able to hea" TM9557 = "Is (second youngest child's name) able" TM9558 = "Is (third youngest child's name) able " TM9559 = "Is (fourth youngest child's name) able" TM9560 = "Is (fifth youngest child's name) able " TM9561 = "Is (sixth youngest child's name) able " TM9562 = "Is (seventh youngest child's name) abl" TM9563 = "Does (youngest child's name) have a lo" TM9564 = "Does (second youngest child's name) ha" TM9565 = "Does (third youngest child's name) hav" TM9566 = "Does (fourth youngest child's name) ha" TM9567 = "Does (fifth youngest child's name) hav" TM9568 = "Does (sixth youngest child's name) hav" TM9569 = "Does (seventh youngest child's name)" TM9570 = "Because of a physical or mental" TM9571 = "Because of a physical or mental" TM9572 = "Because of a physical or mental" TM9573 = "Because of a physical or mental" TM9574 = "Because of a physical or mental" TM9575 = "Because of a physical or mental" TM9576 = "Because of a physical or mental" TM9577 = "Because of a physical or mental" TM9578 = "Because of a physical or mental" TM9579 = "Because of a physical or mental" TM9580 = "Because of a physical or mental" TM9581 = "Because of a physical or mental" TM9582 = "Because of a physical or mental" TM9583 = "Because of a physical or mental" TM9584 = "Because of a physical or mental" TM9585 = "Because of a physical or mental" TM9586 = "Because of a physical or mental" TM9587 = "Because of a physical or mental" TM9588 = "Because of a physical or mental" TM9589 = "Because of a physical or mental" TM9590 = "Because of a physical or mental" TM9591 = "Because of a physical or mental" TM9592 = "Because of a physical or mental" TM9593 = "Because of a physical or mental" TM9594 = "Because of a physical or mental" TM9595 = "Because of a physical or mental" TM9596 = "Because of a physical or mental" TM9597 = "Because of a physical or mental" TM9598 = "Because of a physical or mental" TM9599 = "Because of a physical or mental" TM9600 = "Because of a physical or mental" TM9601 = "Because of a physical or mental" TM9602 = "Because of a physical or mental" TM9603 = "Because of a physical or mental" TM9604 = "Because of a physical or mental" TM9605 = "Transcribe youngest child's person" TM9606 = "Transcribe second youngest child's" TM9607 = "Transcribe third youngest child's pers" TM9608 = "Transcribe fourth youngest child's" TM9609 = "Transcribe fifth youngest child's pers" TM9610 = "Transcribe sixth youngest child's pers" TM9611 = "Transcribe seventh youngest child's" TM9612 = "Because of a physical or mental" TM9613 = "Because of a physical or mental" TM9614 = "Because of a physical or mental" TM9615 = "Because of a physical or mental" TM9616 = "Because of a physical or mental" TM9617 = "Because of a physical or mental" TM9618 = "Because of a physical or mental" TM9619 = "Because of a physical or mental" TM9620 = "Because of a physical or mental" TM9621 = "Because of a physical or mental" TM9622 = "Because of a physical or mental" TM9624 = "Because of a physical or mental" TM9625 = "Because of a physical or mental" TM9626 = "Because of a physical or mental" TM9627 = "Because of a physical or mental" TM9628 = "Because of a physical or mental" TM9629 = "Because of a physical or mental" TM9630 = "Because of a physical or mental" TM9631 = "Because of a physical or mental" TM9632 = "Because of a physical or mental" TM9633 = "Because of a physical or mental" TM9634 = "Because of a physical or mental" TM9635 = "Because of a physical or mental" TM9636 = "Because of a physical or mental" TM9637 = "Because of a physical or mental" TM9638 = "Because of a physical or mental" TM9639 = "Because of a physical or mental" TM9640 = "Because of a physical or mental" TM9641 = "Because of a physical or mental" TM9642 = "Because of a physical or mental" TM9643 = "Because of a physical or mental" TM9644 = "Because of a physical or mental" TM9645 = "Because of a physical or mental" TM9646 = "Because of a physical or mental" TM9647 = "Because of a physical or mental" TM9648 = "Because of a physical or mental" TM9649 = "Because of a physical or mental" TM9650 = "Because of a physical or mental" TM9651 = "Because of a physical or mental" TM9652 = "Because of a physical or mental" TM9653 = "Because of a physical or mental" TM9654 = "Because of a physical or mental" TM9655 = "Because of a physical or mental" TM9656 = "Because of a physical or mental" TM9657 = "Because of a physical or mental" TM9658 = "Because of a physical or mental" TM9659 = "Because of a physical or mental" TM9660 = "Because of a physical or mental" TM9661 = "Is 'yes' (has difficulty) marked in" TM9662 = "Is 'yes' (has difficulty) marked in" TM9663 = "Is 'yes' (has difficulty) marked in" TM9664 = "Is 'yes' (has difficulty) marked in" TM9665 = "Is 'yes' (has difficulty) marked in" TM9666 = "Is 'yes' (has difficulty) marked in" TM9667 = "Is 'yes' (has difficulty) marked in" TM9668 = "I have recorded that (youngest child's" TM9669 = "I have recorded that (second youngest" TM9670 = "I have recorded that (third youngest" TM9671 = "I have recorded that (fourth youngest" TM9672 = "I have recorded that (fifth youngest" TM9673 = "I have recorded that (sixth youngest" TM9674 = "I have recorded that (seventh youngest" TM9675 = "I have recorded that (youngest child's" TM9676 = "I have recorded that (second youngest" TM9677 = "I have recorded that (third youngest" TM9678 = "I have recorded that (fourth youngest" TM9679 = "I have recorded that (fifth youngest" TM9680 = "I have recorded that (sixth youngest" TM9681 = "I have recorded that (seventh youngest" TM9682 = "I have recorded that (youngest child's" TM9683 = "I have recorded that (second youngest" TM9684 = "I have recorded that (third youngest" TM9685 = "I have recorded that (fourth youngest" TM9686 = "I have recorded that (fifth youngest" TM9687 = "I have recorded that (sixth youngest" TM9688 = "I have recorded that (seventh youngest" TM9689 = "Are any of these conditions the result" TM9690 = "Are any of these conditions the result" TM9691 = "Are any of these conditions the result" TM9692 = "Are any of these conditions the result" TM9693 = "Are any of these conditions the result" TM9694 = "Are any of these conditions the result" TM9695 = "Are any of these conditions the result" TM9696 = "Is...the designated parent or guardian" TM9697 = "Person number of youngest child" TM9698 = "Person number of second youngest child" TM9699 = "Person number of third youngest child" TM9700 = "Person number of fourth youngest child" TM9701 = "Person number of fifth youngest child" TM9702 = "Person number of sixth youngest child" TM9703 = "Person number of seventh youngest chil" TM9704 = "Age of youngest child" TM9705 = "Age of second youngest child" TM9706 = "Age of third youngest child" TM9707 = "Age of fourth youngest child" TM9708 = "Age of fifth youngest child" TM9709 = "Age of sixth youngest child" TM9710 = "Age of seventh youngest child" TM9711 = "Does (youngest child's name) have a" TM9712 = "Does (second youngest child's name) ha" TM9713 = "Does (third youngest child's name) hav" TM9714 = "Does (fourth youngest child's name) ha" TM9715 = "Does (fifth youngest child's name) hav" TM9716 = "Does (sixth youngest child's name) hav" TM9717 = "Does (seventh youngest child's name)" TM9718 = "Is (youngest child's name) 3 years of" TM9719 = "Is (second youngest child's name) 3 ye" TM9720 = "Is (third youngest child's name) 3 yea" TM9721 = "Is (fourth youngest child's name)" TM9722 = "Is (fifth youngest child's name) 3 yea" TM9723 = "Is (sixth youngest child's name) 3 yea" TM9724 = "Is (seventh youngest child's name)" TM9725 = "Does (youngest child's name) have a" TM9726 = "Does (second youngest child's name) ha" TM9727 = "Does (third youngest child's name) hav" TM9728 = "Does (fourth youngest child's name) ha" TM9729 = "Does (fifth youngest child's name) hav" TM9730 = "Does (sixth youngest child's name) hav" TM9731 = "Does (seventh youngest child's name)" IM9416 = "Imputation of 'TM9416'" IM9417 = "Imputation of 'TM9417'" IM9418 = "Imputation of 'TM9418'" IM9419 = "Imputation of 'TM9419'" IM9420 = "Imputation of 'TM9420'" IM9421 = "Imputation of 'TM9421'" IM9422 = "Imputation of 'TM9422'" IM9423 = "Imputation of 'TM9423'" IM9424 = "Imputation of 'TM9424'" IM9425 = "Imputation of 'TM9425'" IM9426 = "Imputation of 'TM9426'" IM9427 = "Imputation of 'TM9427'" IM9428 = "Imputation of 'TM9428'" IM9429 = "Imputation of 'TM9429'" IM9430 = "Imputation of 'TM9430'" IM9431 = "Imputation of 'TM9431'" IM9432 = "Imputation of 'TM9432'" IM9433 = "Imputation of 'TM9433'" IM9434 = "Imputation of 'TM9434'" IM9435 = "Imputation of 'TM9435'" IM9436 = "Imputation of 'TM9436'" IM9451 = "Imputation of 'TM9451'" IM9452 = "Imputation of 'TM9452'" IM9453 = "Imputation of 'TM9453'" IM9454 = "Imputation of 'TM9454'" IM9455 = "Imputation of 'TM9455'" IM9456 = "Imputation of 'TM9456'" IM9457 = "Imputation of 'TM9457'" IM9458 = "Imputation of 'TM9458'" IM9459 = "Imputation of 'TM9459'" IM9460 = "Imputation of 'TM9460'" IM9461 = "Imputation of 'TM9461'" IM9462 = "Imputation of 'TM9462'" IM9463 = "Imputation of 'TM9463'" IM9464 = "Imputation of 'TM9464'" IM9465 = "Imputation of 'TM9465'" IM9466 = "Imputation of 'TM9466'" IM9467 = "Imputation of 'TM9467'" IM9468 = "Imputation of 'TM9468'" IM9469 = "Imputation of 'TM9469'" IM9470 = "Imputation of 'TM9470'" IM9471 = "Imputation of 'TM9471'" IM9472 = "Imputation of 'TM9472'" IM9473 = "Imputation of 'TM9473'" IM9474 = "Imputation of 'TM9474'" IM9475 = "Imputation of 'TM9475'" IM9476 = "Imputation of 'TM9476'" IM9477 = "Imputation of 'TM9477'" IM9478 = "Imputation of 'TM9478'" IM9479 = "Imputation of 'TM9479'" IM9480 = "Imputation of 'TM9480'" IM9481 = "Imputation of 'TM9481'" IM9482 = "Imputation of 'TM9482'" IM9483 = "Imputation of 'TM9483'" IM9484 = "Imputation of 'TM9484'" IM9485 = "Imputation of 'TM9485'" IM9486 = "Imputation of 'TM9486'" IM9487 = "Imputation of 'TM9487'" IM9488 = "Imputation of 'TM9488'" IM9489 = "Imputation of 'TM9489'" IM9490 = "Imputation of 'TM9490'" IM9491 = "Imputation of 'TM9491'" IM9492 = "Imputation of 'TM9492'" IM9493 = "Imputation of 'TM9493'" IM9494 = "Imputation of 'TM9494'" IM9495 = "Imputation of 'TM9495'" IM9496 = "Imputation of 'TM9496'" IM9497 = "Imputation of 'TM9497'" IM9498 = "Imputation of 'TM9498'" IM9499 = "Imputation of 'TM9499'" IM9500 = "Imputation of 'TM9500'" IM9501 = "Imputation of 'TM9501'" IM9502 = "Imputation of 'TM9502'" IM9503 = "Imputation of 'TM9503'" IM9504 = "Imputation of 'TM9504'" IM9505 = "Imputation of 'TM9505'" IM9506 = "Imputation of 'TM9506'" IM9507 = "Imputation of 'TM9507'" IM9508 = "Imputation of 'TM9508'" IM9509 = "Imputation of 'TM9509'" IM9510 = "Imputation of 'TM9510'" IM9511 = "Imputation of 'TM9511'" IM9512 = "Imputation of 'TM9512'" IM9513 = "Imputation of 'TM9513'" IM9521 = "Imputation of 'TM9521'" IM9522 = "Imputation of 'TM9522'" IM9523 = "Imputation of 'TM9523'" IM9524 = "Imputation of 'TM9524'" IM9525 = "Imputation of 'TM9525'" IM9526 = "Imputation of 'TM9526'" IM9527 = "Imputation of 'TM9527'" IM9535 = "Imputation of 'TM9535'" IM9536 = "Imputation of 'TM9536'" IM9537 = "Imputation of 'TM9537'" IM9538 = "Imputation of 'TM9538'" IM9539 = "Imputation of 'TM9539'" IM9540 = "Imputation of 'TM9540'" IM9541 = "Imputation of 'TM9541'" IM9542 = "Imputation of 'TM9542'" IM9543 = "Imputation of 'TM9543'" IM9544 = "Imputation of 'TM9544'" IM9545 = "Imputation of 'TM9545'" IM9546 = "Imputation of 'TM9546'" IM9547 = "Imputation of 'TM9547'" IM9548 = "Imputation of 'TM9548'" IM9549 = "Imputation of 'TM9549'" IM9550 = "Imputation of 'TM9550'" IM9551 = "Imputation of 'TM9551'" IM9552 = "Imputation of 'TM9552'" IM9553 = "Imputation of 'TM9553'" IM9554 = "Imputation of 'TM9554'" IM9555 = "Imputation of 'TM9555'" IM9556 = "Imputation of 'TM9556'" IM9557 = "Imputation of 'TM9557'" IM9558 = "Imputation of 'TM9558'" IM9559 = "Imputation of 'TM9559'" IM9560 = "Imputation of 'TM9560'" IM9561 = "Imputation of 'TM9561'" IM9562 = "Imputation of 'TM9562'" IM9563 = "Imputation of 'TM9563'" IM9564 = "Imputation of 'TM9564'" IM9565 = "Imputation of 'TM9565'" IM9566 = "Imputation of 'TM9566'" IM9567 = "Imputation of 'TM9567'" IM9568 = "Imputation of 'TM9568'" IM9569 = "Imputation of 'TM9569'" IM9570 = "Imputation of 'TM9570'" IM9571 = "Imputation of 'TM9571'" IM9572 = "Imputation of 'TM9572'" IM9573 = "Imputation of 'TM9573'" IM9574 = "Imputation of 'TM9574'" IM9575 = "Imputation of 'TM9575'" IM9576 = "Imputation of 'TM9576'" IM9577 = "Imputation of 'TM9577'" IM9578 = "Imputation of 'TM9578'" IM9579 = "Imputation of 'TM9579'" IM9580 = "Imputation of 'TM9580'" IM9581 = "Imputation of 'TM9581'" IM9582 = "Imputation of 'TM9582'" IM9583 = "Imputation of 'TM9583'" IM9584 = "Imputation of 'TM9584'" IM9585 = "Imputation of 'TM9585'" IM9586 = "Imputation of 'TM9586'" IM9587 = "Imputation of 'TM9587'" IM9588 = "Imputation of 'TM9588'" IM9589 = "Imputation of 'TM9589'" IM9590 = "Imputation of 'TM9590'" IM9591 = "Imputation of 'TM9591'" IM9592 = "Imputation of 'TM9592'" IM9593 = "Imputation of 'TM9593'" IM9594 = "Imputation of 'TM9594'" IM9595 = "Imputation of 'TM9595'" IM9596 = "Imputation of 'TM9596'" IM9597 = "Imputation of 'TM9597'" IM9598 = "Imputation of 'TM9598'" IM9599 = "Imputation of 'TM9599'" IM9600 = "Imputation of 'TM9600'" IM9601 = "Imputation of 'TM9601'" IM9602 = "Imputation of 'TM9602'" IM9603 = "Imputation of 'TM9603'" IM9604 = "Imputation of 'TM9604'" IM9612 = "Imputation of 'TM9612'" IM9613 = "Imputation of 'TM9613'" IM9614 = "Imputation of 'TM9614'" IM9615 = "Imputation of 'TM9615'" IM9616 = "Imputation of 'TM9616'" IM9617 = "Imputation of 'TM9617'" IM9618 = "Imputation of 'TM9618'" IM9619 = "Imputation of 'TM9619'" IM9620 = "Imputation of 'TM9620'" IM9621 = "Imputation of 'TM9621'" IM9622 = "Imputation of 'TM9622'" IM9623 = "Imputation of 'TM9623'" IM9624 = "Imputation of 'TM9624'" IM9625 = "Imputation of 'TM9625'" IM9626 = "Imputation of 'TM9626'" IM9627 = "Imputation of 'TM9627'" IM9628 = "Imputation of 'TM9628'" IM9629 = "Imputation of 'TM9629'" IM9630 = "Imputation of 'TM9630'" IM9631 = "Imputation of 'TM9631'" IM9632 = "Imputation of 'TM9632'" IM9633 = "Imputation of 'TM9633'" IM9634 = "Imputation of 'TM9634'" IM9635 = "Imputation of 'TM9635'" IM9636 = "Imputation of 'TM9636'" IM9637 = "Imputation of 'TM9637'" IM9638 = "Imputation of 'TM9638'" IM9639 = "Imputation of 'TM9639'" IM9640 = "Imputation of 'TM9640'" IM9641 = "Imputation of 'TM9641'" IM9642 = "Imputation of 'TM9642'" IM9643 = "Imputation of 'TM9643'" IM9644 = "Imputation of 'TM9644'" IM9645 = "Imputation of 'TM9645'" IM9646 = "Imputation of 'TM9646'" IM9647 = "Imputation of 'TM9647'" IM9648 = "Imputation of 'TM9648'" IM9649 = "Imputation of 'TM9649'" IM9650 = "Imputation of 'TM9650'" IM9651 = "Imputation of 'TM9651'" IM9652 = "Imputation of 'TM9652'" IM9653 = "Imputation of 'TM9653'" IM9654 = "Imputation of 'TM9654'" IM9655 = "Imputation of 'TM9655'" IM9656 = "Imputation of 'TM9656'" IM9657 = "Imputation of 'TM9657'" IM9658 = "Imputation of 'TM9658'" IM9659 = "Imputation of 'TM9659'" IM9660 = "Imputation of 'TM9660'" IM9689 = "Imputation of 'TM9689'" IM9690 = "Imputation of 'TM9690'" IM9691 = "Imputation of 'TM9691'" IM9692 = "Imputation of 'TM9692'" IM9693 = "Imputation of 'TM9693'" IM9694 = "Imputation of 'TM9694'" IM9695 = "Imputation of 'TM9695'" IM9711 = "Imputation of 'TM9711'" IM9712 = "Imputation of 'TM9712'" IM9713 = "Imputation of 'TM9713'" IM9714 = "Imputation of 'TM9714'" IM9715 = "Imputation of 'TM9715'" IM9716 = "Imputation of 'TM9716'" IM9717 = "Imputation of 'TM9717'" IM9725 = "Imputation of 'TM9725'" IM9726 = "Imputation of 'TM9726'" IM9727 = "Imputation of 'TM9727'" IM9728 = "Imputation of 'TM9728'" IM9729 = "Imputation of 'TM9729'" IM9730 = "Imputation of 'TM9730'" IM9731 = "Imputation of 'TM9731'" TM9800 = "Is...the designated parent or guardian" TM9801 = "Person number of youngest child" TM9802 = "Person number of second youngest child" TM9803 = "Person number of third youngest child" TM9804 = "Person number of fourth youngest child" TM9805 = "Person number of fifth youngest child" TM9806 = "Person number of sixth youngest child" TM9807 = "Person number of seventh youngest chil" TM9808 = "Age of youngest child" TM9809 = "Age of second youngest child" TM9810 = "Age of third youngest child" TM9811 = "Age of fourth youngest child" TM9812 = "Age of fifth youngest child" TM9813 = "Age of sixth youngest child" TM9814 = "Age of seventh youngest child" TM9815 = "During the past 12 months, was (younge" TM9816 = "During the past 12 months, was (second" TM9817 = "During the past 12 months, was (third" TM9818 = "During the past 12 months, was (fourth" TM9819 = "During the past 12 months, was (fifth" TM9820 = "During the past 12 months, was (sixth" TM9821 = "During the past 12 months, was (sevent" TM9822 = "How many different times did (youngest" TM9823 = "How many different times did (second" TM9824 = "How many different times did (third" TM9825 = "How many different times did (fourth" TM9826 = "How many different times did (fifth" TM9827 = "How many different times did (sixth" TM9828 = "How many different times did (seventh" TM9829 = "What was the reason for (youngest" TM9830 = "What was the reason for (second younge" TM9831 = "What was the reason for (third younges" TM9832 = "What was the reason for (fourth younge" TM9833 = "What was the reason for (fifth younges" TM9834 = "What was the reason for (sixth younges" TM9835 = "What was the reason for (seventh" TM9836 = "How many nights in all did (youngest" TM9837 = "How many nights in all did (second" TM9838 = "How many nights in all did (third" TM9839 = "How many nights in all did (fourth" TM9840 = "How many nights in all did (fifth" TM9841 = "How many nights in all did (sixth" TM9842 = "How many nights in all did (seventh" TM9843 = "How many of these nights were in the" TM9844 = "How many of these nights were in the" TM9845 = "How many of these nights were in the" TM9846 = "How many of these nights were in the" TM9847 = "How many of these nights were in the" TM9848 = "How many of these nights were in the" TM9849 = "How many of these nights were in the" TM9850 = "During the past 4 months, about how ma" TM9851 = "During the past 4 months, about how ma" TM9852 = "During the past 4 months, about how ma" TM9853 = "During the past 4 months, about how ma" TM9854 = "During the past 4 months, about how ma" TM9855 = "During the past 4 months, about how ma" TM9856 = "During the past 4 months, about how ma" TM9857 = "Transcribe youngest child's person" TM9858 = "Transcribe second youngest child's" TM9859 = "Transcribe third youngest child's pers" TM9860 = "Transcribe fourth youngest child's" TM9861 = "Transcribe fifth youngest child's pers" TM9862 = "Transcribe sixth youngest child's pers" TM9863 = "Transcribe seventh youngest child's" TM9864 = "During the past 12 months, how many" TM9865 = "During the past 12 months, how many" TM9866 = "During the past 12 months, how many" TM9867 = "During the past 12 months, how many" TM9868 = "During the past 12 months, how many" TM9869 = "During the past 12 months, how many" TM9870 = "During the past 12 months, how many" TM9871 = "How many of these visits or calls were" TM9872 = "How many of these visits or calls were" TM9873 = "How many of these visits or calls were" TM9874 = "How many of these visits or calls were" TM9875 = "How many of these visits or calls were" TM9876 = "How many of these visits or calls were" TM9877 = "How many of these visits or calls were" TM9878 = "During the past 12 months, how many" TM9879 = "During the past 12 months, how many" TM9880 = "During the past 12 months, how many" TM9881 = "During the past 12 months, how many" TM9882 = "During the past 12 months, how many" TM9883 = "During the past 12 months, how many" TM9884 = "During the past 12 months, how many" TM9885 = "How many of these visits were in the" TM9886 = "How many of these visits were in the" TM9887 = "How many of these visits were in the" TM9888 = "How many of these visits were in the" TM9889 = "How many of these visits were in the" TM9890 = "How many of these visits were in the" TM9891 = "How many of these visits were in the" TM9892 = "Is there one particular person or plac" TM9893 = "Is there one particular person or plac" TM9894 = "Is there one particular person or plac" TM9895 = "Is there one particular person or plac" TM9896 = "Is there one particular person or plac" TM9897 = "Is there one particular person or plac" TM9898 = "Is there one particular person or plac" TM9899 = "To what kind of place does (youngest" TM9900 = "To what kind of place does (second" TM9901 = "To what kind of place does (third" TM9902 = "To what kind of place does (fourth" TM9903 = "To what kind of place does (fifth" TM9904 = "To what kind of place does (sixth" TM9905 = "To what kind of place does (seventh" TM9906 = "Are there any more children listed in" TM9907 = "Are there any more children listed in" TM9908 = "Are there any more children listed in" TM9909 = "Are there any more children listed in" TM9910 = "Are there any more children listed in" TM9911 = "Are there any more children listed in" TM9913 = "Were all of...'s children under age 15" TM9914 = "Were all of...'s children under age 15" TM9915 = "Were all of...'s children under age 15" TM9916 = "I have recorded that some or all" TM9917 = "Which answer on this card best" IM9822 = "Imputation of 'TM9822'" IM9823 = "Imputation of 'TM9823'" IM9824 = "Imputation of 'TM9824'" IM9825 = "Imputation of 'TM9825'" IM9826 = "Imputation of 'TM9826'" IM9827 = "Imputation of 'TM9827'" IM9828 = "Imputation of 'TM9828'" IM9829 = "Imputation of 'TM9829'" IM9830 = "Imputation of 'TM9830'" IM9831 = "Imputation of 'TM9831'" IM9832 = "Imputation of 'TM9832'" IM9833 = "Imputation of 'TM9833'" IM9834 = "Imputation of 'TM9834'" IM9835 = "Imputation of 'TM9835'" IM9836 = "Imputation of 'TM9836'" IM9837 = "Imputation of 'TM9837'" IM9838 = "Imputation of 'TM9838'" IM9839 = "Imputation of 'TM9839'" IM9840 = "Imputation of 'TM9840'" IM9841 = "Imputation of 'TM9841'" IM9842 = "Imputation of 'TM9842'" IM9843 = "Imputation of 'TM9843'" IM9844 = "Imputation of 'TM9844'" IM9845 = "Imputation of 'TM9845'" IM9846 = "Imputation of 'TM9846'" IM9847 = "Imputation of 'TM9847'" IM9848 = "Imputation of 'TM9848'" IM9849 = "Imputation of 'TM9849'" IM9850 = "Imputation of 'TM9850'" IM9851 = "Imputation of 'TM9851'" IM9852 = "Imputation of 'TM9852'" IM9853 = "Imputation of 'TM9853'" IM9854 = "Imputation of 'TM9854'" IM9855 = "Imputation of 'TM9855'" IM9856 = "Imputation of 'TM9856'" IM9864 = "Imputation of 'TM9864'" IM9865 = "Imputation of 'TM9865'" IM9866 = "Imputation of 'TM9866'" IM9867 = "Imputation of 'TM9867'" IM9868 = "Imputation of 'TM9868'" IM9869 = "Imputation of 'TM9869'" IM9870 = "Imputation of 'TM9870'" IM9871 = "Imputation of 'TM9871'" IM9872 = "Imputation of 'TM9872'" IM9873 = "Imputation of 'TM9873'" IM9874 = "Imputation of 'TM9874'" IM9875 = "Imputation of 'TM9875'" IM9876 = "Imputation of 'TM9876'" IM9877 = "Imputation of 'TM9877'" IM9878 = "Imputation of 'TM9878'" IM9879 = "Imputation of 'TM9879'" IM9880 = "Imputation of 'TM9880'" IM9881 = "Imputation of 'TM9881'" IM9882 = "Imputation of 'TM9882'" IM9883 = "Imputation of 'TM9883'" IM9884 = "Imputation of 'TM9884'" IM9885 = "Imputation of 'TM9885'" IM9886 = "Imputation of 'TM9886'" IM9887 = "Imputation of 'TM9887'" IM9888 = "Imputation of 'TM9888'" IM9889 = "Imputation of 'TM9889'" IM9890 = "Imputation of 'TM9890'" IM9891 = "Imputation of 'TM9891'" IM9892 = "Imputation of 'TM9892'" IM9893 = "Imputation of 'TM9893'" IM9894 = "Imputation of 'TM9894'" IM9895 = "Imputation of 'TM9895'" IM9896 = "Imputation of 'TM9896'" IM9897 = "Imputation of 'TM9897'" IM9898 = "Imputation of 'TM9898'" IM9899 = "Imputation of 'TM9899'" IM9900 = "Imputation of 'TM9900'" IM9901 = "Imputation of 'TM9901'" IM9902 = "Imputation of 'TM9902'" IM9903 = "Imputation of 'TM9903'" IM9904 = "Imputation of 'TM9904'" IM9905 = "Imputation of 'TM9905'" IM9914 = "Imputation of 'TM9914'" IM9915 = "Imputation of 'TM9915'" IM9916 = "Imputation of 'TM9916'" IM9917 = "Imputation of 'TM9917'" TM7000 = "Is...the designated parent or guardian" TM7001 = "Is...the designated parent or guardian" TM7002 = "Person number of youngest child" TM7003 = "Person number of second youngest child" TM7004 = "Person number of third youngest child" TM7005 = "Person number of fourth youngest child" TM7006 = "Person number of fifth youngest child" TM7007 = "Person number of sixth youngest child" TM7008 = "Person number of seventh youngest chil" TM7009 = "Age of youngest child" TM7010 = "Age of second youngest child" TM7011 = "Age of third youngest child" TM7012 = "Age of fourth youngest child" TM7013 = "Age of fifth youngest child" TM7014 = "Age of sixth youngest child" TM7015 = "Age of seventh youngest child" TM7016 = "Would you say that (youngest child's" TM7017 = "Would you say that (second youngest" TM7018 = "Would you say that (third youngest" TM7019 = "Would you say that (fourth youngest" TM7020 = "Would you say that (fifth youngest" TM7021 = "Would you say that (sixth youngest" TM7022 = "Would you say that (seventh youngest" TM7023 = "About how tall is (youngest child's" TM7024 = "About how tall is (second youngest" TM7025 = "About how tall is (third youngest" TM7026 = "About how tall is (fourth youngest" TM7027 = "About how tall is (fifth youngest" TM7028 = "About how tall is (sixth youngest" TM7029 = "About how tall is (seventh youngest" TM7030 = "About how tall is (youngest child's" TM7031 = "About how tall is (second youngest" TM7032 = "About how tall is (third youngest" TM7033 = "About how tall is (fourth youngest" TM7034 = "About how tall is (fifth youngest" TM7035 = "About how tall is (sixth youngest" TM7036 = "About how tall is (seventh youngest" TM7037 = "About how much does (youngest child's" TM7038 = "About how much does (second youngest" TM7039 = "About how much does (third youngest" TM7040 = "About how much does (fourth youngest" TM7041 = "About how much does (fifth youngest" TM7042 = "About how much does (sixth youngest" TM7043 = "About how much does (seventh youngest" TM7044 = "Is (youngest child's name) age 5?" TM7045 = "Is (second youngest child's name)" TM7046 = "Is (third youngest child's name) age 5" TM7047 = "Is (fourth youngest child's name) age " TM7048 = "Is (fifth youngest child's name) age 5" TM7049 = "Is (sixth youngest child's name) age 5" TM7050 = "Is (seventh youngest child's name)" TM7051 = "Is (youngest child's name) now enrolle" TM7052 = "Is (second youngest child's name) now" TM7053 = "Is (third youngest child's name) now" TM7054 = "Is (fourth youngest child's name) now" TM7055 = "Is (fifth youngest child's name) now" TM7056 = "Is (sixth youngest child's name) now" TM7057 = "Is (seventh youngest child's name) now" TM7058 = "For how many hours each week is" TM7059 = "For how many hours each week is (secon" TM7060 = "For how many hours each week is (third" TM7061 = "For how many hours each week is (fourt" TM7062 = "For how many hours each week is (fifth" TM7063 = "For how many hours each week is (sixth" TM7064 = "For how many hours each week is" TM7065 = "Is (youngest child's name) now enrolle" TM7066 = "Is (second youngest child's name) now" TM7067 = "Is (third youngest child's name) now" TM7068 = "Is (fourth youngest child's name) now" TM7069 = "Is (fifth youngest child's name) now" TM7070 = "Is (sixth youngest child's name) now" TM7071 = "Is (seventh youngest child's name) now" TM7072 = "Is (youngest child's name) under age 3" TM7073 = "Is (second youngest child's name) unde" TM7074 = "Is (third youngest child's name) under" TM7075 = "Is (fourth youngest child's name) unde" TM7076 = "Is (fifth youngest child's name) under" TM7077 = "Is (sixth youngest child's name) under" TM7078 = "Is (seventh youngest child's name)" TM7079 = "Is (youngest child's name) now enrolle" TM7080 = "Is (second youngest child's name) now" TM7081 = "Is (third youngest child's name) now" TM7082 = "Is (fourth youngest child's name) now" TM7083 = "Is (fifth youngest child's name) now" TM7084 = "Is (sixth youngest child's name) now" TM7085 = "Is (seventh youngest child's name) now" TM7086 = "For how many hours each week is" TM7087 = "For how many hours each week is (secon" TM7088 = "For how many hours each week is (third" TM7089 = "For how many hours each week is (fourt" TM7090 = "For how many hours each week is (fifth" TM7091 = "For how many hours each week is (sixth" TM7092 = "For how many hours each week is" TM7093 = "Is (youngest child's name) now enrolle" TM7094 = "Is (second youngest child's name) now" TM7095 = "Is (third youngest child's name) now" TM7096 = "Is (fourth youngest child's name) now" TM7097 = "Is (fifth youngest child's name) now" TM7098 = "Is (sixth youngest child's name) now" TM7099 = "Is (seventh youngest child's name) now" TM7100 = "For how many hours each week is" TM7101 = "For how many hours each week is (secon" TM7102 = "For how many hours each week is (third" TM7103 = "For how many hours each week is (fourt" TM7104 = "For how many hours each week is (fifth" TM7105 = "For how many hours each week is (sixth" TM7106 = "For how many hours each week is" TM7107 = "Is (youngest child's name) now enrolle" TM7108 = "Is (second youngest child's name) now" TM7109 = "Is (third youngest child's name) now" TM7110 = "Is (fourth youngest child's name) now" TM7111 = "Is (fifth youngest child's name) now" TM7112 = "Is (sixth youngest child's name) now" TM7113 = "Is (seventh youngest child's name) now" TM7114 = "Transcribe youngest child's person" TM7115 = "Transcribe second youngest child's" TM7116 = "Transcribe third youngest child's" TM7117 = "Transcribe fourth youngest child's" TM7118 = "Transcribe fifth youngest child's" TM7119 = "Transcribe sixth youngest child's" TM7120 = "Transcribe seventh youngest child's" TM7121 = "(is/are) (This/these) providers(s)" TM7122 = "(is/are) (This/these) providers(s)" TM7123 = "(is/are) (This/these) providers(s)" TM7124 = "(is/are) (This/these) providers(s)" TM7125 = "(is/are) (This/these) providers(s)" TM7126 = "(is/are) (This/these) providers(s)" TM7127 = "(is/are) (This/these) providers(s)" TM7128 = "For how many hours each week is" TM7129 = "For how many hours each week is (secon" TM7130 = "For how many hours each week is (third" TM7131 = "For how many hours each week is (fourt" TM7132 = "For how many hours each week is (fifth" TM7133 = "For how many hours each week is (sixth" TM7134 = "For how many hours each week is" TM7135 = "Is (youngest child's name) now being" TM7136 = "Is (second youngest child's name) now" TM7137 = "Is (third youngest child's name) now" TM7138 = "Is (fourth youngest child's name) now" TM7139 = "Is (fifth youngest child's name) now" TM7140 = "Is (sixth youngest child's name) now" TM7141 = "Is (seventh youngest child's name) now" TM7142 = "(is/are) (This/these) person(s) relate" TM7143 = "(is/are) (This/these) person(s) relate" TM7144 = "(is/are) (This/these) person(s) relate" TM7145 = "(is/are) (This/these) person(s) relate" TM7146 = "(is/are) (This/these) person(s) relate" TM7147 = "(is/are) (This/these) person(s) relate" TM7148 = "(is/are) (This/these) person(s) relate" TM7149 = "For how many hours each week is" TM7150 = "For how many hours each week is (secon" TM7151 = "For how many hours each week is (third" TM7152 = "For how many hours each week is (fourt" TM7153 = "For how many hours each week is (fifth" TM7154 = "For how many hours each week is (sixth" TM7155 = "For how many hours each week is" TM7156 = "Is 'yes' marked in TM7051?" TM7157 = "Is 'yes' marked in TM7052?" TM7158 = "Is 'yes' marked in TM7053?" TM7159 = "Is 'yes' marked in TM7054?" TM7160 = "Is 'yes' marked in TM7055?" TM7161 = "Is 'yes' marked in TM7056?" TM7162 = "Is 'yes' marked in TM7057?" TM7163 = "Is (youngest child's name) age 5 in" TM7164 = "Is (second youngest child's name) age " TM7165 = "Is (third youngest child's name) age 5" TM7166 = "Is (fourth youngest child's name) age " TM7167 = "Is (fifth youngest child's name) age 5" TM7168 = "Is (sixth youngest child's name) age 5" TM7169 = "Is (seventh youngest child's name) age" TM7170 = "Has (youngest child's name) ever" TM7171 = "Has (second youngest child's name) eve" TM7172 = "Has (third youngest child's name) ever" TM7173 = "Has (fourth youngest child's name) eve" TM7174 = "Has (fifth youngest child's name) ever" TM7175 = "Has (sixth youngest child's name) ever" TM7176 = "Has (seventh youngest child's name)" TM7177 = "How old was (youngest child's name) in" TM7178 = "How old was (second youngest child's" TM7179 = "How old was (third youngest child's" TM7180 = "How old was (fourth youngest child's" TM7181 = "How old was (fifth youngest child's" TM7182 = "How old was (sixth youngest child's" TM7184 = "How old was (youngest child's name) in" TM7185 = "How old was (second youngest child's" TM7186 = "How old was (third youngest child's" TM7187 = "How old was (fourth youngest child's" TM7188 = "How old was (fifth youngest child's" TM7189 = "How old was (sixth youngest child's" TM7190 = "How old was (seventh youngest child's" TM7191 = "Is 'yes' marked in TM7065? (youngest" TM7192 = "Is 'yes' marked in TM7066? (second" TM7193 = "Is 'yes' marked in TM7067? (third" TM7194 = "Is 'yes' marked in TM7068? (fourth" TM7195 = "Is 'yes' marked in TM7069? (fifth" TM7196 = "Is 'yes' marked in TM7070? (sixth" TM7197 = "Is 'yes' marked in TM7071? (seventh" TM7198 = "How old was (youngest child's name) in" TM7199 = "How old was (second youngest child's" TM7200 = "How old was (third youngest child's" TM7201 = "How old was (fourth youngest child's" TM7202 = "How old was (fifth youngest child's" TM7203 = "How old was (sixth youngest child's" TM7204 = "How old was (seventh youngest child's" TM7205 = "How old was (youngest child's name) in" TM7206 = "How old was (second youngest child's" TM7207 = "How old was (third youngest child's" TM7208 = "How old was (fourth youngest child's" TM7209 = "How old was (fifth youngest child's" TM7210 = "How old was (sixth youngest child's" TM7211 = "How old was (seventh youngest child's" TM7212 = "Is 'yes' marked for at least one of" TM7213 = "Is 'yes' marked for at least one of" TM7214 = "Is 'yes' marked for at least one of" TM7215 = "Is 'yes' marked for at least one of" TM7216 = "Is 'yes' marked for at least one of" TM7217 = "Is 'yes' marked for at least one of" TM7218 = "Is 'yes' marked for at least one of" TM7219 = "Other than members of (youngest child'" TM7220 = "Other than members of (second youngest" TM7221 = "Other than members of (third youngest" TM7222 = "Other than members of (fourth youngest" TM7223 = "Other than members of (fifth youngest" TM7224 = "Other than members of (sixth youngest" TM7225 = "Other than members of (seventh younges" TM7226 = "Transcribe person number and name from" TM7227 = "Transcribe person number and name from" TM7228 = "Transcribe person number and name from" TM7229 = "Transcribe person number and name from" TM7230 = "Transcribe person number and name from" TM7231 = "Transcribe person number and name from" TM7232 = "Transcribe person number and name from" TM7233 = "Thinking back to when (youngest child'" TM7234 = "Thinking back to when (second youngest" TM7235 = "Thinking back to when (third youngest" TM7236 = "Thinking back to when (fourth youngest" TM7237 = "Thinking back to when (fifth youngest" TM7238 = "Thinking back to when (sixth youngest" TM7239 = "Thinking back to when (seventh younges" TM7240 = "Thinking back to when (youngest child'" TM7241 = "Thinking back to when (second youngest" TM7242 = "Thinking back to when (third youngest" TM7243 = "Thinking back to when (fourth youngest" TM7244 = "Thinking back to when (fifth youngest" TM7245 = "Thinking back to when (sixth youngest" TM7246 = "Thinking back to when (seventh younges" TM7247 = "For how many hours each week was the" TM7248 = "For how many hours each week was the" TM7249 = "For how many hours each week was the" TM7250 = "For how many hours each week was the" TM7251 = "For how many hours each week was the" TM7252 = "For how many hours each week was the" TM7253 = "For how many hours each week was the" TM7254 = "Has (youngest child's name) ever lived" TM7255 = "Has (second youngest child's name) eve" TM7256 = "Has (third youngest child's name) ever" TM7257 = "Has (fourth youngest child's name) eve" TM7258 = "Has (fifth youngest child's name) ever" TM7259 = "Has (sixth youngest child's name) ever" TM7260 = "Has (seventh youngest child's name)" TM7261 = "Is (youngest child's name) aged 1" TM7262 = "Is (second youngest child's name) aged" TM7263 = "Is (third youngest child's name) aged " TM7264 = "Is (fourth youngest child's name) aged" TM7265 = "Is (fifth youngest child's name) aged " TM7266 = "Is (sixth youngest child's name) aged " TM7267 = "Is (seventh youngest child's name) age" TM7268 = "How many times in the past week did yo" TM7269 = "How many times in the past week did yo" TM7270 = "How many times in the past week did yo" TM7271 = "How many times in the past week did yo" TM7272 = "How many times in the past week did yo" TM7273 = "How many times in the past week did yo" TM7274 = "How many times in the past week did yo" TM7275 = "How many times in the past month did" TM7276 = "How many times in the past month did" TM7277 = "How many times in the past month did" TM7278 = "How many times in the past month did" TM7279 = "How many times in the past month did" TM7280 = "How many times in the past month did" TM7281 = "How many times in the past month did" TM7282 = "Is (youngest child's name) 3, 4, or 5" TM7283 = "Is (second youngest child's name) 3, 4" TM7284 = "Is (third youngest child's name) 3, 4," TM7285 = "Is (fourth youngest child's name) 3, 4" TM7286 = "Is (fifth youngest child's name) 3, 4," TM7287 = "Is (sixth youngest child's name) 3, 4," TM7288 = "Is (youngest child's name) 3, 4, or 5" TM7289 = "Are there family rules for (youngest" TM7290 = "Are there family rules for (second" TM7291 = "Are there family rules for (third" TM7292 = "Are there family rules for (fourth" TM7293 = "Are there family rules for (fifth" TM7294 = "Are there family rules for (sixth" TM7295 = "Are there family rules for (seventh" TM7296 = "Are there family rules about how early" TM7297 = "Are there family rules about how early" TM7298 = "Are there family rules about how early" TM7299 = "Are there family rules about how early" TM7300 = "Are there family rules about how early" TM7301 = "Are there family rules about how early" TM7302 = "Are there family rules about how early" TM7303 = "Are there family rules about how many" TM7304 = "Are there family rules about how many" TM7305 = "Are there family rules about how many" TM7306 = "Are there family rules about how many" TM7307 = "Are there family rules about how many" TM7308 = "Are there family rules about how many" TM7309 = "Are there family rules about how many" TM7310 = "Is...the designated parent or guardian" TM7311 = "Person number of youngest child" TM7312 = "Person number of second youngest child" TM7313 = "Person number of third youngest child" TM7314 = "Person number of fourth youngest child" TM7315 = "Person number of fifth youngest child" TM7316 = "Person number of sixth youngest child" TM7317 = "Person number of seventh youngest chil" TM7318 = "Age of youngest child" TM7319 = "Age of second youngest child" TM7320 = "Age of third youngest child" TM7321 = "Age of fourth youngest child" TM7322 = "Age of fifth youngest child" TM7323 = "Age of sixth youngest child" TM7324 = "Age of seventh youngest child" TM7325 = "Other than members of (youngest child'" TM7326 = "Other than members of (second youngest" TM7327 = "Other than members of (third youngest" TM7328 = "Other than members of (fourth youngest" TM7329 = "Other than members of (fifth youngest" TM7330 = "Other than members of (sixth youngest" TM7331 = "Other than members of (seventh younges" TM7332 = "Is (youngest child's name) now" TM7333 = "Is (second youngest child's name) now" TM7334 = "Is (third youngest child's name) now" TM7335 = "Is (fourth youngest child's name) now" TM7336 = "Is (fifth youngest child's name) now" TM7337 = "Is (sixth youngest child's name) now" TM7338 = "Is (seventh youngest child's name) now" TM7339 = "Has (youngest child's name) ever" TM7340 = "Has (second youngest child's name) eve" TM7341 = "Has (third youngest child's name) ever" TM7342 = "Has (fourth youngest child's name) eve" TM7343 = "Has (fifth youngest child's name) ever" TM7344 = "Has (sixth youngest child's name) ever" TM7345 = "Has (seventh youngest child's name)" TM7346 = "What is the highest grade or year" TM7347 = "What is the highest grade or year" TM7348 = "What is the highest grade or year" TM7349 = "What is the highest grade or year" TM7350 = "What is the highest grade or year" TM7351 = "What is the highest grade or year" TM7352 = "What is the highest grade or year" TM7353 = "Did (youngest child's name) ever atten" TM7354 = "Did (second youngest child's name) eve" TM7355 = "Did (third youngest child's name) ever" TM7356 = "Did (fourth youngest child's name) eve" TM7357 = "Did (fifth youngest child's name) ever" TM7358 = "Did (sixth youngest child's name) ever" TM7359 = "Did (seventh youngest child's name)" TM7360 = "How old was (youngest child's name) in" TM7361 = "How old was (second youngest child's" TM7362 = "How old was (third youngest child's" TM7363 = "How old was (fourth youngest child's" TM7364 = "How old was (fifth youngest child's" TM7365 = "How old was (sixth youngest child's" TM7366 = "How old was (seventh youngest child's" TM7367 = "How old was (youngest child's name) in" TM7368 = "How old was (second youngest child's" TM7369 = "How old was (third youngest child's" TM7370 = "How old was (fourth youngest child's" TM7371 = "How old was (fifth youngest child's" TM7372 = "How old was (sixth youngest child's" TM7373 = "How old was (seventh youngest child's" TM7374 = "Transcribe person number and name from" TM7375 = "Transcribe person number and name from" TM7376 = "Transcribe person number and name from" TM7377 = "Transcribe person number and name from" TM7378 = "Transcribe person number and name from" TM7379 = "Transcribe person number and name from" TM7380 = "Transcribe person number and name from" TM7381 = "Is kindergarten marked? (youngest" TM7382 = "Is kindergarten marked? (second" TM7383 = "Is kindergarten marked? (third" TM7384 = "Is kindergarten marked? (fourth" TM7385 = "Is kindergarten marked? (fifth younges" TM7386 = "Is kindergarten marked? (sixth" TM7387 = "Is kindergarten marked? (seventh" TM7388 = "What grade or year in school is" TM7389 = "What grade or year in school is (secon" TM7390 = "What grade or year in school is (third" TM7391 = "What grade or year in school is (fourt" TM7392 = "What grade or year in school is (fifth" TM7393 = "What grade or year in school is (sixth" TM7394 = "What grade or year in school is" TM7395 = "Is (youngest child's name) enrolled in" TM7396 = "Is (second youngest child's name)" TM7397 = "Is (third youngest child's name)" TM7398 = "Is (fourth youngest child's name)" TM7399 = "Is (fifth youngest child's name)" TM7400 = "Is (sixth youngest child's name)" TM7401 = "Is (seventh youngest child's name)" TM7402 = "Is (youngest child's name) school the" TM7403 = "Is (second youngest child's name)" TM7404 = "Is (third youngest child's name) schoo" TM7405 = "Is (fourth youngest child's name)" TM7406 = "Is (fifth youngest child's name) schoo" TM7407 = "Is (sixth youngest child's name) schoo" TM7408 = "Is (seventh youngest child's name)" TM7409 = "Is (youngest child's name) school" TM7410 = "Is (second youngest child's name)" TM7411 = "Is (third youngest child's name) schoo" TM7412 = "Is (fourth youngest child's name)" TM7413 = "Is (fifth second youngest child's name" TM7414 = "Is (sixth youngest child's name) schoo" TM7415 = "Is (seventh youngest child's name)" TM7416 = "Did (youngest child's name) ever atten" TM7417 = "Did (second youngest child's name) eve" TM7418 = "Did (third youngest child's name) ever" TM7419 = "Did (fourth youngest child's name) eve" TM7420 = "Did (fifth youngest child's name) ever" TM7421 = "Did (sixth youngest child's name) ever" TM7422 = "Did (seventh youngest child's name)" TM7423 = "How old was (youngest child's name) in" TM7424 = "How old was (second youngest child's" TM7425 = "How old was (third youngest child's" TM7426 = "How old was (fourth youngest child's" TM7427 = "How old was (fifth youngest child's" TM7428 = "How old was (sixth youngest child's" TM7429 = "How old was (seventh youngest child's" TM7430 = "How old was (youngest child's name) in" TM7431 = "How old was (second youngest child's" TM7432 = "How old was (third youngest child's" TM7433 = "How old was (fourth youngest child's" TM7434 = "How old was (fifth youngest child's" TM7435 = "How old was (sixth youngest child's" TM7436 = "How old was (seventh youngest child's" TM7437 = "Is 'no grade completed' marked?" TM7438 = "Is 'no grade completed' marked?" TM7439 = "Is 'no grade completed' marked? (third" TM7440 = "Is 'no grade completed' marked? (fourt" TM7441 = "Is 'no grade completed' marked? (fifth" TM7442 = "Is 'no grade completed' marked? (sixth" TM7443 = "Is 'no grade completed' marked?" TM7444 = "How old was (youngest child's name) in" TM7445 = "How old was (second youngest child's" TM7446 = "How old was (third youngest child's" TM7447 = "How old was (fourth youngest child's" TM7448 = "How old was (fifth youngest child's" TM7449 = "How old was (sixth youngest child's" TM7450 = "How old was (seventh youngest child's" TM7451 = "How old was (youngest child's name) in" TM7452 = "How old was (second youngest child's" TM7453 = "How old was (third youngest child's" TM7454 = "How old was (fourth youngest child's" TM7455 = "How old was (fifth youngest child's" TM7456 = "How old was (sixth youngest child's" TM7457 = "How old was (seventh youngest child's" TM7458 = "Has (youngest child's name) changed" TM7459 = "Has (second youngest child's name)" TM7460 = "Has (third youngest child's name)" TM7461 = "Has (fourth youngest child's name)" TM7462 = "Has (fifth youngest child's name)" TM7463 = "Has (sixth youngest child's name)" TM7464 = "Has (seventh youngest child's name)" TM7465 = "How many times did (youngest child's" TM7466 = "How many times did (second youngest" TM7467 = "How many times did (third youngest" TM7468 = "How many times did (fourth youngest" TM7469 = "How many times did (fifth youngest" TM7470 = "How many times did (sixth youngest" TM7471 = "How many times did (seventh youngest" TM7472 = "Transcribe person number and name from" TM7473 = "Transcribe person number and name from" TM7474 = "Transcribe person number and name from" TM7475 = "Transcribe person number and name from" TM7476 = "Transcribe person number and name from" TM7477 = "Transcribe person number and name from" TM7478 = "Transcribe person number and name from" TM7479 = "Has (youngest child's name) repeated" TM7480 = "Has (second youngest child's name)" TM7481 = "Has (third youngest child's name)" TM7482 = "Has (fourth youngest child's name)" TM7483 = "Has (fifth youngest child's name)" TM7484 = "Has (sixth youngest child's name)" TM7485 = "Has (seventh youngest child's name)" TM7486 = "Which grade or grades did (youngest" TM7487 = "Which grade or grades did (second" TM7488 = "Which grade or grades did (third" TM7489 = "Which grade or grades did (fourth" TM7490 = "Which grade or grades did (fifth" TM7491 = "Which grade or grades did (sixth" TM7492 = "Which grade or grades did (seventh" TM7493 = "Which grade or grades did (youngest" TM7494 = "Which grade or grades did (second" TM7495 = "Which grade or grades did (third" TM7496 = "Which grade or grades did (fourth" TM7497 = "Which grade or grades did (fifth" TM7498 = "Which grade or grades did (sixth" TM7499 = "Which grade or grades did (seventh" TM7500 = "Which grade or grades did (youngest" TM7501 = "Which grade or grades did (second" TM7502 = "Which grade or grades did (third" TM7503 = "Which grade or grades did (fourth" TM7504 = "Which grade or grades did (fifth" TM7505 = "Which grade or grades did (sixth" TM7506 = "Which grade or grades did (seventh" TM7507 = "Which grade or grades did (youngest" TM7508 = "Which grade or grades did (second" TM7509 = "Which grade or grades did (third" TM7510 = "Which grade or grades did (fourth" TM7511 = "Which grade or grades did (fifth" TM7512 = "Which grade or grades did (sixth" TM7513 = "Which grade or grades did (seventh" TM7514 = "Which grade or grades did (youngest" TM7515 = "Which grade or grades did (second" TM7516 = "Which grade or grades did (third" TM7517 = "Which grade or grades did (fourth" TM7518 = "Which grade or grades did (fifth" TM7519 = "Which grade or grades did (sixth" TM7520 = "Which grade or grades did (seventh" TM7521 = "Which grade or grades did (youngest" TM7522 = "Which grade or grades did (second" TM7523 = "Which grade or grades did (third" TM7524 = "Which grade or grades did (fourth" TM7525 = "Which grade or grades did (fifth" TM7526 = "Which grade or grades did (sixth" TM7527 = "Which grade or grades did (seventh" TM7528 = "Which grade or grades did (youngest" TM7529 = "Which grade or grades did (second" TM7530 = "Which grade or grades did (third" TM7531 = "Which grade or grades did (fourth" TM7532 = "Which grade or grades did (fifth" TM7533 = "Which grade or grades did (sixth" TM7534 = "Which grade or grades did (seventh" TM7535 = "Which grade or grades did (youngest" TM7536 = "Which grade or grades did (second" TM7537 = "Which grade or grades did (third" TM7538 = "Which grade or grades did (fourth" TM7539 = "Which grade or grades did (fifth" TM7540 = "Which grade or grades did (sixth" TM7541 = "Which grade or grades did (seventh" TM7542 = "Which grade or grades did (youngest" TM7543 = "Which grade or grades did (second" TM7544 = "Which grade or grades did (third" TM7545 = "Which grade or grades did (fourth" TM7546 = "Which grade or grades did (fifth" TM7547 = "Which grade or grades did (sixth" TM7548 = "Which grade or grades did (seventh" TM7549 = "Does (youngest child's name) go to a" TM7550 = "Does (second youngest child's name) go" TM7551 = "Does (third youngest child's name) go" TM7552 = "Does (fourth youngest child's name) go" TM7553 = "Does (fifth youngest child's name) go" TM7554 = "Does (sixth youngest child's name) go" TM7555 = "Does (seventh youngest child's name) g" TM7556 = "Is (youngest child's name) on a sports" TM7557 = "Is (second youngest child's name) on a" TM7558 = "Is (third youngest child's name) on a" TM7559 = "Is (fourth youngest child's name) on a" TM7560 = "Is (fifth youngest child's name) on a" TM7561 = "Is (sixth youngest child's name) on a" TM7562 = "Is (seventh youngest child's name) on " TM7563 = "Does (youngest child's name) take" TM7564 = "Does (second youngest child's name)" TM7565 = "Does (third youngest child's name) tak" TM7566 = "Does (fourth youngest child's name)" TM7567 = "Does (fifth youngest child's name) tak" TM7568 = "Does (sixth youngest child's name) tak" TM7569 = "Does (seventh youngest child's name)" TM7570 = "Does (youngest child's name)" TM7571 = "Does (second youngest child's name)" TM7572 = "Does (third youngest child's name)" TM7573 = "Does (fourth youngest child's name)" TM7574 = "Does (fifth youngest child's name)" TM7575 = "Does (sixth youngest child's name)" TM7576 = "Does (seventh youngest child's name)" TM7577 = "Are there family rules for (youngest" TM7578 = "Are there family rules for (second" TM7579 = "Are there family rules for (third" TM7580 = "Are there family rules for (fourth" TM7581 = "Are there family rules for (fifth" TM7582 = "Are there family rules for (sixth" TM7583 = "Are there family rules for (seventh" TM7584 = "Are there family rules about how early" TM7585 = "Are there family rules about how early" TM7586 = "Are there family rules about how early" TM7587 = "Are there family rules about how early" TM7588 = "Are there family rules about how early" TM7589 = "Are there family rules about how early" TM7590 = "Are there family rules about how early" TM7591 = "Are there family rules about how many" TM7592 = "Are there family rules about how many" TM7593 = "Are there family rules about how many" TM7594 = "Are there family rules about how many" TM7595 = "Are there family rules about how many" TM7596 = "Are there family rules about how many" TM7597 = "Are there family rules about how many" TM7598 = "Is...the designated parent or guardian" TM7599 = "Person number of youngest child" TM7600 = "Person number of second youngest child" TM7601 = "Person number of third youngest child" TM7602 = "Person number of fourth youngest child" TM7603 = "Person number of fifth youngest child" TM7604 = "Person number of sixth youngest child" TM7605 = "Person number of seventh youngest chil" TM7606 = "Age of youngest child" TM7607 = "Age of second youngest child" TM7608 = "Age of third youngest child" TM7609 = "Age of fourth youngest child" TM7610 = "Age of fifth youngest child" TM7611 = "Age of sixth youngest child" TM7612 = "Age of seventh youngest child" TM7613 = "Is (youngest child's name) ever" TM7614 = "Is (second youngest child's name) ever" TM7615 = "Is (third youngest child's name) ever" TM7616 = "Is (fourth youngest child's name) ever" TM7617 = "Is (fifth youngest child's name) ever" TM7618 = "Is (sixth youngest child's name) ever" TM7619 = "Is (seventh youngest child's name) eve" TM7620 = "Has (youngest child's name) ever" TM7621 = "Has (second youngest child's name) eve" TM7622 = "Has (third youngest child's name) ever" TM7623 = "Has (fourth youngest child's name) eve" TM7624 = "Has (fifth youngest child's name) ever" TM7625 = "Has (sixth youngest child's name) ever" TM7626 = "Has (seventh youngest child's name)" TM7627 = "What is the highest grade or year" TM7628 = "What is the highest grade or year" TM7629 = "What is the highest grade or year" TM7630 = "What is the highest grade or year" TM7631 = "What is the highest grade or year" TM7632 = "What is the highest grade or year" TM7633 = "What is the highest grade or year" TM7634 = "Did (youngest child's name) ever atten" TM7635 = "Did (second youngest child's name) eve" TM7636 = "Did (third youngest child's name) ever" TM7637 = "Did (fourth youngest child's name) eve" TM7638 = "Did (fifth youngest child's name) ever" TM7639 = "Did (sixth youngest child's name) ever" TM7640 = "Did (seventh youngest child's name)" TM7641 = "How old was (youngest child's name) in" TM7642 = "How old was (second youngest child's" TM7643 = "How old was (third youngest child's" TM7644 = "How old was (fourth youngest child's" TM7645 = "How old was (fifth youngest child's" TM7646 = "How old was (sixth youngest child's" TM7647 = "How old was (seventh youngest child's" TM7648 = "How old was (youngest child's name) in" TM7649 = "How old was (second youngest child's" TM7650 = "How old was (third youngest child's" TM7651 = "How old was (fourth youngest child's" TM7652 = "How old was (fifth youngest child's" TM7653 = "How old was (sixth youngest child's" TM7654 = "How old was (seventh youngest child's" TM7655 = "Is kindergarten marked? (youngest" TM7656 = "Is kindergarten marked? (second" TM7657 = "Is kindergarten marked? (third" TM7658 = "Is kindergarten marked? (fourth" TM7659 = "Is kindergarten marked? (fifth younges" TM7660 = "Is kindergarten marked? (sixth" TM7661 = "Is kindergarten marked? (seventh" TM7662 = "Person number of youngest child" TM7663 = "Person number of second youngest child" TM7664 = "Person number of third youngest child" TM7665 = "Person number of fourth youngest child" TM7666 = "Person number of fifth youngest child" TM7667 = "Person number of sixth youngest child" TM7668 = "Person number of seventh youngest chil" TM7669 = "What grade or year in school is" TM7670 = "What grade or year in school is (secon" TM7671 = "What grade or year in school is (third" TM7672 = "What grade or year in school is (fourt" TM7673 = "What grade or year in school is (fifth" TM7674 = "What grade or year in school is (sixth" TM7675 = "What grade or year in school is" TM7676 = "Is (youngest child's name) enrolled in" TM7677 = "Is (second youngest child's name)" TM7678 = "Is (third youngest child's name)" TM7679 = "Is (fourth youngest child's name)" TM7680 = "Is (fifth youngest child's name)" TM7681 = "Is (sixth youngest child's name)" TM7682 = "Is (seventh youngest child's name)" TM7683 = "Is (youngest child's name) school the" TM7684 = "Is (second youngest child's name)" TM7685 = "Is (third youngest child's name) schoo" TM7686 = "Is (fourth youngest child's name)" TM7687 = "Is (fifth youngest child's name) schoo" TM7688 = "Is (sixth youngest child's name) schoo" TM7689 = "Is (seventh youngest child's name)" TM7690 = "Is (youngest child's name) school" TM7691 = "Is (second youngest child's name)" TM7692 = "Is (third youngest child's name) schoo" TM7693 = "Is (fourth youngest child's name)" TM7694 = "Is (fifth youngest child's name) schoo" TM7695 = "Is (sixth youngest child's name) schoo" TM7696 = "Is (seventh youngest child's name)" TM7697 = "Did (youngest child's name) ever atten" TM7698 = "Did (second youngest child's name) eve" TM7699 = "Did (third youngest child's name) ever" TM7700 = "Did (fourth youngest child's name) eve" TM7701 = "Did (fifth youngest child's name) ever" TM7702 = "Did (sixth youngest child's name) ever" TM7703 = "Did (seventh youngest child's name)" TM7704 = "How old was (youngest child's name) in" TM7705 = "How old was (second youngest child's" TM7706 = "How old was (third youngest child's" TM7707 = "How old was (fourth youngest child's" TM7708 = "How old was (fifth youngest child's" TM7709 = "How old was (sixth youngest child's" TM7710 = "How old was (seventh youngest child's" TM7711 = "How old was (youngest child's name) in" TM7712 = "How old was (second youngest child's" TM7713 = "How old was (third youngest child's" TM7714 = "How old was (fourth youngest child's" TM7715 = "How old was (fifth youngest child's" TM7716 = "How old was (sixth youngest child's" TM7717 = "How old was (seventh youngest child's" TM7718 = "Is box x3 - no grade completed marked?" TM7719 = "Is box x3 - no grade completed marked?" TM7720 = "Is box x3 - no grade completed marked?" TM7721 = "Is box x3 - no grade completed marked?" TM7722 = "Is box x3 - no grade completed marked?" TM7723 = "Is box x3 - no grade completed marked?" TM7724 = "Is box x3 - no grade completed marked?" TM7725 = "How old was (youngest child's name) in" TM7726 = "How old was (second youngest child's" TM7727 = "How old was (third youngest child's" TM7728 = "How old was (fourth youngest child's" TM7729 = "How old was (fifth youngest child's" TM7730 = "How old was (sixth youngest child's" TM7731 = "How old was (seventh youngest child's" TM7732 = "How old was (youngest child's name) in" TM7733 = "How old was (second youngest child's" TM7734 = "How old was (third youngest child's" TM7735 = "How old was (fourth youngest child's" TM7736 = "How old was (fifth youngest child's" TM7737 = "How old was (sixth youngest child's" TM7738 = "How old was (seventh youngest child's" TM7739 = "Has (youngest child's name) changed" TM7740 = "Has (second youngest child's name)" TM7741 = "Has (third youngest child's name)" TM7742 = "Has (fourth youngest child's name)" TM7743 = "Has (fifth youngest child's name)" TM7744 = "Has (sixth youngest child's name)" TM7745 = "Has (seventh youngest child's name)" TM7746 = "How many times did (youngest child's" TM7747 = "How many times did (second youngest" TM7748 = "How many times did (third youngest" TM7749 = "How many times did (fourth youngest" TM7750 = "How many times did (fifth youngest" TM7751 = "How many times did (sixth youngest" TM7752 = "How many times did (seventh youngest" TM7753 = "Person number of youngest child" TM7754 = "Person number of second youngest child" TM7755 = "Person number of third youngest child" TM7756 = "Person number of fourth youngest child" TM7757 = "Person number of fifth youngest child" TM7758 = "Person number of sixth youngest child" TM7759 = "Person number of seventh youngest chil" TM7760 = "Has (youngest child's name) repeated" TM7761 = "Has (second youngest child's name)" TM7762 = "Has (third youngest child's name)" TM7763 = "Has (fourth youngest child's name)" TM7764 = "Has (fifth youngest child's name)" TM7765 = "Has (sixth youngest child's name)" TM7766 = "Has (seventh youngest child's name)" TM7767 = "Which grade or grades did (youngest" TM7768 = "Which grade or grades did (second" TM7769 = "Which grade or grades did (third" TM7770 = "Which grade or grades did (fourth" TM7771 = "Which grade or grades did (fifth" TM7772 = "Which grade or grades did (sixth" TM7773 = "Which grade or grades did (seventh" TM7774 = "Which grade or grades did (youngest" TM7775 = "Which grade or grades did (second" TM7776 = "Which grade or grades did (third" TM7777 = "Which grade or grades did (fourth" TM7778 = "Which grade or grades did (fifth" TM7779 = "Which grade or grades did (sixth" TM7780 = "Which grade or grades did (seventh" TM7781 = "Which grade or grades did (youngest" TM7782 = "Which grade or grades did (second" TM7783 = "Which grade or grades did (third" TM7784 = "Which grade or grades did (fourth" TM7785 = "Which grade or grades did (fifth" TM7786 = "Which grade or grades did (sixth" TM7787 = "Which grade or grades did (seventh" TM7788 = "Which grade or grades did (youngest" TM7789 = "Which grade or grades did (second" TM7790 = "Which grade or grades did (third" TM7791 = "Which grade or grades did (fourth" TM7792 = "Which grade or grades did (fifth" TM7793 = "Which grade or grades did (sixth" TM7794 = "Which grade or grades did (seventh" TM7795 = "Which grade or grades did (youngest" TM7796 = "Which grade or grades did (second" TM7797 = "Which grade or grades did (third" TM7798 = "Which grade or grades did (fourth" TM7799 = "Which grade or grades did (fifth" TM7800 = "Which grade or grades did (sixth" TM7801 = "Which grade or grades did (seventh" TM7802 = "Which grade or grades did (youngest" TM7803 = "Which grade or grades did (second" TM7804 = "Which grade or grades did (third" TM7805 = "Which grade or grades did (fourth" TM7806 = "Which grade or grades did (fifth" TM7807 = "Which grade or grades did (sixth" TM7808 = "Which grade or grades did (seventh" TM7809 = "Which grade or grades did (youngest" TM7810 = "Which grade or grades did (second" TM7811 = "Which grade or grades did (third" TM7812 = "Which grade or grades did (fourth" TM7813 = "Which grade or grades did (fifth" TM7814 = "Which grade or grades did (sixth" TM7815 = "Which grade or grades did (seventh" TM7816 = "Which grade or grades did (youngest" TM7817 = "Which grade or grades did (second" TM7818 = "Which grade or grades did (third" TM7819 = "Which grade or grades did (fourth" TM7820 = "Which grade or grades did (fifth" TM7821 = "Which grade or grades did (sixth" TM7822 = "Which grade or grades did (seventh" TM7823 = "Which grade or grades did (youngest" TM7824 = "Which grade or grades did (second" TM7825 = "Which grade or grades did (third" TM7826 = "Which grade or grades did (fourth" TM7827 = "Which grade or grades did (fifth" TM7828 = "Which grade or grades did (sixth" TM7829 = "Which grade or grades did (seventh" TM7830 = "Which grade or grades did (youngest" TM7831 = "Which grade or grades did (second" TM7832 = "Which grade or grades did (third" TM7833 = "Which grade or grades did (fourth" TM7834 = "Which grade or grades did (fifth" TM7835 = "Which grade or grades did (sixth" TM7836 = "Which grade or grades did (seventh" TM7837 = "Which grade or grades did (youngest" TM7838 = "Which grade or grades did (second" TM7839 = "Which grade or grades did (third" TM7840 = "Which grade or grades did (fourth" TM7841 = "Which grade or grades did (fifth" TM7842 = "Which grade or grades did (sixth" TM7843 = "Which grade or grades did (seventh" TM7844 = "Which grade or grades did (youngest" TM7845 = "Which grade or grades did (second" TM7846 = "Which grade or grades did (third" TM7847 = "Which grade or grades did (fourth" TM7848 = "Which grade or grades did (fifth" TM7849 = "Which grade or grades did (sixth" TM7850 = "Which grade or grades did (seventh" TM7851 = "Which grade or grades did (youngest" TM7852 = "Which grade or grades did (second" TM7853 = "Which grade or grades did (third" TM7854 = "Which grade or grades did (fourth" TM7855 = "Which grade or grades did (fifth" TM7856 = "Which grade or grades did (sixth" TM7857 = "Which grade or grades did (seventh" TM7858 = "Has (youngest child's name) ever been" TM7859 = "Has (second youngest child's name) eve" TM7860 = "Has (third youngest child's name) ever" TM7861 = "Has (fourth youngest child's name) eve" TM7862 = "Has (fifth youngest child's name) ever" TM7863 = "Has (sixth youngest child's name) ever" TM7864 = "Has (seventh youngest child's name)" TM7865 = "How many times has this happened?" TM7866 = "How many times has this happened? (2nd" TM7867 = "How many times has this happened? (3rd" TM7868 = "How many times has this happened? (4th" TM7869 = "How many times has this happened? (5th" TM7870 = "How many times has this happened?" TM7871 = "How many times has this happened?" TM7872 = "What grade was (youngest child's name)" TM7873 = "What grade was (second youngest child'" TM7874 = "What grade was (third youngest child's" TM7875 = "What grade was (fourth youngest child'" TM7876 = "What grade was (fifth youngest child's" TM7877 = "What grade was (sixth youngest child's" TM7878 = "What grade was (seventh youngest" TM7879 = "Is (youngest child's name) on a sports" TM7880 = "Is (second youngest child's name) on a" TM7881 = "Is (third youngest child's name) on a" TM7882 = "Is (fourth youngest child's name) on a" TM7883 = "Is (fifth youngest child's name) on a" TM7884 = "Is (sixth youngest child's name) on a" TM7885 = "Is (seventh youngest child's name) on " TM7886 = "Does (youngest child's name) take" TM7887 = "Does (second youngest child's name)" TM7888 = "Does (third youngest child's name) tak" TM7889 = "Does (fourth youngest child's name)" TM7890 = "Does (fifth youngest child's name) tak" TM7891 = "Does (sixth youngest child's name) tak" TM7892 = "Does (seventh youngest child's name)" TM7893 = "Does (youngest child's name)" TM7894 = "Does (second youngest child's name)" TM7895 = "Does (third youngest child's name)" TM7896 = "Does (fourth youngest child's name)" TM7897 = "Does (fifth youngest child's name)" TM7898 = "Does (sixth youngest child's name)" TM7899 = "Does (seventh youngest child's name)" TM7900 = "Person number of youngest child" TM7901 = "Person number of second youngest child" TM7902 = "Person number of third youngest child" TM7903 = "Person number of fourth youngest child" TM7904 = "Person number of fifth youngest child" TM7905 = "Person number of sixth youngest child" TM7906 = "Person number of seventh youngest chil" TM7907 = "Are there family rules for (youngest" TM7908 = "Are there family rules for (second" TM7909 = "Are there family rules for (third" TM7910 = "Are there family rules for (fourth" TM7911 = "Are there family rules for (fifth" TM7912 = "Are there family rules for (sixth" TM7913 = "Are there family rules for (seventh" TM7914 = "Are there family rules about how early" TM7915 = "Are there family rules about how early" TM7916 = "Are there family rules about how early" TM7917 = "Are there family rules about how early" TM7918 = "Are there family rules about how early" TM7919 = "Are there family rules about how early" TM7920 = "Are there family rules about how early" TM7921 = "Are there family rules about how many" TM7922 = "Are there family rules about how many" TM7923 = "Are there family rules about how many" TM7924 = "Are there family rules about how many" TM7925 = "Are there family rules about how many" TM7926 = "Are there family rules about how many" TM7927 = "Are there family rules about how many" TM7928 = "Is...the designated parent or guardian" TM7929 = "How much would you say that - people i" TM7930 = "How much would you say that - we watch" TM7931 = "How much would you say that - there ar" TM7932 = "How much would you say that - there ar" TM7933 = "How much would you say that - if my" TM7934 = "How much would you say that - I keep m" TM7935 = "How much would you say that - there ar" TM7936 = "Is this the reference person's" TM7937 = "On a scale of 0 to 10, where 0 is the" TM7938 = "On a scale of 0 to 10, where 0 is the" TM7939 = "On a scale of 0 to 10, where 0 is the" TM7940 = "Do you consider your" TM7941 = "How about your home? Do you consider" IMP7023 = "Imputation of 'TM7023'" IMP7024 = "Imputation of 'TM7024'" IMP7025 = "Imputation of 'TM7025'" IMP7026 = "Imputation of 'TM7026'" IMP7027 = "Imputation of 'TM7027'" IMP7028 = "Imputation of 'TM7028'" IMP7029 = "Imputation of 'TM7029'" IMP7030 = "Imputation of 'TM7030'" IMP7031 = "Imputation of 'TM7031'" IMP7032 = "Imputation of 'TM7032'" IMP7033 = "Imputation of 'TM7033'" IMP7034 = "Imputation of 'TM7034'" IMP7035 = "Imputation of 'TM7035'" IMP7036 = "Imputation of 'TM7036'" IMP7037 = "Imputation of 'TM7037'" IMP7038 = "Imputation of 'TM7038'" IMP7039 = "Imputation of 'TM7039'" IMP7040 = "Imputation of 'TM7040'" IMP7041 = "Imputation of 'TM7041'" IMP7042 = "Imputation of 'TM7042'" IMP7043 = "Imputation of 'TM7043'" IMP7388 = "Imputation of 'TM7388'" IMP7389 = "Imputation of 'TM7389'" IMP7390 = "Imputation of 'TM7390'" IMP7391 = "Imputation of 'TM7391'" IMP7392 = "Imputation of 'TM7392'" IMP7393 = "Imputation of 'TM7393'" IMP7394 = "Imputation of 'TM7394'" IMP7669 = "Imputation of 'TM7669'" IMP7670 = "Imputation of 'TM7670'" IMP7671 = "Imputation of 'TM7671'" IMP7672 = "Imputation of 'TM7672'" IMP7673 = "Imputation of 'TM7673'" IMP7674 = "Imputation of 'TM7674'" IMP7675 = "Imputation of 'TM7675'" ; proc print data=library.sip92t9 (obs=6); FORMAT STATE STATE. ITEM36B ITEM36B. INTVW INTVW. PP_MIS5 PP_MIS5L. RRP RRP. AGE AGE. SEX SEX. RACE RACE. MS MS. PNSP PNSP. PNPT PNPT. HIGRADE HIGRADE. GRD_CMPL GRD_CMPL. ETHNICTY ETHNICTY. TM8000 TM8000L. TM8001 TM8001L. TM8002 TM8002L. TM8004 TM8004L. TM8006 TM8006L. TM8008 TM8008L. TM8010 TM8010L. TM8012 TM8012L. TM8014 TM8014L. TM8016 TM8016L. TM8018 TM8018L. TM8020 TM8020L. TM8022 TM8022L. TM8024 TM8024L. TM8026 TM8026L. TM8028 TM8028L. TM8030 TM8030L. TM8032 TM8032L. TM8034 TM8034L. TM8036 TM8036L. TM8038 TM8038L. TM8040 TM8040L. TM8042 TM8042L. TM8044 TM8044L. TM8046 TM8046L. TM8048 TM8048L. TM8050 TM8050L. TM8052 TM8052L. TM8054 TM8054L. TM8056 TM8056L. TM8058 TM8058L. TM8060 TM8060L. TM8062 TM8062L. TM8064 TM8064L. TM8066 TM8066L. TM8068 TM8068L. TM8070 TM8070L. TM8072 TM8072L. TM7990 TM7990L. TM7992 TM7992L. TM8100 TM8100L. TM8105 TM8105L. TM8106 TM8106L. TM8107 TM8107L. TM8108 TM8108L. TM8109 TM8109L. TM8114 TM8114L. TM8116 TM8116L. TM8118 TM8118L. TM8120 TM8120L. TM8122 TM8122L. TM8124 TM8124L. TM8126 TM8126L. TM8128 TM8128L. TM8130 TM8130L. TM8132 TM8132L. TM8134 TM8134L. TM8136 TM8136L. TM8138 TM8138L. TM8140 TM8140L. TM8142 TM8142L. TM8144 TM8144L. TM8146 TM8146L. TM8148 TM8148L. TM8150 TM8150L. TM8152 TM8152L. TM8154 TM8154L. TM8156 TM8156L. TM8158 TM8158L. TM8160 TM8160L. TM8162 TM8162L. TM8164 TM8164L. TM8166 TM8166L. TM8168 TM8168L. TM8170 TM8170L. TM8172 TM8172L. TM8174 TM8174L. TM8176 TM8176L. TM8178 TM8178L. TM8180 TM8180L. TM8182 TM8182L. TM8184 TM8184L. TM8186 TM8186L. TM8188 TM8188L. TM8190 TM8190L. TM8192 TM8192L. TM8194 TM8194L. TM8196 TM8196L. TM8198 TM8198L. TM8200 TM8200L. TM8202 TM8202L. TM8204 TM8204L. TM8206 TM8206L. TM8208 TM8208L. TM8210 TM8210L. TM8212 TM8212L. TM8322 TM8322L. TM8324 TM8324L. TM8326 TM8326L. TM8328 TM8328L. TM8400 TM8400L. TM8401 TM8401L. TM8402 TM8402L. TM8403 TM8403L. TM8404 TM8404L. TM8405 TM8405L. TM8406 TM8406L. TM8407 TM8407L. TM8408 TM8408L. TM8409 TM8409L. TM8410 TM8410L. TM8411 TM8411L. TM8412 TM8412L. TM8413 TM8413L. TM8414 TM8414L. TM8415 TM8415L. TM8416 TM8416L. TM8417 TM8417L. TM8418 TM8418L. TM8435 TM8435L. TM8436 TM8436L. TM8437 TM8437L. TM8438 TM8438L. TM8439 TM8439L. TM8440 TM8440L. TM8441 TM8441L. TM8442 TM8442L. TM8443 TM8443L. TM8444 TM8444L. TM8445 TM8445L. TM8446 TM8446L. TM8447 TM8447L. TM8448 TM8448L. TM8449 TM8449L. TM8450 TM8450L. TM8451 TM8451L. TM8452 TM8452L. TM8453 TM8453L. TM8454 TM8454L. TM8455 TM8455L. TM8456 TM8456L. TM8457 TM8457L. TM8458 TM8458L. TM8459 TM8459L. TM8460 TM8460L. TM8461 TM8461L. TM8462 TM8462L. TM8463 TM8463L. TM8464 TM8464L. TM8465 TM8465L. TM8466 TM8466L. TM8467 TM8467L. TM8468 TM8468L. TM8469 TM8469L. TM8470 TM8470L. TM8471 TM8471L. TM8472 TM8472L. TM8473 TM8473L. TM8474 TM8474L. TM8475 TM8475L. TM8476 TM8476L. TM8477 TM8477L. TM8478 TM8478L. TM8479 TM8479L. TM8480 TM8480L. TM8481 TM8481L. TM8482 TM8482L. TM8483 TM8483L. TM8484 TM8484L. TM8485 TM8485L. TM8486 TM8486L. TM8487 TM8487L. TM8488 TM8488L. TM8489 TM8489L. TM8490 TM8490L. TM8491 TM8491L. TM8492 TM8492L. TM8493 TM8493L. TM8494 TM8494L. TM8495 TM8495L. TM8496 TM8496L. TM8497 TM8497L. TM8498 TM8498L. TM8499 TM8499L. TM8500 TM8500L. TM8501 TM8501L. TM8502 TM8502L. TM8503 TM8503L. TM8504 TM8504L. TM8505 TM8505L. TM8506 TM8506L. TM8507 TM8507L. TM8508 TM8508L. TM8509 TM8509L. TM8510 TM8510L. TM8511 TM8511L. TM8512 TM8512L. TM8513 TM8513L. TM8514 TM8514L. TM8515 TM8515L. TM8516 TM8516L. TM8517 TM8517L. TM8518 TM8518L. TM8519 TM8519L. TM8520 TM8520L. TM8521 TM8521L. TM8522 TM8522L. TM8523 TM8523L. TM8524 TM8524L. TM8525 TM8525L. TM8526 TM8526L. TM8527 TM8527L. TM8528 TM8528L. TM8529 TM8529L. TM8530 TM8530L. TM8531 TM8531L. TM8532 TM8532L. TM8533 TM8533L. TM8534 TM8534L. TM8535 TM8535L. TM8536 TM8536L. TM8537 TM8537L. TM8538 TM8538L. TM8539 TM8539L. TM8540 TM8540L. TM8541 TM8541L. TM8542 TM8542L. TM8543 TM8543L. TM8544 TM8544L. TM8545 TM8545L. TM8546 TM8546L. TM8547 TM8547L. TM8548 TM8548L. TM8549 TM8549L. TM8550 TM8550L. TM8551 TM8551L. TM8552 TM8552L. TM8553 TM8553L. TM8554 TM8554L. TM8555 TM8555L. TM8556 TM8556L. TM8557 TM8557L. TM8558 TM8558L. TM8559 TM8559L. TM8560 TM8560L. TM8561 TM8561L. TM8562 TM8562L. TM8563 TM8563L. TM8564 TM8564L. TM8565 TM8565L. TM8566 TM8566L. TM8567 TM8567L. TM8568 TM8568L. TM8569 TM8569L. TM8570 TM8570L. TM8571 TM8571L. TM8572 TM8572L. TM8573 TM8573L. TM8574 TM8574L. TM8575 TM8575L. TM8576 TM8576L. TM8577 TM8577L. TM8578 TM8578L. TM8579 TM8579L. TM8580 TM8580L. TM8581 TM8581L. TM8583 TM8583L. TM8584 TM8584L. TM8585 TM8585L. TM8586 TM8586L. TM8587 TM8587L. TM8588 TM8588L. TM8589 TM8589L. TM8590 TM8590L. TM8591 TM8591L. TM8592 TM8592L. TM8593 TM8593L. TM8594 TM8594L. TM8595 TM8595L. TM8596 TM8596L. TM8597 TM8597L. TM8598 TM8598L. TM8599 TM8599L. TM8600 TM8600L. TM8601 TM8601L. TM8602 TM8602L. TM8603 TM8603L. TM8604 TM8604L. TM8605 TM8605L. TM8606 TM8606L. TM8607 TM8607L. TM8608 TM8608L. TM8609 TM8609L. TM8610 TM8610L. TM8611 TM8611L. TM8612 TM8612L. TM8613 TM8613L. TM8614 TM8614L. TM8615 TM8615L. TM8616 TM8616L. TM8617 TM8617L. TM8618 TM8618L. TM8619 TM8619L. TM8620 TM8620L. TM8621 TM8621L. TM8622 TM8622L. TM8623 TM8623L. TM8624 TM8624L. TM8625 TM8625L. TM8626 TM8626L. TM8627 TM8627L. TM8628 TM8628L. TM8629 TM8629L. TM8630 TM8630L. TM8631 TM8631L. TM8632 TM8632L. TM8633 TM8633L. TM8634 TM8634L. TM8635 TM8635L. TM8636 TM8636L. TM8637 TM8637L. TM8638 TM8638L. TM8639 TM8639L. TM8640 TM8640L. TM8641 TM8641L. TM8642 TM8642L. TM8643 TM8643L. TM8644 TM8644L. TM8645 TM8645L. TM8646 TM8646L. TM8648 TM8648L. TM8649 TM8649L. TM8650 TM8650L. TM8651 TM8651L. TM8652 TM8652L. TM8653 TM8653L. TM8654 TM8654L. TM8655 TM8655L. TM8656 TM8656L. TM8658 TM8658L. TM8660 TM8660L. TM8662 TM8662L. TM8664 TM8664L. TM8666 TM8666L. TM8668 TM8668L. TM8670 TM8670L. TM8672 TM8672L. TM8674 TM8674L. TM8676 TM8676L. TM8678 TM8678L. TM8680 TM8680L. TM8682 TM8682L. TM8684 TM8684L. TM8686 TM8686L. TM8688 TM8688L. TM8690 TM8690L. TM8692 TM8692L. TM8694 TM8694L. TM8696 TM8696L. TM8698 TM8698L. TM8700 TM8700L. TM8702 TM8702L. TM8704 TM8704L. TM8706 TM8706L. TM8708 TM8708L. TM8710 TM8710L. TM8712 TM8712L. TM8714 TM8714L. TM8715 TM8715L. TM8716 TM8716L. TM8717 TM8717L. TM8718 TM8718L. TM8719 TM8719L. TM8720 TM8720L. TM8721 TM8721L. TM8722 TM8722L. TM8723 TM8723L. TM8724 TM8724L. TM8725 TM8725L. TM8726 TM8726L. TM8727 TM8727L. TM8728 TM8728L. TM8729 TM8729L. TM8730 TM8730L. TM8731 TM8731L. TM8732 TM8732L. TM8733 TM8733L. TM8734 TM8734L. TM8735 TM8735L. TM8736 TM8736L. TM8737 TM8737L. TM8738 TM8738L. TM8739 TM8739L. TM8740 TM8740L. TM8741 TM8741L. TM8742 TM8742L. TM8743 TM8743L. TM8744 TM8744L. TM8745 TM8745L. TM8746 TM8746L. TM8747 TM8747L. TM8748 TM8748L. TM8749 TM8749L. TM8750 TM8750L. TM8751 TM8751L. TM8752 TM8752L. TM8753 TM8753L. TM8754 TM8754L. TM8755 TM8755L. TM8756 TM8756L. TM8757 TM8757L. TM8758 TM8758L. TM8759 TM8759L. TM8760 TM8760L. TM8761 TM8761L. TM8762 TM8762L. TM8763 TM8763L. TM8764 TM8764L. TM8765 TM8765L. TM8766 TM8766L. TM8767 TM8767L. TM8768 TM8768L. TM8769 TM8769L. TM8770 TM8770L. TM8771 TM8771L. TM8772 TM8772L. TM8773 TM8773L. TM8774 TM8774L. TM8775 TM8775L. TM8776 TM8776L. TM8777 TM8777L. TM8779 TM8779L. TM8780 TM8780L. TM8781 TM8781L. TM8782 TM8782L. TM8783 TM8783L. TM8784 TM8784L. TM8785 TM8785L. TM8786 TM8786L. TM8787 TM8787L. TM8788 TM8788L. TM8789 TM8789L. TM8790 TM8790L. TM8791 TM8791L. TM8792 TM8792L. TM8793 TM8793L. TM8794 TM8794L. TM8795 TM8795L. TM8796 TM8796L. TM8797 TM8797L. TM8798 TM8798L. TM8799 TM8799L. TM8800 TM8800L. TM8801 TM8801L. TM8802 TM8802L. TM8803 TM8803L. TM8804 TM8804L. TM8805 TM8805L. TM8806 TM8806L. TM8807 TM8807L. TM8808 TM8808L. TM8809 TM8809L. TM8810 TM8810L. TM8811 TM8811L. TM8812 TM8812L. TM8813 TM8813L. TM8814 TM8814L. TM8815 TM8815L. TM8816 TM8816L. TM8817 TM8817L. TM8818 TM8818L. TM8819 TM8819L. TM8820 TM8820L. TM8821 TM8821L. TM8822 TM8822L. TM8823 TM8823L. TM8824 TM8824L. TM8825 TM8825L. TM8826 TM8826L. TM8827 TM8827L. TM8828 TM8828L. TM8829 TM8829L. TM8830 TM8830L. TM8831 TM8831L. TM8832 TM8832L. TM8833 TM8833L. TM8834 TM8834L. TM8835 TM8835L. TM8836 TM8836L. TM8837 TM8837L. TM8838 TM8838L. TM8839 TM8839L. TM8840 TM8840L. TM8841 TM8841L. TM8842 TM8842L. TM8843 TM8843L. TM8844 TM8844L. TM8845 TM8845L. TM8846 TM8846L. TM8847 TM8847L. TM8848 TM8848L. TM8849 TM8849L. TM8850 TM8850L. TM8851 TM8851L. TM8853 TM8853L. TM8854 TM8854L. TM8855 TM8855L. TM8856 TM8856L. TM8857 TM8857L. TM8858 TM8858L. TM8859 TM8859L. TM8862 TM8862L. TM8864 TM8864L. TM8866 TM8866L. TM8868 TM8868L. TM8869 TM8869L. TM8870 TM8870L. TM8871 TM8871L. TM8872 TM8872L. TM8873 TM8873L. TM8874 TM8874L. TM8875 TM8875L. TM8876 TM8876L. TM8877 TM8877L. TM8878 TM8878L. TM8879 TM8879L. TM8880 TM8880L. TM8881 TM8881L. TM8882 TM8882L. TM8883 TM8883L. TM8884 TM8884L. TM8885 TM8885L. TM8886 TM8886L. TM8887 TM8887L. TM8888 TM8888L. TM8889 TM8889L. TM8890 TM8890L. TM8891 TM8891L. TM8892 TM8892L. TM8893 TM8893L. TM8894 TM8894L. TM8895 TM8895L. TM8896 TM8896L. TM8897 TM8897L. TM8898 TM8898L. TM8900 TM8900L. TM8901 TM8901L. TM8902 TM8902L. TM8903 TM8903L. TM8904 TM8904L. TM8905 TM8905L. TM8906 TM8906L. TM8907 TM8907L. TM8908 TM8908L. TM8909 TM8909L. TM8910 TM8910L. TM9002 TM9002L. TM9004 TM9004L. TM9006 TM9006L. TM9007 TM9007L. TM9008 TM9008L. TM9010 TM9010L. TM9012 TM9012L. TM9014 TM9014L. TM9016 TM9016L. TM9018 TM9018L. TM9019 TM9019L. TM9020 TM9020L. TM9022 TM9022L. TM9024 TM9024L. TM9026 TM9026L. TM9028 TM9028L. TM9030 TM9030L. TM9032 TM9032L. TM9034 TM9034L. TM9036 TM9036L. TM9038 TM9038L. TM9040 TM9040L. TM9042 TM9042L. TM9044 TM9044L. TM9100 TM9100L. TM9102 TM9102L. TM9104 TM9104L. TM9106 TM9106L. TM9108 TM9108L. TM9110 TM9110L. TM9112 TM9112L. TM9114 TM9114L. TM9116 TM9116L. TM9118 TM9118L. TM9120 TM9120L. TM9122 TM9122L. TM9124 TM9124L. TM9126 TM9126L. TM9128 TM9128L. TM9130 TM9130L. TM9132 TM9132L. TM9134 TM9134L. TM9136 TM9136L. TM9138 TM9138L. TM9139 TM9139L. TM9140 TM9140L. TM9141 TM9141L. TM9142 TM9142L. TM9143 TM9143L. TM9144 TM9144L. TM9145 TM9145L. TM9146 TM9146L. TM9147 TM9147L. TM9148 TM9148L. TM9149 TM9149L. TM9150 TM9150L. TM9151 TM9151L. TM9152 TM9152L. TM9153 TM9153L. TM9154 TM9154L. TM9155 TM9155L. TM9156 TM9156L. TM9157 TM9157L. TM9158 TM9158L. TM9159 TM9159L. TM9160 TM9160L. TM9161 TM9161L. TM9162 TM9162L. TM9176 TM9176L. TM9178 TM9178L. TM9180 TM9180L. TM9182 TM9182L. TM9183 TM9183L. TM9184 TM9184L. TM9185 TM9185L. TM9186 TM9186L. TM9187 TM9187L. TM9188 TM9188L. TM9189 TM9189L. TM9190 TM9190L. TM9192 TM9192L. TM9194 TM9194L. TM9196 TM9196L. TM9197 TM9197L. TM9198 TM9198L. TM9200 TM9200L. TM9202 TM9202L. TM9204 TM9204L. TM9206 TM9206L. TM9208 TM9208L. TM9210 TM9210L. TM9212 TM9212L. TM9214 TM9214L. TM9216 TM9216L. TM9218 TM9218L. TM9220 TM9220L. TM9222 TM9222L. TM9224 TM9224L. TM9226 TM9226L. TM9228 TM9228L. TM9230 TM9230L. TM9232 TM9232L. TM9234 TM9234L. TM9236 TM9236L. TM9238 TM9238L. TM9240 TM9240L. TM9242 TM9242L. TM9300 TM9300L. TM9302 TM9302L. TM9304 TM9304L. TM9306 TM9306L. TM9308 TM9308L. TM9310 TM9310L. TM9312 TM9312L. TM9314 TM9314L. TM9316 TM9316L. TM9318 TM9318L. TM9320 TM9320L. TM9322 TM9322L. TM9324 TM9324L. TM9326 TM9326L. TM9327 TM9327L. TM9328 TM9328L. TM9329 TM9329L. TM9330 TM9330L. TM9332 TM9332L. TM9333 TM9333L. TM9334 TM9334L. TM9335 TM9335L. TM9336 TM9336L. TM9338 TM9338L. TM9400 TM9400L. TM9401 TM9401L. TM9402 TM9402L. TM9403 TM9403L. TM9404 TM9404L. TM9405 TM9405L. TM9406 TM9406L. TM9407 TM9407L. TM9408 TM9408L. TM9409 TM9409L. TM9410 TM9410L. TM9411 TM9411L. TM9412 TM9412L. TM9413 TM9413L. TM9414 TM9414L. TM9415 TM9415L. TM9416 TM9416L. TM9417 TM9417L. TM9418 TM9418L. TM9419 TM9419L. TM9420 TM9420L. TM9421 TM9421L. TM9422 TM9422L. TM9423 TM9423L. TM9424 TM9424L. TM9425 TM9425L. TM9426 TM9426L. TM9427 TM9427L. TM9428 TM9428L. TM9429 TM9429L. TM9430 TM9430L. TM9431 TM9431L. TM9432 TM9432L. TM9433 TM9433L. TM9434 TM9434L. TM9435 TM9435L. TM9436 TM9436L. TM9737 TM9737L. TM9437 TM9437L. TM9438 TM9438L. TM9439 TM9439L. TM9440 TM9440L. TM9441 TM9441L. TM9442 TM9442L. TM9443 TM9443L. TM9444 TM9444L. TM9445 TM9445L. TM9446 TM9446L. TM9447 TM9447L. TM9448 TM9448L. TM9449 TM9449L. TM9450 TM9450L. TM9451 TM9451L. TM9452 TM9452L. TM9453 TM9453L. TM9454 TM9454L. TM9455 TM9455L. TM9456 TM9456L. TM9457 TM9457L. TM9458 TM9458L. TM9459 TM9459L. TM9460 TM9460L. TM9461 TM9461L. TM9462 TM9462L. TM9463 TM9463L. TM9464 TM9464L. TM9465 TM9465L. TM9466 TM9466L. TM9467 TM9467L. TM9468 TM9468L. TM9469 TM9469L. TM9470 TM9470L. TM9471 TM9471L. TM9472 TM9472L. TM9473 TM9473L. TM9474 TM9474L. TM9475 TM9475L. TM9476 TM9476L. TM9477 TM9477L. TM9478 TM9478L. TM9479 TM9479L. TM9480 TM9480L. TM9481 TM9481L. TM9482 TM9482L. TM9483 TM9483L. TM9484 TM9484L. TM9485 TM9485L. TM9486 TM9486L. TM9487 TM9487L. TM9488 TM9488L. TM9489 TM9489L. TM9490 TM9490L. TM9491 TM9491L. TM9492 TM9492L. TM9493 TM9493L. TM9494 TM9494L. TM9495 TM9495L. TM9496 TM9496L. TM9497 TM9497L. TM9498 TM9498L. TM9499 TM9499L. TM9500 TM9500L. TM9501 TM9501L. TM9502 TM9502L. TM9503 TM9503L. TM9504 TM9504L. TM9505 TM9505L. TM9506 TM9506L. TM9507 TM9507L. TM9508 TM9508L. TM9509 TM9509L. TM9510 TM9510L. TM9511 TM9511L. TM9512 TM9512L. TM9513 TM9513L. TM9514 TM9514L. TM9515 TM9515L. TM9516 TM9516L. TM9517 TM9517L. TM9518 TM9518L. TM9519 TM9519L. TM9520 TM9520L. TM9521 TM9521L. TM9522 TM9522L. TM9523 TM9523L. TM9524 TM9524L. TM9525 TM9525L. TM9526 TM9526L. TM9527 TM9527L. TM9528 TM9528L. TM9529 TM9529L. TM9530 TM9530L. TM9531 TM9531L. TM9532 TM9532L. TM9533 TM9533L. TM9534 TM9534L. TM9535 TM9535L. TM9536 TM9536L. TM9537 TM9537L. TM9538 TM9538L. TM9539 TM9539L. TM9540 TM9540L. TM9541 TM9541L. TM9542 TM9542L. TM9543 TM9543L. TM9544 TM9544L. TM9545 TM9545L. TM9546 TM9546L. TM9547 TM9547L. TM9548 TM9548L. TM9549 TM9549L. TM9550 TM9550L. TM9551 TM9551L. TM9552 TM9552L. TM9553 TM9553L. TM9554 TM9554L. TM9555 TM9555L. TM9556 TM9556L. TM9557 TM9557L. TM9558 TM9558L. TM9559 TM9559L. TM9560 TM9560L. TM9561 TM9561L. TM9562 TM9562L. TM9563 TM9563L. TM9564 TM9564L. TM9565 TM9565L. TM9566 TM9566L. TM9567 TM9567L. TM9568 TM9568L. TM9569 TM9569L. TM9570 TM9570L. TM9571 TM9571L. TM9572 TM9572L. TM9573 TM9573L. TM9574 TM9574L. TM9575 TM9575L. TM9576 TM9576L. TM9577 TM9577L. TM9578 TM9578L. TM9579 TM9579L. TM9580 TM9580L. TM9581 TM9581L. TM9582 TM9582L. TM9583 TM9583L. TM9584 TM9584L. TM9585 TM9585L. TM9586 TM9586L. TM9587 TM9587L. TM9588 TM9588L. TM9589 TM9589L. TM9590 TM9590L. TM9591 TM9591L. TM9592 TM9592L. TM9593 TM9593L. TM9594 TM9594L. TM9595 TM9595L. TM9596 TM9596L. TM9597 TM9597L. TM9598 TM9598L. TM9599 TM9599L. TM9600 TM9600L. TM9601 TM9601L. TM9602 TM9602L. TM9603 TM9603L. TM9604 TM9604L. TM9605 TM9605L. TM9606 TM9606L. TM9607 TM9607L. TM9608 TM9608L. TM9609 TM9609L. TM9610 TM9610L. TM9611 TM9611L. TM9612 TM9612L. TM9613 TM9613L. TM9614 TM9614L. TM9615 TM9615L. TM9616 TM9616L. TM9617 TM9617L. TM9618 TM9618L. TM9619 TM9619L. TM9620 TM9620L. TM9621 TM9621L. TM9622 TM9622L. TM9623 TM9623L. TM9624 TM9624L. TM9625 TM9625L. TM9626 TM9626L. TM9627 TM9627L. TM9628 TM9628L. TM9629 TM9629L. TM9630 TM9630L. TM9631 TM9631L. TM9632 TM9632L. TM9633 TM9633L. TM9634 TM9634L. TM9635 TM9635L. TM9636 TM9636L. TM9637 TM9637L. TM9638 TM9638L. TM9639 TM9639L. TM9640 TM9640L. TM9641 TM9641L. TM9642 TM9642L. TM9643 TM9643L. TM9644 TM9644L. TM9645 TM9645L. TM9646 TM9646L. TM9647 TM9647L. TM9648 TM9648L. TM9649 TM9649L. TM9650 TM9650L. TM9651 TM9651L. TM9652 TM9652L. TM9653 TM9653L. TM9654 TM9654L. TM9655 TM9655L. TM9656 TM9656L. TM9657 TM9657L. TM9658 TM9658L. TM9659 TM9659L. TM9660 TM9660L. TM9661 TM9661L. TM9662 TM9662L. TM9663 TM9663L. TM9664 TM9664L. TM9665 TM9665L. TM9666 TM9666L. TM9667 TM9667L. TM9668 TM9668L. TM9669 TM9669L. TM9670 TM9670L. TM9671 TM9671L. TM9672 TM9672L. TM9673 TM9673L. TM9674 TM9674L. TM9675 TM9675L. TM9676 TM9676L. TM9677 TM9677L. TM9678 TM9678L. TM9679 TM9679L. TM9680 TM9680L. TM9681 TM9681L. TM9682 TM9682L. TM9683 TM9683L. TM9684 TM9684L. TM9685 TM9685L. TM9686 TM9686L. TM9687 TM9687L. TM9688 TM9688L. TM9689 TM9689L. TM9690 TM9690L. TM9691 TM9691L. TM9692 TM9692L. TM9693 TM9693L. TM9694 TM9694L. TM9695 TM9695L. TM9696 TM9696L. TM9697 TM9697L. TM9698 TM9698L. TM9699 TM9699L. TM9700 TM9700L. TM9701 TM9701L. TM9702 TM9702L. TM9703 TM9703L. TM9704 TM9704L. TM9705 TM9705L. TM9706 TM9706L. TM9707 TM9707L. TM9708 TM9708L. TM9709 TM9709L. TM9710 TM9710L. TM9711 TM9711L. TM9712 TM9712L. TM9713 TM9713L. TM9714 TM9714L. TM9715 TM9715L. TM9716 TM9716L. TM9717 TM9717L. TM9718 TM9718L. TM9719 TM9719L. TM9720 TM9720L. TM9721 TM9721L. TM9722 TM9722L. TM9723 TM9723L. TM9724 TM9724L. TM9725 TM9725L. TM9726 TM9726L. TM9727 TM9727L. TM9728 TM9728L. TM9729 TM9729L. TM9730 TM9730L. TM9731 TM9731L. TM9800 TM9800L. TM9801 TM9801L. TM9802 TM9802L. TM9803 TM9803L. TM9804 TM9804L. TM9805 TM9805L. TM9806 TM9806L. TM9807 TM9807L. TM9808 TM9808L. TM9809 TM9809L. TM9810 TM9810L. TM9811 TM9811L. TM9812 TM9812L. TM9813 TM9813L. TM9814 TM9814L. TM9815 TM9815L. TM9816 TM9816L. TM9817 TM9817L. TM9818 TM9818L. TM9819 TM9819L. TM9820 TM9820L. TM9821 TM9821L. TM9822 TM9822L. TM9823 TM9823L. TM9824 TM9824L. TM9825 TM9825L. TM9826 TM9826L. TM9827 TM9827L. TM9828 TM9828L. TM9829 TM9829L. TM9830 TM9830L. TM9831 TM9831L. TM9832 TM9832L. TM9833 TM9833L. TM9834 TM9834L. TM9835 TM9835L. TM9836 TM9836L. TM9837 TM9837L. TM9838 TM9838L. TM9839 TM9839L. TM9840 TM9840L. TM9841 TM9841L. TM9842 TM9842L. TM9843 TM9843L. TM9844 TM9844L. TM9845 TM9845L. TM9846 TM9846L. TM9847 TM9847L. TM9848 TM9848L. TM9849 TM9849L. TM9850 TM9850L. TM9851 TM9851L. TM9852 TM9852L. TM9853 TM9853L. TM9854 TM9854L. TM9855 TM9855L. TM9856 TM9856L. TM9857 TM9857L. TM9858 TM9858L. TM9859 TM9859L. TM9860 TM9860L. TM9861 TM9861L. TM9862 TM9862L. TM9863 TM9863L. TM9864 TM9864L. TM9865 TM9865L. TM9866 TM9866L. TM9867 TM9867L. TM9868 TM9868L. TM9869 TM9869L. TM9870 TM9870L. TM9871 TM9871L. TM9872 TM9872L. TM9873 TM9873L. TM9874 TM9874L. TM9875 TM9875L. TM9876 TM9876L. TM9877 TM9877L. TM9878 TM9878L. TM9879 TM9879L. TM9880 TM9880L. TM9881 TM9881L. TM9882 TM9882L. TM9883 TM9883L. TM9884 TM9884L. TM9885 TM9885L. TM9886 TM9886L. TM9887 TM9887L. TM9888 TM9888L. TM9889 TM9889L. TM9890 TM9890L. TM9891 TM9891L. TM9892 TM9892L. TM9893 TM9893L. TM9894 TM9894L. TM9895 TM9895L. TM9896 TM9896L. TM9897 TM9897L. TM9898 TM9898L. TM9899 TM9899L. TM9900 TM9900L. TM9901 TM9901L. TM9902 TM9902L. TM9903 TM9903L. TM9904 TM9904L. TM9905 TM9905L. TM9906 TM9906L. TM9907 TM9907L. TM9908 TM9908L. TM9909 TM9909L. TM9910 TM9910L. TM9911 TM9911L. TM9913 TM9913L. TM9914 TM9914L. TM9915 TM9915L. TM9916 TM9916L. TM9917 TM9917L. TM7000 TM7000L. TM7001 TM7001L. TM7002 TM7002L. TM7003 TM7003L. TM7004 TM7004L. TM7005 TM7005L. TM7006 TM7006L. TM7007 TM7007L. TM7008 TM7008L. TM7009 TM7009L. TM7010 TM7010L. TM7011 TM7011L. TM7012 TM7012L. TM7013 TM7013L. TM7014 TM7014L. TM7015 TM7015L. TM7016 TM7016L. TM7017 TM7017L. TM7018 TM7018L. TM7019 TM7019L. TM7020 TM7020L. TM7021 TM7021L. TM7022 TM7022L. TM7023 TM7023L. TM7024 TM7024L. TM7025 TM7025L. TM7026 TM7026L. TM7027 TM7027L. TM7028 TM7028L. TM7029 TM7029L. TM7030 TM7030L. TM7031 TM7031L. TM7032 TM7032L. TM7033 TM7033L. TM7034 TM7034L. TM7035 TM7035L. TM7036 TM7036L. TM7037 TM7037L. TM7038 TM7038L. TM7039 TM7039L. TM7040 TM7040L. TM7041 TM7041L. TM7042 TM7042L. TM7043 TM7043L. TM7044 TM7044L. TM7045 TM7045L. TM7046 TM7046L. TM7047 TM7047L. TM7048 TM7048L. TM7049 TM7049L. TM7050 TM7050L. TM7051 TM7051L. TM7052 TM7052L. TM7053 TM7053L. TM7054 TM7054L. TM7055 TM7055L. TM7056 TM7056L. TM7057 TM7057L. TM7058 TM7058L. TM7059 TM7059L. TM7060 TM7060L. TM7061 TM7061L. TM7062 TM7062L. TM7063 TM7063L. TM7064 TM7064L. TM7065 TM7065L. TM7066 TM7066L. TM7067 TM7067L. TM7068 TM7068L. TM7069 TM7069L. TM7070 TM7070L. TM7071 TM7071L. TM7072 TM7072L. TM7073 TM7073L. TM7074 TM7074L. TM7075 TM7075L. TM7076 TM7076L. TM7077 TM7077L. TM7078 TM7078L. TM7079 TM7079L. TM7080 TM7080L. TM7081 TM7081L. TM7082 TM7082L. TM7083 TM7083L. TM7084 TM7084L. TM7085 TM7085L. TM7086 TM7086L. TM7087 TM7087L. TM7088 TM7088L. TM7089 TM7089L. TM7090 TM7090L. TM7091 TM7091L. TM7092 TM7092L. TM7093 TM7093L. TM7094 TM7094L. TM7095 TM7095L. TM7096 TM7096L. TM7097 TM7097L. TM7098 TM7098L. TM7099 TM7099L. TM7100 TM7100L. TM7101 TM7101L. TM7102 TM7102L. TM7103 TM7103L. TM7104 TM7104L. TM7105 TM7105L. TM7106 TM7106L. TM7107 TM7107L. TM7108 TM7108L. TM7109 TM7109L. TM7110 TM7110L. TM7111 TM7111L. TM7112 TM7112L. TM7113 TM7113L. TM7114 TM7114L. TM7115 TM7115L. TM7116 TM7116L. TM7117 TM7117L. TM7118 TM7118L. TM7119 TM7119L. TM7120 TM7120L. TM7121 TM7121L. TM7122 TM7122L. TM7123 TM7123L. TM7124 TM7124L. TM7125 TM7125L. TM7126 TM7126L. TM7127 TM7127L. TM7128 TM7128L. TM7129 TM7129L. TM7130 TM7130L. TM7131 TM7131L. TM7132 TM7132L. TM7133 TM7133L. TM7134 TM7134L. TM7135 TM7135L. TM7136 TM7136L. TM7137 TM7137L. TM7138 TM7138L. TM7139 TM7139L. TM7140 TM7140L. TM7141 TM7141L. TM7142 TM7142L. TM7143 TM7143L. TM7144 TM7144L. TM7145 TM7145L. TM7146 TM7146L. TM7147 TM7147L. TM7148 TM7148L. TM7149 TM7149L. TM7150 TM7150L. TM7151 TM7151L. TM7152 TM7152L. TM7153 TM7153L. TM7154 TM7154L. TM7155 TM7155L. TM7156 TM7156L. TM7157 TM7157L. TM7158 TM7158L. TM7159 TM7159L. TM7160 TM7160L. TM7161 TM7161L. TM7162 TM7162L. TM7163 TM7163L. TM7164 TM7164L. TM7165 TM7165L. TM7166 TM7166L. TM7167 TM7167L. TM7168 TM7168L. TM7169 TM7169L. TM7170 TM7170L. TM7171 TM7171L. TM7172 TM7172L. TM7173 TM7173L. TM7174 TM7174L. TM7175 TM7175L. TM7176 TM7176L. TM7177 TM7177L. TM7178 TM7178L. TM7179 TM7179L. TM7180 TM7180L. TM7181 TM7181L. TM7182 TM7182L. TM7183 TM7183L. TM7184 TM7184L. TM7185 TM7185L. TM7186 TM7186L. TM7187 TM7187L. TM7188 TM7188L. TM7189 TM7189L. TM7190 TM7190L. TM7191 TM7191L. TM7192 TM7192L. TM7193 TM7193L. TM7194 TM7194L. TM7195 TM7195L. TM7196 TM7196L. TM7197 TM7197L. TM7198 TM7198L. TM7199 TM7199L. TM7200 TM7200L. TM7201 TM7201L. TM7202 TM7202L. TM7203 TM7203L. TM7204 TM7204L. TM7205 TM7205L. TM7206 TM7206L. TM7207 TM7207L. TM7208 TM7208L. TM7209 TM7209L. TM7210 TM7210L. TM7211 TM7211L. TM7212 TM7212L. TM7213 TM7213L. TM7214 TM7214L. TM7215 TM7215L. TM7216 TM7216L. TM7217 TM7217L. TM7218 TM7218L. TM7219 TM7219L. TM7220 TM7220L. TM7221 TM7221L. TM7222 TM7222L. TM7223 TM7223L. TM7224 TM7224L. TM7225 TM7225L. TM7226 TM7226L. TM7227 TM7227L. TM7228 TM7228L. TM7229 TM7229L. TM7230 TM7230L. TM7231 TM7231L. TM7232 TM7232L. TM7233 TM7233L. TM7234 TM7234L. TM7235 TM7235L. TM7236 TM7236L. TM7237 TM7237L. TM7238 TM7238L. TM7239 TM7239L. TM7240 TM7240L. TM7241 TM7241L. TM7242 TM7242L. TM7243 TM7243L. TM7244 TM7244L. TM7245 TM7245L. TM7246 TM7246L. TM7247 TM7247L. TM7248 TM7248L. TM7249 TM7249L. TM7250 TM7250L. TM7251 TM7251L. TM7252 TM7252L. TM7253 TM7253L. TM7254 TM7254L. TM7255 TM7255L. TM7256 TM7256L. TM7257 TM7257L. TM7258 TM7258L. TM7259 TM7259L. TM7260 TM7260L. TM7261 TM7261L. TM7262 TM7262L. TM7263 TM7263L. TM7264 TM7264L. TM7265 TM7265L. TM7266 TM7266L. TM7267 TM7267L. TM7268 TM7268L. TM7269 TM7269L. TM7270 TM7270L. TM7271 TM7271L. TM7272 TM7272L. TM7273 TM7273L. TM7274 TM7274L. TM7275 TM7275L. TM7276 TM7276L. TM7277 TM7277L. TM7278 TM7278L. TM7279 TM7279L. TM7280 TM7280L. TM7281 TM7281L. TM7282 TM7282L. TM7283 TM7283L. TM7284 TM7284L. TM7285 TM7285L. TM7286 TM7286L. TM7287 TM7287L. TM7288 TM7288L. TM7289 TM7289L. TM7290 TM7290L. TM7291 TM7291L. TM7292 TM7292L. TM7293 TM7293L. TM7294 TM7294L. TM7295 TM7295L. TM7296 TM7296L. TM7297 TM7297L. TM7298 TM7298L. TM7299 TM7299L. TM7300 TM7300L. TM7301 TM7301L. TM7302 TM7302L. TM7303 TM7303L. TM7304 TM7304L. TM7305 TM7305L. TM7306 TM7306L. TM7307 TM7307L. TM7308 TM7308L. TM7309 TM7309L. TM7310 TM7310L. TM7311 TM7311L. TM7312 TM7312L. TM7313 TM7313L. TM7314 TM7314L. TM7315 TM7315L. TM7316 TM7316L. TM7317 TM7317L. TM7318 TM7318L. TM7319 TM7319L. TM7320 TM7320L. TM7321 TM7321L. TM7322 TM7322L. TM7323 TM7323L. TM7324 TM7324L. TM7325 TM7325L. TM7326 TM7326L. TM7327 TM7327L. TM7328 TM7328L. TM7329 TM7329L. TM7330 TM7330L. TM7331 TM7331L. TM7332 TM7332L. TM7333 TM7333L. TM7334 TM7334L. TM7335 TM7335L. TM7336 TM7336L. TM7337 TM7337L. TM7338 TM7338L. TM7339 TM7339L. TM7340 TM7340L. TM7341 TM7341L. TM7342 TM7342L. TM7343 TM7343L. TM7344 TM7344L. TM7345 TM7345L. TM7346 TM7346L. TM7347 TM7347L. TM7348 TM7348L. TM7349 TM7349L. TM7350 TM7350L. TM7351 TM7351L. TM7352 TM7352L. TM7353 TM7353L. TM7354 TM7354L. TM7355 TM7355L. TM7356 TM7356L. TM7357 TM7357L. TM7358 TM7358L. TM7359 TM7359L. TM7360 TM7360L. TM7361 TM7361L. TM7362 TM7362L. TM7363 TM7363L. TM7364 TM7364L. TM7365 TM7365L. TM7366 TM7366L. TM7367 TM7367L. TM7368 TM7368L. TM7369 TM7369L. TM7370 TM7370L. TM7371 TM7371L. TM7372 TM7372L. TM7373 TM7373L. TM7374 TM7374L. TM7375 TM7375L. TM7376 TM7376L. TM7377 TM7377L. TM7378 TM7378L. TM7379 TM7379L. TM7380 TM7380L. TM7381 TM7381L. TM7382 TM7382L. TM7383 TM7383L. TM7384 TM7384L. TM7385 TM7385L. TM7386 TM7386L. TM7387 TM7387L. TM7388 TM7388L. TM7389 TM7389L. TM7390 TM7390L. TM7391 TM7391L. TM7392 TM7392L. TM7393 TM7393L. TM7394 TM7394L. TM7395 TM7395L. TM7396 TM7396L. TM7397 TM7397L. TM7398 TM7398L. TM7399 TM7399L. TM7400 TM7400L. TM7401 TM7401L. TM7402 TM7402L. TM7403 TM7403L. TM7404 TM7404L. TM7405 TM7405L. TM7406 TM7406L. TM7407 TM7407L. TM7408 TM7408L. TM7409 TM7409L. TM7410 TM7410L. TM7411 TM7411L. TM7412 TM7412L. TM7413 TM7413L. TM7414 TM7414L. TM7415 TM7415L. TM7416 TM7416L. TM7417 TM7417L. TM7418 TM7418L. TM7419 TM7419L. TM7420 TM7420L. TM7421 TM7421L. TM7422 TM7422L. TM7423 TM7423L. TM7424 TM7424L. TM7425 TM7425L. TM7426 TM7426L. TM7427 TM7427L. TM7428 TM7428L. TM7429 TM7429L. TM7430 TM7430L. TM7431 TM7431L. TM7432 TM7432L. TM7433 TM7433L. TM7434 TM7434L. TM7435 TM7435L. TM7436 TM7436L. TM7437 TM7437L. TM7438 TM7438L. TM7439 TM7439L. TM7440 TM7440L. TM7441 TM7441L. TM7442 TM7442L. TM7443 TM7443L. TM7444 TM7444L. TM7445 TM7445L. TM7446 TM7446L. TM7447 TM7447L. TM7448 TM7448L. TM7449 TM7449L. TM7450 TM7450L. TM7451 TM7451L. TM7452 TM7452L. TM7453 TM7453L. TM7454 TM7454L. TM7455 TM7455L. TM7456 TM7456L. TM7457 TM7457L. TM7458 TM7458L. TM7459 TM7459L. TM7460 TM7460L. TM7461 TM7461L. TM7462 TM7462L. TM7463 TM7463L. TM7464 TM7464L. TM7465 TM7465L. TM7466 TM7466L. TM7467 TM7467L. TM7468 TM7468L. TM7469 TM7469L. TM7470 TM7470L. TM7471 TM7471L. TM7472 TM7472L. TM7473 TM7473L. TM7474 TM7474L. TM7475 TM7475L. TM7476 TM7476L. TM7477 TM7477L. TM7478 TM7478L. TM7479 TM7479L. TM7480 TM7480L. TM7481 TM7481L. TM7482 TM7482L. TM7483 TM7483L. TM7484 TM7484L. TM7485 TM7485L. TM7486 TM7486L. TM7487 TM7487L. TM7488 TM7488L. TM7489 TM7489L. TM7490 TM7490L. TM7491 TM7491L. TM7492 TM7492L. TM7493 TM7493L. TM7494 TM7494L. TM7495 TM7495L. TM7496 TM7496L. TM7497 TM7497L. TM7498 TM7498L. TM7499 TM7499L. TM7500 TM7500L. TM7501 TM7501L. TM7502 TM7502L. TM7503 TM7503L. TM7504 TM7504L. TM7505 TM7505L. TM7506 TM7506L. TM7507 TM7507L. TM7508 TM7508L. TM7509 TM7509L. TM7510 TM7510L. TM7511 TM7511L. TM7512 TM7512L. TM7513 TM7513L. TM7514 TM7514L. TM7515 TM7515L. TM7516 TM7516L. TM7517 TM7517L. TM7518 TM7518L. TM7519 TM7519L. TM7520 TM7520L. TM7521 TM7521L. TM7522 TM7522L. TM7523 TM7523L. TM7524 TM7524L. TM7525 TM7525L. TM7526 TM7526L. TM7527 TM7527L. TM7528 TM7528L. TM7529 TM7529L. TM7530 TM7530L. TM7531 TM7531L. TM7532 TM7532L. TM7533 TM7533L. TM7534 TM7534L. TM7535 TM7535L. TM7536 TM7536L. TM7537 TM7537L. TM7538 TM7538L. TM7539 TM7539L. TM7540 TM7540L. TM7541 TM7541L. TM7542 TM7542L. TM7543 TM7543L. TM7544 TM7544L. TM7545 TM7545L. TM7546 TM7546L. TM7547 TM7547L. TM7548 TM7548L. TM7549 TM7549L. TM7550 TM7550L. TM7551 TM7551L. TM7552 TM7552L. TM7553 TM7553L. TM7554 TM7554L. TM7555 TM7555L. TM7556 TM7556L. TM7557 TM7557L. TM7558 TM7558L. TM7559 TM7559L. TM7560 TM7560L. TM7561 TM7561L. TM7562 TM7562L. TM7563 TM7563L. TM7564 TM7564L. TM7565 TM7565L. TM7566 TM7566L. TM7567 TM7567L. TM7568 TM7568L. TM7569 TM7569L. TM7570 TM7570L. TM7571 TM7571L. TM7572 TM7572L. TM7573 TM7573L. TM7574 TM7574L. TM7575 TM7575L. TM7576 TM7576L. TM7577 TM7577L. TM7578 TM7578L. TM7579 TM7579L. TM7580 TM7580L. TM7581 TM7581L. TM7582 TM7582L. TM7583 TM7583L. TM7584 TM7584L. TM7585 TM7585L. TM7586 TM7586L. TM7587 TM7587L. TM7588 TM7588L. TM7589 TM7589L. TM7590 TM7590L. TM7591 TM7591L. TM7592 TM7592L. TM7593 TM7593L. TM7594 TM7594L. TM7595 TM7595L. TM7596 TM7596L. TM7597 TM7597L. TM7598 TM7598L. TM7599 TM7599L. TM7600 TM7600L. TM7601 TM7601L. TM7602 TM7602L. TM7603 TM7603L. TM7604 TM7604L. TM7605 TM7605L. TM7606 TM7606L. TM7607 TM7607L. TM7608 TM7608L. TM7609 TM7609L. TM7610 TM7610L. TM7611 TM7611L. TM7612 TM7612L. TM7613 TM7613L. TM7614 TM7614L. TM7615 TM7615L. TM7616 TM7616L. TM7617 TM7617L. TM7618 TM7618L. TM7619 TM7619L. TM7620 TM7620L. TM7621 TM7621L. TM7622 TM7622L. TM7623 TM7623L. TM7624 TM7624L. TM7625 TM7625L. TM7626 TM7626L. TM7627 TM7627L. TM7628 TM7628L. TM7629 TM7629L. TM7630 TM7630L. TM7631 TM7631L. TM7632 TM7632L. TM7633 TM7633L. TM7634 TM7634L. TM7635 TM7635L. TM7636 TM7636L. TM7637 TM7637L. TM7638 TM7638L. TM7639 TM7639L. TM7640 TM7640L. TM7641 TM7641L. TM7642 TM7642L. TM7643 TM7643L. TM7644 TM7644L. TM7645 TM7645L. TM7646 TM7646L. TM7647 TM7647L. TM7648 TM7648L. TM7649 TM7649L. TM7650 TM7650L. TM7651 TM7651L. TM7652 TM7652L. TM7653 TM7653L. TM7654 TM7654L. TM7655 TM7655L. TM7656 TM7656L. TM7657 TM7657L. TM7658 TM7658L. TM7659 TM7659L. TM7660 TM7660L. TM7661 TM7661L. TM7662 TM7662L. TM7663 TM7663L. TM7664 TM7664L. TM7665 TM7665L. TM7666 TM7666L. TM7667 TM7667L. TM7668 TM7668L. TM7669 TM7669L. TM7670 TM7670L. TM7671 TM7671L. TM7672 TM7672L. TM7673 TM7673L. TM7674 TM7674L. TM7675 TM7675L. TM7676 TM7676L. TM7677 TM7677L. TM7678 TM7678L. TM7679 TM7679L. TM7680 TM7680L. TM7681 TM7681L. TM7682 TM7682L. TM7683 TM7683L. TM7684 TM7684L. TM7685 TM7685L. TM7686 TM7686L. TM7687 TM7687L. TM7688 TM7688L. TM7689 TM7689L. TM7690 TM7690L. TM7691 TM7691L. TM7692 TM7692L. TM7693 TM7693L. TM7694 TM7694L. TM7695 TM7695L. TM7696 TM7696L. TM7697 TM7697L. TM7698 TM7698L. TM7699 TM7699L. TM7700 TM7700L. TM7701 TM7701L. TM7702 TM7702L. TM7703 TM7703L. TM7704 TM7704L. TM7705 TM7705L. TM7706 TM7706L. TM7707 TM7707L. TM7708 TM7708L. TM7709 TM7709L. TM7710 TM7710L. TM7711 TM7711L. TM7712 TM7712L. TM7713 TM7713L. TM7714 TM7714L. TM7715 TM7715L. TM7716 TM7716L. TM7717 TM7717L. TM7718 TM7718L. TM7719 TM7719L. TM7720 TM7720L. TM7721 TM7721L. TM7722 TM7722L. TM7723 TM7723L. TM7724 TM7724L. TM7725 TM7725L. TM7726 TM7726L. TM7727 TM7727L. TM7728 TM7728L. TM7729 TM7729L. TM7730 TM7730L. TM7731 TM7731L. TM7732 TM7732L. TM7733 TM7733L. TM7734 TM7734L. TM7735 TM7735L. TM7736 TM7736L. TM7737 TM7737L. TM7738 TM7738L. TM7739 TM7739L. TM7740 TM7740L. TM7741 TM7741L. TM7742 TM7742L. TM7743 TM7743L. TM7744 TM7744L. TM7745 TM7745L. TM7746 TM7746L. TM7747 TM7747L. TM7748 TM7748L. TM7749 TM7749L. TM7750 TM7750L. TM7751 TM7751L. TM7752 TM7752L. TM7753 TM7753L. TM7754 TM7754L. TM7755 TM7755L. TM7756 TM7756L. TM7757 TM7757L. TM7758 TM7758L. TM7759 TM7759L. TM7760 TM7760L. TM7761 TM7761L. TM7762 TM7762L. TM7763 TM7763L. TM7764 TM7764L. TM7765 TM7765L. TM7766 TM7766L. TM7767 TM7767L. TM7768 TM7768L. TM7769 TM7769L. TM7770 TM7770L. TM7771 TM7771L. TM7772 TM7772L. TM7773 TM7773L. TM7774 TM7774L. TM7775 TM7775L. TM7776 TM7776L. TM7777 TM7777L. TM7778 TM7778L. TM7779 TM7779L. TM7780 TM7780L. TM7781 TM7781L. TM7782 TM7782L. TM7783 TM7783L. TM7784 TM7784L. TM7785 TM7785L. TM7786 TM7786L. TM7787 TM7787L. TM7788 TM7788L. TM7789 TM7789L. TM7790 TM7790L. TM7791 TM7791L. TM7792 TM7792L. TM7793 TM7793L. TM7794 TM7794L. TM7795 TM7795L. TM7796 TM7796L. TM7797 TM7797L. TM7798 TM7798L. TM7799 TM7799L. TM7800 TM7800L. TM7801 TM7801L. TM7802 TM7802L. TM7803 TM7803L. TM7804 TM7804L. TM7805 TM7805L. TM7806 TM7806L. TM7807 TM7807L. TM7808 TM7808L. TM7809 TM7809L. TM7810 TM7810L. TM7811 TM7811L. TM7812 TM7812L. TM7813 TM7813L. TM7814 TM7814L. TM7815 TM7815L. TM7816 TM7816L. TM7817 TM7817L. TM7818 TM7818L. TM7819 TM7819L. TM7820 TM7820L. TM7821 TM7821L. TM7822 TM7822L. TM7823 TM7823L. TM7824 TM7824L. TM7825 TM7825L. TM7826 TM7826L. TM7827 TM7827L. TM7828 TM7828L. TM7829 TM7829L. TM7830 TM7830L. TM7831 TM7831L. TM7832 TM7832L. TM7833 TM7833L. TM7834 TM7834L. TM7835 TM7835L. TM7836 TM7836L. TM7837 TM7837L. TM7838 TM7838L. TM7839 TM7839L. TM7840 TM7840L. TM7841 TM7841L. TM7842 TM7842L. TM7843 TM7843L. TM7844 TM7844L. TM7845 TM7845L. TM7846 TM7846L. TM7847 TM7847L. TM7848 TM7848L. TM7849 TM7849L. TM7850 TM7850L. TM7851 TM7851L. TM7852 TM7852L. TM7853 TM7853L. TM7854 TM7854L. TM7855 TM7855L. TM7856 TM7856L. TM7857 TM7857L. TM7858 TM7858L. TM7859 TM7859L. TM7860 TM7860L. TM7861 TM7861L. TM7862 TM7862L. TM7863 TM7863L. TM7864 TM7864L. TM7865 TM7865L. TM7866 TM7866L. TM7867 TM7867L. TM7868 TM7868L. TM7869 TM7869L. TM7870 TM7870L. TM7871 TM7871L. TM7872 TM7872L. TM7873 TM7873L. TM7874 TM7874L. TM7875 TM7875L. TM7876 TM7876L. TM7877 TM7877L. TM7878 TM7878L. TM7879 TM7879L. TM7880 TM7880L. TM7881 TM7881L. TM7882 TM7882L. TM7883 TM7883L. TM7884 TM7884L. TM7885 TM7885L. TM7886 TM7886L. TM7887 TM7887L. TM7888 TM7888L. TM7889 TM7889L. TM7890 TM7890L. TM7891 TM7891L. TM7892 TM7892L. TM7893 TM7893L. TM7894 TM7894L. TM7895 TM7895L. TM7896 TM7896L. TM7897 TM7897L. TM7898 TM7898L. TM7899 TM7899L. TM7900 TM7900L. TM7901 TM7901L. TM7902 TM7902L. TM7903 TM7903L. TM7904 TM7904L. TM7905 TM7905L. TM7906 TM7906L. TM7907 TM7907L. TM7908 TM7908L. TM7909 TM7909L. TM7910 TM7910L. TM7911 TM7911L. TM7912 TM7912L. TM7913 TM7913L. TM7914 TM7914L. TM7915 TM7915L. TM7916 TM7916L. TM7917 TM7917L. TM7918 TM7918L. TM7919 TM7919L. TM7920 TM7920L. TM7921 TM7921L. TM7922 TM7922L. TM7923 TM7923L. TM7924 TM7924L. TM7925 TM7925L. TM7926 TM7926L. TM7927 TM7927L. TM7928 TM7928L. TM7929 TM7929L. TM7931 TM7931L. TM7932 TM7932L. TM7933 TM7933L. TM7934 TM7934L. TM7935 TM7935L. TM7936 TM7936L. TM7937 TM7937L. TM7938 TM7938L. TM7939 TM7939L. TM7940 TM7940L. TM7941 TM7941L. ; proc contents data=library.sip92t9; /* Copyright 2004 shared by the National Bureau of Economic Research and Jean Roth National Bureau of Economic Research. 1050 Massachusetts Avenue Cambridge, MA 02138 jroth@nber.org This program and all programs referenced in it are free software. You can redistribute the program or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */