1 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Copyright (c) 1989-1996 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software Release 6.12 TS020 Licensed to HARVARD SCHOOL OF PUBLIC HEALTH-INSTRUCTIONAL COMP, Site 0001177014. This sas license runs from Aug 15, 2002 to Aug 15, 2003 with a grace period up till Sep 15, 2003. NOTE: AUTOEXEC processing beginning; file is /usr/sunos/local/sas612/autoexec.sas. NOTE: SAS initialization used: real time 0.380 seconds cpu time 0.123 seconds NOTE: AUTOEXEC processing completed. 1 2 /*------------------------------------------------------------------------------------*/ 3 /*by Jean Roth Mon Nov 25 12:27:37 EST 2002 4 This program reads the 1996 SIPP Wave 2 Core Data File 5 Please report errors to jroth@nber.org 6 Six steps: 7 (1) Uncomment the 'options compress=yes' statement if desired to save space 8 (2) Uncomment 'LENGTH' statement if desired to save space 9 (3) Specify output directories in 'libname' statements 10 (4) Specify the input file name/location in the 'filename' statement 11 (5) On a PC, use backslashes as in C:\ 12 (6) Read in the compressed or uncompressed raw data file. See the 13 'filename' and 'INFILE' statements. 14 Other changes may be user and platform specific. */ 15 /*------------------------------------------------------------------------------------*/ 16 17 options obs=6; 18 *options compress=yes; 19 *Choose compress=yes to save space ; 20 *Choose compress=no if converting to another package using transfer software ; 21 *options pagesize=59 linesize=72; 22 23 /*------------------------------------------------------------------------------------*/ 24 25 26 libname library './'; NOTE: Libref LIBRARY was successfully assigned as follows: Engine: V612 Physical Name: /disk/u6/SCCS/sipp/1996 27 28 *See the codebook for more detail; 29 PROC FORMAT cntlout=library.fsp96w2; 30 31 /* 32 The PROC FORMAT statement will store the formats in a sas data set called fsip96w2 33 To use the stored formats in a subsequent program, include something like this: 34 35 proc format cntlin=library.fsp96w2; 36 PROC freq; 37 tables pesex ; 38 format pesex P135L.; 39 40 For more information, consult the SAS Procudures Guide section of PROC FORMAT 41 */ 42 ; 43 VALUE SPANEL (default=32) 44 1996 = "Panel Year" 45 ; NOTE: Format SPANEL has been output. 46 VALUE SREFMON (default=32) 47 1 = "First Reference month" 48 2 = "Second Reference month" 49 3 = "Third Reference month" 50 4 = "Fourth Reference month" 51 ; NOTE: Format SREFMON has been output. 52 VALUE RHCALMN (default=32) 2 The SAS System 11:48 Wednesday, December 4, 2002 53 1 = "January" 54 2 = "February" 55 3 = "March" 56 4 = "April" 57 5 = "May" 58 6 = "June" 59 7 = "July" 60 8 = "August" 61 9 = "September" 62 10 = "October" 63 11 = "November" 64 12 = "December" 65 ; NOTE: Format RHCALMN has been output. 66 VALUE RHTYPE (default=32) 67 1 = "Family hh - Married couple" 68 2 = "Family hh - Male householder" 69 3 = "Family hh - Female householder" 70 4 = "Nonfamily hh - Male hhlder" 71 5 = "Nonfamily hh - Female hhlder" 72 6 = "Group Quarters" 73 ; NOTE: Format RHTYPE has been output. 74 VALUE TMETRO (default=32) 75 1 = "Metro" 76 2 = "Residual" 77 ; NOTE: Format TMETRO has been output. 78 VALUE RHCHANGE (default=32) 79 1 = "Change occurred" 80 2 = "No change occurred" 81 ; NOTE: Format RHCHANGE has been output. 82 VALUE EACCESS (default=32) 83 -1 = "Not in universe" 84 1 = "Yes" 85 2 = "No" 86 ; NOTE: Format EACCESS has been output. 87 VALUE AACCESS (default=32) 88 0 = "No imputation" 89 1 = "Statistical imputation (hot" 90 2 = "Cold deck imputation" 91 3 = "Logical imputation (derivation)" 92 4 = "Statistical or logical" 93 ; NOTE: Format AACCESS has been output. 94 VALUE EUNITS (default=32) 95 -1 = "Not in universe" 96 1 = "One, detached" 97 2 = "One, attached" 98 3 = "Two" 99 4 = "3:4" 100 5 = "5-9" 101 6 = "10-19" 102 7 = "20-49" 103 8 = "50 or more" 104 ; NOTE: Format EUNITS has been output. 105 VALUE AUNITS (default=32) 106 0 = "No imputation" 107 1 = "Statistical imputation (hot" 108 2 = "Cold deck imputation" 109 3 = "Logical imputation (derivation)" 110 4 = "Statistical or logical" 111 ; NOTE: Format AUNITS has been output. 112 VALUE ELIVQRT (default=32) 113 1 = "HU in House, apartment, flat" 114 2 = "HU in nontransient hotel, motel," 115 3 = "HU permanent, in transient" 116 4 = "HU in rooming house" 117 5 = "Mobile home or trailer w/ no" 118 6 = "Mobile Home or trailer w/ one or" 119 7 = "HU not specified above" 120 8 = "GQ - Quarters not HU in rooming" 3 The SAS System 11:48 Wednesday, December 4, 2002 121 9 = "GQ - Unit not permanent in" 122 10 = "GQ - Unoccupied tent or trailer" 123 11 = "GQ - Student quarters in college" 124 12 = "Group quarters unit not" 125 ; NOTE: Format ELIVQRT has been output. 126 VALUE ALIVQRT (default=32) 127 0 = "Not imputed" 128 1 = "Statistical imputation (hot" 129 2 = "Cold deck imputation" 130 3 = "Logical Imputation (Derivation)" 131 4 = "Statistical or logical" 132 ; NOTE: Format ALIVQRT has been output. 133 VALUE ETENURE (default=32) 134 1 = "Owned or being bought by you or" 135 2 = "Rented for cash" 136 3 = "Occupied without payment of cash" 137 ; NOTE: Format ETENURE has been output. 138 VALUE ATENURE (default=32) 139 0 = "No imputation" 140 1 = "Statistical imputation (hot" 141 2 = "Cold deck imputation" 142 3 = "Logical imputation (derivation)" 143 4 = "Statistical or logical" 144 ; NOTE: Format ATENURE has been output. 145 VALUE EPUBHSE (default=32) 146 -1 = "Not in universe" 147 1 = "Yes" 148 2 = "No" 149 ; NOTE: Format EPUBHSE has been output. 150 VALUE APUBHSE (default=32) 151 0 = "No imputation" 152 1 = "Statistical imputation (hot" 153 2 = "Cold deck imputation" 154 3 = "Logical imputation (derivation)" 155 4 = "Statistical or logical" 156 ; NOTE: Format APUBHSE has been output. 157 VALUE EGVTRNT (default=32) 158 -1 = "Not in universe" 159 1 = "Yes" 160 2 = "No" 161 ; NOTE: Format EGVTRNT has been output. 162 VALUE AGVTRNT (default=32) 163 0 = "No imputation" 164 1 = "Statistical imputation (hot" 165 2 = "Cold deck imputation" 166 3 = "Logical imputation (derivation)" 167 4 = "Statistical or logical" 168 ; NOTE: Format AGVTRNT has been output. 169 VALUE TMTHRNT (default=32) 170 0 = "None or not in universe" 171 ; NOTE: Format TMTHRNT has been output. 172 VALUE AMTHRNT (default=32) 173 0 = "Not imputed" 174 1 = "Statistical imputation (hot" 175 2 = "Cold deck imputation" 176 3 = "Logical imputation (derivation)" 177 4 = "Statistical or logical" 178 ; NOTE: Format AMTHRNT has been output. 179 VALUE EUTILYN (default=32) 180 -1 = "Not in universe" 181 1 = "Yes" 182 2 = "No" 183 ; NOTE: Format EUTILYN has been output. 184 VALUE AUTILYN (default=32) 185 0 = "Not imputed" 4 The SAS System 11:48 Wednesday, December 4, 2002 186 1 = "Statistical imputation (hot" 187 2 = "Cold deck imputation" 188 3 = "Logical imputation (derivation)" 189 4 = "Statistical or logical" 190 ; NOTE: Format AUTILYN has been output. 191 VALUE EEGYAST (default=32) 192 1 = "Yes" 193 2 = "No" 194 ; NOTE: Format EEGYAST has been output. 195 VALUE AEGYAST (default=32) 196 0 = "Not imputed" 197 1 = "Statistical imputation (hot" 198 2 = "Cold deck imputation" 199 3 = "Logical imputation (derivation)" 200 4 = "Statistical or logical" 201 ; NOTE: Format AEGYAST has been output. 202 VALUE EEGYPMTA (default=32) 203 -1 = "Not in universe" 204 1 = "Yes" 205 2 = "No" 206 ; NOTE: Format EEGYPMTA has been output. 207 VALUE EEGYPMTB (default=32) 208 -1 = "Not in universe" 209 1 = "Yes" 210 2 = "No" 211 ; NOTE: Format EEGYPMTB has been output. 212 VALUE EEGYPMTC (default=32) 213 -1 = "Not in universe" 214 1 = "Yes" 215 2 = "No" 216 ; NOTE: Format EEGYPMTC has been output. 217 VALUE AEGYPMT (default=32) 218 0 = "Not imputed" 219 1 = "Statistical imputation (hot" 220 2 = "Cold deck imputation" 221 3 = "Logical imputation (derivation)" 222 4 = "Statistical or logical" 223 ; NOTE: Format AEGYPMT has been output. 224 VALUE EEGYAMT (default=32) 225 0 = "None or not in universe" 226 ; NOTE: Format EEGYAMT has been output. 227 VALUE AEGYAMT (default=32) 228 0 = "Not imputed" 229 1 = "Statistical imputation (hot" 230 2 = "Cold deck imputation" 231 3 = "Logical imputation (derivation)" 232 4 = "Statistical or logical" 233 ; NOTE: Format AEGYAMT has been output. 234 VALUE EHOTLUNC (default=32) 235 -1 = "Not in universe" 236 1 = "Yes" 237 2 = "No" 238 ; NOTE: Format EHOTLUNC has been output. 239 VALUE AHOTLUNC (default=32) 240 0 = "Not imputed" 241 1 = "Statistical imputation (hot" 242 2 = "Cold deck imputation" 243 3 = "Logical imputation (derivation)" 244 4 = "Statistical or logical" 245 ; NOTE: Format AHOTLUNC has been output. 246 VALUE RNKLUN (default=32) 247 -1 = "Not in universe" 248 ; NOTE: Format RNKLUN has been output. 249 VALUE EFREELUN (default=32) 5 The SAS System 11:48 Wednesday, December 4, 2002 250 -1 = "Not in universe" 251 1 = "Yes" 252 2 = "No" 253 ; NOTE: Format EFREELUN has been output. 254 VALUE AFREELUN (default=32) 255 0 = "Not imputed" 256 1 = "Statistical imputation (hot" 257 2 = "Cold deck imputation" 258 3 = "Logical imputation (derivation)" 259 4 = "Statistical or logical" 260 ; NOTE: Format AFREELUN has been output. 261 VALUE EFRERDLN (default=32) 262 -1 = "Not in universe" 263 1 = "Free lunch" 264 2 = "Reduced-price lunch" 265 ; NOTE: Format EFRERDLN has been output. 266 VALUE AFRERDLN (default=32) 267 0 = "Not imputed" 268 1 = "Statistical imputation (hot" 269 2 = "Cold deck imputation" 270 3 = "Logical imputation (derivation)" 271 4 = "Statistical or logical" 272 ; NOTE: Format AFRERDLN has been output. 273 VALUE EBRKFST (default=32) 274 -1 = "Not in universe" 275 1 = "Yes" 276 2 = "No" 277 ; NOTE: Format EBRKFST has been output. 278 VALUE ABRKFST (default=32) 279 0 = "Not imputed" 280 1 = "Statistical imputation (hot" 281 2 = "Cold deck imputation" 282 3 = "Logical imputation" 283 4 = "Statistical or logical" 284 ; NOTE: Format ABRKFST has been output. 285 VALUE RNKBRK (default=32) 286 -1 = "Not in universe" 287 ; NOTE: Format RNKBRK has been output. 288 VALUE EFREEBRK (default=32) 289 -1 = "Not in universe" 290 1 = "Yes" 291 2 = "No" 292 ; NOTE: Format EFREEBRK has been output. 293 VALUE AFREEBRK (default=32) 294 0 = "Not imputed" 295 1 = "Statistical imputation (hot" 296 2 = "Cold deck imputation" 297 3 = "Logical imputation (derivation)" 298 4 = "Statistical or logical" 299 ; NOTE: Format AFREEBRK has been output. 300 VALUE EFRERDBK (default=32) 301 -1 = "Not in universe" 302 1 = "Free breakfast" 303 2 = "Reduced-price breakfast" 304 ; NOTE: Format EFRERDBK has been output. 305 VALUE AFRERDBK (default=32) 306 0 = "Not imputed" 307 1 = "Statistical imputation (hot" 308 2 = "Cold deck imputation" 309 3 = "Logical imputation (derivation)" 310 4 = "Statistical or logical" 311 ; NOTE: Format AFRERDBK has been output. 312 VALUE RPRGQUES (default=32) 313 0 = "Residence this month not in" 314 1 = "Res. this mo. was intrvwed" 6 The SAS System 11:48 Wednesday, December 4, 2002 315 2 = "Res. this mo. in sample but" 316 3 = "Res. this mo. not in sample at" 317 ; NOTE: Format RPRGQUES has been output. 318 VALUE RHNBRF (default=32) 319 1 = "Yes" 320 2 = "No" 321 ; NOTE: Format RHNBRF has been output. 322 VALUE RHCBRF (default=32) 323 1 = "Yes" 324 2 = "No" 325 ; NOTE: Format RHCBRF has been output. 326 VALUE RHMTRF (default=32) 327 1 = "Yes" 328 2 = "No" 329 ; NOTE: Format RHMTRF has been output. 330 VALUE RFID2L (default=32) 331 -1 = "Not in universe" 332 ; NOTE: Format RFID2L has been output. 333 VALUE EFSPOUSE (default=32) 334 9999 = "Persons with EFKIND=2 or 3" 335 ; NOTE: Format EFSPOUSE has been output. 336 VALUE EFTYPE (default=32) 337 1 = "Primary family (including those" 338 3 = "Unrelated Subfamily" 339 4 = "Primary Individual" 340 5 = "Secondary Individual" 341 ; NOTE: Format EFTYPE has been output. 342 VALUE RFCHANGE (default=32) 343 1 = "Change occurred" 344 2 = "No change occurred" 345 ; NOTE: Format RFCHANGE has been output. 346 VALUE EFKIND (default=32) 347 1 = "Headed by Husband/Wife" 348 2 = "Male Headed" 349 3 = "Female Headed" 350 ; NOTE: Format EFKIND has been output. 351 VALUE RSID (default=32) 352 -1 = "Not in universe" 353 ; NOTE: Format RSID has been output. 354 VALUE ESFNP (default=32) 355 -1 = "Not in universe" 356 ; NOTE: Format ESFNP has been output. 357 VALUE ESFRFPER (default=32) 358 -1 = "Not in universe" 359 ; NOTE: Format ESFRFPER has been output. 360 VALUE ESFSPSE (default=32) 361 -1 = "Not in universe" 362 9999 = "No spouse in subfamily" 363 ; NOTE: Format ESFSPSE has been output. 364 VALUE ESFTYPE (default=32) 365 -1 = "Not in universe" 366 2 = "Related Subfamily" 367 ; NOTE: Format ESFTYPE has been output. 368 VALUE ESFKIND (default=32) 369 -1 = "Not in universe" 370 1 = "Headed by Husband/Wife" 371 2 = "Male Headed" 372 3 = "Female Headed" 373 ; NOTE: Format ESFKIND has been output. 374 VALUE RSCHANGE (default=32) 375 -1 = "Not in universe" 7 The SAS System 11:48 Wednesday, December 4, 2002 376 1 = "Change occurred" 377 2 = "No change occurred" 378 ; NOTE: Format RSCHANGE has been output. 379 VALUE ESOWNKID (default=32) 380 -1 = "Not in universe" 381 0 = "No children" 382 ; NOTE: Format ESOWNKID has been output. 383 VALUE ESOKLT1H (default=32) 384 -1 = "Not in universe" 385 0 = "No children" 386 ; NOTE: Format ESOKLT1H has been output. 387 VALUE WSFINWGT (default=32) 388 -1 = "Not in universe" 389 ; NOTE: Format WSFINWGT has been output. 390 VALUE TSFEARN (default=32) 391 0 = "None or not in universe" 392 ; NOTE: Format TSFEARN has been output. 393 VALUE TSPRPINC (default=32) 394 0 = "None or not in universe" 395 ; NOTE: Format TSPRPINC has been output. 396 VALUE TSTRNINC (default=32) 397 0 = "None or not in universe" 398 ; NOTE: Format TSTRNINC has been output. 399 VALUE TSOTHINC (default=32) 400 0 = "None or not in universe" 401 ; NOTE: Format TSOTHINC has been output. 402 VALUE TSTOTINC (default=32) 403 0 = "None or not in universe" 404 ; NOTE: Format TSTOTINC has been output. 405 VALUE TSFPOV (default=32) 406 0 = "Not in universe" 407 ; NOTE: Format TSFPOV has been output. 408 VALUE TSPNDIST (default=32) 409 0 = "None or not in universe" 410 ; NOTE: Format TSPNDIST has been output. 411 VALUE TSLUMPSM (default=32) 412 0 = "None or not in universe" 413 ; NOTE: Format TSLUMPSM has been output. 414 VALUE TSSOCSEC (default=32) 415 0 = "None or not in universe" 416 ; NOTE: Format TSSOCSEC has been output. 417 VALUE TSSSI (default=32) 418 0 = "None or not in universe" 419 ; NOTE: Format TSSSI has been output. 420 VALUE TSVETS (default=32) 421 0 = "None or not in universe" 422 ; NOTE: Format TSVETS has been output. 423 VALUE TSUNEMP (default=32) 424 0 = "None or not in universe" 425 ; NOTE: Format TSUNEMP has been output. 426 VALUE TSAFDC (default=32) 427 0 = "None or not in universe" 428 ; NOTE: Format TSAFDC has been output. 429 VALUE TSFDSTP (default=32) 430 0 = "None or not in universe" 431 ; NOTE: Format TSFDSTP has been output. 432 VALUE EPPINTVW (default=32) 433 1 = "Interview (self)" 8 The SAS System 11:48 Wednesday, December 4, 2002 434 2 = "Interview (proxy)" 435 3 = "Noninterview - Type Z" 436 4 = "Nonintrvw - pseudo Type Z. Left" 437 5 = "Children under 15 during" 438 ; NOTE: Format EPPINTVW has been output. 439 VALUE EPOPSTAT (default=32) 440 1 = "Adult (15 years of age or older)" 441 2 = "Child (Under 15 years of age)" 442 ; NOTE: Format EPOPSTAT has been output. 443 VALUE ABMNTH (default=32) 444 0 = "Not imputed" 445 1 = "Statistical imputation (hot" 446 2 = "Cold deck imputation" 447 3 = "Logical imputation (derivation)" 448 4 = "Statistical or logical" 449 ; NOTE: Format ABMNTH has been output. 450 VALUE ABYEAR (default=32) 451 0 = "Not imputed" 452 1 = "Statistical imputation (hot" 453 2 = "Cold deck imputation" 454 3 = "Logical imputation (derivation)" 455 4 = "Statistical or logical" 456 ; NOTE: Format ABYEAR has been output. 457 VALUE ESEX (default=32) 458 1 = "Male" 459 2 = "Female" 460 ; NOTE: Format ESEX has been output. 461 VALUE ASEX (default=32) 462 0 = "Not imputed" 463 1 = "Statistical imputation (hot" 464 2 = "Cold deck imputation" 465 3 = "Logical imputation (derivation)" 466 4 = "Statistical or logical" 467 ; NOTE: Format ASEX has been output. 468 VALUE ERACE (default=32) 469 1 = "White" 470 2 = "Black" 471 3 = "American Indian, Aleut, or" 472 4 = "Asian or Pacific Islander" 473 ; NOTE: Format ERACE has been output. 474 VALUE ARACE (default=32) 475 0 = "Not imputed" 476 1 = "Statistical imputation (hot" 477 2 = "Cold deck imputation" 478 3 = "Logical imputation (derivation)" 479 4 = "Statistical or logical" 480 ; NOTE: Format ARACE has been output. 481 VALUE AORIGIN (default=32) 482 0 = "Not imputed" 483 1 = "Statistical imputation (hot" 484 2 = "Cold deck imputation" 485 3 = "Logical imputation (derivation)" 486 4 = "Statistical or logical" 487 ; NOTE: Format AORIGIN has been output. 488 VALUE UEVRWID (default=32) 489 0 = "Not answered" 490 1 = "Yes" 491 2 = "No" 492 6 = "Don't know" 493 7 = "Refused" 494 ; NOTE: Format UEVRWID has been output. 495 VALUE UEVRDIV (default=32) 496 0 = "Not answered" 497 1 = "Yes" 498 2 = "No" 499 6 = "Don't know" 9 The SAS System 11:48 Wednesday, December 4, 2002 500 7 = "Refused" 501 ; NOTE: Format UEVRDIV has been output. 502 VALUE EAFNOW (default=32) 503 -1 = "Not in universe" 504 1 = "Yes" 505 2 = "No" 506 ; NOTE: Format EAFNOW has been output. 507 VALUE AAFNOW (default=32) 508 0 = "Not imputed" 509 1 = "Statistical imputation (hot" 510 2 = "Cold deck imputation" 511 3 = "Logical imputation (derivation)" 512 4 = "Statistical or logical" 513 ; NOTE: Format AAFNOW has been output. 514 VALUE EAFEVER (default=32) 515 -1 = "Not in universe" 516 1 = "Yes" 517 2 = "No" 518 ; NOTE: Format EAFEVER has been output. 519 VALUE AAFEVER (default=32) 520 0 = "Not imputed" 521 1 = "Statistical imputation (hot" 522 2 = "Cold deck imputation" 523 3 = "Logical imputation (derivation)" 524 4 = "Statistical or logical" 525 ; NOTE: Format AAFEVER has been output. 526 VALUE UAF1L (default=32) 527 0 = "Not answered" 528 1 = "August 1990 to present" 529 2 = "September 1980 to July 1990" 530 3 = "May 1975 to Ausust 1980" 531 4 = "Vietnam Era (Aug '64 - April" 532 5 = "Other service (All other" 533 6 = "Don't know" 534 7 = "Refused" 535 ; NOTE: Format UAF1L has been output. 536 VALUE UAF2L (default=32) 537 0 = "Not answered" 538 1 = "August 1990 to present" 539 2 = "September 1980 to July 1990" 540 3 = "May 1975 to Ausust 1980" 541 4 = "Vietnam Era (Aug '64 - April" 542 5 = "Other service (All other" 543 8 = "No other periods of service" 544 ; NOTE: Format UAF2L has been output. 545 VALUE UAF3L (default=32) 546 0 = "Not answered" 547 1 = "August 1990 to present" 548 2 = "September 1980 to July 1990" 549 3 = "May 1975 to Ausust 1980" 550 4 = "Vietnam Era (Aug '64 - April" 551 5 = "Other service (All other" 552 8 = "No other periods of service" 553 ; NOTE: Format UAF3L has been output. 554 VALUE UAF4L (default=32) 555 0 = "Not answered" 556 1 = "August 1990 to present" 557 2 = "September 1980 to July 1990" 558 3 = "May 1975 to Ausust 1980" 559 4 = "Vietnam Era (Aug '64 - April" 560 5 = "Other service (All other" 561 8 = "No other periods of service" 562 ; NOTE: Format UAF4L has been output. 563 VALUE UAF5L (default=32) 564 0 = "Not answered" 565 1 = "August 1990 to present" 566 2 = "September 1980 to July 1990" 10 The SAS System 11:48 Wednesday, December 4, 2002 567 3 = "May 1975 to Ausust 1980" 568 4 = "Vietnam Era (Aug '64 - April" 569 5 = "Other service (All other" 570 8 = "No other periods of service" 571 ; NOTE: Format UAF5L has been output. 572 VALUE EVAYN (default=32) 573 -1 = "Not in universe" 574 1 = "Yes" 575 2 = "No" 576 ; NOTE: Format EVAYN has been output. 577 VALUE AVAYN (default=32) 578 0 = "Not imputed" 579 1 = "Statistical imputation (hot" 580 2 = "Cold deck imputation" 581 3 = "Logical imputation (derivation)" 582 4 = "Statistical or logical" 583 ; NOTE: Format AVAYN has been output. 584 VALUE EVETTYP (default=32) 585 -1 = "Not in universe" 586 1 = "Service-connected disability" 587 2 = "Survivor Benefits" 588 3 = "Veteran's Pension" 589 4 = "Other Veteran's Payments" 590 ; NOTE: Format EVETTYP has been output. 591 VALUE AVETTYP (default=32) 592 0 = "Not imputed" 593 1 = "Statistical imputation (hot" 594 2 = "Cold deck imputation" 595 3 = "Logical imputation (derivation)" 596 4 = "Statistical or logical" 597 ; NOTE: Format AVETTYP has been output. 598 VALUE EVAQUES (default=32) 599 -1 = "Not in universe" 600 1 = "Yes" 601 2 = "No" 602 ; NOTE: Format EVAQUES has been output. 603 VALUE AVAQUES (default=32) 604 0 = "Not imputed" 605 1 = "Statistical imputation (hot" 606 2 = "Cold deck imputation" 607 3 = "Logical imputation (derivation)" 608 4 = "Statistical or logical" 609 ; NOTE: Format AVAQUES has been output. 610 VALUE EAFSRVDI (default=32) 611 -1 = "Not in universe" 612 1 = "Yes" 613 2 = "No" 614 ; NOTE: Format EAFSRVDI has been output. 615 VALUE AAFSRVDI (default=32) 616 0 = "Not imputed" 617 1 = "Statistical imputation (hot" 618 2 = "Cold deck imputation" 619 3 = "Logical imputation (derivation)" 620 4 = "Statistical or logical" 621 ; NOTE: Format AAFSRVDI has been output. 622 VALUE ESFR (default=32) 623 0 = "Not in universe" 624 1 = "Reference person of a rel. or" 625 2 = "Spouse of reference person of a" 626 3 = "Child (under 18) of reference" 627 ; NOTE: Format ESFR has been output. 628 VALUE ESFT (default=32) 629 0 = "Primary family" 630 1 = "Secondary indiv (not a family" 631 2 = "Unrelated subfamily" 632 3 = "Related subfamily" 11 The SAS System 11:48 Wednesday, December 4, 2002 633 4 = "Primary individual" 634 ; NOTE: Format ESFT has been output. 635 VALUE TAGE (default=32) 636 0 = "Less than 1 full year old" 637 ; NOTE: Format TAGE has been output. 638 VALUE AAGE (default=32) 639 0 = "Not imputed" 640 1 = "Statistical imputation (hot" 641 2 = "Cold deck imputation" 642 3 = "Logical imputation (derivation)" 643 4 = "Statistical or logical" 644 ; NOTE: Format AAGE has been output. 645 VALUE ERRP (default=32) 646 1 = "Reference person w/ rel. persons" 647 2 = "Reference Person w/out rel." 648 3 = "Spouse of reference person" 649 4 = "Child of reference person" 650 5 = "Grandchild of reference person" 651 6 = "Parent of reference person" 652 7 = "Brother/sister of reference" 653 8 = "Other relative of reference" 654 9 = "Foster child of reference person" 655 10 = "Unmarried partner of reference" 656 11 = "Housemate/roommate" 657 12 = "Roomer/boarder" 658 13 = "Other non-relative of reference" 659 ; NOTE: Format ERRP has been output. 660 VALUE ARRP (default=32) 661 0 = "Not imputed" 662 1 = "Statistical imputation (hot" 663 2 = "Cold deck imputation" 664 3 = "Logical imputation (derivation)" 665 4 = "Statistical or logical" 666 ; NOTE: Format ARRP has been output. 667 VALUE EMS (default=32) 668 1 = "Married, spouse present" 669 2 = "Married, Spouse absent" 670 3 = "Widowed" 671 4 = "Divorced" 672 5 = "Separated" 673 6 = "Never Married" 674 ; NOTE: Format EMS has been output. 675 VALUE AMS (default=32) 676 0 = "Not imputed" 677 1 = "Statistical imputation (hot" 678 2 = "Cold deck imputation" 679 3 = "Logical imputation (derivation)" 680 4 = "Statistical or logical" 681 ; NOTE: Format AMS has been output. 682 VALUE EPNSPOUS (default=32) 683 9999 = "Spouse not in hhld or person not" 684 ; NOTE: Format EPNSPOUS has been output. 685 VALUE APNSPOUS (default=32) 686 0 = "Not imputed" 687 1 = "Statistical imputation (hot" 688 2 = "Cold deck imputation" 689 3 = "Logical imputation (derivation)" 690 4 = "Statistical or logical" 691 ; NOTE: Format APNSPOUS has been output. 692 VALUE EPNMOM (default=32) 693 9999 = "No mother in household" 694 ; NOTE: Format EPNMOM has been output. 695 VALUE APNMOM (default=32) 696 0 = "Not imputed" 697 1 = "Statistical imputation (hot" 698 2 = "Cold deck imputation" 12 The SAS System 11:48 Wednesday, December 4, 2002 699 3 = "Logical imputation (derivation)" 700 4 = "Statistical or logical" 701 ; NOTE: Format APNMOM has been output. 702 VALUE EPNDAD (default=32) 703 9999 = "No father in household" 704 ; NOTE: Format EPNDAD has been output. 705 VALUE APNDAD (default=32) 706 0 = "Not imputed" 707 1 = "Statistical imputation (hot" 708 2 = "Cold deck imputation" 709 3 = "Logical imputation (derivation)" 710 4 = "Statistical or logical" 711 ; NOTE: Format APNDAD has been output. 712 VALUE EPNGUARD (default=32) 713 -1 = "Not in universe" 714 9999 = "Guardian not in household" 715 ; NOTE: Format EPNGUARD has been output. 716 VALUE APNGUARD (default=32) 717 0 = "Not imputed" 718 1 = "Statistical imputation (hot" 719 2 = "Cold deck imputation" 720 3 = "Logical imputation (derivation)" 721 4 = "Statistical or logical" 722 ; NOTE: Format APNGUARD has been output. 723 VALUE ETYPMOM (default=32) 724 -1 = "Not in universe" 725 1 = "Biological or natural child" 726 2 = "Stepchild" 727 3 = "Adopted child" 728 ; NOTE: Format ETYPMOM has been output. 729 VALUE ATYPMOM (default=32) 730 0 = "Not imputed" 731 1 = "Statistical imputation (hot" 732 2 = "Cold deck imputation" 733 3 = "Logical imputation (derivation)" 734 4 = "Statistical or logical" 735 ; NOTE: Format ATYPMOM has been output. 736 VALUE ETYPDAD (default=32) 737 -1 = "Not in universe" 738 1 = "Biological or natural child" 739 2 = "Stepchild" 740 3 = "Adopted child" 741 ; NOTE: Format ETYPDAD has been output. 742 VALUE ATYPDAD (default=32) 743 0 = "Not imputed" 744 1 = "Statistical imputation (hot" 745 2 = "Cold deck imputation" 746 3 = "Logical imputation (derivation)" 747 4 = "Statistical or logical" 748 ; NOTE: Format ATYPDAD has been output. 749 VALUE RDESGPNT (default=32) 750 -1 = "Not in universe" 751 1 = "Yes" 752 2 = "No" 753 ; NOTE: Format RDESGPNT has been output. 754 VALUE ULFTMAIN (default=32) 755 0 = "Not answered" 756 1 = "Deceased" 757 2 = "Institutionalized" 758 3 = "On active duty in the Armed" 759 4 = "Moved outside of U.S." 760 5 = "Separation or divorce" 761 6 = "Marriage" 762 7 = "Became employed/unemployed" 763 8 = "Due to job change - other" 764 9 = "Listed in error in prior wave" 13 The SAS System 11:48 Wednesday, December 4, 2002 765 10 = "Other" 766 11 = "Moved to type C household" 767 ; NOTE: Format ULFTMAIN has been output. 768 VALUE UENTMAIN (default=32) 769 0 = "Not answered" 770 1 = "Birth" 771 2 = "Marriage" 772 3 = "Returned to hhld after missing" 773 4 = "Due to separation or divorce" 774 5 = "From an institution" 775 6 = "From Armed Forces barracks" 776 7 = "From outside the U.S." 777 8 = "Should have been listed as" 778 9 = "Became employed/unemployed" 779 10 = "Job change - other" 780 11 = "Lived at this address before" 781 12 = "Other" 782 ; NOTE: Format UENTMAIN has been output. 783 VALUE ULFTDAY (default=32) 784 0 = "Not answered" 785 ; NOTE: Format ULFTDAY has been output. 786 VALUE ULFTMON (default=32) 787 0 = "Not answered" 788 ; NOTE: Format ULFTMON has been output. 789 VALUE UENTDAY (default=32) 790 0 = "Not answered" 791 ; NOTE: Format UENTDAY has been output. 792 VALUE UENTMON (default=32) 793 0 = "Not answered" 794 13 = "Entered before reference period" 795 ; NOTE: Format UENTMON has been output. 796 VALUE TPEARN (default=32) 797 0 = "None or not in universe" 798 ; NOTE: Format TPEARN has been output. 799 VALUE TPPRPINC (default=32) 800 0 = "None or not in universe" 801 ; NOTE: Format TPPRPINC has been output. 802 VALUE TPTRNINC (default=32) 803 0 = "None or not in universe" 804 ; NOTE: Format TPTRNINC has been output. 805 VALUE TPOTHINC (default=32) 806 0 = "None or not in universe" 807 ; NOTE: Format TPOTHINC has been output. 808 VALUE TPTOTINC (default=32) 809 0 = "None or not in universe" 810 ; NOTE: Format TPTOTINC has been output. 811 VALUE TPPNDIST (default=32) 812 0 = "None or not in universe" 813 ; NOTE: Format TPPNDIST has been output. 814 VALUE TPLUMPSM (default=32) 815 0 = "None or not in universe" 816 ; NOTE: Format TPLUMPSM has been output. 817 VALUE EHTLNYN (default=32) 818 -1 = "Not in universe" 819 1 = "Yes" 820 2 = "No" 821 ; NOTE: Format EHTLNYN has been output. 822 VALUE AHTLNYN (default=32) 823 0 = "Not imputed" 824 1 = "Statistical imputation (hot" 825 2 = "Cold deck imputation" 826 3 = "Logical imputation (derivation)" 14 The SAS System 11:48 Wednesday, December 4, 2002 827 4 = "Statistical or logical" 828 ; NOTE: Format AHTLNYN has been output. 829 VALUE EBKFSYN (default=32) 830 -1 = "Not in universe" 831 1 = "Yes" 832 2 = "No" 833 ; NOTE: Format EBKFSYN has been output. 834 VALUE ABKFSYN (default=32) 835 0 = "Not imputed" 836 1 = "Statistical imputation (hot" 837 2 = "Cold deck imputation" 838 3 = "Logical imputation (derivation)" 839 4 = "Statistical or logical" 840 ; NOTE: Format ABKFSYN has been output. 841 VALUE RCUTYP0A (default=32) 842 1 = "Yes, covered" 843 2 = "No, not covered" 844 ; NOTE: Format RCUTYP0A has been output. 845 VALUE RCUOWN0A (default=32) 846 0 = "Not in universe" 847 ; NOTE: Format RCUOWN0A has been output. 848 VALUE RCUTYP0C (default=32) 849 1 = "Yes, covered" 850 2 = "No, not covered" 851 ; NOTE: Format RCUTYP0C has been output. 852 VALUE RCUOWN0C (default=32) 853 0 = "Not in universe" 854 ; NOTE: Format RCUOWN0C has been output. 855 VALUE RCUTYP0D (default=32) 856 1 = "Yes, covered" 857 2 = "No, not covered" 858 ; NOTE: Format RCUTYP0D has been output. 859 VALUE RCUOWN0D (default=32) 860 0 = "Not in universe" 861 ; NOTE: Format RCUOWN0D has been output. 862 VALUE RCUTYP0H (default=32) 863 1 = "Yes, covered" 864 2 = "No, not covered" 865 ; NOTE: Format RCUTYP0H has been output. 866 VALUE RCUOWN8A (default=32) 867 0 = "Not in universe" 868 ; NOTE: Format RCUOWN8A has been output. 869 VALUE RCUOWN8B (default=32) 870 0 = "Not in universe" 871 ; NOTE: Format RCUOWN8B has been output. 872 VALUE RCUTYP2J (default=32) 873 1 = "Yes, covered" 874 2 = "No, not covered" 875 ; NOTE: Format RCUTYP2J has been output. 876 VALUE RCUOWN2J (default=32) 877 0 = "Not in universe" 878 ; NOTE: Format RCUOWN2J has been output. 879 VALUE RCUTYP2A (default=32) 880 1 = "Yes, covered" 881 2 = "No, not covered" 882 ; NOTE: Format RCUTYP2A has been output. 883 VALUE RCUOW21A (default=32) 884 0 = "Not in universe" 885 ; NOTE: Format RCUOW21A has been output. 886 VALUE RCUOW21B (default=32) 15 The SAS System 11:48 Wednesday, December 4, 2002 887 0 = "Not in universe" 888 ; NOTE: Format RCUOW21B has been output. 889 VALUE RCUTYP2C (default=32) 890 1 = "Yes, covered" 891 2 = "No, not covered" 892 ; NOTE: Format RCUTYP2C has been output. 893 VALUE RCUOWN2C (default=32) 894 0 = "Not in universe" 895 ; NOTE: Format RCUOWN2C has been output. 896 VALUE RCUTYP2D (default=32) 897 1 = "Yes, covered" 898 2 = "No, not covered" 899 ; NOTE: Format RCUTYP2D has been output. 900 VALUE RCUOW24A (default=32) 901 0 = "Not in universe" 902 ; NOTE: Format RCUOW24A has been output. 903 VALUE RCUOW24B (default=32) 904 0 = "Not in universe" 905 ; NOTE: Format RCUOW24B has been output. 906 VALUE RCUTYP2E (default=32) 907 1 = "Yes, covered" 908 2 = "No, not covered" 909 ; NOTE: Format RCUTYP2E has been output. 910 VALUE RCUOWN2E (default=32) 911 0 = "Not in universe" 912 ; NOTE: Format RCUOWN2E has been output. 913 VALUE RCUTYP2G (default=32) 914 1 = "Yes, covered" 915 2 = "No, not covered" 916 ; NOTE: Format RCUTYP2G has been output. 917 VALUE RCUOWN2G (default=32) 918 0 = "Not in universe" 919 ; NOTE: Format RCUOWN2G has been output. 920 VALUE RCUTYP5G (default=32) 921 1 = "Yes, covered" 922 2 = "No, not covered" 923 ; NOTE: Format RCUTYP5G has been output. 924 VALUE RCUOWN5G (default=32) 925 0 = "Not in universe" 926 ; NOTE: Format RCUOWN5G has been output. 927 VALUE RCUTYP5H (default=32) 928 1 = "Yes, covered" 929 2 = "No, not covered" 930 ; NOTE: Format RCUTYP5H has been output. 931 VALUE RCUOW58A (default=32) 932 0 = "Not in universe" 933 ; NOTE: Format RCUOW58A has been output. 934 VALUE RCUOW58B (default=32) 935 0 = "Not in universe" 936 ; NOTE: Format RCUOW58B has been output. 937 VALUE RENROLL (default=32) 938 -1 = "Not in universe" 939 1 = "Enrolled full-time" 940 2 = "Enrolled part-time" 941 3 = "Not enrolled" 942 ; NOTE: Format RENROLL has been output. 943 VALUE ARENROLL (default=32) 944 0 = "Not imputed" 945 1 = "Statistical imputation (hot" 946 2 = "Cold deck imputation" 16 The SAS System 11:48 Wednesday, December 4, 2002 947 3 = "Logical imputation (derivation)" 948 4 = "Statistical or logical" 949 ; NOTE: Format ARENROLL has been output. 950 VALUE EENRLM (default=32) 951 -1 = "Not in universe" 952 1 = "Yes" 953 2 = "No" 954 ; NOTE: Format EENRLM has been output. 955 VALUE AENRLM (default=32) 956 0 = "Not imputed" 957 1 = "Statistical imputation (hot" 958 2 = "Cold deck imputation" 959 3 = "Logical imputation (derivation)" 960 4 = "Statistical or logical" 961 ; NOTE: Format AENRLM has been output. 962 VALUE RENRLMA (default=32) 963 -1 = "Not in universe" 964 1 = "Yes" 965 2 = "No" 966 ; NOTE: Format RENRLMA has been output. 967 VALUE EENLEVEL (default=32) 968 -1 = "Not in universe" 969 1 = "Elementary grades 1-8" 970 2 = "High school grades 9-12" 971 3 = "College year 1 (freshman)" 972 4 = "College year 2 (sophomore)" 973 5 = "College year 3 (junior)" 974 6 = "College year 4 (senior)" 975 7 = "College year 5 (first year" 976 8 = "College year 6+ (second year or" 977 9 = "Vocational, technical, or" 978 10 = "Enrolled in college, but not" 979 ; NOTE: Format EENLEVEL has been output. 980 VALUE AENLEVEL (default=32) 981 0 = "Not imputed" 982 1 = "Statistical imputation (hot" 983 2 = "Cold deck imputation" 984 3 = "Logical imputation (derivation)" 985 4 = "Statistical or logical" 986 ; NOTE: Format AENLEVEL has been output. 987 VALUE EEDFUND (default=32) 988 -1 = "Not in universe" 989 1 = "Yes" 990 2 = "No" 991 ; NOTE: Format EEDFUND has been output. 992 VALUE AEDFUND (default=32) 993 0 = "Not imputed" 994 1 = "Statistical imputation (hot" 995 2 = "Cold deck imputation" 996 3 = "Logical imputation (derivation)" 997 4 = "Statistical or logical" 998 ; NOTE: Format AEDFUND has been output. 999 VALUE EASST01L (default=32) 1000 -1 = "Not in universe" 1001 1 = "Received" 1002 2 = "Did not receive" 1003 ; NOTE: Format EASST01L has been output. 1004 VALUE EASST03L (default=32) 1005 -1 = "Not in universe" 1006 1 = "Received" 1007 2 = "Did not receive" 1008 ; NOTE: Format EASST03L has been output. 1009 VALUE EASST04L (default=32) 1010 -1 = "Not in universe" 1011 1 = "Received" 1012 2 = "Did not receive" 17 The SAS System 11:48 Wednesday, December 4, 2002 1013 ; NOTE: Format EASST04L has been output. 1014 VALUE EASST05L (default=32) 1015 -1 = "Not in universe" 1016 1 = "Received" 1017 2 = "Did not receive" 1018 ; NOTE: Format EASST05L has been output. 1019 VALUE EASST06L (default=32) 1020 -1 = "Not in universe" 1021 1 = "Received" 1022 2 = "Did not receive" 1023 ; NOTE: Format EASST06L has been output. 1024 VALUE EASST07L (default=32) 1025 -1 = "Not in universe" 1026 1 = "Received" 1027 2 = "Did not receive" 1028 ; NOTE: Format EASST07L has been output. 1029 VALUE EASST08L (default=32) 1030 -1 = "Not in universe" 1031 1 = "Received" 1032 2 = "Did not receive" 1033 ; NOTE: Format EASST08L has been output. 1034 VALUE EASST09L (default=32) 1035 -1 = "Not in universe" 1036 1 = "Received" 1037 2 = "Did not receive" 1038 ; NOTE: Format EASST09L has been output. 1039 VALUE EASST10L (default=32) 1040 -1 = "Not in universe" 1041 1 = "Received" 1042 2 = "Did not receive" 1043 ; NOTE: Format EASST10L has been output. 1044 VALUE EASST11L (default=32) 1045 -1 = "Not in universe" 1046 1 = "Received" 1047 2 = "Did not receive" 1048 ; NOTE: Format EASST11L has been output. 1049 VALUE AEDASST (default=32) 1050 0 = "Not imputed" 1051 1 = "Statistical imputation (hot" 1052 2 = "Cold deck imputation" 1053 3 = "Logical imputation (derivation)" 1054 4 = "Statistical or logical" 1055 ; NOTE: Format AEDASST has been output. 1056 VALUE EEDUCATE (default=32) 1057 31 = "Less than 1st grade" 1058 32 = "1st, 2nd, 3rd or 4th grade" 1059 33 = "5th or 6th grade" 1060 34 = "7th or 8th grade" 1061 35 = "9th grade" 1062 36 = "10th grade" 1063 37 = "11th grade" 1064 38 = "12th grade" 1065 39 = "High school graduate - high" 1066 40 = "Some college but no degree" 1067 41 = "Diploma or certificate from a" 1068 42 = "Associate degree in college -" 1069 43 = "Associate Degree in college -" 1070 44 = "Bachelors degree (For example:" 1071 45 = "Master's degree (For example:" 1072 46 = "Professional School Degree (For" 1073 47 = "Doctorate degree (For example:" 1074 ; NOTE: Format EEDUCATE has been output. 1075 VALUE AEDUCATE (default=32) 1076 0 = "Not imputed" 1077 1 = "Statistical imputation (hot" 1078 2 = "Cold deck imputation" 18 The SAS System 11:48 Wednesday, December 4, 2002 1079 3 = "Logical imputation (derivation)" 1080 4 = "Statistical or logical" 1081 ; NOTE: Format AEDUCATE has been output. 1082 VALUE EPDJBTHN (default=32) 1083 -1 = "Not in universe" 1084 1 = "Yes" 1085 2 = "No" 1086 ; NOTE: Format EPDJBTHN has been output. 1087 VALUE APDJBTHN (default=32) 1088 0 = "Not imputed" 1089 1 = "Statistical imputation (hot" 1090 2 = "Cold deck imputation" 1091 3 = "Logical imputation (derivation)" 1092 4 = "Statistical or logical" 1093 ; NOTE: Format APDJBTHN has been output. 1094 VALUE EPPFLAG (default=32) 1095 -1 = "= Not in universe or not" 1096 1 = "= Yes" 1097 ; NOTE: Format EPPFLAG has been output. 1098 VALUE EMAX (default=32) 1099 -1 = "Not in universe" 1100 ; NOTE: Format EMAX has been output. 1101 VALUE EBUSCNTR (default=32) 1102 -1 = "Not in universe" 1103 0 = "Contingent business" 1104 ; NOTE: Format EBUSCNTR has been output. 1105 VALUE EJOBCNTR (default=32) 1106 -1 = "Not in universe" 1107 0 = "Contingent workers" 1108 ; NOTE: Format EJOBCNTR has been output. 1109 VALUE EEVERET (default=32) 1110 -1 = "Not in universe" 1111 1 = "Yes" 1112 2 = "No" 1113 ; NOTE: Format EEVERET has been output. 1114 VALUE AEVERET (default=32) 1115 0 = "Not imputed" 1116 1 = "Statistical imputation(hot deck)" 1117 2 = "Cold deck imputation" 1118 3 = "Logical imputation(derivation)" 1119 4 = "Statistical or logical" 1120 ; NOTE: Format AEVERET has been output. 1121 VALUE EDISABL (default=32) 1122 -1 = "Not in universe" 1123 1 = "Yes" 1124 2 = "No" 1125 ; NOTE: Format EDISABL has been output. 1126 VALUE ADISABL (default=32) 1127 0 = "Not imputed" 1128 1 = "Statistical imputation(hot deck)" 1129 2 = "Cold deck imputation" 1130 3 = "Logical imputation(derivation)" 1131 4 = "Statistical or logical" 1132 ; NOTE: Format ADISABL has been output. 1133 VALUE EDISPREV (default=32) 1134 -1 = "Not in universe" 1135 1 = "Yes" 1136 2 = "No" 1137 ; NOTE: Format EDISPREV has been output. 1138 VALUE ADISPREV (default=32) 1139 0 = "Not imputed" 1140 1 = "Statistical imputation(hot deck)" 1141 2 = "Cold deck imputation" 1142 3 = "Logical imputation(derivation)" 19 The SAS System 11:48 Wednesday, December 4, 2002 1143 4 = "Statistical or logical" 1144 ; NOTE: Format ADISPREV has been output. 1145 VALUE ERSNOWRK (default=32) 1146 -1 = "Not in universe" 1147 1 = "Temporarily unable to work" 1148 2 = "Temporarily not able to work" 1149 3 = "Unable to work because of" 1150 4 = "Retired" 1151 5 = "Pregnancy/childbirth" 1152 6 = "Taking care of children/other" 1153 7 = "Going to school" 1154 8 = "Unable to find work" 1155 9 = "On layoff" 1156 10 = "Not interested in working at a" 1157 11 = "Other" 1158 ; NOTE: Format ERSNOWRK has been output. 1159 VALUE ARSNOWRK (default=32) 1160 0 = "Not imputed" 1161 1 = "Statistical imputation(hot deck)" 1162 2 = "Cold deck imputation" 1163 3 = "Logical imputation(derivation)" 1164 4 = "Statistical or logical" 1165 ; NOTE: Format ARSNOWRK has been output. 1166 VALUE EAWOP (default=32) 1167 -1 = "Not in universe" 1168 1 = "Yes" 1169 2 = "No" 1170 ; NOTE: Format EAWOP has been output. 1171 VALUE AAWOP (default=32) 1172 0 = "Not imputed" 1173 1 = "Statistical imputation(hot deck)" 1174 2 = "Cold deck imputation" 1175 3 = "Logical imputation(derivation)" 1176 4 = "Statistical or logical" 1177 ; NOTE: Format AAWOP has been output. 1178 VALUE EABRE (default=32) 1179 -1 = "Not in universe" 1180 1 = "On layoff (temporary or" 1181 2 = "Slack work or business" 1182 3 = "Own injury" 1183 4 = "Own illness/injury/medical" 1184 5 = "Pregnancy/childbirth" 1185 6 = "Taking care of children" 1186 7 = "On vacation/personal days" 1187 8 = "Bad weather" 1188 9 = "Labor dispute" 1189 10 = "New job to begin within 30 days" 1190 11 = "Participated in a job-sharing" 1191 12 = "Other" 1192 ; NOTE: Format EABRE has been output. 1193 VALUE AABRE (default=32) 1194 0 = "Not imputed" 1195 1 = "Statistical imputation(hot deck)" 1196 2 = "Cold deck imputation" 1197 3 = "Logical imputation(derivation)" 1198 4 = "Statistical or logical" 1199 ; NOTE: Format AABRE has been output. 1200 VALUE EPTWRK (default=32) 1201 -1 = "Not in universe" 1202 1 = "Yes" 1203 2 = "No" 1204 ; NOTE: Format EPTWRK has been output. 1205 VALUE APTWRK (default=32) 1206 0 = "Not imputed" 1207 1 = "Statistical imputation(hot deck)" 1208 2 = "Cold deck imputation" 1209 3 = "Logical imputation(derivation)" 1210 4 = "Statistical or logical" 20 The SAS System 11:48 Wednesday, December 4, 2002 1211 ; NOTE: Format APTWRK has been output. 1212 VALUE EPTRESN (default=32) 1213 -1 = "Not in universe" 1214 1 = "Could not find full-time job" 1215 2 = "Wanted to work part time" 1216 3 = "Temporarily unable to work" 1217 4 = "Temporarily not able to work" 1218 5 = "Unable to work full-time because" 1219 6 = "Taking care of children/other" 1220 7 = "Full-time work week less than 35" 1221 8 = "Slack work or material shortage" 1222 9 = "Participated in job sharing" 1223 10 = "On vacation" 1224 11 = "In school" 1225 12 = "Other" 1226 ; NOTE: Format EPTRESN has been output. 1227 VALUE APTRESN (default=32) 1228 0 = "Not imputed" 1229 1 = "Statistical imputation(hot deck)" 1230 2 = "Cold deck imputation" 1231 3 = "Logical imputation(derivation)" 1232 4 = "Statistical or logical" 1233 ; NOTE: Format APTRESN has been output. 1234 VALUE ELKWRK (default=32) 1235 -1 = "Not in universe" 1236 1 = "Yes" 1237 2 = "No" 1238 ; NOTE: Format ELKWRK has been output. 1239 VALUE ALKWRK (default=32) 1240 0 = "Not imputed" 1241 1 = "Statistical imputation(hot deck)" 1242 2 = "Cold deck imputation" 1243 3 = "Logical imputation(derivation)" 1244 4 = "Statistical or logical" 1245 ; NOTE: Format ALKWRK has been output. 1246 VALUE ELAYOFF (default=32) 1247 -1 = "Not in universe" 1248 1 = "Yes" 1249 2 = "No" 1250 ; NOTE: Format ELAYOFF has been output. 1251 VALUE ALAYOFF (default=32) 1252 0 = "Not imputed" 1253 1 = "Statistical imputation(hot deck)" 1254 2 = "Cold deck imputation" 1255 3 = "Logical imputation(derivation)" 1256 4 = "Statistical or logical" 1257 ; NOTE: Format ALAYOFF has been output. 1258 VALUE RTAKJOB (default=32) 1259 -1 = "Not in universe" 1260 0 = "Not reported" 1261 1 = "Yes" 1262 2 = "No" 1263 ; NOTE: Format RTAKJOB has been output. 1264 VALUE RNOTAKE (default=32) 1265 -1 = "Not in universe" 1266 0 = "Not reported" 1267 1 = "Waiting for a new job to begin" 1268 2 = "Own temporary illness" 1269 3 = "School" 1270 4 = "Other" 1271 ; NOTE: Format RNOTAKE has been output. 1272 VALUE EMOONLIT (default=32) 1273 -1 = "Not in universe" 1274 1 = "Yes" 1275 2 = "No" 1276 ; NOTE: Format EMOONLIT has been output. 21 The SAS System 11:48 Wednesday, December 4, 2002 1277 VALUE AMOONLIT (default=32) 1278 0 = "Not imputed" 1279 1 = "Statistical imputation(hot deck)" 1280 2 = "Cold deck imputation" 1281 3 = "Logical imputation(derivation)" 1282 4 = "Statistical or logical" 1283 ; NOTE: Format AMOONLIT has been output. 1284 VALUE TMLMSUM (default=32) 1285 0 = "None or not in universe" 1286 ; NOTE: Format TMLMSUM has been output. 1287 VALUE AMLMSUM (default=32) 1288 0 = "Not imputed" 1289 1 = "Statistical imputation(hot deck)" 1290 2 = "Cold deck imputation" 1291 3 = "Logical imputation(derivation)" 1292 4 = "Statistical or logical" 1293 ; NOTE: Format AMLMSUM has been output. 1294 VALUE EBFLAG (default=32) 1295 -1 = "Not in universe or not" 1296 1 = "Yes" 1297 ; NOTE: Format EBFLAG has been output. 1298 VALUE ECFLAG (default=32) 1299 -1 = "Not in universe" 1300 1 = "Yes" 1301 ; NOTE: Format ECFLAG has been output. 1302 VALUE RMESR (default=32) 1303 1 = "With a job entire month, worked" 1304 2 = "With a job all month, absent" 1305 3 = "With job all month, absent from" 1306 4 = "With a job at least 1 but not" 1307 5 = "With job at least 1 but not all" 1308 6 = "No job all month, on layoff or" 1309 7 = "No job, at least one but not all" 1310 8 = "No job, no time on layoff and no" 1311 ; NOTE: Format RMESR has been output. 1312 VALUE RWKESR1L (default=32) 1313 -1 = "Not in universe" 1314 1 = "With job/bus - working" 1315 2 = "With job/bus - not on layoff," 1316 3 = "With job/bus - on layoff, absent" 1317 4 = "No job/bus - looking for work or" 1318 5 = "No job/bus - not looking and not" 1319 ; NOTE: Format RWKESR1L has been output. 1320 VALUE RWKESR2L (default=32) 1321 -1 = "Not in universe" 1322 1 = "With job/bus - working" 1323 2 = "With job/bus - not on layoff," 1324 3 = "With job/bus - on layoff, absent" 1325 4 = "No job/bus - looking for work or" 1326 5 = "No job/bus - not looking and not" 1327 ; NOTE: Format RWKESR2L has been output. 1328 VALUE RWKESR3L (default=32) 1329 -1 = "Not in universe" 1330 1 = "With job/bus - working" 1331 2 = "With job/bus - not on layoff," 1332 3 = "With job/bus - on layoff, absent" 1333 4 = "No job/bus - looking for work or" 1334 5 = "No job/bus - not looking and not" 1335 ; NOTE: Format RWKESR3L has been output. 1336 VALUE RWKESR4L (default=32) 1337 -1 = "Not in universe" 1338 1 = "With job/bus - working" 1339 2 = "With job/bus - not on layoff," 1340 3 = "With job/bus - on layoff, absent" 1341 4 = "No job/bus - looking for work or" 1342 5 = "No job/bus - not looking and not" 1343 ; 22 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format RWKESR4L has been output. 1344 VALUE RWKESR5L (default=32) 1345 -1 = "Not in universe" 1346 1 = "With job/bus - working" 1347 2 = "With job/bus - not on layoff," 1348 3 = "With job/bus - on layoff, absent" 1349 4 = "No job/bus - looking for work or" 1350 5 = "No job/bus - not looking and not" 1351 ; NOTE: Format RWKESR5L has been output. 1352 VALUE RMWKWJB (default=32) 1353 -1 = "Not in universe" 1354 0 = "0 weeks (that is, did not have a" 1355 1 = "1 week" 1356 2 = "2 weeks" 1357 3 = "3 weeks" 1358 4 = "4 weeks" 1359 5 = "5 weeks (if applicable)" 1360 ; NOTE: Format RMWKWJB has been output. 1361 VALUE RMWKSAB (default=32) 1362 -1 = "Not in universe" 1363 0 = "0 weeks (that is, not absent" 1364 1 = "1 week" 1365 2 = "2 weeks" 1366 3 = "3 weeks" 1367 4 = "4 weeks" 1368 5 = "5 weeks (if applicable)" 1369 ; NOTE: Format RMWKSAB has been output. 1370 VALUE AWKSAB (default=32) 1371 0 = "Not imputed" 1372 1 = "Statistical imputation(hot deck)" 1373 2 = "Cold deck imputation" 1374 3 = "Logical imputation(derivation)" 1375 4 = "Statistical or logical" 1376 ; NOTE: Format AWKSAB has been output. 1377 VALUE RMWKLKG (default=32) 1378 -1 = "Not in universe" 1379 0 = "0 weeks (that is, did not look" 1380 1 = "1 week" 1381 2 = "2 weeks" 1382 3 = "3 weeks" 1383 4 = "4 weeks" 1384 5 = "5 weeks (if applicable)" 1385 ; NOTE: Format RMWKLKG has been output. 1386 VALUE AWKLKG (default=32) 1387 0 = "Not imputed" 1388 1 = "Statistical imputation(hot deck)" 1389 2 = "Cold deck imputation" 1390 3 = "Logical imputation(derivation)" 1391 4 = "Statistical or logical" 1392 ; NOTE: Format AWKLKG has been output. 1393 VALUE RMHRSWK (default=32) 1394 -1 = "Not in universe" 1395 0 = "Did not work" 1396 1 = "All weeks 35+" 1397 2 = "All weeks 1-34 hours" 1398 3 = "Some weeks 35+ and some weeks" 1399 4 = "Some weeks 35+, some 1-34 hours," 1400 5 = "At least 1, but not all, weeks" 1401 6 = "At least 1 week, but not all" 1402 ; NOTE: Format RMHRSWK has been output. 1403 VALUE RWKSPERM (default=32) 1404 -1 = "Not in universe" 1405 4 = "four weeks" 1406 5 = "five weeks" 1407 ; NOTE: Format RWKSPERM has been output. 1408 VALUE EENO1L (default=32) 1409 -1 = "Not in universe" 1410 ; 23 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format EENO1L has been output. 1411 VALUE ESTLEMPA (default=32) 1412 -1 = "Not in universe" 1413 1 = "Yes" 1414 2 = "No" 1415 ; NOTE: Format ESTLEMPA has been output. 1416 VALUE ASTLEMPA (default=32) 1417 0 = "Not imputed" 1418 1 = "Statistical imputation(hot deck)" 1419 2 = "Cold deck imputation" 1420 3 = "Logical imputation(derivation)" 1421 4 = "Statistical or logical" 1422 ; NOTE: Format ASTLEMPA has been output. 1423 VALUE TSJDATEA (default=32) 1424 -1 = "Not in universe" 1425 ; NOTE: Format TSJDATEA has been output. 1426 VALUE ASJDATEA (default=32) 1427 0 = "Not imputed" 1428 1 = "Statistical imputation(hot deck)" 1429 2 = "Cold deck imputation" 1430 3 = "Logical imputation(derivation)" 1431 4 = "Statistical or logical" 1432 ; NOTE: Format ASJDATEA has been output. 1433 VALUE TEJDATEA (default=32) 1434 -1 = "Not in universe" 1435 ; NOTE: Format TEJDATEA has been output. 1436 VALUE AEJDATEA (default=32) 1437 0 = "Not imputed" 1438 1 = "Statistical imputation(hot deck)" 1439 2 = "Cold deck imputation" 1440 3 = "Logical imputation(derivation)" 1441 4 = "Statistical or logical" 1442 ; NOTE: Format AEJDATEA has been output. 1443 VALUE ERSEND1L (default=32) 1444 -1 = "Not in universe" 1445 1 = "On layoff" 1446 2 = "Retirement or old age" 1447 3 = "Childcare problems" 1448 4 = "Other family/personal" 1449 5 = "Own illness" 1450 6 = "Own injury" 1451 7 = "School/training" 1452 8 = "Discharged/fired" 1453 9 = "Employer bankrupt" 1454 10 = "Employer, sold business" 1455 11 = "Job was temporary and ended" 1456 12 = "Quit to take another job" 1457 13 = "Slack work or business" 1458 14 = "Unsatisfactory work arrangements" 1459 15 = "Quit for some other reason" 1460 ; NOTE: Format ERSEND1L has been output. 1461 VALUE ARSEND1L (default=32) 1462 0 = "Not imputed" 1463 1 = "Statistical imputation(hot deck)" 1464 2 = "Cold deck imputation" 1465 3 = "Logical imputation(derivation)" 1466 4 = "Statistical or logical" 1467 ; NOTE: Format ARSEND1L has been output. 1468 VALUE EJBHRS1L (default=32) 1469 -1 = "Not in universe" 1470 ; NOTE: Format EJBHRS1L has been output. 1471 VALUE AJBHRS1L (default=32) 1472 0 = "Not imputed" 1473 1 = "Statistical imputation(hot deck)" 1474 2 = "Cold deck imputation" 1475 3 = "Logical imputation(derivation)" 1476 4 = "Statistical or logical" 24 The SAS System 11:48 Wednesday, December 4, 2002 1477 ; NOTE: Format AJBHRS1L has been output. 1478 VALUE EEMPLOCA (default=32) 1479 -1 = "Not in universe" 1480 1 = "Yes" 1481 2 = "No" 1482 ; NOTE: Format EEMPLOCA has been output. 1483 VALUE AEMPLOCA (default=32) 1484 0 = "Not imputed" 1485 1 = "Statistical imputation(hot deck)" 1486 2 = "Cold deck imputation" 1487 3 = "Logical imputation(derivation)" 1488 4 = "Statistical or logical" 1489 ; NOTE: Format AEMPLOCA has been output. 1490 VALUE TEMPALLA (default=32) 1491 -1 = "Not in universe" 1492 1 = "Under 25 employees" 1493 2 = "25 to 99 employees" 1494 3 = "100+ employees" 1495 ; NOTE: Format TEMPALLA has been output. 1496 VALUE AEMPALLA (default=32) 1497 0 = "Not imputed" 1498 1 = "Statistical imputation(hot deck)" 1499 2 = "Cold deck imputation" 1500 3 = "Logical imputation(derivation)" 1501 4 = "Statistical or logical" 1502 ; NOTE: Format AEMPALLA has been output. 1503 VALUE TEMPSIZA (default=32) 1504 -1 = "Not in universe" 1505 1 = "Under 25 employees" 1506 2 = "25 to 99 employees" 1507 3 = "100+ employees" 1508 ; NOTE: Format TEMPSIZA has been output. 1509 VALUE AEMPSIZA (default=32) 1510 0 = "Not imputed" 1511 1 = "Statistical imputation(hot deck)" 1512 2 = "Cold deck imputation" 1513 3 = "Logical imputation(derivation)" 1514 4 = "Statistical or logical" 1515 ; NOTE: Format AEMPSIZA has been output. 1516 VALUE ECLWRK1L (default=32) 1517 -1 = "Not in universe" 1518 1 = "Private for profit employee" 1519 2 = "Private not for profit employee" 1520 3 = "Local government worker" 1521 4 = "State government worker" 1522 5 = "Federal government worker" 1523 6 = "Family worker without pay" 1524 ; NOTE: Format ECLWRK1L has been output. 1525 VALUE ACLWRK1L (default=32) 1526 0 = "Not imputed" 1527 1 = "Statistical imputation(hot deck)" 1528 2 = "Cold deck imputation" 1529 3 = "Logical imputation(derivation)" 1530 4 = "Statistical or logical" 1531 ; NOTE: Format ACLWRK1L has been output. 1532 VALUE EUNION1L (default=32) 1533 -1 = "Not in universe" 1534 1 = "Yes" 1535 2 = "No" 1536 ; NOTE: Format EUNION1L has been output. 1537 VALUE AUNION1L (default=32) 1538 0 = "Not imputed" 1539 1 = "Statistical imputation(hot deck)" 1540 2 = "Cold deck imputation" 1541 3 = "Logical imputation(derivation)" 1542 4 = "Statistical or logical" 25 The SAS System 11:48 Wednesday, December 4, 2002 1543 ; NOTE: Format AUNION1L has been output. 1544 VALUE ECNTRC1L (default=32) 1545 -1 = "Not in universe" 1546 1 = "Yes" 1547 2 = "No" 1548 ; NOTE: Format ECNTRC1L has been output. 1549 VALUE ACNTRC1L (default=32) 1550 0 = "Not imputed" 1551 1 = "Statistical imputation(hot deck)" 1552 2 = "Cold deck imputation" 1553 3 = "Logical imputation(derivation)" 1554 4 = "Statistical or logical" 1555 ; NOTE: Format ACNTRC1L has been output. 1556 VALUE TPMSUM1L (default=32) 1557 0 = "None or not in universe" 1558 ; NOTE: Format TPMSUM1L has been output. 1559 VALUE APMSUM1L (default=32) 1560 0 = "Not imputed" 1561 1 = "Statistical imputation(hot deck)" 1562 2 = "Cold deck imputation" 1563 3 = "Logical imputation(derivation)" 1564 4 = "Statistical or logical" 1565 ; NOTE: Format APMSUM1L has been output. 1566 VALUE EPAYHR1L (default=32) 1567 -1 = "Not in universe" 1568 1 = "Yes" 1569 2 = "No" 1570 ; NOTE: Format EPAYHR1L has been output. 1571 VALUE APAYHR1L (default=32) 1572 0 = "Not imputed" 1573 1 = "Statistical imputation(hot deck)" 1574 2 = "Cold deck imputation" 1575 3 = "Logical imputation(derivation)" 1576 4 = "Statistical or logical" 1577 ; NOTE: Format APAYHR1L has been output. 1578 VALUE TPYRATEA (default=32) 1579 0 = "Not in universe or none" 1580 ; NOTE: Format TPYRATEA has been output. 1581 VALUE APYRATEA (default=32) 1582 0 = "Not imputed" 1583 1 = "Statistical imputation(hot deck)" 1584 2 = "Cold deck imputation" 1585 3 = "Logical imputation(derivation)" 1586 4 = "Statistical or logical" 1587 ; NOTE: Format APYRATEA has been output. 1588 VALUE RPYPER1L (default=32) 1589 -1 = "Not in universe" 1590 1 = "Once a week" 1591 2 = "Once every two weeks" 1592 3 = "Once a month" 1593 4 = "Twice a month" 1594 5 = "Unpaid in a family business or" 1595 6 = "On commission" 1596 7 = "Some other way" 1597 8 = "Not reported" 1598 ; NOTE: Format RPYPER1L has been output. 1599 VALUE AJBIND1L (default=32) 1600 0 = "Not imputed" 1601 1 = "Statistical imputation(hot deck)" 1602 2 = "Cold deck imputation" 1603 3 = "Logical imputation(derivation)" 1604 4 = "Statistical or logical" 1605 ; NOTE: Format AJBIND1L has been output. 1606 VALUE AJBOCC1L (default=32) 1607 0 = "Not imputed" 26 The SAS System 11:48 Wednesday, December 4, 2002 1608 1 = "Statistical imputation(hot deck)" 1609 2 = "Cold deck imputation" 1610 3 = "Logical imputation(derivation)" 1611 4 = "Statistical or logical" 1612 ; NOTE: Format AJBOCC1L has been output. 1613 VALUE EENO2L (default=32) 1614 -1 = "Not in universe" 1615 ; NOTE: Format EENO2L has been output. 1616 VALUE ESTLEMPB (default=32) 1617 -1 = "Not in universe" 1618 1 = "Yes" 1619 2 = "No" 1620 ; NOTE: Format ESTLEMPB has been output. 1621 VALUE ASTLEMPB (default=32) 1622 0 = "Not imputed" 1623 1 = "Statistical imputation(hot deck)" 1624 2 = "Cold deck imputation" 1625 3 = "Logical imputation(derivation)" 1626 4 = "Statistical or logical" 1627 ; NOTE: Format ASTLEMPB has been output. 1628 VALUE TSJDATEB (default=32) 1629 -1 = "Not in universe" 1630 ; NOTE: Format TSJDATEB has been output. 1631 VALUE ASJDATEB (default=32) 1632 0 = "Not imputed" 1633 1 = "Statistical imputation(hot deck)" 1634 2 = "Cold deck imputation" 1635 3 = "Logical imputation(derivation)" 1636 4 = "Statistical or logical" 1637 ; NOTE: Format ASJDATEB has been output. 1638 VALUE TEJDATEB (default=32) 1639 -1 = "Not in universe" 1640 ; NOTE: Format TEJDATEB has been output. 1641 VALUE AEJDATEB (default=32) 1642 0 = "Not imputed" 1643 1 = "Statistical imputation(hot deck)" 1644 2 = "Cold deck imputation" 1645 3 = "Logical imputation(derivation)" 1646 4 = "Statistical or logical" 1647 ; NOTE: Format AEJDATEB has been output. 1648 VALUE ERSEND2L (default=32) 1649 -1 = "Not in universe" 1650 1 = "On layoff" 1651 2 = "Retirement or old age" 1652 3 = "Childcare problems" 1653 4 = "Other family/personal" 1654 5 = "Own illness" 1655 6 = "Own injury" 1656 7 = "School/training" 1657 8 = "Discharged/fired" 1658 9 = "Employer bankrupt" 1659 10 = "Employer, sold business" 1660 11 = "Job was temporary and ended" 1661 12 = "Quit to take another job" 1662 13 = "Slack work or business" 1663 14 = "Unsatisfactory work arrangements" 1664 15 = "Quit for some other reason" 1665 ; NOTE: Format ERSEND2L has been output. 1666 VALUE ARSEND2L (default=32) 1667 0 = "Not imputed" 1668 1 = "Statistical imputation(hot deck)" 1669 2 = "Cold deck imputation" 1670 3 = "Logical imputation(derivation)" 1671 4 = "Statistical or logical" 1672 ; NOTE: Format ARSEND2L has been output. 1673 VALUE EJBHRS2L (default=32) 27 The SAS System 11:48 Wednesday, December 4, 2002 1674 -1 = "Not in universe" 1675 ; NOTE: Format EJBHRS2L has been output. 1676 VALUE AJBHRS2L (default=32) 1677 0 = "Not imputed" 1678 1 = "Statistical imputation(hot deck)" 1679 2 = "Cold deck imputation" 1680 3 = "Logical imputation(derivation)" 1681 4 = "Statistical or logical" 1682 ; NOTE: Format AJBHRS2L has been output. 1683 VALUE EEMPLOCB (default=32) 1684 -1 = "Not in universe" 1685 1 = "Yes" 1686 2 = "No" 1687 ; NOTE: Format EEMPLOCB has been output. 1688 VALUE AEMPLOCB (default=32) 1689 0 = "Not imputed" 1690 1 = "Statistical imputation(hot deck)" 1691 2 = "Cold deck imputation" 1692 3 = "Logical imputation(derivation)" 1693 4 = "Statistical or logical" 1694 ; NOTE: Format AEMPLOCB has been output. 1695 VALUE TEMPALLB (default=32) 1696 -1 = "Not in universe" 1697 1 = "Under 25 employees" 1698 2 = "25 to 99 employees" 1699 3 = "100+ employees" 1700 ; NOTE: Format TEMPALLB has been output. 1701 VALUE AEMPALLB (default=32) 1702 0 = "Not imputed" 1703 1 = "Statistical imputation(hot deck)" 1704 2 = "Cold deck imputation" 1705 3 = "Logical imputation(derivation)" 1706 4 = "Statistical or logical" 1707 ; NOTE: Format AEMPALLB has been output. 1708 VALUE TEMPSIZB (default=32) 1709 -1 = "Not in universe" 1710 1 = "Under 25 employees" 1711 2 = "25 to 99 employees" 1712 3 = "100+ employees" 1713 ; NOTE: Format TEMPSIZB has been output. 1714 VALUE AEMPSIZB (default=32) 1715 0 = "Not imputed" 1716 1 = "Statistical imputation(hot deck)" 1717 2 = "Cold deck imputation" 1718 3 = "Logical imputation(derivation)" 1719 4 = "Statistical or logical" 1720 ; NOTE: Format AEMPSIZB has been output. 1721 VALUE ECLWRK2L (default=32) 1722 -1 = "Not in universe" 1723 1 = "Private for profit employee" 1724 2 = "Private not for profit employee" 1725 3 = "Local government worker" 1726 4 = "State government worker" 1727 5 = "Federal government worker" 1728 6 = "Family worker without pay" 1729 ; NOTE: Format ECLWRK2L has been output. 1730 VALUE ACLWRK2L (default=32) 1731 0 = "Not imputed" 1732 1 = "Statistical imputation(hot deck)" 1733 2 = "Cold deck imputation" 1734 3 = "Logical imputation(derivation)" 1735 4 = "Statistical or logical" 1736 ; NOTE: Format ACLWRK2L has been output. 1737 VALUE EUNION2L (default=32) 1738 -1 = "Not in universe" 1739 1 = "Yes" 28 The SAS System 11:48 Wednesday, December 4, 2002 1740 2 = "No" 1741 ; NOTE: Format EUNION2L has been output. 1742 VALUE AUNION2L (default=32) 1743 0 = "Not imputed" 1744 1 = "Statistical imputation(hot deck)" 1745 2 = "Cold deck imputation" 1746 3 = "Logical imputation(derivation)" 1747 4 = "Statistical or logical" 1748 ; NOTE: Format AUNION2L has been output. 1749 VALUE ECNTRC2L (default=32) 1750 -1 = "Not in universe" 1751 1 = "Yes" 1752 2 = "No" 1753 ; NOTE: Format ECNTRC2L has been output. 1754 VALUE ACNTRC2L (default=32) 1755 0 = "Not imputed" 1756 1 = "Statistical imputation(hot deck)" 1757 2 = "Cold deck imputation" 1758 3 = "Logical imputation(derivation)" 1759 4 = "Statistical or logical" 1760 ; NOTE: Format ACNTRC2L has been output. 1761 VALUE TPMSUM2L (default=32) 1762 0 = "None or not in universe" 1763 ; NOTE: Format TPMSUM2L has been output. 1764 VALUE APMSUM2L (default=32) 1765 0 = "Not imputed" 1766 1 = "Statistical imputation(hot deck)" 1767 2 = "Cold deck imputation" 1768 3 = "Logical imputation(derivation)" 1769 4 = "Statistical or logical" 1770 ; NOTE: Format APMSUM2L has been output. 1771 VALUE EPAYHR2L (default=32) 1772 -1 = "Not in universe" 1773 1 = "Yes" 1774 2 = "No" 1775 ; NOTE: Format EPAYHR2L has been output. 1776 VALUE APAYHR2L (default=32) 1777 0 = "Not imputed" 1778 1 = "Statistical imputation(hot deck)" 1779 2 = "Cold deck imputation" 1780 3 = "Logical imputation(derivation)" 1781 4 = "Statistical or logical" 1782 ; NOTE: Format APAYHR2L has been output. 1783 VALUE TPYRATEB (default=32) 1784 0 = "Not in universe or none" 1785 ; NOTE: Format TPYRATEB has been output. 1786 VALUE APYRATEB (default=32) 1787 0 = "Not imputed" 1788 1 = "Statistical imputation(hot deck)" 1789 2 = "Cold deck imputation" 1790 3 = "Logical imputation(derivation)" 1791 4 = "Statistical or logical" 1792 ; NOTE: Format APYRATEB has been output. 1793 VALUE RPYPER2L (default=32) 1794 -1 = "Not in universe" 1795 1 = "Once a week" 1796 2 = "Once every two weeks" 1797 3 = "Once a month" 1798 4 = "Twice a month" 1799 5 = "Unpaid in a family business or" 1800 6 = "On commission" 1801 7 = "Some other way" 1802 8 = "Not reported" 1803 ; NOTE: Format RPYPER2L has been output. 1804 VALUE AJBIND2L (default=32) 29 The SAS System 11:48 Wednesday, December 4, 2002 1805 0 = "Not imputed" 1806 1 = "Statistical imputation(hot deck)" 1807 2 = "Cold deck imputation" 1808 3 = "Logical imputation(derivation)" 1809 4 = "Statistical or logical" 1810 ; NOTE: Format AJBIND2L has been output. 1811 VALUE AJBOCC2L (default=32) 1812 0 = "Not imputed" 1813 1 = "Statistical imputation(hot deck)" 1814 2 = "Cold deck imputation" 1815 3 = "Logical imputation(derivation)" 1816 4 = "Statistical or logical" 1817 ; NOTE: Format AJBOCC2L has been output. 1818 VALUE EBNO1L (default=32) 1819 -1 = "Not in universe" 1820 ; NOTE: Format EBNO1L has been output. 1821 VALUE EBIZNOWA (default=32) 1822 -1 = "Not in universe" 1823 1 = "Yes" 1824 2 = "No" 1825 ; NOTE: Format EBIZNOWA has been output. 1826 VALUE ABIZNOWA (default=32) 1827 0 = "Not imputed" 1828 1 = "Statistical imputation(hot deck)" 1829 2 = "Cold deck imputation" 1830 3 = "Logical imputation(derivation)" 1831 4 = "Statistical or logical" 1832 ; NOTE: Format ABIZNOWA has been output. 1833 VALUE TSBDATEA (default=32) 1834 -1 = "Not in universe" 1835 ; NOTE: Format TSBDATEA has been output. 1836 VALUE ASBDATEA (default=32) 1837 0 = "Not imputed" 1838 1 = "Statistical imputation(hot deck)" 1839 2 = "Cold deck imputation" 1840 3 = "Logical imputation(derivation)" 1841 4 = "Statistical or logical" 1842 ; NOTE: Format ASBDATEA has been output. 1843 VALUE TEBDATEA (default=32) 1844 -1 = "Not in universe" 1845 ; NOTE: Format TEBDATEA has been output. 1846 VALUE AEBDATEA (default=32) 1847 0 = "Not imputed" 1848 1 = "Statistical imputation(hot deck)" 1849 2 = "Cold deck imputation" 1850 3 = "Logical imputation(derivation)" 1851 4 = "Statistical or logical" 1852 ; NOTE: Format AEBDATEA has been output. 1853 VALUE ERENDB1L (default=32) 1854 -1 = "Not in universe" 1855 1 = "Retirement or old age" 1856 2 = "Childcare problems" 1857 3 = "Other family/personal problems" 1858 4 = "Own illness" 1859 5 = "Own injury" 1860 6 = "School/training" 1861 7 = "Went bankrupt/business failed" 1862 8 = "Sold business or transferred" 1863 9 = "To start other business/take job" 1864 10 = "Season ended for a seasonal" 1865 11 = "Quit for some other reason" 1866 ; NOTE: Format ERENDB1L has been output. 1867 VALUE ARENDB1L (default=32) 1868 0 = "Not imputed" 1869 1 = "Statistical imputation(hot deck)" 1870 2 = "Cold deck imputation" 30 The SAS System 11:48 Wednesday, December 4, 2002 1871 3 = "Logical imputation(derivation)" 1872 4 = "Statistical or logical" 1873 ; NOTE: Format ARENDB1L has been output. 1874 VALUE EHRSBS1L (default=32) 1875 -1 = "Not in universe" 1876 ; NOTE: Format EHRSBS1L has been output. 1877 VALUE AHRSBS1L (default=32) 1878 0 = "Not imputed" 1879 1 = "Statistical imputation(hot deck)" 1880 2 = "Cold deck imputation" 1881 3 = "Logical imputation(derivation)" 1882 4 = "Statistical or logical" 1883 ; NOTE: Format AHRSBS1L has been output. 1884 VALUE EGROSB1L (default=32) 1885 -1 = "Not in universe" 1886 1 = "Yes" 1887 2 = "No" 1888 ; NOTE: Format EGROSB1L has been output. 1889 VALUE AGROSB1L (default=32) 1890 0 = "Not imputed" 1891 1 = "Statistical imputation(hot deck)" 1892 2 = "Cold deck imputation" 1893 3 = "Logical imputation(derivation)" 1894 4 = "Statistical or logical" 1895 ; NOTE: Format AGROSB1L has been output. 1896 VALUE EGRSSB1L (default=32) 1897 -1 = "Not in universe" 1898 1 = "Yes" 1899 2 = "No" 1900 ; NOTE: Format EGRSSB1L has been output. 1901 VALUE AGRSSB1L (default=32) 1902 0 = "Not imputed" 1903 1 = "Statistical imputation(hot deck)" 1904 2 = "Cold deck imputation" 1905 3 = "Logical imputation(derivation)" 1906 4 = "Statistical or logical" 1907 ; NOTE: Format AGRSSB1L has been output. 1908 VALUE TEMPB1L (default=32) 1909 -1 = "Not in universe" 1910 1 = "Under 25 employees" 1911 2 = "25:99 employees" 1912 3 = "100+ employees" 1913 ; NOTE: Format TEMPB1L has been output. 1914 VALUE AEMPB1L (default=32) 1915 0 = "Not imputed" 1916 1 = "Statistical imputation(hot deck)" 1917 2 = "Cold deck imputation" 1918 3 = "Logical imputation(derivation)" 1919 4 = "Statistical or logical" 1920 ; NOTE: Format AEMPB1L has been output. 1921 VALUE EINCPB1L (default=32) 1922 -1 = "Not in universe" 1923 1 = "Yes" 1924 2 = "No" 1925 ; NOTE: Format EINCPB1L has been output. 1926 VALUE AINCPB1L (default=32) 1927 0 = "Not imputed" 1928 1 = "Statistical imputation(hot deck)" 1929 2 = "Cold deck imputation" 1930 3 = "Logical imputation(derivation)" 1931 4 = "Statistical or logical" 1932 ; NOTE: Format AINCPB1L has been output. 1933 VALUE EPROPB1L (default=32) 1934 -1 = "Not in universe" 1935 1 = "alone" 31 The SAS System 11:48 Wednesday, December 4, 2002 1936 2 = "partnership" 1937 ; NOTE: Format EPROPB1L has been output. 1938 VALUE APROPB1L (default=32) 1939 0 = "Not imputed" 1940 1 = "Statistical imputation(hot deck)" 1941 2 = "Cold deck imputation" 1942 3 = "Logical imputation(derivation)" 1943 4 = "Statistical or logical" 1944 ; NOTE: Format APROPB1L has been output. 1945 VALUE EHPRTB1L (default=32) 1946 -1 = "Not in universe" 1947 1 = "Yes" 1948 2 = "No" 1949 ; NOTE: Format EHPRTB1L has been output. 1950 VALUE AHPRTB1L (default=32) 1951 0 = "Not imputed" 1952 1 = "Statistical imputation(hot deck)" 1953 2 = "Cold deck imputation" 1954 3 = "Logical imputation(derivation)" 1955 4 = "Statistical or logical" 1956 ; NOTE: Format AHPRTB1L has been output. 1957 VALUE ESLRYB1L (default=32) 1958 -1 = "Not in universe" 1959 1 = "Yes" 1960 2 = "No" 1961 ; NOTE: Format ESLRYB1L has been output. 1962 VALUE ASLRYB1L (default=32) 1963 0 = "Not imputed" 1964 1 = "Statistical imputation(hot deck)" 1965 2 = "Cold deck imputation" 1966 3 = "Logical imputation(derivation)" 1967 4 = "Statistical or logical" 1968 ; NOTE: Format ASLRYB1L has been output. 1969 VALUE EOINCB1L (default=32) 1970 -1 = "Not in universe" 1971 1 = "Yes" 1972 2 = "No" 1973 ; NOTE: Format EOINCB1L has been output. 1974 VALUE AOINCB1L (default=32) 1975 0 = "Not imputed" 1976 1 = "Statistical imputation(hot deck)" 1977 2 = "Cold deck imputation" 1978 3 = "Logical imputation(derivation)" 1979 4 = "Statistical or logical" 1980 ; NOTE: Format AOINCB1L has been output. 1981 VALUE TPRFTB1L (default=32) 1982 0 = "None or not in universe" 1983 ; NOTE: Format TPRFTB1L has been output. 1984 VALUE APRFTB1L (default=32) 1985 0 = "Not imputed" 1986 1 = "Statistical imputation(hot deck)" 1987 2 = "Cold deck imputation" 1988 3 = "Logical imputation(derivation)" 1989 4 = "Statistical or logical" 1990 ; NOTE: Format APRFTB1L has been output. 1991 VALUE TBMSUM1L (default=32) 1992 0 = "None or not in universe" 1993 ; NOTE: Format TBMSUM1L has been output. 1994 VALUE ABMSUM1L (default=32) 1995 0 = "Not imputed" 1996 1 = "Statistical imputation(hot deck)" 1997 2 = "Cold deck imputation" 1998 3 = "Logical imputation(derivation)" 1999 4 = "Statistical or logical" 2000 ; 32 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format ABMSUM1L has been output. 2001 VALUE EPARTB1A (default=32) 2002 -1 = "Not in universe" 2003 ; NOTE: Format EPARTB1A has been output. 2004 VALUE EPARTB2A (default=32) 2005 -1 = "Not in universe" 2006 ; NOTE: Format EPARTB2A has been output. 2007 VALUE EPARTB3A (default=32) 2008 -1 = "Not in universe" 2009 ; NOTE: Format EPARTB3A has been output. 2010 VALUE TBSIND1L (default=32) 2011 -1 = "Not in universe" 2012 1 = "Agriculture, forestry and" 2013 2 = "Mining" 2014 3 = "Construction" 2015 4 = "Manufacturing: nondurable goods" 2016 5 = "Manufacturing: durable goods" 2017 6 = "Transportation, communications" 2018 7 = "Wholesale Trade: durable goods" 2019 8 = "Wholesale trade: nondurable" 2020 9 = "Retail trade" 2021 10 = "Finance, insurance and real" 2022 11 = "Business and repair services" 2023 12 = "Personal services" 2024 13 = "Entertainment and recreation" 2025 14 = "Professional and related" 2026 15 = "Public administration" 2027 ; NOTE: Format TBSIND1L has been output. 2028 VALUE ABSIND1L (default=32) 2029 0 = "Not imputed" 2030 1 = "Statistical imputation(hot deck)" 2031 2 = "Cold deck imputation" 2032 3 = "Logical imputation(derivation)" 2033 4 = "Statistical or logical" 2034 ; NOTE: Format ABSIND1L has been output. 2035 VALUE ABSOCC1L (default=32) 2036 0 = "Not imputed" 2037 1 = "Statistical imputation(hot deck)" 2038 2 = "Cold deck imputation" 2039 3 = "Logical imputation(derivation)" 2040 4 = "Statistical or logical" 2041 ; NOTE: Format ABSOCC1L has been output. 2042 VALUE EBNO2L (default=32) 2043 -1 = "Not in universe" 2044 ; NOTE: Format EBNO2L has been output. 2045 VALUE EBIZNOWB (default=32) 2046 -1 = "Not in universe" 2047 1 = "Yes" 2048 2 = "No" 2049 ; NOTE: Format EBIZNOWB has been output. 2050 VALUE ABIZNOWB (default=32) 2051 0 = "Not imputed" 2052 1 = "Statistical imputation(hot deck)" 2053 2 = "Cold deck imputation" 2054 3 = "Logical imputation(derivation)" 2055 4 = "Statistical or logical" 2056 ; NOTE: Format ABIZNOWB has been output. 2057 VALUE TSBDATEB (default=32) 2058 -1 = "Not in universe" 2059 ; NOTE: Format TSBDATEB has been output. 2060 VALUE ASBDATEB (default=32) 2061 0 = "Not imputed" 2062 1 = "Statistical imputation(hot deck)" 2063 2 = "Cold deck imputation" 2064 3 = "Logical imputation(derivation)" 2065 4 = "Statistical or logical" 33 The SAS System 11:48 Wednesday, December 4, 2002 2066 ; NOTE: Format ASBDATEB has been output. 2067 VALUE TEBDATEB (default=32) 2068 -1 = "Not in universe" 2069 ; NOTE: Format TEBDATEB has been output. 2070 VALUE AEBDATEB (default=32) 2071 0 = "Not imputed" 2072 1 = "Statistical imputation(hot deck)" 2073 2 = "Cold deck imputation" 2074 3 = "Logical imputation(derivation)" 2075 4 = "Statistical or logical" 2076 ; NOTE: Format AEBDATEB has been output. 2077 VALUE ERENDB2L (default=32) 2078 -1 = "Not in universe" 2079 1 = "Retirement or old age" 2080 2 = "Childcare problems" 2081 3 = "Other family/personal problems" 2082 4 = "Own illness" 2083 5 = "Own injury" 2084 6 = "School/training" 2085 7 = "Went bankrupt/business failed" 2086 8 = "Sold business or transferred" 2087 9 = "To start other business/take job" 2088 10 = "Season ended for a seasonal" 2089 11 = "Quit for some other reason" 2090 ; NOTE: Format ERENDB2L has been output. 2091 VALUE ARENDB2L (default=32) 2092 0 = "Not imputed" 2093 1 = "Statistical imputation(hot deck)" 2094 2 = "Cold deck imputation" 2095 3 = "Logical imputation(derivation)" 2096 4 = "Statistical or logical" 2097 ; NOTE: Format ARENDB2L has been output. 2098 VALUE EHRSBS2L (default=32) 2099 -1 = "Not in universe" 2100 ; NOTE: Format EHRSBS2L has been output. 2101 VALUE AHRSBS2L (default=32) 2102 0 = "Not imputed" 2103 1 = "Statistical imputation(hot deck)" 2104 2 = "Cold deck imputation" 2105 3 = "Logical imputation(derivation)" 2106 4 = "Statistical or logical" 2107 ; NOTE: Format AHRSBS2L has been output. 2108 VALUE EGROSB2L (default=32) 2109 -1 = "Not in universe" 2110 1 = "Yes" 2111 2 = "No" 2112 ; NOTE: Format EGROSB2L has been output. 2113 VALUE AGROSB2L (default=32) 2114 0 = "Not imputed" 2115 1 = "Statistical imputation(hot deck)" 2116 2 = "Cold deck imputation" 2117 3 = "Logical imputation(derivation)" 2118 4 = "Statistical or logical" 2119 ; NOTE: Format AGROSB2L has been output. 2120 VALUE EGRSSB2L (default=32) 2121 -1 = "Not in universe" 2122 1 = "Yes" 2123 2 = "No" 2124 ; NOTE: Format EGRSSB2L has been output. 2125 VALUE AGRSSB2L (default=32) 2126 0 = "Not imputed" 2127 1 = "Statistical imputation(hot deck)" 2128 2 = "Cold deck imputation" 2129 3 = "Logical imputation(derivation)" 2130 4 = "Statistical or logical" 2131 ; 34 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format AGRSSB2L has been output. 2132 VALUE TEMPB2L (default=32) 2133 -1 = "Not in universe" 2134 1 = "Under 25 employees" 2135 2 = "25:99 employees" 2136 3 = "100+ employees" 2137 ; NOTE: Format TEMPB2L has been output. 2138 VALUE AEMPB2L (default=32) 2139 0 = "Not imputed" 2140 1 = "Statistical imputation(hot deck)" 2141 2 = "Cold deck imputation" 2142 3 = "Logical imputation(derivation)" 2143 4 = "Statistical or logical" 2144 ; NOTE: Format AEMPB2L has been output. 2145 VALUE EINCPB2L (default=32) 2146 -1 = "Not in universe" 2147 1 = "Yes" 2148 2 = "No" 2149 ; NOTE: Format EINCPB2L has been output. 2150 VALUE AINCPB2L (default=32) 2151 0 = "Not imputed" 2152 1 = "Statistical imputation(hot deck)" 2153 2 = "Cold deck imputation" 2154 3 = "Logical imputation(derivation)" 2155 4 = "Statistical or logical" 2156 ; NOTE: Format AINCPB2L has been output. 2157 VALUE EPROPB2L (default=32) 2158 -1 = "Not in universe" 2159 1 = "alone" 2160 2 = "partnership" 2161 ; NOTE: Format EPROPB2L has been output. 2162 VALUE APROPB2L (default=32) 2163 0 = "Not imputed" 2164 1 = "Statistical imputation(hot deck)" 2165 2 = "Cold deck imputation" 2166 3 = "Logical imputation(derivation)" 2167 4 = "Statistical or logical" 2168 ; NOTE: Format APROPB2L has been output. 2169 VALUE EHPRTB2L (default=32) 2170 -1 = "Not in universe" 2171 1 = "Yes" 2172 2 = "No" 2173 ; NOTE: Format EHPRTB2L has been output. 2174 VALUE AHPRTB2L (default=32) 2175 0 = "Not imputed" 2176 1 = "Statistical imputation(hot deck)" 2177 2 = "Cold deck imputation" 2178 3 = "Logical imputation(derivation)" 2179 4 = "Statistical or logical" 2180 ; NOTE: Format AHPRTB2L has been output. 2181 VALUE ESLRYB2L (default=32) 2182 -1 = "Not in universe" 2183 1 = "Yes" 2184 2 = "No" 2185 ; NOTE: Format ESLRYB2L has been output. 2186 VALUE ASLRYB2L (default=32) 2187 0 = "Not imputed" 2188 1 = "Statistical imputation(hot deck)" 2189 2 = "Cold deck imputation" 2190 3 = "Logical imputation(derivation)" 2191 4 = "Statistical or logical" 2192 ; NOTE: Format ASLRYB2L has been output. 2193 VALUE EOINCB2L (default=32) 2194 -1 = "Not in universe" 2195 1 = "Yes" 2196 2 = "No" 35 The SAS System 11:48 Wednesday, December 4, 2002 2197 ; NOTE: Format EOINCB2L has been output. 2198 VALUE AOINCB2L (default=32) 2199 0 = "Not imputed" 2200 1 = "Statistical imputation(hot deck)" 2201 2 = "Cold deck imputation" 2202 3 = "Logical imputation(derivation)" 2203 4 = "Statistical or logical" 2204 ; NOTE: Format AOINCB2L has been output. 2205 VALUE TPRFTB2L (default=32) 2206 0 = "None or not in universe" 2207 ; NOTE: Format TPRFTB2L has been output. 2208 VALUE APRFTB2L (default=32) 2209 0 = "Not imputed" 2210 1 = "Statistical imputation(hot deck)" 2211 2 = "Cold deck imputation" 2212 3 = "Logical imputation(derivation)" 2213 4 = "Statistical or logical" 2214 ; NOTE: Format APRFTB2L has been output. 2215 VALUE TBMSUM2L (default=32) 2216 0 = "None or not in universe" 2217 ; NOTE: Format TBMSUM2L has been output. 2218 VALUE ABMSUM2L (default=32) 2219 0 = "Not imputed" 2220 1 = "Statistical imputation(hot deck)" 2221 2 = "Cold deck imputation" 2222 3 = "Logical imputation(derivation)" 2223 4 = "Statistical or logical" 2224 ; NOTE: Format ABMSUM2L has been output. 2225 VALUE EPARTB1B (default=32) 2226 -1 = "Not in universe" 2227 ; NOTE: Format EPARTB1B has been output. 2228 VALUE EPARTB2B (default=32) 2229 -1 = "Not in universe" 2230 ; NOTE: Format EPARTB2B has been output. 2231 VALUE EPARTB3B (default=32) 2232 -1 = "Not in universe" 2233 ; NOTE: Format EPARTB3B has been output. 2234 VALUE TBSIND2L (default=32) 2235 -1 = "Not in universe" 2236 1 = "Agriculture, forestry and" 2237 2 = "Mining" 2238 3 = "Construction" 2239 4 = "Manufacturing: nondurable goods" 2240 5 = "Manufacturing: durable goods" 2241 6 = "Transportation, communications" 2242 7 = "Wholesale Trade: durable goods" 2243 8 = "Wholesale trade: nondurable" 2244 9 = "Retail trade" 2245 10 = "Finance, insurance and real" 2246 11 = "Business and repair services" 2247 12 = "Personal services" 2248 13 = "Entertainment and recreation" 2249 14 = "Professional and related" 2250 15 = "Public administration" 2251 ; NOTE: Format TBSIND2L has been output. 2252 VALUE ABSIND2L (default=32) 2253 0 = "Not imputed" 2254 1 = "Statistical imputation(hot deck)" 2255 2 = "Cold deck imputation" 2256 3 = "Logical imputation(derivation)" 2257 4 = "Statistical or logical" 2258 ; NOTE: Format ABSIND2L has been output. 2259 VALUE ABSOCC2L (default=32) 2260 0 = "Not imputed" 2261 1 = "Statistical imputation(hot deck)" 36 The SAS System 11:48 Wednesday, December 4, 2002 2262 2 = "Cold deck imputation" 2263 3 = "Logical imputation(derivation)" 2264 4 = "Statistical or logical" 2265 ; NOTE: Format ABSOCC2L has been output. 2266 VALUE EUECTYPE (default=32) 2267 -1 = "Not in universe" 2268 1 = "Yes" 2269 2 = "No" 2270 ; NOTE: Format EUECTYPE has been output. 2271 VALUE AUECTYPE (default=32) 2272 0 = "Not imputed" 2273 1 = "Statistical imputation (hot" 2274 2 = "Cold deck imputation" 2275 3 = "Logical imputation (derivation)" 2276 4 = "Statistical or logical" 2277 ; NOTE: Format AUECTYPE has been output. 2278 VALUE EUECTYPG (default=32) 2279 -1 = "Not in universe" 2280 1 = "Yes" 2281 2 = "No" 2282 ; NOTE: Format EUECTYPG has been output. 2283 VALUE AUECTYPG (default=32) 2284 0 = "Not imputed" 2285 1 = "Statistical imputation (hot" 2286 2 = "Cold deck imputation" 2287 3 = "Logical imputation (derivation)" 2288 4 = "Statistical or logical" 2289 ; NOTE: Format AUECTYPG has been output. 2290 VALUE ELMPTYPA (default=32) 2291 -1 = "Not in universe" 2292 1 = "Yes" 2293 2 = "No" 2294 ; NOTE: Format ELMPTYPA has been output. 2295 VALUE ALMPTYPA (default=32) 2296 0 = "Not imputed" 2297 1 = "Statistical imputation (hot" 2298 2 = "Cold deck imputation" 2299 3 = "Logical imputation (derivation)" 2300 4 = "Statistical or logical" 2301 ; NOTE: Format ALMPTYPA has been output. 2302 VALUE ELMPTYPB (default=32) 2303 -1 = "Not in universe" 2304 1 = "Yes" 2305 2 = "No" 2306 ; NOTE: Format ELMPTYPB has been output. 2307 VALUE ALMPTYPB (default=32) 2308 0 = "Not imputed" 2309 1 = "Statistical imputation (hot" 2310 2 = "Cold deck imputation" 2311 3 = "Logical imputation (derivation)" 2312 4 = "Statistical or logical" 2313 ; NOTE: Format ALMPTYPB has been output. 2314 VALUE ELMPTYPC (default=32) 2315 -1 = "Not in universe" 2316 1 = "Yes" 2317 2 = "No" 2318 ; NOTE: Format ELMPTYPC has been output. 2319 VALUE ALMPTYPC (default=32) 2320 0 = "Not imputed" 2321 1 = "Statistical imputation (hot" 2322 2 = "Cold deck imputation" 2323 3 = "Logical imputation (derivation)" 2324 4 = "Statistical or logical" 2325 ; NOTE: Format ALMPTYPC has been output. 2326 VALUE ESSSELF (default=32) 37 The SAS System 11:48 Wednesday, December 4, 2002 2327 -1 = "Not in universe" 2328 1 = "Yes" 2329 2 = "No" 2330 ; NOTE: Format ESSSELF has been output. 2331 VALUE ASSSELF (default=32) 2332 0 = "Not imputed" 2333 1 = "Statistical imputation (hot" 2334 2 = "Cold deck imputation" 2335 3 = "Logical imputation (derivation)" 2336 4 = "Statistical or logical" 2337 ; NOTE: Format ASSSELF has been output. 2338 VALUE ESSCHILD (default=32) 2339 -1 = "Not in universe" 2340 1 = "Yes" 2341 2 = "No" 2342 ; NOTE: Format ESSCHILD has been output. 2343 VALUE ASSCHILD (default=32) 2344 0 = "Not imputed" 2345 1 = "Statistical imputation (hot" 2346 2 = "Cold deck imputation" 2347 3 = "Logical imputation (derivation)" 2348 4 = "Statistical or logical" 2349 ; NOTE: Format ASSCHILD has been output. 2350 VALUE ESSICHLD (default=32) 2351 -1 = "Not in universe" 2352 1 = "Yes" 2353 2 = "No" 2354 ; NOTE: Format ESSICHLD has been output. 2355 VALUE ASSICHLD (default=32) 2356 0 = "Not imputed" 2357 1 = "Statistical imputation (hot" 2358 2 = "Cold deck imputation" 2359 3 = "Logical imputation (derivation)" 2360 4 = "Statistical or logical" 2361 ; NOTE: Format ASSICHLD has been output. 2362 VALUE ESSISELF (default=32) 2363 -1 = "Not in universe" 2364 1 = "Yes" 2365 2 = "No" 2366 ; NOTE: Format ESSISELF has been output. 2367 VALUE ASSISELF (default=32) 2368 0 = "Not imputed" 2369 1 = "Statistical imputation (hot" 2370 2 = "Cold deck imputation" 2371 3 = "Logical imputation (derivation)" 2372 4 = "Statistical or logical" 2373 ; NOTE: Format ASSISELF has been output. 2374 VALUE ESTSSI (default=32) 2375 -1 = "Not in universe" 2376 1 = "Yes" 2377 2 = "No" 2378 ; NOTE: Format ESTSSI has been output. 2379 VALUE ASTSSI (default=32) 2380 0 = "Not imputed" 2381 1 = "Statistical imputation (hot" 2382 2 = "Cold deck imputation" 2383 3 = "Logical imputation (derivation)" 2384 4 = "Statistical or logical" 2385 ; NOTE: Format ASTSSI has been output. 2386 VALUE RWCMPRSN (default=32) 2387 -1 = "Not in universe" 2388 1 = "Disability" 2389 3 = "Suvivor" 2390 5 = "Disability and Suvivor" 2391 8 = "No payment" 2392 ; 38 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format RWCMPRSN has been output. 2393 VALUE AWCMPRSN (default=32) 2394 0 = "Not imputed" 2395 1 = "Statistical imputation (hot" 2396 2 = "Cold deck imputation" 2397 3 = "Logical imputation (derivation)" 2398 4 = "Statistical or logical" 2399 ; NOTE: Format AWCMPRSN has been output. 2400 VALUE RINSRSN (default=32) 2401 -1 = "Not in universe" 2402 1 = "Disability" 2403 8 = "No payment received" 2404 ; NOTE: Format RINSRSN has been output. 2405 VALUE AINSRSN (default=32) 2406 0 = "Not imputed" 2407 1 = "Statistical imputation (hot" 2408 2 = "Cold deck imputation" 2409 3 = "Logical imputation (derivation)" 2410 4 = "Statistical or logical" 2411 ; NOTE: Format AINSRSN has been output. 2412 VALUE REMPDRSN (default=32) 2413 -1 = "Not in universe" 2414 1 = "Disability" 2415 8 = "No payment" 2416 ; NOTE: Format REMPDRSN has been output. 2417 VALUE AEMPDRSN (default=32) 2418 0 = "Not imputed" 2419 1 = "Statistical imputation (hot" 2420 2 = "Cold deck imputation" 2421 3 = "Logical imputation (derivation)" 2422 4 = "Statistical or logical" 2423 ; NOTE: Format AEMPDRSN has been output. 2424 VALUE RPENSRSN (default=32) 2425 -1 = "Not in universe" 2426 1 = "Disability" 2427 2 = "Retirement" 2428 3 = "Survior" 2429 4 = "Disability and retirement" 2430 5 = "Disability and survivor" 2431 6 = "Retirement and survivor" 2432 7 = "Disability, retirement, and" 2433 8 = "No payment received" 2434 ; NOTE: Format RPENSRSN has been output. 2435 VALUE APENSRSN (default=32) 2436 0 = "Not imputed" 2437 1 = "Statistical imputation (hot" 2438 2 = "Cold deck imputation" 2439 3 = "Logical imputation (derivation)" 2440 4 = "Statistical or logical" 2441 ; NOTE: Format APENSRSN has been output. 2442 VALUE RFCSRSN (default=32) 2443 -1 = "Not in universe" 2444 1 = "Disability" 2445 2 = "Retirement" 2446 3 = "Survior" 2447 4 = "Disability and retirement" 2448 5 = "Disability and survivor" 2449 6 = "Retirement and survivor" 2450 7 = "Disability, retirement, and" 2451 8 = "No payment received" 2452 ; NOTE: Format RFCSRSN has been output. 2453 VALUE AFCSRSN (default=32) 2454 0 = "Not imputed" 2455 1 = "Statistical imputation (hot" 2456 2 = "Cold deck imputation" 2457 3 = "Logical imputation (derivation)" 2458 4 = "Statistical or logical" 2459 ; 39 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format AFCSRSN has been output. 2460 VALUE RSTATRSN (default=32) 2461 -1 = "Not in universe" 2462 1 = "Disability" 2463 2 = "Retirement" 2464 3 = "Survior" 2465 4 = "Disability and retirement" 2466 5 = "Disability and survivor" 2467 6 = "Retirement and survivor" 2468 7 = "Disability, retirement, and" 2469 8 = "No payment received" 2470 ; NOTE: Format RSTATRSN has been output. 2471 VALUE ASTATRSN (default=32) 2472 0 = "Not imputed" 2473 1 = "Statistical imputation (hot" 2474 2 = "Cold deck imputation" 2475 3 = "Logical imputation (derivation)" 2476 4 = "Statistical or logical" 2477 ; NOTE: Format ASTATRSN has been output. 2478 VALUE RLGOVRSN (default=32) 2479 -1 = "Not in universe" 2480 1 = "Disability" 2481 2 = "Retirement" 2482 3 = "Survior" 2483 4 = "Disability and retirement" 2484 5 = "Disability and survivor" 2485 6 = "Retirement and survivor" 2486 7 = "Disability, retirement, and" 2487 8 = "No payment received" 2488 ; NOTE: Format RLGOVRSN has been output. 2489 VALUE ALGOVRSN (default=32) 2490 0 = "Not imputed" 2491 1 = "Statistical imputation (hot" 2492 2 = "Cold deck imputation" 2493 3 = "Logical imputation (derivation)" 2494 4 = "Statistical or logical" 2495 ; NOTE: Format ALGOVRSN has been output. 2496 VALUE RMILRSN (default=32) 2497 -1 = "Not in universe" 2498 1 = "Disability" 2499 2 = "Retirement" 2500 3 = "Survior" 2501 4 = "Disability and retirement" 2502 5 = "Disability and survivor" 2503 6 = "Retirement and survivor" 2504 7 = "Disability, retirement, and" 2505 8 = "No payment received" 2506 ; NOTE: Format RMILRSN has been output. 2507 VALUE AMILRSN (default=32) 2508 0 = "Not imputed" 2509 1 = "Statistical imputation (hot" 2510 2 = "Cold deck imputation" 2511 3 = "Logical imputation (derivation)" 2512 4 = "Statistical or logical" 2513 ; NOTE: Format AMILRSN has been output. 2514 VALUE RRRSN (default=32) 2515 -1 = "Not in universe" 2516 1 = "Disability" 2517 2 = "Retirement" 2518 3 = "Survior" 2519 4 = "Disability and retirement" 2520 5 = "Disability and survivor" 2521 6 = "Retirement and survivor" 2522 7 = "Disability, retirement, and" 2523 8 = "No payment received" 2524 ; NOTE: Format RRRSN has been output. 2525 VALUE ARRRSN (default=32) 2526 0 = "Not imputed" 2527 1 = "Statistical imputation (hot" 40 The SAS System 11:48 Wednesday, December 4, 2002 2528 2 = "Cold deck imputation" 2529 3 = "Logical imputation (derivation)" 2530 4 = "Statistical or logical" 2531 ; NOTE: Format ARRRSN has been output. 2532 VALUE RBLKLRSN (default=32) 2533 -1 = "Not in universe" 2534 1 = "Disability" 2535 3 = "Survivor" 2536 5 = "Disability and survivor" 2537 8 = "No payment received" 2538 ; NOTE: Format RBLKLRSN has been output. 2539 VALUE ABLKLRSN (default=32) 2540 0 = "Not imputed" 2541 1 = "Statistical imputation (hot" 2542 2 = "Cold deck imputation" 2543 3 = "Logical imputation (derivation)" 2544 4 = "Statistical or logical" 2545 ; NOTE: Format ABLKLRSN has been output. 2546 VALUE ROTHRRSN (default=32) 2547 -1 = "Not in universe" 2548 1 = "Disability" 2549 2 = "Retirement" 2550 3 = "Suvivor" 2551 4 = "Disability and retirement" 2552 5 = "Disability and survivor" 2553 6 = "Retirement and survivor" 2554 7 = "Disability, retirement, and" 2555 8 = "No payment received" 2556 ; NOTE: Format ROTHRRSN has been output. 2557 VALUE AOTHRRSN (default=32) 2558 0 = "Not imputed" 2559 1 = "Statistical imputation (hot" 2560 2 = "Cold deck imputation" 2561 3 = "Logical imputation (derivation)" 2562 4 = "Statistical or logical" 2563 ; NOTE: Format AOTHRRSN has been output. 2564 VALUE RLIFIRSN (default=32) 2565 -1 = "Not in universe" 2566 2 = "Retirement" 2567 3 = "Suvivor" 2568 6 = "Retirement and survivor" 2569 8 = "No payment received" 2570 ; NOTE: Format RLIFIRSN has been output. 2571 VALUE ALIFIRSN (default=32) 2572 0 = "Not imputed" 2573 1 = "Statistical imputation (hot" 2574 2 = "Cold deck imputation" 2575 3 = "Logical imputation (derivation)" 2576 4 = "Statistical or logical" 2577 ; NOTE: Format ALIFIRSN has been output. 2578 VALUE RVETSRSN (default=32) 2579 -1 = "Not in universe" 2580 3 = "Suvivor" 2581 8 = "No payment received" 2582 ; NOTE: Format RVETSRSN has been output. 2583 VALUE AVETSRSN (default=32) 2584 0 = "Not imputed" 2585 1 = "Statistical imputation (hot" 2586 2 = "Cold deck imputation" 2587 3 = "Logical imputation (derivation)" 2588 4 = "Statistical or logical" 2589 ; NOTE: Format AVETSRSN has been output. 2590 VALUE RESTARSN (default=32) 2591 -1 = "Not in universe" 2592 3 = "Suvivor" 2593 8 = "No payment received" 2594 ; 41 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format RESTARSN has been output. 2595 VALUE AESTARSN (default=32) 2596 0 = "Not imputed" 2597 1 = "Statistical imputation (hot" 2598 2 = "Cold deck imputation" 2599 3 = "Logical imputation (derivation)" 2600 4 = "Statistical or logical" 2601 ; NOTE: Format AESTARSN has been output. 2602 VALUE EFCCYN (default=32) 2603 -1 = "Not in universe" 2604 1 = "Yes" 2605 2 = "No" 2606 ; NOTE: Format EFCCYN has been output. 2607 VALUE AFCCYN (default=32) 2608 0 = "Not imputed" 2609 1 = "Statistical imputation (hot" 2610 2 = "Cold deck imputation" 2611 3 = "Logical imputation (derivation)" 2612 4 = "Statistical or logical" 2613 ; NOTE: Format AFCCYN has been output. 2614 VALUE ECSAGREE (default=32) 2615 -1 = "Not in universe" 2616 1 = "Yes" 2617 2 = "No" 2618 ; NOTE: Format ECSAGREE has been output. 2619 VALUE ACSAGREE (default=32) 2620 0 = "Not imputed" 2621 1 = "Statistical imputation (hot" 2622 2 = "Cold deck imputation" 2623 3 = "Logical imputation (derivation)" 2624 4 = "Statistical or logical" 2625 ; NOTE: Format ACSAGREE has been output. 2626 VALUE ECSYN (default=32) 2627 -1 = "Not in universe" 2628 1 = "Yes" 2629 2 = "No" 2630 ; NOTE: Format ECSYN has been output. 2631 VALUE ACSYN (default=32) 2632 0 = "Not imputed" 2633 1 = "Statistical imputation (hot" 2634 2 = "Cold deck imputation" 2635 3 = "Logical imputation (derivation)" 2636 4 = "Statistical or logical" 2637 ; NOTE: Format ACSYN has been output. 2638 VALUE EALIYN (default=32) 2639 -1 = "Not in universe" 2640 1 = "Yes" 2641 2 = "No" 2642 ; NOTE: Format EALIYN has been output. 2643 VALUE AALIYN (default=32) 2644 0 = "Not imputed" 2645 1 = "Statistical imputation (hot" 2646 2 = "Cold deck imputation" 2647 3 = "Logical imputation (derivation)" 2648 4 = "Statistical or logical" 2649 ; NOTE: Format AALIYN has been output. 2650 VALUE EFSYN (default=32) 2651 -1 = "Not in universe" 2652 1 = "Yes" 2653 2 = "No" 2654 ; NOTE: Format EFSYN has been output. 2655 VALUE AFSYN (default=32) 2656 0 = "Not imputed" 2657 1 = "Statistical imputation (hot" 2658 2 = "Cold deck imputation" 2659 3 = "Logical imputation (derivation)" 42 The SAS System 11:48 Wednesday, December 4, 2002 2660 4 = "Statistical or logical" 2661 ; NOTE: Format AFSYN has been output. 2662 VALUE EPSSTHRU (default=32) 2663 -1 = "Not in universe" 2664 1 = "Yes" 2665 2 = "No" 2666 ; NOTE: Format EPSSTHRU has been output. 2667 VALUE APSSTHRU (default=32) 2668 0 = "Not imputed" 2669 1 = "Statistical imputation (hot" 2670 2 = "Cold deck imputation" 2671 3 = "Logical imputation (derivation)" 2672 4 = "Statistical or logical" 2673 ; NOTE: Format APSSTHRU has been output. 2674 VALUE EWICYN (default=32) 2675 -1 = "Not in universe" 2676 1 = "Yes" 2677 2 = "No" 2678 ; NOTE: Format EWICYN has been output. 2679 VALUE AWICYN (default=32) 2680 0 = "Not imputed" 2681 1 = "Statistical imputation (hot" 2682 2 = "Cold deck imputation" 2683 3 = "Logical imputation (derivation)" 2684 4 = "Statistical or logical" 2685 ; NOTE: Format AWICYN has been output. 2686 VALUE EPATYN (default=32) 2687 -1 = "Not in universe" 2688 1 = "Yes" 2689 2 = "No" 2690 ; NOTE: Format EPATYN has been output. 2691 VALUE APATYN (default=32) 2692 0 = "Not imputed" 2693 1 = "Statistical imputation (hot" 2694 2 = "Cold deck imputation" 2695 3 = "Logical imputation (derivation)" 2696 4 = "Statistical or logical" 2697 ; NOTE: Format APATYN has been output. 2698 VALUE EPATYP1L (default=32) 2699 -1 = "Not in universe" 2700 1 = "Yes" 2701 2 = "No" 2702 ; NOTE: Format EPATYP1L has been output. 2703 VALUE APATYP1L (default=32) 2704 0 = "Not imputed" 2705 1 = "Statistical imputation (hot" 2706 2 = "Cold deck imputation" 2707 3 = "Logical imputation (derivation)" 2708 4 = "Statistical or logical" 2709 ; NOTE: Format APATYP1L has been output. 2710 VALUE EPATYP2L (default=32) 2711 -1 = "Not in universe" 2712 1 = "Yes" 2713 2 = "No" 2714 ; NOTE: Format EPATYP2L has been output. 2715 VALUE APATYP2L (default=32) 2716 0 = "Not imputed" 2717 1 = "Statistical imputation (hot" 2718 2 = "Cold deck imputation" 2719 3 = "Logical imputation (derivation)" 2720 4 = "Statistical or logical" 2721 ; NOTE: Format APATYP2L has been output. 2722 VALUE EPATYP3L (default=32) 2723 -1 = "Not in universe" 2724 1 = "Yes" 43 The SAS System 11:48 Wednesday, December 4, 2002 2725 2 = "No" 2726 ; NOTE: Format EPATYP3L has been output. 2727 VALUE APATYP3L (default=32) 2728 0 = "Not imputed" 2729 1 = "Statistical imputation (hot" 2730 2 = "Cold deck imputation" 2731 3 = "Logical imputation (derivation)" 2732 4 = "Statistical or logical" 2733 ; NOTE: Format APATYP3L has been output. 2734 VALUE EPATYP4L (default=32) 2735 -1 = "Not in universe" 2736 1 = "Yes" 2737 2 = "No" 2738 ; NOTE: Format EPATYP4L has been output. 2739 VALUE APATYP4L (default=32) 2740 0 = "Not imputed" 2741 1 = "Statistical imputation (hot" 2742 2 = "Cold deck imputation" 2743 3 = "Logical imputation (derivation)" 2744 4 = "Statistical or logical" 2745 ; NOTE: Format APATYP4L has been output. 2746 VALUE EASETDRW (default=32) 2747 -1 = "Not in universe" 2748 1 = "Lump Sum" 2749 2 = "Regular distribution" 2750 3 = "Both" 2751 4 = "No" 2752 ; NOTE: Format EASETDRW has been output. 2753 VALUE AASETDRW (default=32) 2754 0 = "Not imputed" 2755 1 = "Statistical imputation (hot" 2756 2 = "Cold deck imputation" 2757 3 = "Logical imputation (derivation)" 2758 4 = "Statistical or logical" 2759 ; NOTE: Format AASETDRW has been output. 2760 VALUE EJNTSSYN (default=32) 2761 -1 = "Not in universe" 2762 1 = "Yes" 2763 2 = "No" 2764 ; NOTE: Format EJNTSSYN has been output. 2765 VALUE AJNTSSYN (default=32) 2766 0 = "Not imputed" 2767 1 = "Statistical imputation (hot" 2768 2 = "Cold deck imputation" 2769 3 = "Logical imputation (derivation)" 2770 4 = "Statistical or logical" 2771 ; NOTE: Format AJNTSSYN has been output. 2772 VALUE ER01A (default=32) 2773 -1 = "Not in universe" 2774 1 = "Yes" 2775 2 = "No" 2776 ; NOTE: Format ER01A has been output. 2777 VALUE AR01A (default=32) 2778 0 = "Not imputed" 2779 1 = "Statistical imputation (hot" 2780 2 = "Cold deck imputation" 2781 3 = "Logical imputation (derivation)" 2782 4 = "Statistical or logical" 2783 ; NOTE: Format AR01A has been output. 2784 VALUE ER01K (default=32) 2785 -1 = "Not in universe" 2786 1 = "Yes" 2787 2 = "No" 2788 ; NOTE: Format ER01K has been output. 2789 VALUE AR01K (default=32) 44 The SAS System 11:48 Wednesday, December 4, 2002 2790 0 = "Not imputed" 2791 1 = "Statistical imputation (hot" 2792 2 = "Cold deck imputation" 2793 3 = "Logical imputation (derivation)" 2794 4 = "Statistical or logical" 2795 ; NOTE: Format AR01K has been output. 2796 VALUE ER02L (default=32) 2797 -1 = "Not in universe" 2798 1 = "Yes" 2799 2 = "No" 2800 ; NOTE: Format ER02L has been output. 2801 VALUE AR02L (default=32) 2802 0 = "Not imputed" 2803 1 = "Statistical imputation (hot" 2804 2 = "Cold deck imputation" 2805 3 = "Logical imputation (derivation)" 2806 4 = "Statistical or logical" 2807 ; NOTE: Format AR02L has been output. 2808 VALUE ER03A (default=32) 2809 -1 = "Not in universe" 2810 1 = "Yes" 2811 2 = "No" 2812 ; NOTE: Format ER03A has been output. 2813 VALUE AR03A (default=32) 2814 0 = "Not imputed" 2815 1 = "Statistical imputation (hot" 2816 2 = "Cold deck imputation" 2817 3 = "Logical imputation (derivation)" 2818 4 = "Statistical or logical" 2819 ; NOTE: Format AR03A has been output. 2820 VALUE ER03K (default=32) 2821 -1 = "Not in universe" 2822 1 = "Yes" 2823 2 = "No" 2824 ; NOTE: Format ER03K has been output. 2825 VALUE AR03K (default=32) 2826 0 = "Not imputed" 2827 1 = "Statistical imputation (hot" 2828 2 = "Cold deck imputation" 2829 3 = "Logical imputation (derivation)" 2830 4 = "Statistical or logical" 2831 ; NOTE: Format AR03K has been output. 2832 VALUE ER04L (default=32) 2833 -1 = "Not in universe" 2834 1 = "Yes" 2835 2 = "No" 2836 ; NOTE: Format ER04L has been output. 2837 VALUE AR04L (default=32) 2838 0 = "Not imputed" 2839 1 = "Statistical imputation (hot" 2840 2 = "Cold deck imputation" 2841 3 = "Logical imputation (derivation)" 2842 4 = "Statistical or logical" 2843 ; NOTE: Format AR04L has been output. 2844 VALUE ER05L (default=32) 2845 -1 = "Not in universe" 2846 1 = "Yes" 2847 2 = "No" 2848 ; NOTE: Format ER05L has been output. 2849 VALUE AR05L (default=32) 2850 0 = "Not imputed" 2851 1 = "Statistical imputation (hot" 2852 2 = "Cold deck imputation" 2853 3 = "Logical imputation (derivation)" 2854 4 = "Statistical or logical" 2855 ; 45 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format AR05L has been output. 2856 VALUE ER07L (default=32) 2857 -1 = "Not in universe" 2858 1 = "Yes" 2859 2 = "No" 2860 ; NOTE: Format ER07L has been output. 2861 VALUE AR07L (default=32) 2862 0 = "Not imputed" 2863 1 = "Statistical imputation (hot" 2864 2 = "Cold deck imputation" 2865 3 = "Logical imputation (derivation)" 2866 4 = "Statistical or logical" 2867 ; NOTE: Format AR07L has been output. 2868 VALUE ER08L (default=32) 2869 -1 = "Not in universe" 2870 1 = "Yes" 2871 2 = "No" 2872 ; NOTE: Format ER08L has been output. 2873 VALUE AR08L (default=32) 2874 0 = "Not imputed" 2875 1 = "Statistical imputation (hot" 2876 2 = "Cold deck imputation" 2877 3 = "Logical imputation (derivation)" 2878 4 = "Statistical or logical" 2879 ; NOTE: Format AR08L has been output. 2880 VALUE ER09L (default=32) 2881 -1 = "Not in universe" 2882 1 = "Yes" 2883 2 = "No" 2884 ; NOTE: Format ER09L has been output. 2885 VALUE AR09L (default=32) 2886 0 = "Not imputed" 2887 1 = "Statistical imputation (hot" 2888 2 = "Cold deck imputation" 2889 3 = "Logical imputation (derivation)" 2890 4 = "Statistical or logical" 2891 ; NOTE: Format AR09L has been output. 2892 VALUE ER10L (default=32) 2893 -1 = "Not in universe" 2894 1 = "Yes" 2895 2 = "No" 2896 ; NOTE: Format ER10L has been output. 2897 VALUE AR10L (default=32) 2898 0 = "Not imputed" 2899 1 = "Statistical imputation (hot" 2900 2 = "Cold deck imputation" 2901 3 = "Logical imputation (derivation)" 2902 4 = "Statistical or logical" 2903 ; NOTE: Format AR10L has been output. 2904 VALUE ER12L (default=32) 2905 -1 = "Not in universe" 2906 1 = "Yes" 2907 2 = "No" 2908 ; NOTE: Format ER12L has been output. 2909 VALUE AR12L (default=32) 2910 0 = "Not imputed" 2911 1 = "Statistical imputation (hot" 2912 2 = "Cold deck imputation" 2913 3 = "Logical imputation (derivation)" 2914 4 = "Statistical or logical" 2915 ; NOTE: Format AR12L has been output. 2916 VALUE ER13L (default=32) 2917 -1 = "Not in universe" 2918 1 = "Yes" 2919 2 = "No" 2920 ; 46 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format ER13L has been output. 2921 VALUE AR13L (default=32) 2922 0 = "Not imputed" 2923 1 = "Statistical imputation (hot" 2924 2 = "Cold deck imputation" 2925 3 = "Logical imputation (derivation)" 2926 4 = "Statistical or logical" 2927 ; NOTE: Format AR13L has been output. 2928 VALUE ER14L (default=32) 2929 -1 = "Not in universe" 2930 1 = "Yes" 2931 2 = "No" 2932 ; NOTE: Format ER14L has been output. 2933 VALUE AR14L (default=32) 2934 0 = "Not imputed" 2935 1 = "Statistical imputation (hot" 2936 2 = "Cold deck imputation" 2937 3 = "Logical imputation (derivation)" 2938 4 = "Statistical or logical" 2939 ; NOTE: Format AR14L has been output. 2940 VALUE ER15L (default=32) 2941 -1 = "Not in universe" 2942 1 = "Yes" 2943 2 = "No" 2944 ; NOTE: Format ER15L has been output. 2945 VALUE AR15L (default=32) 2946 0 = "Not imputed" 2947 1 = "Statistical imputation (hot" 2948 2 = "Cold deck imputation" 2949 3 = "Logical imputation (derivation)" 2950 4 = "Statistical or logical" 2951 ; NOTE: Format AR15L has been output. 2952 VALUE ER20L (default=32) 2953 -1 = "Not in universe" 2954 1 = "Yes" 2955 2 = "No" 2956 ; NOTE: Format ER20L has been output. 2957 VALUE AR20L (default=32) 2958 0 = "Not imputed" 2959 1 = "Statistical imputation (hot" 2960 2 = "Cold deck imputation" 2961 3 = "Logical imputation (derivation)" 2962 4 = "Statistical or logical" 2963 ; NOTE: Format AR20L has been output. 2964 VALUE ER21L (default=32) 2965 -1 = "Not in universe" 2966 1 = "Yes" 2967 2 = "No" 2968 ; NOTE: Format ER21L has been output. 2969 VALUE AR21L (default=32) 2970 0 = "Not imputed" 2971 1 = "Statistical imputation (hot" 2972 2 = "Cold deck imputation" 2973 3 = "Logical imputation (derivation)" 2974 4 = "Statistical or logical" 2975 ; NOTE: Format AR21L has been output. 2976 VALUE ER23L (default=32) 2977 -1 = "Not in universe" 2978 1 = "Yes" 2979 2 = "No" 2980 ; NOTE: Format ER23L has been output. 2981 VALUE AR23L (default=32) 2982 0 = "Not imputed" 2983 1 = "Statistical imputation (hot" 2984 2 = "Cold deck imputation" 2985 3 = "Logical imputation (derivation)" 47 The SAS System 11:48 Wednesday, December 4, 2002 2986 4 = "Statistical or logical" 2987 ; NOTE: Format AR23L has been output. 2988 VALUE ER24L (default=32) 2989 -1 = "Not in universe" 2990 1 = "Yes" 2991 2 = "No" 2992 ; NOTE: Format ER24L has been output. 2993 VALUE AR24L (default=32) 2994 0 = "Not imputed" 2995 1 = "Statistical imputation (hot" 2996 2 = "Cold deck imputation" 2997 3 = "Logical imputation (derivation)" 2998 4 = "Statistical or logical" 2999 ; NOTE: Format AR24L has been output. 3000 VALUE ER25L (default=32) 3001 -1 = "Not in universe" 3002 1 = "Yes" 3003 2 = "No" 3004 ; NOTE: Format ER25L has been output. 3005 VALUE AR25L (default=32) 3006 0 = "Not imputed" 3007 1 = "Statistical imputation (hot" 3008 2 = "Cold deck imputation" 3009 3 = "Logical imputation (derivation)" 3010 4 = "Statistical or logical" 3011 ; NOTE: Format AR25L has been output. 3012 VALUE ER26L (default=32) 3013 -1 = "Not in universe" 3014 1 = "Yes" 3015 2 = "No" 3016 ; NOTE: Format ER26L has been output. 3017 VALUE AR26L (default=32) 3018 0 = "Not imputed" 3019 1 = "Statistical imputation (hot" 3020 2 = "Cold deck imputation" 3021 3 = "Logical imputation (derivation)" 3022 4 = "Statistical or logical" 3023 ; NOTE: Format AR26L has been output. 3024 VALUE ER27L (default=32) 3025 -1 = "Not in universe" 3026 1 = "Yes" 3027 2 = "No" 3028 ; NOTE: Format ER27L has been output. 3029 VALUE AR27L (default=32) 3030 0 = "Not imputed" 3031 1 = "Statistical imputation (hot" 3032 2 = "Cold deck imputation" 3033 3 = "Logical imputation (derivation)" 3034 4 = "Statistical or logical" 3035 ; NOTE: Format AR27L has been output. 3036 VALUE ER28L (default=32) 3037 -1 = "Not in universe" 3038 1 = "Yes" 3039 2 = "No" 3040 ; NOTE: Format ER28L has been output. 3041 VALUE AR28L (default=32) 3042 0 = "Not imputed" 3043 1 = "Statistical imputation (hot" 3044 2 = "Cold deck imputation" 3045 3 = "Logical imputation (derivation)" 3046 4 = "Statistical or logical" 3047 ; NOTE: Format AR28L has been output. 3048 VALUE ER29L (default=32) 3049 -1 = "Not in universe" 3050 1 = "Yes" 48 The SAS System 11:48 Wednesday, December 4, 2002 3051 2 = "No" 3052 ; NOTE: Format ER29L has been output. 3053 VALUE AR29L (default=32) 3054 0 = "Not imputed" 3055 1 = "Statistical imputation (hot" 3056 2 = "Cold deck imputation" 3057 3 = "Logical imputation (derivation)" 3058 4 = "Statistical or logical" 3059 ; NOTE: Format AR29L has been output. 3060 VALUE ER30L (default=32) 3061 -1 = "Not in universe" 3062 1 = "Yes" 3063 2 = "No" 3064 ; NOTE: Format ER30L has been output. 3065 VALUE AR30L (default=32) 3066 0 = "Not imputed" 3067 1 = "Statistical imputation (hot" 3068 2 = "Cold deck imputation" 3069 3 = "Logical imputation (derivation)" 3070 4 = "Statistical or logical" 3071 ; NOTE: Format AR30L has been output. 3072 VALUE ER31L (default=32) 3073 -1 = "Not in universe" 3074 1 = "Yes" 3075 2 = "No" 3076 ; NOTE: Format ER31L has been output. 3077 VALUE AR31L (default=32) 3078 0 = "Not imputed" 3079 1 = "Statistical imputation (hot" 3080 2 = "Cold deck imputation" 3081 3 = "Logical imputation (derivation)" 3082 4 = "Statistical or logical" 3083 ; NOTE: Format AR31L has been output. 3084 VALUE ER32L (default=32) 3085 -1 = "Not in universe" 3086 1 = "Yes" 3087 2 = "No" 3088 ; NOTE: Format ER32L has been output. 3089 VALUE AR32L (default=32) 3090 0 = "Not imputed" 3091 1 = "Statistical imputation (hot" 3092 2 = "Cold deck imputation" 3093 3 = "Logical imputation (derivation)" 3094 4 = "Statistical or logical" 3095 ; NOTE: Format AR32L has been output. 3096 VALUE ER34L (default=32) 3097 -1 = "Not in universe" 3098 1 = "Yes" 3099 2 = "No" 3100 ; NOTE: Format ER34L has been output. 3101 VALUE AR34L (default=32) 3102 0 = "Not imputed" 3103 1 = "Statistical imputation (hot" 3104 2 = "Cold deck imputation" 3105 3 = "Logical imputation (derivation)" 3106 4 = "Statistical or logical" 3107 ; NOTE: Format AR34L has been output. 3108 VALUE ER35L (default=32) 3109 -1 = "Not in universe" 3110 1 = "Yes" 3111 2 = "No" 3112 ; NOTE: Format ER35L has been output. 3113 VALUE AR35L (default=32) 3114 0 = "Not imputed" 3115 1 = "Statistical imputation (hot" 49 The SAS System 11:48 Wednesday, December 4, 2002 3116 2 = "Cold deck imputation" 3117 3 = "Logical imputation (derivation)" 3118 4 = "Statistical or logical" 3119 ; NOTE: Format AR35L has been output. 3120 VALUE ER36L (default=32) 3121 -1 = "Not in universe" 3122 1 = "Yes" 3123 2 = "No" 3124 ; NOTE: Format ER36L has been output. 3125 VALUE AR36L (default=32) 3126 0 = "Not imputed" 3127 1 = "Statistical imputation (hot" 3128 2 = "Cold deck imputation" 3129 3 = "Logical imputation (derivation)" 3130 4 = "Statistical or logical" 3131 ; NOTE: Format AR36L has been output. 3132 VALUE ER37L (default=32) 3133 -1 = "Not in universe" 3134 1 = "Yes" 3135 2 = "No" 3136 ; NOTE: Format ER37L has been output. 3137 VALUE AR37L (default=32) 3138 0 = "Not imputed" 3139 1 = "Statistical imputation (hot" 3140 2 = "Cold deck imputation" 3141 3 = "Logical imputation (derivation)" 3142 4 = "Statistical or logical" 3143 ; NOTE: Format AR37L has been output. 3144 VALUE ER38L (default=32) 3145 -1 = "Not in universe" 3146 1 = "Yes" 3147 2 = "No" 3148 ; NOTE: Format ER38L has been output. 3149 VALUE AR38L (default=32) 3150 0 = "Not imputed" 3151 1 = "Statistical imputation (hot" 3152 2 = "Cold deck imputation" 3153 3 = "Logical imputation (derivation)" 3154 4 = "Statistical or logical" 3155 ; NOTE: Format AR38L has been output. 3156 VALUE ER39L (default=32) 3157 -1 = "Not in universe" 3158 1 = "Yes" 3159 2 = "No" 3160 ; NOTE: Format ER39L has been output. 3161 VALUE AR39L (default=32) 3162 0 = "Not imputed" 3163 1 = "Statistical imputation (hot" 3164 2 = "Cold deck imputation" 3165 3 = "Logical imputation (derivation)" 3166 4 = "Statistical or logical" 3167 ; NOTE: Format AR39L has been output. 3168 VALUE ER42L (default=32) 3169 -1 = "Not in universe" 3170 1 = "Yes" 3171 2 = "No" 3172 ; NOTE: Format ER42L has been output. 3173 VALUE AR42L (default=32) 3174 0 = "Not imputed" 3175 1 = "Statistical imputation (hot" 3176 2 = "Cold deck imputation" 3177 3 = "Logical imputation (derivation)" 3178 4 = "Statistical or logical" 3179 ; NOTE: Format AR42L has been output. 3180 VALUE ER50L (default=32) 50 The SAS System 11:48 Wednesday, December 4, 2002 3181 -1 = "Not in universe" 3182 1 = "Yes" 3183 2 = "No" 3184 ; NOTE: Format ER50L has been output. 3185 VALUE AR50L (default=32) 3186 0 = "Not imputed" 3187 1 = "Statistical imputation (hot" 3188 2 = "Cold deck imputation" 3189 3 = "Logical imputation (derivation)" 3190 4 = "Statistical or logical" 3191 ; NOTE: Format AR50L has been output. 3192 VALUE ER51L (default=32) 3193 -1 = "Not in universe" 3194 1 = "Yes" 3195 2 = "No" 3196 ; NOTE: Format ER51L has been output. 3197 VALUE AR51L (default=32) 3198 0 = "Not imputed" 3199 1 = "Statistical imputation (hot" 3200 2 = "Cold deck imputation" 3201 3 = "Logical imputation (derivation)" 3202 4 = "Statistical or logical" 3203 ; NOTE: Format AR51L has been output. 3204 VALUE ER52L (default=32) 3205 -1 = "Not in universe" 3206 1 = "Yes" 3207 2 = "No" 3208 ; NOTE: Format ER52L has been output. 3209 VALUE AR52L (default=32) 3210 0 = "Not imputed" 3211 1 = "Statistical imputation (hot" 3212 2 = "Cold deck imputation" 3213 3 = "Logical imputation (derivation)" 3214 4 = "Statistical or logical" 3215 ; NOTE: Format AR52L has been output. 3216 VALUE ER53L (default=32) 3217 -1 = "Not in universe" 3218 1 = "Yes" 3219 2 = "No" 3220 ; NOTE: Format ER53L has been output. 3221 VALUE AR53L (default=32) 3222 0 = "Not imputed" 3223 1 = "Statistical imputation (hot" 3224 2 = "Cold deck imputation" 3225 3 = "Logical imputation (derivation)" 3226 4 = "Statistical or logical" 3227 ; NOTE: Format AR53L has been output. 3228 VALUE ER55L (default=32) 3229 -1 = "Not in universe" 3230 1 = "Yes" 3231 2 = "No" 3232 ; NOTE: Format ER55L has been output. 3233 VALUE AR55L (default=32) 3234 0 = "Not imputed" 3235 1 = "Statistical imputation (hot" 3236 2 = "Cold deck imputation" 3237 3 = "Logical imputation (derivation)" 3238 4 = "Statistical or logical" 3239 ; NOTE: Format AR55L has been output. 3240 VALUE ER56L (default=32) 3241 -1 = "Not in universe" 3242 1 = "Yes" 3243 2 = "No" 3244 ; NOTE: Format ER56L has been output. 3245 VALUE AR56L (default=32) 51 The SAS System 11:48 Wednesday, December 4, 2002 3246 0 = "Not imputed" 3247 1 = "Statistical imputation (hot" 3248 2 = "Cold deck imputation" 3249 3 = "Logical imputation (derivation)" 3250 4 = "Statistical or logical" 3251 ; NOTE: Format AR56L has been output. 3252 VALUE ER75L (default=32) 3253 -1 = "Not in universe" 3254 1 = "Yes" 3255 2 = "No" 3256 ; NOTE: Format ER75L has been output. 3257 VALUE AR75L (default=32) 3258 0 = "Not imputed" 3259 1 = "Statistical imputation (hot" 3260 2 = "Cold deck imputation" 3261 3 = "Logical imputation (derivation)" 3262 4 = "Statistical or logical" 3263 ; NOTE: Format AR75L has been output. 3264 VALUE T01AMTA (default=32) 3265 0 = "None or not in universe" 3266 ; NOTE: Format T01AMTA has been output. 3267 VALUE A01AMTA (default=32) 3268 0 = "Not imputed" 3269 1 = "Statistical imputation (hot" 3270 2 = "Cold deck imputation" 3271 3 = "Logical imputation (derivation)" 3272 4 = "Statistical or logical" 3273 ; NOTE: Format A01AMTA has been output. 3274 VALUE T01AMTK (default=32) 3275 0 = "None or not in universe" 3276 ; NOTE: Format T01AMTK has been output. 3277 VALUE A01AMTK (default=32) 3278 0 = "Not imputed" 3279 1 = "Statistical imputation (hot" 3280 2 = "Cold deck imputation" 3281 3 = "Logical imputation (derivation)" 3282 4 = "Statistical or logical" 3283 ; NOTE: Format A01AMTK has been output. 3284 VALUE T02AMT (default=32) 3285 0 = "None or not in universe" 3286 ; NOTE: Format T02AMT has been output. 3287 VALUE A02AMT (default=32) 3288 0 = "Not imputed" 3289 1 = "Statistical imputation (hot" 3290 2 = "Cold deck imputation" 3291 3 = "Logical imputation (derivation)" 3292 4 = "Statistical or logical" 3293 ; NOTE: Format A02AMT has been output. 3294 VALUE T03AMTA (default=32) 3295 0 = "None or not in universe" 3296 ; NOTE: Format T03AMTA has been output. 3297 VALUE A03AMTA (default=32) 3298 0 = "Not imputed" 3299 1 = "Statistical imputation (hot" 3300 2 = "Cold deck imputation" 3301 3 = "Logical imputation (derivation)" 3302 4 = "Statistical or logical" 3303 ; NOTE: Format A03AMTA has been output. 3304 VALUE T03AMTK (default=32) 3305 0 = "None or not in universe" 3306 ; NOTE: Format T03AMTK has been output. 3307 VALUE A03AMTK (default=32) 3308 0 = "Not imputed" 3309 1 = "Statistical imputation (hot" 52 The SAS System 11:48 Wednesday, December 4, 2002 3310 2 = "Cold deck imputation" 3311 3 = "Logical imputation (derivation)" 3312 4 = "Statistical or logical" 3313 ; NOTE: Format A03AMTK has been output. 3314 VALUE T04AMT (default=32) 3315 0 = "None or not in universe" 3316 ; NOTE: Format T04AMT has been output. 3317 VALUE A04AMT (default=32) 3318 0 = "Not imputed" 3319 1 = "Statistical imputation (hot" 3320 2 = "Cold deck imputation" 3321 3 = "Logical imputation (derivation)" 3322 4 = "Statistical or logical" 3323 ; NOTE: Format A04AMT has been output. 3324 VALUE T05AMT (default=32) 3325 0 = "None or not in universe" 3326 ; NOTE: Format T05AMT has been output. 3327 VALUE A05AMT (default=32) 3328 0 = "Not imputed" 3329 1 = "Statistical imputation (hot" 3330 2 = "Cold deck imputation" 3331 3 = "Logical imputation (derivation)" 3332 4 = "Statistical or logical" 3333 ; NOTE: Format A05AMT has been output. 3334 VALUE T07AMT (default=32) 3335 0 = "None or not in universe" 3336 ; NOTE: Format T07AMT has been output. 3337 VALUE A07AMT (default=32) 3338 0 = "Not imputed" 3339 1 = "Statistical imputation (hot" 3340 2 = "Cold deck imputation" 3341 3 = "Logical imputation (derivation)" 3342 4 = "Statistical or logical" 3343 ; NOTE: Format A07AMT has been output. 3344 VALUE T08AMT (default=32) 3345 0 = "None or not in universe" 3346 ; NOTE: Format T08AMT has been output. 3347 VALUE A08AMT (default=32) 3348 0 = "Not imputed" 3349 1 = "Statistical imputation (hot" 3350 2 = "Cold deck imputation" 3351 3 = "Logical imputation (derivation)" 3352 4 = "Statistical or logical" 3353 ; NOTE: Format A08AMT has been output. 3354 VALUE T09AMT (default=32) 3355 0 = "None or not in universe" 3356 ; NOTE: Format T09AMT has been output. 3357 VALUE A09AMT (default=32) 3358 0 = "Not imputed" 3359 1 = "Statistical imputation (hot" 3360 2 = "Cold deck imputation" 3361 3 = "Logical imputation (derivation)" 3362 4 = "Statistical or logical" 3363 ; NOTE: Format A09AMT has been output. 3364 VALUE T10AMT (default=32) 3365 0 = "None or not in universe" 3366 ; NOTE: Format T10AMT has been output. 3367 VALUE A10AMT (default=32) 3368 0 = "Not imputed" 3369 1 = "Statistical imputation (hot" 3370 2 = "Cold deck imputation" 3371 3 = "Logical imputation (derivation)" 3372 4 = "Statistical or logical" 3373 ; 53 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format A10AMT has been output. 3374 VALUE T12AMT (default=32) 3375 0 = "None or not in universe" 3376 ; NOTE: Format T12AMT has been output. 3377 VALUE A12AMT (default=32) 3378 0 = "Not imputed" 3379 1 = "Statistical imputation (hot" 3380 2 = "Cold deck imputation" 3381 3 = "Logical imputation (derivation)" 3382 4 = "Statistical or logical" 3383 ; NOTE: Format A12AMT has been output. 3384 VALUE T13AMT (default=32) 3385 0 = "None or not in universe" 3386 ; NOTE: Format T13AMT has been output. 3387 VALUE A13AMT (default=32) 3388 0 = "Not imputed" 3389 1 = "Statistical imputation (hot" 3390 2 = "Cold deck imputation" 3391 3 = "Logical imputation (derivation)" 3392 4 = "Statistical or logical" 3393 ; NOTE: Format A13AMT has been output. 3394 VALUE T14AMT (default=32) 3395 0 = "None or not in universe" 3396 ; NOTE: Format T14AMT has been output. 3397 VALUE A14AMT (default=32) 3398 0 = "Not imputed" 3399 1 = "Statistical imputation (hot" 3400 2 = "Cold deck imputation" 3401 3 = "Logical imputation (derivation)" 3402 4 = "Statistical or logical" 3403 ; NOTE: Format A14AMT has been output. 3404 VALUE T15AMT (default=32) 3405 0 = "None or not in universe" 3406 ; NOTE: Format T15AMT has been output. 3407 VALUE A15AMT (default=32) 3408 0 = "Not imputed" 3409 1 = "Statistical imputation (hot" 3410 2 = "Cold deck imputation" 3411 3 = "Logical imputation (derivation)" 3412 4 = "Statistical or logical" 3413 ; NOTE: Format A15AMT has been output. 3414 VALUE T20AMT (default=32) 3415 0 = "None or not in universe" 3416 ; NOTE: Format T20AMT has been output. 3417 VALUE A20AMT (default=32) 3418 0 = "Not imputed" 3419 1 = "Statistical imputation (hot" 3420 2 = "Cold deck imputation" 3421 3 = "Logical imputation (derivation)" 3422 4 = "Statistical or logical" 3423 ; NOTE: Format A20AMT has been output. 3424 VALUE T21AMT (default=32) 3425 0 = "None or not in universe" 3426 ; NOTE: Format T21AMT has been output. 3427 VALUE A21AMT (default=32) 3428 0 = "Not imputed" 3429 1 = "Statistical imputation (hot" 3430 2 = "Cold deck imputation" 3431 3 = "Logical imputation (derivation)" 3432 4 = "Statistical or logical" 3433 ; NOTE: Format A21AMT has been output. 3434 VALUE T23AMT (default=32) 3435 0 = "None or not in universe" 3436 ; 54 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format T23AMT has been output. 3437 VALUE A23AMT (default=32) 3438 0 = "Not imputed" 3439 1 = "Statistical imputation (hot" 3440 2 = "Cold deck imputation" 3441 3 = "Logical imputation (derivation)" 3442 4 = "Statistical or logical" 3443 ; NOTE: Format A23AMT has been output. 3444 VALUE T24AMT (default=32) 3445 0 = "None or not in universe" 3446 ; NOTE: Format T24AMT has been output. 3447 VALUE A24AMT (default=32) 3448 0 = "Not imputed" 3449 1 = "Statistical imputation (hot" 3450 2 = "Cold deck imputation" 3451 3 = "Logical imputation (derivation)" 3452 4 = "Statistical or logical" 3453 ; NOTE: Format A24AMT has been output. 3454 VALUE T25AMT (default=32) 3455 0 = "None or not in universe" 3456 ; NOTE: Format T25AMT has been output. 3457 VALUE A25AMT (default=32) 3458 0 = "Not imputed" 3459 1 = "Statistical imputation (hot" 3460 2 = "Cold deck imputation" 3461 3 = "Logical imputation (derivation)" 3462 4 = "Statistical or logical" 3463 ; NOTE: Format A25AMT has been output. 3464 VALUE T26AMT (default=32) 3465 0 = "None or not in universe" 3466 ; NOTE: Format T26AMT has been output. 3467 VALUE A26AMT (default=32) 3468 0 = "Not imputed" 3469 1 = "Statistical imputation (hot" 3470 2 = "Cold deck imputation" 3471 3 = "Logical imputation (derivation)" 3472 4 = "Statistical or logical" 3473 ; NOTE: Format A26AMT has been output. 3474 VALUE T27AMT (default=32) 3475 0 = "None or not in universe" 3476 ; NOTE: Format T27AMT has been output. 3477 VALUE A27AMT (default=32) 3478 0 = "Not imputed" 3479 1 = "Statistical imputation (hot" 3480 2 = "Cold deck imputation" 3481 3 = "Logical imputation (derivation)" 3482 4 = "Statistical or logical" 3483 ; NOTE: Format A27AMT has been output. 3484 VALUE T28AMT (default=32) 3485 0 = "None or not in universe" 3486 ; NOTE: Format T28AMT has been output. 3487 VALUE A28AMT (default=32) 3488 0 = "Not imputed" 3489 1 = "Statistical imputation (hot" 3490 2 = "Cold deck imputation" 3491 3 = "Logical imputation (derivation)" 3492 4 = "Statistical or logical" 3493 ; NOTE: Format A28AMT has been output. 3494 VALUE T29AMT (default=32) 3495 0 = "None or not in universe" 3496 ; NOTE: Format T29AMT has been output. 3497 VALUE A29AMT (default=32) 3498 0 = "Not imputed" 3499 1 = "Statistical imputation (hot" 55 The SAS System 11:48 Wednesday, December 4, 2002 3500 2 = "Cold deck imputation" 3501 3 = "Logical imputation (derivation)" 3502 4 = "Statistical or logical" 3503 ; NOTE: Format A29AMT has been output. 3504 VALUE T30AMT (default=32) 3505 0 = "None or not in universe" 3506 ; NOTE: Format T30AMT has been output. 3507 VALUE A30AMT (default=32) 3508 0 = "Not imputed" 3509 1 = "Statistical imputation (hot" 3510 2 = "Cold deck imputation" 3511 3 = "Logical imputation (derivation)" 3512 4 = "Statistical or logical" 3513 ; NOTE: Format A30AMT has been output. 3514 VALUE T31AMT (default=32) 3515 0 = "None or not in universe" 3516 ; NOTE: Format T31AMT has been output. 3517 VALUE A31AMT (default=32) 3518 0 = "Not imputed" 3519 1 = "Statistical imputation (hot" 3520 2 = "Cold deck imputation" 3521 3 = "Logical imputation (derivation)" 3522 4 = "Statistical or logical" 3523 ; NOTE: Format A31AMT has been output. 3524 VALUE T32AMT (default=32) 3525 0 = "None or not in universe" 3526 ; NOTE: Format T32AMT has been output. 3527 VALUE A32AMT (default=32) 3528 0 = "Not imputed" 3529 1 = "Statistical imputation (hot" 3530 2 = "Cold deck imputation" 3531 3 = "Logical imputation (derivation)" 3532 4 = "Statistical or logical" 3533 ; NOTE: Format A32AMT has been output. 3534 VALUE T34AMT (default=32) 3535 0 = "None or not in universe" 3536 ; NOTE: Format T34AMT has been output. 3537 VALUE A34AMT (default=32) 3538 0 = "Not imputed" 3539 1 = "Statistical imputation (hot" 3540 2 = "Cold deck imputation" 3541 3 = "Logical imputation (derivation)" 3542 4 = "Statistical or logical" 3543 ; NOTE: Format A34AMT has been output. 3544 VALUE T35AMT (default=32) 3545 0 = "None or not in universe" 3546 ; NOTE: Format T35AMT has been output. 3547 VALUE A35AMT (default=32) 3548 0 = "Not imputed" 3549 1 = "Statistical imputation (hot" 3550 2 = "Cold deck imputation" 3551 3 = "Logical imputation (derivation)" 3552 4 = "Statistical or logical" 3553 ; NOTE: Format A35AMT has been output. 3554 VALUE T36AMT (default=32) 3555 0 = "None or not in universe" 3556 ; NOTE: Format T36AMT has been output. 3557 VALUE A36AMT (default=32) 3558 0 = "Not imputed" 3559 1 = "Statistical imputation (hot" 3560 2 = "Cold deck imputation" 3561 3 = "Logical imputation (derivation)" 3562 4 = "Statistical or logical" 3563 ; 56 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format A36AMT has been output. 3564 VALUE T37AMT (default=32) 3565 0 = "None or not in universe" 3566 ; NOTE: Format T37AMT has been output. 3567 VALUE A37AMT (default=32) 3568 0 = "Not imputed" 3569 1 = "Statistical imputation (hot" 3570 2 = "Cold deck imputation" 3571 3 = "Logical imputation (derivation)" 3572 4 = "Statistical or logical" 3573 ; NOTE: Format A37AMT has been output. 3574 VALUE T38AMT (default=32) 3575 0 = "None or not in universe" 3576 ; NOTE: Format T38AMT has been output. 3577 VALUE A38AMT (default=32) 3578 0 = "Not imputed" 3579 1 = "Statistical imputation (hot" 3580 2 = "Cold deck imputation" 3581 3 = "Logical imputation (derivation)" 3582 4 = "Statistical or logical" 3583 ; NOTE: Format A38AMT has been output. 3584 VALUE T39AMT (default=32) 3585 0 = "None or not in universe" 3586 ; NOTE: Format T39AMT has been output. 3587 VALUE A39AMT (default=32) 3588 0 = "Not imputed" 3589 1 = "Statistical imputation (hot" 3590 2 = "Cold deck imputation" 3591 3 = "Logical imputation (derivation)" 3592 4 = "Statistical or logical" 3593 ; NOTE: Format A39AMT has been output. 3594 VALUE T42AMT (default=32) 3595 0 = "None or not in universe" 3596 ; NOTE: Format T42AMT has been output. 3597 VALUE A42AMT (default=32) 3598 0 = "Not imputed" 3599 1 = "Statistical imputation (hot" 3600 2 = "Cold deck imputation" 3601 3 = "Logical imputation (derivation)" 3602 4 = "Statistical or logical" 3603 ; NOTE: Format A42AMT has been output. 3604 VALUE T50AMT (default=32) 3605 0 = "None or not in universe" 3606 ; NOTE: Format T50AMT has been output. 3607 VALUE A50AMT (default=32) 3608 0 = "Not imputed" 3609 1 = "Statistical imputation (hot" 3610 2 = "Cold deck imputation" 3611 3 = "Logical imputation (derivation)" 3612 4 = "Statistical or logical" 3613 ; NOTE: Format A50AMT has been output. 3614 VALUE T51AMT (default=32) 3615 0 = "None or not in universe" 3616 ; NOTE: Format T51AMT has been output. 3617 VALUE A51AMT (default=32) 3618 0 = "Not imputed" 3619 1 = "Statistical imputation (hot" 3620 2 = "Cold deck imputation" 3621 3 = "Logical imputation (derivation)" 3622 4 = "Statistical or logical" 3623 ; NOTE: Format A51AMT has been output. 3624 VALUE T52AMT (default=32) 3625 0 = "None or not in universe" 3626 ; 57 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format T52AMT has been output. 3627 VALUE A52AMT (default=32) 3628 0 = "Not imputed" 3629 1 = "Statistical imputation (hot" 3630 2 = "Cold deck imputation" 3631 3 = "Logical imputation (derivation)" 3632 4 = "Statistical or logical" 3633 ; NOTE: Format A52AMT has been output. 3634 VALUE T53AMT (default=32) 3635 0 = "None or not in universe" 3636 ; NOTE: Format T53AMT has been output. 3637 VALUE A53AMT (default=32) 3638 0 = "Not imputed" 3639 1 = "Statistical imputation (hot" 3640 2 = "Cold deck imputation" 3641 3 = "Logical imputation (derivation)" 3642 4 = "Statistical or logical" 3643 ; NOTE: Format A53AMT has been output. 3644 VALUE T55AMT (default=32) 3645 0 = "None or not in universe" 3646 ; NOTE: Format T55AMT has been output. 3647 VALUE A55AMT (default=32) 3648 0 = "Not imputed" 3649 1 = "Statistical imputation (hot" 3650 2 = "Cold deck imputation" 3651 3 = "Logical imputation (derivation)" 3652 4 = "Statistical or logical" 3653 ; NOTE: Format A55AMT has been output. 3654 VALUE T56AMT (default=32) 3655 0 = "None or not in universe" 3656 ; NOTE: Format T56AMT has been output. 3657 VALUE A56AMT (default=32) 3658 0 = "Not imputed" 3659 1 = "Statistical imputation (hot" 3660 2 = "Cold deck imputation" 3661 3 = "Logical imputation (derivation)" 3662 4 = "Statistical or logical" 3663 ; NOTE: Format A56AMT has been output. 3664 VALUE T75AMT (default=32) 3665 0 = "None or not in universe" 3666 ; NOTE: Format T75AMT has been output. 3667 VALUE A75AMT (default=32) 3668 0 = "Not imputed" 3669 1 = "Statistical imputation (hot" 3670 2 = "Cold deck imputation" 3671 3 = "Logical imputation (derivation)" 3672 4 = "Statistical or logical" 3673 ; NOTE: Format A75AMT has been output. 3674 VALUE TCSAGY (default=32) 3675 0 = "None or not in universe" 3676 ; NOTE: Format TCSAGY has been output. 3677 VALUE ACSAGY (default=32) 3678 0 = "Not imputed" 3679 1 = "Statistical imputation (hot" 3680 2 = "Cold deck imputation" 3681 3 = "Logical imputation (derivation)" 3682 4 = "Statistical or logical" 3683 ; NOTE: Format ACSAGY has been output. 3684 VALUE EROLOVRA (default=32) 3685 -1 = "Not in universe" 3686 1 = "Yes" 3687 2 = "No" 3688 ; NOTE: Format EROLOVRA has been output. 3689 VALUE AROLOVRA (default=32) 58 The SAS System 11:48 Wednesday, December 4, 2002 3690 0 = "Not imputed" 3691 1 = "Statistical imputation (hot" 3692 2 = "Cold deck imputation" 3693 3 = "Logical imputation (derivation)" 3694 4 = "Statistical or logical" 3695 ; NOTE: Format AROLOVRA has been output. 3696 VALUE EROLOVRB (default=32) 3697 -1 = "Not in universe" 3698 1 = "Yes" 3699 2 = "No" 3700 ; NOTE: Format EROLOVRB has been output. 3701 VALUE AROLOVRB (default=32) 3702 0 = "Not imputed" 3703 1 = "Statistical imputation (hot" 3704 2 = "Cold deck imputation" 3705 3 = "Logical imputation (derivation)" 3706 4 = "Statistical or logical" 3707 ; NOTE: Format AROLOVRB has been output. 3708 VALUE TROLLAMT (default=32) 3709 0 = "None or not in universe" 3710 ; NOTE: Format TROLLAMT has been output. 3711 VALUE AROLLAMT (default=32) 3712 0 = "Not imputed" 3713 1 = "Statistical imputation (hot" 3714 2 = "Cold deck imputation" 3715 3 = "Logical imputation (derivation)" 3716 4 = "Statistical or logical" 3717 ; NOTE: Format AROLLAMT has been output. 3718 VALUE RAB1R1L (default=32) 3719 -1 = "Not in universe" 3720 2 = "Pregnancy/birth of child" 3721 3 = "Began receiving for another" 3722 4 = "Separated or divorced from" 3723 5 = "Loss of job/wages/other income" 3724 6 = "Loss of other support income" 3725 7 = "Just learned about program" 3726 8 = "Just got around to applying" 3727 9 = "Became disabled" 3728 10 = "Other, specify" 3729 ; NOTE: Format RAB1R1L has been output. 3730 VALUE RAB1R2L (default=32) 3731 -1 = "Not in universe" 3732 2 = "Pregnancy/birth of child" 3733 3 = "Began receiving for another" 3734 4 = "Separated or divorced from" 3735 5 = "Loss of job/wages/other income" 3736 6 = "Loss of other support income" 3737 7 = "Just learned about program" 3738 8 = "Just got around to applying" 3739 9 = "Became disabled" 3740 10 = "Other, specify" 3741 ; NOTE: Format RAB1R2L has been output. 3742 VALUE RAB2R1L (default=32) 3743 -1 = "Not in universe" 3744 2 = "Pregnancy/birth of child" 3745 3 = "Began receiving for another" 3746 4 = "Separated or divorced from" 3747 5 = "Loss of job/wages/other income" 3748 6 = "Loss of other support income" 3749 7 = "Just learned about program" 3750 8 = "Just got around to applying" 3751 9 = "Became disabled" 3752 10 = "Other, specify" 3753 ; NOTE: Format RAB2R1L has been output. 3754 VALUE RAB2R2L (default=32) 3755 -1 = "Not in universe" 3756 2 = "Pregnancy/birth of child" 3757 3 = "Began receiving for another" 59 The SAS System 11:48 Wednesday, December 4, 2002 3758 4 = "Separated or divorced from" 3759 5 = "Loss of job/wages/other income" 3760 6 = "Loss of other support income" 3761 7 = "Just learned about program" 3762 8 = "Just got around to applying" 3763 9 = "Became disabled" 3764 10 = "Other, specify" 3765 ; NOTE: Format RAB2R2L has been output. 3766 VALUE RAS1L (default=32) 3767 -1 = "Not in Universe" 3768 1 = "Became ineligible because of" 3769 2 = "Because of family changes" 3770 3 = "Still eligible but could/chose" 3771 4 = "Other, specify" 3772 ; NOTE: Format RAS1L has been output. 3773 VALUE RAS2L (default=32) 3774 -1 = "Not in Universe" 3775 1 = "Became ineligible because of" 3776 2 = "Because of family changes" 3777 3 = "Still eligible but could/chose" 3778 4 = "Other, specify" 3779 ; NOTE: Format RAS2L has been output. 3780 VALUE RWB1R1L (default=32) 3781 -1 = "Not in universe" 3782 2 = "Pregnancy/birth of child" 3783 3 = "Began receiving for another" 3784 4 = "Separated or divorced from" 3785 5 = "Loss of job/wages/other income" 3786 6 = "Loss of other support income" 3787 7 = "Just learned about program" 3788 8 = "Just got around to applying" 3789 9 = "Became disabled" 3790 10 = "Other, specify" 3791 ; NOTE: Format RWB1R1L has been output. 3792 VALUE RWB1R2L (default=32) 3793 -1 = "Not in universe" 3794 2 = "Pregnancy/birth of child" 3795 3 = "Began receiving for another" 3796 4 = "Separated or divorced from" 3797 5 = "Loss of job/wages/other income" 3798 6 = "Loss of other support income" 3799 7 = "Just learned about program" 3800 8 = "Just got around to applying" 3801 9 = "Became disabled" 3802 10 = "Other, specify" 3803 ; NOTE: Format RWB1R2L has been output. 3804 VALUE RWB2R1L (default=32) 3805 -1 = "Not in universe" 3806 2 = "Pregnancy/birth of child" 3807 3 = "Began receiving for another" 3808 4 = "Separated or divorced from" 3809 5 = "Loss of job/wages/other income" 3810 6 = "Loss of other support income" 3811 7 = "Just learned about program" 3812 8 = "Just got around to applying" 3813 9 = "Became disabled" 3814 10 = "Other, specify" 3815 ; NOTE: Format RWB2R1L has been output. 3816 VALUE RWB2R2L (default=32) 3817 -1 = "Not in universe" 3818 2 = "Pregnancy/birth of child" 3819 3 = "Began receiving for another" 3820 4 = "Separated or divorced from" 3821 5 = "Loss of job/wages/other income" 3822 6 = "Loss of other support income" 3823 7 = "Just learned about program" 3824 8 = "Just got around to applying" 3825 9 = "Became disabled" 3826 10 = "Other, specify" 3827 ; 60 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format RWB2R2L has been output. 3828 VALUE RWS1L (default=32) 3829 -1 = "Not in Universe" 3830 1 = "Became ineligible because of" 3831 2 = "Because of family changes" 3832 3 = "Still eligible but could/chose" 3833 4 = "Other, specify" 3834 ; NOTE: Format RWS1L has been output. 3835 VALUE RWS2L (default=32) 3836 -1 = "Not in Universe" 3837 1 = "Became ineligible because of" 3838 2 = "Because of family changes" 3839 3 = "Still eligible but could/chose" 3840 4 = "Other, specify" 3841 ; NOTE: Format RWS2L has been output. 3842 VALUE RFB1R1L (default=32) 3843 -1 = "Not in universe" 3844 2 = "Pregnancy/birth of child" 3845 3 = "Began receiving for another" 3846 4 = "Separated or divorced from" 3847 5 = "Loss of job/wages/other income" 3848 6 = "Loss of other support income" 3849 7 = "Just learned about program" 3850 8 = "Just got around to applying" 3851 9 = "Became disabled" 3852 10 = "Other, specify" 3853 ; NOTE: Format RFB1R1L has been output. 3854 VALUE RFB1R2L (default=32) 3855 -1 = "Not in universe" 3856 2 = "Pregnancy/birth of child" 3857 3 = "Began receiving for another" 3858 4 = "Separated or divorced from" 3859 5 = "Loss of job/wages/other income" 3860 6 = "Loss of other support income" 3861 7 = "Just learned about program" 3862 8 = "Just got around to applying" 3863 9 = "Became disabled" 3864 10 = "Other, specify" 3865 ; NOTE: Format RFB1R2L has been output. 3866 VALUE RFB2R1L (default=32) 3867 -1 = "Not in universe" 3868 2 = "Pregnancy/birth of child" 3869 3 = "Began receiving for another" 3870 4 = "Separated or divorced from" 3871 5 = "Loss of job/wages/other income" 3872 6 = "Loss of other support income" 3873 7 = "Just learned about program" 3874 8 = "Just got around to applying" 3875 9 = "Became disabled" 3876 10 = "Other, specify" 3877 ; NOTE: Format RFB2R1L has been output. 3878 VALUE RFB2R2L (default=32) 3879 -1 = "Not in universe" 3880 2 = "Pregnancy/birth of child" 3881 3 = "Began receiving for another" 3882 4 = "Separated or divorced from" 3883 5 = "Loss of job/wages/other income" 3884 6 = "Loss of other support income" 3885 7 = "Just learned about program" 3886 8 = "Just got around to applying" 3887 9 = "Became disabled" 3888 10 = "Other, specify" 3889 ; NOTE: Format RFB2R2L has been output. 3890 VALUE RFS1L (default=32) 3891 -1 = "Not in Universe" 3892 1 = "Became ineligible because of" 3893 2 = "Because of family changes" 3894 3 = "Still eligible but could/chose" 3895 4 = "Other, specify" 3896 ; 61 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format RFS1L has been output. 3897 VALUE RFS2L (default=32) 3898 -1 = "Not in Universe" 3899 1 = "Became ineligible because of" 3900 2 = "Because of family changes" 3901 3 = "Still eligible but could/chose" 3902 4 = "Other, specify" 3903 ; NOTE: Format RFS2L has been output. 3904 VALUE RGB1R1L (default=32) 3905 -1 = "Not in universe" 3906 2 = "Pregnancy/birth of child" 3907 3 = "Began receiving for another" 3908 4 = "Separated or divorced from" 3909 5 = "Loss of job/wages/other income" 3910 6 = "Loss of other support income" 3911 7 = "Just learned about program" 3912 8 = "Just got around to applying" 3913 9 = "Became disabled" 3914 10 = "Other, specify" 3915 ; NOTE: Format RGB1R1L has been output. 3916 VALUE RGB1R2L (default=32) 3917 -1 = "Not in universe" 3918 2 = "Pregnancy/birth of child" 3919 3 = "Began receiving for another" 3920 4 = "Separated or divorced from" 3921 5 = "Loss of job/wages/other income" 3922 6 = "Loss of other support income" 3923 7 = "Just learned about program" 3924 8 = "Just got around to applying" 3925 9 = "Became disabled" 3926 10 = "Other, specify" 3927 ; NOTE: Format RGB1R2L has been output. 3928 VALUE RGB2R1L (default=32) 3929 -1 = "Not in universe" 3930 2 = "Pregnancy/birth of child" 3931 3 = "Began receiving for another" 3932 4 = "Separated or divorced from" 3933 5 = "Loss of job/wages/other income" 3934 6 = "Loss of other support income" 3935 7 = "Just learned about program" 3936 8 = "Just got around to applying" 3937 9 = "Became disabled" 3938 10 = "Other, specify" 3939 ; NOTE: Format RGB2R1L has been output. 3940 VALUE RGB2R2L (default=32) 3941 -1 = "Not in universe" 3942 2 = "Pregnancy/birth of child" 3943 3 = "Began receiving for another" 3944 4 = "Separated or divorced from" 3945 5 = "Loss of job/wages/other income" 3946 6 = "Loss of other support income" 3947 7 = "Just learned about program" 3948 8 = "Just got around to applying" 3949 9 = "Became disabled" 3950 10 = "Other, specify" 3951 ; NOTE: Format RGB2R2L has been output. 3952 VALUE RGS1L (default=32) 3953 -1 = "Not in Universe" 3954 1 = "Became ineligible because of" 3955 2 = "Because of family changes" 3956 3 = "Still eligible but could/chose" 3957 4 = "Other, specify" 3958 ; NOTE: Format RGS1L has been output. 3959 VALUE RGS2L (default=32) 3960 -1 = "Not in Universe" 3961 1 = "Became ineligible because of" 3962 2 = "Because of family changes" 3963 3 = "Still eligible but could/chose" 3964 4 = "Other, specify" 3965 ; 62 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format RGS2L has been output. 3966 VALUE ROB1R1L (default=32) 3967 -1 = "Not in universe" 3968 2 = "Pregnancy/birth of child" 3969 3 = "Began receiving for another" 3970 4 = "Separated or divorced from" 3971 5 = "Loss of job/wages/other income" 3972 6 = "Loss of other support income" 3973 7 = "Just learned about program" 3974 8 = "Just got around to applying" 3975 9 = "Became disabled" 3976 10 = "Other, specify" 3977 ; NOTE: Format ROB1R1L has been output. 3978 VALUE ROB1R2L (default=32) 3979 -1 = "Not in universe" 3980 2 = "Pregnancy/birth of child" 3981 3 = "Began receiving for another" 3982 4 = "Separated or divorced from" 3983 5 = "Loss of job/wages/other income" 3984 6 = "Loss of other support income" 3985 7 = "Just learned about program" 3986 8 = "Just got around to applying" 3987 9 = "Became disabled" 3988 10 = "Other, specify" 3989 ; NOTE: Format ROB1R2L has been output. 3990 VALUE ROB2R1L (default=32) 3991 -1 = "Not in universe" 3992 2 = "Pregnancy/birth of child" 3993 3 = "Began receiving for another" 3994 4 = "Separated or divorced from" 3995 5 = "Loss of job/wages/other income" 3996 6 = "Loss of other support income" 3997 7 = "Just learned about program" 3998 8 = "Just got around to applying" 3999 9 = "Became disabled" 4000 10 = "Other, specify" 4001 ; NOTE: Format ROB2R1L has been output. 4002 VALUE ROB2R2L (default=32) 4003 -1 = "Not in universe" 4004 2 = "Pregnancy/birth of child" 4005 3 = "Began receiving for another" 4006 4 = "Separated or divorced from" 4007 5 = "Loss of job/wages/other income" 4008 6 = "Loss of other support income" 4009 7 = "Just learned about program" 4010 8 = "Just got around to applying" 4011 9 = "Became disabled" 4012 10 = "Other, specify" 4013 ; NOTE: Format ROB2R2L has been output. 4014 VALUE ROS1L (default=32) 4015 -1 = "Not in Universe" 4016 1 = "Became ineligible because of" 4017 2 = "Because of family changes" 4018 3 = "Still eligible but could/chose" 4019 4 = "Other, specify" 4020 ; NOTE: Format ROS1L has been output. 4021 VALUE ROS2L (default=32) 4022 -1 = "Not in Universe" 4023 1 = "Became ineligible because of" 4024 2 = "Because of family changes" 4025 3 = "Still eligible but could/chose" 4026 4 = "Other, specify" 4027 ; NOTE: Format ROS2L has been output. 4028 VALUE RSB1R1L (default=32) 4029 -1 = "Not in universe" 4030 2 = "Became disabled/blind" 4031 3 = "Over 65" 4032 4 = "Other, specify" 4033 ; NOTE: Format RSB1R1L has been output. 63 The SAS System 11:48 Wednesday, December 4, 2002 4034 VALUE RSB1R2L (default=32) 4035 -1 = "Not in universe" 4036 2 = "Became disabled/blind" 4037 3 = "Over 65" 4038 4 = "Other, specify" 4039 ; NOTE: Format RSB1R2L has been output. 4040 VALUE RSB2R1L (default=32) 4041 -1 = "Not in universe" 4042 2 = "Became disabled/blind" 4043 3 = "Over 65" 4044 4 = "Other, specify" 4045 ; NOTE: Format RSB2R1L has been output. 4046 VALUE RSB2R2L (default=32) 4047 -1 = "Not in universe" 4048 2 = "Became disabled/blind" 4049 3 = "Over 65" 4050 4 = "Other, specify" 4051 ; NOTE: Format RSB2R2L has been output. 4052 VALUE RSS1L (default=32) 4053 -1 = "Not in Universe" 4054 1 = "Became ineligible because of" 4055 2 = "Because of family changes" 4056 3 = "Still eligible but could/chose" 4057 4 = "Other, specify" 4058 ; NOTE: Format RSS1L has been output. 4059 VALUE RSS2L (default=32) 4060 -1 = "Not in Universe" 4061 1 = "Became ineligible because of" 4062 2 = "Because of family changes" 4063 3 = "Still eligible but could/chose" 4064 4 = "Other, specify" 4065 ; NOTE: Format RSS2L has been output. 4066 VALUE EAST1A (default=32) 4067 -1 = "Not in universe" 4068 1 = "Yes" 4069 2 = "No" 4070 ; NOTE: Format EAST1A has been output. 4071 VALUE AAST1A (default=32) 4072 0 = "Not imputed" 4073 1 = "Statistical imputation (hot" 4074 2 = "Cold deck imputation" 4075 3 = "Logical imputation (derivation)" 4076 4 = "Statistical or logical" 4077 ; NOTE: Format AAST1A has been output. 4078 VALUE EAST1B (default=32) 4079 -1 = "Not in universe" 4080 1 = "Yes" 4081 2 = "No" 4082 ; NOTE: Format EAST1B has been output. 4083 VALUE AAST1B (default=32) 4084 0 = "Not imputed" 4085 1 = "Statistical imputation (hot" 4086 2 = "Cold deck imputation" 4087 3 = "Logical imputation (derivation)" 4088 4 = "Statistical or logical" 4089 ; NOTE: Format AAST1B has been output. 4090 VALUE EAST1C (default=32) 4091 -1 = "Not in universe" 4092 1 = "Yes" 4093 2 = "No" 4094 ; NOTE: Format EAST1C has been output. 4095 VALUE AAST1C (default=32) 4096 0 = "Not imputed" 4097 1 = "Statistical imputation (hot" 4098 2 = "Cold deck imputation" 4099 3 = "Logical imputation (derivation)" 64 The SAS System 11:48 Wednesday, December 4, 2002 4100 4 = "Statistical or logical" 4101 ; NOTE: Format AAST1C has been output. 4102 VALUE EAST2A (default=32) 4103 -1 = "Not in universe" 4104 1 = "Yes" 4105 2 = "No" 4106 ; NOTE: Format EAST2A has been output. 4107 VALUE AAST2A (default=32) 4108 0 = "Not imputed" 4109 1 = "Statistical imputation (hot" 4110 2 = "Cold deck imputation" 4111 3 = "Logical imputation (derivation)" 4112 4 = "Statistical or logical" 4113 ; NOTE: Format AAST2A has been output. 4114 VALUE EAST2B (default=32) 4115 -1 = "Not in universe" 4116 1 = "Yes" 4117 2 = "No" 4118 ; NOTE: Format EAST2B has been output. 4119 VALUE AAST2B (default=32) 4120 0 = "Not imputed" 4121 1 = "Statistical imputation (hot" 4122 2 = "Cold deck imputation" 4123 3 = "Logical imputation (derivation)" 4124 4 = "Statistical or logical" 4125 ; NOTE: Format AAST2B has been output. 4126 VALUE EAST2C (default=32) 4127 -1 = "Not in universe" 4128 1 = "Yes" 4129 2 = "No" 4130 ; NOTE: Format EAST2C has been output. 4131 VALUE AAST2C (default=32) 4132 0 = "Not imputed" 4133 1 = "Statistical imputation (hot" 4134 2 = "Cold deck imputation" 4135 3 = "Logical imputation (derivation)" 4136 4 = "Statistical or logical" 4137 ; NOTE: Format AAST2C has been output. 4138 VALUE EAST2D (default=32) 4139 -1 = "Not in universe" 4140 1 = "Yes" 4141 2 = "No" 4142 ; NOTE: Format EAST2D has been output. 4143 VALUE AAST2D (default=32) 4144 0 = "Not imputed" 4145 1 = "Statistical imputation (hot" 4146 2 = "Cold deck imputation" 4147 3 = "Logical imputation (derivation)" 4148 4 = "Statistical or logical" 4149 ; NOTE: Format AAST2D has been output. 4150 VALUE EAST3A (default=32) 4151 -1 = "Not in universe" 4152 1 = "Yes" 4153 2 = "No" 4154 ; NOTE: Format EAST3A has been output. 4155 VALUE AAST3A (default=32) 4156 0 = "Not imputed" 4157 1 = "Statistical imputation (hot" 4158 2 = "Cold deck imputation" 4159 3 = "Logical imputation (derivation)" 4160 4 = "Statistical or logical" 4161 ; NOTE: Format AAST3A has been output. 4162 VALUE EAST3B (default=32) 4163 -1 = "Not in universe" 4164 1 = "Yes" 65 The SAS System 11:48 Wednesday, December 4, 2002 4165 2 = "No" 4166 ; NOTE: Format EAST3B has been output. 4167 VALUE AAST3B (default=32) 4168 0 = "Not imputed" 4169 1 = "Statistical imputation (hot" 4170 2 = "Cold deck imputation" 4171 3 = "Logical imputation (derivation)" 4172 4 = "Statistical or logical" 4173 ; NOTE: Format AAST3B has been output. 4174 VALUE EAST3C (default=32) 4175 -1 = "Not in universe" 4176 1 = "Yes" 4177 2 = "No" 4178 ; NOTE: Format EAST3C has been output. 4179 VALUE AAST3C (default=32) 4180 0 = "Not imputed" 4181 1 = "Statistical imputation (hot" 4182 2 = "Cold deck imputation" 4183 3 = "Logical imputation (derivation)" 4184 4 = "Statistical or logical" 4185 ; NOTE: Format AAST3C has been output. 4186 VALUE EAST3D (default=32) 4187 -1 = "Not in universe" 4188 1 = "Yes" 4189 2 = "No" 4190 ; NOTE: Format EAST3D has been output. 4191 VALUE AAST3D (default=32) 4192 0 = "Not imputed" 4193 1 = "Statistical imputation (hot" 4194 2 = "Cold deck imputation" 4195 3 = "Logical imputation (derivation)" 4196 4 = "Statistical or logical" 4197 ; NOTE: Format AAST3D has been output. 4198 VALUE EAST3E (default=32) 4199 -1 = "Not in universe" 4200 1 = "Yes" 4201 2 = "No" 4202 ; NOTE: Format EAST3E has been output. 4203 VALUE AAST3E (default=32) 4204 0 = "Not imputed" 4205 1 = "Statistical imputation (hot" 4206 2 = "Cold deck imputation" 4207 3 = "Logical imputation (derivation)" 4208 4 = "Statistical or logical" 4209 ; NOTE: Format AAST3E has been output. 4210 VALUE EAST4A (default=32) 4211 -1 = "Not in universe" 4212 1 = "Yes" 4213 2 = "No" 4214 ; NOTE: Format EAST4A has been output. 4215 VALUE AAST4A (default=32) 4216 0 = "Not imputed" 4217 1 = "Statistical imputation (hot" 4218 2 = "Cold deck imputation" 4219 3 = "Logical imputation (derivation)" 4220 4 = "Statistical or logical" 4221 ; NOTE: Format AAST4A has been output. 4222 VALUE EAST4B (default=32) 4223 -1 = "Not in universe" 4224 1 = "Yes" 4225 2 = "No" 4226 ; NOTE: Format EAST4B has been output. 4227 VALUE AAST4B (default=32) 4228 0 = "Not imputed" 4229 1 = "Statistical imputation (hot" 66 The SAS System 11:48 Wednesday, December 4, 2002 4230 2 = "Cold deck imputation" 4231 3 = "Logical imputation (derivation)" 4232 4 = "Statistical or logical" 4233 ; NOTE: Format AAST4B has been output. 4234 VALUE EAST4C (default=32) 4235 -1 = "Not in universe" 4236 1 = "Yes" 4237 2 = "No" 4238 ; NOTE: Format EAST4C has been output. 4239 VALUE AAST4C (default=32) 4240 0 = "Not imputed" 4241 1 = "Statistical imputation (hot" 4242 2 = "Cold deck imputation" 4243 3 = "Logical imputation (derivation)" 4244 4 = "Statistical or logical" 4245 ; NOTE: Format AAST4C has been output. 4246 VALUE EJNTRNT (default=32) 4247 -1 = "Not in universe" 4248 1 = "Yes" 4249 2 = "No" 4250 ; NOTE: Format EJNTRNT has been output. 4251 VALUE AJNTRNT (default=32) 4252 0 = "Not imputed" 4253 1 = "Statistical imputation (hot" 4254 2 = "Cold deck imputation" 4255 3 = "Logical imputation (derivation)" 4256 4 = "Statistical or logical" 4257 ; NOTE: Format AJNTRNT has been output. 4258 VALUE TJARNT (default=32) 4259 0 = "None or not in universe" 4260 ; NOTE: Format TJARNT has been output. 4261 VALUE AJARNT (default=32) 4262 0 = "Not imputed" 4263 1 = "Statistical imputation (hot" 4264 2 = "Cold deck imputation" 4265 3 = "Logical imputation (derivation)" 4266 4 = "Statistical or logical" 4267 ; NOTE: Format AJARNT has been output. 4268 VALUE TJACLR (default=32) 4269 0 = "None or not in universe" 4270 ; NOTE: Format TJACLR has been output. 4271 VALUE AJACLR (default=32) 4272 0 = "Not imputed" 4273 1 = "Statistical imputation (hot" 4274 2 = "Cold deck imputation" 4275 3 = "Logical imputation (derivation)" 4276 4 = "Statistical or logical" 4277 ; NOTE: Format AJACLR has been output. 4278 VALUE EOWNRNT (default=32) 4279 -1 = "Not in universe" 4280 1 = "Yes" 4281 2 = "No" 4282 ; NOTE: Format EOWNRNT has been output. 4283 VALUE AOWNRNT (default=32) 4284 0 = "Not imputed" 4285 1 = "Statistical imputation (hot" 4286 2 = "Cold deck imputation" 4287 3 = "Logical imputation (derivation)" 4288 4 = "Statistical or logical" 4289 ; NOTE: Format AOWNRNT has been output. 4290 VALUE TOARNT (default=32) 4291 0 = "None or not in universe" 4292 ; NOTE: Format TOARNT has been output. 4293 VALUE AOARNT (default=32) 67 The SAS System 11:48 Wednesday, December 4, 2002 4294 0 = "Not imputed" 4295 1 = "Statistical imputation (hot" 4296 2 = "Cold deck imputation" 4297 3 = "Logical imputation (derivation)" 4298 4 = "Statistical or logical" 4299 ; NOTE: Format AOARNT has been output. 4300 VALUE TOACLR (default=32) 4301 0 = "None or not in universe" 4302 ; NOTE: Format TOACLR has been output. 4303 VALUE AOACLR (default=32) 4304 0 = "Not imputed" 4305 1 = "Statistical imputation (hot" 4306 2 = "Cold deck imputation" 4307 3 = "Logical imputation (derivation)" 4308 4 = "Statistical or logical" 4309 ; NOTE: Format AOACLR has been output. 4310 VALUE EJRNT2L (default=32) 4311 -1 = "Not universe" 4312 1 = "Yes" 4313 2 = "No" 4314 ; NOTE: Format EJRNT2L has been output. 4315 VALUE AJRNT2L (default=32) 4316 0 = "Not imputed" 4317 1 = "Statistical imputation (hot" 4318 2 = "Cold deck imputation" 4319 3 = "Logical imputation (derivation)" 4320 4 = "Statistical or logical" 4321 ; NOTE: Format AJRNT2L has been output. 4322 VALUE TJACLR2L (default=32) 4323 0 = "None or not in universe" 4324 ; NOTE: Format TJACLR2L has been output. 4325 VALUE AJACLR2L (default=32) 4326 0 = "Not imputed" 4327 1 = "Statistical imputation (hot" 4328 2 = "Cold deck imputation" 4329 3 = "Logical imputation (derivation)" 4330 4 = "Statistical or logical" 4331 ; NOTE: Format AJACLR2L has been output. 4332 VALUE EMRTJNT (default=32) 4333 -1 = "Not universe" 4334 1 = "Yes" 4335 2 = "No" 4336 ; NOTE: Format EMRTJNT has been output. 4337 VALUE AMRTJNT (default=32) 4338 0 = "Not imputed" 4339 1 = "Statistical imputation (hot" 4340 2 = "Cold deck imputation" 4341 3 = "Logical imputation (derivation)" 4342 4 = "Statistical or logical" 4343 ; NOTE: Format AMRTJNT has been output. 4344 VALUE TMIJNT (default=32) 4345 0 = "None or not in universe" 4346 ; NOTE: Format TMIJNT has been output. 4347 VALUE AMIJNT (default=32) 4348 0 = "Not imputed" 4349 1 = "Statistical imputation (hot" 4350 2 = "Cold deck imputation" 4351 3 = "Logical imputation (derivation)" 4352 4 = "Statistical or logical" 4353 ; NOTE: Format AMIJNT has been output. 4354 VALUE EMRTOWN (default=32) 4355 -1 = "Not universe" 4356 1 = "Yes" 4357 2 = "No" 4358 ; 68 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format EMRTOWN has been output. 4359 VALUE AMRTOWN (default=32) 4360 0 = "Not imputed" 4361 1 = "Statistical imputation (hot" 4362 2 = "Cold deck imputation" 4363 3 = "Logical imputation (derivation)" 4364 4 = "Statistical or logical" 4365 ; NOTE: Format AMRTOWN has been output. 4366 VALUE TMIOWN (default=32) 4367 0 = "None or not in universe" 4368 ; NOTE: Format TMIOWN has been output. 4369 VALUE AMIOWN (default=32) 4370 0 = "Not imputed" 4371 1 = "Statistical imputation (hot" 4372 2 = "Cold deck imputation" 4373 3 = "Logical imputation (derivation)" 4374 4 = "Statistical or logical" 4375 ; NOTE: Format AMIOWN has been output. 4376 VALUE TRNDUP1L (default=32) 4377 0 = "None or not in universe" 4378 ; NOTE: Format TRNDUP1L has been output. 4379 VALUE ARNDUP1L (default=32) 4380 0 = "Not imputed" 4381 1 = "Statistical imputation (hot" 4382 2 = "Cold deck imputation" 4383 3 = "Logical imputation (derivation)" 4384 4 = "Statistical or logical" 4385 ; NOTE: Format ARNDUP1L has been output. 4386 VALUE TRNDUP2L (default=32) 4387 0 = "None or not in universe" 4388 ; NOTE: Format TRNDUP2L has been output. 4389 VALUE ARNDUP2L (default=32) 4390 0 = "Not imputed" 4391 1 = "Statistical imputation (hot" 4392 2 = "Cold deck imputation" 4393 3 = "Logical imputation (derivation)" 4394 4 = "Statistical or logical" 4395 ; NOTE: Format ARNDUP2L has been output. 4396 VALUE TOTHPROP (default=32) 4397 0 = "None or not in universe" 4398 ; NOTE: Format TOTHPROP has been output. 4399 VALUE ECKJT (default=32) 4400 -1 = "Not in universe" 4401 1 = "Yes" 4402 2 = "No" 4403 ; NOTE: Format ECKJT has been output. 4404 VALUE ACKJT (default=32) 4405 0 = "Not imputed" 4406 1 = "Statistical imputation (hot" 4407 2 = "Cold deck imputation" 4408 3 = "Logical imputation (derivation)" 4409 4 = "Statistical or logical" 4410 ; NOTE: Format ACKJT has been output. 4411 VALUE TCKJTINT (default=32) 4412 0 = "None or not in universe" 4413 ; NOTE: Format TCKJTINT has been output. 4414 VALUE ACKJTINT (default=32) 4415 0 = "Not imputed" 4416 1 = "Statistical imputation (hot" 4417 2 = "Cold deck imputation" 4418 3 = "Logical imputation (derivation)" 4419 4 = "Statistical or logical" 4420 ; NOTE: Format ACKJTINT has been output. 4421 VALUE ECKOAST (default=32) 69 The SAS System 11:48 Wednesday, December 4, 2002 4422 -1 = "Not in universe" 4423 1 = "Yes" 4424 2 = "No" 4425 ; NOTE: Format ECKOAST has been output. 4426 VALUE ACKOAST (default=32) 4427 0 = "Not imputed" 4428 1 = "Statistical imputation (hot" 4429 2 = "Cold deck imputation" 4430 3 = "Logical imputation (derivation)" 4431 4 = "Statistical or logical" 4432 ; NOTE: Format ACKOAST has been output. 4433 VALUE TCKOINT (default=32) 4434 0 = "None or not in universe" 4435 ; NOTE: Format TCKOINT has been output. 4436 VALUE ACKOINT (default=32) 4437 0 = "Not imputed" 4438 1 = "Statistical imputation (hot" 4439 2 = "Cold deck imputation" 4440 3 = "Logical imputation (derivation)" 4441 4 = "Statistical or logical" 4442 ; NOTE: Format ACKOINT has been output. 4443 VALUE ESVJT (default=32) 4444 -1 = "Not in universe" 4445 1 = "Yes" 4446 2 = "No" 4447 ; NOTE: Format ESVJT has been output. 4448 VALUE ASVJT (default=32) 4449 0 = "Not imputed" 4450 1 = "Statistical imputation (hot" 4451 2 = "Cold deck imputation" 4452 3 = "Logical imputation (derivation)" 4453 4 = "Statistical or logical" 4454 ; NOTE: Format ASVJT has been output. 4455 VALUE TSVJTINT (default=32) 4456 0 = "None or not in universe" 4457 ; NOTE: Format TSVJTINT has been output. 4458 VALUE ASVJTINT (default=32) 4459 0 = "Not imputed" 4460 1 = "Statistical imputation (hot" 4461 2 = "Cold deck imputation" 4462 3 = "Logical imputation (derivation)" 4463 4 = "Statistical or logical" 4464 ; NOTE: Format ASVJTINT has been output. 4465 VALUE ESVOAST (default=32) 4466 -1 = "Not in universe" 4467 1 = "Yes" 4468 2 = "No" 4469 ; NOTE: Format ESVOAST has been output. 4470 VALUE ASVOAST (default=32) 4471 0 = "Not imputed" 4472 1 = "Statistical imputation (hot" 4473 2 = "Cold deck imputation" 4474 3 = "Logical imputation (derivation)" 4475 4 = "Statistical or logical" 4476 ; NOTE: Format ASVOAST has been output. 4477 VALUE TSVOINT (default=32) 4478 0 = "None or not in universe" 4479 ; NOTE: Format TSVOINT has been output. 4480 VALUE ASVOINT (default=32) 4481 0 = "Not imputed" 4482 1 = "Statistical imputation (hot" 4483 2 = "Cold deck imputation" 4484 3 = "Logical imputation (derivation)" 4485 4 = "Statistical or logical" 4486 ; 70 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format ASVOINT has been output. 4487 VALUE EMDJT (default=32) 4488 -1 = "Not in universe" 4489 1 = "Yes" 4490 2 = "No" 4491 ; NOTE: Format EMDJT has been output. 4492 VALUE AMDJT (default=32) 4493 0 = "Not imputed" 4494 1 = "Statistical imputation (hot" 4495 2 = "Cold deck imputation" 4496 3 = "Logical imputation (derivation)" 4497 4 = "Statistical or logical" 4498 ; NOTE: Format AMDJT has been output. 4499 VALUE TMDJTINT (default=32) 4500 0 = "None or not in universe" 4501 ; NOTE: Format TMDJTINT has been output. 4502 VALUE AMDJTINT (default=32) 4503 0 = "Not imputed" 4504 1 = "Statistical imputation (hot" 4505 2 = "Cold deck imputation" 4506 3 = "Logical imputation (derivation)" 4507 4 = "Statistical or logical" 4508 ; NOTE: Format AMDJTINT has been output. 4509 VALUE EMDOAST (default=32) 4510 -1 = "Not in universe" 4511 1 = "Yes" 4512 2 = "No" 4513 ; NOTE: Format EMDOAST has been output. 4514 VALUE AMDOAST (default=32) 4515 0 = "Not imputed" 4516 1 = "Statistical imputation (hot" 4517 2 = "Cold deck imputation" 4518 3 = "Logical imputation (derivation)" 4519 4 = "Statistical or logical" 4520 ; NOTE: Format AMDOAST has been output. 4521 VALUE TMDOINT (default=32) 4522 0 = "None or not in universe" 4523 ; NOTE: Format TMDOINT has been output. 4524 VALUE AMDOINT (default=32) 4525 0 = "Not imputed" 4526 1 = "Statistical imputation (hot" 4527 2 = "Cold deck imputation" 4528 3 = "Logical imputation (derivation)" 4529 4 = "Statistical or logical" 4530 ; NOTE: Format AMDOINT has been output. 4531 VALUE ECDJT (default=32) 4532 -1 = "Not in universe" 4533 1 = "Yes" 4534 2 = "No" 4535 ; NOTE: Format ECDJT has been output. 4536 VALUE ACDJT (default=32) 4537 0 = "Not imputed" 4538 1 = "Statistical imputation (hot" 4539 2 = "Cold deck imputation" 4540 3 = "Logical imputation (derivation)" 4541 4 = "Statistical or logical" 4542 ; NOTE: Format ACDJT has been output. 4543 VALUE TCDJTINT (default=32) 4544 0 = "None or not in universe" 4545 ; NOTE: Format TCDJTINT has been output. 4546 VALUE ACDJTINT (default=32) 4547 0 = "Not imputed" 4548 1 = "Statistical imputation (hot" 4549 2 = "Cold deck imputation" 4550 3 = "Logical imputation (derivation)" 71 The SAS System 11:48 Wednesday, December 4, 2002 4551 4 = "Statistical or logical" 4552 ; NOTE: Format ACDJTINT has been output. 4553 VALUE ECDOAST (default=32) 4554 -1 = "Not in universe" 4555 1 = "Yes" 4556 2 = "No" 4557 ; NOTE: Format ECDOAST has been output. 4558 VALUE ACDOAST (default=32) 4559 0 = "Not imputed" 4560 1 = "Statistical imputation (hot" 4561 2 = "Cold deck imputation" 4562 3 = "Logical imputation (derivation)" 4563 4 = "Statistical or logical" 4564 ; NOTE: Format ACDOAST has been output. 4565 VALUE TCDOINT (default=32) 4566 0 = "None or not in universe" 4567 ; NOTE: Format TCDOINT has been output. 4568 VALUE ACDOINT (default=32) 4569 0 = "Not imputed" 4570 1 = "Statistical imputation (hot" 4571 2 = "Cold deck imputation" 4572 3 = "Logical imputation (derivation)" 4573 4 = "Statistical or logical" 4574 ; NOTE: Format ACDOINT has been output. 4575 VALUE EBDJT (default=32) 4576 -1 = "Not in universe" 4577 1 = "Yes" 4578 2 = "No" 4579 ; NOTE: Format EBDJT has been output. 4580 VALUE ABDJT (default=32) 4581 0 = "Not imputed" 4582 1 = "Statistical imputation (hot" 4583 2 = "Cold deck imputation" 4584 3 = "Logical imputation (derivation)" 4585 4 = "Statistical or logical" 4586 ; NOTE: Format ABDJT has been output. 4587 VALUE TBDJTINT (default=32) 4588 0 = "None or not in universe" 4589 ; NOTE: Format TBDJTINT has been output. 4590 VALUE ABDJTINT (default=32) 4591 0 = "Not imputed" 4592 1 = "Statistical imputation (hot" 4593 2 = "Cold deck imputation" 4594 3 = "Logical imputation (derivation)" 4595 4 = "Statistical or logical" 4596 ; NOTE: Format ABDJTINT has been output. 4597 VALUE EBDOAST (default=32) 4598 -1 = "Not in universe" 4599 1 = "Yes" 4600 2 = "No" 4601 ; NOTE: Format EBDOAST has been output. 4602 VALUE ABDOAST (default=32) 4603 0 = "Not imputed" 4604 1 = "Statistical imputation (hot" 4605 2 = "Cold deck imputation" 4606 3 = "Logical imputation (derivation)" 4607 4 = "Statistical or logical" 4608 ; NOTE: Format ABDOAST has been output. 4609 VALUE TBDOINT (default=32) 4610 0 = "None or not in universe" 4611 ; NOTE: Format TBDOINT has been output. 4612 VALUE ABDOINT (default=32) 4613 0 = "Not imputed" 4614 1 = "Statistical imputation (hot" 72 The SAS System 11:48 Wednesday, December 4, 2002 4615 2 = "Cold deck imputation" 4616 3 = "Logical imputation (derivation)" 4617 4 = "Statistical or logical" 4618 ; NOTE: Format ABDOINT has been output. 4619 VALUE EGVJT (default=32) 4620 -1 = "Not in universe" 4621 1 = "Yes" 4622 2 = "No" 4623 ; NOTE: Format EGVJT has been output. 4624 VALUE AGVJT (default=32) 4625 0 = "Not imputed" 4626 1 = "Statistical imputation (hot" 4627 2 = "Cold deck imputation" 4628 3 = "Logical imputation (derivation)" 4629 4 = "Statistical or logical" 4630 ; NOTE: Format AGVJT has been output. 4631 VALUE TGVJTINT (default=32) 4632 0 = "None or not in universe" 4633 ; NOTE: Format TGVJTINT has been output. 4634 VALUE AGVJTINT (default=32) 4635 0 = "Not imputed" 4636 1 = "Statistical imputation (hot" 4637 2 = "Cold deck imputation" 4638 3 = "Logical imputation (derivation)" 4639 4 = "Statistical or logical" 4640 ; NOTE: Format AGVJTINT has been output. 4641 VALUE EGVOAST (default=32) 4642 -1 = "Not in universe" 4643 1 = "Yes" 4644 2 = "No" 4645 ; NOTE: Format EGVOAST has been output. 4646 VALUE AGVOAST (default=32) 4647 0 = "Not imputed" 4648 1 = "Statistical imputation (hot" 4649 2 = "Cold deck imputation" 4650 3 = "Logical imputation (derivation)" 4651 4 = "Statistical or logical" 4652 ; NOTE: Format AGVOAST has been output. 4653 VALUE TGVOINT (default=32) 4654 0 = "None or not in universe" 4655 ; NOTE: Format TGVOINT has been output. 4656 VALUE AGVOINT (default=32) 4657 0 = "Not imputed" 4658 1 = "Statistical imputation (hot" 4659 2 = "Cold deck imputation" 4660 3 = "Logical imputation (derivation)" 4661 4 = "Statistical or logical" 4662 ; NOTE: Format AGVOINT has been output. 4663 VALUE TINTINC (default=32) 4664 0 = "None or not in univerese" 4665 ; NOTE: Format TINTINC has been output. 4666 VALUE EMANYCHK (default=32) 4667 -1 = "Not in universe" 4668 1 = "Yes" 4669 2 = "No" 4670 ; NOTE: Format EMANYCHK has been output. 4671 VALUE AMANYCHK (default=32) 4672 0 = "Not imputed" 4673 1 = "Statistical imputation (hot" 4674 2 = "Cold deck imputation" 4675 3 = "Logical imputation (derivation)" 4676 4 = "Statistical or logical" 4677 ; NOTE: Format AMANYCHK has been output. 4678 VALUE TMJNTDIV (default=32) 73 The SAS System 11:48 Wednesday, December 4, 2002 4679 0 = "None or not in universe" 4680 ; NOTE: Format TMJNTDIV has been output. 4681 VALUE AMJNTDIV (default=32) 4682 0 = "Not imputed" 4683 1 = "Statistical imputation (hot" 4684 2 = "Cold deck imputation" 4685 3 = "Logical imputation (derivation)" 4686 4 = "Statistical or logical" 4687 ; NOTE: Format AMJNTDIV has been output. 4688 VALUE TMOWNDIV (default=32) 4689 0 = "None or not in universe" 4690 ; NOTE: Format TMOWNDIV has been output. 4691 VALUE AMOWNDIV (default=32) 4692 0 = "Not imputed" 4693 1 = "Statistical imputation (hot" 4694 2 = "Cold deck imputation" 4695 3 = "Logical imputation (derivation)" 4696 4 = "Statistical or logical" 4697 ; NOTE: Format AMOWNDIV has been output. 4698 VALUE EMOTHDIV (default=32) 4699 -1 = "Not in universe" 4700 1 = "Yes" 4701 2 = "No" 4702 ; NOTE: Format EMOTHDIV has been output. 4703 VALUE AMOTHDIV (default=32) 4704 0 = "Not imputed" 4705 1 = "Statistical imputation (hot" 4706 2 = "Cold deck imputation" 4707 3 = "Logical imputation (derivation)" 4708 4 = "Statistical or logical" 4709 ; NOTE: Format AMOTHDIV has been output. 4710 VALUE TMJADIV (default=32) 4711 0 = "None or not in universe" 4712 ; NOTE: Format TMJADIV has been output. 4713 VALUE AMJADIV (default=32) 4714 0 = "Not imputed" 4715 1 = "Statistical imputation (hot" 4716 2 = "Cold deck imputation" 4717 3 = "Logical imputation (derivation)" 4718 4 = "Statistical or logical" 4719 ; NOTE: Format AMJADIV has been output. 4720 VALUE TMOWNADV (default=32) 4721 0 = "None or not in universe" 4722 ; NOTE: Format TMOWNADV has been output. 4723 VALUE AMOWNADV (default=32) 4724 0 = "Not imputed" 4725 1 = "Statistical imputation (hot" 4726 2 = "Cold deck imputation" 4727 3 = "Logical imputation (derivation)" 4728 4 = "Statistical or logical" 4729 ; NOTE: Format AMOWNADV has been output. 4730 VALUE ESANYCHK (default=32) 4731 -1 = "Not in universe" 4732 1 = "Yes" 4733 2 = "No" 4734 ; NOTE: Format ESANYCHK has been output. 4735 VALUE ASANYCHK (default=32) 4736 0 = "Not imputed" 4737 1 = "Statistical imputation (hot" 4738 2 = "Cold deck imputation" 4739 3 = "Logical imputation (derivation)" 4740 4 = "Statistical or logical" 4741 ; NOTE: Format ASANYCHK has been output. 4742 VALUE TSJNTDIV (default=32) 74 The SAS System 11:48 Wednesday, December 4, 2002 4743 0 = "None or not in universe" 4744 ; NOTE: Format TSJNTDIV has been output. 4745 VALUE ASJNTDIV (default=32) 4746 0 = "Not imputed" 4747 1 = "Statistical imputation (hot" 4748 2 = "Cold deck imputation" 4749 3 = "Logical imputation (derivation)" 4750 4 = "Statistical or logical" 4751 ; NOTE: Format ASJNTDIV has been output. 4752 VALUE TSOWNDIV (default=32) 4753 0 = "None or not in universe" 4754 ; NOTE: Format TSOWNDIV has been output. 4755 VALUE ASOWNDIV (default=32) 4756 0 = "Not imputed" 4757 1 = "Statistical imputation (hot" 4758 2 = "Cold deck imputation" 4759 3 = "Logical imputation (derivation)" 4760 4 = "Statistical or logical" 4761 ; NOTE: Format ASOWNDIV has been output. 4762 VALUE ESOTHDIV (default=32) 4763 -1 = "Not in universe" 4764 1 = "Yes" 4765 2 = "No" 4766 ; NOTE: Format ESOTHDIV has been output. 4767 VALUE ASOTHDIV (default=32) 4768 0 = "Not imputed" 4769 1 = "Statistical imputation (hot" 4770 2 = "Cold deck imputation" 4771 3 = "Logical imputation (derivation)" 4772 4 = "Statistical or logical" 4773 ; NOTE: Format ASOTHDIV has been output. 4774 VALUE TSJADIV (default=32) 4775 0 = "None or not in universe" 4776 ; NOTE: Format TSJADIV has been output. 4777 VALUE ASJADIV (default=32) 4778 0 = "Not imputed" 4779 1 = "Statistical imputation (hot" 4780 2 = "Cold deck imputation" 4781 3 = "Logical imputation (derivation)" 4782 4 = "Statistical or logical" 4783 ; NOTE: Format ASJADIV has been output. 4784 VALUE TSOWNADV (default=32) 4785 0 = "None or not in universe" 4786 ; NOTE: Format TSOWNADV has been output. 4787 VALUE ASOWNADV (default=32) 4788 0 = "Not imputed" 4789 1 = "Statistical imputation (hot" 4790 2 = "Cold deck imputation" 4791 3 = "Logical imputation (derivation)" 4792 4 = "Statistical or logical" 4793 ; NOTE: Format ASOWNADV has been output. 4794 VALUE TDIVINC (default=32) 4795 0 = "None or not in universe" 4796 ; NOTE: Format TDIVINC has been output. 4797 VALUE ECRMTH (default=32) 4798 -1 = "Not in universe" 4799 1 = "Yes, covered" 4800 2 = "No, not covered" 4801 ; NOTE: Format ECRMTH has been output. 4802 VALUE ACRMTH (default=32) 4803 0 = "Not imputed" 4804 1 = "Statistical imputation (hot" 4805 2 = "Cold deck imputation" 4806 3 = "Logical imputation (derivation)" 75 The SAS System 11:48 Wednesday, December 4, 2002 4807 4 = "Statistical or logical" 4808 ; NOTE: Format ACRMTH has been output. 4809 VALUE RMEDCODE (default=32) 4810 -1 = "Not in universe" 4811 1 = "Retired or disabled worker" 4812 2 = "Spouse of retired or disabled" 4813 3 = "Widow of retired or disabled" 4814 4 = "Adult disabled as a child" 4815 5 = "Uninsured" 4816 7 = "Other or invalid code" 4817 9 = "Missing code" 4818 ; NOTE: Format RMEDCODE has been output. 4819 VALUE ECDMTH (default=32) 4820 1 = "Yes, covered" 4821 2 = "No, not covered" 4822 ; NOTE: Format ECDMTH has been output. 4823 VALUE ACDMTH (default=32) 4824 0 = "Not imputed" 4825 1 = "Statistical imputation (hot" 4826 2 = "Cold deck imputation" 4827 3 = "Logical imputation (derivation)" 4828 4 = "Statistical or logical" 4829 ; NOTE: Format ACDMTH has been output. 4830 VALUE ECDUNT1L (default=32) 4831 -1 = "Not in universe" 4832 ; NOTE: Format ECDUNT1L has been output. 4833 VALUE ECDUNT2L (default=32) 4834 -1 = "Not in universe" 4835 ; NOTE: Format ECDUNT2L has been output. 4836 VALUE ECDUNT3L (default=32) 4837 -1 = "Not in universe" 4838 ; NOTE: Format ECDUNT3L has been output. 4839 VALUE EHIMTH (default=32) 4840 1 = "Yes, covered" 4841 2 = "No, not covered" 4842 ; NOTE: Format EHIMTH has been output. 4843 VALUE AHIMTH (default=32) 4844 0 = "Not imputed" 4845 1 = "Statistical imputation (hot" 4846 2 = "Cold deck imputation" 4847 3 = "Logical imputation (derivation)" 4848 4 = "Statistical or logical" 4849 ; NOTE: Format AHIMTH has been output. 4850 VALUE EHIOWNER (default=32) 4851 1 = "Covered in own name" 4852 2 = "Covered by someone else's plan" 4853 3 = "Covered both in own name and by" 4854 4 = "Not covered" 4855 ; NOTE: Format EHIOWNER has been output. 4856 VALUE AHIOWNER (default=32) 4857 0 = "Not imputed" 4858 1 = "Statistical imputation (hot" 4859 2 = "Cold deck imputation" 4860 3 = "Logical imputation (derivation)" 4861 4 = "Statistical or logical" 4862 ; NOTE: Format AHIOWNER has been output. 4863 VALUE ENONHH (default=32) 4864 1 = "Yes" 4865 2 = "No" 4866 ; NOTE: Format ENONHH has been output. 4867 VALUE RCHAMPM (default=32) 4868 -1 = "Not in universe" 4869 1 = "Yes, covered" 4870 ; 76 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format RCHAMPM has been output. 4871 VALUE EHIUNT1L (default=32) 4872 -1 = "Not in universe" 4873 ; NOTE: Format EHIUNT1L has been output. 4874 VALUE EHIUNT2L (default=32) 4875 -1 = "Not in universe" 4876 ; NOTE: Format EHIUNT2L has been output. 4877 VALUE EHIUNT3L (default=32) 4878 -1 = "Not in universe" 4879 ; NOTE: Format EHIUNT3L has been output. 4880 VALUE EHEMPLY (default=32) 4881 -1 = "Not in universe" 4882 1 = "Current employer or work" 4883 2 = "Former employer" 4884 3 = "Union" 4885 4 = "CHAMPUS" 4886 5 = "CHAMPVA" 4887 6 = "Military/VA health care" 4888 7 = "Other" 4889 ; NOTE: Format EHEMPLY has been output. 4890 VALUE AHEMPLY (default=32) 4891 0 = "Not imputed" 4892 1 = "Statistical imputation (hot" 4893 2 = "Cold deck imputation" 4894 3 = "Logical imputation (derivation)" 4895 4 = "Statistical or logical" 4896 ; NOTE: Format AHEMPLY has been output. 4897 VALUE EHICOST (default=32) 4898 -1 = "Not in universe" 4899 1 = "All" 4900 2 = "Part" 4901 3 = "None" 4902 ; NOTE: Format EHICOST has been output. 4903 VALUE AHICOST (default=32) 4904 0 = "Not imputed" 4905 1 = "Statistical imputation (hot" 4906 2 = "Cold deck imputation" 4907 3 = "Logical imputation (derivation)" 4908 4 = "Statistical or logical" 4909 ; NOTE: Format AHICOST has been output. 4910 VALUE EHIOTHER (default=32) 4911 -1 = "Not in universe" 4912 1 = "Yes" 4913 2 = "No" 4914 ; NOTE: Format EHIOTHER has been output. 4915 VALUE AHIOTHER (default=32) 4916 0 = "Not imputed" 4917 1 = "Statistical imputation (hot" 4918 2 = "Cold deck imputation" 4919 3 = "Logical imputation (derivation)" 4920 4 = "Statistical or logical" 4921 ; NOTE: Format AHIOTHER has been output. 4922 VALUE EHISPSE (default=32) 4923 -1 = "Not in universe" 4924 1 = "Yes, covered" 4925 2 = "No, not covered" 4926 ; NOTE: Format EHISPSE has been output. 4927 VALUE AHISPSE (default=32) 4928 0 = "Not imputed" 4929 1 = "Statistical imputation (hot" 4930 2 = "Cold deck imputation" 4931 3 = "Logical imputation (derivation)" 4932 4 = "Statistical or logical" 4933 ; NOTE: Format AHISPSE has been output. 4934 VALUE EHIOLDKD (default=32) 77 The SAS System 11:48 Wednesday, December 4, 2002 4935 -1 = "Not in universe" 4936 1 = "Yes, covered" 4937 2 = "No, not covered" 4938 ; NOTE: Format EHIOLDKD has been output. 4939 VALUE AHIOLDKD (default=32) 4940 0 = "Not imputed" 4941 1 = "Statistical imputation (hot" 4942 2 = "Cold deck imputation" 4943 3 = "Logical imputation (derivation)" 4944 4 = "Statistical or logical" 4945 ; NOTE: Format AHIOLDKD has been output. 4946 VALUE EHIYNGKD (default=32) 4947 -1 = "Not in universe" 4948 1 = "Yes, covered" 4949 2 = "No, not covered" 4950 ; NOTE: Format EHIYNGKD has been output. 4951 VALUE AHIYNGKD (default=32) 4952 0 = "Not imputed" 4953 1 = "Statistical imputation (hot" 4954 2 = "Cold deck imputation" 4955 3 = "Logical imputation (derivation)" 4956 4 = "Statistical or logical" 4957 ; NOTE: Format AHIYNGKD has been output. 4958 VALUE EHIOTHR (default=32) 4959 -1 = "Not in universe" 4960 1 = "Yes, covered" 4961 2 = "No, not covered" 4962 ; NOTE: Format EHIOTHR has been output. 4963 VALUE AHIOTHR (default=32) 4964 0 = "Not imputed" 4965 1 = "Statistical imputation (hot" 4966 2 = "Cold deck imputation" 4967 3 = "Logical imputation (derivation)" 4968 4 = "Statistical or logical" 4969 ; NOTE: Format AHIOTHR has been output. 4970 VALUE EHIRSN0A (default=32) 4971 -1 = "Not in universe" 4972 1 = "Yes" 4973 2 = "No" 4974 ; NOTE: Format EHIRSN0A has been output. 4975 VALUE EHIRSN0B (default=32) 4976 -1 = "Not in universe" 4977 1 = "Yes" 4978 2 = "No" 4979 ; NOTE: Format EHIRSN0B has been output. 4980 VALUE EHIRSN0C (default=32) 4981 -1 = "Not in universe" 4982 1 = "Yes" 4983 2 = "No" 4984 ; NOTE: Format EHIRSN0C has been output. 4985 VALUE EHIRSN0D (default=32) 4986 -1 = "Not in universe" 4987 1 = "Yes" 4988 2 = "No" 4989 ; NOTE: Format EHIRSN0D has been output. 4990 VALUE EHIRSN0E (default=32) 4991 -1 = "Not in universe" 4992 1 = "Yes" 4993 2 = "No" 4994 ; NOTE: Format EHIRSN0E has been output. 4995 VALUE EHIRSN0F (default=32) 4996 -1 = "Not in universe" 4997 1 = "Yes" 4998 2 = "No" 4999 ; 78 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: Format EHIRSN0F has been output. 5000 VALUE EHIRSN0G (default=32) 5001 -1 = "Not in universe" 5002 1 = "Yes" 5003 2 = "No" 5004 ; NOTE: Format EHIRSN0G has been output. 5005 VALUE EHIRSN0H (default=32) 5006 -1 = "Not in universe" 5007 1 = "Yes" 5008 2 = "No" 5009 ; NOTE: Format EHIRSN0H has been output. 5010 VALUE EHIRSN0I (default=32) 5011 -1 = "Not in universe" 5012 1 = "Yes" 5013 2 = "No" 5014 ; NOTE: Format EHIRSN0I has been output. 5015 VALUE EHIRSN1J (default=32) 5016 -1 = "Not in universe" 5017 1 = "Yes" 5018 2 = "No" 5019 ; NOTE: Format EHIRSN1J has been output. 5020 VALUE EHIRSN1A (default=32) 5021 -1 = "Not in universe" 5022 1 = "Yes" 5023 2 = "No" 5024 ; NOTE: Format EHIRSN1A has been output. 5025 VALUE EHIRSN1B (default=32) 5026 -1 = "Not in universe" 5027 1 = "Yes" 5028 2 = "No" 5029 ; NOTE: Format EHIRSN1B has been output. 5030 VALUE AHIRSN (default=32) 5031 0 = "Not imputed" 5032 1 = "Statistical imputation (hot" 5033 2 = "Cold deck imputation" 5034 3 = "Logical imputation (derivation)" 5035 4 = "Statistical or logical" 5036 ; NOTE: Format AHIRSN has been output. 5037 VALUE RPRVHI (default=32) 5038 -1 = "Not in universe" 5039 1 = "Employer or union provided" 5040 2 = "Privately purchased" 5041 ; NOTE: Format RPRVHI has been output. 5042 5043 filename raw pipe "unzip -p /homes/data/sipp/1996/sipp96w2.zip "; 5044 NOTE: The data set LIBRARY.FSP96W2 has 3319 observations and 17 variables. NOTE: PROCEDURE FORMAT used: real time 4.170 seconds cpu time 2.274 seconds 5045 data library.sip96w2; 5046 5047 missing A; 5048 infile raw lrecl = 8000 missover ; 5049 * To read in uncompressed file, uncomment INFILE & comment filename & infile lines; 5050 * On a PC, you may need to change the direction of the slashes as in C:\; 5051 *INFILE '/homes/data/sipp/1996/sipp96w2.raw' LRECL=8000 PAD END=EOF; 5052 5053 5054 5055 *LENGTH 5056 SSUSEQ 4 5057 SSUID 7 5058 SPANEL 4 5059 RHCALYR 4 79 The SAS System 11:48 Wednesday, December 4, 2002 5060 EHREFPER 4 5061 WHFNWGT 6 5062 TMSA 4 5063 TMTHRNT 4 5064 EEGYAMT 4 5065 THEARN 5 5066 THPRPINC 5 5067 THTRNINC 5 5068 THOTHINC 5 5069 THTOTINC 5 5070 THPOV 4 5071 THPNDIST 5 5072 THLUMPSM 5 5073 THNONCSH 4 5074 THSOCSEC 4 5075 THSSI 4 5076 THUNEMP 4 5077 THVETS 4 5078 THAFDC 4 5079 THFDSTP 4 5080 EFREFPER 4 5081 EFSPOUSE 4 5082 WFFINWGT 6 5083 TFEARN 5 5084 TFPRPINC 5 5085 TFTRNINC 5 5086 TFOTHINC 5 5087 TFTOTINC 5 5088 TFPOV 4 5089 TFPNDIST 5 5090 TFLUMPSM 5 5091 TFSOCSEC 4 5092 TFSSI 4 5093 TFUNEMP 4 5094 TFVETS 4 5095 TFAFDC 4 5096 TFFDSTP 4 5097 ESFRFPER 4 5098 ESFSPSE 4 5099 WSFINWGT 6 5100 TSFEARN 5 5101 TSPRPINC 5 5102 TSTRNINC 5 5103 TSOTHINC 5 5104 TSTOTINC 5 5105 TSFPOV 4 5106 TSPNDIST 5 5107 TSLUMPSM 5 5108 TSSOCSEC 4 5109 TSSSI 4 5110 TSVETS 4 5111 TSUNEMP 4 5112 TSAFDC 4 5113 TSFDSTP 4 5114 EPPPNUM 4 5115 TBYEAR 4 5116 WPFINWGT 6 5117 EPNSPOUS 4 5118 EPNMOM 4 5119 EPNDAD 4 5120 EPNGUARD 4 5121 TPEARN 5 5122 TPPRPINC 5 5123 TPTRNINC 5 5124 TPOTHINC 5 5125 TPTOTINC 5 5126 TPPNDIST 4 5127 TPLUMPSM 4 5128 RCUOWN01 4 5129 RCUOWN03 4 5130 RCUOWN04 4 5131 RCUOWN8A 4 5132 RCUOWN8B 4 5133 RCUOWN20 4 5134 RCUOW21A 4 5135 RCUOW21B 4 80 The SAS System 11:48 Wednesday, December 4, 2002 5136 RCUOWN23 4 5137 RCUOW24A 4 5138 RCUOW24B 4 5139 RCUOWN25 4 5140 RCUOWN27 4 5141 RCUOWN57 4 5142 RCUOW58A 4 5143 RCUOW58B 4 5144 TMLMSUM 4 5145 TSJDATE1 5 5146 TEJDATE1 5 5147 TPMSUM1 4 5148 TPYRATE1 4 5149 TSJDATE2 5 5150 TEJDATE2 5 5151 TPMSUM2 4 5152 TPYRATE2 4 5153 TSBDATE1 5 5154 TEBDATE1 5 5155 TPRFTB1 4 5156 TBMSUM1 4 5157 EPARTB11 4 5158 EPARTB21 4 5159 EPARTB31 4 5160 TSBDATE2 5 5161 TEBDATE2 5 5162 TPRFTB2 4 5163 TBMSUM2 4 5164 EPARTB12 4 5165 EPARTB22 4 5166 EPARTB32 4 5167 T01AMTA 4 5168 T01AMTK 4 5169 T02AMT 4 5170 T03AMTA 4 5171 T03AMTK 4 5172 T04AMT 4 5173 T05AMT 4 5174 T07AMT 4 5175 T08AMT 4 5176 T09AMT 4 5177 T10AMT 4 5178 T12AMT 4 5179 T13AMT 4 5180 T14AMT 4 5181 T15AMT 4 5182 T20AMT 4 5183 T21AMT 4 5184 T23AMT 4 5185 T24AMT 4 5186 T25AMT 4 5187 T26AMT 4 5188 T27AMT 4 5189 T28AMT 4 5190 T29AMT 4 5191 T30AMT 4 5192 T31AMT 4 5193 T32AMT 4 5194 T34AMT 4 5195 T35AMT 4 5196 T36AMT 4 5197 T37AMT 4 5198 T38AMT 4 5199 T39AMT 4 5200 T42AMT 4 5201 T50AMT 4 5202 T51AMT 4 5203 T52AMT 4 5204 T53AMT 4 5205 T55AMT 4 5206 T56AMT 4 5207 T75AMT 4 5208 TCSAGY 4 5209 TROLLAMT 4 5210 TJARNT 4 5211 TJACLR 4 81 The SAS System 11:48 Wednesday, December 4, 2002 5212 TOARNT 4 5213 TOACLR 4 5214 TJACLR2 4 5215 TMIJNT 4 5216 TMIOWN 4 5217 TRNDUP1 4 5218 TRNDUP2 4 5219 TOTHPROP 5 5220 TCKJTINT 4 5221 TCKOINT 4 5222 TSVJTINT 4 5223 TSVOINT 4 5224 TMDJTINT 4 5225 TMDOINT 4 5226 TCDJTINT 4 5227 TCDOINT 4 5228 TBDJTINT 4 5229 TBDOINT 4 5230 TGVJTINT 4 5231 TGVOINT 4 5232 TINTINC 4 5233 TMJNTDIV 4 5234 TMOWNDIV 4 5235 TMJADIV 4 5236 TMOWNADV 4 5237 TSJNTDIV 4 5238 TSOWNDIV 4 5239 TSJADIV 4 5240 TSOWNADV 4 5241 TDIVINC 4 5242 DEFAULT=3; 5243 5244 5245 /*-------------------------------------------------------------------------------------*/ 5246 /* The following changes in variable names have been made, if necessary: 5247 '$' to 'd'; '-' to '_'; '%' to 'p'; 5248 ($ = unedited data; - = edited data; % = allocated data) 5249 5250 Note: Variable names in SAS are not case-sensitive */ 5251 5252 /*-------------------------------------------------------------------------------------*/ 5253 5254 INPUT 5255 5256 @1 SSUSEQ 5 5257 @6 SSUID 12 5258 @18 SPANEL 4 5259 @22 SWAVE 2 5260 @24 SROTATON 1 5261 @25 SREFMON 1 5262 @26 RHCALMN 2 5263 @28 RHCALYR 4 5264 @32 SHHADID 3 5265 @35 GVARSTR 3 5266 @38 GHLFSAM 1 5267 @39 GRGC 3 5268 @42 TFIPSST 2 5269 @44 EOUTCOME 3 5270 @47 RHNF 2 5271 @49 RHNFAM 2 5272 @51 RHNSF 2 5273 @53 EHREFPER 4 5274 @57 EHHNUMPP 3 5275 @60 RHTYPE 1 5276 @61 WHFNWGT 10.4 5277 @71 TMETRO 1 5278 @72 TMSA 4 5279 @76 RHCHANGE 1 5280 @77 RHNSSR 2 5281 @79 EACCESS 2 5282 @81 AACCESS 1 5283 @82 EUNITS 2 5284 @84 AUNITS 1 5285 @85 ELIVQRT 2 5286 @87 ALIVQRT 1 5287 @88 ETENURE 1 82 The SAS System 11:48 Wednesday, December 4, 2002 5288 @89 ATENURE 1 5289 @90 EPUBHSE 2 5290 @92 APUBHSE 1 5291 @93 EGVTRNT 2 5292 @95 AGVTRNT 1 5293 @96 TMTHRNT 6 5294 @102 AMTHRNT 1 5295 @103 EUTILYN 2 5296 @105 AUTILYN 1 5297 @106 EEGYAST 2 5298 @108 AEGYAST 1 5299 @109 EEGYPMT1 2 5300 @111 EEGYPMT2 2 5301 @113 EEGYPMT3 2 5302 @115 AEGYPMT 1 5303 @116 EEGYAMT 5 5304 @121 AEGYAMT 1 5305 @122 EHOTLUNC 2 5306 @124 AHOTLUNC 1 5307 @125 RNKLUN 2 5308 @127 EFREELUN 2 5309 @129 AFREELUN 1 5310 @130 EFRERDLN 2 5311 @132 AFRERDLN 1 5312 @133 EBRKFST 2 5313 @135 ABRKFST 1 5314 @136 RNKBRK 2 5315 @138 EFREEBRK 2 5316 @140 AFREEBRK 1 5317 @141 EFRERDBK 2 5318 @143 AFRERDBK 1 5319 @144 RPRGQUES 1 5320 @145 THEARN 7 5321 @152 THPRPINC 8 5322 @160 THTRNINC 7 5323 @167 THOTHINC 7 5324 @174 THTOTINC 8 5325 @182 RHNBRF 2 5326 @184 RHCBRF 2 5327 @186 RHMTRF 2 5328 @188 THPOV 5 5329 @193 THPNDIST 7 5330 @200 THLUMPSM 8 5331 @208 THNONCSH 6 5332 @214 THSOCSEC 6 5333 @220 THSSI 6 5334 @226 THUNEMP 6 5335 @232 THVETS 6 5336 @238 THAFDC 6 5337 @244 THFDSTP 6 5338 @250 RFID 3 5339 @253 RFID2 3 5340 @256 EFNP 2 5341 @258 EFREFPER 4 5342 @262 EFSPOUSE 4 5343 @266 EFTYPE 2 5344 @268 RFCHANGE 1 5345 @269 EFKIND 2 5346 @271 RFNKIDS 2 5347 @273 RFOWNKID 2 5348 @275 RFOKLT18 2 5349 @277 RFNSSR 2 5350 @279 WFFINWGT 10.4 5351 @289 TFEARN 7 5352 @296 TFPRPINC 8 5353 @304 TFTRNINC 7 5354 @311 TFOTHINC 7 5355 @318 TFTOTINC 8 5356 @326 TFPOV 5 5357 @331 TFPNDIST 7 5358 @338 TFLUMPSM 8 5359 @346 TFSOCSEC 6 5360 @352 TFSSI 6 5361 @358 TFUNEMP 6 5362 @364 TFVETS 6 5363 @370 TFAFDC 6 83 The SAS System 11:48 Wednesday, December 4, 2002 5364 @376 TFFDSTP 6 5365 @382 RSID 3 5366 @385 ESFNP 2 5367 @387 ESFRFPER 4 5368 @391 ESFSPSE 4 5369 @395 ESFTYPE 2 5370 @397 ESFKIND 2 5371 @399 RSCHANGE 2 5372 @401 ESOWNKID 2 5373 @403 ESOKLT18 2 5374 @405 WSFINWGT 10.4 5375 @415 TSFEARN 7 5376 @422 TSPRPINC 8 5377 @430 TSTRNINC 7 5378 @437 TSOTHINC 7 5379 @444 TSTOTINC 8 5380 @452 TSFPOV 5 5381 @457 TSPNDIST 7 5382 @464 TSLUMPSM 8 5383 @472 TSSOCSEC 6 5384 @478 TSSSI 6 5385 @484 TSVETS 6 5386 @490 TSUNEMP 6 5387 @496 TSAFDC 6 5388 @502 TSFDSTP 6 5389 @508 EENTAID 3 5390 @511 EPPPNUM 4 5391 @515 EPPINTVW 2 5392 @517 EPOPSTAT 1 5393 @518 EBMNTH 2 5394 @520 ABMNTH 1 5395 @521 TBYEAR 4 5396 @525 ABYEAR 1 5397 @526 ESEX 1 5398 @527 ASEX 1 5399 @528 ERACE 1 5400 @529 ARACE 1 5401 @530 EORIGIN 2 5402 @532 AORIGIN 1 5403 @533 UEVRWID 1 5404 @534 UEVRDIV 1 5405 @535 EAFNOW 2 5406 @537 AAFNOW 1 5407 @538 EAFEVER 2 5408 @540 AAFEVER 1 5409 @541 UAF1 1 5410 @542 UAF2 1 5411 @543 UAF3 1 5412 @544 UAF4 1 5413 @545 UAF5 1 5414 @546 EVAYN 2 5415 @548 AVAYN 1 5416 @549 EVETTYP 2 5417 @551 AVETTYP 1 5418 @552 EVAQUES 2 5419 @554 AVAQUES 1 5420 @555 EAFSRVDI 2 5421 @557 AAFSRVDI 1 5422 @558 WPFINWGT 10.4 5423 @568 ESFR 1 5424 @569 ESFT 1 5425 @570 TAGE 2 5426 @572 AAGE 1 5427 @573 ERRP 2 5428 @575 ARRP 1 5429 @576 EMS 1 5430 @577 AMS 1 5431 @578 EPNSPOUS 4 5432 @582 APNSPOUS 1 5433 @583 EPNMOM 4 5434 @587 APNMOM 1 5435 @588 EPNDAD 4 5436 @592 APNDAD 1 5437 @593 EPNGUARD 4 5438 @597 APNGUARD 1 5439 @598 ETYPMOM 2 84 The SAS System 11:48 Wednesday, December 4, 2002 5440 @600 ATYPMOM 1 5441 @601 ETYPDAD 2 5442 @603 ATYPDAD 1 5443 @604 RDESGPNT 2 5444 @606 ULFTMAIN 2 5445 @608 UENTMAIN 2 5446 @610 ULFTDAY 2 5447 @612 ULFTMON 2 5448 @614 UENTDAY 2 5449 @616 UENTMON 2 5450 @618 TPEARN 7 5451 @625 TPPRPINC 8 5452 @633 TPTRNINC 7 5453 @640 TPOTHINC 7 5454 @647 TPTOTINC 8 5455 @655 TPPNDIST 5 5456 @660 TPLUMPSM 6 5457 @666 EHTLNYN 2 5458 @668 AHTLNYN 1 5459 @669 EBKFSYN 2 5460 @671 ABKFSYN 1 5461 @672 RCUTYP01 1 5462 @673 RCUOWN01 4 5463 @677 RCUTYP03 1 5464 @678 RCUOWN03 4 5465 @682 RCUTYP04 1 5466 @683 RCUOWN04 4 5467 @687 RCUTYP08 1 5468 @688 RCUOWN8A 4 5469 @692 RCUOWN8B 4 5470 @696 RCUTYP20 1 5471 @697 RCUOWN20 4 5472 @701 RCUTYP21 1 5473 @702 RCUOW21A 4 5474 @706 RCUOW21B 4 5475 @710 RCUTYP23 1 5476 @711 RCUOWN23 4 5477 @715 RCUTYP24 1 5478 @716 RCUOW24A 4 5479 @720 RCUOW24B 4 5480 @724 RCUTYP25 1 5481 @725 RCUOWN25 4 5482 @729 RCUTYP27 1 5483 @730 RCUOWN27 4 5484 @734 RCUTYP57 1 5485 @735 RCUOWN57 4 5486 @739 RCUTYP58 1 5487 @740 RCUOW58A 4 5488 @744 RCUOW58B 4 5489 @748 RENROLL 2 5490 @750 ARENROLL 1 5491 @751 EENRLM 2 5492 @753 AENRLM 1 5493 @754 RENRLMA 2 5494 @756 EENLEVEL 2 5495 @758 AENLEVEL 1 5496 @759 EEDFUND 2 5497 @761 AEDFUND 1 5498 @762 EASST01 2 5499 @764 EASST03 2 5500 @766 EASST04 2 5501 @768 EASST05 2 5502 @770 EASST06 2 5503 @772 EASST07 2 5504 @774 EASST08 2 5505 @776 EASST09 2 5506 @778 EASST10 2 5507 @780 EASST11 2 5508 @782 AEDASST 1 5509 @783 EEDUCATE 2 5510 @785 AEDUCATE 1 5511 @786 EPDJBTHN 2 5512 @788 APDJBTHN 1 5513 @789 EPPFLAG 2 5514 @791 EMAX 2 5515 @793 EBUSCNTR 2 85 The SAS System 11:48 Wednesday, December 4, 2002 5516 @795 EJOBCNTR 2 5517 @797 EEVERET 2 5518 @799 AEVERET 1 5519 @800 EDISABL 2 5520 @802 ADISABL 1 5521 @803 EDISPREV 2 5522 @805 ADISPREV 1 5523 @806 ERSNOWRK 2 5524 @808 ARSNOWRK 1 5525 @809 EAWOP 2 5526 @811 AAWOP 1 5527 @812 EABRE 2 5528 @814 AABRE 1 5529 @815 EPTWRK 2 5530 @817 APTWRK 1 5531 @818 EPTRESN 2 5532 @820 APTRESN 1 5533 @821 ELKWRK 2 5534 @823 ALKWRK 1 5535 @824 ELAYOFF 2 5536 @826 ALAYOFF 1 5537 @827 RTAKJOB 2 5538 @829 RNOTAKE 2 5539 @831 EMOONLIT 2 5540 @833 AMOONLIT 1 5541 @834 TMLMSUM 5 5542 @839 AMLMSUM 1 5543 @840 EBFLAG 2 5544 @842 ECFLAG 2 5545 @844 RMESR 2 5546 @846 RWKESR1 2 5547 @848 RWKESR2 2 5548 @850 RWKESR3 2 5549 @852 RWKESR4 2 5550 @854 RWKESR5 2 5551 @856 RMWKWJB 2 5552 @858 RMWKSAB 2 5553 @860 AWKSAB 1 5554 @861 RMWKLKG 2 5555 @863 AWKLKG 1 5556 @864 RMHRSWK 2 5557 @866 RWKSPERM 2 5558 @868 EENO1 2 5559 @870 ESTLEMP1 2 5560 @872 ASTLEMP1 1 5561 @873 TSJDATE1 8 5562 @881 ASJDATE1 1 5563 @882 TEJDATE1 8 5564 @890 AEJDATE1 1 5565 @891 ERSEND1 2 5566 @893 ARSEND1 1 5567 @894 EJBHRS1 2 5568 @896 AJBHRS1 1 5569 @897 EEMPLOC1 2 5570 @899 AEMPLOC1 1 5571 @900 TEMPALL1 2 5572 @902 AEMPALL1 1 5573 @903 TEMPSIZ1 2 5574 @905 AEMPSIZ1 1 5575 @906 ECLWRK1 2 5576 @908 ACLWRK1 1 5577 @909 EUNION1 2 5578 @911 AUNION1 1 5579 @912 ECNTRC1 2 5580 @914 ACNTRC1 1 5581 @915 TPMSUM1 5 5582 @920 APMSUM1 1 5583 @921 EPAYHR1 2 5584 @923 APAYHR1 1 5585 @924 TPYRATE1 4.2 5586 @928 APYRATE1 1 5587 @929 RPYPER1 2 5588 @931 EJBIND1 3 5589 @934 AJBIND1 1 5590 @935 TJBOCC1 3 5591 @938 AJBOCC1 1 86 The SAS System 11:48 Wednesday, December 4, 2002 5592 @939 EENO2 2 5593 @941 ESTLEMP2 2 5594 @943 ASTLEMP2 1 5595 @944 TSJDATE2 8 5596 @952 ASJDATE2 1 5597 @953 TEJDATE2 8 5598 @961 AEJDATE2 1 5599 @962 ERSEND2 2 5600 @964 ARSEND2 1 5601 @965 EJBHRS2 2 5602 @967 AJBHRS2 1 5603 @968 EEMPLOC2 2 5604 @970 AEMPLOC2 1 5605 @971 TEMPALL2 2 5606 @973 AEMPALL2 1 5607 @974 TEMPSIZ2 2 5608 @976 AEMPSIZ2 1 5609 @977 ECLWRK2 2 5610 @979 ACLWRK2 1 5611 @980 EUNION2 2 5612 @982 AUNION2 1 5613 @983 ECNTRC2 2 5614 @985 ACNTRC2 1 5615 @986 TPMSUM2 5 5616 @991 APMSUM2 1 5617 @992 EPAYHR2 2 5618 @994 APAYHR2 1 5619 @995 TPYRATE2 4.2 5620 @999 APYRATE2 1 5621 @1000 RPYPER2 2 5622 @1002 EJBIND2 3 5623 @1005 AJBIND2 1 5624 @1006 TJBOCC2 3 5625 @1009 AJBOCC2 1 5626 @1010 EBNO1 2 5627 @1012 EBIZNOW1 2 5628 @1014 ABIZNOW1 1 5629 @1015 TSBDATE1 8 5630 @1023 ASBDATE1 1 5631 @1024 TEBDATE1 8 5632 @1032 AEBDATE1 1 5633 @1033 ERENDB1 2 5634 @1035 ARENDB1 1 5635 @1036 EHRSBS1 2 5636 @1038 AHRSBS1 1 5637 @1039 EGROSB1 2 5638 @1041 AGROSB1 1 5639 @1042 EGRSSB1 2 5640 @1044 AGRSSB1 1 5641 @1045 TEMPB1 2 5642 @1047 AEMPB1 1 5643 @1048 EINCPB1 2 5644 @1050 AINCPB1 1 5645 @1051 EPROPB1 2 5646 @1053 APROPB1 1 5647 @1054 EHPRTB1 2 5648 @1056 AHPRTB1 1 5649 @1057 ESLRYB1 2 5650 @1059 ASLRYB1 1 5651 @1060 EOINCB1 2 5652 @1062 AOINCB1 1 5653 @1063 TPRFTB1 5 5654 @1068 APRFTB1 1 5655 @1069 TBMSUM1 5 5656 @1074 ABMSUM1 1 5657 @1075 EPARTB11 4 5658 @1079 EPARTB21 4 5659 @1083 EPARTB31 4 5660 @1087 TBSIND1 2 5661 @1089 ABSIND1 1 5662 @1090 TBSOCC1 3 5663 @1093 ABSOCC1 1 5664 @1094 EBNO2 2 5665 @1096 EBIZNOW2 2 5666 @1098 ABIZNOW2 1 5667 @1099 TSBDATE2 8 87 The SAS System 11:48 Wednesday, December 4, 2002 5668 @1107 ASBDATE2 1 5669 @1108 TEBDATE2 8 5670 @1116 AEBDATE2 1 5671 @1117 ERENDB2 2 5672 @1119 ARENDB2 1 5673 @1120 EHRSBS2 2 5674 @1122 AHRSBS2 1 5675 @1123 EGROSB2 2 5676 @1125 AGROSB2 1 5677 @1126 EGRSSB2 2 5678 @1128 AGRSSB2 1 5679 @1129 TEMPB2 2 5680 @1131 AEMPB2 1 5681 @1132 EINCPB2 2 5682 @1134 AINCPB2 1 5683 @1135 EPROPB2 2 5684 @1137 APROPB2 1 5685 @1138 EHPRTB2 2 5686 @1140 AHPRTB2 1 5687 @1141 ESLRYB2 2 5688 @1143 ASLRYB2 1 5689 @1144 EOINCB2 2 5690 @1146 AOINCB2 1 5691 @1147 TPRFTB2 5 5692 @1152 APRFTB2 1 5693 @1153 TBMSUM2 5 5694 @1158 ABMSUM2 1 5695 @1159 EPARTB12 4 5696 @1163 EPARTB22 4 5697 @1167 EPARTB32 4 5698 @1171 TBSIND2 2 5699 @1173 ABSIND2 1 5700 @1174 TBSOCC2 3 5701 @1177 ABSOCC2 1 5702 @1178 EUECTYP5 2 5703 @1180 AUECTYP5 1 5704 @1181 EUECTYP7 2 5705 @1183 AUECTYP7 1 5706 @1184 ELMPTYP1 2 5707 @1186 ALMPTYP1 1 5708 @1187 ELMPTYP2 2 5709 @1189 ALMPTYP2 1 5710 @1190 ELMPTYP3 2 5711 @1192 ALMPTYP3 1 5712 @1193 ESSSELF 2 5713 @1195 ASSSELF 1 5714 @1196 ESSCHILD 2 5715 @1198 ASSCHILD 1 5716 @1199 ESSICHLD 2 5717 @1201 ASSICHLD 1 5718 @1202 ESSISELF 2 5719 @1204 ASSISELF 1 5720 @1205 ESTSSI 2 5721 @1207 ASTSSI 1 5722 @1208 RWCMPRSN 2 5723 @1210 AWCMPRSN 1 5724 @1211 RINSRSN 2 5725 @1213 AINSRSN 1 5726 @1214 REMPDRSN 2 5727 @1216 AEMPDRSN 1 5728 @1217 RPENSRSN 2 5729 @1219 APENSRSN 1 5730 @1220 RFCSRSN 2 5731 @1222 AFCSRSN 1 5732 @1223 RSTATRSN 2 5733 @1225 ASTATRSN 1 5734 @1226 RLGOVRSN 2 5735 @1228 ALGOVRSN 1 5736 @1229 RMILRSN 2 5737 @1231 AMILRSN 1 5738 @1232 RRRSN 2 5739 @1234 ARRRSN 1 5740 @1235 RBLKLRSN 2 5741 @1237 ABLKLRSN 1 5742 @1238 ROTHRRSN 2 5743 @1240 AOTHRRSN 1 88 The SAS System 11:48 Wednesday, December 4, 2002 5744 @1241 RLIFIRSN 2 5745 @1243 ALIFIRSN 1 5746 @1244 RVETSRSN 2 5747 @1246 AVETSRSN 1 5748 @1247 RESTARSN 2 5749 @1249 AESTARSN 1 5750 @1250 EFCCYN 2 5751 @1252 AFCCYN 1 5752 @1253 ECSAGREE 2 5753 @1255 ACSAGREE 1 5754 @1256 ECSYN 2 5755 @1258 ACSYN 1 5756 @1259 EALIYN 2 5757 @1261 AALIYN 1 5758 @1262 EFSYN 2 5759 @1264 AFSYN 1 5760 @1265 EPSSTHRU 2 5761 @1267 APSSTHRU 1 5762 @1268 EWICYN 2 5763 @1270 AWICYN 1 5764 @1271 EPATYN 2 5765 @1273 APATYN 1 5766 @1274 EPATYP1 2 5767 @1276 APATYP1 1 5768 @1277 EPATYP2 2 5769 @1279 APATYP2 1 5770 @1280 EPATYP3 2 5771 @1282 APATYP3 1 5772 @1283 EPATYP4 2 5773 @1285 APATYP4 1 5774 @1286 EASETDRW 2 5775 @1288 AASETDRW 1 5776 @1289 EJNTSSYN 2 5777 @1291 AJNTSSYN 1 5778 @1292 ER01A 2 5779 @1294 AR01A 1 5780 @1295 ER01K 2 5781 @1297 AR01K 1 5782 @1298 ER02 2 5783 @1300 AR02 1 5784 @1301 ER03A 2 5785 @1303 AR03A 1 5786 @1304 ER03K 2 5787 @1306 AR03K 1 5788 @1307 ER04 2 5789 @1309 AR04 1 5790 @1310 ER05 2 5791 @1312 AR05 1 5792 @1313 ER07 2 5793 @1315 AR07 1 5794 @1316 ER08 2 5795 @1318 AR08 1 5796 @1319 ER09 2 5797 @1321 AR09 1 5798 @1322 ER10 2 5799 @1324 AR10 1 5800 @1325 ER12 2 5801 @1327 AR12 1 5802 @1328 ER13 2 5803 @1330 AR13 1 5804 @1331 ER14 2 5805 @1333 AR14 1 5806 @1334 ER15 2 5807 @1336 AR15 1 5808 @1337 ER20 2 5809 @1339 AR20 1 5810 @1340 ER21 2 5811 @1342 AR21 1 5812 @1343 ER23 2 5813 @1345 AR23 1 5814 @1346 ER24 2 5815 @1348 AR24 1 5816 @1349 ER25 2 5817 @1351 AR25 1 5818 @1352 ER26 2 5819 @1354 AR26 1 89 The SAS System 11:48 Wednesday, December 4, 2002 5820 @1355 ER27 2 5821 @1357 AR27 1 5822 @1358 ER28 2 5823 @1360 AR28 1 5824 @1361 ER29 2 5825 @1363 AR29 1 5826 @1364 ER30 2 5827 @1366 AR30 1 5828 @1367 ER31 2 5829 @1369 AR31 1 5830 @1370 ER32 2 5831 @1372 AR32 1 5832 @1373 ER34 2 5833 @1375 AR34 1 5834 @1376 ER35 2 5835 @1378 AR35 1 5836 @1379 ER36 2 5837 @1381 AR36 1 5838 @1382 ER37 2 5839 @1384 AR37 1 5840 @1385 ER38 2 5841 @1387 AR38 1 5842 @1388 ER39 2 5843 @1390 AR39 1 5844 @1391 ER42 2 5845 @1393 AR42 1 5846 @1394 ER50 2 5847 @1396 AR50 1 5848 @1397 ER51 2 5849 @1399 AR51 1 5850 @1400 ER52 2 5851 @1402 AR52 1 5852 @1403 ER53 2 5853 @1405 AR53 1 5854 @1406 ER55 2 5855 @1408 AR55 1 5856 @1409 ER56 2 5857 @1411 AR56 1 5858 @1412 ER75 2 5859 @1414 AR75 1 5860 @1415 T01AMTA 5 5861 @1420 A01AMTA 1 5862 @1421 T01AMTK 5 5863 @1426 A01AMTK 1 5864 @1427 T02AMT 5 5865 @1432 A02AMT 1 5866 @1433 T03AMTA 5 5867 @1438 A03AMTA 1 5868 @1439 T03AMTK 5 5869 @1444 A03AMTK 1 5870 @1445 T04AMT 5 5871 @1450 A04AMT 1 5872 @1451 T05AMT 5 5873 @1456 A05AMT 1 5874 @1457 T07AMT 5 5875 @1462 A07AMT 1 5876 @1463 T08AMT 5 5877 @1468 A08AMT 1 5878 @1469 T09AMT 5 5879 @1474 A09AMT 1 5880 @1475 T10AMT 5 5881 @1480 A10AMT 1 5882 @1481 T12AMT 5 5883 @1486 A12AMT 1 5884 @1487 T13AMT 5 5885 @1492 A13AMT 1 5886 @1493 T14AMT 5 5887 @1498 A14AMT 1 5888 @1499 T15AMT 5 5889 @1504 A15AMT 1 5890 @1505 T20AMT 5 5891 @1510 A20AMT 1 5892 @1511 T21AMT 5 5893 @1516 A21AMT 1 5894 @1517 T23AMT 5 5895 @1522 A23AMT 1 90 The SAS System 11:48 Wednesday, December 4, 2002 5896 @1523 T24AMT 5 5897 @1528 A24AMT 1 5898 @1529 T25AMT 5 5899 @1534 A25AMT 1 5900 @1535 T26AMT 5 5901 @1540 A26AMT 1 5902 @1541 T27AMT 5 5903 @1546 A27AMT 1 5904 @1547 T28AMT 5 5905 @1552 A28AMT 1 5906 @1553 T29AMT 5 5907 @1558 A29AMT 1 5908 @1559 T30AMT 5 5909 @1564 A30AMT 1 5910 @1565 T31AMT 5 5911 @1570 A31AMT 1 5912 @1571 T32AMT 5 5913 @1576 A32AMT 1 5914 @1577 T34AMT 5 5915 @1582 A34AMT 1 5916 @1583 T35AMT 5 5917 @1588 A35AMT 1 5918 @1589 T36AMT 5 5919 @1594 A36AMT 1 5920 @1595 T37AMT 5 5921 @1600 A37AMT 1 5922 @1601 T38AMT 6 5923 @1607 A38AMT 1 5924 @1608 T39AMT 6 5925 @1614 A39AMT 1 5926 @1615 T42AMT 5 5927 @1620 A42AMT 1 5928 @1621 T50AMT 5 5929 @1626 A50AMT 1 5930 @1627 T51AMT 5 5931 @1632 A51AMT 1 5932 @1633 T52AMT 5 5933 @1638 A52AMT 1 5934 @1639 T53AMT 5 5935 @1644 A53AMT 1 5936 @1645 T55AMT 5 5937 @1650 A55AMT 1 5938 @1651 T56AMT 5 5939 @1656 A56AMT 1 5940 @1657 T75AMT 6 5941 @1663 A75AMT 1 5942 @1664 TCSAGY 5 5943 @1669 ACSAGY 1 5944 @1670 EROLOVR1 2 5945 @1672 AROLOVR1 1 5946 @1673 EROLOVR2 2 5947 @1675 AROLOVR2 1 5948 @1676 TROLLAMT 6 5949 @1682 AROLLAMT 1 5950 @1683 RAB1R1 2 5951 @1685 RAB1R2 2 5952 @1687 RAB2R1 2 5953 @1689 RAB2R2 2 5954 @1691 RAS1 2 5955 @1693 RAS2 2 5956 @1695 RWB1R1 2 5957 @1697 RWB1R2 2 5958 @1699 RWB2R1 2 5959 @1701 RWB2R2 2 5960 @1703 RWS1 2 5961 @1705 RWS2 2 5962 @1707 RFB1R1 2 5963 @1709 RFB1R2 2 5964 @1711 RFB2R1 2 5965 @1713 RFB2R2 2 5966 @1715 RFS1 2 5967 @1717 RFS2 2 5968 @1719 RGB1R1 2 5969 @1721 RGB1R2 2 5970 @1723 RGB2R1 2 5971 @1725 RGB2R2 2 91 The SAS System 11:48 Wednesday, December 4, 2002 5972 @1727 RGS1 2 5973 @1729 RGS2 2 5974 @1731 ROB1R1 2 5975 @1733 ROB1R2 2 5976 @1735 ROB2R1 2 5977 @1737 ROB2R2 2 5978 @1739 ROS1 2 5979 @1741 ROS2 2 5980 @1743 RSB1R1 2 5981 @1745 RSB1R2 2 5982 @1747 RSB2R1 2 5983 @1749 RSB2R2 2 5984 @1751 RSS1 2 5985 @1753 RSS2 2 5986 @1755 EAST1A 2 5987 @1757 AAST1A 1 5988 @1758 EAST1B 2 5989 @1760 AAST1B 1 5990 @1761 EAST1C 2 5991 @1763 AAST1C 1 5992 @1764 EAST2A 2 5993 @1766 AAST2A 1 5994 @1767 EAST2B 2 5995 @1769 AAST2B 1 5996 @1770 EAST2C 2 5997 @1772 AAST2C 1 5998 @1773 EAST2D 2 5999 @1775 AAST2D 1 6000 @1776 EAST3A 2 6001 @1778 AAST3A 1 6002 @1779 EAST3B 2 6003 @1781 AAST3B 1 6004 @1782 EAST3C 2 6005 @1784 AAST3C 1 6006 @1785 EAST3D 2 6007 @1787 AAST3D 1 6008 @1788 EAST3E 2 6009 @1790 AAST3E 1 6010 @1791 EAST4A 2 6011 @1793 AAST4A 1 6012 @1794 EAST4B 2 6013 @1796 AAST4B 1 6014 @1797 EAST4C 2 6015 @1799 AAST4C 1 6016 @1800 EJNTRNT 2 6017 @1802 AJNTRNT 1 6018 @1803 TJARNT 5 6019 @1808 AJARNT 1 6020 @1809 TJACLR 6 6021 @1815 AJACLR 1 6022 @1816 EOWNRNT 2 6023 @1818 AOWNRNT 1 6024 @1819 TOARNT 5 6025 @1824 AOARNT 1 6026 @1825 TOACLR 6 6027 @1831 AOACLR 1 6028 @1832 EJRNT2 2 6029 @1834 AJRNT2 1 6030 @1835 TJACLR2 6 6031 @1841 AJACLR2 1 6032 @1842 EMRTJNT 2 6033 @1844 AMRTJNT 1 6034 @1845 TMIJNT 5 6035 @1850 AMIJNT 1 6036 @1851 EMRTOWN 2 6037 @1853 AMRTOWN 1 6038 @1854 TMIOWN 5 6039 @1859 AMIOWN 1 6040 @1860 TRNDUP1 5 6041 @1865 ARNDUP1 1 6042 @1866 TRNDUP2 6 6043 @1872 ARNDUP2 1 6044 @1873 TOTHPROP 7 6045 @1880 ECKJT 2 6046 @1882 ACKJT 1 6047 @1883 TCKJTINT 5 92 The SAS System 11:48 Wednesday, December 4, 2002 6048 @1888 ACKJTINT 1 6049 @1889 ECKOAST 2 6050 @1891 ACKOAST 1 6051 @1892 TCKOINT 5 6052 @1897 ACKOINT 1 6053 @1898 ESVJT 2 6054 @1900 ASVJT 1 6055 @1901 TSVJTINT 5 6056 @1906 ASVJTINT 1 6057 @1907 ESVOAST 2 6058 @1909 ASVOAST 1 6059 @1910 TSVOINT 5 6060 @1915 ASVOINT 1 6061 @1916 EMDJT 2 6062 @1918 AMDJT 1 6063 @1919 TMDJTINT 5 6064 @1924 AMDJTINT 1 6065 @1925 EMDOAST 2 6066 @1927 AMDOAST 1 6067 @1928 TMDOINT 5 6068 @1933 AMDOINT 1 6069 @1934 ECDJT 2 6070 @1936 ACDJT 1 6071 @1937 TCDJTINT 5 6072 @1942 ACDJTINT 1 6073 @1943 ECDOAST 2 6074 @1945 ACDOAST 1 6075 @1946 TCDOINT 5 6076 @1951 ACDOINT 1 6077 @1952 EBDJT 2 6078 @1954 ABDJT 1 6079 @1955 TBDJTINT 5 6080 @1960 ABDJTINT 1 6081 @1961 EBDOAST 2 6082 @1963 ABDOAST 1 6083 @1964 TBDOINT 5 6084 @1969 ABDOINT 1 6085 @1970 EGVJT 2 6086 @1972 AGVJT 1 6087 @1973 TGVJTINT 5 6088 @1978 AGVJTINT 1 6089 @1979 EGVOAST 2 6090 @1981 AGVOAST 1 6091 @1982 TGVOINT 5 6092 @1987 AGVOINT 1 6093 @1988 TINTINC 6 6094 @1994 EMANYCHK 2 6095 @1996 AMANYCHK 1 6096 @1997 TMJNTDIV 5 6097 @2002 AMJNTDIV 1 6098 @2003 TMOWNDIV 5 6099 @2008 AMOWNDIV 1 6100 @2009 EMOTHDIV 2 6101 @2011 AMOTHDIV 1 6102 @2012 TMJADIV 5 6103 @2017 AMJADIV 1 6104 @2018 TMOWNADV 5 6105 @2023 AMOWNADV 1 6106 @2024 ESANYCHK 2 6107 @2026 ASANYCHK 1 6108 @2027 TSJNTDIV 5 6109 @2032 ASJNTDIV 1 6110 @2033 TSOWNDIV 5 6111 @2038 ASOWNDIV 1 6112 @2039 ESOTHDIV 2 6113 @2041 ASOTHDIV 1 6114 @2042 TSJADIV 5 6115 @2047 ASJADIV 1 6116 @2048 TSOWNADV 5 6117 @2053 ASOWNADV 1 6118 @2054 TDIVINC 5 6119 @2059 ECRMTH 2 6120 @2061 ACRMTH 1 6121 @2062 RMEDCODE 2 6122 @2064 ECDMTH 2 6123 @2066 ACDMTH 1 93 The SAS System 11:48 Wednesday, December 4, 2002 6124 @2067 ECDUNT1 2 6125 @2069 ECDUNT2 2 6126 @2071 ECDUNT3 2 6127 @2073 EHIMTH 2 6128 @2075 AHIMTH 1 6129 @2076 EHIOWNER 2 6130 @2078 AHIOWNER 1 6131 @2079 ENONHH 1 6132 @2080 RCHAMPM 2 6133 @2082 EHIUNT1 2 6134 @2084 EHIUNT2 2 6135 @2086 EHIUNT3 2 6136 @2088 EHEMPLY 2 6137 @2090 AHEMPLY 1 6138 @2091 EHICOST 2 6139 @2093 AHICOST 1 6140 @2094 EHIOTHER 2 6141 @2096 AHIOTHER 1 6142 @2097 EHISPSE 2 6143 @2099 AHISPSE 1 6144 @2100 EHIOLDKD 2 6145 @2102 AHIOLDKD 1 6146 @2103 EHIYNGKD 2 6147 @2105 AHIYNGKD 1 6148 @2106 EHIOTHR 2 6149 @2108 AHIOTHR 1 6150 @2109 EHIRSN01 2 6151 @2111 EHIRSN02 2 6152 @2113 EHIRSN03 2 6153 @2115 EHIRSN04 2 6154 @2117 EHIRSN05 2 6155 @2119 EHIRSN06 2 6156 @2121 EHIRSN07 2 6157 @2123 EHIRSN08 2 6158 @2125 EHIRSN09 2 6159 @2127 EHIRSN10 2 6160 @2129 EHIRSN11 2 6161 @2131 EHIRSN12 2 6162 @2133 AHIRSN 1 6163 @2134 RPRVHI 2 6164 ; 6165 6166 LABEL 6167 SSUSEQ = "SU: Sequence Number of Sample Unit - P" 6168 SSUID = "SU: Sample Unit Identifier" 6169 SPANEL = "SU: Sample Code - Indicates Panel Year" 6170 SWAVE = "SU: Wave of data collection" 6171 SROTATON = "SU: Rotation of data collection" 6172 SREFMON = "SU: Reference month of this record" 6173 RHCALMN = "SU: Calendar month for this reference " 6174 RHCALYR = "SU: Calendar year for this reference m" 6175 SHHADID = "SU: Hhld Address ID differentiates hhl" 6176 GVARSTR = "SU: Variance Stratum Code" 6177 GHLFSAM = "SU: Half Sample Code" 6178 GRGC = "SU: Reduction Group Code" 6179 TFIPSST = "HH: FIPS State Code" 6180 EOUTCOME = "HH: Interview Status code for this hou" 6181 RHNF = "HH: Number of families and pseudo fami" 6182 RHNFAM = "HH: No. of fams and psuedo fams (exclu" 6183 RHNSF = "HH: Number of related subfamilies for " 6184 EHREFPER = "HH: Person number of household referen" 6185 EHHNUMPP = "HH: Total number of persons in this hh" 6186 RHTYPE = "HH: Household type" 6187 WHFNWGT = "WW: Household weight" 6188 TMETRO = "HH: Metro/Residual status" 6189 TMSA = "HH: CMSA/PMSA/MSA Code" 6190 RHCHANGE = "HH: Change in household composition fr" 6191 RHNSSR = "HH: Number of Social Security recipien" 6192 EACCESS = "HH: Access to living quarters" 6193 AACCESS = "HH: Allocation flag for EACCESS" 6194 EUNITS = "HH: Number of housing units" 6195 AUNITS = "HH: Allocation flag for EUNITS" 6196 ELIVQRT = "HH: Type of living quarters" 6197 ALIVQRT = "HH: Allocation flag for ELIVQRT" 6198 ETENURE = "HH: Ownership status of living quarter" 6199 ATENURE = "HH: Allocation flag for ETENURE" 94 The SAS System 11:48 Wednesday, December 4, 2002 6200 EPUBHSE = "HH: Residence in public housing projec" 6201 APUBHSE = "HH: Allocation flag for EPUBHSE" 6202 EGVTRNT = "HH: Receipt of Government subsidized r" 6203 AGVTRNT = "HH: Allocation flag for EGVTRNT" 6204 TMTHRNT = "HH: Amount of monthly rent" 6205 AMTHRNT = "HH: Allocation flag for TMTHRNT" 6206 EUTILYN = "HH: Payment of utilities in public hou" 6207 AUTILYN = "HH: Allocation flag for EUTILYN" 6208 EEGYAST = "HH: Receipt of energy assistance" 6209 AEGYAST = "HH: Allocation Flag for EEGYAST" 6210 EEGYPMT1 = "HH: Energy assistance payment by check" 6211 EEGYPMT2 = "HH: Energy assistance payment by coupo" 6212 EEGYPMT3 = "HH: Energy assist paymnt to utils, fue" 6213 AEGYPMT = "HH: Allocation flag for EEGYPMT1-EEGYP" 6214 EEGYAMT = "HH: Amount of energy assistance" 6215 AEGYAMT = "HH: Allocation flag for EEGYAMT" 6216 EHOTLUNC = "HH: Receipt of a school lunch" 6217 AHOTLUNC = "HH: Allocation flag for EHOTLUNC" 6218 RNKLUN = "HH: Number of children receiving lunch" 6219 EFREELUN = "HH: Qualify for free or reduced price " 6220 AFREELUN = "HH: Allocation flag for EFREELUN" 6221 EFRERDLN = "HH: Are the lunches free or are they r" 6222 AFRERDLN = "HH: Allocation flag for EFRERDLN" 6223 EBRKFST = "HH: Receipt of school breakfast" 6224 ABRKFST = "HH: Allocation flag for EBRKFST" 6225 RNKBRK = "HH: Number of children receiving compl" 6226 EFREEBRK = "HH: Qualify for free or reduced price" 6227 AFREEBRK = "HH: Allocation flag for EFREEBRK" 6228 EFRERDBK = "HH: Are the breakfasts free or are the" 6229 AFRERDBK = "HH: Allocation flag for EFRERDBK" 6230 RPRGQUES = "HH: Flag indicating transfer of progra" 6231 THEARN = "HH: Total household earned income" 6232 THPRPINC = "HH: Total household property income" 6233 THTRNINC = "HH: Total household means-tested cash" 6234 THOTHINC = "HH: Total 'other' household income" 6235 THTOTINC = "HH: Total household income" 6236 RHNBRF = "HH: Household noncash benefits receipt" 6237 RHCBRF = "HH: Household cash benefits receipt fl" 6238 RHMTRF = "HH: Household means-tested cash or non" 6239 THPOV = "HH: Low income cutoff for this househo" 6240 THPNDIST = "HH: Distributions from pension plans" 6241 THLUMPSM = "HH: Retirement lump sum payments" 6242 THNONCSH = "HH: Total Household Noncash Income Rec" 6243 THSOCSEC = "HH: Total Household Social Security In" 6244 THSSI = "HH: Total Household Supplemental Secur" 6245 THUNEMP = "HH: Total Household Unemployment Incom" 6246 THVETS = "HH: Total Household Veterans Payments " 6247 THAFDC = "HH: Total household AFDC income" 6248 THFDSTP = "HH: Total Household Food Stamps Receiv" 6249 RFID = "FA: Family ID Number for this month" 6250 RFID2 = "FA: Family ID excluding related subfam" 6251 EFNP = "FA: Number of persons in this family o" 6252 EFREFPER = "FA: Person number of the family refere" 6253 EFSPOUSE = "FA: Person number of spouse of family " 6254 EFTYPE = "FA: Type of family (or pseudo-family)" 6255 RFCHANGE = "FA: Change in family composition from" 6256 EFKIND = "FA: Kind of family (or pseudo-family)" 6257 RFNKIDS = "FA: Total number of children under 18 " 6258 RFOWNKID = "FA: Number of own children in family" 6259 RFOKLT18 = "FA: Number of own children under 18 in" 6260 RFNSSR = "FA: Number of Social Security recipien" 6261 WFFINWGT = "WW: 'WPFINWGT' for head of family" 6262 TFEARN = "FA: Total family earned income for thi" 6263 TFPRPINC = "FA: Total family property income for t" 6264 TFTRNINC = "FA: Total family means-tested cash tra" 6265 TFOTHINC = "FA: Total 'other' family income for th" 6266 TFTOTINC = "FA: Total family income for this month" 6267 TFPOV = "FA: Low income cutoff for this family" 6268 TFPNDIST = "FA: Family distributions from pension " 6269 TFLUMPSM = "FA: Family retirement lump sum payment" 6270 TFSOCSEC = "FA: Total Family Social Security Incom" 6271 TFSSI = "FA: Total Family Supplemental Security" 6272 TFUNEMP = "FA: Total Family Unemployment Income R" 6273 TFVETS = "FA: Total Family Veterans Payments Rec" 6274 TFAFDC = "FA: Total Family Aid to Families w/Dep" 6275 TFFDSTP = "FA: Total Family Food Stamps Received " 95 The SAS System 11:48 Wednesday, December 4, 2002 6276 RSID = "FA: Related or unrelated subfamily ID " 6277 ESFNP = "SF: Number of persons in this related" 6278 ESFRFPER = "SF: Person number of the related subfa" 6279 ESFSPSE = "SF: Person number of spouse of related" 6280 ESFTYPE = "SF: Type of family (or pseudo-family)" 6281 ESFKIND = "SF: Kind of family (or pseudo-family)" 6282 RSCHANGE = "SF: Change in rel subfam composition f" 6283 ESOWNKID = "SF: Number of own children in related" 6284 ESOKLT18 = "SF: Number of own children under 18 in" 6285 WSFINWGT = "WW: 'WPFINWGT' for head of subfamily" 6286 TSFEARN = "SF: Total related subfamily earned inc" 6287 TSPRPINC = "SF: Total related subfamily property i" 6288 TSTRNINC = "SF: Total related subfamily means-test" 6289 TSOTHINC = "SF: Total 'other' related subfamily in" 6290 TSTOTINC = "SF: Total related subfamily income for" 6291 TSFPOV = "SF: Low income cutoff for this related" 6292 TSPNDIST = "SF: Related subfamily distributions fr" 6293 TSLUMPSM = "SF: Related subfamily retirement lump " 6294 TSSOCSEC = "SF: Total related subfamily Social Sec" 6295 TSSSI = "SF: Total related subfamily Supplement" 6296 TSVETS = "SF: Total related subfamily Veterans" 6297 TSUNEMP = "SF: Total related subfamily unemployme" 6298 TSAFDC = "SF: Total related subfamily AFDC incom" 6299 TSFDSTP = "SF: Total related subfamily Food Stamp" 6300 EENTAID = "PE: Address ID of hhld where person en" 6301 EPPPNUM = "PE: Person number" 6302 EPPINTVW = "PE: Person's interview status" 6303 EPOPSTAT = "PE: Population status based on age in " 6304 EBMNTH = "PE: Month of birth" 6305 ABMNTH = "PE: Allocation flag for EBMNTH" 6306 TBYEAR = "PE: Year of birth" 6307 ABYEAR = "PE: Allocation flag for TBYEAR" 6308 ESEX = "PE: Sex of this person" 6309 ASEX = "PE: Allocation flag for ESEX" 6310 ERACE = "PE: Race of this person" 6311 ARACE = "PE: Allocation flag for ERACE" 6312 EORIGIN = "PE: Origin of this person" 6313 AORIGIN = "PE: Allocation flag for EORIGIN" 6314 UEVRWID = "PE: UNEDITED VARIABLE - Has ... ever b" 6315 UEVRDIV = "PE: UNEDITED VARIABLE - Has ... ever b" 6316 EAFNOW = "AF: Current Armed Forces status" 6317 AAFNOW = "AF: Allocation flag for EAFNOW" 6318 EAFEVER = "AF: Lifetime Armed Forces status" 6319 AAFEVER = "AF: Allocation flag for EAFEVER" 6320 UAF1 = "AF: UNEDITED - When did ... first serv" 6321 UAF2 = "AF: UNEDITED - When did ... next serve" 6322 UAF3 = "AF: UNEDITED - When did ... next serve" 6323 UAF4 = "AF: UNEDITED - When did ... next serve" 6324 UAF5 = "AF: UNEDITED - When did ... next serve" 6325 EVAYN = "AF: Receipt of payments from the VA th" 6326 AVAYN = "AF: Allocation flag for EVAYN" 6327 EVETTYP = "AF: Type of Veteran's payments" 6328 AVETTYP = "AF: Allocation flag for EVETTYP" 6329 EVAQUES = "AF: Veteran's annual income questionna" 6330 AVAQUES = "AF: Allocation flag for EVAQUES" 6331 EAFSRVDI = "AF: Spouse died in military or service" 6332 AAFSRVDI = "AF: Allocation flag for EAFSRVDI" 6333 WPFINWGT = "WW: Person weight" 6334 ESFR = "PE: Subfamily relationship" 6335 ESFT = "PE: Family type" 6336 TAGE = "PE: Age as of last birthday" 6337 AAGE = "PE: Allocation flag for TAGE" 6338 ERRP = "PE: Household relationship" 6339 ARRP = "PE: Allocation flag for ERRP" 6340 EMS = "PE: Marital status" 6341 AMS = "PE: Allocation flag for EMS" 6342 EPNSPOUS = "PE: Person number of spouse" 6343 APNSPOUS = "PE: Allocation flag for EPNSPOUS" 6344 EPNMOM = "PE: Person number of mother" 6345 APNMOM = "PE: Allocation flag for EPNMOM" 6346 EPNDAD = "PE: Person number of father" 6347 APNDAD = "PE: Allocation flag for EPNDAD" 6348 EPNGUARD = "PE: Person number of guardian" 6349 APNGUARD = "PE: Allocation flag for EPNGUARD" 6350 ETYPMOM = "PE: Type of child to mother" 6351 ATYPMOM = "PE: Allocation flag for ETYPMOM" 96 The SAS System 11:48 Wednesday, December 4, 2002 6352 ETYPDAD = "PE: Type of child to father" 6353 ATYPDAD = "PE: Allocation flag for ETYPDAD" 6354 RDESGPNT = "PE: Designated parent or guardian flag" 6355 ULFTMAIN = "PE: UNEDITED VARIABLE - Main reason le" 6356 UENTMAIN = "PE: UNEDITED VARIABLE - Main reason en" 6357 ULFTDAY = "PE: UNEDITED VARIABLE - Day of month l" 6358 ULFTMON = "PE: UNEDITED VARIABLE - Month left hou" 6359 UENTDAY = "PE: UNEDITED VARIABLE - Day of month e" 6360 UENTMON = "PE: UNEDITED VARIABLE - Month entered" 6361 TPEARN = "PE: Total person's earned income for t" 6362 TPPRPINC = "PE: Total property (asset) income for " 6363 TPTRNINC = "PE: Total means-tested cash transfer f" 6364 TPOTHINC = "PE: Total person's other income for th" 6365 TPTOTINC = "PE: Total person's income for the refe" 6366 TPPNDIST = "PE: Distributions from pension plans" 6367 TPLUMPSM = "PE: Retirement lump sum payments" 6368 EHTLNYN = "PE: Receipt of school lunch" 6369 AHTLNYN = "PE: Allocation flag for EHTLNYN" 6370 EBKFSYN = "PE: Receipt of breakfast under Fed Sch" 6371 ABKFSYN = "PE: Allocation flag for EBKFSYN" 6372 RCUTYP01 = "PE: Social Security coverage flag (ISS" 6373 RCUOWN01 = "PE: Person number of the owner of the " 6374 RCUTYP03 = "PE: Federal SSI coverage flag" 6375 RCUOWN03 = "PE: Person number of the owner of the" 6376 RCUTYP04 = "PE: State SSI coverage flag" 6377 RCUOWN04 = "PE: Person number of the owner of the " 6378 RCUTYP08 = "PE: Veteran payment coverage flag" 6379 RCUOWN8A = "PE: Person number of the 1st owner of " 6380 RCUOWN8B = "PE: Person number of the 2nd owner of " 6381 RCUTYP20 = "PE: AFDC program coverage flag" 6382 RCUOWN20 = "PE: Person number of the owner of the " 6383 RCUTYP21 = "PE: General Assistance coverage flag" 6384 RCUOW21A = "PE: Person number of first owner of Ge" 6385 RCUOW21B = "PE: Person number of second owner of G" 6386 RCUTYP23 = "PE: Foster Child Care coverage flag" 6387 RCUOWN23 = "PE: Person number of owner of Foster C" 6388 RCUTYP24 = "PE: Other welfare coverage flag" 6389 RCUOW24A = "PE: Person number of first owner of ot" 6390 RCUOW24B = "PE: Person number of second owner of o" 6391 RCUTYP25 = "PE: WIC coverage flag" 6392 RCUOWN25 = "PE: Person number of the owner of the " 6393 RCUTYP27 = "PE: Food Stamp coverage flag" 6394 RCUOWN27 = "PE: Person number of the owner of the " 6395 RCUTYP57 = "PE: Medicaid coverage flag" 6396 RCUOWN57 = "PE: Person number of the owner of the" 6397 RCUTYP58 = "PE: Health Insurance coverage flag" 6398 RCUOW58A = "PE: Person num. of first owner of Heal" 6399 RCUOW58B = "PE: Person num. of second owner of Hea" 6400 RENROLL = "ED: Enrolled Full/Part sometime during" 6401 ARENROLL = "ED: Allocation flag for RENROLL" 6402 EENRLM = "ED: Enrollment status in this month" 6403 AENRLM = "ED: Allocation flag for EENRLM" 6404 RENRLMA = "ED: Full period enrollment status" 6405 EENLEVEL = "ED: Level or grade enrolled" 6406 AENLEVEL = "ED: Allocation flag for EENLEVEL" 6407 EEDFUND = "ED: Educational assistance" 6408 AEDFUND = "ED: Allocation flag for EEDFUND" 6409 EASST01 = "ED: Federal Pell Grant" 6410 EASST03 = "ED: Assistance from college (or fed) w" 6411 EASST04 = "ED: Other Federal Grant or Program; e." 6412 EASST05 = "ED: Loan that has to be repaid (Staffo" 6413 EASST06 = "ED: Grant, Scholarship, or Tuition rem" 6414 EASST07 = "ED: Teaching or Research Assistantship" 6415 EASST08 = "ED: Grant/Scholarship from the state (" 6416 EASST09 = "ED: Grant/Scholarship from other sourc" 6417 EASST10 = "ED: Employer provided educational assi" 6418 EASST11 = "ED: Other Financial Aid excl. aid from" 6419 AEDASST = "ED: Allocation flag for EASST01-EASST1" 6420 EEDUCATE = "ED: Highest Degree received or grade" 6421 AEDUCATE = "ED: Allocation flag for EEDUCATE" 6422 EPDJBTHN = "LF: Paid job during the reference peri" 6423 APDJBTHN = "LF: Allocation flag for EPDJBTHN" 6424 EPPFLAG = "LF: Flag denoting imputation of person" 6425 EMAX = "LF: Number of weeks in the reference p" 6426 EBUSCNTR = "LF: Number of businesses owned during" 6427 EJOBCNTR = "LF: Number of jobs held during the ref" 97 The SAS System 11:48 Wednesday, December 4, 2002 6428 EEVERET = "LF: Ever retired from a job" 6429 AEVERET = "LF: Allocation flag for EEVERET" 6430 EDISABL = "LF: Had a physical or mental work-limi" 6431 ADISABL = "LF: Allocation flag for EDISABL" 6432 EDISPREV = "LF: Had work-preventing" 6433 ADISPREV = "LF: Allocation flag for EDISPREV" 6434 ERSNOWRK = "LF: Main reason for not working during" 6435 ARSNOWRK = "LF: Allocation flag for ERSNOWRK" 6436 EAWOP = "LF: Had full-week unpaid absences from" 6437 AAWOP = "LF: Allocation flag for EAWOP" 6438 EABRE = "LF: Main reason for being absent witho" 6439 AABRE = "LF: Allocation flag for EABRE" 6440 EPTWRK = "LF: Worked less than 35 hours some wee" 6441 APTWRK = "LF: Allocation flag for EPTWRK" 6442 EPTRESN = "LF: Main reason for working less than " 6443 APTRESN = "LF: Allocation flag for EPTRESN" 6444 ELKWRK = "LF: Spent time looking for work" 6445 ALKWRK = "LF: Allocation flag for ELKWRK." 6446 ELAYOFF = "LF: Spent time on layoff from a job" 6447 ALAYOFF = "LF: Allocation flag for ELAYOFF" 6448 RTAKJOB = "LF: Could ... have started a job durin" 6449 RNOTAKE = "LF: Reason couldn't start job" 6450 EMOONLIT = "LF: Income from additional work" 6451 AMOONLIT = "LF: Allocation flag for EMOONLIT." 6452 TMLMSUM = "LF: Amount of income from moonlighting" 6453 AMLMSUM = "LF: Allocation flag for TMLMSUM" 6454 EBFLAG = "LF: Flag indicating 'before' worker" 6455 ECFLAG = "LF: Flag indicating other-work-arrange" 6456 RMESR = "LF: Employment status recode for month" 6457 RWKESR1 = "LF: Employment Status Recode for Week " 6458 RWKESR2 = "LF: Employment Status Recode for Week " 6459 RWKESR3 = "LF: Employment Status Recode for Week " 6460 RWKESR4 = "LF: Employment Status Recode for Week " 6461 RWKESR5 = "LF: Employment Status Recode for Week " 6462 RMWKWJB = "LF: Number of weeks with a job in mont" 6463 RMWKSAB = "LF: Number of weeks absent without pay" 6464 AWKSAB = "LF: Allocation flag for RMWKSAB" 6465 RMWKLKG = "LF: Number of weeks looking for work/o" 6466 AWKLKG = "LF: Allocation flag for RMWKLKG" 6467 RMHRSWK = "LF: Usual hours worked per week recode" 6468 RWKSPERM = "LF: Number of weeks in this month" 6469 EENO1 = "JB: Across-wave employer index/number" 6470 ESTLEMP1 = "JB: Does ... still work for this emplo" 6471 ASTLEMP1 = "JB: Allocation flag ESTLEMP1" 6472 TSJDATE1 = "JB: Starting date of job" 6473 ASJDATE1 = "JB: Allocation flag for TSJDATE1" 6474 TEJDATE1 = "JB: Ending date of job" 6475 AEJDATE1 = "JB: Allocation flag for TEJDATE1" 6476 ERSEND1 = "JB: Main reason stopped working" 6477 ARSEND1 = "JB: Allocation flag for ERSEND1" 6478 EJBHRS1 = "JB: Usual hours worked per week at thi" 6479 AJBHRS1 = "JB: Allocation flag for EJBHRS1" 6480 EEMPLOC1 = "JB: Does employer operate in more than" 6481 AEMPLOC1 = "JB: Allocation flag for EEMPLOC1" 6482 TEMPALL1 = "JB: Number of employees at all locatio" 6483 AEMPALL1 = "JB: Allocation flag for EEMPALL1" 6484 TEMPSIZ1 = "JB: Employees at worker's location" 6485 AEMPSIZ1 = "JB: Allocation flag for EEMPSIZ1" 6486 ECLWRK1 = "JB: Class of worker" 6487 ACLWRK1 = "JB: Allocation flag for ECLWRK1" 6488 EUNION1 = "JB: Union/employee-association members" 6489 AUNION1 = "JB: Allocation flag for EUNION1" 6490 ECNTRC1 = "JB: Coverage by union or employee" 6491 ACNTRC1 = "JB: Allocation flag for ECNTRC1" 6492 TPMSUM1 = "JB: Earnings from job received in this" 6493 APMSUM1 = "JB: Allocation flag for TPMSUM1" 6494 EPAYHR1 = "JB: Is ... paid by the hour?" 6495 APAYHR1 = "JB: Allocation flag for EPAYHR1" 6496 TPYRATE1 = "JB: Regular hourly pay rate" 6497 APYRATE1 = "JB: Allocation flag for TPYRATE1" 6498 RPYPER1 = "JB: How often was .. paid at this job?" 6499 EJBIND1 = "JB: Industry code" 6500 AJBIND1 = "JB: Allocation flag for EJBIND1" 6501 TJBOCC1 = "JB: Occupation classification code" 6502 AJBOCC1 = "JB: Allocation flag for TJBOCC1" 6503 EENO2 = "JB: Across-wave employer index/number" 98 The SAS System 11:48 Wednesday, December 4, 2002 6504 ESTLEMP2 = "JB: Does ... still work for this emplo" 6505 ASTLEMP2 = "JB: Allocation flag ESTLEMP2" 6506 TSJDATE2 = "JB: Starting date of job" 6507 ASJDATE2 = "JB: Allocation flag for TSJDATE2" 6508 TEJDATE2 = "JB: Ending date of job" 6509 AEJDATE2 = "JB: Allocation flag for TEJDATE2" 6510 ERSEND2 = "JB: Main reason stopped work" 6511 ARSEND2 = "JB: Allocation flag for ERSEND2." 6512 EJBHRS2 = "JB: Usual hours worked per week at thi" 6513 AJBHRS2 = "JB: Allocation flag for EJBHRS2." 6514 EEMPLOC2 = "JB: Does employer operate in more than" 6515 AEMPLOC2 = "JB: Allocation flag for EEMPLOC2" 6516 TEMPALL2 = "JB: Number of employees at all locatio" 6517 AEMPALL2 = "JB: Allocation flag for EEMPALL2" 6518 TEMPSIZ2 = "JB: Employees at worker's location" 6519 AEMPSIZ2 = "JB: Allocation flag for EEMPSIZ1" 6520 ECLWRK2 = "JB: Class of worker" 6521 ACLWRK2 = "JB: Allocation flag for ECLWRK2" 6522 EUNION2 = "JB: Union/employee-association members" 6523 AUNION2 = "JB: Allocation flag for EUNION2." 6524 ECNTRC2 = "JB: Coverage by union or employee" 6525 ACNTRC2 = "JB: Allocation flag for ECNTRC2." 6526 TPMSUM2 = "JB: Earnings from job received in this" 6527 APMSUM2 = "JB: Allocation flag for TPMSUM2." 6528 EPAYHR2 = "JB: Is ... paid by the hour?" 6529 APAYHR2 = "JB: Allocation flag for EPAYHR2." 6530 TPYRATE2 = "JB: Regular hourly pay rate" 6531 APYRATE2 = "JB: Allocation flag for TPYRATE2." 6532 RPYPER2 = "JB: How often was .. paid at this job?" 6533 EJBIND2 = "JB: Industry code" 6534 AJBIND2 = "JB: Allocation flag for EJBIND2." 6535 TJBOCC2 = "JB: Occupational classification code" 6536 AJBOCC2 = "JB: Allocation flag for TJBOCC2." 6537 EBNO1 = "BS: Across-wave business index/number" 6538 EBIZNOW1 = "BS: Does ... still own this business?" 6539 ABIZNOW1 = "BS: Allocation flag for EBIZNOW1" 6540 TSBDATE1 = "BS: Date operation of business began" 6541 ASBDATE1 = "BS: Allocation flag for TSBDATE1" 6542 TEBDATE1 = "BS: Date operation of business ended" 6543 AEBDATE1 = "BS: Allocation flag for TEBDATE1" 6544 ERENDB1 = "BS: Reason business ended" 6545 ARENDB1 = "BS: Allocation flag for ERENDB1" 6546 EHRSBS1 = "BS: Usual hours worked per week" 6547 AHRSBS1 = "BS: Allocation flag for EHRSBS1" 6548 EGROSB1 = "BS: Anticipated gross-earnings level" 6549 AGROSB1 = "BS: Allocation flag for EGROSB1" 6550 EGRSSB1 = "BS: Earnings level last 12 months" 6551 AGRSSB1 = "BS: Allocation flag for EGRSSB1" 6552 TEMPB1 = "BS: Maximum number of employees" 6553 AEMPB1 = "BS: Allocation flag for EEMPB1" 6554 EINCPB1 = "BS: Is this business incorporated?" 6555 AINCPB1 = "BS: Allocation flag for EINCPB1" 6556 EPROPB1 = "BS: Type of proprietorship" 6557 APROPB1 = "BS: Allocation flag for EPROPB1" 6558 EHPRTB1 = "BS: Other owners/partners in household" 6559 AHPRTB1 = "BS: Allocation flag for EHPRTB1" 6560 ESLRYB1 = "BS: Salary draw from business" 6561 ASLRYB1 = "BS: Allocation flag for ESLRYB1" 6562 EOINCB1 = "BS: Receipt of non-salary income" 6563 AOINCB1 = "BS: Allocation flag for EOINCB1" 6564 TPRFTB1 = "BS: Net profit or loss" 6565 APRFTB1 = "BS: Allocation flag for TPRFTB1" 6566 TBMSUM1 = "BS: Income received this month" 6567 ABMSUM1 = "BS: Allocation flag for TBMSUM1" 6568 EPARTB11 = "BS: Person number of partner 1" 6569 EPARTB21 = "BS: Person number of partner 2" 6570 EPARTB31 = "BS: Person number of partner 3" 6571 TBSIND1 = "BS: Industry code" 6572 ABSIND1 = "BS: Allocation flag for TBSIND1" 6573 TBSOCC1 = "BS: Occupation code" 6574 ABSOCC1 = "BS: Allocation flag for TBSOCC1" 6575 EBNO2 = "BS: Across-wave business index/number" 6576 EBIZNOW2 = "BS: Does ... still own this business?" 6577 ABIZNOW2 = "BS: Allocation flag for EBIZNOW2" 6578 TSBDATE2 = "BS: Date operation of business began" 6579 ASBDATE2 = "BS: Allocation flag for TSBDATE2" 99 The SAS System 11:48 Wednesday, December 4, 2002 6580 TEBDATE2 = "BS: Date operation of business ended" 6581 AEBDATE2 = "BS: Allocation flag for TEBDATE2" 6582 ERENDB2 = "BS: Reason business ended" 6583 ARENDB2 = "BS: Allocation flag for ERENDB2" 6584 EHRSBS2 = "BS: Usual hours worked per week" 6585 AHRSBS2 = "BS: Allocation flag for EHRSBS2" 6586 EGROSB2 = "BS: Anticipated gross-earnings level" 6587 AGROSB2 = "BS: Allocation flag for EGROSB2" 6588 EGRSSB2 = "BS: Earnings level last 12 months" 6589 AGRSSB2 = "BS: Allocation flag for EGRSSB2" 6590 TEMPB2 = "BS: Maximum number of employees" 6591 AEMPB2 = "BS: Allocation flag for EEMPB2" 6592 EINCPB2 = "BS: Is this business incorporated?" 6593 AINCPB2 = "BS: Allocation flag for EINCPB2" 6594 EPROPB2 = "BS: Type of proprietorship" 6595 APROPB2 = "BS: Allocation flag for EPROPB2." 6596 EHPRTB2 = "BS: Other owners/partners in household" 6597 AHPRTB2 = "BS: Allocation flag for EHPRTB2" 6598 ESLRYB2 = "BS: Salary draw from business" 6599 ASLRYB2 = "BS: Allocation flag for ESLRYB2" 6600 EOINCB2 = "BS: Receipt of non-salary income" 6601 AOINCB2 = "BS: Allocation flag for EOINC2" 6602 TPRFTB2 = "BS: Net profit or loss" 6603 APRFTB2 = "BS: Allocation flag for TPRFTB2" 6604 TBMSUM2 = "BS: Income received this month" 6605 ABMSUM2 = "BS: Allocation flag for TBMSUM2" 6606 EPARTB12 = "BS: Person number of partner 1" 6607 EPARTB22 = "BS: Person number of partner 2" 6608 EPARTB32 = "BS: Person number of partner 3" 6609 TBSIND2 = "BS: Industry code" 6610 ABSIND2 = "BS: Allocation flag for TBSIND2" 6611 TBSOCC2 = "BS: Occupation code" 6612 ABSOCC2 = "BS: Allocation flag for TBSOCC2" 6613 EUECTYP5 = "GI: Receipt of State unemployment comp" 6614 AUECTYP5 = "GI: Allocation flag for EUECTYP5" 6615 EUECTYP7 = "GI: Receipt of other unemployment comp" 6616 AUECTYP7 = "GI: Allocation flag for EUECTYP7" 6617 ELMPTYP1 = "GI: Receipt of lump sum from" 6618 ALMPTYP1 = "GI: Allocation flag for ELMPTYP1" 6619 ELMPTYP2 = "GI: Receipt of severance pay (ISS Code" 6620 ALMPTYP2 = "GI: Allocation flag for ELMPTYP2" 6621 ELMPTYP3 = "GI: Receipt of other type of lump sum" 6622 ALMPTYP3 = "GI: Allocation flag for ALMPTYP3" 6623 ESSSELF = "GI: Receipt of Social Security payment" 6624 ASSSELF = "GI: Allocation flag for ESSSELF" 6625 ESSCHILD = "GI: Receipt of Social Security payment" 6626 ASSCHILD = "GI: Allocation flag for ESSCHILD" 6627 ESSICHLD = "GI: Receipt of SSI for children (ISS C" 6628 ASSICHLD = "GI: Allocation flag for ESSICHLD" 6629 ESSISELF = "GI: Receipt of SSI for self (ISS Code " 6630 ASSISELF = "GI: Allocation flag for ESSISELF" 6631 ESTSSI = "GI: Receipt of State administered SSI " 6632 ASTSSI = "GI: Allocation flag for ESTSSI" 6633 RWCMPRSN = "GI: Reason for receipt of workers'" 6634 AWCMPRSN = "GI: Allocation flag for RWCMPRSN" 6635 RINSRSN = "GI: Reason for payment from own insura" 6636 AINSRSN = "GI: Allocation flag for RINSRSN" 6637 REMPDRSN = "GI: Reason for receipt of employer" 6638 AEMPDRSN = "GI: Allocation flag for REMPDRSN" 6639 RPENSRSN = "GI: Reason for pension from company or" 6640 APENSRSN = "GI: Allocation flag for RPENSRSN" 6641 RFCSRSN = "GI: Reason for receipt of federal civi" 6642 AFCSRSN = "GI: Allocation flag for RFCSRSN" 6643 RSTATRSN = "GI: Reason for receipt of state govern" 6644 ASTATRSN = "GI: Allocation flag for RSTATRSN" 6645 RLGOVRSN = "GI: Reason for receipt of local govern" 6646 ALGOVRSN = "GI: Allocation flag for RLGOVRSN" 6647 RMILRSN = "GI: Reason for receipt of U.S. militar" 6648 AMILRSN = "GI: Allocation flag for RMILRSN" 6649 RRRSN = "GI: Reason for receipt of Railroad" 6650 ARRRSN = "GI: Allocation flag RRRSN" 6651 RBLKLRSN = "GI: Reason for receipt of black lung p" 6652 ABLKLRSN = "GI: Allocation flag for RBLKLRSN" 6653 ROTHRRSN = "GI: Reason for receipt of 'other' reti" 6654 AOTHRRSN = "GI: Allocation flag for ROTHRRSN" 6655 RLIFIRSN = "GI: Reason for payments from paid-up l" 100 The SAS System 11:48 Wednesday, December 4, 2002 6656 ALIFIRSN = "GI: Allocation flag for RLIFIRSN" 6657 RVETSRSN = "GI: Reason for receipt of Veterans' co" 6658 AVETSRSN = "GI: Allocation flag for RVETSRSN" 6659 RESTARSN = "GI: Reason for receiving income from e" 6660 AESTARSN = "GI: Allocation flag for RESTARSN" 6661 EFCCYN = "GI: Receipt of foster child care payme" 6662 AFCCYN = "GI: Allocation flag for EFCCYN" 6663 ECSAGREE = "GI: Agreement for support payments" 6664 ACSAGREE = "GI: Allocation flag for ECSAGREE" 6665 ECSYN = "GI: Receipt of child support payments " 6666 ACSYN = "GI: Allocation flag for ECSYN" 6667 EALIYN = "GI: Receipt of alimony payments (ISS C" 6668 AALIYN = "GI: Allocation flag for EALIYN" 6669 EFSYN = "GI: Receipt of food stamps (ISS Code 2" 6670 AFSYN = "GI: Allocation flag for EFSYN" 6671 EPSSTHRU = "GI: Receipt of child support as" 6672 APSSTHRU = "GI: Allocation flag for EPSSTHRU" 6673 EWICYN = "GI: Recipiency of WIC (ISS Code 25)" 6674 AWICYN = "GI: Allocation flag for EWICYN" 6675 EPATYN = "GI: Receipt of AFDC, welfare, or publi" 6676 APATYN = "GI: Allocation flag for EPATYN" 6677 EPATYP1 = "GI: Receipt of AFDC (ISS Code 20)" 6678 APATYP1 = "GI: Allocation flag for EPATYP1" 6679 EPATYP2 = "GI: Receipt of general assistance (ISS" 6680 APATYP2 = "GI: Allocation flag for EPATYP2" 6681 EPATYP3 = "GI: Receipt of energy assistance (ISS " 6682 APATYP3 = "GI: Allocation flag for EPATYP3" 6683 EPATYP4 = "GI: Receipt of other public assistance" 6684 APATYP4 = "GI: Allocation flag for EPATYP4" 6685 EASETDRW = "GI: Receipt of income from IRA, 401k, " 6686 AASETDRW = "GI: Allocation flag for EASETDRW" 6687 EJNTSSYN = "GI: Receipt of joint Social Security" 6688 AJNTSSYN = "GI: Allocation flag for EJNTSSYN" 6689 ER01A = "GI: Receipt of Social Security - Adult" 6690 AR01A = "GI: Allocation flag for ER01A" 6691 ER01K = "GI: Receipt of Social Security - Child" 6692 AR01K = "GI: Allocation flag for ER01K" 6693 ER02 = "GI: Receipt of Railroad Retirement (IS" 6694 AR02 = "GI: Allocation flag for ER02" 6695 ER03A = "GI: Receipt of Federal SSI - Adult (IS" 6696 AR03A = "GI: Allocation flag for ER03A" 6697 ER03K = "GI: Receipt of Federal SSI - Child (IS" 6698 AR03K = "GI: Allocation flag for ER03K" 6699 ER04 = "GI: Receipt of State SSI (ISS Code 4)" 6700 AR04 = "GI: Allocation flag for ER04" 6701 ER05 = "GI: Receipt of State Unemployment Comp" 6702 AR05 = "GI: Allocation flag for ER05" 6703 ER07 = "GI: Receipt of Other Unemployment Comp" 6704 AR07 = "GI: Allocation flag for ER07" 6705 ER08 = "GI: Receipt of Veterans' Compensation " 6706 AR08 = "GI: Allocation flag for ER08" 6707 ER09 = "GI: Receipt of Black Lung payments (IS" 6708 AR09 = "GI: Allocation flag for ER09" 6709 ER10 = "GI: Receipt of Workers Compensation (I" 6710 AR10 = "GI: Allocation flag for ER10" 6711 ER12 = "GI: Receipt of Employer/Union Temp. Si" 6712 AR12 = "GI: Allocation flag for ER12" 6713 ER13 = "GI: Receipt of own sickness, accident" 6714 AR13 = "GI: Allocation flag for ER13" 6715 ER14 = "GI: Receipt of Employer Disability Pay" 6716 AR14 = "GI: Allocation flag for ER14" 6717 ER15 = "GI: Receipt of Severance Pay (ISS Code" 6718 AR15 = "GI: Allocation flag for ER15" 6719 ER20 = "GI: Receipt of AFDC,ADC (ISS Code 20)" 6720 AR20 = "GI: Allocation flag for ER20" 6721 ER21 = "GI: Receipt of General Assistance or G" 6722 AR21 = "GI: Allocation flag for ER21" 6723 ER23 = "GI: Receipt of Foster Child Care Payme" 6724 AR23 = "GI: Allocation flag for ER23" 6725 ER24 = "GI: Receipt of Other Welfare (ISS Code" 6726 AR24 = "GI: Allocation flag for ER24" 6727 ER25 = "GI: Receipt of WIC (ISS Code 25)" 6728 AR25 = "GI: Allocation flag for ER25" 6729 ER26 = "GI: Receipt of Pass Through Child Supp" 6730 AR26 = "GI: Allocation flag for ER26" 6731 ER27 = "GI: Receipt of Food Stamps (ISS Code 2" 101 The SAS System 11:48 Wednesday, December 4, 2002 6732 AR27 = "GI: Allocation flag for ER27" 6733 ER28 = "GI: Receipt of Child Support Payments " 6734 AR28 = "GI: Allocation flag for ER28" 6735 ER29 = "GI: Receipt of Alimony Payments (ISS C" 6736 AR29 = "GI: Allocation flag for ER29" 6737 ER30 = "GI: Receipt of pension from a company " 6738 AR30 = "GI: Allocation flag for ER30" 6739 ER31 = "GI: Receipt of Federal Civil Service P" 6740 AR31 = "GI: Allocation flag for ER31" 6741 ER32 = "GI: Receipt of U.S. Military Retiremen" 6742 AR32 = "GI: Allocation flag for ER32" 6743 ER34 = "GI: Receipt of State Government Pensio" 6744 AR34 = "GI: Allocation flag for ER34" 6745 ER35 = "GI: Receipt of Local Government Pensio" 6746 AR35 = "GI: Allocation flag for ER35" 6747 ER36 = "GI: Receipt of paid-up life insurance" 6748 AR36 = "GI: Allocation flag for ER36" 6749 ER37 = "GI: Receipt of Estates or Trusts (ISS " 6750 AR37 = "GI: Allocation flag for ER37" 6751 ER38 = "GI: Receipt of other retirement, disab" 6752 AR38 = "GI: Allocation flag for ER38" 6753 ER39 = "GI: Receipt of Pension/Retirement Lump" 6754 AR39 = "GI: Allocation flag for ER39" 6755 ER42 = "GI: Receipt of draw from IRA/Keough/40" 6756 AR42 = "GI: Allocation flag for ER42" 6757 ER50 = "GI: Receipt of income assistance from " 6758 AR50 = "GI: Allocation flag for ER50" 6759 ER51 = "GI: Receipt of money from relatives or" 6760 AR51 = "GI: Allocation flag for ER51" 6761 ER52 = "GI: Receipt of lump sum payments (ISS " 6762 AR52 = "GI: Allocation flag for ER52" 6763 ER53 = "GI: Receipt of income from roomers or" 6764 AR53 = "GI: Allocation flag for ER53" 6765 ER55 = "GI: Receipt of incidental or casual ea" 6766 AR55 = "GI: Allocation flag for ER55" 6767 ER56 = "GI: Receipt of miscellaneous cash inco" 6768 AR56 = "GI: Allocation flag for ER56" 6769 ER75 = "GI: Receipt of other government income" 6770 AR75 = "GI: Allocation flag for ER75" 6771 T01AMTA = "GI: Amount of Social Security - Adult " 6772 A01AMTA = "GI: Allocation flag for T01AMTA" 6773 T01AMTK = "GI: Amount of Social Security - Child " 6774 A01AMTK = "GI: Allocation flag for T01AMTK" 6775 T02AMT = "GI: Amount of Railroad Retirement (ISS" 6776 A02AMT = "GI: Allocation flag for T02AMT" 6777 T03AMTA = "GI: Amount of Federal SSI - Adult (ISS" 6778 A03AMTA = "GI: Allocation flag for T03AMTA" 6779 T03AMTK = "GI: Amount of Federal SSI - Child (ISS" 6780 A03AMTK = "GI: Allocation flag for T03AMTK" 6781 T04AMT = "GI: Amount of State SSI (ISS Code 4)" 6782 A04AMT = "GI: Allocation flag for T04AMT" 6783 T05AMT = "GI: Amount of State unemployment" 6784 A05AMT = "GI: Allocation flag for T05AMT" 6785 T07AMT = "GI: Amount of other unemployment" 6786 A07AMT = "GI: Allocation flag for T07AMT" 6787 T08AMT = "GI: Amount of Veterans compensation or" 6788 A08AMT = "GI: Allocation flag for T08AMT" 6789 T09AMT = "GI: Amount of black lung payment (ISS " 6790 A09AMT = "GI: Allocation flag for T09AMT" 6791 T10AMT = "GI: Amount of workers' compensation (I" 6792 A10AMT = "GI: Allocation flag for T10AMT" 6793 T12AMT = "GI: Amount of employer/union temp. sic" 6794 A12AMT = "GI: Allocation flag for T12AMT" 6795 T13AMT = "GI: Amount of own sickness, accident," 6796 A13AMT = "GI: Allocation flag for T13AMT" 6797 T14AMT = "GI: Amount of employer disability paym" 6798 A14AMT = "GI: Allocation flag for T14AMT" 6799 T15AMT = "GI: Amount of severance pay (ISS Code " 6800 A15AMT = "GI: Allocation flag for T15AMT" 6801 T20AMT = "GI: Amount of AFDC,ADC (ISS Code 20)" 6802 A20AMT = "GI: Allocation flag for T20AMT" 6803 T21AMT = "GI: Amount of General Assistance or Ge" 6804 A21AMT = "GI: Allocation flag for T21AMT" 6805 T23AMT = "GI: Amount of foster child care paymen" 6806 A23AMT = "GI: Allocation flag for T23AMT" 6807 T24AMT = "GI: Amount of other welfare (ISS Code " 102 The SAS System 11:48 Wednesday, December 4, 2002 6808 A24AMT = "GI: Allocation flag for T24AMT" 6809 T25AMT = "GI: Amount of WIC payments (ISS Code 2" 6810 A25AMT = "GI: Allocation flag for T25AMT" 6811 T26AMT = "GI: Amount of pass-through child suppo" 6812 A26AMT = "GI: Allocation flag for T26AMT" 6813 T27AMT = "GI: Amount of Food Stamps (ISS Code 27" 6814 A27AMT = "GI: Allocation flag for T27AMT" 6815 T28AMT = "GI: Amount of child support payments (" 6816 A28AMT = "GI: Allocation flag for T28AMT" 6817 T29AMT = "GI: Amount of alimony payments (ISS Co" 6818 A29AMT = "GI: Allocation flag for T29AMT" 6819 T30AMT = "GI: Amount of pension from a company o" 6820 A30AMT = "GI: Allocation flag for T30AMT" 6821 T31AMT = "GI: Amount of Federal Civil Service pe" 6822 A31AMT = "GI: Allocation flag for T31AMT" 6823 T32AMT = "GI: Amount of U.S. Military retirement" 6824 A32AMT = "GI: Allocation flag for T32AMT" 6825 T34AMT = "GI: Amount of State government pension" 6826 A34AMT = "GI: Allocation flag for T34AMT" 6827 T35AMT = "GI: Amount of local government pension" 6828 A35AMT = "GI: Allocation flag for T35AMT" 6829 T36AMT = "GI: Amount of income from paid-up life" 6830 A36AMT = "GI: Allocation flag for T36AMT" 6831 T37AMT = "GI: Amount from estates or trusts (ISS" 6832 A37AMT = "GI: Allocation flag for T37AMT" 6833 T38AMT = "GI: Amt. from other retirement, disabi" 6834 A38AMT = "GI: Allocation flag for T38AMT" 6835 T39AMT = "GI: Amount of pension/retirement lump " 6836 A39AMT = "GI: Allocation flag for T39AMT" 6837 T42AMT = "GI: Amount of draw from an IRA/Keough/" 6838 A42AMT = "GI: Allocation flag for T42AMT" 6839 T50AMT = "GI: Amount of income assistance from a" 6840 A50AMT = "GI: Allocation flag for T50AMT" 6841 T51AMT = "GI: Amount of money from relatives or" 6842 A51AMT = "GI: Allocation flag for T51AMT" 6843 T52AMT = "GI: Amount of lump sum payments (ISS C" 6844 A52AMT = "GI: Allocation flag for T52AMT" 6845 T53AMT = "GI: Amount of income from roomers or" 6846 A53AMT = "GI: Allocation flag for T53AMT" 6847 T55AMT = "GI: Amount of incidental or casual ear" 6848 A55AMT = "GI: Allocation flag for T55AMT" 6849 T56AMT = "GI: Amount of miscellaneous cash incom" 6850 A56AMT = "GI: Allocation flag for T56AMT" 6851 T75AMT = "GI: Amount of other government income " 6852 A75AMT = "GI: Allocation flag for T75AMT" 6853 TCSAGY = "GI: Amount received by Agency on ...'s" 6854 ACSAGY = "GI: Allocation flag for TCSAGY" 6855 EROLOVR1 = "GI: Money rolled over into IRA/other t" 6856 AROLOVR1 = "GI: Allocation flag for EROLOVR1" 6857 EROLOVR2 = "GI: Plan to roll over money into IRA/o" 6858 AROLOVR2 = "GI: Allocation flag for EROLOVR2" 6859 TROLLAMT = "GI: Amnt rolled over into retirement a" 6860 AROLLAMT = "GI: Allocation flag for TROLLAMT" 6861 RAB1R1 = "GI: First reason for applying for AFDC" 6862 RAB1R2 = "GI: Second reason for applying for AFD" 6863 RAB2R1 = "GI: First reason for applying for AFDC" 6864 RAB2R2 = "GI: Second reason for applying for AFD" 6865 RAS1 = "GI: Reason for stopping AFDC the first" 6866 RAS2 = "GI: Reason for stopping AFDC the secon" 6867 RWB1R1 = "GI: First reason for applying for WIC " 6868 RWB1R2 = "GI: Second reason for applying for WIC" 6869 RWB2R1 = "GI: First reason for applying for WIC " 6870 RWB2R2 = "GI: Second reason for applying for WIC" 6871 RWS1 = "GI: Reason for stopping WIC the first " 6872 RWS2 = "GI: Reason for stopping WIC the second" 6873 RFB1R1 = "GI: First reason for applying for Food" 6874 RFB1R2 = "GI: 2nd reason for applying for Food S" 6875 RFB2R1 = "GI: 1st reason for applying for Food S" 6876 RFB2R2 = "GI: 2nd reason for applying for Food S" 6877 RFS1 = "GI: Reason for stopping Food Stamps th" 6878 RFS2 = "GI: Reason for stopping Food Stamps th" 6879 RGB1R1 = "GI: 1st reason applying for General As" 6880 RGB1R2 = "GI: 2nd reason applying for General As" 6881 RGB2R1 = "GI: 1st reason applying for General As" 6882 RGB2R2 = "GI: 2nd reason applying for General As" 6883 RGS1 = "GI: Reason for stopping General Assist" 103 The SAS System 11:48 Wednesday, December 4, 2002 6884 RGS2 = "GI: Reason for stopping General Assist" 6885 ROB1R1 = "GI: 1st reason applying for Other Welf" 6886 ROB1R2 = "GI: 2nd reason applying for Other Welf" 6887 ROB2R1 = "GI: 1st reason applying for Other Welf" 6888 ROB2R2 = "GI: 2nd reason applying for Other Welf" 6889 ROS1 = "GI: Reason for stopping Other Welfare " 6890 ROS2 = "GI: Reason for stopping Other Welfare " 6891 RSB1R1 = "GI: 1st reason applying for SSI the 1s" 6892 RSB1R2 = "GI: 2nd reason applying for SSI the 1s" 6893 RSB2R1 = "GI: 1st reason applying for SSI the 2n" 6894 RSB2R2 = "GI: 2nd reason applying for SSI the 2n" 6895 RSS1 = "GI: Reason for stopping SSI the first " 6896 RSS2 = "GI: Reason for stopping SSI the second" 6897 EAST1A = "AS: U.S. governement savings bonds own" 6898 AAST1A = "AS: Allocation flag for EAST1A" 6899 EAST1B = "AS: IRA or Keogh account owned" 6900 AAST1B = "AS: Allocation flag for EAST1B" 6901 EAST1C = "AS: 401k or thrift plan owned" 6902 AAST1C = "AS: Allocation flag for EAST1C" 6903 EAST2A = "AS: Interest bearing checking account " 6904 AAST2A = "AS: Allocation flag for EAST2A" 6905 EAST2B = "AS: Savings account owned" 6906 AAST2B = "AS: Allocation flag for EAST2B" 6907 EAST2C = "AS: Money market deposit account owned" 6908 AAST2C = "AS: Allocation flag for EAST2C" 6909 EAST2D = "AS: Certificate of deposit owned" 6910 AAST2D = "AS: Allocation flag for EAST2D" 6911 EAST3A = "AS: Mutual funds owned" 6912 AAST3A = "AS: Allocation flag for EAST3A" 6913 EAST3B = "AS: Stocks owned" 6914 AAST3B = "AS: Allocation flag for EAST3B" 6915 EAST3C = "AS: Municipal or corporate bonds owned" 6916 AAST3C = "AS: Allocation flag for EAST3C" 6917 EAST3D = "AS: U.S. government securities owned" 6918 AAST3D = "AS: Allocation flag for EAST3D" 6919 EAST3E = "AS: Mortgage held" 6920 AAST3E = "AS: Allocation flag for EAST3E" 6921 EAST4A = "AS: Rental property owned" 6922 AAST4A = "AS: Allocation flag for EAST4A" 6923 EAST4B = "AS: Royalty income received" 6924 AAST4B = "AS: Allocation flag for EAST4B" 6925 EAST4C = "AS: Other financial investments owned" 6926 AAST4C = "AS: Allocation flag for EAST4C" 6927 EJNTRNT = "AS: Rent from property jointly owned w" 6928 AJNTRNT = "AS: Allocation flag for EJNTRNT" 6929 TJARNT = "AS: Amount of gross rent from property" 6930 AJARNT = "AS: Allocation flag for TJARNT" 6931 TJACLR = "AS: Amt of net rent from prop. held jo" 6932 AJACLR = "AS: Allocation flag for TJACLR" 6933 EOWNRNT = "AS: Rent from property owned entirely " 6934 AOWNRNT = "AS: Allocation flag for EOWNRNT" 6935 TOARNT = "AS: Amount of gross rent from own prop" 6936 AOARNT = "AS: Allocation flag for TOARNT" 6937 TOACLR = "AS: Amount of net income from own rent" 6938 AOACLR = "AS: Allocation flag for TOACLR" 6939 EJRNT2 = "AS: Rent from property owned with othe" 6940 AJRNT2 = "AS: Allocation flag for EJRNT2" 6941 TJACLR2 = "AS: Amount of net income from rental" 6942 AJACLR2 = "AS: Allocation flag for TJACLR2" 6943 EMRTJNT = "AS: Mortgage owned jointly with spouse" 6944 AMRTJNT = "AS: Allocation flag for EMRTJNT" 6945 TMIJNT = "AS: Amount of interest paid on mortgag" 6946 AMIJNT = "AS: Allocation flag for TMIJNT" 6947 EMRTOWN = "AS: Mortgages held in own name" 6948 AMRTOWN = "AS: Allocation flag for EMRTOWN" 6949 TMIOWN = "AS: Amount of interest paid on own mor" 6950 AMIOWN = "AS: Allocation flag for TMIOWN" 6951 TRNDUP1 = "AS: Amount of income from royalties" 6952 ARNDUP1 = "AS: Allocation flag for TRNDUP1" 6953 TRNDUP2 = "AS: Amount of other income from financ" 6954 ARNDUP2 = "AS: Allocation flag for TRNDUP2." 6955 TOTHPROP = "AS: Amount of total other property inc" 6956 ECKJT = "AS: Jointly owned interest bearing che" 6957 ACKJT = "AS: Allocation flag for ECKJT" 6958 TCKJTINT = "AS: Amount of mnthly interest from joi" 6959 ACKJTINT = "AS: Allocation flag for TCKJTINT." 104 The SAS System 11:48 Wednesday, December 4, 2002 6960 ECKOAST = "AS: Solely owned interest bearing chec" 6961 ACKOAST = "AS: Allocation flag for ECKOAST" 6962 TCKOINT = "AS: Amount of monthly interest from ow" 6963 ACKOINT = "AS: Allocation flag for TCKOINT." 6964 ESVJT = "AS: Ownership of jointly held savings" 6965 ASVJT = "AS: Allocation flag for ESVJT" 6966 TSVJTINT = "AS: Amount of monthly interest on join" 6967 ASVJTINT = "AS: Allocation flag for TSVJTINT" 6968 ESVOAST = "AS: Ownership of solely held savings a" 6969 ASVOAST = "AS: Allocation flag for ESVOAST." 6970 TSVOINT = "AS: Amount of monthly interest from ow" 6971 ASVOINT = "AS: Allocation flag for TSVOINT" 6972 EMDJT = "AS: Jointly owned money market deposit" 6973 AMDJT = "AS: Allocation flag for EMDJT" 6974 TMDJTINT = "AS: Amount of monthly interest on join" 6975 AMDJTINT = "AS: Allocation flag for TMDJTINT" 6976 EMDOAST = "AS: Solely owned money market deposit" 6977 AMDOAST = "AS: Allocation flag for EMDOAST" 6978 TMDOINT = "AS: Amt of monthly interest from own m" 6979 AMDOINT = "AS: Allocation flag for TMDOINT" 6980 ECDJT = "AS: Jointly owned certificates of depo" 6981 ACDJT = "AS: Allocation flag for ECDJT" 6982 TCDJTINT = "AS: Amount of monthly interest from jo" 6983 ACDJTINT = "AS: Allocation flag for TCDJTINT" 6984 ECDOAST = "AS: Solely owned certificates of depos" 6985 ACDOAST = "AS: Allocation flag for ECDOAST." 6986 TCDOINT = "AS: Amount of monthly interest from so" 6987 ACDOINT = "AS: Allocation flag for TCDOINT" 6988 EBDJT = "AS: Jointly owned municipal or corpora" 6989 ABDJT = "AS: Allocation flag for EBDJT." 6990 TBDJTINT = "AS: Amnt of monthly interest from join" 6991 ABDJTINT = "AS: Allocation flag for TBDJTINT" 6992 EBDOAST = "AS: Solely owned municipal or corporat" 6993 ABDOAST = "AS: Allocation flag for EBDOAST" 6994 TBDOINT = "AS: Amount of monthly interest from ow" 6995 ABDOINT = "AS: Allocation flag for TBDOINT" 6996 EGVJT = "AS: Jointly owned U.S. Government secu" 6997 AGVJT = "AS: Allocation flag for EGVJT" 6998 TGVJTINT = "AS: Amount of monthly int from joint U" 6999 AGVJTINT = "AS: Allocation flag for TGVJTINT" 7000 EGVOAST = "AS: Solely owned U.S. Government secur" 7001 AGVOAST = "AS: Allocation flag for EGVOAST" 7002 TGVOINT = "AS: Amount of monthly int from own US " 7003 AGVOINT = "AS: Allocation flag for TGVOINT" 7004 TINTINC = "AS: Amount of all interest income" 7005 EMANYCHK = "AS: Dividend check from joint/sole own" 7006 AMANYCHK = "AS: Allocation flag for EMANYCHK" 7007 TMJNTDIV = "AS: Amount of check from jointly held " 7008 AMJNTDIV = "AS: Allocation flag for TMJNTDIV" 7009 TMOWNDIV = "AS: Amount of check from solely held m" 7010 AMOWNDIV = "AS: Allocation flag for TMOWNDIV" 7011 EMOTHDIV = "AS: Dividends credited against margin" 7012 AMOTHDIV = "AS: Allocation flag for EMOTHDIV" 7013 TMJADIV = "AS: Amount of dividends credited to jo" 7014 AMJADIV = "AS: Allocation flag for TMJADIV" 7015 TMOWNADV = "AS: Amount of dividends credited to ow" 7016 AMOWNADV = "AS: Allocation flag for TMOWNADV" 7017 ESANYCHK = "AS: Dividend check for jointly or sole" 7018 ASANYCHK = "AS: Allocation flag for ESANYCHK" 7019 TSJNTDIV = "AS: Amount of dividend check from join" 7020 ASJNTDIV = "AS: Allocation flag for TSJNTDIV" 7021 TSOWNDIV = "AS: Amount of dividend check for solel" 7022 ASOWNDIV = "AS: Allocation flag for TSOWNDIV" 7023 ESOTHDIV = "AS: Dividends credited to margin accou" 7024 ASOTHDIV = "AS: Allocation flag for ESOTHDIV" 7025 TSJADIV = "AS: Amount of dividend credited to a j" 7026 ASJADIV = "AS: Allocation flag for TSJADIV" 7027 TSOWNADV = "AS: Amount of dividend credited solely" 7028 ASOWNADV = "AS: Allocation flag for TSOWNADV" 7029 TDIVINC = "AS: Total amount of all dividend incom" 7030 ECRMTH = "HI: Medicare coverage in this month" 7031 ACRMTH = "HI: Allocation flag for ECRMTH" 7032 RMEDCODE = "HI: Type of Medicare Coverage" 7033 ECDMTH = "HI: Medicaid coverage in this month" 7034 ACDMTH = "HI: Allocation flag for ECDMTH" 7035 ECDUNT1 = "HI: 1st Medicaid coverage unit for thi" 105 The SAS System 11:48 Wednesday, December 4, 2002 7036 ECDUNT2 = "HI: 2nd Medicaid coverage unit for thi" 7037 ECDUNT3 = "HI: 3rd Medicaid coverage unit for thi" 7038 EHIMTH = "HI: Private health insurance coverage " 7039 AHIMTH = "HI: Allocation flag for EHIMTH" 7040 EHIOWNER = "HI: Covered by own plan or someone els" 7041 AHIOWNER = "HI: Allocation flag for EHIOWNER" 7042 ENONHH = "HI: Covered by plan owned by person ou" 7043 RCHAMPM = "HI: Military related health care cover" 7044 EHIUNT1 = "HI: 1st health insurance coverage unit" 7045 EHIUNT2 = "HI: 2nd health insurance coverage unit" 7046 EHIUNT3 = "HI: 3rd health insurance coverage unit" 7047 EHEMPLY = "HI: Source of health insurance" 7048 AHEMPLY = "HI: Allocation flag for EHEMPLY" 7049 EHICOST = "HI: Employer/union paid all or part of" 7050 AHICOST = "HI: Allocation flag for EHICOST" 7051 EHIOTHER = "HI: Health insurance coverage of" 7052 AHIOTHER = "HI: Allocation flag for EHIOTHER" 7053 EHISPSE = "HI: Coverage of spouse outside the hou" 7054 AHISPSE = "HI: Allocation flag for EHISPSE" 7055 EHIOLDKD = "HI: Coverage of older child (18+) outs" 7056 AHIOLDKD = "HI: Allocation flag for EHIOLDKD" 7057 EHIYNGKD = "HI: Coverage of younger child (under 1" 7058 AHIYNGKD = "HI: Allocation flag for EHIYNGKD" 7059 EHIOTHR = "HI: Coverage of other person(s) outsid" 7060 AHIOTHR = "HI: Allocation flag for EHIOTHR" 7061 EHIRSN01 = "HI: Reason not covered: too expensive," 7062 EHIRSN02 = "HI: Reason not covered: HI not offered" 7063 EHIRSN03 = "HI: Reason not covered: not at job lon" 7064 EHIRSN04 = "HI: Reason not covered: job layoff, lo" 7065 EHIRSN05 = "HI: Reason not covered: not eligible-p" 7066 EHIRSN06 = "HI: Reason not covered: poor health," 7067 EHIRSN07 = "HI: Reason not covered: don't believe " 7068 EHIRSN08 = "HI: Reason not covered: haven't needed" 7069 EHIRSN09 = "HI: Reason not covered: Use VA or mili" 7070 EHIRSN10 = "HI: Reason not covered: covered by oth" 7071 EHIRSN11 = "HI: Reason not covered: no longer cove" 7072 EHIRSN12 = "HI: Reason not covered: some other rea" 7073 AHIRSN = "HI: Allocation for variables EHIRSN01" 7074 RPRVHI = "HI: Recode for types of private health" 7075 ; 7076 NOTE: The infile RAW is: Pipe command="unzip -p /homes/data/sipp/1996/sipp96w2.zip " NOTE: 6 records were read from the infile RAW. The minimum record length was 2136. The maximum record length was 2136. NOTE: The data set LIBRARY.SIP96W2 has 6 observations and 908 variables. NOTE: DATA statement used: real time 2.020 seconds cpu time 0.706 seconds 7077 proc print data=library.sip96w2 (obs=6); 7078 7079 7080 FORMAT 7081 SPANEL SPANEL. 7082 SREFMON SREFMON. 7083 RHCALMN RHCALMN. 7084 RHTYPE RHTYPE. 7085 TMETRO TMETRO. 7086 RHCHANGE RHCHANGE. 7087 EACCESS EACCESS. 7088 AACCESS AACCESS. 7089 EUNITS EUNITS. 7090 AUNITS AUNITS. 7091 ELIVQRT ELIVQRT. 7092 ALIVQRT ALIVQRT. 7093 ETENURE ETENURE. 7094 ATENURE ATENURE. 7095 EPUBHSE EPUBHSE. 7096 APUBHSE APUBHSE. 7097 EGVTRNT EGVTRNT. 7098 AGVTRNT AGVTRNT. 106 The SAS System 11:48 Wednesday, December 4, 2002 7099 TMTHRNT TMTHRNT. 7100 AMTHRNT AMTHRNT. 7101 EUTILYN EUTILYN. 7102 AUTILYN AUTILYN. 7103 EEGYAST EEGYAST. 7104 AEGYAST AEGYAST. 7105 EEGYPMT1 EEGYPMTA. 7106 EEGYPMT2 EEGYPMTB. 7107 EEGYPMT3 EEGYPMTC. 7108 AEGYPMT AEGYPMT. 7109 EEGYAMT EEGYAMT. 7110 AEGYAMT AEGYAMT. 7111 EHOTLUNC EHOTLUNC. 7112 AHOTLUNC AHOTLUNC. 7113 RNKLUN RNKLUN. 7114 EFREELUN EFREELUN. 7115 AFREELUN AFREELUN. 7116 EFRERDLN EFRERDLN. 7117 AFRERDLN AFRERDLN. 7118 EBRKFST EBRKFST. 7119 ABRKFST ABRKFST. 7120 RNKBRK RNKBRK. 7121 EFREEBRK EFREEBRK. 7122 AFREEBRK AFREEBRK. 7123 EFRERDBK EFRERDBK. 7124 AFRERDBK AFRERDBK. 7125 RPRGQUES RPRGQUES. 7126 RHNBRF RHNBRF. 7127 RHCBRF RHCBRF. 7128 RHMTRF RHMTRF. 7129 RFID2 RFID2L. 7130 EFSPOUSE EFSPOUSE. 7131 EFTYPE EFTYPE. 7132 RFCHANGE RFCHANGE. 7133 EFKIND EFKIND. 7134 RSID RSID. 7135 ESFNP ESFNP. 7136 ESFRFPER ESFRFPER. 7137 ESFSPSE ESFSPSE. 7138 ESFTYPE ESFTYPE. 7139 ESFKIND ESFKIND. 7140 RSCHANGE RSCHANGE. 7141 ESOWNKID ESOWNKID. 7142 ESOKLT18 ESOKLT1H. 7143 WSFINWGT WSFINWGT. 7144 TSFEARN TSFEARN. 7145 TSPRPINC TSPRPINC. 7146 TSTRNINC TSTRNINC. 7147 TSOTHINC TSOTHINC. 7148 TSTOTINC TSTOTINC. 7149 TSFPOV TSFPOV. 7150 TSPNDIST TSPNDIST. 7151 TSLUMPSM TSLUMPSM. 7152 TSSOCSEC TSSOCSEC. 7153 TSSSI TSSSI. 7154 TSVETS TSVETS. 7155 TSUNEMP TSUNEMP. 7156 TSAFDC TSAFDC. 7157 TSFDSTP TSFDSTP. 7158 EPPINTVW EPPINTVW. 7159 EPOPSTAT EPOPSTAT. 7160 ABMNTH ABMNTH. 7161 ABYEAR ABYEAR. 7162 ESEX ESEX. 7163 ASEX ASEX. 7164 ERACE ERACE. 7165 ARACE ARACE. 7166 AORIGIN AORIGIN. 7167 UEVRWID UEVRWID. 7168 UEVRDIV UEVRDIV. 7169 EAFNOW EAFNOW. 7170 AAFNOW AAFNOW. 7171 EAFEVER EAFEVER. 7172 AAFEVER AAFEVER. 7173 UAF1 UAF1L. 7174 UAF2 UAF2L. 107 The SAS System 11:48 Wednesday, December 4, 2002 7175 UAF3 UAF3L. 7176 UAF4 UAF4L. 7177 UAF5 UAF5L. 7178 EVAYN EVAYN. 7179 AVAYN AVAYN. 7180 EVETTYP EVETTYP. 7181 AVETTYP AVETTYP. 7182 EVAQUES EVAQUES. 7183 AVAQUES AVAQUES. 7184 EAFSRVDI EAFSRVDI. 7185 AAFSRVDI AAFSRVDI. 7186 ESFR ESFR. 7187 ESFT ESFT. 7188 TAGE TAGE. 7189 AAGE AAGE. 7190 ERRP ERRP. 7191 ARRP ARRP. 7192 EMS EMS. 7193 AMS AMS. 7194 EPNSPOUS EPNSPOUS. 7195 APNSPOUS APNSPOUS. 7196 EPNMOM EPNMOM. 7197 APNMOM APNMOM. 7198 EPNDAD EPNDAD. 7199 APNDAD APNDAD. 7200 EPNGUARD EPNGUARD. 7201 APNGUARD APNGUARD. 7202 ETYPMOM ETYPMOM. 7203 ATYPMOM ATYPMOM. 7204 ETYPDAD ETYPDAD. 7205 ATYPDAD ATYPDAD. 7206 RDESGPNT RDESGPNT. 7207 ULFTMAIN ULFTMAIN. 7208 UENTMAIN UENTMAIN. 7209 ULFTDAY ULFTDAY. 7210 ULFTMON ULFTMON. 7211 UENTDAY UENTDAY. 7212 UENTMON UENTMON. 7213 TPEARN TPEARN. 7214 TPPRPINC TPPRPINC. 7215 TPTRNINC TPTRNINC. 7216 TPOTHINC TPOTHINC. 7217 TPTOTINC TPTOTINC. 7218 TPPNDIST TPPNDIST. 7219 TPLUMPSM TPLUMPSM. 7220 EHTLNYN EHTLNYN. 7221 AHTLNYN AHTLNYN. 7222 EBKFSYN EBKFSYN. 7223 ABKFSYN ABKFSYN. 7224 RCUTYP01 RCUTYP0A. 7225 RCUOWN01 RCUOWN0A. 7226 RCUTYP03 RCUTYP0C. 7227 RCUOWN03 RCUOWN0C. 7228 RCUTYP04 RCUTYP0D. 7229 RCUOWN04 RCUOWN0D. 7230 RCUTYP08 RCUTYP0H. 7231 RCUOWN8A RCUOWN8A. 7232 RCUOWN8B RCUOWN8B. 7233 RCUTYP20 RCUTYP2J. 7234 RCUOWN20 RCUOWN2J. 7235 RCUTYP21 RCUTYP2A. 7236 RCUOW21A RCUOW21A. 7237 RCUOW21B RCUOW21B. 7238 RCUTYP23 RCUTYP2C. 7239 RCUOWN23 RCUOWN2C. 7240 RCUTYP24 RCUTYP2D. 7241 RCUOW24A RCUOW24A. 7242 RCUOW24B RCUOW24B. 7243 RCUTYP25 RCUTYP2E. 7244 RCUOWN25 RCUOWN2E. 7245 RCUTYP27 RCUTYP2G. 7246 RCUOWN27 RCUOWN2G. 7247 RCUTYP57 RCUTYP5G. 7248 RCUOWN57 RCUOWN5G. 7249 RCUTYP58 RCUTYP5H. 7250 RCUOW58A RCUOW58A. 108 The SAS System 11:48 Wednesday, December 4, 2002 7251 RCUOW58B RCUOW58B. 7252 RENROLL RENROLL. 7253 ARENROLL ARENROLL. 7254 EENRLM EENRLM. 7255 AENRLM AENRLM. 7256 RENRLMA RENRLMA. 7257 EENLEVEL EENLEVEL. 7258 AENLEVEL AENLEVEL. 7259 EEDFUND EEDFUND. 7260 AEDFUND AEDFUND. 7261 EASST01 EASST01L. 7262 EASST03 EASST03L. 7263 EASST04 EASST04L. 7264 EASST05 EASST05L. 7265 EASST06 EASST06L. 7266 EASST07 EASST07L. 7267 EASST08 EASST08L. 7268 EASST09 EASST09L. 7269 EASST10 EASST10L. 7270 EASST11 EASST11L. 7271 AEDASST AEDASST. 7272 EEDUCATE EEDUCATE. 7273 AEDUCATE AEDUCATE. 7274 EPDJBTHN EPDJBTHN. 7275 APDJBTHN APDJBTHN. 7276 EPPFLAG EPPFLAG. 7277 EMAX EMAX. 7278 EBUSCNTR EBUSCNTR. 7279 EJOBCNTR EJOBCNTR. 7280 EEVERET EEVERET. 7281 AEVERET AEVERET. 7282 EDISABL EDISABL. 7283 ADISABL ADISABL. 7284 EDISPREV EDISPREV. 7285 ADISPREV ADISPREV. 7286 ERSNOWRK ERSNOWRK. 7287 ARSNOWRK ARSNOWRK. 7288 EAWOP EAWOP. 7289 AAWOP AAWOP. 7290 EABRE EABRE. 7291 AABRE AABRE. 7292 EPTWRK EPTWRK. 7293 APTWRK APTWRK. 7294 EPTRESN EPTRESN. 7295 APTRESN APTRESN. 7296 ELKWRK ELKWRK. 7297 ALKWRK ALKWRK. 7298 ELAYOFF ELAYOFF. 7299 ALAYOFF ALAYOFF. 7300 RTAKJOB RTAKJOB. 7301 RNOTAKE RNOTAKE. 7302 EMOONLIT EMOONLIT. 7303 AMOONLIT AMOONLIT. 7304 TMLMSUM TMLMSUM. 7305 AMLMSUM AMLMSUM. 7306 EBFLAG EBFLAG. 7307 ECFLAG ECFLAG. 7308 RMESR RMESR. 7309 RWKESR1 RWKESR1L. 7310 RWKESR2 RWKESR2L. 7311 RWKESR3 RWKESR3L. 7312 RWKESR4 RWKESR4L. 7313 RWKESR5 RWKESR5L. 7314 RMWKWJB RMWKWJB. 7315 RMWKSAB RMWKSAB. 7316 AWKSAB AWKSAB. 7317 RMWKLKG RMWKLKG. 7318 AWKLKG AWKLKG. 7319 RMHRSWK RMHRSWK. 7320 RWKSPERM RWKSPERM. 7321 EENO1 EENO1L. 7322 ESTLEMP1 ESTLEMPA. 7323 ASTLEMP1 ASTLEMPA. 7324 TSJDATE1 TSJDATEA. 7325 ASJDATE1 ASJDATEA. 7326 TEJDATE1 TEJDATEA. 109 The SAS System 11:48 Wednesday, December 4, 2002 7327 AEJDATE1 AEJDATEA. 7328 ERSEND1 ERSEND1L. 7329 ARSEND1 ARSEND1L. 7330 EJBHRS1 EJBHRS1L. 7331 AJBHRS1 AJBHRS1L. 7332 EEMPLOC1 EEMPLOCA. 7333 AEMPLOC1 AEMPLOCA. 7334 TEMPALL1 TEMPALLA. 7335 AEMPALL1 AEMPALLA. 7336 TEMPSIZ1 TEMPSIZA. 7337 AEMPSIZ1 AEMPSIZA. 7338 ECLWRK1 ECLWRK1L. 7339 ACLWRK1 ACLWRK1L. 7340 EUNION1 EUNION1L. 7341 AUNION1 AUNION1L. 7342 ECNTRC1 ECNTRC1L. 7343 ACNTRC1 ACNTRC1L. 7344 TPMSUM1 TPMSUM1L. 7345 APMSUM1 APMSUM1L. 7346 EPAYHR1 EPAYHR1L. 7347 APAYHR1 APAYHR1L. 7348 TPYRATE1 TPYRATEA. 7349 APYRATE1 APYRATEA. 7350 RPYPER1 RPYPER1L. 7351 AJBIND1 AJBIND1L. 7352 AJBOCC1 AJBOCC1L. 7353 EENO2 EENO2L. 7354 ESTLEMP2 ESTLEMPB. 7355 ASTLEMP2 ASTLEMPB. 7356 TSJDATE2 TSJDATEB. 7357 ASJDATE2 ASJDATEB. 7358 TEJDATE2 TEJDATEB. 7359 AEJDATE2 AEJDATEB. 7360 ERSEND2 ERSEND2L. 7361 ARSEND2 ARSEND2L. 7362 EJBHRS2 EJBHRS2L. 7363 AJBHRS2 AJBHRS2L. 7364 EEMPLOC2 EEMPLOCB. 7365 AEMPLOC2 AEMPLOCB. 7366 TEMPALL2 TEMPALLB. 7367 AEMPALL2 AEMPALLB. 7368 TEMPSIZ2 TEMPSIZB. 7369 AEMPSIZ2 AEMPSIZB. 7370 ECLWRK2 ECLWRK2L. 7371 ACLWRK2 ACLWRK2L. 7372 EUNION2 EUNION2L. 7373 AUNION2 AUNION2L. 7374 ECNTRC2 ECNTRC2L. 7375 ACNTRC2 ACNTRC2L. 7376 TPMSUM2 TPMSUM2L. 7377 APMSUM2 APMSUM2L. 7378 EPAYHR2 EPAYHR2L. 7379 APAYHR2 APAYHR2L. 7380 TPYRATE2 TPYRATEB. 7381 APYRATE2 APYRATEB. 7382 RPYPER2 RPYPER2L. 7383 AJBIND2 AJBIND2L. 7384 AJBOCC2 AJBOCC2L. 7385 EBNO1 EBNO1L. 7386 EBIZNOW1 EBIZNOWA. 7387 ABIZNOW1 ABIZNOWA. 7388 TSBDATE1 TSBDATEA. 7389 ASBDATE1 ASBDATEA. 7390 TEBDATE1 TEBDATEA. 7391 AEBDATE1 AEBDATEA. 7392 ERENDB1 ERENDB1L. 7393 ARENDB1 ARENDB1L. 7394 EHRSBS1 EHRSBS1L. 7395 AHRSBS1 AHRSBS1L. 7396 EGROSB1 EGROSB1L. 7397 AGROSB1 AGROSB1L. 7398 EGRSSB1 EGRSSB1L. 7399 AGRSSB1 AGRSSB1L. 7400 TEMPB1 TEMPB1L. 7401 AEMPB1 AEMPB1L. 7402 EINCPB1 EINCPB1L. 110 The SAS System 11:48 Wednesday, December 4, 2002 7403 AINCPB1 AINCPB1L. 7404 EPROPB1 EPROPB1L. 7405 APROPB1 APROPB1L. 7406 EHPRTB1 EHPRTB1L. 7407 AHPRTB1 AHPRTB1L. 7408 ESLRYB1 ESLRYB1L. 7409 ASLRYB1 ASLRYB1L. 7410 EOINCB1 EOINCB1L. 7411 AOINCB1 AOINCB1L. 7412 TPRFTB1 TPRFTB1L. 7413 APRFTB1 APRFTB1L. 7414 TBMSUM1 TBMSUM1L. 7415 ABMSUM1 ABMSUM1L. 7416 EPARTB11 EPARTB1A. 7417 EPARTB21 EPARTB2A. 7418 EPARTB31 EPARTB3A. 7419 TBSIND1 TBSIND1L. 7420 ABSIND1 ABSIND1L. 7421 ABSOCC1 ABSOCC1L. 7422 EBNO2 EBNO2L. 7423 EBIZNOW2 EBIZNOWB. 7424 ABIZNOW2 ABIZNOWB. 7425 TSBDATE2 TSBDATEB. 7426 ASBDATE2 ASBDATEB. 7427 TEBDATE2 TEBDATEB. 7428 AEBDATE2 AEBDATEB. 7429 ERENDB2 ERENDB2L. 7430 ARENDB2 ARENDB2L. 7431 EHRSBS2 EHRSBS2L. 7432 AHRSBS2 AHRSBS2L. 7433 EGROSB2 EGROSB2L. 7434 AGROSB2 AGROSB2L. 7435 EGRSSB2 EGRSSB2L. 7436 AGRSSB2 AGRSSB2L. 7437 TEMPB2 TEMPB2L. 7438 AEMPB2 AEMPB2L. 7439 EINCPB2 EINCPB2L. 7440 AINCPB2 AINCPB2L. 7441 EPROPB2 EPROPB2L. 7442 APROPB2 APROPB2L. 7443 EHPRTB2 EHPRTB2L. 7444 AHPRTB2 AHPRTB2L. 7445 ESLRYB2 ESLRYB2L. 7446 ASLRYB2 ASLRYB2L. 7447 EOINCB2 EOINCB2L. 7448 AOINCB2 AOINCB2L. 7449 TPRFTB2 TPRFTB2L. 7450 APRFTB2 APRFTB2L. 7451 TBMSUM2 TBMSUM2L. 7452 ABMSUM2 ABMSUM2L. 7453 EPARTB12 EPARTB1B. 7454 EPARTB22 EPARTB2B. 7455 EPARTB32 EPARTB3B. 7456 TBSIND2 TBSIND2L. 7457 ABSIND2 ABSIND2L. 7458 ABSOCC2 ABSOCC2L. 7459 EUECTYP5 EUECTYPE. 7460 AUECTYP5 AUECTYPE. 7461 EUECTYP7 EUECTYPG. 7462 AUECTYP7 AUECTYPG. 7463 ELMPTYP1 ELMPTYPA. 7464 ALMPTYP1 ALMPTYPA. 7465 ELMPTYP2 ELMPTYPB. 7466 ALMPTYP2 ALMPTYPB. 7467 ELMPTYP3 ELMPTYPC. 7468 ALMPTYP3 ALMPTYPC. 7469 ESSSELF ESSSELF. 7470 ASSSELF ASSSELF. 7471 ESSCHILD ESSCHILD. 7472 ASSCHILD ASSCHILD. 7473 ESSICHLD ESSICHLD. 7474 ASSICHLD ASSICHLD. 7475 ESSISELF ESSISELF. 7476 ASSISELF ASSISELF. 7477 ESTSSI ESTSSI. 7478 ASTSSI ASTSSI. 111 The SAS System 11:48 Wednesday, December 4, 2002 7479 RWCMPRSN RWCMPRSN. 7480 AWCMPRSN AWCMPRSN. 7481 RINSRSN RINSRSN. 7482 AINSRSN AINSRSN. 7483 REMPDRSN REMPDRSN. 7484 AEMPDRSN AEMPDRSN. 7485 RPENSRSN RPENSRSN. 7486 APENSRSN APENSRSN. 7487 RFCSRSN RFCSRSN. 7488 AFCSRSN AFCSRSN. 7489 RSTATRSN RSTATRSN. 7490 ASTATRSN ASTATRSN. 7491 RLGOVRSN RLGOVRSN. 7492 ALGOVRSN ALGOVRSN. 7493 RMILRSN RMILRSN. 7494 AMILRSN AMILRSN. 7495 RRRSN RRRSN. 7496 ARRRSN ARRRSN. 7497 RBLKLRSN RBLKLRSN. 7498 ABLKLRSN ABLKLRSN. 7499 ROTHRRSN ROTHRRSN. 7500 AOTHRRSN AOTHRRSN. 7501 RLIFIRSN RLIFIRSN. 7502 ALIFIRSN ALIFIRSN. 7503 RVETSRSN RVETSRSN. 7504 AVETSRSN AVETSRSN. 7505 RESTARSN RESTARSN. 7506 AESTARSN AESTARSN. 7507 EFCCYN EFCCYN. 7508 AFCCYN AFCCYN. 7509 ECSAGREE ECSAGREE. 7510 ACSAGREE ACSAGREE. 7511 ECSYN ECSYN. 7512 ACSYN ACSYN. 7513 EALIYN EALIYN. 7514 AALIYN AALIYN. 7515 EFSYN EFSYN. 7516 AFSYN AFSYN. 7517 EPSSTHRU EPSSTHRU. 7518 APSSTHRU APSSTHRU. 7519 EWICYN EWICYN. 7520 AWICYN AWICYN. 7521 EPATYN EPATYN. 7522 APATYN APATYN. 7523 EPATYP1 EPATYP1L. 7524 APATYP1 APATYP1L. 7525 EPATYP2 EPATYP2L. 7526 APATYP2 APATYP2L. 7527 EPATYP3 EPATYP3L. 7528 APATYP3 APATYP3L. 7529 EPATYP4 EPATYP4L. 7530 APATYP4 APATYP4L. 7531 EASETDRW EASETDRW. 7532 AASETDRW AASETDRW. 7533 EJNTSSYN EJNTSSYN. 7534 AJNTSSYN AJNTSSYN. 7535 ER01A ER01A. 7536 AR01A AR01A. 7537 ER01K ER01K. 7538 AR01K AR01K. 7539 ER02 ER02L. 7540 AR02 AR02L. 7541 ER03A ER03A. 7542 AR03A AR03A. 7543 ER03K ER03K. 7544 AR03K AR03K. 7545 ER04 ER04L. 7546 AR04 AR04L. 7547 ER05 ER05L. 7548 AR05 AR05L. 7549 ER07 ER07L. 7550 AR07 AR07L. 7551 ER08 ER08L. 7552 AR08 AR08L. 7553 ER09 ER09L. 7554 AR09 AR09L. 112 The SAS System 11:48 Wednesday, December 4, 2002 7555 ER10 ER10L. 7556 AR10 AR10L. 7557 ER12 ER12L. 7558 AR12 AR12L. 7559 ER13 ER13L. 7560 AR13 AR13L. 7561 ER14 ER14L. 7562 AR14 AR14L. 7563 ER15 ER15L. 7564 AR15 AR15L. 7565 ER20 ER20L. 7566 AR20 AR20L. 7567 ER21 ER21L. 7568 AR21 AR21L. 7569 ER23 ER23L. 7570 AR23 AR23L. 7571 ER24 ER24L. 7572 AR24 AR24L. 7573 ER25 ER25L. 7574 AR25 AR25L. 7575 ER26 ER26L. 7576 AR26 AR26L. 7577 ER27 ER27L. 7578 AR27 AR27L. 7579 ER28 ER28L. 7580 AR28 AR28L. 7581 ER29 ER29L. 7582 AR29 AR29L. 7583 ER30 ER30L. 7584 AR30 AR30L. 7585 ER31 ER31L. 7586 AR31 AR31L. 7587 ER32 ER32L. 7588 AR32 AR32L. 7589 ER34 ER34L. 7590 AR34 AR34L. 7591 ER35 ER35L. 7592 AR35 AR35L. 7593 ER36 ER36L. 7594 AR36 AR36L. 7595 ER37 ER37L. 7596 AR37 AR37L. 7597 ER38 ER38L. 7598 AR38 AR38L. 7599 ER39 ER39L. 7600 AR39 AR39L. 7601 ER42 ER42L. 7602 AR42 AR42L. 7603 ER50 ER50L. 7604 AR50 AR50L. 7605 ER51 ER51L. 7606 AR51 AR51L. 7607 ER52 ER52L. 7608 AR52 AR52L. 7609 ER53 ER53L. 7610 AR53 AR53L. 7611 ER55 ER55L. 7612 AR55 AR55L. 7613 ER56 ER56L. 7614 AR56 AR56L. 7615 ER75 ER75L. 7616 AR75 AR75L. 7617 T01AMTA T01AMTA. 7618 A01AMTA A01AMTA. 7619 T01AMTK T01AMTK. 7620 A01AMTK A01AMTK. 7621 T02AMT T02AMT. 7622 A02AMT A02AMT. 7623 T03AMTA T03AMTA. 7624 A03AMTA A03AMTA. 7625 T03AMTK T03AMTK. 7626 A03AMTK A03AMTK. 7627 T04AMT T04AMT. 7628 A04AMT A04AMT. 7629 T05AMT T05AMT. 7630 A05AMT A05AMT. 113 The SAS System 11:48 Wednesday, December 4, 2002 7631 T07AMT T07AMT. 7632 A07AMT A07AMT. 7633 T08AMT T08AMT. 7634 A08AMT A08AMT. 7635 T09AMT T09AMT. 7636 A09AMT A09AMT. 7637 T10AMT T10AMT. 7638 A10AMT A10AMT. 7639 T12AMT T12AMT. 7640 A12AMT A12AMT. 7641 T13AMT T13AMT. 7642 A13AMT A13AMT. 7643 T14AMT T14AMT. 7644 A14AMT A14AMT. 7645 T15AMT T15AMT. 7646 A15AMT A15AMT. 7647 T20AMT T20AMT. 7648 A20AMT A20AMT. 7649 T21AMT T21AMT. 7650 A21AMT A21AMT. 7651 T23AMT T23AMT. 7652 A23AMT A23AMT. 7653 T24AMT T24AMT. 7654 A24AMT A24AMT. 7655 T25AMT T25AMT. 7656 A25AMT A25AMT. 7657 T26AMT T26AMT. 7658 A26AMT A26AMT. 7659 T27AMT T27AMT. 7660 A27AMT A27AMT. 7661 T28AMT T28AMT. 7662 A28AMT A28AMT. 7663 T29AMT T29AMT. 7664 A29AMT A29AMT. 7665 T30AMT T30AMT. 7666 A30AMT A30AMT. 7667 T31AMT T31AMT. 7668 A31AMT A31AMT. 7669 T32AMT T32AMT. 7670 A32AMT A32AMT. 7671 T34AMT T34AMT. 7672 A34AMT A34AMT. 7673 T35AMT T35AMT. 7674 A35AMT A35AMT. 7675 T36AMT T36AMT. 7676 A36AMT A36AMT. 7677 T37AMT T37AMT. 7678 A37AMT A37AMT. 7679 T38AMT T38AMT. 7680 A38AMT A38AMT. 7681 T39AMT T39AMT. 7682 A39AMT A39AMT. 7683 T42AMT T42AMT. 7684 A42AMT A42AMT. 7685 T50AMT T50AMT. 7686 A50AMT A50AMT. 7687 T51AMT T51AMT. 7688 A51AMT A51AMT. 7689 T52AMT T52AMT. 7690 A52AMT A52AMT. 7691 T53AMT T53AMT. 7692 A53AMT A53AMT. 7693 T55AMT T55AMT. 7694 A55AMT A55AMT. 7695 T56AMT T56AMT. 7696 A56AMT A56AMT. 7697 T75AMT T75AMT. 7698 A75AMT A75AMT. 7699 TCSAGY TCSAGY. 7700 ACSAGY ACSAGY. 7701 EROLOVR1 EROLOVRA. 7702 AROLOVR1 AROLOVRA. 7703 EROLOVR2 EROLOVRB. 7704 AROLOVR2 AROLOVRB. 7705 TROLLAMT TROLLAMT. 7706 AROLLAMT AROLLAMT. 114 The SAS System 11:48 Wednesday, December 4, 2002 7707 RAB1R1 RAB1R1L. 7708 RAB1R2 RAB1R2L. 7709 RAB2R1 RAB2R1L. 7710 RAB2R2 RAB2R2L. 7711 RAS1 RAS1L. 7712 RAS2 RAS2L. 7713 RWB1R1 RWB1R1L. 7714 RWB1R2 RWB1R2L. 7715 RWB2R1 RWB2R1L. 7716 RWB2R2 RWB2R2L. 7717 RWS1 RWS1L. 7718 RWS2 RWS2L. 7719 RFB1R1 RFB1R1L. 7720 RFB1R2 RFB1R2L. 7721 RFB2R1 RFB2R1L. 7722 RFB2R2 RFB2R2L. 7723 RFS1 RFS1L. 7724 RFS2 RFS2L. 7725 RGB1R1 RGB1R1L. 7726 RGB1R2 RGB1R2L. 7727 RGB2R1 RGB2R1L. 7728 RGB2R2 RGB2R2L. 7729 RGS1 RGS1L. 7730 RGS2 RGS2L. 7731 ROB1R1 ROB1R1L. 7732 ROB1R2 ROB1R2L. 7733 ROB2R1 ROB2R1L. 7734 ROB2R2 ROB2R2L. 7735 ROS1 ROS1L. 7736 ROS2 ROS2L. 7737 RSB1R1 RSB1R1L. 7738 RSB1R2 RSB1R2L. 7739 RSB2R1 RSB2R1L. 7740 RSB2R2 RSB2R2L. 7741 RSS1 RSS1L. 7742 RSS2 RSS2L. 7743 EAST1A EAST1A. 7744 AAST1A AAST1A. 7745 EAST1B EAST1B. 7746 AAST1B AAST1B. 7747 EAST1C EAST1C. 7748 AAST1C AAST1C. 7749 EAST2A EAST2A. 7750 AAST2A AAST2A. 7751 EAST2B EAST2B. 7752 AAST2B AAST2B. 7753 EAST2C EAST2C. 7754 AAST2C AAST2C. 7755 EAST2D EAST2D. 7756 AAST2D AAST2D. 7757 EAST3A EAST3A. 7758 AAST3A AAST3A. 7759 EAST3B EAST3B. 7760 AAST3B AAST3B. 7761 EAST3C EAST3C. 7762 AAST3C AAST3C. 7763 EAST3D EAST3D. 7764 AAST3D AAST3D. 7765 EAST3E EAST3E. 7766 AAST3E AAST3E. 7767 EAST4A EAST4A. 7768 AAST4A AAST4A. 7769 EAST4B EAST4B. 7770 AAST4B AAST4B. 7771 EAST4C EAST4C. 7772 AAST4C AAST4C. 7773 EJNTRNT EJNTRNT. 7774 AJNTRNT AJNTRNT. 7775 TJARNT TJARNT. 7776 AJARNT AJARNT. 7777 TJACLR TJACLR. 7778 AJACLR AJACLR. 7779 EOWNRNT EOWNRNT. 7780 AOWNRNT AOWNRNT. 7781 TOARNT TOARNT. 7782 AOARNT AOARNT. 115 The SAS System 11:48 Wednesday, December 4, 2002 7783 TOACLR TOACLR. 7784 AOACLR AOACLR. 7785 EJRNT2 EJRNT2L. 7786 AJRNT2 AJRNT2L. 7787 TJACLR2 TJACLR2L. 7788 AJACLR2 AJACLR2L. 7789 EMRTJNT EMRTJNT. 7790 AMRTJNT AMRTJNT. 7791 TMIJNT TMIJNT. 7792 AMIJNT AMIJNT. 7793 EMRTOWN EMRTOWN. 7794 AMRTOWN AMRTOWN. 7795 TMIOWN TMIOWN. 7796 AMIOWN AMIOWN. 7797 TRNDUP1 TRNDUP1L. 7798 ARNDUP1 ARNDUP1L. 7799 TRNDUP2 TRNDUP2L. 7800 ARNDUP2 ARNDUP2L. 7801 TOTHPROP TOTHPROP. 7802 ECKJT ECKJT. 7803 ACKJT ACKJT. 7804 TCKJTINT TCKJTINT. 7805 ACKJTINT ACKJTINT. 7806 ECKOAST ECKOAST. 7807 ACKOAST ACKOAST. 7808 TCKOINT TCKOINT. 7809 ACKOINT ACKOINT. 7810 ESVJT ESVJT. 7811 ASVJT ASVJT. 7812 TSVJTINT TSVJTINT. 7813 ASVJTINT ASVJTINT. 7814 ESVOAST ESVOAST. 7815 ASVOAST ASVOAST. 7816 TSVOINT TSVOINT. 7817 ASVOINT ASVOINT. 7818 EMDJT EMDJT. 7819 AMDJT AMDJT. 7820 TMDJTINT TMDJTINT. 7821 AMDJTINT AMDJTINT. 7822 EMDOAST EMDOAST. 7823 AMDOAST AMDOAST. 7824 TMDOINT TMDOINT. 7825 AMDOINT AMDOINT. 7826 ECDJT ECDJT. 7827 ACDJT ACDJT. 7828 TCDJTINT TCDJTINT. 7829 ACDJTINT ACDJTINT. 7830 ECDOAST ECDOAST. 7831 ACDOAST ACDOAST. 7832 TCDOINT TCDOINT. 7833 ACDOINT ACDOINT. 7834 EBDJT EBDJT. 7835 ABDJT ABDJT. 7836 TBDJTINT TBDJTINT. 7837 ABDJTINT ABDJTINT. 7838 EBDOAST EBDOAST. 7839 ABDOAST ABDOAST. 7840 TBDOINT TBDOINT. 7841 ABDOINT ABDOINT. 7842 EGVJT EGVJT. 7843 AGVJT AGVJT. 7844 TGVJTINT TGVJTINT. 7845 AGVJTINT AGVJTINT. 7846 EGVOAST EGVOAST. 7847 AGVOAST AGVOAST. 7848 TGVOINT TGVOINT. 7849 AGVOINT AGVOINT. 7850 TINTINC TINTINC. 7851 EMANYCHK EMANYCHK. 7852 AMANYCHK AMANYCHK. 7853 TMJNTDIV TMJNTDIV. 7854 AMJNTDIV AMJNTDIV. 7855 TMOWNDIV TMOWNDIV. 7856 AMOWNDIV AMOWNDIV. 7857 EMOTHDIV EMOTHDIV. 7858 AMOTHDIV AMOTHDIV. 116 The SAS System 11:48 Wednesday, December 4, 2002 7859 TMJADIV TMJADIV. 7860 AMJADIV AMJADIV. 7861 TMOWNADV TMOWNADV. 7862 AMOWNADV AMOWNADV. 7863 ESANYCHK ESANYCHK. 7864 ASANYCHK ASANYCHK. 7865 TSJNTDIV TSJNTDIV. 7866 ASJNTDIV ASJNTDIV. 7867 TSOWNDIV TSOWNDIV. 7868 ASOWNDIV ASOWNDIV. 7869 ESOTHDIV ESOTHDIV. 7870 ASOTHDIV ASOTHDIV. 7871 TSJADIV TSJADIV. 7872 ASJADIV ASJADIV. 7873 TSOWNADV TSOWNADV. 7874 ASOWNADV ASOWNADV. 7875 TDIVINC TDIVINC. 7876 ECRMTH ECRMTH. 7877 ACRMTH ACRMTH. 7878 RMEDCODE RMEDCODE. 7879 ECDMTH ECDMTH. 7880 ACDMTH ACDMTH. 7881 ECDUNT1 ECDUNT1L. 7882 ECDUNT2 ECDUNT2L. 7883 ECDUNT3 ECDUNT3L. 7884 EHIMTH EHIMTH. 7885 AHIMTH AHIMTH. 7886 EHIOWNER EHIOWNER. 7887 AHIOWNER AHIOWNER. 7888 ENONHH ENONHH. 7889 RCHAMPM RCHAMPM. 7890 EHIUNT1 EHIUNT1L. 7891 EHIUNT2 EHIUNT2L. 7892 EHIUNT3 EHIUNT3L. 7893 EHEMPLY EHEMPLY. 7894 AHEMPLY AHEMPLY. 7895 EHICOST EHICOST. 7896 AHICOST AHICOST. 7897 EHIOTHER EHIOTHER. 7898 AHIOTHER AHIOTHER. 7899 EHISPSE EHISPSE. 7900 AHISPSE AHISPSE. 7901 EHIOLDKD EHIOLDKD. 7902 AHIOLDKD AHIOLDKD. 7903 EHIYNGKD EHIYNGKD. 7904 AHIYNGKD AHIYNGKD. 7905 EHIOTHR EHIOTHR. 7906 AHIOTHR AHIOTHR. 7907 EHIRSN01 EHIRSN0A. 7908 EHIRSN02 EHIRSN0B. 7909 EHIRSN03 EHIRSN0C. 7910 EHIRSN04 EHIRSN0D. 7911 EHIRSN05 EHIRSN0E. 7912 EHIRSN06 EHIRSN0F. 7913 EHIRSN07 EHIRSN0G. 7914 EHIRSN08 EHIRSN0H. 7915 EHIRSN09 EHIRSN0I. 7916 EHIRSN10 EHIRSN1J. 7917 EHIRSN11 EHIRSN1A. 7918 EHIRSN12 EHIRSN1B. 7919 AHIRSN AHIRSN. 7920 RPRVHI RPRVHI. 7921 ; NOTE: The PROCEDURE PRINT printed pages 1-11. NOTE: PROCEDURE PRINT used: real time 45.800 seconds cpu time 9.550 seconds 7922 proc contents data=library.sip96w2; WARNING: No datasets qualify for FIRSTOBS and OBS processing. NOTE: The PROCEDURE CONTENTS printed pages 12-24. NOTE: PROCEDURE CONTENTS used: real time 0.330 seconds cpu time 0.107 seconds 117 The SAS System 11:48 Wednesday, December 4, 2002 NOTE: The SAS System used: real time 53.160 seconds cpu time 12.793 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414