/* PROGRAM: ED22INP PURPOSE: INPUT STATEMENT TO READ 2022 NATIONAL HOSPITAL AMBULATORY MEDICAL CARE SURVEY EMERGENCY DEPARTMENT PUBLIC USE FILE We recommend that you use a MISSOVER option in your INFILE statement. Note that the value of LRECL may equal or exceed the actual file size. We use a value of 9999 for convenience. EXAMPLE: INFILE [file reference] MISSOVER LRECL=9999; */ INPUT @1 VMONTH 2. /* Month of Visit */ @3 VDAYR 1. /* Day of Week of Visit */ @4 ARRTIME $CHAR4. /* Arrival time (military time) */ @8 WAITTIME 4. /* Wait time to first provider (Physician/APRN/PA) contact, in minutes */ @12 LOV 4. /* Length of visit in minutes */ @16 AGE 3. /* Patient age in years */ @19 AGER 1. /* Age recode */ @20 AGEDAYS 3. /* Age in days for patients less than one year */ @23 RESIDNCE 2. /* Patient residence */ @25 SEX 1. /* Patient sex */ @26 ETHUN 2. /* Unimputed ethnicity */ @28 ETHIM 1. /* Imputed ethnicity */ @29 RACEUN 2. /* Unimputed race */ @31 RACER 1. /* White/Black/Other imputed race */ @32 RACERETH 1. /* RACER and ETHNIC combination */ @33 ARREMS 2. /* Arrival by ambulance */ @35 AMBTRANSFER 2. /* Was the patient transferred from another hospital or urgent care facility? */ @37 NOPAY 1. /* No answer to expected source of payment item */ @38 PAYPRIV 1. /* Expected source of payment: Private insurance */ @39 PAYMCARE 1. /* Expected source of payment: Medicare */ @40 PAYMCAID 1. /* Expected source of payment: Medicaid or CHIP or other state-based program */ @41 PAYWKCMP 1. /* Expected source of payment: Workers Compensation */ @42 PAYSELF 1. /* Expected source of payment: Self pay */ @43 PAYNOCHG 1. /* Expected source of payment: No charge */ @44 PAYOTH 1. /* Expected source of payment: Other */ @45 PAYDK 1. /* Expected source of payment: Unknown */ @46 PAYTYPER 2. /* Recoded primary expected source of payment for visit (based on hierarchy) */ @48 TEMPF 4. /* Initial vital signs: Temperature (Fahrenheit) */ @52 PULSE 3. /* Initial vital signs: Heart rate per minute */ @55 RESPR 3. /* Initial vital signs: Respiratory rate per minute */ @58 BPSYS 3. /* Initial vital signs: Blood pressure - Systolic */ @61 BPDIAS 3. /* Initial vital signs: Blood pressure - Diastolic */ @64 POPCT 3. /* Initial vital signs: Pulse oximetry (percent) */ @67 IMMEDR 2. /* Immediacy with which patient should be seen (unimputed) */ @69 PAINSCALE 2. /* Pain scale (0-10) */ @71 SEEN72 2. /* Was patient seen in this ED within the last 72 hours? */ @73 RFV1 5. /* Patient's complaint, symptom, or other reason for visit #1 - detailed category */ @78 RFV2 5. /* Patient's complaint, symptom, or other reason for visit #2 - detailed category */ @83 RFV3 5. /* Patient's complaint, symptom, or other reason for visit #3 - detailed category */ @88 RFV4 5. /* Patient's complaint, symptom, or other reason for visit #4 - detailed category */ @93 RFV5 5. /* Patient's complaint, symptom, or other reason for visit #5 - detailed category */ @73 RFV13D 4. /* Patient's complaint, symptom, or other reason for visit #1 - broader category */ @78 RFV23D 4. /* Patient's complaint, symptom, or other reason for visit #2 - broader category */ @83 RFV33D 4. /* Patient's complaint, symptom, or other reason for visit #3 - broader category */ @88 RFV43D 4. /* Patient's complaint, symptom, or other reason for visit #4 - broader category */ @93 RFV53D 4. /* Patient's complaint, symptom, or other reason for visit #5 - broader category */ @98 EPISODE 2. /* Episode of care */ @100 INJURY 2. /* Is visit related to an injury/trauma, overdose/poisoning, or adverse effect of medical/surgical treatment? - Recoded from INJPOISAD */ @102 INJPOISAD 2. /* Is visit related to an injury/trauma, overdose/poisoning, or adverse effect of medical/surgical treatment? - Recoded from INJPOISAD */ @104 INJURY72 2. /* Did the injury/trauma, overdose/poisoning, or adverse effect occur within 72 hours prior to the date and time of this visit? */ @106 INTENT15 2. /* Is this injury/trauma or overdose/poisoning intentional or unintentional? */ @108 INJURY_ENC 2. /* Type of encounter for injury visits */ @110 CAUSE1 $CHAR4. /* Cause #1 of injury/trauma, overdose/poisoning, or adverse effect of medical/surgical treatment - detailed category */ @114 CAUSE2 $CHAR4. /* Cause #2 of injury/trauma, overdose/poisoning, or adverse effect of medical/surgical treatment - detailed category */ @118 CAUSE3 $CHAR4. /* Cause #3 of injury/trauma, overdose/poisoning, or adverse effect of medical/surgical treatment - detailed category */ @122 DIAG1 $CHAR4. /* Diagnosis #1 - truncated */ @126 DIAG2 $CHAR4. /* Diagnosis #2 - truncated */ @130 DIAG3 $CHAR4. /* Diagnosis #3 - truncated */ @134 DIAG4 $CHAR4. /* Diagnosis #4 - truncated */ @138 DIAG5 $CHAR4. /* Diagnosis #5 - truncated */ @142 PRDIAG1 2. /* For diagnosis 1, is this probable, questionable, or ruleout? */ @144 PRDIAG2 2. /* For diagnosis 2, is this probable, questionable, or ruleout? */ @146 PRDIAG3 2. /* For diagnosis 3, is this probable, questionable, or ruleout? */ @148 PRDIAG4 2. /* For diagnosis 4, is this probable, questionable, or ruleout? */ @150 PRDIAG5 2. /* For diagnosis 5, is this probable, questionable, or ruleout? */ @152 ETOHAB 1. /* Does patient have: Alcohol misuse, abuse, or dependence */ @153 ALZHD 1. /* Does patient have: Alzheimer's disease/Dementia */ @154 ASTHMA 1. /* Does patient have: Asthma */ @155 CANCER 1. /* Does patient have: Cancer */ @156 CEBVD 1. /* Does patient have: Cerebrovascular disease/History of stroke (CVA) or transient ischemic attack (TIA)? */ @157 CKD 1. /* Does patient have: Chronic kidney disease (CKD) */ @158 COPD 1. /* Does patient have: Chronic obstructive pulmonary disease (COPD) */ @159 CHF 1. /* Does patient have: Congestive heart failure (CHF) */ @160 CAD 1. /* Does patient have: Coronary artery disease (CAD), ischemic heart disease (IHD) or history of myocardial infarction (MI) */ @161 DEPRN 1. /* Does patient have: Depression */ @162 DIABTYP1 1. /* Does patient have: Diabetes mellitus (DM) - Type I */ @163 DIABTYP2 1. /* Does patient have: Diabetes mellitus (DM) - Type II */ @164 DIABTYP0 1. /* Does patient have: Diabetes mellitus (DM) - Type unspecified */ @165 ESRD 1. /* Does patient have: End-stage renal disease (ESRD) */ @166 HPE 1. /* Does patient have: History of pulmonary embolism (PE), deep vein thrombosis (DVT), or venous thromboembolism (VTE) */ @167 EDHIV 1. /* Does patient have: HIV infection/AIDS */ @168 HYPLIPID 1. /* Does patient have: Hyperlipidemia */ @169 HTN 1. /* Does patient have: Hypertension */ @170 OBESITY 1. /* Does patient have: Obesity (BMI>=30) */ @171 OSA 1. /* Does patient have: Obstructive sleep apnea (OSA) */ @172 OSTPRSIS 1. /* Does patient have: Osteoporosis */ @173 SUBSTAB 1. /* Does patient have: Substance abuse or dependence */ @174 NOCHRON 1. /* Does patient have: None of the above */ @175 TOTCHRON 2. /* Total number of chronic conditions */ @177 DIAGSCRN 1. /* Were diagnostic services ordered or provided? */ @178 ABG 1. /* Arterial blood gases (ABG) */ @179 BAC 1. /* BAC (Blood alcohol concentration) */ @180 BMP 1. /* Basic metabolic panel (BMP) */ @181 BNP 1. /* BNP (Brain natriuretic peptide) */ @182 BUNCREAT 1. /* Creatinine/Renal function panel */ @183 CARDENZ 1. /* Cardiac enzymes */ @184 CBC 1. /* CBC (Complete blood count) */ @185 CMP 1. /* Comprehensive metabolic panel (CMP) */ @186 BLOODCX 1. /* Culture, blood */ @187 TRTCX 1. /* Culture, throat */ @188 URINECX 1. /* Culture, urine */ @189 WOUNDCX 1. /* Culture, wound */ @190 OTHCX 1. /* Culture, other */ @191 DDIMER 1. /* D-dimer */ @192 ELECTROL 1. /* Electrolytes */ @193 GLUCOSE 1. /* Glucose, serum */ @194 LACTATE 1. /* Lactate */ @195 LFT 1. /* Liver enzymes/Hepatic function panel */ @196 PTTINR 1. /* Prothrombin time (PT/PTT/INR) */ @197 OTHERBLD 1. /* Other blood test */ @198 CARDMON 1. /* Cardiac monitor */ @199 EKG 1. /* EKG/ECG */ @200 HIVTEST 1. /* HIV test */ @201 FLUTEST 1. /* Influenza test */ @202 PREGTEST 1. /* Pregnancy test */ @203 TOXSCREN 1. /* Toxicology screen */ @204 URINE 1. /* Urinalysis (UA) or urine dipstick */ @205 OTHRTEST 1. /* Other test/service */ @206 ANYIMAGE 1. /* Any imaging */ @207 XRAY 1. /* X-ray */ @208 CATSCAN 1. /* CT scan */ @209 CTCONTRAST 2. /* Was CT Scan ordered/provided with intravenous (IV) contrast? */ @211 CTAB 1. /* CT scan - abdomen/pelvis */ @212 CTCHEST 1. /* CT scan - chest */ @213 CTHEAD 1. /* CT scan- head */ @214 CTOTHER 1. /* CT scan - other */ @215 CTUNK 1. /* CT Scan - unknown */ @216 MRI 1. /* MRI */ @217 MRICONTRAST 2. /* Was MRI ordered/provided with intravenous (IV) contrast (also written as with gadolinium or with gado) */ @219 ULTRASND 1. /* Ultrasound */ @220 OTHIMAGE 1. /* Other imaging */ @221 COVIDTEST 1. /* Coronavirus disease (COVID-19) test */ @222 COVIDANTIBODY 1. /* Coronavirus disease (COVID-19) antibody test */ @223 TOTDIAG 2. /* Total number of diagnostic services ordered or provided */ @225 PROC 1. /* Were procedures provided at this visit? */ @226 BPAP 1. /* BiPAP/CPAP */ @227 BLADCATH 1. /* Bladder catheter */ @228 CASTSPLINT 1. /* Cast, splint or wrap */ @229 CENTLINE 1. /* Central line */ @230 CPR 1. /* CPR */ @231 ENDOINT 1. /* Endotracheal intubation */ @232 INCDRAIN 1. /* Incision and drainage (I&D) */ @233 IVFLUIDS 1. /* IV fluids */ @234 LUMBAR 1. /* Lumbar puncture (LP) */ @235 NEBUTHER 1. /* Nebulizer therapy */ @236 PELVIC 1. /* Pelvic exam */ @237 SKINADH 1. /* Skin adhesives */ @238 SUTURE 1. /* Suturing/Staples */ @239 OTHPROC 1. /* Other procedure */ @240 TOTPROC 2. /* Total number of procedures provided */ @242 MED 1. /* Were medications given at this visit or prescribed at ED discharge? */ @243 MED1 $CHAR5. /* Medication #1 */ @248 MED2 $CHAR5. /* Medication #2 */ @253 MED3 $CHAR5. /* Medication #3 */ @258 MED4 $CHAR5. /* Medication #4 */ @263 MED5 $CHAR5. /* Medication #5 */ @268 MED6 $CHAR5. /* Medication #6 */ @273 MED7 $CHAR5. /* Medication #7 */ @278 MED8 $CHAR5. /* Medication #8 */ @283 MED9 $CHAR5. /* Medication #9 */ @288 MED10 $CHAR5. /* Medication #10 */ @293 MED11 $CHAR5. /* Medication #11 */ @298 MED12 $CHAR5. /* Medication #12 */ @303 MED13 $CHAR5. /* Medication #13 */ @308 MED14 $CHAR5. /* Medication #14 */ @313 MED15 $CHAR5. /* Medication #15 */ @318 MED16 $CHAR5. /* Medication #16 */ @323 MED17 $CHAR5. /* Medication #17 */ @328 MED18 $CHAR5. /* Medication #18 */ @333 MED19 $CHAR5. /* Medication #19 */ @338 MED20 $CHAR5. /* Medication #20 */ @343 MED21 $CHAR5. /* Medication #21 */ @348 MED22 $CHAR5. /* Medication #22 */ @353 MED23 $CHAR5. /* Medication #23 */ @358 MED24 $CHAR5. /* Medication #24 */ @363 MED25 $CHAR5. /* Medication #25 */ @368 MED26 $CHAR5. /* Medication #26 */ @373 MED27 $CHAR5. /* Medication #27 */ @378 MED28 $CHAR5. /* Medication #28 */ @383 MED29 $CHAR5. /* Medication #29 */ @388 MED30 $CHAR5. /* Medication #30 */ @393 GPMED1 2. /* Medication #1 given in ED or Rx at discharge */ @395 GPMED2 2. /* Medication #2 given in ED or Rx at discharge */ @397 GPMED3 2. /* Medication #3 given in ED or Rx at discharge */ @399 GPMED4 2. /* Medication #4 given in ED or Rx at discharge */ @401 GPMED5 2. /* Medication #5 given in ED or Rx at discharge */ @403 GPMED6 2. /* Medication #6 given in ED or Rx at discharge */ @405 GPMED7 2. /* Medication #7 given in ED or Rx at discharge */ @407 GPMED8 2. /* Medication #8 given in ED or Rx at discharge */ @409 GPMED9 2. /* Medication #9 given in ED or Rx at discharge */ @411 GPMED10 2. /* Medication #10 given in ED or Rx at discharge */ @413 GPMED11 2. /* Medication #11 given in ED or Rx at discharge */ @415 GPMED12 2. /* Medication #12 given in ED or Rx at discharge */ @417 GPMED13 2. /* Medication #13 given in ED or Rx at discharge */ @419 GPMED14 2. /* Medication #14 given in ED or Rx at discharge */ @421 GPMED15 2. /* Medication #15 given in ED or Rx at discharge */ @423 GPMED16 2. /* Medication #16 given in ED or Rx at discharge */ @425 GPMED17 2. /* Medication #17 given in ED or Rx at discharge */ @427 GPMED18 2. /* Medication #18 given in ED or Rx at discharge */ @429 GPMED19 2. /* Medication #19 given in ED or Rx at discharge */ @431 GPMED20 2. /* Medication #20 given in ED or Rx at discharge */ @433 GPMED21 2. /* Medication #21 given in ED or Rx at discharge */ @435 GPMED22 2. /* Medication #22 given in ED or Rx at discharge */ @437 GPMED23 2. /* Medication #23 given in ED or Rx at discharge */ @439 GPMED24 2. /* Medication #24 given in ED or Rx at discharge */ @441 GPMED25 2. /* Medication #25 given in ED or Rx at discharge */ @443 GPMED26 2. /* Medication #26 given in ED or Rx at discharge */ @445 GPMED27 2. /* Medication #27 given in ED or Rx at discharge */ @447 GPMED28 2. /* Medication #28 given in ED or Rx at discharge */ @449 GPMED29 2. /* Medication #29 given in ED or Rx at discharge */ @451 GPMED30 2. /* Medication #30 given in ED or Rx at discharge */ @453 NUMGIV 2. /* Number of medications given in ED */ @455 NUMDIS 2. /* Number of medications prescribed at discharge */ @457 NUMMED 2. /* Number of medications */ @459 VITALSD 2. /* Does the chart contain vital signs taken after triage? */ @461 TEMPDF 4. /* Vitals after triage: Temperature in Fahrenheit */ @465 PULSED 3. /* Vitals after triage: Heart rate (beats per minute) */ @468 RESPRD 3. /* Vitals after triage: Respiratory rate (breaths per minute) */ @471 BPSYSD 3. /* Vitals after triage: Systolic blood pressure */ @474 BPDIASD 3. /* Vitals after triage: Diastolic blood pressure */ @477 NOPROVID 1. /* No answer to provider seen item */ @478 ATTPHYS 1. /* ED attending physician seen */ @479 RESINT 1. /* ED resident/intern seen */ @480 CONSULT 1. /* Consulting physician seen */ @481 RNLPN 1. /* Registered nurse/LPN seen */ @482 NURSEPR 1. /* Nurse practitioner seen */ @483 PHYSASST 1. /* Physician assistant seen */ @484 EMT 1. /* EMT */ @485 MHPROV 1. /* Other mental health provider */ @486 OTHPROV 1. /* Other provider seen */ @487 NODISP 1. /* No answer to disposition item */ @488 NOFU 1. /* No follow up planned */ @489 RETRNED 1. /* Return to ED */ @490 RETREFFU 1. /* Return/refer to physician/clinic for FU */ @491 LWBS 1. /* Left without being seen (LWBS) */ @492 LBTC 1. /* Left before treatment complete (LBTC) */ @493 LEFTAMA 1. /* Left AMA (against medical advice) */ @494 DOA 1. /* DOA (Dead on arrival) */ @495 DIEDED 1. /* Died in ED */ @496 TRANNH 1. /* Return/transfer to nursing home */ @497 TRANPSYC 1. /* Transfer to psychiatric hospital */ @498 TRANOTH 1. /* Transfer to non-psychiatric hospital */ @499 ADMITHOS 1. /* Admit to this hospital */ @500 OBSHOS 1. /* Admit to observation unit, then hospitalized */ @501 OBSDIS 1. /* Admit to observation unit, then discharged */ @502 OTHDISP 1. /* Other disposition */ @503 ADMIT 2. /* Admitted to: */ @505 ADMTPHYS 2. /* Admitting physician */ @507 LOS 2. /* If admitted, length of stay in hospital in days */ @509 HDDIAG1 $CHAR4. /* Hospital discharge diagnosis #1 - truncated */ @513 HDDIAG2 $CHAR4. /* Hospital discharge diagnosis #2 - truncated */ @517 HDDIAG3 $CHAR4. /* Hospital discharge diagnosis #3 - truncated */ @521 HDDIAG4 $CHAR4. /* Hospital discharge diagnosis #4 - truncated */ @525 HDDIAG5 $CHAR4. /* Hospital discharge diagnosis #5 - truncated */ @529 HDSTAT 2. /* Hospital discharge status */ @531 ADISP 2. /* Disposition of live discharges */ @533 OBSSTAY 4. /* Length of stay in observation unit in minutes */ @537 STAY24 1. /* ED discharge greater than 24 hours */ @538 AGEFL 2. /* Was patient age reported, calculated or imputed? */ @540 BDATEFL 1. /* Birth date imputed? */ @541 SEXFL 1. /* Sex imputed? */ @542 ETHNICFL 1. /* Ethnicity imputed? */ @543 RACERFL 1. /* RACER imputed? */ @544 HOSPCODE 3. /* Hospital number */ @547 PATCODE 3. /* Patient code */ @550 EMRED 2. /* Does your ED use electronic health record (EHR) system? Do not including billing systems. */ @552 HHSMUE 2. /* Does your current system meet meaningful use criteria as defined by the Department of Health and Human Services? */ @554 EHRINSE 2. /* Does your ED have plans for installing a new EHR/EMR system within the next 18 months? */ @556 EDPRIM 2. /* When patients with identified primary care providers (PCP) arrive at the ED, how often do you electronically send notifications to the patients' PCP? */ @558 EDINFO 2. /* When patients arrive at the ED, are you able to query for patients' healthcare information electronically (e.g., medications, allergies) from outside sources? */ @560 OBSCLIN 2. /* Does your ED have an observation or clinical decision unit? */ @562 OBSSEP 2. /* Is this observation or clinical decision unit physically separate from the ED? */ @564 OBSPHYSED 2. /* What type of providers make decisions for patients in this observation or clinical decision unit? - ED physicians, APRN, PA */ @566 OBSHOSP 2. /* What type of providers make decisions for patients in this observation or clinical decision unit? - Hospitalists */ @568 OBSPHYSOT 2. /* What type of providers make decisions for patients in this observation or clinical decision unit? - Other physicians */ @570 OBSPHYSUN 2. /* What type of providers make decisions for patients in this observation or clinical decision unit? - Unknown */ @572 BOARD 2. /* Are admitted ED patients ever "boarded" for more than 2 hours in the ED or observation unit while waiting for an inpatient bed? */ @574 BOARDHOS 2. /* Does your ED allow some admitted patients to move from the ED to inpatient corridors while awaiting a bed ("boarding") - sometimes called "full capacity protocol"? */ @576 AMBDIV 2. /* Did your ED go on ambulance diversion in 2021? */ @578 TOTHRDIVR 2. /* What is the total number of hours that your hospital's ED was on ambulance diversion in 2021? */ @580 REGDIV 2. /* Is ambulance diversion actively managed on a regional level versus each hospital adopting diversion if and when it chooses? */ @582 ADMDIV 2. /* Does your hospital continue to admit elective or schedule surgery cases when ED is on ambulance diversion? */ @584 INCSHX 2. /* In the last two years, did your ED increase the number of standard treatment spaces? */ @586 INCPHYS 2. /* In the last two years, did your ED's physical space expand? */ @588 EXPSPACE 2. /* Do you have plans to expand your ED's physical space within the next two years? */ @590 BEDREG 2. /* Does your ED use bedside registration? */ @592 KIOSELCHK 2. /* Does ED use kiosk self check-in? */ @594 CATRIAGE 2. /* Does your ED use computer-assisted triage? */ @596 IMBED 2. /* Does your ED use immediate bedding? */ @598 ADVTRIAG 2. /* Does your ED use advanced triage (triage-based care) protocols? */ @600 PHYSPRACTRIA 2. /* Does your ED use physician/practitioner at triage? */ @602 FASTTRAK 2. /* Does your ED use separate fast track unit for nonurgent care? */ @604 EDPTOR 2. /* Does your ED use separate operating room dedicated to ED patients? */ @606 DASHBORD 2. /* Does your ED use electronic dashboard? */ @608 RFID 2. /* Does your ED use radio frequency identification (RFID) tracking? */ @610 WIRELESS 2. /* Does ED use wireless communication devices by providers? */ @612 ZONENURS 2. /* Does your ED use zone nursing? */ @614 POOLNURS 2. /* Does your ED use pool nurses? */ @616 SURGDAY 2. /* How many days in a week are inpatient elective surgeries scheduled? */ @618 BEDCZAR 2. /* Does your hospital have a bed coordinator, sometimes known as a bed czar? */ @620 BEDDATA 2. /* How often are hospital bed census data available? */ @622 HLIST 2. /* Does your hospital have hospitalists on staff? */ @624 HLISTED 2. /* Do the hospitalists on staff at your hospital admit patients from your ED? */ @626 EMEDRES 2. /* Does hospital have an Emergency Medicine residency program? */ @628 REGION 1. /* Geographic region */ @629 MSA 1. /* Metropolitan statistical area status */ @630 DRUGID1 $CHAR6. /* Drug ID code for medication #1 */ @636 PRESCR1 1. /* Prescription status code for medication #1 */ @637 CONTSUB1 1. /* Controlled substance status code for medication #1 */ @638 COMSTAT1 1. /* Composition status code for medication #1 */ @639 RX1CAT1 $CHAR3. /* For RX1, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @642 RX1CAT2 $CHAR3. /* For RX1, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @645 RX1CAT3 $CHAR3. /* For RX1, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @648 RX1CAT4 $CHAR3. /* For RX1, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @651 RX1V1C1 $CHAR3. /* For RX1, level 1 of MULTUM drug category #1 (broad level) */ @654 RX1V1C2 $CHAR3. /* For RX1, level 1 of MULTUM drug category #2 (broad level) */ @657 RX1V1C3 $CHAR3. /* For RX1, level 1 of MULTUM drug category #3 (broad level) */ @660 RX1V1C4 $CHAR3. /* For RX1, level 1 of MULTUM drug category #4 (broad level) */ @663 RX1V2C1 $CHAR3. /* For RX1, level 2 of MULTUM drug category #1 (intermediate level) */ @666 RX1V2C2 $CHAR3. /* For RX1, level 2 of MULTUM drug category #2 (intermediate level) */ @669 RX1V2C3 $CHAR3. /* For RX1, level 2 of MULTUM drug category #3 (intermediate level) */ @672 RX1V2C4 $CHAR3. /* For RX1, level 2 of MULTUM drug category #4 (intermediate level) */ @675 RX1V3C1 $CHAR3. /* For RX1, level 3 of MULTUM drug category #1 (detailed level) */ @678 RX1V3C2 $CHAR3. /* For RX1, level 3 of MULTUM drug category #2 (detailed level) */ @681 RX1V3C3 $CHAR3. /* For RX1, level 3 of MULTUM drug category #3 (detailed level) */ @684 RX1V3C4 $CHAR3. /* For RX1, level 3 of MULTUM drug category #4 (detailed level) */ @687 DRUGID2 $CHAR6. /* Drug ID code for medication #2 */ @693 PRESCR2 1. /* Prescription status code for medication #2 */ @694 CONTSUB2 1. /* Controlled substance status code for medication #2 */ @695 COMSTAT2 1. /* Composition status code for medication #2 */ @696 RX2CAT1 $CHAR3. /* For RX2, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @699 RX2CAT2 $CHAR3. /* For RX2, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @702 RX2CAT3 $CHAR3. /* For RX2, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @705 RX2CAT4 $CHAR3. /* For RX2, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @708 RX2V1C1 $CHAR3. /* For RX2, level 1 of MULTUM drug category #1 (broad level) */ @711 RX2V1C2 $CHAR3. /* For RX2, level 1 of MULTUM drug category #2 (broad level) */ @714 RX2V1C3 $CHAR3. /* For RX2, level 1 of MULTUM drug category #3 (broad level) */ @717 RX2V1C4 $CHAR3. /* For RX2, level 1 of MULTUM drug category #4 (broad level) */ @720 RX2V2C1 $CHAR3. /* For RX2, level 2 of MULTUM drug category #1 (intermediate level) */ @723 RX2V2C2 $CHAR3. /* For RX2, level 2 of MULTUM drug category #2 (intermediate level) */ @726 RX2V2C3 $CHAR3. /* For RX2, level 2 of MULTUM drug category #3 (intermediate level) */ @729 RX2V2C4 $CHAR3. /* For RX2, level 2 of MULTUM drug category #4 (intermediate level) */ @732 RX2V3C1 $CHAR3. /* For RX2, level 3 of MULTUM drug category #1 (detailed level) */ @735 RX2V3C2 $CHAR3. /* For RX2, level 3 of MULTUM drug category #2 (detailed level) */ @738 RX2V3C3 $CHAR3. /* For RX2, level 3 of MULTUM drug category #3 (detailed level) */ @741 RX2V3C4 $CHAR3. /* For RX2, level 3 of MULTUM drug category #4 (detailed level) */ @744 DRUGID3 $CHAR6. /* Drug ID code for medication #3 */ @750 PRESCR3 1. /* Prescription status code for medication #3 */ @751 CONTSUB3 1. /* Controlled substance status code for medication #3 */ @752 COMSTAT3 1. /* Composition status code for medication #3 */ @753 RX3CAT1 $CHAR3. /* For RX3, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @756 RX3CAT2 $CHAR3. /* For RX3, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @759 RX3CAT3 $CHAR3. /* For RX3, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @762 RX3CAT4 $CHAR3. /* For RX3, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @765 RX3V1C1 $CHAR3. /* For RX3, level 1 of MULTUM drug category #1 (broad level) */ @768 RX3V1C2 $CHAR3. /* For RX3, level 1 of MULTUM drug category #2 (broad level) */ @771 RX3V1C3 $CHAR3. /* For RX3, level 1 of MULTUM drug category #3 (broad level) */ @774 RX3V1C4 $CHAR3. /* For RX3, level 1 of MULTUM drug category #4 (broad level) */ @777 RX3V2C1 $CHAR3. /* For RX3, level 2 of MULTUM drug category #1 (intermediate level) */ @780 RX3V2C2 $CHAR3. /* For RX3, level 2 of MULTUM drug category #2 (intermediate level) */ @783 RX3V2C3 $CHAR3. /* For RX3, level 2 of MULTUM drug category #3 (intermediate level) */ @786 RX3V2C4 $CHAR3. /* For RX3, level 2 of MULTUM drug category #4 (intermediate level) */ @789 RX3V3C1 $CHAR3. /* For RX3, level 3 of MULTUM drug category #1 (detailed level) */ @792 RX3V3C2 $CHAR3. /* For RX3, level 3 of MULTUM drug category #2 (detailed level) */ @795 RX3V3C3 $CHAR3. /* For RX3, level 3 of MULTUM drug category #3 (detailed level) */ @798 RX3V3C4 $CHAR3. /* For RX3, level 3 of MULTUM drug category #4 (detailed level) */ @801 DRUGID4 $CHAR6. /* Drug ID code for medication #4 */ @807 PRESCR4 1. /* Prescription status code for medication #4 */ @808 CONTSUB4 1. /* Controlled substance status code for medication #4 */ @809 COMSTAT4 1. /* Composition status code for medication #4 */ @810 RX4CAT1 $CHAR3. /* For RX4, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @813 RX4CAT2 $CHAR3. /* For RX4, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @816 RX4CAT3 $CHAR3. /* For RX4, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @819 RX4CAT4 $CHAR3. /* For RX4, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @822 RX4V1C1 $CHAR3. /* For RX4, level 1 of MULTUM drug category #1 (broad level) */ @825 RX4V1C2 $CHAR3. /* For RX4, level 1 of MULTUM drug category #2 (broad level) */ @828 RX4V1C3 $CHAR3. /* For RX4, level 1 of MULTUM drug category #3 (broad level) */ @831 RX4V1C4 $CHAR3. /* For RX4, level 1 of MULTUM drug category #4 (broad level) */ @834 RX4V2C1 $CHAR3. /* For RX4, level 2 of MULTUM drug category #1 (intermediate level) */ @837 RX4V2C2 $CHAR3. /* For RX4, level 2 of MULTUM drug category #2 (intermediate level) */ @840 RX4V2C3 $CHAR3. /* For RX4, level 2 of MULTUM drug category #3 (intermediate level) */ @843 RX4V2C4 $CHAR3. /* For RX4, level 2 of MULTUM drug category #4 (intermediate level) */ @846 RX4V3C1 $CHAR3. /* For RX4, level 3 of MULTUM drug category #1 (detailed level) */ @849 RX4V3C2 $CHAR3. /* For RX4, level 3 of MULTUM drug category #2 (detailed level) */ @852 RX4V3C3 $CHAR3. /* For RX4, level 3 of MULTUM drug category #3 (detailed level) */ @855 RX4V3C4 $CHAR3. /* For RX4, level 3 of MULTUM drug category #4 (detailed level) */ @858 DRUGID5 $CHAR6. /* Drug ID code for medication #5 */ @864 PRESCR5 1. /* Prescription status code medication #5 */ @865 CONTSUB5 1. /* Controlled substance status code medication #5 */ @866 COMSTAT5 1. /* Composition status code medication #5 */ @867 RX5CAT1 $CHAR3. /* For RX5, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @870 RX5CAT2 $CHAR3. /* For RX5, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @873 RX5CAT3 $CHAR3. /* For RX5, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @876 RX5CAT4 $CHAR3. /* For RX5, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @879 RX5V1C1 $CHAR3. /* For RX5, level 1 of MULTUM drug category #1 (broad level) */ @882 RX5V1C2 $CHAR3. /* For RX5, level 1 of MULTUM drug category #2 (broad level) */ @885 RX5V1C3 $CHAR3. /* For RX5, level 1 of MULTUM drug category #3 (broad level) */ @888 RX5V1C4 $CHAR3. /* For RX5, level 1 of MULTUM drug category #4 (broad level) */ @891 RX5V2C1 $CHAR3. /* For RX5, level 2 of MULTUM drug category #1 (intermediate level) */ @894 RX5V2C2 $CHAR3. /* For RX5, level 2 of MULTUM drug category #2 (intermediate level) */ @897 RX5V2C3 $CHAR3. /* For RX5, level 2 of MULTUM drug category #3 (intermediate level) */ @900 RX5V2C4 $CHAR3. /* For RX5, level 2 of MULTUM drug category #4 (intermediate level) */ @903 RX5V3C1 $CHAR3. /* For RX5, level 3 of MULTUM drug category #1 (detailed level) */ @906 RX5V3C2 $CHAR3. /* For RX5, level 3 of MULTUM drug category #2 (detailed level) */ @909 RX5V3C3 $CHAR3. /* For RX5, level 3 of MULTUM drug category #3 (detailed level) */ @912 RX5V3C4 $CHAR3. /* For RX5, level 3 of MULTUM drug category #4 (detailed level) */ @915 DRUGID6 $CHAR6. /* Drug ID code for medication #6 */ @921 PRESCR6 1. /* Prescription status code for medication #6 */ @922 CONTSUB6 1. /* Controlled substance status code for medication #6 */ @923 COMSTAT6 1. /* Composition status code for medication #6 */ @924 RX6CAT1 $CHAR3. /* For RX6, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @927 RX6CAT2 $CHAR3. /* For RX6, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @930 RX6CAT3 $CHAR3. /* For RX6, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @933 RX6CAT4 $CHAR3. /* For RX6, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @936 RX6V1C1 $CHAR3. /* For RX6, level 1 of MULTUM drug category #1 (broad level) */ @939 RX6V1C2 $CHAR3. /* For RX6, level 1 of MULTUM drug category #2 (broad level) */ @942 RX6V1C3 $CHAR3. /* For RX6, level 1 of MULTUM drug category #3 (broad level) */ @945 RX6V1C4 $CHAR3. /* For RX6, level 1 of MULTUM drug category #4 (broad level) */ @948 RX6V2C1 $CHAR3. /* For RX6, level 2 of MULTUM drug category #1 (intermediate level) */ @951 RX6V2C2 $CHAR3. /* For RX6, level 2 of MULTUM drug category #2 (intermediate level) */ @954 RX6V2C3 $CHAR3. /* For RX6, level 2 of MULTUM drug category #3 (intermediate level) */ @957 RX6V2C4 $CHAR3. /* For RX6, level 2 of MULTUM drug category #4 (intermediate level) */ @960 RX6V3C1 $CHAR3. /* For RX6, level 3 of MULTUM drug category #1 (detailed level) */ @963 RX6V3C2 $CHAR3. /* For RX6, level 3 of MULTUM drug category #2 (detailed level) */ @966 RX6V3C3 $CHAR3. /* For RX6, level 3 of MULTUM drug category #3 (detailed level) */ @969 RX6V3C4 $CHAR3. /* For RX6, level 3 of MULTUM drug category #4 (detailed level) */ @972 DRUGID7 $CHAR6. /* Drug ID code for medication #7 */ @978 PRESCR7 1. /* Prescription status code for medication #7 */ @979 CONTSUB7 1. /* Controlled substance status code for medication #7 */ @980 COMSTAT7 1. /* Composition status code for medication #7 */ @981 RX7CAT1 $CHAR3. /* For RX7, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @984 RX7CAT2 $CHAR3. /* For RX7, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @987 RX7CAT3 $CHAR3. /* For RX7, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @990 RX7CAT4 $CHAR3. /* For RX7, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @993 RX7V1C1 $CHAR3. /* For RX7, level 1 of MULTUM drug category #1 (broad level) */ @996 RX7V1C2 $CHAR3. /* For RX7, level 1 of MULTUM drug category #2 (broad level) */ @999 RX7V1C3 $CHAR3. /* For RX7, level 1 of MULTUM drug category #3 (broad level) */ @1002 RX7V1C4 $CHAR3. /* For RX7, level 1 of MULTUM drug category #4 (broad level) */ @1005 RX7V2C1 $CHAR3. /* For RX7, level 2 of MULTUM drug category #1 (intermediate level) */ @1008 RX7V2C2 $CHAR3. /* For RX7, level 2 of MULTUM drug category #2 (intermediate level) */ @1011 RX7V2C3 $CHAR3. /* For RX7, level 2 of MULTUM drug category #3 (intermediate level) */ @1014 RX7V2C4 $CHAR3. /* For RX7, level 2 of MULTUM drug category #4 (intermediate level) */ @1017 RX7V3C1 $CHAR3. /* For RX7, level 3 of MULTUM drug category #1 (detailed level) */ @1020 RX7V3C2 $CHAR3. /* For RX7, level 3 of MULTUM drug category #2 (detailed level) */ @1023 RX7V3C3 $CHAR3. /* For RX7, level 3 of MULTUM drug category #3 (detailed level) */ @1026 RX7V3C4 $CHAR3. /* For RX7, level 3 of MULTUM drug category #4 (detailed level) */ @1029 DRUGID8 $CHAR6. /* Drug ID code for medication #8 */ @1035 PRESCR8 1. /* Prescription status code for medication #8 */ @1036 CONTSUB8 1. /* Controlled substance status code for medication #8 */ @1037 COMSTAT8 1. /* Composition status code for medication #8 */ @1038 RX8CAT1 $CHAR3. /* For RX8, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1041 RX8CAT2 $CHAR3. /* For RX8, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1044 RX8CAT3 $CHAR3. /* For RX8, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1047 RX8CAT4 $CHAR3. /* For RX8, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1050 RX8V1C1 $CHAR3. /* For RX8, level 1 of MULTUM drug category #1 (broad level) */ @1053 RX8V1C2 $CHAR3. /* For RX8, level 1 of MULTUM drug category #2 (broad level) */ @1056 RX8V1C3 $CHAR3. /* For RX8, level 1 of MULTUM drug category #3 (broad level) */ @1059 RX8V1C4 $CHAR3. /* For RX8, level 1 of MULTUM drug category #4 (broad level) */ @1062 RX8V2C1 $CHAR3. /* For RX8, level 2 of MULTUM drug category #1 (intermediate level) */ @1065 RX8V2C2 $CHAR3. /* For RX8, level 2 of MULTUM drug category #2 (intermediate level) */ @1068 RX8V2C3 $CHAR3. /* For RX8, level 2 of MULTUM drug category #3 (intermediate level) */ @1071 RX8V2C4 $CHAR3. /* For RX8, level 2 of MULTUM drug category #4 (intermediate level) */ @1074 RX8V3C1 $CHAR3. /* For RX8, level 3 of MULTUM drug category #1 (detailed level) */ @1077 RX8V3C2 $CHAR3. /* For RX8, level 3 of MULTUM drug category #2 (detailed level) */ @1080 RX8V3C3 $CHAR3. /* For RX8, level 3 of MULTUM drug category #3 (detailed level) */ @1083 RX8V3C4 $CHAR3. /* For RX8, level 3 of MULTUM drug category #4 (detailed level) */ @1086 DRUGID9 $CHAR6. /* Drug ID code for medication #9 */ @1092 PRESCR9 1. /* Prescription status code for medication #9 */ @1093 CONTSUB9 1. /* Controlled substance status code for medication #9 */ @1094 COMSTAT9 1. /* Composition status code for medication #9 */ @1095 RX9CAT1 $CHAR3. /* For RX9, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1098 RX9CAT2 $CHAR3. /* For RX9, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1101 RX9CAT3 $CHAR3. /* For RX9, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1104 RX9CAT4 $CHAR3. /* For RX9, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1107 RX9V1C1 $CHAR3. /* For RX9, level 1 of MULTUM drug category #1 (broad level) */ @1110 RX9V1C2 $CHAR3. /* For RX9, level 1 of MULTUM drug category #2 (broad level) */ @1113 RX9V1C3 $CHAR3. /* For RX9, level 1 of MULTUM drug category #3 (broad level) */ @1116 RX9V1C4 $CHAR3. /* For RX9, level 1 of MULTUM drug category #4 (broad level) */ @1119 RX9V2C1 $CHAR3. /* For RX9, level 2 of MULTUM drug category #1 (intermediate level) */ @1122 RX9V2C2 $CHAR3. /* For RX9, level 2 of MULTUM drug category #2 (intermediate level) */ @1125 RX9V2C3 $CHAR3. /* For RX9, level 2 of MULTUM drug category #3 (intermediate level) */ @1128 RX9V2C4 $CHAR3. /* For RX9, level 2 of MULTUM drug category #4 (intermediate level) */ @1131 RX9V3C1 $CHAR3. /* For RX9, level 3 of MULTUM drug category #1 (detailed level) */ @1134 RX9V3C2 $CHAR3. /* For RX9, level 3 of MULTUM drug category #2 (detailed level) */ @1137 RX9V3C3 $CHAR3. /* For RX9, level 3 of MULTUM drug category #3 (detailed level) */ @1140 RX9V3C4 $CHAR3. /* For RX9, level 3 of MULTUM drug category #4 (detailed level) */ @1143 DRUGID10 $CHAR6. /* Drug ID code for medication #10 */ @1149 PRESCR10 1. /* Prescription status code for medication #10 */ @1150 CONTSUB10 1. /* Controlled substance status code for medication #10 */ @1151 COMSTAT10 1. /* Composition status code for medication #10 */ @1152 RX10CAT1 $CHAR3. /* For RX10, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1155 RX10CAT2 $CHAR3. /* For RX10, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1158 RX10CAT3 $CHAR3. /* For RX10, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1161 RX10CAT4 $CHAR3. /* For RX10, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1164 RX10V1C1 $CHAR3. /* For RX10, level 1 of MULTUM drug category #1 (broad level) */ @1167 RX10V1C2 $CHAR3. /* For RX10, level 1 of MULTUM drug category #2 (broad level) */ @1170 RX10V1C3 $CHAR3. /* For RX10, level 1 of MULTUM drug category #3 (broad level) */ @1173 RX10V1C4 $CHAR3. /* For RX10, level 1 of MULTUM drug category #4 (broad level) */ @1176 RX10V2C1 $CHAR3. /* For RX10, level 2 of MULTUM drug category #1 (intermediate level) */ @1179 RX10V2C2 $CHAR3. /* For RX10, level 2 of MULTUM drug category #2 (intermediate level) */ @1182 RX10V2C3 $CHAR3. /* For RX10, level 2 of MULTUM drug category #3 (intermediate level) */ @1185 RX10V2C4 $CHAR3. /* For RX10, level 2 of MULTUM drug category #4 (intermediate level) */ @1188 RX10V3C1 $CHAR3. /* For RX10, level 3 of MULTUM drug category #1 (detailed level) */ @1191 RX10V3C2 $CHAR3. /* For RX10, level 3 of MULTUM drug category #2 (detailed level) */ @1194 RX10V3C3 $CHAR3. /* For RX10, level 3 of MULTUM drug category #3 (detailed level) */ @1197 RX10V3C4 $CHAR3. /* For RX10, level 3 of MULTUM drug category #4 (detailed level) */ @1200 DRUGID11 $CHAR6. /* Drug ID code for medication #11 */ @1206 PRESCR11 1. /* Prescription status code for medication #11 */ @1207 CONTSUB11 1. /* Controlled substance status code for medication #11 */ @1208 COMSTAT11 1. /* Composition status code for medication #11 */ @1209 RX11CAT1 $CHAR3. /* For RX11, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1212 RX11CAT2 $CHAR3. /* For RX11, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1215 RX11CAT3 $CHAR3. /* For RX11, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1218 RX11CAT4 $CHAR3. /* For RX11, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1221 RX11V1C1 $CHAR3. /* For RX11, level 1 of MULTUM drug category #1 (broad level) */ @1224 RX11V1C2 $CHAR3. /* For RX11, level 1 of MULTUM drug category #2 (broad level) */ @1227 RX11V1C3 $CHAR3. /* For RX11, level 1 of MULTUM drug category #3 (broad level) */ @1230 RX11V1C4 $CHAR3. /* For RX11, level 1 of MULTUM drug category #4 (broad level) */ @1233 RX11V2C1 $CHAR3. /* For RX11, level 2 of MULTUM drug category #1 (intermediate level) */ @1236 RX11V2C2 $CHAR3. /* For RX11, level 2 of MULTUM drug category #2 (intermediate level) */ @1239 RX11V2C3 $CHAR3. /* For RX11, level 2 of MULTUM drug category #3 (intermediate level) */ @1242 RX11V2C4 $CHAR3. /* For RX11, level 2 of MULTUM drug category #4 (intermediate level) */ @1245 RX11V3C1 $CHAR3. /* For RX11, level 3 of MULTUM drug category #1 (detailed level) */ @1248 RX11V3C2 $CHAR3. /* For RX11, level 3 of MULTUM drug category #2 (detailed level) */ @1251 RX11V3C3 $CHAR3. /* For RX11, level 3 of MULTUM drug category #3 (detailed level) */ @1254 RX11V3C4 $CHAR3. /* For RX11, level 3 of MULTUM drug category #4 (detailed level) */ @1257 DRUGID12 $CHAR6. /* Drug ID code for medication #12 */ @1263 PRESCR12 1. /* Prescription status code for medication #12 */ @1264 CONTSUB12 1. /* Controlled substance status code for medication #12 */ @1265 COMSTAT12 1. /* Composition status code for medication #12 */ @1266 RX12CAT1 $CHAR3. /* For RX12, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1269 RX12CAT2 $CHAR3. /* For RX12, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1272 RX12CAT3 $CHAR3. /* For RX12, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1275 RX12CAT4 $CHAR3. /* For RX12, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1278 RX12V1C1 $CHAR3. /* For RX12, level 1 of MULTUM drug category #1 (broad level) */ @1281 RX12V1C2 $CHAR3. /* For RX12, level 1 of MULTUM drug category #2 (broad level) */ @1284 RX12V1C3 $CHAR3. /* For RX12, level 1 of MULTUM drug category #3 (broad level) */ @1287 RX12V1C4 $CHAR3. /* For RX12, level 1 of MULTUM drug category #4 (broad level) */ @1290 RX12V2C1 $CHAR3. /* For RX12, level 2 of MULTUM drug category #1 (intermediate level) */ @1293 RX12V2C2 $CHAR3. /* For RX12, level 2 of MULTUM drug category #2 (intermediate level) */ @1296 RX12V2C3 $CHAR3. /* For RX12, level 2 of MULTUM drug category #3 (intermediate level) */ @1299 RX12V2C4 $CHAR3. /* For RX12, level 2 of MULTUM drug category #4 (intermediate level) */ @1302 RX12V3C1 $CHAR3. /* For RX12, level 3 of MULTUM drug category #1 (detailed level) */ @1305 RX12V3C2 $CHAR3. /* For RX12, level 3 of MULTUM drug category #2 (detailed level) */ @1308 RX12V3C3 $CHAR3. /* For RX12, level 3 of MULTUM drug category #3 (detailed level) */ @1311 RX12V3C4 $CHAR3. /* For RX12, level 3 of MULTUM drug category #4 (detailed level) */ @1314 DRUGID13 $CHAR6. /* Drug ID code for medication #13 */ @1320 PRESCR13 1. /* Prescription status code for medication #13 */ @1321 CONTSUB13 1. /* Controlled substance status code for medication #13 */ @1322 COMSTAT13 1. /* Composition status code for medication #13 */ @1323 RX13CAT1 $CHAR3. /* For RX13, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1326 RX13CAT2 $CHAR3. /* For RX13, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1329 RX13CAT3 $CHAR3. /* For RX13, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1332 RX13CAT4 $CHAR3. /* For RX13, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1335 RX13V1C1 $CHAR3. /* For RX13, level 1 of MULTUM drug category #1 (broad level) */ @1338 RX13V1C2 $CHAR3. /* For RX13, level 1 of MULTUM drug category #2 (broad level) */ @1341 RX13V1C3 $CHAR3. /* For RX13, level 1 of MULTUM drug category #3 (broad level) */ @1344 RX13V1C4 $CHAR3. /* For RX13, level 1 of MULTUM drug category #4 (broad level) */ @1347 RX13V2C1 $CHAR3. /* For RX13, level 2 of MULTUM drug category #1 (intermediate level) */ @1350 RX13V2C2 $CHAR3. /* For RX13, level 2 of MULTUM drug category #2 (intermediate level) */ @1353 RX13V2C3 $CHAR3. /* For RX13, level 2 of MULTUM drug category #3 (intermediate level) */ @1356 RX13V2C4 $CHAR3. /* For RX13, level 2 of MULTUM drug category #4 (intermediate level) */ @1359 RX13V3C1 $CHAR3. /* For RX13, level 3 of MULTUM drug category #1 (detailed level) */ @1362 RX13V3C2 $CHAR3. /* For RX13, level 3 of MULTUM drug category #2 (detailed level) */ @1365 RX13V3C3 $CHAR3. /* For RX13, level 3 of MULTUM drug category #3 (detailed level) */ @1368 RX13V3C4 $CHAR3. /* For RX13, level 3 of MULTUM drug category #4 (detailed level) */ @1371 DRUGID14 $CHAR6. /* Drug ID code for medication #14 */ @1377 PRESCR14 1. /* Prescription status code for medication #14 */ @1378 CONTSUB14 1. /* Controlled substance status code for medication #14 */ @1379 COMSTAT14 1. /* Composition status code for medication #14 */ @1380 RX14CAT1 $CHAR3. /* For RX14, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1383 RX14CAT2 $CHAR3. /* For RX14, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1386 RX14CAT3 $CHAR3. /* For RX14, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1389 RX14CAT4 $CHAR3. /* For RX14, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1392 RX14V1C1 $CHAR3. /* For RX14, level 1 of MULTUM drug category #1 (broad level) */ @1395 RX14V1C2 $CHAR3. /* For RX14, level 1 of MULTUM drug category #2 (broad level) */ @1398 RX14V1C3 $CHAR3. /* For RX14, level 1 of MULTUM drug category #3 (broad level) */ @1401 RX14V1C4 $CHAR3. /* For RX14, level 1 of MULTUM drug category #4 (broad level) */ @1404 RX14V2C1 $CHAR3. /* For RX14, level 2 of MULTUM drug category #1 (intermediate level) */ @1407 RX14V2C2 $CHAR3. /* For RX14, level 2 of MULTUM drug category #2 (intermediate level) */ @1410 RX14V2C3 $CHAR3. /* For RX14, level 2 of MULTUM drug category #3 (intermediate level) */ @1413 RX14V2C4 $CHAR3. /* For RX14, level 2 of MULTUM drug category #4 (intermediate level) */ @1416 RX14V3C1 $CHAR3. /* For RX14, level 3 of MULTUM drug category #1 (detailed level) */ @1419 RX14V3C2 $CHAR3. /* For RX14, level 3 of MULTUM drug category #2 (detailed level) */ @1422 RX14V3C3 $CHAR3. /* For RX14, level 3 of MULTUM drug category #3 (detailed level) */ @1425 RX14V3C4 $CHAR3. /* For RX14, level 3 of MULTUM drug category #4 (detailed level) */ @1428 DRUGID15 $CHAR6. /* Drug ID code for medication #15 */ @1434 PRESCR15 1. /* Prescription status code for medication #15 */ @1435 CONTSUB15 1. /* Controlled substance status code for medication #15 */ @1436 COMSTAT15 1. /* Composition status code for medication #15 */ @1437 RX15CAT1 $CHAR3. /* For RX15, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1440 RX15CAT2 $CHAR3. /* For RX15, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1443 RX15CAT3 $CHAR3. /* For RX15, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1446 RX15CAT4 $CHAR3. /* For RX15, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1449 RX15V1C1 $CHAR3. /* For RX15, level 1 of MULTUM drug category #1 (broad level) */ @1452 RX15V1C2 $CHAR3. /* For RX15, level 1 of MULTUM drug category #2 (broad level) */ @1455 RX15V1C3 $CHAR3. /* For RX15, level 1 of MULTUM drug category #3 (broad level) */ @1458 RX15V1C4 $CHAR3. /* For RX15, level 1 of MULTUM drug category #4 (broad level) */ @1461 RX15V2C1 $CHAR3. /* For RX15, level 2 of MULTUM drug category #1 (intermediate level) */ @1464 RX15V2C2 $CHAR3. /* For RX15, level 2 of MULTUM drug category #2 (intermediate level) */ @1467 RX15V2C3 $CHAR3. /* For RX15, level 2 of MULTUM drug category #3 (intermediate level) */ @1470 RX15V2C4 $CHAR3. /* For RX15, level 2 of MULTUM drug category #4 (intermediate level) */ @1473 RX15V3C1 $CHAR3. /* For RX15, level 3 of MULTUM drug category #1 (detailed level) */ @1476 RX15V3C2 $CHAR3. /* For RX15, level 3 of MULTUM drug category #2 (detailed level) */ @1479 RX15V3C3 $CHAR3. /* For RX15, level 3 of MULTUM drug category #3 (detailed level) */ @1482 RX15V3C4 $CHAR3. /* For RX15, level 3 of MULTUM drug category #4 (detailed level) */ @1485 DRUGID16 $CHAR6. /* Drug ID code for medication #16 */ @1491 PRESCR16 1. /* Prescription status code for medication #16 */ @1492 CONTSUB16 1. /* Controlled substance status code for medication #16 */ @1493 COMSTAT16 1. /* Composition status code for medication #16 */ @1494 RX16CAT1 $CHAR3. /* For RX16, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1497 RX16CAT2 $CHAR3. /* For RX16, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1500 RX16CAT3 $CHAR3. /* For RX16, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1503 RX16CAT4 $CHAR3. /* For RX16, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1506 RX16V1C1 $CHAR3. /* For RX16, level 1 of MULTUM drug category #1 (broad level) */ @1509 RX16V1C2 $CHAR3. /* For RX16, level 1 of MULTUM drug category #2 (broad level) */ @1512 RX16V1C3 $CHAR3. /* For RX16, level 1 of MULTUM drug category #3 (broad level) */ @1515 RX16V1C4 $CHAR3. /* For RX16, level 1 of MULTUM drug category #4 (broad level) */ @1518 RX16V2C1 $CHAR3. /* For RX16, level 2 of MULTUM drug category #1 (intermediate level) */ @1521 RX16V2C2 $CHAR3. /* For RX16, level 2 of MULTUM drug category #2 (intermediate level) */ @1524 RX16V2C3 $CHAR3. /* For RX16, level 2 of MULTUM drug category #3 (intermediate level) */ @1527 RX16V2C4 $CHAR3. /* For RX16, level 2 of MULTUM drug category #4 (intermediate level) */ @1530 RX16V3C1 $CHAR3. /* For RX16, level 3 of MULTUM drug category #1 (detailed level) */ @1533 RX16V3C2 $CHAR3. /* For RX16, level 3 of MULTUM drug category #2 (detailed level) */ @1536 RX16V3C3 $CHAR3. /* For RX16, level 3 of MULTUM drug category #3 (detailed level) */ @1539 RX16V3C4 $CHAR3. /* For RX16, level 3 of MULTUM drug category #4 (detailed level) */ @1542 DRUGID17 $CHAR6. /* Drug ID code for medication #17 */ @1548 PRESCR17 1. /* Prescription status code for medication #17 */ @1549 CONTSUB17 1. /* Controlled substance status code for medication #17 */ @1550 COMSTAT17 1. /* Composition status code for medication #17 */ @1551 RX17CAT1 $CHAR3. /* For RX17, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1554 RX17CAT2 $CHAR3. /* For RX17, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1557 RX17CAT3 $CHAR3. /* For RX17, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1560 RX17CAT4 $CHAR3. /* For RX17, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1563 RX17V1C1 $CHAR3. /* For RX17, level 1 of MULTUM drug category #1 (broad level) */ @1566 RX17V1C2 $CHAR3. /* For RX17, level 1 of MULTUM drug category #2 (broad level) */ @1569 RX17V1C3 $CHAR3. /* For RX17, level 1 of MULTUM drug category #3 (broad level) */ @1572 RX17V1C4 $CHAR3. /* For RX17, level 1 of MULTUM drug category #4 (broad level) */ @1575 RX17V2C1 $CHAR3. /* For RX17, level 2 of MULTUM drug category #1 (intermediate level) */ @1578 RX17V2C2 $CHAR3. /* For RX17, level 2 of MULTUM drug category #2 (intermediate level) */ @1581 RX17V2C3 $CHAR3. /* For RX17, level 2 of MULTUM drug category #3 (intermediate level) */ @1584 RX17V2C4 $CHAR3. /* For RX17, level 2 of MULTUM drug category #4 (intermediate level) */ @1587 RX17V3C1 $CHAR3. /* For RX17, level 3 of MULTUM drug category #1 (detailed level) */ @1590 RX17V3C2 $CHAR3. /* For RX17, level 3 of MULTUM drug category #2 (detailed level) */ @1593 RX17V3C3 $CHAR3. /* For RX17, level 3 of MULTUM drug category #3 (detailed level) */ @1596 RX17V3C4 $CHAR3. /* For RX17, level 3 of MULTUM drug category #4 (detailed level) */ @1599 DRUGID18 $CHAR6. /* Drug ID code for medication #18 */ @1605 PRESCR18 1. /* Prescription status code for medication #18 */ @1606 CONTSUB18 1. /* Controlled substance status code for medication #18 */ @1607 COMSTAT18 1. /* Composition status code for medication #18 */ @1608 RX18CAT1 $CHAR3. /* For RX18, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1611 RX18CAT2 $CHAR3. /* For RX18, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1614 RX18CAT3 $CHAR3. /* For RX18, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1617 RX18CAT4 $CHAR3. /* For RX18, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1620 RX18V1C1 $CHAR3. /* For RX18, level 1 of MULTUM drug category #1 (broad level) */ @1623 RX18V1C2 $CHAR3. /* For RX18, level 1 of MULTUM drug category #2 (broad level) */ @1626 RX18V1C3 $CHAR3. /* For RX18, level 1 of MULTUM drug category #3 (broad level) */ @1629 RX18V1C4 $CHAR3. /* For RX18, level 1 of MULTUM drug category #4 (broad level) */ @1632 RX18V2C1 $CHAR3. /* For RX18, level 2 of MULTUM drug category #1 (intermediate level) */ @1635 RX18V2C2 $CHAR3. /* For RX18, level 2 of MULTUM drug category #2 (intermediate level) */ @1638 RX18V2C3 $CHAR3. /* For RX18, level 2 of MULTUM drug category #3 (intermediate level) */ @1641 RX18V2C4 $CHAR3. /* For RX18, level 2 of MULTUM drug category #4 (intermediate level) */ @1644 RX18V3C1 $CHAR3. /* For RX18, level 3 of MULTUM drug category #1 (detailed level) */ @1647 RX18V3C2 $CHAR3. /* For RX18, level 3 of MULTUM drug category #2 (detailed level) */ @1650 RX18V3C3 $CHAR3. /* For RX18, level 3 of MULTUM drug category #3 (detailed level) */ @1653 RX18V3C4 $CHAR3. /* For RX18, level 3 of MULTUM drug category #4 (detailed level) */ @1656 DRUGID19 $CHAR6. /* Drug ID code for medication #19 */ @1662 PRESCR19 1. /* Prescription status code for medication #19 */ @1663 CONTSUB19 1. /* Controlled substance status code for medication #19 */ @1664 COMSTAT19 1. /* Composition status code for medication #19 */ @1665 RX19CAT1 $CHAR3. /* For RX19, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1668 RX19CAT2 $CHAR3. /* For RX19, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1671 RX19CAT3 $CHAR3. /* For RX19, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1674 RX19CAT4 $CHAR3. /* For RX19, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1677 RX19V1C1 $CHAR3. /* For RX19, level 1 of MULTUM drug category #1 (broad level) */ @1680 RX19V1C2 $CHAR3. /* For RX19, level 1 of MULTUM drug category #2 (broad level) */ @1683 RX19V1C3 $CHAR3. /* For RX19, level 1 of MULTUM drug category #3 (broad level) */ @1686 RX19V1C4 $CHAR3. /* For RX19, level 1 of MULTUM drug category #4 (broad level) */ @1689 RX19V2C1 $CHAR3. /* For RX19, level 2 of MULTUM drug category #1 (intermediate level) */ @1692 RX19V2C2 $CHAR3. /* For RX19, level 2 of MULTUM drug category #2 (intermediate level) */ @1695 RX19V2C3 $CHAR3. /* For RX19, level 2 of MULTUM drug category #3 (intermediate level) */ @1698 RX19V2C4 $CHAR3. /* For RX19, level 2 of MULTUM drug category #4 (intermediate level) */ @1701 RX19V3C1 $CHAR3. /* For RX19, level 3 of MULTUM drug category #1 (detailed level) */ @1704 RX19V3C2 $CHAR3. /* For RX19, level 3 of MULTUM drug category #2 (detailed level) */ @1707 RX19V3C3 $CHAR3. /* For RX19, level 3 of MULTUM drug category #3 (detailed level) */ @1710 RX19V3C4 $CHAR3. /* For RX19, level 3 of MULTUM drug category #4 (detailed level) */ @1713 DRUGID20 $CHAR6. /* Drug ID code for medication #20 */ @1719 PRESCR20 1. /* Prescription status code for medication #20 */ @1720 CONTSUB20 1. /* Controlled substance status code for medication #20 */ @1721 COMSTAT20 1. /* Composition status code for medication #20 */ @1722 RX20CAT1 $CHAR3. /* For RX20, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1725 RX20CAT2 $CHAR3. /* For RX20, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1728 RX20CAT3 $CHAR3. /* For RX20, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1731 RX20CAT4 $CHAR3. /* For RX20, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1734 RX20V1C1 $CHAR3. /* For RX20, level 1 of MULTUM drug category #1 (broad level) */ @1737 RX20V1C2 $CHAR3. /* For RX20, level 1 of MULTUM drug category #2 (broad level) */ @1740 RX20V1C3 $CHAR3. /* For RX20, level 1 of MULTUM drug category #3 (broad level) */ @1743 RX20V1C4 $CHAR3. /* For RX20, level 1 of MULTUM drug category #4 (broad level) */ @1746 RX20V2C1 $CHAR3. /* For RX20, level 2 of MULTUM drug category #1 (intermediate level) */ @1749 RX20V2C2 $CHAR3. /* For RX20, level 2 of MULTUM drug category #2 (intermediate level) */ @1752 RX20V2C3 $CHAR3. /* For RX20, level 2 of MULTUM drug category #3 (intermediate level) */ @1755 RX20V2C4 $CHAR3. /* For RX20, level 2 of MULTUM drug category #4 (intermediate level) */ @1758 RX20V3C1 $CHAR3. /* For RX20, level 3 of MULTUM drug category #1 (detailed level) */ @1761 RX20V3C2 $CHAR3. /* For RX20, level 3 of MULTUM drug category #2 (detailed level) */ @1764 RX20V3C3 $CHAR3. /* For RX20, level 3 of MULTUM drug category #3 (detailed level) */ @1767 RX20V3C4 $CHAR3. /* For RX20, level 3 of MULTUM drug category #4 (detailed level) */ @1770 DRUGID21 $CHAR6. /* Drug ID code for medication #21 */ @1776 PRESCR21 1. /* Prescription status code for medication #21 */ @1777 CONTSUB21 1. /* Controlled substance status code for medication #21 */ @1778 COMSTAT21 1. /* Composition status code for medication #21 */ @1779 RX21CAT1 $CHAR3. /* For RX21, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1782 RX21CAT2 $CHAR3. /* For RX21, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1785 RX21CAT3 $CHAR3. /* For RX21, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1788 RX21CAT4 $CHAR3. /* For RX21, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1791 RX21V1C1 $CHAR3. /* For RX21, level 1 of MULTUM drug category #1 (broad level) */ @1794 RX21V1C2 $CHAR3. /* For RX21, level 1 of MULTUM drug category #2 (broad level) */ @1797 RX21V1C3 $CHAR3. /* For RX21, level 1 of MULTUM drug category #3 (broad level) */ @1800 RX21V1C4 $CHAR3. /* For RX21, level 1 of MULTUM drug category #4 (broad level) */ @1803 RX21V2C1 $CHAR3. /* For RX21, level 2 of MULTUM drug category #1 (intermediate level) */ @1806 RX21V2C2 $CHAR3. /* For RX21, level 2 of MULTUM drug category #2 (intermediate level) */ @1809 RX21V2C3 $CHAR3. /* For RX21, level 2 of MULTUM drug category #3 (intermediate level) */ @1812 RX21V2C4 $CHAR3. /* For RX21, level 2 of MULTUM drug category #4 (intermediate level) */ @1815 RX21V3C1 $CHAR3. /* For RX21, level 3 of MULTUM drug category #1 (detailed level) */ @1818 RX21V3C2 $CHAR3. /* For RX21, level 3 of MULTUM drug category #2 (detailed level) */ @1821 RX21V3C3 $CHAR3. /* For RX21, level 3 of MULTUM drug category #3 (detailed level) */ @1824 RX21V3C4 $CHAR3. /* For RX21, level 3 of MULTUM drug category #4 (detailed level) */ @1827 DRUGID22 $CHAR6. /* Drug ID code for medication #22 */ @1833 PRESCR22 1. /* Prescription status code for medication #22 */ @1834 CONTSUB22 1. /* Controlled substance status code for medication #22 */ @1835 COMSTAT22 1. /* Composition status code for medication #22 */ @1836 RX22CAT1 $CHAR3. /* For RX22, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1839 RX22CAT2 $CHAR3. /* For RX22, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1842 RX22CAT3 $CHAR3. /* For RX22, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1845 RX22CAT4 $CHAR3. /* For RX22, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1848 RX22V1C1 $CHAR3. /* For RX22, level 1 of MULTUM drug category #1 (broad level) */ @1851 RX22V1C2 $CHAR3. /* For RX22, level 1 of MULTUM drug category #2 (broad level) */ @1854 RX22V1C3 $CHAR3. /* For RX22, level 1 of MULTUM drug category #3 (broad level) */ @1857 RX22V1C4 $CHAR3. /* For RX22, level 1 of MULTUM drug category #4 (broad level) */ @1860 RX22V2C1 $CHAR3. /* For RX22, level 2 of MULTUM drug category #1 (intermediate level) */ @1863 RX22V2C2 $CHAR3. /* For RX22, level 2 of MULTUM drug category #2 (intermediate level) */ @1866 RX22V2C3 $CHAR3. /* For RX22, level 2 of MULTUM drug category #3 (intermediate level) */ @1869 RX22V2C4 $CHAR3. /* For RX22, level 2 of MULTUM drug category #4 (intermediate level) */ @1872 RX22V3C1 $CHAR3. /* For RX22, level 3 of MULTUM drug category #1 (detailed level) */ @1875 RX22V3C2 $CHAR3. /* For RX22, level 3 of MULTUM drug category #2 (detailed level) */ @1878 RX22V3C3 $CHAR3. /* For RX22, level 3 of MULTUM drug category #3 (detailed level) */ @1881 RX22V3C4 $CHAR3. /* For RX22, level 3 of MULTUM drug category #4 (detailed level) */ @1884 DRUGID23 $CHAR6. /* Drug ID code for medication #23 */ @1890 PRESCR23 1. /* Prescription status code for medication #23 */ @1891 CONTSUB23 1. /* Controlled substance status code for medication #23 */ @1892 COMSTAT23 1. /* Composition status code for medication #23 */ @1893 RX23CAT1 $CHAR3. /* For RX23, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1896 RX23CAT2 $CHAR3. /* For RX23, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1899 RX23CAT3 $CHAR3. /* For RX23, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1902 RX23CAT4 $CHAR3. /* For RX23, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1905 RX23V1C1 $CHAR3. /* For RX23, level 1 of MULTUM drug category #1 (broad level) */ @1908 RX23V1C2 $CHAR3. /* For RX23, level 1 of MULTUM drug category #2 (broad level) */ @1911 RX23V1C3 $CHAR3. /* For RX23, level 1 of MULTUM drug category #3 (broad level) */ @1914 RX23V1C4 $CHAR3. /* For RX23, level 1 of MULTUM drug category #4 (broad level) */ @1917 RX23V2C1 $CHAR3. /* For RX23, level 2 of MULTUM drug category #1 (intermediate level) */ @1920 RX23V2C2 $CHAR3. /* For RX23, level 2 of MULTUM drug category #2 (intermediate level) */ @1923 RX23V2C3 $CHAR3. /* For RX23, level 2 of MULTUM drug category #3 (intermediate level) */ @1926 RX23V2C4 $CHAR3. /* For RX23, level 2 of MULTUM drug category #4 (intermediate level) */ @1929 RX23V3C1 $CHAR3. /* For RX23, level 3 of MULTUM drug category #1 (detailed level) */ @1932 RX23V3C2 $CHAR3. /* For RX23, level 3 of MULTUM drug category #2 (detailed level) */ @1935 RX23V3C3 $CHAR3. /* For RX23, level 3 of MULTUM drug category #3 (detailed level) */ @1938 RX23V3C4 $CHAR3. /* For RX23, level 3 of MULTUM drug category #4 (detailed level) */ @1941 DRUGID24 $CHAR6. /* Drug ID code for medication #24 */ @1947 PRESCR24 1. /* Prescription status code for medication #24 */ @1948 CONTSUB24 1. /* Controlled substance status code for medication #24 */ @1949 COMSTAT24 1. /* Composition status code for medication #24 */ @1950 RX24CAT1 $CHAR3. /* For RX24, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @1953 RX24CAT2 $CHAR3. /* For RX24, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @1956 RX24CAT3 $CHAR3. /* For RX24, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @1959 RX24CAT4 $CHAR3. /* For RX24, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @1962 RX24V1C1 $CHAR3. /* For RX24, level 1 of MULTUM drug category #1 (broad level) */ @1965 RX24V1C2 $CHAR3. /* For RX24, level 1 of MULTUM drug category #2 (broad level) */ @1968 RX24V1C3 $CHAR3. /* For RX24, level 1 of MULTUM drug category #3 (broad level) */ @1971 RX24V1C4 $CHAR3. /* For RX24, level 1 of MULTUM drug category #4 (broad level) */ @1974 RX24V2C1 $CHAR3. /* For RX24, level 2 of MULTUM drug category #1 (intermediate level) */ @1977 RX24V2C2 $CHAR3. /* For RX24, level 2 of MULTUM drug category #2 (intermediate level) */ @1980 RX24V2C3 $CHAR3. /* For RX24, level 2 of MULTUM drug category #3 (intermediate level) */ @1983 RX24V2C4 $CHAR3. /* For RX24, level 2 of MULTUM drug category #4 (intermediate level) */ @1986 RX24V3C1 $CHAR3. /* For RX24, level 3 of MULTUM drug category #1 (detailed level) */ @1989 RX24V3C2 $CHAR3. /* For RX24, level 3 of MULTUM drug category #2 (detailed level) */ @1992 RX24V3C3 $CHAR3. /* For RX24, level 3 of MULTUM drug category #3 (detailed level) */ @1995 RX24V3C4 $CHAR3. /* For RX24, level 3 of MULTUM drug category #4 (detailed level) */ @1998 DRUGID25 $CHAR6. /* Drug ID code for medication #25 */ @2004 PRESCR25 1. /* Prescription status code for medication #25 */ @2005 CONTSUB25 1. /* Controlled substance status code for medication #25 */ @2006 COMSTAT25 1. /* Composition status code for medication #25 */ @2007 RX25CAT1 $CHAR3. /* For RX25, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @2010 RX25CAT2 $CHAR3. /* For RX25, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @2013 RX25CAT3 $CHAR3. /* For RX25, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @2016 RX25CAT4 $CHAR3. /* For RX25, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @2019 RX25V1C1 $CHAR3. /* For RX25, level 1 of MULTUM drug category #1 (broad level) */ @2022 RX25V1C2 $CHAR3. /* For RX25, level 1 of MULTUM drug category #2 (broad level) */ @2025 RX25V1C3 $CHAR3. /* For RX25, level 1 of MULTUM drug category #3 (broad level) */ @2028 RX25V1C4 $CHAR3. /* For RX25, level 1 of MULTUM drug category #4 (broad level) */ @2031 RX25V2C1 $CHAR3. /* For RX25, level 2 of MULTUM drug category #1 (intermediate level) */ @2034 RX25V2C2 $CHAR3. /* For RX25, level 2 of MULTUM drug category #2 (intermediate level) */ @2037 RX25V2C3 $CHAR3. /* For RX25, level 2 of MULTUM drug category #3 (intermediate level) */ @2040 RX25V2C4 $CHAR3. /* For RX25, level 2 of MULTUM drug category #4 (intermediate level) */ @2043 RX25V3C1 $CHAR3. /* For RX25, level 3 of MULTUM drug category #1 (detailed level) */ @2046 RX25V3C2 $CHAR3. /* For RX25, level 3 of MULTUM drug category #2 (detailed level) */ @2049 RX25V3C3 $CHAR3. /* For RX25, level 3 of MULTUM drug category #3 (detailed level) */ @2052 RX25V3C4 $CHAR3. /* For RX25, level 3 of MULTUM drug category #4 (detailed level) */ @2055 DRUGID26 $CHAR6. /* Drug ID code for medication #26 */ @2061 PRESCR26 1. /* Prescription status code for medication #26 */ @2062 CONTSUB26 1. /* Controlled substance status code for medication #26 */ @2063 COMSTAT26 1. /* Composition status code for medication #26 */ @2064 RX26CAT1 $CHAR3. /* For RX26, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @2067 RX26CAT2 $CHAR3. /* For RX26, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @2070 RX26CAT3 $CHAR3. /* For RX26, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @2073 RX26CAT4 $CHAR3. /* For RX26, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @2076 RX26V1C1 $CHAR3. /* For RX26, level 1 of MULTUM drug category #1 (broad level) */ @2079 RX26V1C2 $CHAR3. /* For RX26, level 1 of MULTUM drug category #2 (broad level) */ @2082 RX26V1C3 $CHAR3. /* For RX26, level 1 of MULTUM drug category #3 (broad level) */ @2085 RX26V1C4 $CHAR3. /* For RX26, level 1 of MULTUM drug category #4 (broad level) */ @2088 RX26V2C1 $CHAR3. /* For RX26, level 2 of MULTUM drug category #1 (intermediate level) */ @2091 RX26V2C2 $CHAR3. /* For RX26, level 2 of MULTUM drug category #2 (intermediate level) */ @2094 RX26V2C3 $CHAR3. /* For RX26, level 2 of MULTUM drug category #3 (intermediate level) */ @2097 RX26V2C4 $CHAR3. /* For RX26, level 2 of MULTUM drug category #4 (intermediate level) */ @2100 RX26V3C1 $CHAR3. /* For RX26, level 3 of MULTUM drug category #1 (detailed level) */ @2103 RX26V3C2 $CHAR3. /* For RX26, level 3 of MULTUM drug category #2 (detailed level) */ @2106 RX26V3C3 $CHAR3. /* For RX26, level 3 of MULTUM drug category #3 (detailed level) */ @2109 RX26V3C4 $CHAR3. /* For RX26, level 3 of MULTUM drug category #4 (detailed level) */ @2112 DRUGID27 $CHAR6. /* Drug ID code for medication #27 */ @2118 PRESCR27 1. /* Prescription status code for medication #27 */ @2119 CONTSUB27 1. /* Controlled substance status code for medication #27 */ @2120 COMSTAT27 1. /* Composition status code for medication #27 */ @2121 RX27CAT1 $CHAR3. /* For RX27, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @2124 RX27CAT2 $CHAR3. /* For RX27, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @2127 RX27CAT3 $CHAR3. /* For RX27, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @2130 RX27CAT4 $CHAR3. /* For RX27, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @2133 RX27V1C1 $CHAR3. /* For RX27, level 1 of MULTUM drug category #1 (broad level) */ @2136 RX27V1C2 $CHAR3. /* For RX27, level 1 of MULTUM drug category #2 (broad level) */ @2139 RX27V1C3 $CHAR3. /* For RX27, level 1 of MULTUM drug category #3 (broad level) */ @2142 RX27V1C4 $CHAR3. /* For RX27, level 1 of MULTUM drug category #4 (broad level) */ @2145 RX27V2C1 $CHAR3. /* For RX27, level 2 of MULTUM drug category #1 (intermediate level) */ @2148 RX27V2C2 $CHAR3. /* For RX27, level 2 of MULTUM drug category #2 (intermediate level) */ @2151 RX27V2C3 $CHAR3. /* For RX27, level 2 of MULTUM drug category #3 (intermediate level) */ @2154 RX27V2C4 $CHAR3. /* For RX27, level 2 of MULTUM drug category #4 (intermediate level) */ @2157 RX27V3C1 $CHAR3. /* For RX27, level 3 of MULTUM drug category #1 (detailed level) */ @2160 RX27V3C2 $CHAR3. /* For RX27, level 3 of MULTUM drug category #2 (detailed level) */ @2163 RX27V3C3 $CHAR3. /* For RX27, level 3 of MULTUM drug category #3 (detailed level) */ @2166 RX27V3C4 $CHAR3. /* For RX27, level 3 of MULTUM drug category #4 (detailed level) */ @2169 DRUGID28 $CHAR6. /* Drug ID code for medication #28 */ @2175 PRESCR28 1. /* Prescription status code for medication #28 */ @2176 CONTSUB28 1. /* Controlled substance status code for medication #28 */ @2177 COMSTAT28 1. /* Composition status code for medication #28 */ @2178 RX28CAT1 $CHAR3. /* For RX28, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @2181 RX28CAT2 $CHAR3. /* For RX28, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @2184 RX28CAT3 $CHAR3. /* For RX28, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @2187 RX28CAT4 $CHAR3. /* For RX28, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @2190 RX28V1C1 $CHAR3. /* For RX28, level 1 of MULTUM drug category #1 (broad level) */ @2193 RX28V1C2 $CHAR3. /* For RX28, level 1 of MULTUM drug category #2 (broad level) */ @2196 RX28V1C3 $CHAR3. /* For RX28, level 1 of MULTUM drug category #3 (broad level) */ @2199 RX28V1C4 $CHAR3. /* For RX28, level 1 of MULTUM drug category #4 (broad level) */ @2202 RX28V2C1 $CHAR3. /* For RX28, level 2 of MULTUM drug category #1 (intermediate level) */ @2205 RX28V2C2 $CHAR3. /* For RX28, level 2 of MULTUM drug category #2 (intermediate level) */ @2208 RX28V2C3 $CHAR3. /* For RX28, level 2 of MULTUM drug category #3 (intermediate level) */ @2211 RX28V2C4 $CHAR3. /* For RX28, level 2 of MULTUM drug category #4 (intermediate level) */ @2214 RX28V3C1 $CHAR3. /* For RX28, level 3 of MULTUM drug category #1 (detailed level) */ @2217 RX28V3C2 $CHAR3. /* For RX28, level 3 of MULTUM drug category #2 (detailed level) */ @2220 RX28V3C3 $CHAR3. /* For RX28, level 3 of MULTUM drug category #3 (detailed level) */ @2223 RX28V3C4 $CHAR3. /* For RX28, level 3 of MULTUM drug category #4 (detailed level) */ @2226 DRUGID29 $CHAR6. /* Drug ID code for medication #29 */ @2232 PRESCR29 1. /* Prescription status code for medication #29 */ @2233 CONTSUB29 1. /* Controlled substance status code for medication #29 */ @2234 COMSTAT29 1. /* Composition status code for medication #29 */ @2235 RX29CAT1 $CHAR3. /* For RX29, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @2238 RX29CAT2 $CHAR3. /* For RX29, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @2241 RX29CAT3 $CHAR3. /* For RX29, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @2244 RX29CAT4 $CHAR3. /* For RX29, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @2247 RX29V1C1 $CHAR3. /* For RX29, level 1 of MULTUM drug category #1 (broad level) */ @2250 RX29V1C2 $CHAR3. /* For RX29, level 1 of MULTUM drug category #2 (broad level) */ @2253 RX29V1C3 $CHAR3. /* For RX29, level 1 of MULTUM drug category #3 (broad level) */ @2256 RX29V1C4 $CHAR3. /* For RX29, level 1 of MULTUM drug category #4 (broad level) */ @2259 RX29V2C1 $CHAR3. /* For RX29, level 2 of MULTUM drug category #1 (intermediate level) */ @2262 RX29V2C2 $CHAR3. /* For RX29, level 2 of MULTUM drug category #2 (intermediate level) */ @2265 RX29V2C3 $CHAR3. /* For RX29, level 2 of MULTUM drug category #3 (intermediate level) */ @2268 RX29V2C4 $CHAR3. /* For RX29, level 2 of MULTUM drug category #4 (intermediate level) */ @2271 RX29V3C1 $CHAR3. /* For RX29, level 3 of MULTUM drug category #1 (detailed level) */ @2274 RX29V3C2 $CHAR3. /* For RX29, level 3 of MULTUM drug category #2 (detailed level) */ @2277 RX29V3C3 $CHAR3. /* For RX29, level 3 of MULTUM drug category #3 (detailed level) */ @2280 RX29V3C4 $CHAR3. /* For RX29, level 3 of MULTUM drug category #4 (detailed level) */ @2283 DRUGID30 $CHAR6. /* Drug ID code for medication #30 */ @2289 PRESCR30 1. /* Prescription status code for medication #30 */ @2290 CONTSUB30 1. /* Controlled substance status code for medication #30 */ @2291 COMSTAT30 1. /* Composition status code for medication #30 */ @2292 RX30CAT1 $CHAR3. /* For RX30, MULTUM drug category #1 - most detailed level (can be either Level 1,2 or 3) */ @2295 RX30CAT2 $CHAR3. /* For RX30, MULTUM drug category #2 - most detailed level (can be either Level 1,2 or 3) */ @2298 RX30CAT3 $CHAR3. /* For RX30, MULTUM drug category #3 - most detailed level (can be either Level 1,2 or 3) */ @2301 RX30CAT4 $CHAR3. /* For RX30, MULTUM drug category #4 - most detailed level (can be either Level 1,2 or 3) */ @2304 RX30V1C1 $CHAR3. /* For RX30, level 1 of MULTUM drug category #1 (broad level) */ @2307 RX30V1C2 $CHAR3. /* For RX30, level 1 of MULTUM drug category #2 (broad level) */ @2310 RX30V1C3 $CHAR3. /* For RX30, level 1 of MULTUM drug category #3 (broad level) */ @2313 RX30V1C4 $CHAR3. /* For RX30, level 1 of MULTUM drug category #4 (broad level) */ @2316 RX30V2C1 $CHAR3. /* For RX30, level 2 of MULTUM drug category #1 (intermediate level) */ @2319 RX30V2C2 $CHAR3. /* For RX30, level 2 of MULTUM drug category #2 (intermediate level) */ @2322 RX30V2C3 $CHAR3. /* For RX30, level 2 of MULTUM drug category #3 (intermediate level) */ @2325 RX30V2C4 $CHAR3. /* For RX30, level 2 of MULTUM drug category #4 (intermediate level) */ @2328 RX30V3C1 $CHAR3. /* For RX30, level 3 of MULTUM drug category #1 (detailed level) */ @2331 RX30V3C2 $CHAR3. /* For RX30, level 3 of MULTUM drug category #2 (detailed level) */ @2334 RX30V3C3 $CHAR3. /* For RX30, level 3 of MULTUM drug category #3 (detailed level) */ @2337 RX30V3C4 $CHAR3. /* For RX30, level 3 of MULTUM drug category #4 (detailed level) */ @2340 SETTYPE 1. /* Setting type */ @2341 YEAR 4. /* Survey year */ @2345 CSTRATM 8. /* Clustered CSTRATM -- masked */ @2353 CPSUM 6. /* Clustered CPSUM -- masked */ @2359 PATWT 11.5 /* Patient visit weight */ @2370 EDWT 9.5 /* ED weight */ @2379 BOARDED 4. /* Length of time boarded in ED in minutes */ ;