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