BookmarkSubscribeRSS Feed
grhyne
Calcite | Level 5

Hi,

 

 I am able to bring in two datasets variable, but only information from one is showing up - the 2nd dataset information only shows up as "." or blank. The thing is I don't need all of the information from the 2nd set, only certain information for a dashboard. I tried using retain but that doesn't seem to be doing anything. 

 

Here is the relevant part of my code so far:

 

proc import file="X:\SPH\Restricted\Winthrop\Current Projects\Biobank OCTRI\SAS\OCTRI4259NTMDiseaseP_DATA_2023-09-14_1057.csv"
out=work.redcap
dbms=csv replace;
run;

proc import file="X:\SPH\Restricted\Winthrop\Current Projects\Biobank OCTRI\SAS\OCTRI_data.xlsx"
out=work.access
dbms=xlsx;
run;

options MSGLEVEL=I;

proc sort data=redcap; by id; run;
proc sort data=access; by ID; run;


**Convert sex to a characteristic**;

data want;
set access;
if sex='M' then sex_r=1;
if sex='F' then sex_r=0;
drop sex;
rename sex_r=sex;
run;


**Merge both datasets into one excel**;

data enrollments;
merge redcap (in=a) want (in=b);
retain source;
if a;
by ID;
run;

 

proc print data=enrollments;
Title 'Biobank Enrollments';
run;

2 REPLIES 2
Kurt_Bremser
Super User

Which variables from access are needed?

What is the type of variable id?

Please post the complete log of your code by copy/pasting the text into a window opened with this button:
Bildschirmfoto 2020-04-07 um 08.32.59.jpg

grhyne
Calcite | Level 5
29    *   DESC:      Generated SAS Datastep Code
30    *   TEMPLATE SOURCE:  (None Specified.)
31    ***********************************************************************/
32       data WORK.REDCAP    ;
33       %let _EFIERR_ = 0; /* set the ERROR detection macro variable */
34       infile 'X:\SPH\Restricted\Winthrop\Current Projects\Biobank
34 ! OCTRI\SAS\OCTRI4259NTMDiseaseP_DATA_2023-09-14_1057.csv' delimiter = ',' MISSOVER DSD
34 ! lrecl=32767 firstobs=2 ;
35          informat id best32. ;
36          informat reviewdate mmddyy10. ;
37          informat newntm best32. ;
38          informat sex best32. ;
39          informat birthplace best32. ;
40          informat usyears $1. ;
41          informat currentinsurance best32. ;
42          informat smoke best32. ;
43          informat vitd best32. ;
44          informat vitdose1 best32. ;
45          informat vitdlevel1 best32. ;
46          informat height best32. ;
47          informat heightmeas best32. ;
48          informat currentweight best32. ;
49          informat currentweightmeas best32. ;
50          informat firstweight best32. ;
51          informat firstweightmeas best32. ;
52          informat criteriaweight best32. ;
53          informat criteriaweightmeas best32. ;
54          informat demographics_complete best32. ;
55          informat ntm2005 best32. ;
56          informat symptoms2005 best32. ;
57          informat radiog2005 $1. ;
58          informat alternate2005 best32. ;
59          informat micro2005 $1. ;
60          informat ntmever best32. ;
61          informat ntmnow best32. ;
62          informat ntmsymptom best32. ;
63          informat ntmradiography $1. ;
64          informat ntmmicro best32. ;
65          informat ntmdiagnoses $1. ;
66          informat ntmother best32. ;
67          informat reviewstatus best32. ;
68          informat current_criteria_complete best32. ;
69          informat oldntmsource best32. ;
70          informat oldntmsite best32. ;
71          informat oldntmculture best32. ;
72          informat oldntmmulti best32. ;
73          informat oldntmothermulti $1. ;
74          informat oldntmculture2___0 best32. ;
75          informat oldntmculture2___1 best32. ;
76          informat oldntmculture2___2 best32. ;
77          informat oldntmculture2___3 best32. ;
78          informat oldntmculture2___4 best32. ;
79          informat oldntmculture2___5 best32. ;
80          informat oldntmculture2___6 best32. ;
81          informat oldntmculture2___7 best32. ;
82          informat oldntmtreat best32. ;
83          informat oldntmimmuno___0 best32. ;
84          informat oldntmimmuno___1 best32. ;
85          informat oldntmimmuno___2 best32. ;
86          informat oldntmimmuno___3 best32. ;
87          informat oldntmimmuno___4 best32. ;
88          informat oldntmimmuno___5 best32. ;
89          informat oldntmimmuno___6 best32. ;
90          informat oldntmimmuno___7 best32. ;
91          informat oldntmimmuno___8 best32. ;
92          informat oldntmimmuno___9 best32. ;
93          informat oldntmimmuno___10 best32. ;
94          informat oldntmimmuno___11 best32. ;
95          informat oldntmimmuno___12 best32. ;
96          informat oldntmimmuno___13 best32. ;
97          informat oldntmimmuno___14 best32. ;
98          informat oldntmimmuno___15 best32. ;
99          informat oldntmimmuno___16 best32. ;
100         informat oldntmimmuno___17 best32. ;
101         informat oldntminhaled___0 best32. ;
102         informat oldntminhaled___1 best32. ;
103         informat oldntmcomorbid___0 best32. ;
104         informat oldntmcomorbid___1 best32. ;
105         informat oldntmcomorbid___2 best32. ;
106         informat oldntmcomorbid___3 best32. ;
107         informat oldntmcomorbid___4 best32. ;
108         informat oldntmcomorbid___5 best32. ;
109         informat oldntmcomorbid___6 best32. ;
110         informat oldntmcomorbid___7 best32. ;
111         informat oldntmcomorbid___8 best32. ;
112         informat oldntmcomorbid___9 best32. ;
113         informat oldntmcomorbid___10 best32. ;
114         informat oldntmcomorbid___11 best32. ;
115         informat oldntmcomorbid___12 best32. ;
116         informat oldntmcomorbid___13 best32. ;
117         informat oldntmcomorbid___14 best32. ;
118         informat oldntmcomorbid___15 best32. ;
119         informat oldntmcomorbid___16 best32. ;
120         informat oldntmcomorbid___17 best32. ;
121         informat oldntmcomorbid___18 best32. ;
122         informat oldntmcomorbid___19 best32. ;
123         informat oldntmcomorbid___20 best32. ;
124         informat oldntmtbtype $1. ;
125         informat oldntmautoimmunetype $1. ;
126         informat oldntmtransplant___0 best32. ;
127         informat oldntmtransplant___1 best32. ;
128         informat oldntmtransplant___2 best32. ;
129         informat old_history_complete best32. ;
130         informat pid best32. ;
131         informat pidntm best32. ;
132         informat hiv best32. ;
133         informat hivntm $1. ;
134         informat cancer best32. ;
135         informat cancerntm best32. ;
136         informat transplant best32. ;
137         informat lungtrans $1. ;
138         informat organtrans $1. ;
139         informat hematologictrans $1. ;
140         informat transplantntm $1. ;
141         informat lymphopenia best32. ;
142         informat lymphopeniantm best32. ;
143         informat hypogamma best32. ;
144         informat hypogammantm best32. ;
145         informat cd4 best32. ;
146         informat cd4ntm $1. ;
147         informat immuneany best32. ;
148         informat abatacept6mon best32. ;
149         informat anakinra6mon best32. ;
150         informat azathioprine6mon best32. ;
151         informat belimumab6mon best32. ;
152         informat chemo6mon best32. ;
153         informat cyclophosphamide6mon best32. ;
154         informat cyclosporine6mon best32. ;
155         informat leflunamide6mon best32. ;
156         informat methotrexate6mon best32. ;
157         informat mmf6mon best32. ;
158         informat prednisone6mon best32. ;
159         informat rituximab6mon best32. ;
160         informat tacrolimus6mon best32. ;
161         informat tnf6mon best32. ;
162         informat tocilizumab6mon best32. ;
163         informat tofacitinib6mon best32. ;
164         informat ustekinumab6mon best32. ;
165         informat other6mont best32. ;
166         informat abataceptafter best32. ;
167         informat anakinraafter best32. ;
168         informat azathioprineafter best32. ;
169         informat belimumabafter best32. ;
170         informat chemoafter best32. ;
171         informat cyclophosphamideafter best32. ;
172         informat cyclosporineafter best32. ;
173         informat predinisoneafter best32. ;
174         informat leflunamideafter best32. ;
175         informat methotrexateafter best32. ;
176         informat mmfafter best32. ;
177         informat rituximabafter best32. ;
178         informat tacrolimusafter best32. ;
179         informat tnfafter best32. ;
180         informat tocilizumabafter best32. ;
181         informat tofacitinibafter best32. ;
182         informat ustekinumabafter best32. ;
183         informat otherafter best32. ;
184         informat immunosuppressive_information_co best32. ;
185         informat immuneany_enr best32. ;
186         informat abatacept_enr best32. ;
187         informat anakinra_enr best32. ;
188         informat azathioprine_enr best32. ;
189         informat belimumab_enr best32. ;
190         informat chemo_enr best32. ;
191         informat cyclophosphamide_enr best32. ;
192         informat cyclosporine_enr best32. ;
193         informat leflunamide_enr best32. ;
194         informat methotrexate_enr best32. ;
195         informat mmf_enr best32. ;
196         informat prednisone_enr best32. ;
197         informat rituximab_enr best32. ;
198         informat tacrolimus_enr best32. ;
199         informat tnf_enr best32. ;
200         informat tocilizumab_enr best32. ;
201         informat tofacitinib_enr best32. ;
202         informat ustekinumab_enr best32. ;
203         informat otherimmune_enr best32. ;
204         informat immunosuppressive_information_en best32. ;
205         informat copd best32. ;
206         informat asthma best32. ;
207         informat bronch best32. ;
208         informat interstitial best32. ;
209         informat sarcoid best32. ;
210         informat pneumo best32. ;
211         informat congestive best32. ;
212         informat cf best32. ;
213         informat tb best32. ;
214         informat tbtype $1. ;
215         informat liverdisease best32. ;
216         informat diabetes best32. ;
217         informat renaldisease best32. ;
218         informat nonlungcancer best32. ;
219         informat lungcancer best32. ;
220         informat autoimmune best32. ;
221         informat inflammatorybowel best32. ;
222         informat psoriasis best32. ;
223         informat ra best32. ;
224         informat spondylitis best32. ;
225         informat lupus best32. ;
226         informat otherimmune best32. ;
227         informat gerd best32. ;
228         informat other best32. ;
229         informat comorbidities_complete best32. ;
230         informat inhaledany best32. ;
231         informat isteroids6mon best32. ;
232         informat itobramycin6mon best32. ;
233         informat iaztreonam6mon best32. ;
234         informat icolistin6mon best32. ;
235         informat iamikacin6mon best32. ;
236         informat ishortbeta6mon best32. ;
237         informat ilongbeta6mon best32. ;
238         informat ianticholinergics6mon best32. ;
239         informat ipulmozyme6mon best32. ;
240         informat isaline6mon best32. ;
241         informat icombination6mon best32. ;
242         informat iother6mon best32. ;
243         informat isteroidsafter best32. ;
244         informat itobramycinafter best32. ;
245         informat iaztreonamafter best32. ;
246         informat icolistinafter best32. ;
247         informat iamikacinafter best32. ;
248         informat ishortbetaafter best32. ;
249         informat ilongbetaafter best32. ;
250         informat ianticholinergicsafter best32. ;
251         informat ipulmozymeafter best32. ;
252         informat isalineafter best32. ;
253         informat icombinationafter best32. ;
254         informat iotherafter best32. ;
255         informat inhaled_information_complete best32. ;
256         informat inhaleenroll_enr best32. ;
257         informat isteroids_enr best32. ;
258         informat itobramycin_enr best32. ;
259         informat iaztreonam_enr best32. ;
260         informat icolistin_enr best32. ;
261         informat iamikacin_enr best32. ;
262         informat ishortbeta_enr best32. ;
263         informat ilongbeta_enr best32. ;
264         informat ianticholinergics_enr best32. ;
265         informat ipulmozyme_enr best32. ;
266         informat isaline_enr best32. ;
267         informat icombination_enr best32. ;
268         informat iother_enr best32. ;
269         informat inhaled_information_enrollment_c best32. ;
270         informat symptomatic best32. ;
271         informat cough best32. ;
272         informat hemoptysis best32. ;
273         informat dyspnea best32. ;
274         informat weightloss best32. ;
275         informat fever best32. ;
276         informat failthrive best32. ;
277         informat skininfection best32. ;
278         informat diarrhea best32. ;
279         informat fatigue best32. ;
280         informat othersymp1 best32. ;
281         informat othersymp2 best32. ;
282         informat clinical_symptoms_complete best32. ;
283         informat cavntm best32. ;
284         informat treebudct best32. ;
285         informat brocharct best32. ;
286         informat scan1type best32. ;
287         informat abnormality1___0 best32. ;
288         informat abnormality1___1 best32. ;
289         informat abnormality1___2 best32. ;
290         informat abnormality1___3 best32. ;
291         informat inflocation1___0 best32. ;
292         informat inflocation1___1 best32. ;
293         informat inflocation1___2 best32. ;
294         informat inflocation1___3 best32. ;
295         informat inflocation1___4 best32. ;
296         informat inflocation1___5 best32. ;
297         informat nodlocation1___0 best32. ;
298         informat nodlocation1___1 best32. ;
299         informat nodlocation1___2 best32. ;
300         informat nodlocation1___3 best32. ;
301         informat nodlocation1___4 best32. ;
302         informat nodlocation1___5 best32. ;
303         informat cavlocation1___0 best32. ;
304         informat cavlocation1___1 best32. ;
305         informat cavlocation1___2 best32. ;
306         informat cavlocation1___3 best32. ;
307         informat cavlocation1___4 best32. ;
308         informat cavlocation1___5 best32. ;
309         informat brolocation1___0 best32. ;
310         informat brolocation1___1 best32. ;
311         informat brolocation1___2 best32. ;
312         informat brolocation1___3 best32. ;
313         informat brolocation1___4 best32. ;
314         informat brolocation1___5 best32. ;
315         informat effusion1 best32. ;
316         informat lymphadenopathy1 best32. ;
317         informat scan1improve best32. ;
318         informat scan2type best32. ;
319         informat abnormality2___0 best32. ;
320         informat abnormality2___1 best32. ;
321         informat abnormality2___2 best32. ;
322         informat abnormality2___3 best32. ;
323         informat inflocation2___0 best32. ;
324         informat inflocation2___1 best32. ;
325         informat inflocation2___2 best32. ;
326         informat inflocation2___3 best32. ;
327         informat inflocation2___4 best32. ;
328         informat inflocation2___5 best32. ;
329         informat nodlocation2___0 best32. ;
330         informat nodlocation2___1 best32. ;
331         informat nodlocation2___2 best32. ;
332         informat nodlocation2___3 best32. ;
333         informat nodlocation2___4 best32. ;
334         informat nodlocation2___5 best32. ;
335         informat cavlocation2___0 best32. ;
336         informat cavlocation2___1 best32. ;
337         informat cavlocation2___2 best32. ;
338         informat cavlocation2___3 best32. ;
339         informat cavlocation2___4 best32. ;
340         informat cavlocation2___5 best32. ;
341         informat brolocation2___0 best32. ;
342         informat brolocation2___1 best32. ;
343         informat brolocation2___2 best32. ;
344         informat brolocation2___3 best32. ;
345         informat brolocation2___4 best32. ;
346         informat brolocation2___5 best32. ;
347         informat effusion2 best32. ;
348         informat lymphadenopathy2 best32. ;
349         informat scan2improve best32. ;
350         informat scan3type best32. ;
351         informat abnormality3___0 best32. ;
352         informat abnormality3___1 best32. ;
353         informat abnormality3___2 best32. ;
354         informat abnormality3___3 best32. ;
355         informat inflocation3___0 best32. ;
356         informat inflocation3___1 best32. ;
357         informat inflocation3___2 best32. ;
358         informat inflocation3___3 best32. ;
359         informat inflocation3___4 best32. ;
360         informat inflocation3___5 best32. ;
361         informat nodlocation3___0 best32. ;
362         informat nodlocation3___1 best32. ;
363         informat nodlocation3___2 best32. ;
364         informat nodlocation3___3 best32. ;
365         informat nodlocation3___4 best32. ;
366         informat nodlocation3___5 best32. ;
367         informat cavlocation3___0 best32. ;
368         informat cavlocation3___1 best32. ;
369         informat cavlocation3___2 best32. ;
370         informat cavlocation3___3 best32. ;
371         informat cavlocation3___4 best32. ;
372         informat cavlocation3___5 best32. ;
373         informat brolocation3___0 best32. ;
374         informat brolocation3___1 best32. ;
375         informat brolocation3___2 best32. ;
376         informat brolocation3___3 best32. ;
377         informat brolocation3___4 best32. ;
378         informat brolocation3___5 best32. ;
379         informat effusion3 best32. ;
380         informat lymphadenopathy3 best32. ;
381         informat scan3improve best32. ;
382         informat scan4type best32. ;
383         informat abnormality4___0 best32. ;
384         informat abnormality4___1 best32. ;
385         informat abnormality4___2 best32. ;
386         informat abnormality4___3 best32. ;
387         informat inflocation4___0 best32. ;
388         informat inflocation4___1 best32. ;
389         informat inflocation4___2 best32. ;
390         informat inflocation4___3 best32. ;
391         informat inflocation4___4 best32. ;
392         informat inflocation4___5 best32. ;
393         informat nodlocation4___0 best32. ;
394         informat nodlocation4___1 best32. ;
395         informat nodlocation4___2 best32. ;
396         informat nodlocation4___3 best32. ;
397         informat nodlocation4___4 best32. ;
398         informat nodlocation4___5 best32. ;
399         informat cavlocation4___0 best32. ;
400         informat cavlocation4___1 best32. ;
401         informat cavlocation4___2 best32. ;
402         informat cavlocation4___3 best32. ;
403         informat cavlocation4___4 best32. ;
404         informat cavlocation4___5 best32. ;
405         informat brolocation4___0 best32. ;
406         informat brolocation4___1 best32. ;
407         informat brolocation4___2 best32. ;
408         informat brolocation4___3 best32. ;
409         informat brolocation4___4 best32. ;
410         informat brolocation4___5 best32. ;
411         informat effusion4 best32. ;
412         informat lymphadenopathy4 best32. ;
413         informat scan4improve best32. ;
414         informat scan5type best32. ;
415         informat abnormality5___0 best32. ;
416         informat abnormality5___1 best32. ;
417         informat abnormality5___2 best32. ;
418         informat abnormality5___3 best32. ;
419         informat inflocation5___0 best32. ;
420         informat inflocation5___1 best32. ;
421         informat inflocation5___2 best32. ;
422         informat inflocation5___3 best32. ;
423         informat inflocation5___4 best32. ;
424         informat inflocation5___5 best32. ;
425         informat nodlocation5___0 best32. ;
426         informat nodlocation5___1 best32. ;
427         informat nodlocation5___2 best32. ;
428         informat nodlocation5___3 best32. ;
429         informat nodlocation5___4 best32. ;
430         informat nodlocation5___5 best32. ;
431         informat cavlocation5___0 best32. ;
432         informat cavlocation5___1 best32. ;
433         informat cavlocation5___2 best32. ;
434         informat cavlocation5___3 best32. ;
435         informat cavlocation5___4 best32. ;
436         informat cavlocation5___5 best32. ;
437         informat brolocation5___0 best32. ;
438         informat brolocation5___1 best32. ;
439         informat brolocation5___2 best32. ;
440         informat brolocation5___3 best32. ;
441         informat brolocation5___4 best32. ;
442         informat brolocation5___5 best32. ;
443         informat effusion5 best32. ;
444         informat lymphadenopathy5 best32. ;
445         informat scan5improve best32. ;
446         informat scan6type best32. ;
447         informat abnormality6___0 best32. ;
448         informat abnormality6___1 best32. ;
449         informat abnormality6___2 best32. ;
450         informat abnormality6___3 best32. ;
451         informat inflocation6___0 best32. ;
452         informat inflocation6___1 best32. ;
453         informat inflocation6___2 best32. ;
454         informat inflocation6___3 best32. ;
455         informat inflocation6___4 best32. ;
456         informat inflocation6___5 best32. ;
457         informat nodlocation6___0 best32. ;
458         informat nodlocation6___1 best32. ;
459         informat nodlocation6___2 best32. ;
460         informat nodlocation6___3 best32. ;
461         informat nodlocation6___4 best32. ;
462         informat nodlocation6___5 best32. ;
463         informat cavlocation6___0 best32. ;
464         informat cavlocation6___1 best32. ;
465         informat cavlocation6___2 best32. ;
466         informat cavlocation6___3 best32. ;
467         informat cavlocation6___4 best32. ;
468         informat cavlocation6___5 best32. ;
469         informat brolocation6___0 best32. ;
470         informat brolocation6___1 best32. ;
471         informat brolocation6___2 best32. ;
472         informat brolocation6___3 best32. ;
473         informat brolocation6___4 best32. ;
474         informat brolocation6___5 best32. ;
475         informat effusion6 best32. ;
476         informat lymphadenopathy6 best32. ;
477         informat scan6improve best32. ;
478         informat scan7type best32. ;
479         informat abnormality7___0 best32. ;
480         informat abnormality7___1 best32. ;
481         informat abnormality7___2 best32. ;
482         informat abnormality7___3 best32. ;
483         informat inflocation7___0 best32. ;
484         informat inflocation7___1 best32. ;
485         informat inflocation7___2 best32. ;
486         informat inflocation7___3 best32. ;
487         informat inflocation7___4 best32. ;
488         informat inflocation7___5 best32. ;
489         informat nodlocation7___0 best32. ;
490         informat nodlocation7___1 best32. ;
491         informat nodlocation7___2 best32. ;
492         informat nodlocation7___3 best32. ;
493         informat nodlocation7___4 best32. ;
494         informat nodlocation7___5 best32. ;
495         informat cavlocation7___0 best32. ;
496         informat cavlocation7___1 best32. ;
497         informat cavlocation7___2 best32. ;
498         informat cavlocation7___3 best32. ;
499         informat cavlocation7___4 best32. ;
500         informat cavlocation7___5 best32. ;
501         informat brolocation7___0 best32. ;
502         informat brolocation7___1 best32. ;
503         informat brolocation7___2 best32. ;
504         informat brolocation7___3 best32. ;
505         informat brolocation7___4 best32. ;
506         informat brolocation7___5 best32. ;
507         informat effusion7 best32. ;
508         informat lymphadenopathy7 best32. ;
509         informat scan7improve best32. ;
510         informat scan8type best32. ;
511         informat abnormality8___0 best32. ;
512         informat abnormality8___1 best32. ;
513         informat abnormality8___2 best32. ;
514         informat abnormality8___3 best32. ;
515         informat inflocation8___0 best32. ;
516         informat inflocation8___1 best32. ;
517         informat inflocation8___2 best32. ;
518         informat inflocation8___3 best32. ;
519         informat inflocation8___4 best32. ;
520         informat inflocation8___5 best32. ;
521         informat nodlocation8___0 best32. ;
522         informat nodlocation8___1 best32. ;
523         informat nodlocation8___2 best32. ;
524         informat nodlocation8___3 best32. ;
525         informat nodlocation8___4 best32. ;
526         informat nodlocation8___5 best32. ;
527         informat cavlocation8___0 best32. ;
528         informat cavlocation8___1 best32. ;
529         informat cavlocation8___2 best32. ;
530         informat cavlocation8___3 best32. ;
531         informat cavlocation8___4 best32. ;
532         informat cavlocation8___5 best32. ;
533         informat brolocation8___0 best32. ;
534         informat brolocation8___1 best32. ;
535         informat brolocation8___2 best32. ;
536         informat brolocation8___3 best32. ;
537         informat brolocation8___4 best32. ;
538         informat brolocation8___5 best32. ;
539         informat effusion8 best32. ;
540         informat lymphadenopathy8 best32. ;
541         informat scan8improve best32. ;
542         informat scan9type best32. ;
543         informat abnormality9___0 best32. ;
544         informat abnormality9___1 best32. ;
545         informat abnormality9___2 best32. ;
546         informat abnormality9___3 best32. ;
547         informat inflocation9___0 best32. ;
548         informat inflocation9___1 best32. ;
549         informat inflocation9___2 best32. ;
550         informat inflocation9___3 best32. ;
551         informat inflocation9___4 best32. ;
552         informat inflocation9___5 best32. ;
553         informat nodlocation9___0 best32. ;
554         informat nodlocation9___1 best32. ;
555         informat nodlocation9___2 best32. ;
556         informat nodlocation9___3 best32. ;
557         informat nodlocation9___4 best32. ;
558         informat nodlocation9___5 best32. ;
559         informat cavlocation9___0 best32. ;
560         informat cavlocation9___1 best32. ;
561         informat cavlocation9___2 best32. ;
562         informat cavlocation9___3 best32. ;
563         informat cavlocation9___4 best32. ;
564         informat cavlocation9___5 best32. ;
565         informat brolocation9___0 best32. ;
566         informat brolocation9___1 best32. ;
567         informat brolocation9___2 best32. ;
568         informat brolocation9___3 best32. ;
569         informat brolocation9___4 best32. ;
570         informat brolocation9___5 best32. ;
571         informat effusion9 best32. ;
572         informat lymphadenopathy9 best32. ;
573         informat scan9improve best32. ;
574         informat scan10type best32. ;
575         informat abnormality10___0 best32. ;
576         informat abnormality10___1 best32. ;
577         informat abnormality10___2 best32. ;
578         informat abnormality10___3 best32. ;
579         informat inflocation10___0 best32. ;
580         informat inflocation10___1 best32. ;
581         informat inflocation10___2 best32. ;
582         informat inflocation10___3 best32. ;
583         informat inflocation10___4 best32. ;
584         informat inflocation10___5 best32. ;
585         informat nodlocation10___0 best32. ;
586         informat nodlocation10___1 best32. ;
587         informat nodlocation10___2 best32. ;
588         informat nodlocation10___3 best32. ;
589         informat nodlocation10___4 best32. ;
590         informat nodlocation10___5 best32. ;
591         informat cavlocation10___0 best32. ;
592         informat cavlocation10___1 best32. ;
593         informat cavlocation10___2 best32. ;
594         informat cavlocation10___3 best32. ;
595         informat cavlocation10___4 best32. ;
596         informat cavlocation10___5 best32. ;
597         informat brolocation10___0 best32. ;
598         informat brolocation10___1 best32. ;
599         informat brolocation10___2 best32. ;
600         informat brolocation10___3 best32. ;
601         informat brolocation10___4 best32. ;
602         informat brolocation10___5 best32. ;
603         informat effusion10 best32. ;
604         informat lymphadenopathy10 best32. ;
605         informat scan10improve best32. ;
606         informat scan11type best32. ;
607         informat abnormality11___0 best32. ;
608         informat abnormality11___1 best32. ;
609         informat abnormality11___2 best32. ;
610         informat abnormality11___3 best32. ;
611         informat inflocation11___0 best32. ;
612         informat inflocation11___1 best32. ;
613         informat inflocation11___2 best32. ;
614         informat inflocation11___3 best32. ;
615         informat inflocation11___4 best32. ;
616         informat inflocation11___5 best32. ;
617         informat nodlocation11___0 best32. ;
618         informat nodlocation11___1 best32. ;
619         informat nodlocation11___2 best32. ;
620         informat nodlocation11___3 best32. ;
621         informat nodlocation11___4 best32. ;
622         informat nodlocation11___5 best32. ;
623         informat cavlocation11___0 best32. ;
624         informat cavlocation11___1 best32. ;
625         informat cavlocation11___2 best32. ;
626         informat cavlocation11___3 best32. ;
627         informat cavlocation11___4 best32. ;
628         informat cavlocation11___5 best32. ;
629         informat brolocation11___0 best32. ;
630         informat brolocation11___1 best32. ;
631         informat brolocation11___2 best32. ;
632         informat brolocation11___3 best32. ;
633         informat brolocation11___4 best32. ;
634         informat brolocation11___5 best32. ;
635         informat effusion11 best32. ;
636         informat lymphadenopathy11 best32. ;
637         informat scan11improve best32. ;
638         informat scan12type best32. ;
639         informat abnormality12___0 best32. ;
640         informat abnormality12___1 best32. ;
641         informat abnormality12___2 best32. ;
642         informat abnormality12___3 best32. ;
643         informat inflocation12___0 best32. ;
644         informat inflocation12___1 best32. ;
645         informat inflocation12___2 best32. ;
646         informat inflocation12___3 best32. ;
647         informat inflocation12___4 best32. ;
648         informat inflocation12___5 best32. ;
649         informat nodlocation12___0 best32. ;
650         informat nodlocation12___1 best32. ;
651         informat nodlocation12___2 best32. ;
652         informat nodlocation12___3 best32. ;
653         informat nodlocation12___4 best32. ;
654         informat nodlocation12___5 best32. ;
655         informat cavlocation12___0 best32. ;
656         informat cavlocation12___1 best32. ;
657         informat cavlocation12___2 best32. ;
658         informat cavlocation12___3 best32. ;
659         informat cavlocation12___4 best32. ;
660         informat cavlocation12___5 best32. ;
661         informat brolocation12___0 best32. ;
662         informat brolocation12___1 best32. ;
663         informat brolocation12___2 best32. ;
664         informat brolocation12___3 best32. ;
665         informat brolocation12___4 best32. ;
666         informat brolocation12___5 best32. ;
667         informat effusion12 best32. ;
668         informat lymphadenopathy12 best32. ;
669         informat scan12improve best32. ;
670         informat scan13type best32. ;
671         informat abnormality13___0 best32. ;
672         informat abnormality13___1 best32. ;
673         informat abnormality13___2 best32. ;
674         informat abnormality13___3 best32. ;
675         informat inflocation13___0 best32. ;
676         informat inflocation13___1 best32. ;
677         informat inflocation13___2 best32. ;
678         informat inflocation13___3 best32. ;
679         informat inflocation13___4 best32. ;
680         informat inflocation13___5 best32. ;
681         informat nodlocation13___0 best32. ;
682         informat nodlocation13___1 best32. ;
683         informat nodlocation13___2 best32. ;
684         informat nodlocation13___3 best32. ;
685         informat nodlocation13___4 best32. ;
686         informat nodlocation13___5 best32. ;
687         informat cavlocation13___0 best32. ;
688         informat cavlocation13___1 best32. ;
689         informat cavlocation13___2 best32. ;
690         informat cavlocation13___3 best32. ;
691         informat cavlocation13___4 best32. ;
692         informat cavlocation13___5 best32. ;
693         informat brolocation13___0 best32. ;
694         informat brolocation13___1 best32. ;
695         informat brolocation13___2 best32. ;
696         informat brolocation13___3 best32. ;
697         informat brolocation13___4 best32. ;
698         informat brolocation13___5 best32. ;
699         informat effusion13 best32. ;
700         informat lymphadenopathy13 best32. ;
701         informat scan13improve best32. ;
702         informat scan14type best32. ;
703         informat abnormality14___0 best32. ;
704         informat abnormality14___1 best32. ;
705         informat abnormality14___2 best32. ;
706         informat abnormality14___3 best32. ;
707         informat inflocation14___0 best32. ;
708         informat inflocation14___1 best32. ;
709         informat inflocation14___2 best32. ;
710         informat inflocation14___3 best32. ;
711         informat inflocation14___4 best32. ;
712         informat inflocation14___5 best32. ;
713         informat nodlocation14___0 best32. ;
714         informat nodlocation14___1 best32. ;
715         informat nodlocation14___2 best32. ;
716         informat nodlocation14___3 best32. ;
717         informat nodlocation14___4 best32. ;
718         informat nodlocation14___5 best32. ;
719         informat cavlocation14___0 best32. ;
720         informat cavlocation14___1 best32. ;
721         informat cavlocation14___2 best32. ;
722         informat cavlocation14___3 best32. ;
723         informat cavlocation14___4 best32. ;
724         informat cavlocation14___5 best32. ;
725         informat brolocation14___0 best32. ;
726         informat brolocation14___1 best32. ;
727         informat brolocation14___2 best32. ;
728         informat brolocation14___3 best32. ;
729         informat brolocation14___4 best32. ;
730         informat brolocation14___5 best32. ;
731         informat effusion14 best32. ;
732         informat lymphadenopathy14 best32. ;
733         informat scan14improve best32. ;
734         informat scan15type best32. ;
735         informat abnormality15___0 best32. ;
736         informat abnormality15___1 best32. ;
737         informat abnormality15___2 best32. ;
738         informat abnormality15___3 best32. ;
739         informat inflocation15___0 best32. ;
740         informat inflocation15___1 best32. ;
741         informat inflocation15___2 best32. ;
742         informat inflocation15___3 best32. ;
743         informat inflocation15___4 best32. ;
744         informat inflocation15___5 best32. ;
745         informat nodlocation15___0 best32. ;
746         informat nodlocation15___1 best32. ;
747         informat nodlocation15___2 best32. ;
748         informat nodlocation15___3 best32. ;
749         informat nodlocation15___4 best32. ;
750         informat nodlocation15___5 best32. ;
751         informat cavlocation15___0 best32. ;
752         informat cavlocation15___1 best32. ;
753         informat cavlocation15___2 best32. ;
754         informat cavlocation15___3 best32. ;
755         informat cavlocation15___4 best32. ;
756         informat cavlocation15___5 best32. ;
757         informat brolocation15___0 best32. ;
758         informat brolocation15___1 best32. ;
759         informat brolocation15___2 best32. ;
760         informat brolocation15___3 best32. ;
761         informat brolocation15___4 best32. ;
762         informat brolocation15___5 best32. ;
763         informat effusion15 best32. ;
764         informat lymphadenopathy15 best32. ;
765         informat scan15improve best32. ;
766         informat scan16type best32. ;
767         informat abnormality16___0 best32. ;
768         informat abnormality16___1 best32. ;
769         informat abnormality16___2 best32. ;
770         informat abnormality16___3 best32. ;
771         informat inflocation16___0 best32. ;
772         informat inflocation16___1 best32. ;
773         informat inflocation16___2 best32. ;
774         informat inflocation16___3 best32. ;
775         informat inflocation16___4 best32. ;
776         informat inflocation16___5 best32. ;
777         informat nodlocation16___0 best32. ;
778         informat nodlocation16___1 best32. ;
779         informat nodlocation16___2 best32. ;
780         informat nodlocation16___3 best32. ;
781         informat nodlocation16___4 best32. ;
782         informat nodlocation16___5 best32. ;
783         informat cavlocation16___0 best32. ;
784         informat cavlocation16___1 best32. ;
785         informat cavlocation16___2 best32. ;
786         informat cavlocation16___3 best32. ;
787         informat cavlocation16___4 best32. ;
788         informat cavlocation16___5 best32. ;
789         informat brolocation16___0 best32. ;
790         informat brolocation16___1 best32. ;
791         informat brolocation16___2 best32. ;
792         informat brolocation16___3 best32. ;
793         informat brolocation16___4 best32. ;
794         informat brolocation16___5 best32. ;
795         informat effusion16 best32. ;
796         informat lymphadenopathy16 best32. ;
797         informat scan16improve best32. ;
798         informat scan17type $1. ;
799         informat abnormality17___0 best32. ;
800         informat abnormality17___1 best32. ;
801         informat abnormality17___2 best32. ;
802         informat abnormality17___3 best32. ;
803         informat inflocation17___0 best32. ;
804         informat inflocation17___1 best32. ;
805         informat inflocation17___2 best32. ;
806         informat inflocation17___3 best32. ;
807         informat inflocation17___4 best32. ;
808         informat inflocation17___5 best32. ;
809         informat nodlocation17___0 best32. ;
810         informat nodlocation17___1 best32. ;
811         informat nodlocation17___2 best32. ;
812         informat nodlocation17___3 best32. ;
813         informat nodlocation17___4 best32. ;
814         informat nodlocation17___5 best32. ;
815         informat cavlocation17___0 best32. ;
816         informat cavlocation17___1 best32. ;
817         informat cavlocation17___2 best32. ;
818         informat cavlocation17___3 best32. ;
819         informat cavlocation17___4 best32. ;
820         informat cavlocation17___5 best32. ;
821         informat brolocation17___0 best32. ;
822         informat brolocation17___1 best32. ;
823         informat brolocation17___2 best32. ;
824         informat brolocation17___3 best32. ;
825         informat brolocation17___4 best32. ;
826         informat brolocation17___5 best32. ;
827         informat effusion17 $1. ;
828         informat lymphadenopathy17 $1. ;
829         informat scan17improve $1. ;
830         informat scan18type $1. ;
831         informat abnormality18___0 best32. ;
832         informat abnormality18___1 best32. ;
833         informat abnormality18___2 best32. ;
834         informat abnormality18___3 best32. ;
835         informat inflocation18___0 best32. ;
836         informat inflocation18___1 best32. ;
837         informat inflocation18___2 best32. ;
838         informat inflocation18___3 best32. ;
839         informat inflocation18___4 best32. ;
840         informat inflocation18___5 best32. ;
841         informat nodlocation18___0 best32. ;
842         informat nodlocation18___1 best32. ;
843         informat nodlocation18___2 best32. ;
844         informat nodlocation18___3 best32. ;
845         informat nodlocation18___4 best32. ;
846         informat nodlocation18___5 best32. ;
847         informat cavlocation18___0 best32. ;
848         informat cavlocation18___1 best32. ;
849         informat cavlocation18___2 best32. ;
850         informat cavlocation18___3 best32. ;
851         informat cavlocation18___4 best32. ;
852         informat cavlocation18___5 best32. ;
853         informat brolocation18___0 best32. ;
854         informat brolocation18___1 best32. ;
855         informat brolocation18___2 best32. ;
856         informat brolocation18___3 best32. ;
857         informat brolocation18___4 best32. ;
858         informat brolocation18___5 best32. ;
859         informat effusion18 $1. ;
860         informat lymphadenopathy18 $1. ;
861         informat scan18improve $1. ;
862         informat scan19type $1. ;
863         informat abnormality19___0 best32. ;
864         informat abnormality19___1 best32. ;
865         informat abnormality19___2 best32. ;
866         informat abnormality19___3 best32. ;
867         informat inflocation19___0 best32. ;
868         informat inflocation19___1 best32. ;
869         informat inflocation19___2 best32. ;
870         informat inflocation19___3 best32. ;
871         informat inflocation19___4 best32. ;
872         informat inflocation19___5 best32. ;
873         informat nodlocation19___0 best32. ;
874         informat nodlocation19___1 best32. ;
875         informat nodlocation19___2 best32. ;
876         informat nodlocation19___3 best32. ;
877         informat nodlocation19___4 best32. ;
878         informat nodlocation19___5 best32. ;
879         informat cavlocation19___0 best32. ;
880         informat cavlocation19___1 best32. ;
881         informat cavlocation19___2 best32. ;
882         informat cavlocation19___3 best32. ;
883         informat cavlocation19___4 best32. ;
884         informat cavlocation19___5 best32. ;
885         informat brolocation19___0 best32. ;
886         informat brolocation19___1 best32. ;
887         informat brolocation19___2 best32. ;
888         informat brolocation19___3 best32. ;
889         informat brolocation19___4 best32. ;
890         informat brolocation19___5 best32. ;
891         informat effusion19 $1. ;
892         informat lymphadenopathy19 $1. ;
893         informat scan19improve $1. ;
894         informat scan20type $1. ;
895         informat abnormality20___0 best32. ;
896         informat abnormality20___1 best32. ;
897         informat abnormality20___2 best32. ;
898         informat abnormality20___3 best32. ;
899         informat inflocation20___0 best32. ;
900         informat inflocation20___1 best32. ;
901         informat inflocation20___2 best32. ;
902         informat inflocation20___3 best32. ;
903         informat inflocation20___4 best32. ;
904         informat inflocation20___5 best32. ;
905         informat nodlocation20___0 best32. ;
906         informat nodlocation20___1 best32. ;
907         informat nodlocation20___2 best32. ;
908         informat nodlocation20___3 best32. ;
909         informat nodlocation20___4 best32. ;
910         informat nodlocation20___5 best32. ;
911         informat cavlocation20___0 best32. ;
912         informat cavlocation20___1 best32. ;
913         informat cavlocation20___2 best32. ;
914         informat cavlocation20___3 best32. ;
915         informat cavlocation20___4 best32. ;
916         informat cavlocation20___5 best32. ;
917         informat brolocation20___0 best32. ;
918         informat brolocation20___1 best32. ;
919         informat brolocation20___2 best32. ;
920         informat brolocation20___3 best32. ;
921         informat brolocation20___4 best32. ;
922         informat brolocation20___5 best32. ;
923         informat effusion20 $1. ;
924         informat lymphadenopathy20 $1. ;
925         informat scan20improve $1. ;
926         informat radiography_complete best32. ;
927         informat extrapulm best32. ;
928         informat micro1afb best32. ;
929         informat micro1afbresult best32. ;
930         informat micro1site best32. ;
931         informat micro1result best32. ;
932         informat micro1multi best32. ;
933         informat micro1resultmulti $1. ;
934         informat micro2afb best32. ;
935         informat micro2afbresult best32. ;
936         informat micro2site best32. ;
937         informat micro2result best32. ;
938         informat micro2multi best32. ;
939         informat micro2resultmulti $1. ;
940         informat micro3afb best32. ;
941         informat micro3afbresult best32. ;
942         informat micro3site best32. ;
943         informat micro3result best32. ;
944         informat micro3multi best32. ;
945         informat micro3resultmulti $1. ;
946         informat micro4afb best32. ;
947         informat micro4afbresult best32. ;
948         informat micro4site best32. ;
949         informat micro4result best32. ;
950         informat micro4multi best32. ;
951         informat micro4resultmulti $1. ;
952         informat micro5afb best32. ;
953         informat micro5afbresult best32. ;
954         informat micro5site best32. ;
955         informat micro5result best32. ;
956         informat micro5multi best32. ;
957         informat micro5resultmulti $1. ;
958         informat micro6afb best32. ;
959         informat micro6afbresult best32. ;
960         informat micro6site best32. ;
961         informat micro6result best32. ;
962         informat micro6multi best32. ;
963         informat micro6resultmulti $1. ;
964         informat micro7afb best32. ;
965         informat micro7afbresult best32. ;
966         informat micro7site best32. ;
967         informat micro7result best32. ;
968         informat micro7multi best32. ;
969         informat micro7resultmulti $1. ;
970         informat micro8afb best32. ;
971         informat micro8afbresult best32. ;
972         informat micro8site best32. ;
973         informat micro8result best32. ;
974         informat micro8multi best32. ;
975         informat micro8resultmulti $1. ;
976         informat micro9afb best32. ;
977         informat micro9afbresult best32. ;
978         informat micro9site best32. ;
979         informat micro9result best32. ;
980         informat micro9multi best32. ;
981         informat micro9resultmulti $1. ;
982         informat micro10afb best32. ;
983         informat micro10afbresult best32. ;
984         informat micro10site best32. ;
985         informat micro10result best32. ;
986         informat micro10multi best32. ;
987         informat micro10resultmulti $1. ;
988         informat micro11afb best32. ;
989         informat micro11afbresult best32. ;
990         informat micro11site best32. ;
991         informat micro11result best32. ;
992         informat micro11multi best32. ;
993         informat micro11resultmulti $1. ;
994         informat micro12afb best32. ;
995         informat micro12afbresult best32. ;
996         informat micro12site best32. ;
997         informat micro12result best32. ;
998         informat micro12multi best32. ;
999         informat micro12resultmulti $1. ;
1000         informat micro13afb best32. ;
1001         informat micro13afbresult best32. ;
1002         informat micro13site best32. ;
1003         informat micro13result best32. ;
1004         informat micro13multi best32. ;
1005         informat micro13resultmulti $1. ;
1006         informat micro14afb best32. ;
1007         informat micro14afbresult best32. ;
1008         informat micro14site best32. ;
1009         informat micro14result best32. ;
1010         informat micro14multi best32. ;
1011         informat micro14resultmulti $1. ;
1012         informat micro15afb best32. ;
1013         informat micro15afbresult best32. ;
1014         informat micro15site best32. ;
1015         informat micro15result best32. ;
1016         informat micro15multi best32. ;
1017         informat micro15resultmulti $1. ;
1018         informat micro16afb best32. ;
1019         informat micro16afbresult best32. ;
1020         informat micro16site best32. ;
1021         informat micro16result best32. ;
1022         informat micro16multi best32. ;
1023         informat micro16resultmulti $1. ;
1024         informat micro17afb $1. ;
1025         informat micro17afbresult $1. ;
1026         informat micro17site $1. ;
1027         informat micro17result $1. ;
1028         informat micro17multi $1. ;
1029         informat micro17resultmulti $1. ;
1030         informat micro18afb $1. ;
1031         informat micro18afbresult $1. ;
1032         informat micro18site $1. ;
1033         informat micro18result $1. ;
1034         informat micro18multi $1. ;
1035         informat micro18resultmulti $1. ;
1036         informat micro19afb $1. ;
1037         informat micro19afbresult $1. ;
1038         informat micro19site $1. ;
1039         informat micro19result $1. ;
1040         informat micro19multi $1. ;
1041         informat micro19resultmulti $1. ;
1042         informat micro20afb $1. ;
1043         informat micro20afbresult $1. ;
1044         informat micro20site $1. ;
1045         informat micro20result $1. ;
1046         informat micro20multi $1. ;
1047         informat micro20resultmulti $1. ;
1048         informat microbiology_complete best32. ;
1049         informat nevertreat best32. ;
1050         informat enrolltreat best32. ;
1051         informat firstntmreg best32. ;
1052         informat treatstartfreq best32. ;
1053         informat treatstartdate mmddyy10. ;
1054         informat clintrial best32. ;
1055         informat clintriallist___1 best32. ;
1056         informat clintriallist___2 best32. ;
1057         informat clintriallist___3 best32. ;
1058         informat clintriallist___4 best32. ;
1059         informat clintriallist___5 best32. ;
1060         informat clintriallist___6 best32. ;
1061         informat clintriallist___7 best32. ;
1062         informat ins112startdate $1. ;
1063         informat ins212startdate $1. ;
1064         informat ins312startdate $1. ;
1065         informat insiirstartdate $1. ;
1066         informat clofazstartdate $1. ;
1067         informat mac2v3startdate $1. ;
1068         informat othtrialstartdate $1. ;
1069         informat drug1 best32. ;
1070         informat drug1route best32. ;
1071         informat drug1dose best32. ;
1072         informat drug1unit best32. ;
1073         informat drug1dosechange best32. ;
1074         informat drug1dosereason best32. ;
1075         informat drug1dosedate mmddyy10. ;
1076         informat drug1newdose best32. ;
1077         informat drug1newunit best32. ;
1078         informat drug1frequency best32. ;
1079         informat drug1freqchange best32. ;
1080         informat drug1freqreason best32. ;
1081         informat drug1freqdate mmddyy10. ;
1082         informat drug1newfreq best32. ;
1083         informat drug1reason best32. ;
1084         informat drug2 best32. ;
1085         informat drug2route best32. ;
1086         informat drug2dose best32. ;
1087         informat drug2unit best32. ;
1088         informat drug2dosechange best32. ;
1089         informat drug2dosereason best32. ;
1090         informat drug2dosedate mmddyy10. ;
1091         informat drug2newdose best32. ;
1092         informat drug2newunit best32. ;
1093         informat drug2frequency best32. ;
1094         informat drug2freqchange best32. ;
1095         informat drug2freqreason best32. ;
1096         informat drug2freqdate mmddyy10. ;
1097         informat drug2newfreq best32. ;
1098         informat drug2reason best32. ;
1099         informat drug3 best32. ;
1100         informat drug3route best32. ;
1101         informat drug3dose best32. ;
1102         informat drug3unit best32. ;
1103         informat drug3dosechange best32. ;
1104         informat drug3dosereason $1. ;
1105         informat drug3dosedate $1. ;
1106         informat drug3newdose $1. ;
1107         informat drug3newunit $1. ;
1108         informat drug3frequency best32. ;
1109         informat drug3freqchange best32. ;
1110         informat drug3freqreason $1. ;
1111         informat drug3freqdate $1. ;
1112         informat drug3newfreq $1. ;
1113         informat drug3reason best32. ;
1114         informat drug4 best32. ;
1115         informat drug4route best32. ;
1116         informat drug4dose best32. ;
1117         informat drug4unit best32. ;
1118         informat drug4dosechange best32. ;
1119         informat drug4dosereason $1. ;
1120         informat drug4dosedate $1. ;
1121         informat drug4newdose $1. ;
1122         informat drug4newunit $1. ;
1123         informat drug4frequency best32. ;
1124         informat drug4freqchange best32. ;
1125         informat drug4freqreason best32. ;
1126         informat drug4freqdate mmddyy10. ;
1127         informat drug4newfreq best32. ;
1128         informat drug4reason best32. ;
1129         informat drug5 best32. ;
1130         informat drug5route best32. ;
1131         informat drug5dose best32. ;
1132         informat drug5unit best32. ;
1133         informat drug5dosechange best32. ;
1134         informat drug5dosereason $1. ;
1135         informat drug5dosedate $1. ;
1136         informat drug5newdose $1. ;
1137         informat drug5newunit $1. ;
1138         informat drug5frequency best32. ;
1139         informat drug5freqchange best32. ;
1140         informat drug5freqreason best32. ;
1141         informat drug5freqdate mmddyy10. ;
1142         informat drug5newfreq best32. ;
1143         informat drug5reason best32. ;
1144         informat drug6 best32. ;
1145         informat drug6route best32. ;
1146         informat drug6dose best32. ;
1147         informat drug6unit best32. ;
1148         informat drug6dosechange best32. ;
1149         informat drug6dosereason best32. ;
1150         informat drug6dosedate mmddyy10. ;
1151         informat drug6newdose best32. ;
1152         informat drug6newunit best32. ;
1153         informat drug6frequency best32. ;
1154         informat drug6freqchange best32. ;
1155         informat drug6freqreason best32. ;
1156         informat drug6freqdate mmddyy10. ;
1157         informat drug6newfreq best32. ;
1158         informat drug6reason best32. ;
1159         informat drug7 best32. ;
1160         informat drug7route best32. ;
1161         informat drug7dose best32. ;
1162         informat drug7unit best32. ;
1163         informat drug7dosechange best32. ;
1164         informat drug7dosereason $1. ;
1165         informat drug7dosedate $1. ;
1166         informat drug7newdose $1. ;
1167         informat drug7newunit $1. ;
1168         informat drug7frequency best32. ;
1169         informat drug7freqchange best32. ;
1170         informat drug7freqreason $1. ;
1171         informat drug7freqdate $1. ;
1172         informat drug7newfreq $1. ;
1173         informat drug7reason best32. ;
1174         informat drug8 best32. ;
1175         informat drug8route best32. ;
1176         informat drug8dose best32. ;
1177         informat drug8unit best32. ;
1178         informat drug8dosechange best32. ;
1179         informat drug8dosereason $1. ;
1180         informat drug8dosedate $1. ;
1181         informat drug8newdose $1. ;
1182         informat drug8newunit $1. ;
1183         informat drug8frequency best32. ;
1184         informat drug8freqchange best32. ;
1185         informat drug8freqreason $1. ;
1186         informat drug8freqdate $1. ;
1187         informat drug8newfreq $1. ;
1188         informat drug8reason best32. ;
1189         informat drug9 best32. ;
1190         informat drug9route best32. ;
1191         informat drug9dose best32. ;
1192         informat drug9unit best32. ;
1193         informat drug9dosechange best32. ;
1194         informat drug9dosereason $1. ;
1195         informat drug9dosedate $1. ;
1196         informat drug9newdose $1. ;
1197         informat drug9newunit $1. ;
1198         informat drug9frequency best32. ;
1199         informat drug9freqchange best32. ;
1200         informat drug9freqreason $1. ;
1201         informat drug9freqdate $1. ;
1202         informat drug9newfreq $1. ;
1203         informat drug9reason best32. ;
1204         informat drug10 best32. ;
1205         informat drug10route best32. ;
1206         informat drug10dose best32. ;
1207         informat drug10unit best32. ;
1208         informat drug10dosechange best32. ;
1209         informat drug10dosereason $1. ;
1210         informat drug10dosedate $1. ;
1211         informat drug10newdose $1. ;
1212         informat drug10newunit $1. ;
1213         informat drug10frequency best32. ;
1214         informat drug10freqchange best32. ;
1215         informat drug10freqreason $1. ;
1216         informat drug10freqdate $1. ;
1217         informat drug10newfreq $1. ;
1218         informat drug10reason best32. ;
1219         informat drug11 best32. ;
1220         informat drug11route best32. ;
1221         informat drug11dose best32. ;
1222         informat drug11unit best32. ;
1223         informat drug11dosechange $1. ;
1224         informat drug11dosereason $1. ;
1225         informat drug11dosedate $1. ;
1226         informat drug11newdose $1. ;
1227         informat drug11newunit $1. ;
1228         informat drug11frequency best32. ;
1229         informat drug11freqchange $1. ;
1230         informat drug11freqreason $1. ;
1231         informat drug11freqdate $1. ;
1232         informat drug11newfreq $1. ;
1233         informat drug11reason best32. ;
1234         informat drug12 $1. ;
1235         informat drug12route $1. ;
1236         informat drug12dose $1. ;
1237         informat drug12unit $1. ;
1238         informat drug12dosechange $1. ;
1239         informat drug12dosereason $1. ;
1240         informat drug12dosedate $1. ;
1241         informat drug12newdose $1. ;
1242         informat drug12newunit $1. ;
1243         informat drug12frequency $1. ;
1244         informat drug12freqchange $1. ;
1245         informat drug12freqreason $1. ;
1246         informat drug12freqdate $1. ;
1247         informat drug12newfreq $1. ;
1248         informat drug12reason $1. ;
1249         informat drug13 $1. ;
1250         informat drug13route $1. ;
1251         informat drug13dose $1. ;
1252         informat drug13unit $1. ;
1253         informat drug13dosechange $1. ;
1254         informat drug13dosereason $1. ;
1255         informat drug13dosedate $1. ;
1256         informat drug13newdose $1. ;
1257         informat drug13newunit $1. ;
1258         informat drug13frequency $1. ;
1259         informat drug13freqchange $1. ;
1260         informat drug13freqreason $1. ;
1261         informat drug13freqdate $1. ;
1262         informat drug13newfreq $1. ;
1263         informat drug13reason $1. ;
1264         informat drug14 $1. ;
1265         informat drug14route $1. ;
1266         informat drug14dose $1. ;
1267         informat drug14unit $1. ;
1268         informat drug14dosechange $1. ;
1269         informat drug14dosereason $1. ;
1270         informat drug14dosedate $1. ;
1271         informat drug14newdose $1. ;
1272         informat drug14newunit $1. ;
1273         informat drug14frequency $1. ;
1274         informat drug14freqchange $1. ;
1275         informat drug14freqreason $1. ;
1276         informat drug14freqdate $1. ;
1277         informat drug14newfreq $1. ;
1278         informat drug14reason $1. ;
1279         informat drug15 $1. ;
1280         informat drug15route $1. ;
1281         informat drug15dose $1. ;
1282         informat drug15unit $1. ;
1283         informat drug15dosechange $1. ;
1284         informat drug15dosereason $1. ;
1285         informat drug15dosedate $1. ;
1286         informat drug15newdose $1. ;
1287         informat drug15newunit $1. ;
1288         informat drug15frequency $1. ;
1289         informat drug15freqchange $1. ;
1290         informat drug15freqreason $1. ;
1291         informat drug15freqdate $1. ;
1292         informat drug15newfreq $1. ;
1293         informat drug15reason $1. ;
1294         informat drug1otherroute $1. ;
1295         informat drug1otherdose $1. ;
1296         informat drug1otherunit $1. ;
1297         informat drug1otherdosechange $1. ;
1298         informat drug1otherdosedate $1. ;
1299         informat drug1otherdosereason $1. ;
1300         informat drug1othernewdose $1. ;
1301         informat drug1othernewunit $1. ;
1302         informat drug1otherfrequency $1. ;
1303         informat drug1otherfreqchange $1. ;
1304         informat drug1otherfreqreason $1. ;
1305         informat drug1otherfreqdate $1. ;
1306         informat drug1othernewfreq $1. ;
1307         informat drug1otherreason $1. ;
1308         informat drug2otherroute $1. ;
1309         informat drug2otherdose $1. ;
1310         informat drug2otherunit $1. ;
1311         informat drug2otherdosechange $1. ;
1312         informat drug2otherdosereason $1. ;
1313         informat drug2otherdosedate $1. ;
1314         informat drug2othernewdose $1. ;
1315         informat drug2othernewunit $1. ;
1316         informat drug2otherfrequency $1. ;
1317         informat drug2otherfreqchange $1. ;
1318         informat drug2otherfreqreason $1. ;
1319         informat drug2otherfreqdate $1. ;
1320         informat drug2othernewfreq $1. ;
1321         informat drug2otherreason $1. ;
1322         informat drug3otherroute $1. ;
1323         informat drug3otherdose $1. ;
1324         informat drug3otherunit $1. ;
1325         informat drug3otherdosechange $1. ;
1326         informat drug3otherdosereason $1. ;
1327         informat drug3otherdosedate $1. ;
1328         informat drug3othernewdose $1. ;
1329         informat drug3othernewunit $1. ;
1330         informat drug3otherfrequency $1. ;
1331         informat drug3otherfreqchange $1. ;
1332         informat drug3otherfreqreason $1. ;
1333         informat drug3otherfreqdate $1. ;
1334         informat drug3othernewfreq $1. ;
1335         informat drug3otherreason $1. ;
1336         informat aeskin $1. ;
1337         informat aerash best32. ;
1338         informat aepruritis best32. ;
1339         informat aenausea best32. ;
1340         informat aeappetite $1. ;
1341         informat aemetallic best32. ;
1342         informat aehearing best32. ;
1343         informat aetinnitus $1. ;
1344         informat aebalance $1. ;
1345         informat aevision best32. ;
1346         informat aediarrhea best32. ;
1347         informat aeopticneuritis $1. ;
1348         informat aekidney $1. ;
1349         informat aeanemia $1. ;
1350         informat aeliver $1. ;
1351         informat aeairway $1. ;
1352         informat aeneuropathy $1. ;
1353         informat aecells $1. ;
1354         informat aethrombocytopenia $1. ;
1355         informat aetransaminitis $1. ;
1356         informat aeneutropenia $1. ;
1357         informat aeleukopenia $1. ;
1358         informat aeother best32. ;
1359         informat aeskindrug1 $1. ;
1360         informat aeskindrug2 $1. ;
1361         informat aeskindrug3 $1. ;
1362         informat aeskindrug4 $1. ;
1363         informat aeskindrug5 $1. ;
1364         informat aerashdrug1 best32. ;
1365         informat aerashdrug2 $1. ;
1366         informat aerashdrug3 $1. ;
1367         informat aerashdrug4 $1. ;
1368         informat aerashdrug5 $1. ;
1369         informat aepruritisdrug1 best32. ;
1370         informat aepruritisdrug2 best32. ;
1371         informat aepruritisdrug3 $1. ;
1372         informat aepruritisdrug4 $1. ;
1373         informat aepruritisdrug5 $1. ;
1374         informat aenauseadrug1 best32. ;
1375         informat aenauseadrug2 best32. ;
1376         informat aenauseadrug3 $1. ;
1377         informat aenauseadrug4 $1. ;
1378         informat aenauseadrug5 $1. ;
1379         informat aeappetitedrug1 $1. ;
1380         informat aeappetitedrug2 $1. ;
1381         informat aeappetitedrug3 $1. ;
1382         informat aeappetitedrug4 $1. ;
1383         informat aeappetitedrug5 $1. ;
1384         informat aemetallicdrug1 best32. ;
1385         informat aemetallicdrug2 $1. ;
1386         informat aemetallicdrug3 $1. ;
1387         informat aemetallicdrug4 $1. ;
1388         informat aemetallicdrug5 $1. ;
1389         informat aehearingdrug1 best32. ;
1390         informat aehearingdrug2 best32. ;
1391         informat aehearingdrug3 $1. ;
1392         informat aehearingdrug4 $1. ;
1393         informat aehearingdrug5 $1. ;
1394         informat aetinnitusdrug1 $1. ;
1395         informat aetinnitusdrug2 $1. ;
1396         informat aetinnitusdrug3 $1. ;
1397         informat aetinnitusdrug4 $1. ;
1398         informat aetinnitusdrug5 $1. ;
1399         informat aebalancedrug1 $1. ;
1400         informat aebalancedrug2 $1. ;
1401         informat aebalancedrug3 $1. ;
1402         informat aebalancedrug4 $1. ;
1403         informat aebalancedrug5 $1. ;
1404         informat aevisiondrug1 best32. ;
1405         informat aevisiondrug2 $1. ;
1406         informat aevisiondrug3 $1. ;
1407         informat aevisiondrug4 $1. ;
1408         informat aevisiondrug5 $1. ;
1409         informat aekidneydrug1 $1. ;
1410         informat aekidneydrug2 $1. ;
1411         informat aekidneydrug3 $1. ;
1412         informat aekidneydrug4 $1. ;
1413         informat aekidneydrug5 $1. ;
1414         informat aediarrheadrug1 best32. ;
1415         informat aediarrheadrug2 best32. ;
1416         informat aediarrheadrug3 $1. ;
1417         informat aediarrheadrug4 $1. ;
1418         informat aediarrheadrug5 $1. ;
1419         informat aeopticneuritisdrug1 $1. ;
1420         informat aeopticneuritisdrug2 $1. ;
1421         informat aeopticneuritisdrug3 $1. ;
1422         informat aeopticneuritisdrug4 $1. ;
1423         informat aeopticneuritisdrug5 $1. ;
1424         informat aeanemiadrug1 $1. ;
1425         informat aeanemiadrug2 $1. ;
1426         informat aeanemiadrug3 $1. ;
1427         informat aeanemiadrug4 $1. ;
1428         informat aeanemiadrug5 $1. ;
1429         informat aeliverdrug1 $1. ;
1430         informat aeliverdrug2 $1. ;
1431         informat aeliverdrug3 $1. ;
1432         informat aeliverdrug4 $1. ;
1433         informat aeliverdrug5 $1. ;
1434         informat aeairwaydrug1 $1. ;
1435         informat aeairwaydrug2 $1. ;
1436         informat aeairwaydrug3 $1. ;
1437         informat aeairwaydrug4 $1. ;
1438         informat aeairwaydrug5 $1. ;
1439         informat aeneuropathydrug1 $1. ;
1440         informat aeneuropathydrug2 $1. ;
1441         informat aeneuropathydrug3 $1. ;
1442         informat aeneuropathydrug4 $1. ;
1443         informat aeneuropathydrug5 $1. ;
1444         informat aecellsdrug1 $1. ;
1445         informat aecellsdrug2 $1. ;
1446         informat aecellsdrug3 $1. ;
1447         informat aecellsdrug4 $1. ;
1448         informat aecellsdrug5 $1. ;
1449         informat aethrombocytopeniadrug1 $1. ;
1450         informat aethrombocytopeniadrug2 $1. ;
1451         informat aethrombocytopeniadrug3 $1. ;
1452         informat aethrombocytopeniadrug4 $1. ;
1453         informat aethrombocytopeniadrug5 $1. ;
1454         informat aetransaminitisdrug1 $1. ;
1455         informat aetransaminitisdrug2 $1. ;
1456         informat aetransaminitisdrug3 $1. ;
1457         informat aetransaminitisdrug4 $1. ;
1458         informat aetransaminitisdrug5 $1. ;
1459         informat aeneutropeniadrug1 $1. ;
1460         informat aeneutropeniadrug2 $1. ;
1461         informat aeneutropeniadrug3 $1. ;
1462         informat aeneutropeniadrug4 $1. ;
1463         informat aeneutropeniadrug5 $1. ;
1464         informat aeleukopeniadrug1 $1. ;
1465         informat aeleukopeniadrug2 $1. ;
1466         informat aeleukopeniadrug3 $1. ;
1467         informat aeleukopeniadrug4 $1. ;
1468         informat aeleukopeniadrug5 $1. ;
1469         informat aeotherdrug1 best32. ;
1470         informat aeotherdrug2 $1. ;
1471         informat aeotherdrug3 $1. ;
1472         informat aeotherdrug4 $1. ;
1473         informat aeotherdrug5 $1. ;
1474         informat antimycobacterial_therapy_comple best32. ;
1475         informat fvcraw1 best32. ;
1476         informat fvcdate1 best32. ;
1477         informat fev1raw1 best32. ;
1478         informat fev1date1 best32. ;
1479         informat ratiodate1 best32. ;
1480         informat fvcdate2 best32. ;
1481         informat fev1date2 best32. ;
1482         informat ratiodate2 best32. ;
1483         informat fvcdate3 best32. ;
1484         informat fev1date3 best32. ;
1485         informat ratiodate3 best32. ;
1486         informat fvcdate4 best32. ;
1487         informat fev1date4 best32. ;
1488         informat ratiodate4 best32. ;
1489         informat fvcdate5 $1. ;
1490         informat fev1date5 best32. ;
1491         informat ratiodate5 $1. ;
1492         informat fvcdate6 $1. ;
1493         informat fev1date6 best32. ;
1494         informat ratiodate6 $1. ;
1495         informat fvcdate7 $1. ;
1496         informat fev1date7 best32. ;
1497         informat ratiodate7 $1. ;
1498         informat fvcdate8 best32. ;
1499         informat fev1date8 best32. ;
1500         informat ratiodate8 best32. ;
1501         informat fvcdate9 $1. ;
1502         informat fev1date9 $1. ;
1503         informat ratiodate9 $1. ;
1504         informat fvcdate10 $1. ;
1505         informat fev1date10 $1. ;
1506         informat ratiodate10 $1. ;
1507         informat fvcdate11 $1. ;
1508         informat fev1date11 $1. ;
1509         informat ratiodate11 $1. ;
1510         informat fvcdate12 $1. ;
1511         informat fev1date12 $1. ;
1512         informat ratiodate12 $1. ;
1513         informat fvcdate13 $1. ;
1514         informat fev1date13 $1. ;
1515         informat ratiodate13 $1. ;
1516         informat fvcdate14 $1. ;
1517         informat fev1date14 $1. ;
1518         informat ratiodate14 $1. ;
1519         informat fvcdate15 $1. ;
1520         informat fev1date15 $1. ;
1521         informat ratiodate15 $1. ;
1522         informat fvcdate16 $1. ;
1523         informat fev1date16 $1. ;
1524         informat ratiodate16 $1. ;
1525         informat fvcdate17 $1. ;
1526         informat fev1date17 $1. ;
1527         informat ratiodate17 $1. ;
1528         informat fvcdate18 $1. ;
1529         informat fev1date18 $1. ;
1530         informat ratiodate18 $1. ;
1531         informat fvcdate19 $1. ;
1532         informat fev1date19 $1. ;
1533         informat ratiodate19 $1. ;
1534         informat fvcdate20 $1. ;
1535         informat fev1date20 $1. ;
1536         informat ratiodate20 $1. ;
1537         informat pft_complete best32. ;
1538         informat qolbdate $1. ;
1539         informat qolb_db_sc mmddyy10. ;
1540         informat qolb_gndr_sc best32. ;
1541         informat qolb_vaca_sc best32. ;
1542         informat qolb_marital_sc best32. ;
1543         informat qolb_racial_sc best32. ;
1544         informat qolb_edu_sc best32. ;
1545         informat qolb_work_sc best32. ;
1546         informat qolb_vig_sc best32. ;
1547         informat qolb_walk_sc best32. ;
1548         informat qolb_carry_sc best32. ;
1549         informat qolb_stair_sc best32. ;
1550         informat qolb_well_sc best32. ;
1551         informat qolb_tired_sc best32. ;
1552         informat qolb_anx_sc best32. ;
1553         informat qolb_energ_sc best32. ;
1554         informat qolb_exhaust_sc best32. ;
1555         informat qolb_sad_sc best32. ;
1556         informat qolb_depr_sc best32. ;
1557         informat qolb_treat_sc best32. ;
1558         informat qolb_makediff_sc best32. ;
1559         informat qolb_eachday_sc best32. ;
1560         informat qolb_fittreat_sc best32. ;
1561         informat qolb_nowhealth_sc best32. ;
1562         informat qolb_limvig_sc best32. ;
1563         informat qolb_stayhome_sc best32. ;
1564         informat qolb_expossick_sc best32. ;
1565         informat qolb_imt_sc best32. ;
1566         informat qolb_normlife_sc best32. ;
1567         informat qolb_worseheal_sc best32. ;
1568         informat qolb_bothoth_sc best32. ;
1569         informat qolb_lone_sc best32. ;
1570         informat qolb_health_sc best32. ;
1571         informat qolb_futplan_sc best32. ;
1572         informat qolb_embarcough_sc best32. ;
1573         informat qolb_keepup_sc best32. ;
1574         informat qolb_getinway_sc best32. ;
1575         informat qolb_heartcong_sc best32. ;
1576         informat qolb_coughday_sc best32. ;
1577         informat qolb_coughmuc_sc best32. ;
1578         informat qolb_sputcol_sc best32. ;
1579         informat qolb_shortbreath_sc best32. ;
1580         informat qolb_wheez_sc best32. ;
1581         informat qolb_chestp_sc best32. ;
1582         informat qolb_shortbreathtalk_sc best32. ;
1583         informat qolb_midnight_sc best32. ;
1584         informat qolb_scr_pfd best32. ;
1585         informat qolb_scr_rfd best32. ;
1586         informat qolb_scr_vd best32. ;
1587         informat qolb_scr_efd best32. ;
1588         informat qolb_scr_sfd best32. ;
1589         informat qolb_scr_tbd best32. ;
1590         informat qolb_scr_hpd best32. ;
1591         informat qolb_scr_rsd best32. ;
1592         informat quality_of_life_bronchiectasis_q best32. ;
1593         informat qolsideeffects best32. ;
1594         informat qoleating best32. ;
1595         informat qolhealtheat best32. ;
1596         informat qolhealththin best32. ;
1597         informat qolhealthdiff best32. ;
1598         informat qolhealthapp best32. ;
1599         informat qolhealthheavy best32. ;
1600         informat qolhealthfreq best32. ;
1601         informat qolfeeleat best32. ;
1602         informat qolfeelwt best32. ;
1603         informat qolfeelfev best32. ;
1604         informat qolfeelsleep best32. ;
1605         informat qolfeelpain best32. ;
1606         informat qolfeelcold best32. ;
1607         informat qolfeelsmell best32. ;
1608         informat qolfeeltaste best32. ;
1609         informat qolfeelmouth best32. ;
1610         informat qolfeelmem best32. ;
1611         informat qoloftenconst best32. ;
1612         informat qoloftenrefl best32. ;
1613         informat qoloftenbloat best32. ;
1614         informat qoloftengas best32. ;
1615         informat qoloftendia best32. ;
1616         informat qoloftenabd best32. ;
1617         informat quality_of_life_bronchiectasis_n best32. ;
1618         informat sgrq_current_health best32. ;
1619         informat sgrq1 best32. ;
1620         informat sgrq2 best32. ;
1621         informat sgrq3 best32. ;
1622         informat sgrq4 best32. ;
1623         informat sgrq5 best32. ;
1624         informat sgrq6 best32. ;
1625         informat sgrq7 best32. ;
1626         informat sgrq8 best32. ;
1627         informat sgrqimport best32. ;
1628         informat sgrqjob best32. ;
1629         informat sgrqsobsit best32. ;
1630         informat sgrqsobdress best32. ;
1631         informat sgrqsobhouse best32. ;
1632         informat sgrqsoblevel best32. ;
1633         informat sgrqsobstair best32. ;
1634         informat sgrqsobhill best32. ;
1635         informat sgrqsobsport best32. ;
1636         informat sgrqcoughhurt best32. ;
1637         informat sgrqcoughtire best32. ;
1638         informat sgrqcoughtalk best32. ;
1639         informat sgrqcoughbend best32. ;
1640         informat sgrqcoughsleep best32. ;
1641         informat sgrqcoughvtire best32. ;
1642         informat sgrqrespemb best32. ;
1643         informat sgrqrespnuis best32. ;
1644         informat sgrqresppanic best32. ;
1645         informat sgrqrespcont best32. ;
1646         informat sgrqrespnobet best32. ;
1647         informat sgrqrespfrail best32. ;
1648         informat sgrqrespexc best32. ;
1649         informat sgrqrespeff best32. ;
1650         informat sgrqtxhelp best32. ;
1651         informat sgrqtxmed best32. ;
1652         informat sgrqtxside best32. ;
1653         informat sgrqtxlife best32. ;
1654         informat sgrqactdress best32. ;
1655         informat sgrqactbath best32. ;
1656         informat sgrqactslow best32. ;
1657         informat sgrqactchore best32. ;
1658         informat sgrqactstair best32. ;
1659         informat sgrqactwalk best32. ;
1660         informat sgrqactlight best32. ;
1661         informat sgrqactheavy best32. ;
1662         informat sgrqactvheav best32. ;
1663         informat sgrqdaysport best32. ;
1664         informat sgrqdayent best32. ;
1665         informat sgrqdayshop best32. ;
1666         informat sgrqdaychore best32. ;
1667         informat sgrqdaymove best32. ;
1668         informat sgrqaffect best32. ;
1669         informat st_georges_respiratory_questionn best32. ;
1670         informat phqdate $1. ;
1671         informat phq_1 best32. ;
1672         informat phq_2 best32. ;
1673         informat phq_3 best32. ;
1674         informat phq_4 best32. ;
1675         informat phq_5 best32. ;
1676         informat phq_6 best32. ;
1677         informat phq_7 best32. ;
1678         informat phq_8 best32. ;
1679         informat phq_total best32. ;
1680         informat phq_extra best32. ;
1681         informat phq8_complete best32. ;
1682         informat gaddate $1. ;
1683         informat gad_1 best32. ;
1684         informat gad_2 best32. ;
1685         informat gad_3 best32. ;
1686         informat gad_4 best32. ;
1687         informat gad_5 best32. ;
1688         informat gad_6 best32. ;
1689         informat gad_7 best32. ;
1690         informat gad_total best32. ;
1691         informat gad7_complete best32. ;
1692         informat fu_status best32. ;
1693         informat reviewdate_fu mmddyy10. ;
1694         informat blooddrawdate_v2 mmddyy10. ;
1695         informat alive_fu best32. ;
1696         informat smoke_fu best32. ;
1697         informat vitd_fu best32. ;
1698         informat vitdlevel1_fu best32. ;
1699         informat vitdlevel2_fu best32. ;
1700         informat weight_yr1 best32. ;
1701         informat weightmeas_yr1 best32. ;
1702         informat weight_yr2 best32. ;
1703         informat weightmeas_yr2 best32. ;
1704         informat demographics_followup_complete best32. ;
1705         informat ntm_fu best32. ;
1706         informat ntmsymptom_fu best32. ;
1707         informat ntmradiography_fu $1. ;
1708         informat ntmmicro_fu best32. ;
1709         informat ntmdiagnoses_fu $1. ;
1710         informat ntmother_fu $1. ;
1711         informat overallntm_fu best32. ;
1712         informat radiotreat_fu best32. ;
1713         informat sxtreat_fu best32. ;
1714         informat inittreat best32. ;
1715         informat reviewstatus_fu best32. ;
1716         informat update_ntm_status_complete best32. ;
1717         informat surg_fu best32. ;
1718         informat surgdate_fu $1. ;
1719         informat treatafter best32. ;
1720         informat treat_fu best32. ;
1721         informat treatats_fu best32. ;
1722         informat treatstop_fu___1 best32. ;
1723         informat treatstop_fu___2 best32. ;
1724         informat treatstop_fu___3 best32. ;
1725         informat treatstop_fu___4 best32. ;
1726         informat clintrial_fu best32. ;
1727         informat clintriallist_fu___1 best32. ;
1728         informat clintriallist_fu___2 best32. ;
1729         informat clintriallist_fu___3 best32. ;
1730         informat clintriallist_fu___4 best32. ;
1731         informat clintriallist_fu___5 best32. ;
1732         informat clintriallist_fu___6 best32. ;
1733         informat clintriallist_fu___7 best32. ;
1734         informat ins112startdate_fu $1. ;
1735         informat ins212startdate_fu $1. ;
1736         informat ins312startdate_fu $1. ;
1737         informat insiirstartdate_fu $1. ;
1738         informat clofazstartdate_fu $1. ;
1739         informat mac2v3startdate_fu $1. ;
1740         informat othtrialstartdate_fu $1. ;
1741         informat drug16 best32. ;
1742         informat drugroute16 best32. ;
1743         informat drugdose16 best32. ;
1744         informat drugunit16 best32. ;
1745         informat drugdosechange16 best32. ;
1746         informat drugdosereason16 best32. ;
1747         informat drugdosedate16 mmddyy10. ;
1748         informat drugnewdose16 best32. ;
1749         informat drugnewunit16 best32. ;
1750         informat drugfrequency16 best32. ;
1751         informat drugfreqchange16 best32. ;
1752         informat drugfreqreason16 best32. ;
1753         informat drugfreqdate16 mmddyy10. ;
1754         informat drugnewfreq16 best32. ;
1755         informat drugreason16 best32. ;
1756         informat drug17 best32. ;
1757         informat drugstart17 best32. ;
1758         informat drugdose17 best32. ;
1759         informat drugunit17 best32. ;
1760         informat drugdosechange17 best32. ;
1761         informat drugdosereason17 $1. ;
1762         informat drugdosedate17 $1. ;
1763         informat drugnewdose17 $1. ;
1764         informat drugnewunit17 $1. ;
1765         informat drugfrequency17 best32. ;
1766         informat drugfreqchange17 best32. ;
1767         informat drugfreqreason17 best32. ;
1768         informat drugfreqdate17 mmddyy10. ;
1769         informat drugnewfreq17 best32. ;
1770         informat drugreason17 best32. ;
1771         informat drug18 best32. ;
1772         informat drugroute18 best32. ;
1773         informat drugdose18 best32. ;
1774         informat drugunit18 best32. ;
1775         informat drugdosechange18 best32. ;
1776         informat drugdosereason18 best32. ;
1777         informat drugdosedate18 mmddyy10. ;
1778         informat drugnewdose18 best32. ;
1779         informat drugnewunit18 best32. ;
1780         informat drugfrequency18 best32. ;
1781         informat drugfreqchange18 best32. ;
1782         informat drugfreqreason18 $1. ;
1783         informat drugfreqdate18 mmddyy10. ;
1784         informat drugnewfreq18 best32. ;
1785         informat drugreason18 best32. ;
1786         informat drug19 best32. ;
1787         informat drugroute19 best32. ;
1788         informat drugdose19 best32. ;
1789         informat drugunit19 best32. ;
1790         informat drugdosechange19 best32. ;
1791         informat drugdosereason19 $1. ;
1792         informat drugdosedate19 $1. ;
1793         informat drugnewdose19 $1. ;
1794         informat drugnewunit19 $1. ;
1795         informat drugfrequency19 best32. ;
1796         informat drugfreqchange19 best32. ;
1797         informat drugfreqreason19 best32. ;
1798         informat drugfreqdate19 mmddyy10. ;
1799         informat drugnewfreq19 best32. ;
1800         informat drugreason19 best32. ;
1801         informat drug20 best32. ;
1802         informat drugroute20 best32. ;
1803         informat drugdose20 best32. ;
1804         informat drugunit20 best32. ;
1805         informat drugdosechange20 best32. ;
1806         informat drugdosereason20 $1. ;
1807         informat drugdosedate20 $1. ;
1808         informat drugnewdose20 $1. ;
1809         informat drugnewunit20 $1. ;
1810         informat drugfrequency20 best32. ;
1811         informat drugfreqchange20 best32. ;
1812         informat drugfreqreason20 $1. ;
1813         informat drugfreqdate20 $1. ;
1814         informat drugnewfreq20 $1. ;
1815         informat drugreason20 best32. ;
1816         informat drug21 best32. ;
1817         informat drugroute21 best32. ;
1818         informat drugdose21 best32. ;
1819         informat drugunit21 best32. ;
1820         informat drugdosechange21 best32. ;
1821         informat drugdosereason21 $1. ;
1822         informat drugdosedate21 $1. ;
1823         informat drugnewdose21 $1. ;
1824         informat drugnewunit21 $1. ;
1825         informat drugfrequency21 best32. ;
1826         informat drugfreqchange21 best32. ;
1827         informat drugfreqreason21 best32. ;
1828         informat drugfreqdate21 mmddyy10. ;
1829         informat drugnewfreq21 best32. ;
1830         informat drugreason21 $1. ;
1831         informat drug22 best32. ;
1832         informat drugroute22 best32. ;
1833         informat drugdose22 best32. ;
1834         informat drugunit22 best32. ;
1835         informat drugdosechange22 best32. ;
1836         informat drugdosereason22 $1. ;
1837         informat drugdosedate22 $1. ;
1838         informat drugnewdose22 $1. ;
1839         informat drugnewunit22 $1. ;
1840         informat drugfrequency22 best32. ;
1841         informat drugfreqchange22 best32. ;
1842         informat drugfreqreason22 $1. ;
1843         informat drugfreqdate22 $1. ;
1844         informat drugnewfreq22 $1. ;
1845         informat drugreason22 best32. ;
1846         informat drug23 best32. ;
1847         informat drugroute23 best32. ;
1848         informat drugdose23 best32. ;
1849         informat drugunit23 best32. ;
1850         informat drugdosechange23 best32. ;
1851         informat drugdosereason23 $1. ;
1852         informat drugdosedate23 $1. ;
1853         informat drugnewdose23 $1. ;
1854         informat drugnewunit23 $1. ;
1855         informat drugfrequency23 best32. ;
1856         informat drugfreqchange23 best32. ;
1857         informat drugfreqreason23 $1. ;
1858         informat drugfreqdate23 $1. ;
1859         informat drugnewfreq23 $1. ;
1860         informat drugreason23 best32. ;
1861         informat drug24 $1. ;
1862         informat drugroute24 $1. ;
1863         informat drugdose24 $1. ;
1864         informat drugunit24 $1. ;
1865         informat drugdosechange24 $1. ;
1866         informat drugdosereason24 $1. ;
1867         informat drugdosedate24 $1. ;
1868         informat drugnewdose24 $1. ;
1869         informat drugnewunit24 $1. ;
1870         informat drugfrequency24 $1. ;
1871         informat drugfreqchange24 $1. ;
1872         informat drugfreqreason24 $1. ;
1873         informat drugfreqdate24 $1. ;
1874         informat drugnewfreq24 $1. ;
1875         informat drugreason24 $1. ;
1876         informat drug25 $1. ;
1877         informat drugroute25 $1. ;
1878         informat drugdose25 $1. ;
1879         informat drugunit25 $1. ;
1880         informat drugdosechange25 $1. ;
1881         informat drugdosereason25 $1. ;
1882         informat drugdosedate25 $1. ;
1883         informat drugnewdose25 $1. ;
1884         informat drugnewunit25 $1. ;
1885         informat drugfrequency25 $1. ;
1886         informat drugfreqchange25 $1. ;
1887         informat drugfreqreason25 $1. ;
1888         informat drugfreqdate25 $1. ;
1889         informat drugnewfreq25 $1. ;
1890         informat drugreason25 $1. ;
1891         informat drugotherroute4 $1. ;
1892         informat drugotherdose4 $1. ;
1893         informat drugotherunit4 $1. ;
1894         informat drugotherdosechange4 $1. ;
1895         informat drugotherdosedate4 $1. ;
1896         informat drugotherdosereason4 $1. ;
1897         informat drugothernewdose4 $1. ;
1898         informat drugothernewunit4 $1. ;
1899         informat drugotherfrequency4 $1. ;
1900         informat drugotherfreqchange4 $1. ;
1901         informat drugotherfreqreason4 $1. ;
1902         informat drugotherfreqdate4 $1. ;
1903         informat drugothernewfreq4 $1. ;
1904         informat drugotherreason4 $1. ;
1905         informat drugotherroute5 $1. ;
1906         informat drugotherdose5 $1. ;
1907         informat drugotherunit5 $1. ;
1908         informat drugotherdosechange5 $1. ;
1909         informat drugotherdosedate5 $1. ;
1910         informat drugotherdosereason5 $1. ;
1911         informat drugothernewdose5 $1. ;
1912         informat drugothernewunit5 $1. ;
1913         informat drugotherfrequency5 $1. ;
1914         informat drugotherfreqchange5 $1. ;
1915         informat drugotherfreqreason5 $1. ;
1916         informat drugotherfreqdate5 $1. ;
1917         informat drugothernewfreq5 $1. ;
1918         informat drugotherreason5 $1. ;
1919         informat drugotherroute6 $1. ;
1920         informat drugotherdose6 $1. ;
1921         informat drugotherunit6 $1. ;
1922         informat drugotherdosechange6 $1. ;
1923         informat drugotherdosedate6 $1. ;
1924         informat drugotherdosereason6 $1. ;
1925         informat drugothernewdose6 $1. ;
1926         informat drugothernewunit6 $1. ;
1927         informat drugotherfrequency6 $1. ;
1928         informat drugotherfreqchange6 $1. ;
1929         informat drugotherfreqreason6 $1. ;
1930         informat drugotherfreqdate6 $1. ;
1931         informat drugothernewfreq6 $1. ;
1932         informat drugotherreason6 $1. ;
1933         informat aeskin_fu $1. ;
1934         informat aerash_fu best32. ;
1935         informat aepruritis_fu $1. ;
1936         informat aenausea_fu $1. ;
1937         informat aeappetite_fu $1. ;
1938         informat aemetallic_fu $1. ;
1939         informat aehearing_fu $1. ;
1940         informat aetinnitus_fu $1. ;
1941         informat aebalance_fu $1. ;
1942         informat aevision_fu $1. ;
1943         informat aediarrhea_fu best32. ;
1944         informat aeopticneuritis_fu $1. ;
1945         informat aekidney_fu $1. ;
1946         informat aeanemia_fu $1. ;
1947         informat aeliver_fu $1. ;
1948         informat aeairway_fu $1. ;
1949         informat aeneuropathy_fu $1. ;
1950         informat aecells_fu $1. ;
1951         informat aethrombocytopenia_fu $1. ;
1952         informat aetransaminitis_fu $1. ;
1953         informat aeneutropenia_fu $1. ;
1954         informat aeleukopenia_fu $1. ;
1955         informat aeother_fu best32. ;
1956         informat aeskindrug6 $1. ;
1957         informat aeskindrug7 $1. ;
1958         informat aeskindrug8 $1. ;
1959         informat aeskindrug9 $1. ;
1960         informat aeskindrug10 $1. ;
1961         informat aerashdrug6 best32. ;
1962         informat aerashdrug7 best32. ;
1963         informat aerashdrug8 $1. ;
1964         informat aerashdrug9 $1. ;
1965         informat aerashdrug10 $1. ;
1966         informat aepruritisdrug6 $1. ;
1967         informat aepruritisdrug7 $1. ;
1968         informat aepruritisdrug8 $1. ;
1969         informat aepruritisdrug9 $1. ;
1970         informat aepruritisdrug10 $1. ;
1971         informat aenauseadrug6 $1. ;
1972         informat aenauseadrug7 $1. ;
1973         informat aenauseadrug8 $1. ;
1974         informat aenauseadrug9 $1. ;
1975         informat aenauseadrug10 $1. ;
1976         informat aeappetitedrug6 $1. ;
1977         informat aeappetitedrug7 $1. ;
1978         informat aeappetitedrug8 $1. ;
1979         informat aeappetitedrug9 $1. ;
1980         informat aeappetitedrug10 $1. ;
1981         informat aemetallicdrug6 $1. ;
1982         informat aemetallicdrug7 $1. ;
1983         informat aemetallicdrug8 $1. ;
1984         informat aemetallicdrug9 $1. ;
1985         informat aemetallicdrug10 $1. ;
1986         informat aehearingdrug6 $1. ;
1987         informat aehearingdrug7 $1. ;
1988         informat aehearingdrug8 $1. ;
1989         informat aehearingdrug9 $1. ;
1990         informat aehearingdrug10 $1. ;
1991         informat aetinnitusdrug6 $1. ;
1992         informat aetinnitusdrug7 $1. ;
1993         informat aetinnitusdrug8 $1. ;
1994         informat aetinnitusdrug9 $1. ;
1995         informat aetinnitusdrug10 $1. ;
1996         informat aebalancedrug6 $1. ;
1997         informat aebalancedrug7 $1. ;
1998         informat aebalancedrug8 $1. ;
1999         informat aebalancedrug9 $1. ;
2000         informat aebalancedrug10 $1. ;
2001         informat aevisiondrug6 $1. ;
2002         informat aevisiondrug7 $1. ;
2003         informat aevisiondrug8 $1. ;
2004         informat aevisiondrug9 $1. ;
2005         informat aevisiondrug10 $1. ;
2006         informat aekidneydrug6 $1. ;
2007         informat aekidneydrug7 $1. ;
2008         informat aekidneydrug8 $1. ;
2009         informat aekidneydrug9 $1. ;
2010         informat aekidneydrug10 $1. ;
2011         informat aediarrheadrug6 best32. ;
2012         informat aediarrheadrug7 $1. ;
2013         informat aediarrheadrug8 $1. ;
2014         informat aediarrheadrug9 $1. ;
2015         informat aediarrheadrug10 $1. ;
2016         informat aeopticneuritisdrug6 $1. ;
2017         informat aeopticneuritisdrug7 $1. ;
2018         informat aeopticneuritisdrug8 $1. ;
2019         informat aeopticneuritisdrug9 $1. ;
2020         informat aeopticneuritisdrug10 $1. ;
2021         informat aeanemiadrug6 $1. ;
2022         informat aeanemiadrug7 $1. ;
2023         informat aeanemiadrug8 $1. ;
2024         informat aeanemiadrug9 $1. ;
2025         informat aeanemiadrug10 $1. ;
2026         informat aeliverdrug6 $1. ;
2027         informat aeliverdrug7 $1. ;
2028         informat aeliverdrug8 $1. ;
2029         informat aeliverdrug9 $1. ;
2030         informat aeliverdrug10 $1. ;
2031         informat aeairwaydrug6 $1. ;
2032         informat aeairwaydrug7 $1. ;
2033         informat aeairwaydrug8 $1. ;
2034         informat aeairwaydrug9 $1. ;
2035         informat aeairwaydrug10 $1. ;
2036         informat aeneuropathydrug6 $1. ;
2037         informat aeneuropathydrug7 $1. ;
2038         informat aeneuropathydrug8 $1. ;
2039         informat aeneuropathydrug9 $1. ;
2040         informat aeneuropathydrug10 $1. ;
2041         informat aecellsdrug6 $1. ;
2042         informat aecellsdrug7 $1. ;
2043         informat aecellsdrug8 $1. ;
2044         informat aecellsdrug9 $1. ;
2045         informat aecellsdrug10 $1. ;
2046         informat aethrombocytopeniadrug6 $1. ;
2047         informat aethrombocytopeniadrug7 $1. ;
2048         informat aethrombocytopeniadrug8 $1. ;
2049         informat aethrombocytopeniadrug9 $1. ;
2050         informat aethrombocytopeniadrug10 $1. ;
2051         informat aetransaminitisdrug6 $1. ;
2052         informat aetransaminitisdrug7 $1. ;
2053         informat aetransaminitisdrug8 $1. ;
2054         informat aetransaminitisdrug9 $1. ;
2055         informat aetransaminitisdrug10 $1. ;
2056         informat aeneutropeniadrug6 $1. ;
2057         informat aeneutropeniadrug7 $1. ;
2058         informat aeneutropeniadrug8 $1. ;
2059         informat aeneutropeniadrug9 $1. ;
2060         informat aeneutropeniadrug10 $1. ;
2061         informat aeleukopeniadrug6 $1. ;
2062         informat aeleukopeniadrug7 $1. ;
2063         informat aeleukopeniadrug8 $1. ;
2064         informat aeleukopeniadrug9 $1. ;
2065         informat aeleukopeniadrug10 $1. ;
2066         informat aeotherdrug6 best32. ;
2067         informat aeotherdrug7 $1. ;
2068         informat aeotherdrug8 $1. ;
2069         informat aeotherdrug9 $1. ;
2070         informat aeotherdrug10 $1. ;
2071         informat ntm_therapy_followup_complete best32. ;
2072         informat airclear best32. ;
2073         informat airdevice___1 best32. ;
2074         informat airdevice___2 best32. ;
2075         informat airdevice___3 best32. ;
2076         informat airdevice___4 best32. ;
2077         informat airdevice___5 best32. ;
2078         informat airclear_fu best32. ;
2079         informat airdevice_fu___1 best32. ;
2080         informat airdevice_fu___2 best32. ;
2081         informat airdevice_fu___3 best32. ;
2082         informat airdevice_fu___4 best32. ;
2083         informat airdevice_fu___5 best32. ;
2084         informat airway_clearance_complete best32. ;
2085         informat micropseudomult_fu best32. ;
2086         informat microafb21 best32. ;
2087         informat microafbresult21 best32. ;
2088         informat microsite21 best32. ;
2089         informat microresult21 best32. ;
2090         informat micromulti21 best32. ;
2091         informat microresultmulti21 $1. ;
2092         informat microafb22 best32. ;
2093         informat microafbresult22 best32. ;
2094         informat microsite22 best32. ;
2095         informat microresult22 best32. ;
2096         informat micromulti22 best32. ;
2097         informat microresultmulti22 best32. ;
2098         informat microafb23 best32. ;
2099         informat microafbresult23 best32. ;
2100         informat microsite23 best32. ;
2101         informat microresult23 best32. ;
2102         informat micromulti23 best32. ;
2103         informat microresultmulti23 $1. ;
2104         informat microafb24 best32. ;
2105         informat microafbresult24 best32. ;
2106         informat microsite24 best32. ;
2107         informat microresult24 best32. ;
2108         informat micromulti24 best32. ;
2109         informat microresultmulti24 $1. ;
2110         informat microafb25 best32. ;
2111         informat microafbresult25 best32. ;
2112         informat microsite25 best32. ;
2113         informat microresult25 best32. ;
2114         informat micromulti25 best32. ;
2115         informat microresultmulti25 $1. ;
2116         informat microafb26 best32. ;
2117         informat microafbresult26 best32. ;
2118         informat microsite26 best32. ;
2119         informat microresult26 best32. ;
2120         informat micromulti26 best32. ;
2121         informat microresultmulti26 best32. ;
2122         informat microafb27 best32. ;
2123         informat microafbresult27 best32. ;
2124         informat microsite27 best32. ;
2125         informat microresult27 best32. ;
2126         informat micromulti27 best32. ;
2127         informat microresultmulti27 $1. ;
2128         informat microafb28 best32. ;
2129         informat microafbresult28 best32. ;
2130         informat microsite28 best32. ;
2131         informat microresult28 best32. ;
2132         informat micromulti28 best32. ;
2133         informat microresultmulti28 $1. ;
2134         informat microafb29 best32. ;
2135         informat microafbresult29 best32. ;
2136         informat microsite29 best32. ;
2137         informat microresult29 best32. ;
2138         informat micromulti29 best32. ;
2139         informat microresultmulti29 $1. ;
2140         informat microafb30 best32. ;
2141         informat microafbresult30 best32. ;
2142         informat microsite30 best32. ;
2143         informat microresult30 best32. ;
2144         informat micromulti30 best32. ;
2145         informat microresultmulti30 $1. ;
2146         informat microbiology_followup_complete best32. ;
2147         informat suscept___1 best32. ;
2148         informat suscept___2 best32. ;
2149         informat suscept___3 best32. ;
2150         informat suscept___4 best32. ;
2151         informat suscept___5 best32. ;
2152         informat suscept___6 best32. ;
2153         informat labsusc1 best32. ;
2154         informat susceptid1 best32. ;
2155         informat amimic1 best32. ;
2156         informat amiltgte1 best32. ;
2157         informat clarimic1 best32. ;
2158         informat clariltgte1 best32. ;
2159         informat clofazmic1 best32. ;
2160         informat clofazltgte1 best32. ;
2161         informat cipromic1 best32. ;
2162         informat ciproltgte1 best32. ;
2163         informat moximic1 best32. ;
2164         informat moxiltgte1 best32. ;
2165         informat lzdmic1 best32. ;
2166         informat lzdltgte1 best32. ;
2167         informat rifmic1 best32. ;
2168         informat rifltgte1 best32. ;
2169         informat rfbmic1 best32. ;
2170         informat rfbltgte1 best32. ;
2171         informat embmic1 best32. ;
2172         informat embltgte1 best32. ;
2173         informat rrifembmic1 best32. ;
2174         informat rrifembltgte1 $1. ;
2175         informat erifembmic1 best32. ;
2176         informat erifembltgte1 $1. ;
2177         informat tigmic1 best32. ;
2178         informat tigltgte1 best32. ;
2179         informat imipmic1 best32. ;
2180         informat imipltgte1 best32. ;
2181         informat cefomic1 best32. ;
2182         informat cefoltgte1 best32. ;
2183         informat doxymic1 best32. ;
2184         informat doxyltgte1 best32. ;
2185         informat augmmic1 $1. ;
2186         informat augmltgte1 $1. ;
2187         informat ttmpsulmic1 best32. ;
2188         informat ttmpsulltgte1 $1. ;
2189         informat stmpsulmic1 best32. ;
2190         informat stmpsulltgte1 $1. ;
2191         informat labsusc2 best32. ;
2192         informat susceptid2 best32. ;
2193         informat amimic2 best32. ;
2194         informat amiltgte2 best32. ;
2195         informat clarimic2 best32. ;
2196         informat clariltgte2 $1. ;
2197         informat clofazmic2 best32. ;
2198         informat clofazltgte2 best32. ;
2199         informat cipromic2 best32. ;
2200         informat ciproltgte2 best32. ;
2201         informat moximic2 best32. ;
2202         informat moxiltgte2 best32. ;
2203         informat lzdmic2 best32. ;
2204         informat lzdltgte2 $1. ;
2205         informat rifmic2 best32. ;
2206         informat rifltgte2 best32. ;
2207         informat rfbmic2 best32. ;
2208         informat rfbltgte2 best32. ;
2209         informat embmic2 best32. ;
2210         informat embltgte2 $1. ;
2211         informat rrifembmic2 best32. ;
2212         informat rrifembltgte2 best32. ;
2213         informat erifembmic2 best32. ;
2214         informat erif best32. ;
2215         informat VAR2181 $1. ;
2216         informat VAR2182 $1. ;
2217         informat VAR2183 $1. ;
2218         informat VAR2184 $1. ;
2219         informat VAR2185 $1. ;
2220         informat VAR2186 $1. ;
2221         informat VAR2187 $1. ;
2222         informat VAR2188 $1. ;
2223         informat VAR2189 $1. ;
2224         informat VAR2190 $1. ;
2225         informat VAR2191 $1. ;
2226         informat VAR2192 $1. ;
2227         informat VAR2193 $1. ;
2228         informat VAR2194 $1. ;
2229         informat VAR2195 $1. ;
2230         informat VAR2196 $1. ;
2231         informat VAR2197 $1. ;
2232         informat VAR2198 $1. ;
2233         informat VAR2199 $1. ;
2234         informat VAR2200 $1. ;
2235         informat VAR2201 $1. ;
2236         informat VAR2202 $1. ;
2237         informat VAR2203 $1. ;
2238         informat VAR2204 $1. ;
2239         informat VAR2205 $1. ;
2240         informat VAR2206 $1. ;
2241         informat VAR2207 $1. ;
2242         informat VAR2208 $1. ;
2243         informat VAR2209 $1. ;
2244         informat VAR2210 $1. ;
2245         informat VAR2211 $1. ;
2246         informat VAR2212 $1. ;
2247         informat VAR2213 $1. ;
2248         informat VAR2214 $1. ;
2249         informat VAR2215 $1. ;
2250         informat VAR2216 $1. ;
2251         informat VAR2217 $1. ;
2252         informat VAR2218 $1. ;
2253         informat VAR2219 $1. ;
2254         informat VAR2220 $1. ;
2255         informat VAR2221 $1. ;
2256         informat VAR2222 $1. ;
2257         informat VAR2223 $1. ;
2258         informat VAR2224 $1. ;
2259         informat VAR2225 $1. ;
2260         informat VAR2226 $1. ;
2261         informat VAR2227 $1. ;
2262         informat VAR2228 $1. ;
2263         informat VAR2229 $1. ;
2264         informat VAR2230 $1. ;
2265         informat VAR2231 $1. ;
2266         informat VAR2232 $1. ;
2267         informat VAR2233 $1. ;
2268         informat VAR2234 $1. ;
2269         informat VAR2235 $1. ;
2270         informat VAR2236 $1. ;
2271         informat VAR2237 $1. ;
2272         informat VAR2238 $1. ;
2273         informat VAR2239 $1. ;
2274         informat VAR2240 $1. ;
2275         informat VAR2241 $1. ;
2276         informat VAR2242 $1. ;
2277         informat VAR2243 $1. ;
2278         informat VAR2244 $1. ;
2279         informat VAR2245 $1. ;
2280         informat VAR2246 $1. ;
2281         informat VAR2247 $1. ;
2282         informat VAR2248 $1. ;
2283         informat VAR2249 $1. ;
2284         informat VAR2250 $1. ;
2285         informat VAR2251 $1. ;
2286         informat VAR2252 $1. ;
2287         informat VAR2253 $1. ;
2288         informat VAR2254 $1. ;
2289         informat VAR2255 $1. ;
2290         informat VAR2256 $1. ;
2291         informat VAR2257 $1. ;
2292         informat VAR2258 $1. ;
2293         informat VAR2259 $1. ;
2294         informat VAR2260 $1. ;
2295         informat VAR2261 $1. ;
2296         informat VAR2262 $1. ;
2297         informat VAR2263 $1. ;
2298         informat VAR2264 $1. ;
2299         informat VAR2265 $1. ;
2300         informat VAR2266 $1. ;
2301         informat VAR2267 $1. ;
2302         informat VAR2268 $1. ;
2303         informat VAR2269 $1. ;
2304         informat VAR2270 $1. ;
2305         informat VAR2271 best32. ;
2306         informat VAR2272 best32. ;
2307         informat VAR2273 best32. ;
2308         informat VAR2274 best32. ;
2309         informat VAR2275 best32. ;
2310         informat VAR2276 best32. ;
2311         informat VAR2277 best32. ;
2312         informat VAR2278 best32. ;
2313         informat VAR2279 best32. ;
2314         informat VAR2280 best32. ;
2315         informat VAR2281 $1. ;
2316         informat VAR2282 $1. ;
2317         informat VAR2283 best32. ;
2318         informat VAR2284 $1. ;
2319         informat VAR2285 best32. ;
2320         informat VAR2286 best32. ;
2321         informat VAR2287 best32. ;
2322         informat VAR2288 best32. ;
2323         informat VAR2289 best32. ;
2324         informat VAR2290 best32. ;
2325         informat VAR2291 best32. ;
2326         informat VAR2292 best32. ;
2327         informat VAR2293 best32. ;
2328         informat VAR2294 best32. ;
2329         informat VAR2295 best32. ;
2330         informat VAR2296 best32. ;
2331         informat VAR2297 best32. ;
2332         informat VAR2298 best32. ;
2333         informat VAR2299 best32. ;
2334         informat VAR2300 best32. ;
2335         informat VAR2301 best32. ;
2336         informat VAR2302 best32. ;
2337         informat VAR2303 best32. ;
2338         informat VAR2304 best32. ;
2339         informat VAR2305 best32. ;
2340         informat VAR2306 best32. ;
2341         informat VAR2307 best32. ;
2342         informat VAR2308 $1. ;
2343         informat VAR2309 best32. ;
2344         informat VAR2310 $1. ;
2345         informat VAR2311 $1. ;
2346         informat VAR2312 best32. ;
2347         informat VAR2313 $1. ;
2348         informat VAR2314 best32. ;
2349         informat VAR2315 best32. ;
2350         informat VAR2316 best32. ;
2351         informat VAR2317 best32. ;
2352         informat VAR2318 best32. ;
2353         informat VAR2319 best32. ;
2354         informat VAR2320 best32. ;
2355         informat VAR2321 best32. ;
2356         informat VAR2322 best32. ;
2357         informat VAR2323 best32. ;
2358         informat VAR2324 best32. ;
2359         informat VAR2325 best32. ;
2360         informat VAR2326 best32. ;
2361         informat VAR2327 best32. ;
2362         informat VAR2328 best32. ;
2363         informat VAR2329 best32. ;
2364         informat VAR2330 best32. ;
2365         informat VAR2331 best32. ;
2366         informat VAR2332 $1. ;
2367         informat VAR2333 $1. ;
2368         informat VAR2334 $1. ;
2369         informat VAR2335 $1. ;
2370         informat VAR2336 $1. ;
2371         informat VAR2337 $1. ;
2372         informat VAR2338 $1. ;
2373         informat VAR2339 $1. ;
2374         informat VAR2340 $1. ;
2375         informat VAR2341 $1. ;
2376         informat VAR2342 $1. ;
2377         informat VAR2343 $1. ;
2378         informat VAR2344 best32. ;
2379         informat VAR2345 best32. ;
2380         informat VAR2346 best32. ;
2381         informat VAR2347 best32. ;
2382         informat VAR2348 best32. ;
2383         informat VAR2349 best32. ;
2384         informat VAR2350 $1. ;
2385         informat VAR2351 best32. ;
2386         informat VAR2352 best32. ;
2387         informat VAR2353 best32. ;
2388         informat VAR2354 best32. ;
2389         informat VAR2355 best32. ;
2390         informat VAR2356 best32. ;
2391         informat VAR2357 $1. ;
2392         informat VAR2358 best32. ;
2393         informat VAR2359 best32. ;
2394         informat VAR2360 best32. ;
2395         informat VAR2361 best32. ;
2396         informat VAR2362 best32. ;
2397         informat VAR2363 best32. ;
2398         informat VAR2364 best32. ;
2399         informat VAR2365 best32. ;
2400         informat VAR2366 best32. ;
2401         informat VAR2367 best32. ;
2402         informat VAR2368 best32. ;
2403         informat VAR2369 best32. ;
2404         informat VAR2370 best32. ;
2405         informat VAR2371 best32. ;
2406         informat VAR2372 best32. ;
2407         informat VAR2373 best32. ;
2408         informat VAR2374 best32. ;
2409         informat VAR2375 best32. ;
2410         informat VAR2376 best32. ;
2411         informat VAR2377 best32. ;
2412         informat VAR2378 best32. ;
2413         informat VAR2379 best32. ;
2414         informat VAR2380 best32. ;
2415         informat VAR2381 best32. ;
2416         informat VAR2382 best32. ;
2417         informat VAR2383 best32. ;
2418         informat VAR2384 best32. ;
2419         informat VAR2385 best32. ;
2420         informat VAR2386 best32. ;
2421         informat VAR2387 best32. ;
2422         informat VAR2388 best32. ;
2423         informat VAR2389 best32. ;
2424         informat VAR2390 best32. ;
2425         informat VAR2391 best32. ;
2426         informat VAR2392 best32. ;
2427         informat VAR2393 best32. ;
2428         informat VAR2394 best32. ;
2429         informat VAR2395 best32. ;
2430         informat VAR2396 best32. ;
2431         informat VAR2397 best32. ;
2432         informat VAR2398 best32. ;
2433         informat VAR2399 best32. ;
2434         informat VAR2400 best32. ;
2435         informat VAR2401 best32. ;
2436         informat VAR2402 best32. ;
2437         informat VAR2403 best32. ;
2438         informat VAR2404 best32. ;
2439         informat VAR2405 best32. ;
2440         informat VAR2406 best32. ;
2441         informat VAR2407 best32. ;
2442         informat VAR2408 best32. ;
2443         informat VAR2409 best32. ;
2444         informat VAR2410 best32. ;
2445         informat VAR2411 best32. ;
2446         informat VAR2412 best32. ;
2447         informat VAR2413 best32. ;
2448         informat VAR2414 best32. ;
2449         informat VAR2415 best32. ;
2450         informat VAR2416 best32. ;
2451         informat VAR2417 best32. ;
2452         informat VAR2418 best32. ;
2453         informat VAR2419 best32. ;
2454         informat VAR2420 best32. ;
2455         informat VAR2421 best32. ;
2456         informat VAR2422 best32. ;
2457         informat VAR2423 best32. ;
2458         informat VAR2424 best32. ;
2459         informat VAR2425 best32. ;
2460         informat VAR2426 best32. ;
2461         informat VAR2427 best32. ;
2462         informat VAR2428 best32. ;
2463         informat VAR2429 best32. ;
2464         informat VAR2430 best32. ;
2465         informat VAR2431 best32. ;
2466         informat VAR2432 best32. ;
2467         informat VAR2433 best32. ;
2468         informat VAR2434 best32. ;
2469         informat VAR2435 best32. ;
2470         informat VAR2436 best32. ;
2471         informat VAR2437 best32. ;
2472         informat VAR2438 best32. ;
2473         informat VAR2439 best32. ;
2474         informat VAR2440 best32. ;
2475         informat VAR2441 best32. ;
2476         informat VAR2442 best32. ;
2477         informat VAR2443 best32. ;
2478         informat VAR2444 best32. ;
2479         informat VAR2445 best32. ;
2480         informat VAR2446 best32. ;
2481         informat VAR2447 best32. ;
2482         informat VAR2448 best32. ;
2483         informat VAR2449 best32. ;
2484         informat VAR2450 best32. ;
2485         informat VAR2451 best32. ;
2486         informat VAR2452 best32. ;
2487         informat VAR2453 best32. ;
2488         informat VAR2454 best32. ;
2489         informat VAR2455 best32. ;
2490         informat VAR2456 best32. ;
2491         informat VAR2457 best32. ;
2492         informat VAR2458 best32. ;
2493         informat VAR2459 best32. ;
2494         informat VAR2460 $1. ;
2495         informat VAR2461 best32. ;
2496         informat VAR2462 $1. ;
2497         informat VAR2463 best32. ;
2498         informat VAR2464 $1. ;
2499         informat VAR2465 best32. ;
2500         informat VAR2466 $1. ;
2501         informat VAR2467 best32. ;
2502         informat VAR2468 $1. ;
2503         informat VAR2469 best32. ;
2504         informat VAR2470 $1. ;
2505         informat VAR2471 best32. ;
2506         informat VAR2472 $1. ;
2507         informat VAR2473 best32. ;
2508         informat VAR2474 $1. ;
2509         informat VAR2475 best32. ;
2510         informat VAR2476 $1. ;
2511         informat VAR2477 $1. ;
2512         informat VAR2478 best32. ;
2513         informat VAR2479 mmddyy10. ;
2514         informat VAR2480 best32. ;
2515         informat VAR2481 $1. ;
2516         informat VAR2482 best32. ;
2517         informat VAR2483 $1. ;
2518         informat VAR2484 best32. ;
2519         informat VAR2485 $1. ;
2520         informat VAR2486 best32. ;
2521         informat VAR2487 $1. ;
2522         informat VAR2488 best32. ;
2523         informat VAR2489 $1. ;
2524         informat VAR2490 $1. ;
2525         informat VAR2491 $1. ;
2526         informat VAR2492 $1. ;
2527         informat VAR2493 $1. ;
2528         informat VAR2494 $1. ;
2529         informat VAR2495 $1. ;
2530         informat VAR2496 best32. ;
2531         informat VAR2497 mmddyy10. ;
2532         informat VAR2498 best32. ;
2533         informat VAR2499 best32. ;
2534         informat VAR2500 best32. ;
2535         informat VAR2501 best32. ;
2536         informat VAR2502 $1. ;
2537         informat VAR2503 best32. ;
2538         informat VAR2504 $1. ;
2539         informat VAR2505 $1. ;
2540         informat VAR2506 $1. ;
2541         informat VAR2507 $1. ;
2542         informat VAR2508 best32. ;
2543         informat VAR2509 mmddyy10. ;
2544         informat VAR2510 best32. ;
2545         informat VAR2511 $1. ;
2546         informat VAR2512 best32. ;
2547         informat VAR2513 $1. ;
2548         informat VAR2514 best32. ;
2549         informat VAR2515 best32. ;
2550         informat VAR2516 best32. ;
2551         informat VAR2517 best32. ;
2552         informat VAR2518 best32. ;
2553         informat VAR2519 best32. ;
2554         informat VAR2520 best32. ;
2555         informat VAR2521 best32. ;
2556         informat VAR2522 best32. ;
2557         informat VAR2523 best32. ;
2558         informat VAR2524 best32. ;
2559         informat VAR2525 best32. ;
2560         informat VAR2526 best32. ;
2561         informat VAR2527 best32. ;
2562         informat VAR2528 best32. ;
2563         informat VAR2529 best32. ;
2564         informat VAR2530 best32. ;
2565         informat VAR2531 best32. ;
2566         informat VAR2532 best32. ;
2567         informat VAR2533 best32. ;
2568         informat VAR2534 best32. ;
2569         informat VAR2535 best32. ;
2570         informat VAR2536 best32. ;
2571         informat VAR2537 best32. ;
2572         informat VAR2538 best32. ;
2573         informat VAR2539 best32. ;
2574         informat VAR2540 best32. ;
2575         informat VAR2541 best32. ;
2576         informat VAR2542 best32. ;
2577         informat VAR2543 best32. ;
2578         informat VAR2544 best32. ;
2579         informat VAR2545 best32. ;
2580         informat VAR2546 best32. ;
2581         informat VAR2547 best32. ;
2582         informat VAR2548 best32. ;
2583         informat VAR2549 best32. ;
2584         informat VAR2550 best32. ;
2585         informat VAR2551 best32. ;
2586         informat VAR2552 best32. ;
2587         informat VAR2553 best32. ;
2588         informat VAR2554 best32. ;
2589         informat VAR2555 best32. ;
2590         informat VAR2556 best32. ;
2591         informat VAR2557 best32. ;
2592         informat VAR2558 best32. ;
2593         informat VAR2559 best32. ;
2594         informat VAR2560 best32. ;
2595         informat VAR2561 best32. ;
2596         informat VAR2562 best32. ;
2597         informat VAR2563 $1. ;
2598         informat VAR2564 $1. ;
2599         informat VAR2565 $1. ;
2600         informat VAR2566 $1. ;
2601         informat VAR2567 $1. ;
2602         informat VAR2568 $1. ;
2603         informat VAR2569 $1. ;
2604         informat VAR2570 $1. ;
2605         informat VAR2571 $1. ;
2606         informat VAR2572 $1. ;
2607         informat VAR2573 best32. ;
2608         informat VAR2574 mmddyy10. ;
2609         informat VAR2575 mmddyy10. ;
2610         informat VAR2576 best32. ;
2611         informat VAR2577 mmddyy10. ;
2612         informat VAR2578 best32. ;
2613         informat VAR2579 mmddyy10. ;
2614         informat VAR2580 mmddyy10. ;
2615         informat VAR2581 mmddyy10. ;
2616         informat VAR2582 best32. ;
2617         format id best12. ;
2618         format reviewdate mmddyy10. ;
2619         format newntm best12. ;
2620         format sex best12. ;
2621         format birthplace best12. ;
2622         format usyears $1. ;
2623         format currentinsurance best12. ;
2624         format smoke best12. ;
2625         format vitd best12. ;
2626         format vitdose1 best12. ;
2627         format vitdlevel1 best12. ;
2628         format height best12. ;
2629         format heightmeas best12. ;
2630         format currentweight best12. ;
2631         format currentweightmeas best12. ;
2632         format firstweight best12. ;
2633         format firstweightmeas best12. ;
2634         format criteriaweight best12. ;
2635         format criteriaweightmeas best12. ;
2636         format demographics_complete best12. ;
2637         format ntm2005 best12. ;
2638         format symptoms2005 best12. ;
2639         format radiog2005 $1. ;
2640         format alternate2005 best12. ;
2641         format micro2005 $1. ;
2642         format ntmever best12. ;
2643         format ntmnow best12. ;
2644         format ntmsymptom best12. ;
2645         format ntmradiography $1. ;
2646         format ntmmicro best12. ;
2647         format ntmdiagnoses $1. ;
2648         format ntmother best12. ;
2649         format reviewstatus best12. ;
2650         format current_criteria_complete best12. ;
2651         format oldntmsource best12. ;
2652         format oldntmsite best12. ;
2653         format oldntmculture best12. ;
2654         format oldntmmulti best12. ;
2655         format oldntmothermulti $1. ;
2656         format oldntmculture2___0 best12. ;
2657         format oldntmculture2___1 best12. ;
2658         format oldntmculture2___2 best12. ;
2659         format oldntmculture2___3 best12. ;
2660         format oldntmculture2___4 best12. ;
2661         format oldntmculture2___5 best12. ;
2662         format oldntmculture2___6 best12. ;
2663         format oldntmculture2___7 best12. ;
2664         format oldntmtreat best12. ;
2665         format oldntmimmuno___0 best12. ;
2666         format oldntmimmuno___1 best12. ;
2667         format oldntmimmuno___2 best12. ;
2668         format oldntmimmuno___3 best12. ;
2669         format oldntmimmuno___4 best12. ;
2670         format oldntmimmuno___5 best12. ;
2671         format oldntmimmuno___6 best12. ;
2672         format oldntmimmuno___7 best12. ;
2673         format oldntmimmuno___8 best12. ;
2674         format oldntmimmuno___9 best12. ;
2675         format oldntmimmuno___10 best12. ;
2676         format oldntmimmuno___11 best12. ;
2677         format oldntmimmuno___12 best12. ;
2678         format oldntmimmuno___13 best12. ;
2679         format oldntmimmuno___14 best12. ;
2680         format oldntmimmuno___15 best12. ;
2681         format oldntmimmuno___16 best12. ;
2682         format oldntmimmuno___17 best12. ;
2683         format oldntminhaled___0 best12. ;
2684         format oldntminhaled___1 best12. ;
2685         format oldntmcomorbid___0 best12. ;
2686         format oldntmcomorbid___1 best12. ;
2687         format oldntmcomorbid___2 best12. ;
2688         format oldntmcomorbid___3 best12. ;
2689         format oldntmcomorbid___4 best12. ;
2690         format oldntmcomorbid___5 best12. ;
2691         format oldntmcomorbid___6 best12. ;
2692         format oldntmcomorbid___7 best12. ;
2693         format oldntmcomorbid___8 best12. ;
2694         format oldntmcomorbid___9 best12. ;
2695         format oldntmcomorbid___10 best12. ;
2696         format oldntmcomorbid___11 best12. ;
2697         format oldntmcomorbid___12 best12. ;
2698         format oldntmcomorbid___13 best12. ;
2699         format oldntmcomorbid___14 best12. ;
2700         format oldntmcomorbid___15 best12. ;
2701         format oldntmcomorbid___16 best12. ;
2702         format oldntmcomorbid___17 best12. ;
2703         format oldntmcomorbid___18 best12. ;
2704         format oldntmcomorbid___19 best12. ;
2705         format oldntmcomorbid___20 best12. ;
2706         format oldntmtbtype $1. ;
2707         format oldntmautoimmunetype $1. ;
2708         format oldntmtransplant___0 best12. ;
2709         format oldntmtransplant___1 best12. ;
2710         format oldntmtransplant___2 best12. ;
2711         format old_history_complete best12. ;
2712         format pid best12. ;
2713         format pidntm best12. ;
2714         format hiv best12. ;
2715         format hivntm $1. ;
2716         format cancer best12. ;
2717         format cancerntm best12. ;
2718         format transplant best12. ;
2719         format lungtrans $1. ;
2720         format organtrans $1. ;
2721         format hematologictrans $1. ;
2722         format transplantntm $1. ;
2723         format lymphopenia best12. ;
2724         format lymphopeniantm best12. ;
2725         format hypogamma best12. ;
2726         format hypogammantm best12. ;
2727         format cd4 best12. ;
2728         format cd4ntm $1. ;
2729         format immuneany best12. ;
2730         format abatacept6mon best12. ;
2731         format anakinra6mon best12. ;
2732         format azathioprine6mon best12. ;
2733         format belimumab6mon best12. ;
2734         format chemo6mon best12. ;
2735         format cyclophosphamide6mon best12. ;
2736         format cyclosporine6mon best12. ;
2737         format leflunamide6mon best12. ;
2738         format methotrexate6mon best12. ;
2739         format mmf6mon best12. ;
2740         format prednisone6mon best12. ;
2741         format rituximab6mon best12. ;
2742         format tacrolimus6mon best12. ;
2743         format tnf6mon best12. ;
2744         format tocilizumab6mon best12. ;
2745         format tofacitinib6mon best12. ;
2746         format ustekinumab6mon best12. ;
2747         format other6mont best12. ;
2748         format abataceptafter best12. ;
2749         format anakinraafter best12. ;
2750         format azathioprineafter best12. ;
2751         format belimumabafter best12. ;
2752         format chemoafter best12. ;
2753         format cyclophosphamideafter best12. ;
2754         format cyclosporineafter best12. ;
2755         format predinisoneafter best12. ;
2756         format leflunamideafter best12. ;
2757         format methotrexateafter best12. ;
2758         format mmfafter best12. ;
2759         format rituximabafter best12. ;
2760         format tacrolimusafter best12. ;
2761         format tnfafter best12. ;
2762         format tocilizumabafter best12. ;
2763         format tofacitinibafter best12. ;
2764         format ustekinumabafter best12. ;
2765         format otherafter best12. ;
2766         format immunosuppressive_information_co best12. ;
2767         format immuneany_enr best12. ;
2768         format abatacept_enr best12. ;
2769         format anakinra_enr best12. ;
2770         format azathioprine_enr best12. ;
2771         format belimumab_enr best12. ;
2772         format chemo_enr best12. ;
2773         format cyclophosphamide_enr best12. ;
2774         format cyclosporine_enr best12. ;
2775         format leflunamide_enr best12. ;
2776         format methotrexate_enr best12. ;
2777         format mmf_enr best12. ;
2778         format prednisone_enr best12. ;
2779         format rituximab_enr best12. ;
2780         format tacrolimus_enr best12. ;
2781         format tnf_enr best12. ;
2782         format tocilizumab_enr best12. ;
2783         format tofacitinib_enr best12. ;
2784         format ustekinumab_enr best12. ;
2785         format otherimmune_enr best12. ;
2786         format immunosuppressive_information_en best12. ;
2787         format copd best12. ;
2788         format asthma best12. ;
2789         format bronch best12. ;
2790         format interstitial best12. ;
2791         format sarcoid best12. ;
2792         format pneumo best12. ;
2793         format congestive best12. ;
2794         format cf best12. ;
2795         format tb best12. ;
2796         format tbtype $1. ;
2797         format liverdisease best12. ;
2798         format diabetes best12. ;
2799         format renaldisease best12. ;
2800         format nonlungcancer best12. ;
2801         format lungcancer best12. ;
2802         format autoimmune best12. ;
2803         format inflammatorybowel best12. ;
2804         format psoriasis best12. ;
2805         format ra best12. ;
2806         format spondylitis best12. ;
2807         format lupus best12. ;
2808         format otherimmune best12. ;
2809         format gerd best12. ;
2810         format other best12. ;
2811         format comorbidities_complete best12. ;
2812         format inhaledany best12. ;
2813         format isteroids6mon best12. ;
2814         format itobramycin6mon best12. ;
2815         format iaztreonam6mon best12. ;
2816         format icolistin6mon best12. ;
2817         format iamikacin6mon best12. ;
2818         format ishortbeta6mon best12. ;
2819         format ilongbeta6mon best12. ;
2820         format ianticholinergics6mon best12. ;
2821         format ipulmozyme6mon best12. ;
2822         format isaline6mon best12. ;
2823         format icombination6mon best12. ;
2824         format iother6mon best12. ;
2825         format isteroidsafter best12. ;
2826         format itobramycinafter best12. ;
2827         format iaztreonamafter best12. ;
2828         format icolistinafter best12. ;
2829         format iamikacinafter best12. ;
2830         format ishortbetaafter best12. ;
2831         format ilongbetaafter best12. ;
2832         format ianticholinergicsafter best12. ;
2833         format ipulmozymeafter best12. ;
2834         format isalineafter best12. ;
2835         format icombinationafter best12. ;
2836         format iotherafter best12. ;
2837         format inhaled_information_complete best12. ;
2838         format inhaleenroll_enr best12. ;
2839         format isteroids_enr best12. ;
2840         format itobramycin_enr best12. ;
2841         format iaztreonam_enr best12. ;
2842         format icolistin_enr best12. ;
2843         format iamikacin_enr best12. ;
2844         format ishortbeta_enr best12. ;
2845         format ilongbeta_enr best12. ;
2846         format ianticholinergics_enr best12. ;
2847         format ipulmozyme_enr best12. ;
2848         format isaline_enr best12. ;
2849         format icombination_enr best12. ;
2850         format iother_enr best12. ;
2851         format inhaled_information_enrollment_c best12. ;
2852         format symptomatic best12. ;
2853         format cough best12. ;
2854         format hemoptysis best12. ;
2855         format dyspnea best12. ;
2856         format weightloss best12. ;
2857         format fever best12. ;
2858         format failthrive best12. ;
2859         format skininfection best12. ;
2860         format diarrhea best12. ;
2861         format fatigue best12. ;
2862         format othersymp1 best12. ;
2863         format othersymp2 best12. ;
2864         format clinical_symptoms_complete best12. ;
2865         format cavntm best12. ;
2866         format treebudct best12. ;
2867         format brocharct best12. ;
2868         format scan1type best12. ;
2869         format abnormality1___0 best12. ;
2870         format abnormality1___1 best12. ;
2871         format abnormality1___2 best12. ;
2872         format abnormality1___3 best12. ;
2873         format inflocation1___0 best12. ;
2874         format inflocation1___1 best12. ;
2875         format inflocation1___2 best12. ;
2876         format inflocation1___3 best12. ;
2877         format inflocation1___4 best12. ;
2878         format inflocation1___5 best12. ;
2879         format nodlocation1___0 best12. ;
2880         format nodlocation1___1 best12. ;
2881         format nodlocation1___2 best12. ;
2882         format nodlocation1___3 best12. ;
2883         format nodlocation1___4 best12. ;
2884         format nodlocation1___5 best12. ;
2885         format cavlocation1___0 best12. ;
2886         format cavlocation1___1 best12. ;
2887         format cavlocation1___2 best12. ;
2888         format cavlocation1___3 best12. ;
2889         format cavlocation1___4 best12. ;
2890         format cavlocation1___5 best12. ;
2891         format brolocation1___0 best12. ;
2892         format brolocation1___1 best12. ;
2893         format brolocation1___2 best12. ;
2894         format brolocation1___3 best12. ;
2895         format brolocation1___4 best12. ;
2896         format brolocation1___5 best12. ;
2897         format effusion1 best12. ;
2898         format lymphadenopathy1 best12. ;
2899         format scan1improve best12. ;
2900         format scan2type best12. ;
2901         format abnormality2___0 best12. ;
2902         format abnormality2___1 best12. ;
2903         format abnormality2___2 best12. ;
2904         format abnormality2___3 best12. ;
2905         format inflocation2___0 best12. ;
2906         format inflocation2___1 best12. ;
2907         format inflocation2___2 best12. ;
2908         format inflocation2___3 best12. ;
2909         format inflocation2___4 best12. ;
2910         format inflocation2___5 best12. ;
2911         format nodlocation2___0 best12. ;
2912         format nodlocation2___1 best12. ;
2913         format nodlocation2___2 best12. ;
2914         format nodlocation2___3 best12. ;
2915         format nodlocation2___4 best12. ;
2916         format nodlocation2___5 best12. ;
2917         format cavlocation2___0 best12. ;
2918         format cavlocation2___1 best12. ;
2919         format cavlocation2___2 best12. ;
2920         format cavlocation2___3 best12. ;
2921         format cavlocation2___4 best12. ;
2922         format cavlocation2___5 best12. ;
2923         format brolocation2___0 best12. ;
2924         format brolocation2___1 best12. ;
2925         format brolocation2___2 best12. ;
2926         format brolocation2___3 best12. ;
2927         format brolocation2___4 best12. ;
2928         format brolocation2___5 best12. ;
2929         format effusion2 best12. ;
2930         format lymphadenopathy2 best12. ;
2931         format scan2improve best12. ;
2932         format scan3type best12. ;
2933         format abnormality3___0 best12. ;
2934         format abnormality3___1 best12. ;
2935         format abnormality3___2 best12. ;
2936         format abnormality3___3 best12. ;
2937         format inflocation3___0 best12. ;
2938         format inflocation3___1 best12. ;
2939         format inflocation3___2 best12. ;
2940         format inflocation3___3 best12. ;
2941         format inflocation3___4 best12. ;
2942         format inflocation3___5 best12. ;
2943         format nodlocation3___0 best12. ;
2944         format nodlocation3___1 best12. ;
2945         format nodlocation3___2 best12. ;
2946         format nodlocation3___3 best12. ;
2947         format nodlocation3___4 best12. ;
2948         format nodlocation3___5 best12. ;
2949         format cavlocation3___0 best12. ;
2950         format cavlocation3___1 best12. ;
2951         format cavlocation3___2 best12. ;
2952         format cavlocation3___3 best12. ;
2953         format cavlocation3___4 best12. ;
2954         format cavlocation3___5 best12. ;
2955         format brolocation3___0 best12. ;
2956         format brolocation3___1 best12. ;
2957         format brolocation3___2 best12. ;
2958         format brolocation3___3 best12. ;
2959         format brolocation3___4 best12. ;
2960         format brolocation3___5 best12. ;
2961         format effusion3 best12. ;
2962         format lymphadenopathy3 best12. ;
2963         format scan3improve best12. ;
2964         format scan4type best12. ;
2965         format abnormality4___0 best12. ;
2966         format abnormality4___1 best12. ;
2967         format abnormality4___2 best12. ;
2968         format abnormality4___3 best12. ;
2969         format inflocation4___0 best12. ;
2970         format inflocation4___1 best12. ;
2971         format inflocation4___2 best12. ;
2972         format inflocation4___3 best12. ;
2973         format inflocation4___4 best12. ;
2974         format inflocation4___5 best12. ;
2975         format nodlocation4___0 best12. ;
2976         format nodlocation4___1 best12. ;
2977         format nodlocation4___2 best12. ;
2978         format nodlocation4___3 best12. ;
2979         format nodlocation4___4 best12. ;
2980         format nodlocation4___5 best12. ;
2981         format cavlocation4___0 best12. ;
2982         format cavlocation4___1 best12. ;
2983         format cavlocation4___2 best12. ;
2984         format cavlocation4___3 best12. ;
2985         format cavlocation4___4 best12. ;
2986         format cavlocation4___5 best12. ;
2987         format brolocation4___0 best12. ;
2988         format brolocation4___1 best12. ;
2989         format brolocation4___2 best12. ;
2990         format brolocation4___3 best12. ;
2991         format brolocation4___4 best12. ;
2992         format brolocation4___5 best12. ;
2993         format effusion4 best12. ;
2994         format lymphadenopathy4 best12. ;
2995         format scan4improve best12. ;
2996         format scan5type best12. ;
2997         format abnormality5___0 best12. ;
2998         format abnormality5___1 best12. ;
2999         format abnormality5___2 best12. ;
3000         format abnormality5___3 best12. ;
3001         format inflocation5___0 best12. ;
3002         format inflocation5___1 best12. ;
3003         format inflocation5___2 best12. ;
3004         format inflocation5___3 best12. ;
3005         format inflocation5___4 best12. ;
3006         format inflocation5___5 best12. ;
3007         format nodlocation5___0 best12. ;
3008         format nodlocation5___1 best12. ;
3009         format nodlocation5___2 best12. ;
3010         format nodlocation5___3 best12. ;
3011         format nodlocation5___4 best12. ;
3012         format nodlocation5___5 best12. ;
3013         format cavlocation5___0 best12. ;
3014         format cavlocation5___1 best12. ;
3015         format cavlocation5___2 best12. ;
3016         format cavlocation5___3 best12. ;
3017         format cavlocation5___4 best12. ;
3018         format cavlocation5___5 best12. ;
3019         format brolocation5___0 best12. ;
3020         format brolocation5___1 best12. ;
3021         format brolocation5___2 best12. ;
3022         format brolocation5___3 best12. ;
3023         format brolocation5___4 best12. ;
3024         format brolocation5___5 best12. ;
3025         format effusion5 best12. ;
3026         format lymphadenopathy5 best12. ;
3027         format scan5improve best12. ;
3028         format scan6type best12. ;
3029         format abnormality6___0 best12. ;
3030         format abnormality6___1 best12. ;
3031         format abnormality6___2 best12. ;
3032         format abnormality6___3 best12. ;
3033         format inflocation6___0 best12. ;
3034         format inflocation6___1 best12. ;
3035         format inflocation6___2 best12. ;
3036         format inflocation6___3 best12. ;
3037         format inflocation6___4 best12. ;
3038         format inflocation6___5 best12. ;
3039         format nodlocation6___0 best12. ;
3040         format nodlocation6___1 best12. ;
3041         format nodlocation6___2 best12. ;
3042         format nodlocation6___3 best12. ;
3043         format nodlocation6___4 best12. ;
3044         format nodlocation6___5 best12. ;
3045         format cavlocation6___0 best12. ;
3046         format cavlocation6___1 best12. ;
3047         format cavlocation6___2 best12. ;
3048         format cavlocation6___3 best12. ;
3049         format cavlocation6___4 best12. ;
3050         format cavlocation6___5 best12. ;
3051         format brolocation6___0 best12. ;
3052         format brolocation6___1 best12. ;
3053         format brolocation6___2 best12. ;
3054         format brolocation6___3 best12. ;
3055         format brolocation6___4 best12. ;
3056         format brolocation6___5 best12. ;
3057         format effusion6 best12. ;
3058         format lymphadenopathy6 best12. ;
3059         format scan6improve best12. ;
3060         format scan7type best12. ;
3061         format abnormality7___0 best12. ;
3062         format abnormality7___1 best12. ;
3063         format abnormality7___2 best12. ;
3064         format abnormality7___3 best12. ;
3065         format inflocation7___0 best12. ;
3066         format inflocation7___1 best12. ;
3067         format inflocation7___2 best12. ;
3068         format inflocation7___3 best12. ;
3069         format inflocation7___4 best12. ;
3070         format inflocation7___5 best12. ;
3071         format nodlocation7___0 best12. ;
3072         format nodlocation7___1 best12. ;
3073         format nodlocation7___2 best12. ;
3074         format nodlocation7___3 best12. ;
3075         format nodlocation7___4 best12. ;
3076         format nodlocation7___5 best12. ;
3077         format cavlocation7___0 best12. ;
3078         format cavlocation7___1 best12. ;
3079         format cavlocation7___2 best12. ;
3080         format cavlocation7___3 best12. ;
3081         format cavlocation7___4 best12. ;
3082         format cavlocation7___5 best12. ;
3083         format brolocation7___0 best12. ;
3084         format brolocation7___1 best12. ;
3085         format brolocation7___2 best12. ;
3086         format brolocation7___3 best12. ;
3087         format brolocation7___4 best12. ;
3088         format brolocation7___5 best12. ;
3089         format effusion7 best12. ;
3090         format lymphadenopathy7 best12. ;
3091         format scan7improve best12. ;
3092         format scan8type best12. ;
3093         format abnormality8___0 best12. ;
3094         format abnormality8___1 best12. ;
3095         format abnormality8___2 best12. ;
3096         format abnormality8___3 best12. ;
3097         format inflocation8___0 best12. ;
3098         format inflocation8___1 best12. ;
3099         format inflocation8___2 best12. ;
3100         format inflocation8___3 best12. ;
3101         format inflocation8___4 best12. ;
3102         format inflocation8___5 best12. ;
3103         format nodlocation8___0 best12. ;
3104         format nodlocation8___1 best12. ;
3105         format nodlocation8___2 best12. ;
3106         format nodlocation8___3 best12. ;
3107         format nodlocation8___4 best12. ;
3108         format nodlocation8___5 best12. ;
3109         format cavlocation8___0 best12. ;
3110         format cavlocation8___1 best12. ;
3111         format cavlocation8___2 best12. ;
3112         format cavlocation8___3 best12. ;
3113         format cavlocation8___4 best12. ;
3114         format cavlocation8___5 best12. ;
3115         format brolocation8___0 best12. ;
3116         format brolocation8___1 best12. ;
3117         format brolocation8___2 best12. ;
3118         format brolocation8___3 best12. ;
3119         format brolocation8___4 best12. ;
3120         format brolocation8___5 best12. ;
3121         format effusion8 best12. ;
3122         format lymphadenopathy8 best12. ;
3123         format scan8improve best12. ;
3124         format scan9type best12. ;
3125         format abnormality9___0 best12. ;
3126         format abnormality9___1 best12. ;
3127         format abnormality9___2 best12. ;
3128         format abnormality9___3 best12. ;
3129         format inflocation9___0 best12. ;
3130         format inflocation9___1 best12. ;
3131         format inflocation9___2 best12. ;
3132         format inflocation9___3 best12. ;
3133         format inflocation9___4 best12. ;
3134         format inflocation9___5 best12. ;
3135         format nodlocation9___0 best12. ;
3136         format nodlocation9___1 best12. ;
3137         format nodlocation9___2 best12. ;
3138         format nodlocation9___3 best12. ;
3139         format nodlocation9___4 best12. ;
3140         format nodlocation9___5 best12. ;
3141         format cavlocation9___0 best12. ;
3142         format cavlocation9___1 best12. ;
3143         format cavlocation9___2 best12. ;
3144         format cavlocation9___3 best12. ;
3145         format cavlocation9___4 best12. ;
3146         format cavlocation9___5 best12. ;
3147         format brolocation9___0 best12. ;
3148         format brolocation9___1 best12. ;
3149         format brolocation9___2 best12. ;
3150         format brolocation9___3 best12. ;
3151         format brolocation9___4 best12. ;
3152         format brolocation9___5 best12. ;
3153         format effusion9 best12. ;
3154         format lymphadenopathy9 best12. ;
3155         format scan9improve best12. ;
3156         format scan10type best12. ;
3157         format abnormality10___0 best12. ;
3158         format abnormality10___1 best12. ;
3159         format abnormality10___2 best12. ;
3160         format abnormality10___3 best12. ;
3161         format inflocation10___0 best12. ;
3162         format inflocation10___1 best12. ;
3163         format inflocation10___2 best12. ;
3164         format inflocation10___3 best12. ;
3165         format inflocation10___4 best12. ;
3166         format inflocation10___5 best12. ;
3167         format nodlocation10___0 best12. ;
3168         format nodlocation10___1 best12. ;
3169         format nodlocation10___2 best12. ;
3170         format nodlocation10___3 best12. ;
3171         format nodlocation10___4 best12. ;
3172         format nodlocation10___5 best12. ;
3173         format cavlocation10___0 best12. ;
3174         format cavlocation10___1 best12. ;
3175         format cavlocation10___2 best12. ;
3176         format cavlocation10___3 best12. ;
3177         format cavlocation10___4 best12. ;
3178         format cavlocation10___5 best12. ;
3179         format brolocation10___0 best12. ;
3180         format brolocation10___1 best12. ;
3181         format brolocation10___2 best12. ;
3182         format brolocation10___3 best12. ;
3183         format brolocation10___4 best12. ;
3184         format brolocation10___5 best12. ;
3185         format effusion10 best12. ;
3186         format lymphadenopathy10 best12. ;
3187         format scan10improve best12. ;
3188         format scan11type best12. ;
3189         format abnormality11___0 best12. ;
3190         format abnormality11___1 best12. ;
3191         format abnormality11___2 best12. ;
3192         format abnormality11___3 best12. ;
3193         format inflocation11___0 best12. ;
3194         format inflocation11___1 best12. ;
3195         format inflocation11___2 best12. ;
3196         format inflocation11___3 best12. ;
3197         format inflocation11___4 best12. ;
3198         format inflocation11___5 best12. ;
3199         format nodlocation11___0 best12. ;
3200         format nodlocation11___1 best12. ;
3201         format nodlocation11___2 best12. ;
3202         format nodlocation11___3 best12. ;
3203         format nodlocation11___4 best12. ;
3204         format nodlocation11___5 best12. ;
3205         format cavlocation11___0 best12. ;
3206         format cavlocation11___1 best12. ;
3207         format cavlocation11___2 best12. ;
3208         format cavlocation11___3 best12. ;
3209         format cavlocation11___4 best12. ;
3210         format cavlocation11___5 best12. ;
3211         format brolocation11___0 best12. ;
3212         format brolocation11___1 best12. ;
3213         format brolocation11___2 best12. ;
3214         format brolocation11___3 best12. ;
3215         format brolocation11___4 best12. ;
3216         format brolocation11___5 best12. ;
3217         format effusion11 best12. ;
3218         format lymphadenopathy11 best12. ;
3219         format scan11improve best12. ;
3220         format scan12type best12. ;
3221         format abnormality12___0 best12. ;
3222         format abnormality12___1 best12. ;
3223         format abnormality12___2 best12. ;
3224         format abnormality12___3 best12. ;
3225         format inflocation12___0 best12. ;
3226         format inflocation12___1 best12. ;
3227         format inflocation12___2 best12. ;
3228         format inflocation12___3 best12. ;
3229         format inflocation12___4 best12. ;
3230         format inflocation12___5 best12. ;
3231         format nodlocation12___0 best12. ;
3232         format nodlocation12___1 best12. ;
3233         format nodlocation12___2 best12. ;
3234         format nodlocation12___3 best12. ;
3235         format nodlocation12___4 best12. ;
3236         format nodlocation12___5 best12. ;
3237         format cavlocation12___0 best12. ;
3238         format cavlocation12___1 best12. ;
3239         format cavlocation12___2 best12. ;
3240         format cavlocation12___3 best12. ;
3241         format cavlocation12___4 best12. ;
3242         format cavlocation12___5 best12. ;
3243         format brolocation12___0 best12. ;
3244         format brolocation12___1 best12. ;
3245         format brolocation12___2 best12. ;
3246         format brolocation12___3 best12. ;
3247         format brolocation12___4 best12. ;
3248         format brolocation12___5 best12. ;
3249         format effusion12 best12. ;
3250         format lymphadenopathy12 best12. ;
3251         format scan12improve best12. ;
3252         format scan13type best12. ;
3253         format abnormality13___0 best12. ;
3254         format abnormality13___1 best12. ;
3255         format abnormality13___2 best12. ;
3256         format abnormality13___3 best12. ;
3257         format inflocation13___0 best12. ;
3258         format inflocation13___1 best12. ;
3259         format inflocation13___2 best12. ;
3260         format inflocation13___3 best12. ;
3261         format inflocation13___4 best12. ;
3262         format inflocation13___5 best12. ;
3263         format nodlocation13___0 best12. ;
3264         format nodlocation13___1 best12. ;
3265         format nodlocation13___2 best12. ;
3266         format nodlocation13___3 best12. ;
3267         format nodlocation13___4 best12. ;
3268         format nodlocation13___5 best12. ;
3269         format cavlocation13___0 best12. ;
3270         format cavlocation13___1 best12. ;
3271         format cavlocation13___2 best12. ;
3272         format cavlocation13___3 best12. ;
3273         format cavlocation13___4 best12. ;
3274         format cavlocation13___5 best12. ;
3275         format brolocation13___0 best12. ;
3276         format brolocation13___1 best12. ;
3277         format brolocation13___2 best12. ;
3278         format brolocation13___3 best12. ;
3279         format brolocation13___4 best12. ;
3280         format brolocation13___5 best12. ;
3281         format effusion13 best12. ;
3282         format lymphadenopathy13 best12. ;
3283         format scan13improve best12. ;
3284         format scan14type best12. ;
3285         format abnormality14___0 best12. ;
3286         format abnormality14___1 best12. ;
3287         format abnormality14___2 best12. ;
3288         format abnormality14___3 best12. ;
3289         format inflocation14___0 best12. ;
3290         format inflocation14___1 best12. ;
3291         format inflocation14___2 best12. ;
3292         format inflocation14___3 best12. ;
3293         format inflocation14___4 best12. ;
3294         format inflocation14___5 best12. ;
3295         format nodlocation14___0 best12. ;
3296         format nodlocation14___1 best12. ;
3297         format nodlocation14___2 best12. ;
3298         format nodlocation14___3 best12. ;
3299         format nodlocation14___4 best12. ;
3300         format nodlocation14___5 best12. ;
3301         format cavlocation14___0 best12. ;
3302         format cavlocation14___1 best12. ;
3303         format cavlocation14___2 best12. ;
3304         format cavlocation14___3 best12. ;
3305         format cavlocation14___4 best12. ;
3306         format cavlocation14___5 best12. ;
3307         format brolocation14___0 best12. ;
3308         format brolocation14___1 best12. ;
3309         format brolocation14___2 best12. ;
3310         format brolocation14___3 best12. ;
3311         format brolocation14___4 best12. ;
3312         format brolocation14___5 best12. ;
3313         format effusion14 best12. ;
3314         format lymphadenopathy14 best12. ;
3315         format scan14improve best12. ;
3316         format scan15type best12. ;
3317         format abnormality15___0 best12. ;
3318         format abnormality15___1 best12. ;
3319         format abnormality15___2 best12. ;
3320         format abnormality15___3 best12. ;
3321         format inflocation15___0 best12. ;
3322         format inflocation15___1 best12. ;
3323         format inflocation15___2 best12. ;
3324         format inflocation15___3 best12. ;
3325         format inflocation15___4 best12. ;
3326         format inflocation15___5 best12. ;
3327         format nodlocation15___0 best12. ;
3328         format nodlocation15___1 best12. ;
3329         format nodlocation15___2 best12. ;
3330         format nodlocation15___3 best12. ;
3331         format nodlocation15___4 best12. ;
3332         format nodlocation15___5 best12. ;
3333         format cavlocation15___0 best12. ;
3334         format cavlocation15___1 best12. ;
3335         format cavlocation15___2 best12. ;
3336         format cavlocation15___3 best12. ;
3337         format cavlocation15___4 best12. ;
3338         format cavlocation15___5 best12. ;
3339         format brolocation15___0 best12. ;
3340         format brolocation15___1 best12. ;
3341         format brolocation15___2 best12. ;
3342         format brolocation15___3 best12. ;
3343         format brolocation15___4 best12. ;
3344         format brolocation15___5 best12. ;
3345         format effusion15 best12. ;
3346         format lymphadenopathy15 best12. ;
3347         format scan15improve best12. ;
3348         format scan16type best12. ;
3349         format abnormality16___0 best12. ;
3350         format abnormality16___1 best12. ;
3351         format abnormality16___2 best12. ;
3352         format abnormality16___3 best12. ;
3353         format inflocation16___0 best12. ;
3354         format inflocation16___1 best12. ;
3355         format inflocation16___2 best12. ;
3356         format inflocation16___3 best12. ;
3357         format inflocation16___4 best12. ;
3358         format inflocation16___5 best12. ;
3359         format nodlocation16___0 best12. ;
3360         format nodlocation16___1 best12. ;
3361         format nodlocation16___2 best12. ;
3362         format nodlocation16___3 best12. ;
3363         format nodlocation16___4 best12. ;
3364         format nodlocation16___5 best12. ;
3365         format cavlocation16___0 best12. ;
3366         format cavlocation16___1 best12. ;
3367         format cavlocation16___2 best12. ;
3368         format cavlocation16___3 best12. ;
3369         format cavlocation16___4 best12. ;
3370         format cavlocation16___5 best12. ;
3371         format brolocation16___0 best12. ;
3372         format brolocation16___1 best12. ;
3373         format brolocation16___2 best12. ;
3374         format brolocation16___3 best12. ;
3375         format brolocation16___4 best12. ;
3376         format brolocation16___5 best12. ;
3377         format effusion16 best12. ;
3378         format lymphadenopathy16 best12. ;
3379         format scan16improve best12. ;
3380         format scan17type $1. ;
3381         format abnormality17___0 best12. ;
3382         format abnormality17___1 best12. ;
3383         format abnormality17___2 best12. ;
3384         format abnormality17___3 best12. ;
3385         format inflocation17___0 best12. ;
3386         format inflocation17___1 best12. ;
3387         format inflocation17___2 best12. ;
3388         format inflocation17___3 best12. ;
3389         format inflocation17___4 best12. ;
3390         format inflocation17___5 best12. ;
3391         format nodlocation17___0 best12. ;
3392         format nodlocation17___1 best12. ;
3393         format nodlocation17___2 best12. ;
3394         format nodlocation17___3 best12. ;
3395         format nodlocation17___4 best12. ;
3396         format nodlocation17___5 best12. ;
3397         format cavlocation17___0 best12. ;
3398         format cavlocation17___1 best12. ;
3399         format cavlocation17___2 best12. ;
3400         format cavlocation17___3 best12. ;
3401         format cavlocation17___4 best12. ;
3402         format cavlocation17___5 best12. ;
3403         format brolocation17___0 best12. ;
3404         format brolocation17___1 best12. ;
3405         format brolocation17___2 best12. ;
3406         format brolocation17___3 best12. ;
3407         format brolocation17___4 best12. ;
3408         format brolocation17___5 best12. ;
3409         format effusion17 $1. ;
3410         format lymphadenopathy17 $1. ;
3411         format scan17improve $1. ;
3412         format scan18type $1. ;
3413         format abnormality18___0 best12. ;
3414         format abnormality18___1 best12. ;
3415         format abnormality18___2 best12. ;
3416         format abnormality18___3 best12. ;
3417         format inflocation18___0 best12. ;
3418         format inflocation18___1 best12. ;
3419         format inflocation18___2 best12. ;
3420         format inflocation18___3 best12. ;
3421         format inflocation18___4 best12. ;
3422         format inflocation18___5 best12. ;
3423         format nodlocation18___0 best12. ;
3424         format nodlocation18___1 best12. ;
3425         format nodlocation18___2 best12. ;
3426         format nodlocation18___3 best12. ;
3427         format nodlocation18___4 best12. ;
3428         format nodlocation18___5 best12. ;
3429         format cavlocation18___0 best12. ;
3430         format cavlocation18___1 best12. ;
3431         format cavlocation18___2 best12. ;
3432         format cavlocation18___3 best12. ;
3433         format cavlocation18___4 best12. ;
3434         format cavlocation18___5 best12. ;
3435         format brolocation18___0 best12. ;
3436         format brolocation18___1 best12. ;
3437         format brolocation18___2 best12. ;
3438         format brolocation18___3 best12. ;
3439         format brolocation18___4 best12. ;
3440         format brolocation18___5 best12. ;
3441         format effusion18 $1. ;
3442         format lymphadenopathy18 $1. ;
3443         format scan18improve $1. ;
3444         format scan19type $1. ;
3445         format abnormality19___0 best12. ;
3446         format abnormality19___1 best12. ;
3447         format abnormality19___2 best12. ;
3448         format abnormality19___3 best12. ;
3449         format inflocation19___0 best12. ;
3450         format inflocation19___1 best12. ;
3451         format inflocation19___2 best12. ;
3452         format inflocation19___3 best12. ;
3453         format inflocation19___4 best12. ;
3454         format inflocation19___5 best12. ;
3455         format nodlocation19___0 best12. ;
3456         format nodlocation19___1 best12. ;
3457         format nodlocation19___2 best12. ;
3458         format nodlocation19___3 best12. ;
3459         format nodlocation19___4 best12. ;
3460         format nodlocation19___5 best12. ;
3461         format cavlocation19___0 best12. ;
3462         format cavlocation19___1 best12. ;
3463         format cavlocation19___2 best12. ;
3464         format cavlocation19___3 best12. ;
3465         format cavlocation19___4 best12. ;
3466         format cavlocation19___5 best12. ;
3467         format brolocation19___0 best12. ;
3468         format brolocation19___1 best12. ;
3469         format brolocation19___2 best12. ;
3470         format brolocation19___3 best12. ;
3471         format brolocation19___4 best12. ;
3472         format brolocation19___5 best12. ;
3473         format effusion19 $1. ;
3474         format lymphadenopathy19 $1. ;
3475         format scan19improve $1. ;
3476         format scan20type $1. ;
3477         format abnormality20___0 best12. ;
3478         format abnormality20___1 best12. ;
3479         format abnormality20___2 best12. ;
3480         format abnormality20___3 best12. ;
3481         format inflocation20___0 best12. ;
3482         format inflocation20___1 best12. ;
3483         format inflocation20___2 best12. ;
3484         format inflocation20___3 best12. ;
3485         format inflocation20___4 best12. ;
3486         format inflocation20___5 best12. ;
3487         format nodlocation20___0 best12. ;
3488         format nodlocation20___1 best12. ;
3489         format nodlocation20___2 best12. ;
3490         format nodlocation20___3 best12. ;
3491         format nodlocation20___4 best12. ;
3492         format nodlocation20___5 best12. ;
3493         format cavlocation20___0 best12. ;
3494         format cavlocation20___1 best12. ;
3495         format cavlocation20___2 best12. ;
3496         format cavlocation20___3 best12. ;
3497         format cavlocation20___4 best12. ;
3498         format cavlocation20___5 best12. ;
3499         format brolocation20___0 best12. ;
3500         format brolocation20___1 best12. ;
3501         format brolocation20___2 best12. ;
3502         format brolocation20___3 best12. ;
3503         format brolocation20___4 best12. ;
3504         format brolocation20___5 best12. ;
3505         format effusion20 $1. ;
3506         format lymphadenopathy20 $1. ;
3507         format scan20improve $1. ;
3508         format radiography_complete best12. ;
3509         format extrapulm best12. ;
3510         format micro1afb best12. ;
3511         format micro1afbresult best12. ;
3512         format micro1site best12. ;
3513         format micro1result best12. ;
3514         format micro1multi best12. ;
3515         format micro1resultmulti $1. ;
3516         format micro2afb best12. ;
3517         format micro2afbresult best12. ;
3518         format micro2site best12. ;
3519         format micro2result best12. ;
3520         format micro2multi best12. ;
3521         format micro2resultmulti $1. ;
3522         format micro3afb best12. ;
3523         format micro3afbresult best12. ;
3524         format micro3site best12. ;
3525         format micro3result best12. ;
3526         format micro3multi best12. ;
3527         format micro3resultmulti $1. ;
3528         format micro4afb best12. ;
3529         format micro4afbresult best12. ;
3530         format micro4site best12. ;
3531         format micro4result best12. ;
3532         format micro4multi best12. ;
3533         format micro4resultmulti $1. ;
3534         format micro5afb best12. ;
3535         format micro5afbresult best12. ;
3536         format micro5site best12. ;
3537         format micro5result best12. ;
3538         format micro5multi best12. ;
3539         format micro5resultmulti $1. ;
3540         format micro6afb best12. ;
3541         format micro6afbresult best12. ;
3542         format micro6site best12. ;
3543         format micro6result best12. ;
3544         format micro6multi best12. ;
3545         format micro6resultmulti $1. ;
3546         format micro7afb best12. ;
3547         format micro7afbresult best12. ;
3548         format micro7site best12. ;
3549         format micro7result best12. ;
3550         format micro7multi best12. ;
3551         format micro7resultmulti $1. ;
3552         format micro8afb best12. ;
3553         format micro8afbresult best12. ;
3554         format micro8site best12. ;
3555         format micro8result best12. ;
3556         format micro8multi best12. ;
3557         format micro8resultmulti $1. ;
3558         format micro9afb best12. ;
3559         format micro9afbresult best12. ;
3560         format micro9site best12. ;
3561         format micro9result best12. ;
3562         format micro9multi best12. ;
3563         format micro9resultmulti $1. ;
3564         format micro10afb best12. ;
3565         format micro10afbresult best12. ;
3566         format micro10site best12. ;
3567         format micro10result best12. ;
3568         format micro10multi best12. ;
3569         format micro10resultmulti $1. ;
3570         format micro11afb best12. ;
3571         format micro11afbresult best12. ;
3572         format micro11site best12. ;
3573         format micro11result best12. ;
3574         format micro11multi best12. ;
3575         format micro11resultmulti $1. ;
3576         format micro12afb best12. ;
3577         format micro12afbresult best12. ;
3578         format micro12site best12. ;
3579         format micro12result best12. ;
3580         format micro12multi best12. ;
3581         format micro12resultmulti $1. ;
3582         format micro13afb best12. ;
3583         format micro13afbresult best12. ;
3584         format micro13site best12. ;
3585         format micro13result best12. ;
3586         format micro13multi best12. ;
3587         format micro13resultmulti $1. ;
3588         format micro14afb best12. ;
3589         format micro14afbresult best12. ;
3590         format micro14site best12. ;
3591         format micro14result best12. ;
3592         format micro14multi best12. ;
3593         format micro14resultmulti $1. ;
3594         format micro15afb best12. ;
3595         format micro15afbresult best12. ;
3596         format micro15site best12. ;
3597         format micro15result best12. ;
3598         format micro15multi best12. ;
3599         format micro15resultmulti $1. ;
3600         format micro16afb best12. ;
3601         format micro16afbresult best12. ;
3602         format micro16site best12. ;
3603         format micro16result best12. ;
3604         format micro16multi best12. ;
3605         format micro16resultmulti $1. ;
3606         format micro17afb $1. ;
3607         format micro17afbresult $1. ;
3608         format micro17site $1. ;
3609         format micro17result $1. ;
3610         format micro17multi $1. ;
3611         format micro17resultmulti $1. ;
3612         format micro18afb $1. ;
3613         format micro18afbresult $1. ;
3614         format micro18site $1. ;
3615         format micro18result $1. ;
3616         format micro18multi $1. ;
3617         format micro18resultmulti $1. ;
3618         format micro19afb $1. ;
3619         format micro19afbresult $1. ;
3620         format micro19site $1. ;
3621         format micro19result $1. ;
3622         format micro19multi $1. ;
3623         format micro19resultmulti $1. ;
3624         format micro20afb $1. ;
3625         format micro20afbresult $1. ;
3626         format micro20site $1. ;
3627         format micro20result $1. ;
3628         format micro20multi $1. ;
3629         format micro20resultmulti $1. ;
3630         format microbiology_complete best12. ;
3631         format nevertreat best12. ;
3632         format enrolltreat best12. ;
3633         format firstntmreg best12. ;
3634         format treatstartfreq best12. ;
3635         format treatstartdate mmddyy10. ;
3636         format clintrial best12. ;
3637         format clintriallist___1 best12. ;
3638         format clintriallist___2 best12. ;
3639         format clintriallist___3 best12. ;
3640         format clintriallist___4 best12. ;
3641         format clintriallist___5 best12. ;
3642         format clintriallist___6 best12. ;
3643         format clintriallist___7 best12. ;
3644         format ins112startdate $1. ;
3645         format ins212startdate $1. ;
3646         format ins312startdate $1. ;
3647         format insiirstartdate $1. ;
3648         format clofazstartdate $1. ;
3649         format mac2v3startdate $1. ;
3650         format othtrialstartdate $1. ;
3651         format drug1 best12. ;
3652         format drug1route best12. ;
3653         format drug1dose best12. ;
3654         format drug1unit best12. ;
3655         format drug1dosechange best12. ;
3656         format drug1dosereason best12. ;
3657         format drug1dosedate mmddyy10. ;
3658         format drug1newdose best12. ;
3659         format drug1newunit best12. ;
3660         format drug1frequency best12. ;
3661         format drug1freqchange best12. ;
3662         format drug1freqreason best12. ;
3663         format drug1freqdate mmddyy10. ;
3664         format drug1newfreq best12. ;
3665         format drug1reason best12. ;
3666         format drug2 best12. ;
3667         format drug2route best12. ;
3668         format drug2dose best12. ;
3669         format drug2unit best12. ;
3670         format drug2dosechange best12. ;
3671         format drug2dosereason best12. ;
3672         format drug2dosedate mmddyy10. ;
3673         format drug2newdose best12. ;
3674         format drug2newunit best12. ;
3675         format drug2frequency best12. ;
3676         format drug2freqchange best12. ;
3677         format drug2freqreason best12. ;
3678         format drug2freqdate mmddyy10. ;
3679         format drug2newfreq best12. ;
3680         format drug2reason best12. ;
3681         format drug3 best12. ;
3682         format drug3route best12. ;
3683         format drug3dose best12. ;
3684         format drug3unit best12. ;
3685         format drug3dosechange best12. ;
3686         format drug3dosereason $1. ;
3687         format drug3dosedate $1. ;
3688         format drug3newdose $1. ;
3689         format drug3newunit $1. ;
3690         format drug3frequency best12. ;
3691         format drug3freqchange best12. ;
3692         format drug3freqreason $1. ;
3693         format drug3freqdate $1. ;
3694         format drug3newfreq $1. ;
3695         format drug3reason best12. ;
3696         format drug4 best12. ;
3697         format drug4route best12. ;
3698         format drug4dose best12. ;
3699         format drug4unit best12. ;
3700         format drug4dosechange best12. ;
3701         format drug4dosereason $1. ;
3702         format drug4dosedate $1. ;
3703         format drug4newdose $1. ;
3704         format drug4newunit $1. ;
3705         format drug4frequency best12. ;
3706         format drug4freqchange best12. ;
3707         format drug4freqreason best12. ;
3708         format drug4freqdate mmddyy10. ;
3709         format drug4newfreq best12. ;
3710         format drug4reason best12. ;
3711         format drug5 best12. ;
3712         format drug5route best12. ;
3713         format drug5dose best12. ;
3714         format drug5unit best12. ;
3715         format drug5dosechange best12. ;
3716         format drug5dosereason $1. ;
3717         format drug5dosedate $1. ;
3718         format drug5newdose $1. ;
3719         format drug5newunit $1. ;
3720         format drug5frequency best12. ;
3721         format drug5freqchange best12. ;
3722         format drug5freqreason best12. ;
3723         format drug5freqdate mmddyy10. ;
3724         format drug5newfreq best12. ;
3725         format drug5reason best12. ;
3726         format drug6 best12. ;
3727         format drug6route best12. ;
3728         format drug6dose best12. ;
3729         format drug6unit best12. ;
3730         format drug6dosechange best12. ;
3731         format drug6dosereason best12. ;
3732         format drug6dosedate mmddyy10. ;
3733         format drug6newdose best12. ;
3734         format drug6newunit best12. ;
3735         format drug6frequency best12. ;
3736         format drug6freqchange best12. ;
3737         format drug6freqreason best12. ;
3738         format drug6freqdate mmddyy10. ;
3739         format drug6newfreq best12. ;
3740         format drug6reason best12. ;
3741         format drug7 best12. ;
3742         format drug7route best12. ;
3743         format drug7dose best12. ;
3744         format drug7unit best12. ;
3745         format drug7dosechange best12. ;
3746         format drug7dosereason $1. ;
3747         format drug7dosedate $1. ;
3748         format drug7newdose $1. ;
3749         format drug7newunit $1. ;
3750         format drug7frequency best12. ;
3751         format drug7freqchange best12. ;
3752         format drug7freqreason $1. ;
3753         format drug7freqdate $1. ;
3754         format drug7newfreq $1. ;
3755         format drug7reason best12. ;
3756         format drug8 best12. ;
3757         format drug8route best12. ;
3758         format drug8dose best12. ;
3759         format drug8unit best12. ;
3760         format drug8dosechange best12. ;
3761         format drug8dosereason $1. ;
3762         format drug8dosedate $1. ;
3763         format drug8newdose $1. ;
3764         format drug8newunit $1. ;
3765         format drug8frequency best12. ;
3766         format drug8freqchange best12. ;
3767         format drug8freqreason $1. ;
3768         format drug8freqdate $1. ;
3769         format drug8newfreq $1. ;
3770         format drug8reason best12. ;
3771         format drug9 best12. ;
3772         format drug9route best12. ;
3773         format drug9dose best12. ;
3774         format drug9unit best12. ;
3775         format drug9dosechange best12. ;
3776         format drug9dosereason $1. ;
3777         format drug9dosedate $1. ;
3778         format drug9newdose $1. ;
3779         format drug9newunit $1. ;
3780         format drug9frequency best12. ;
3781         format drug9freqchange best12. ;
3782         format drug9freqreason $1. ;
3783         format drug9freqdate $1. ;
3784         format drug9newfreq $1. ;
3785         format drug9reason best12. ;
3786         format drug10 best12. ;
3787         format drug10route best12. ;
3788         format drug10dose best12. ;
3789         format drug10unit best12. ;
3790         format drug10dosechange best12. ;
3791         format drug10dosereason $1. ;
3792         format drug10dosedate $1. ;
3793         format drug10newdose $1. ;
3794         format drug10newunit $1. ;
3795         format drug10frequency best12. ;
3796         format drug10freqchange best12. ;
3797         format drug10freqreason $1. ;
3798         format drug10freqdate $1. ;
3799         format drug10newfreq $1. ;
3800         format drug10reason best12. ;
3801         format drug11 best12. ;
3802         format drug11route best12. ;
3803         format drug11dose best12. ;
3804         format drug11unit best12. ;
3805         format drug11dosechange $1. ;
3806         format drug11dosereason $1. ;
3807         format drug11dosedate $1. ;
3808         format drug11newdose $1. ;
3809         format drug11newunit $1. ;
3810         format drug11frequency best12. ;
3811         format drug11freqchange $1. ;
3812         format drug11freqreason $1. ;
3813         format drug11freqdate $1. ;
3814         format drug11newfreq $1. ;
3815         format drug11reason best12. ;
3816         format drug12 $1. ;
3817         format drug12route $1. ;
3818         format drug12dose $1. ;
3819         format drug12unit $1. ;
3820         format drug12dosechange $1. ;
3821         format drug12dosereason $1. ;
3822         format drug12dosedate $1. ;
3823         format drug12newdose $1. ;
3824         format drug12newunit $1. ;
3825         format drug12frequency $1. ;
3826         format drug12freqchange $1. ;
3827         format drug12freqreason $1. ;
3828         format drug12freqdate $1. ;
3829         format drug12newfreq $1. ;
3830         format drug12reason $1. ;
3831         format drug13 $1. ;
3832         format drug13route $1. ;
3833         format drug13dose $1. ;
3834         format drug13unit $1. ;
3835         format drug13dosechange $1. ;
3836         format drug13dosereason $1. ;
3837         format drug13dosedate $1. ;
3838         format drug13newdose $1. ;
3839         format drug13newunit $1. ;
3840         format drug13frequency $1. ;
3841         format drug13freqchange $1. ;
3842         format drug13freqreason $1. ;
3843         format drug13freqdate $1. ;
3844         format drug13newfreq $1. ;
3845         format drug13reason $1. ;
3846         format drug14 $1. ;
3847         format drug14route $1. ;
3848         format drug14dose $1. ;
3849         format drug14unit $1. ;
3850         format drug14dosechange $1. ;
3851         format drug14dosereason $1. ;
3852         format drug14dosedate $1. ;
3853         format drug14newdose $1. ;
3854         format drug14newunit $1. ;
3855         format drug14frequency $1. ;
3856         format drug14freqchange $1. ;
3857         format drug14freqreason $1. ;
3858         format drug14freqdate $1. ;
3859         format drug14newfreq $1. ;
3860         format drug14reason $1. ;
3861         format drug15 $1. ;
3862         format drug15route $1. ;
3863         format drug15dose $1. ;
3864         format drug15unit $1. ;
3865         format drug15dosechange $1. ;
3866         format drug15dosereason $1. ;
3867         format drug15dosedate $1. ;
3868         format drug15newdose $1. ;
3869         format drug15newunit $1. ;
3870         format drug15frequency $1. ;
3871         format drug15freqchange $1. ;
3872         format drug15freqreason $1. ;
3873         format drug15freqdate $1. ;
3874         format drug15newfreq $1. ;
3875         format drug15reason $1. ;
3876         format drug1otherroute $1. ;
3877         format drug1otherdose $1. ;
3878         format drug1otherunit $1. ;
3879         format drug1otherdosechange $1. ;
3880         format drug1otherdosedate $1. ;
3881         format drug1otherdosereason $1. ;
3882         format drug1othernewdose $1. ;
3883         format drug1othernewunit $1. ;
3884         format drug1otherfrequency $1. ;
3885         format drug1otherfreqchange $1. ;
3886         format drug1otherfreqreason $1. ;
3887         format drug1otherfreqdate $1. ;
3888         format drug1othernewfreq $1. ;
3889         format drug1otherreason $1. ;
3890         format drug2otherroute $1. ;
3891         format drug2otherdose $1. ;
3892         format drug2otherunit $1. ;
3893         format drug2otherdosechange $1. ;
3894         format drug2otherdosereason $1. ;
3895         format drug2otherdosedate $1. ;
3896         format drug2othernewdose $1. ;
3897         format drug2othernewunit $1. ;
3898         format drug2otherfrequency $1. ;
3899         format drug2otherfreqchange $1. ;
3900         format drug2otherfreqreason $1. ;
3901         format drug2otherfreqdate $1. ;
3902         format drug2othernewfreq $1. ;
3903         format drug2otherreason $1. ;
3904         format drug3otherroute $1. ;
3905         format drug3otherdose $1. ;
3906         format drug3otherunit $1. ;
3907         format drug3otherdosechange $1. ;
3908         format drug3otherdosereason $1. ;
3909         format drug3otherdosedate $1. ;
3910         format drug3othernewdose $1. ;
3911         format drug3othernewunit $1. ;
3912         format drug3otherfrequency $1. ;
3913         format drug3otherfreqchange $1. ;
3914         format drug3otherfreqreason $1. ;
3915         format drug3otherfreqdate $1. ;
3916         format drug3othernewfreq $1. ;
3917         format drug3otherreason $1. ;
3918         format aeskin $1. ;
3919         format aerash best12. ;
3920         format aepruritis best12. ;
3921         format aenausea best12. ;
3922         format aeappetite $1. ;
3923         format aemetallic best12. ;
3924         format aehearing best12. ;
3925         format aetinnitus $1. ;
3926         format aebalance $1. ;
3927         format aevision best12. ;
3928         format aediarrhea best12. ;
3929         format aeopticneuritis $1. ;
3930         format aekidney $1. ;
3931         format aeanemia $1. ;
3932         format aeliver $1. ;
3933         format aeairway $1. ;
3934         format aeneuropathy $1. ;
3935         format aecells $1. ;
3936         format aethrombocytopenia $1. ;
3937         format aetransaminitis $1. ;
3938         format aeneutropenia $1. ;
3939         format aeleukopenia $1. ;
3940         format aeother best12. ;
3941         format aeskindrug1 $1. ;
3942         format aeskindrug2 $1. ;
3943         format aeskindrug3 $1. ;
3944         format aeskindrug4 $1. ;
3945         format aeskindrug5 $1. ;
3946         format aerashdrug1 best12. ;
3947         format aerashdrug2 $1. ;
3948         format aerashdrug3 $1. ;
3949         format aerashdrug4 $1. ;
3950         format aerashdrug5 $1. ;
3951         format aepruritisdrug1 best12. ;
3952         format aepruritisdrug2 best12. ;
3953         format aepruritisdrug3 $1. ;
3954         format aepruritisdrug4 $1. ;
3955         format aepruritisdrug5 $1. ;
3956         format aenauseadrug1 best12. ;
3957         format aenauseadrug2 best12. ;
3958         format aenauseadrug3 $1. ;
3959         format aenauseadrug4 $1. ;
3960         format aenauseadrug5 $1. ;
3961         format aeappetitedrug1 $1. ;
3962         format aeappetitedrug2 $1. ;
3963         format aeappetitedrug3 $1. ;
3964         format aeappetitedrug4 $1. ;
3965         format aeappetitedrug5 $1. ;
3966         format aemetallicdrug1 best12. ;
3967         format aemetallicdrug2 $1. ;
3968         format aemetallicdrug3 $1. ;
3969         format aemetallicdrug4 $1. ;
3970         format aemetallicdrug5 $1. ;
3971         format aehearingdrug1 best12. ;
3972         format aehearingdrug2 best12. ;
3973         format aehearingdrug3 $1. ;
3974         format aehearingdrug4 $1. ;
3975         format aehearingdrug5 $1. ;
3976         format aetinnitusdrug1 $1. ;
3977         format aetinnitusdrug2 $1. ;
3978         format aetinnitusdrug3 $1. ;
3979         format aetinnitusdrug4 $1. ;
3980         format aetinnitusdrug5 $1. ;
3981         format aebalancedrug1 $1. ;
3982         format aebalancedrug2 $1. ;
3983         format aebalancedrug3 $1. ;
3984         format aebalancedrug4 $1. ;
3985         format aebalancedrug5 $1. ;
3986         format aevisiondrug1 best12. ;
3987         format aevisiondrug2 $1. ;
3988         format aevisiondrug3 $1. ;
3989         format aevisiondrug4 $1. ;
3990         format aevisiondrug5 $1. ;
3991         format aekidneydrug1 $1. ;
3992         format aekidneydrug2 $1. ;
3993         format aekidneydrug3 $1. ;
3994         format aekidneydrug4 $1. ;
3995         format aekidneydrug5 $1. ;
3996         format aediarrheadrug1 best12. ;
3997         format aediarrheadrug2 best12. ;
3998         format aediarrheadrug3 $1. ;
3999         format aediarrheadrug4 $1. ;
4000         format aediarrheadrug5 $1. ;
4001         format aeopticneuritisdrug1 $1. ;
4002         format aeopticneuritisdrug2 $1. ;
4003         format aeopticneuritisdrug3 $1. ;
4004         format aeopticneuritisdrug4 $1. ;
4005         format aeopticneuritisdrug5 $1. ;
4006         format aeanemiadrug1 $1. ;
4007         format aeanemiadrug2 $1. ;
4008         format aeanemiadrug3 $1. ;
4009         format aeanemiadrug4 $1. ;
4010         format aeanemiadrug5 $1. ;
4011         format aeliverdrug1 $1. ;
4012         format aeliverdrug2 $1. ;
4013         format aeliverdrug3 $1. ;
4014         format aeliverdrug4 $1. ;
4015         format aeliverdrug5 $1. ;
4016         format aeairwaydrug1 $1. ;
4017         format aeairwaydrug2 $1. ;
4018         format aeairwaydrug3 $1. ;
4019         format aeairwaydrug4 $1. ;
4020         format aeairwaydrug5 $1. ;
4021         format aeneuropathydrug1 $1. ;
4022         format aeneuropathydrug2 $1. ;
4023         format aeneuropathydrug3 $1. ;
4024         format aeneuropathydrug4 $1. ;
4025         format aeneuropathydrug5 $1. ;
4026         format aecellsdrug1 $1. ;
4027         format aecellsdrug2 $1. ;
4028         format aecellsdrug3 $1. ;
4029         format aecellsdrug4 $1. ;
4030         format aecellsdrug5 $1. ;
4031         format aethrombocytopeniadrug1 $1. ;
4032         format aethrombocytopeniadrug2 $1. ;
4033         format aethrombocytopeniadrug3 $1. ;
4034         format aethrombocytopeniadrug4 $1. ;
4035         format aethrombocytopeniadrug5 $1. ;
4036         format aetransaminitisdrug1 $1. ;
4037         format aetransaminitisdrug2 $1. ;
4038         format aetransaminitisdrug3 $1. ;
4039         format aetransaminitisdrug4 $1. ;
4040         format aetransaminitisdrug5 $1. ;
4041         format aeneutropeniadrug1 $1. ;
4042         format aeneutropeniadrug2 $1. ;
4043         format aeneutropeniadrug3 $1. ;
4044         format aeneutropeniadrug4 $1. ;
4045         format aeneutropeniadrug5 $1. ;
4046         format aeleukopeniadrug1 $1. ;
4047         format aeleukopeniadrug2 $1. ;
4048         format aeleukopeniadrug3 $1. ;
4049         format aeleukopeniadrug4 $1. ;
4050         format aeleukopeniadrug5 $1. ;
4051         format aeotherdrug1 best12. ;
4052         format aeotherdrug2 $1. ;
4053         format aeotherdrug3 $1. ;
4054         format aeotherdrug4 $1. ;
4055         format aeotherdrug5 $1. ;
4056         format antimycobacterial_therapy_comple best12. ;
4057         format fvcraw1 best12. ;
4058         format fvcdate1 best12. ;
4059         format fev1raw1 best12. ;
4060         format fev1date1 best12. ;
4061         format ratiodate1 best12. ;
4062         format fvcdate2 best12. ;
4063         format fev1date2 best12. ;
4064         format ratiodate2 best12. ;
4065         format fvcdate3 best12. ;
4066         format fev1date3 best12. ;
4067         format ratiodate3 best12. ;
4068         format fvcdate4 best12. ;
4069         format fev1date4 best12. ;
4070         format ratiodate4 best12. ;
4071         format fvcdate5 $1. ;
4072         format fev1date5 best12. ;
4073         format ratiodate5 $1. ;
4074         format fvcdate6 $1. ;
4075         format fev1date6 best12. ;
4076         format ratiodate6 $1. ;
4077         format fvcdate7 $1. ;
4078         format fev1date7 best12. ;
4079         format ratiodate7 $1. ;
4080         format fvcdate8 best12. ;
4081         format fev1date8 best12. ;
4082         format ratiodate8 best12. ;
4083         format fvcdate9 $1. ;
4084         format fev1date9 $1. ;
4085         format ratiodate9 $1. ;
4086         format fvcdate10 $1. ;
4087         format fev1date10 $1. ;
4088         format ratiodate10 $1. ;
4089         format fvcdate11 $1. ;
4090         format fev1date11 $1. ;
4091         format ratiodate11 $1. ;
4092         format fvcdate12 $1. ;
4093         format fev1date12 $1. ;
4094         format ratiodate12 $1. ;
4095         format fvcdate13 $1. ;
4096         format fev1date13 $1. ;
4097         format ratiodate13 $1. ;
4098         format fvcdate14 $1. ;
4099         format fev1date14 $1. ;
4100         format ratiodate14 $1. ;
4101         format fvcdate15 $1. ;
4102         format fev1date15 $1. ;
4103         format ratiodate15 $1. ;
4104         format fvcdate16 $1. ;
4105         format fev1date16 $1. ;
4106         format ratiodate16 $1. ;
4107         format fvcdate17 $1. ;
4108         format fev1date17 $1. ;
4109         format ratiodate17 $1. ;
4110         format fvcdate18 $1. ;
4111         format fev1date18 $1. ;
4112         format ratiodate18 $1. ;
4113         format fvcdate19 $1. ;
4114         format fev1date19 $1. ;
4115         format ratiodate19 $1. ;
4116         format fvcdate20 $1. ;
4117         format fev1date20 $1. ;
4118         format ratiodate20 $1. ;
4119         format pft_complete best12. ;
4120         format qolbdate $1. ;
4121         format qolb_db_sc mmddyy10. ;
4122         format qolb_gndr_sc best12. ;
4123         format qolb_vaca_sc best12. ;
4124         format qolb_marital_sc best12. ;
4125         format qolb_racial_sc best12. ;
4126         format qolb_edu_sc best12. ;
4127         format qolb_work_sc best12. ;
4128         format qolb_vig_sc best12. ;
4129         format qolb_walk_sc best12. ;
4130         format qolb_carry_sc best12. ;
4131         format qolb_stair_sc best12. ;
4132         format qolb_well_sc best12. ;
4133         format qolb_tired_sc best12. ;
4134         format qolb_anx_sc best12. ;
4135         format qolb_energ_sc best12. ;
4136         format qolb_exhaust_sc best12. ;
4137         format qolb_sad_sc best12. ;
4138         format qolb_depr_sc best12. ;
4139         format qolb_treat_sc best12. ;
4140         format qolb_makediff_sc best12. ;
4141         format qolb_eachday_sc best12. ;
4142         format qolb_fittreat_sc best12. ;
4143         format qolb_nowhealth_sc best12. ;
4144         format qolb_limvig_sc best12. ;
4145         format qolb_stayhome_sc best12. ;
4146         format qolb_expossick_sc best12. ;
4147         format qolb_imt_sc best12. ;
4148         format qolb_normlife_sc best12. ;
4149         format qolb_worseheal_sc best12. ;
4150         format qolb_bothoth_sc best12. ;
4151         format qolb_lone_sc best12. ;
4152         format qolb_health_sc best12. ;
4153         format qolb_futplan_sc best12. ;
4154         format qolb_embarcough_sc best12. ;
4155         format qolb_keepup_sc best12. ;
4156         format qolb_getinway_sc best12. ;
4157         format qolb_heartcong_sc best12. ;
4158         format qolb_coughday_sc best12. ;
4159         format qolb_coughmuc_sc best12. ;
4160         format qolb_sputcol_sc best12. ;
4161         format qolb_shortbreath_sc best12. ;
4162         format qolb_wheez_sc best12. ;
4163         format qolb_chestp_sc best12. ;
4164         format qolb_shortbreathtalk_sc best12. ;
4165         format qolb_midnight_sc best12. ;
4166         format qolb_scr_pfd best12. ;
4167         format qolb_scr_rfd best12. ;
4168         format qolb_scr_vd best12. ;
4169         format qolb_scr_efd best12. ;
4170         format qolb_scr_sfd best12. ;
4171         format qolb_scr_tbd best12. ;
4172         format qolb_scr_hpd best12. ;
4173         format qolb_scr_rsd best12. ;
4174         format quality_of_life_bronchiectasis_q best12. ;
4175         format qolsideeffects best12. ;
4176         format qoleating best12. ;
4177         format qolhealtheat best12. ;
4178         format qolhealththin best12. ;
4179         format qolhealthdiff best12. ;
4180         format qolhealthapp best12. ;
4181         format qolhealthheavy best12. ;
4182         format qolhealthfreq best12. ;
4183         format qolfeeleat best12. ;
4184         format qolfeelwt best12. ;
4185         format qolfeelfev best12. ;
4186         format qolfeelsleep best12. ;
4187         format qolfeelpain best12. ;
4188         format qolfeelcold best12. ;
4189         format qolfeelsmell best12. ;
4190         format qolfeeltaste best12. ;
4191         format qolfeelmouth best12. ;
4192         format qolfeelmem best12. ;
4193         format qoloftenconst best12. ;
4194         format qoloftenrefl best12. ;
4195         format qoloftenbloat best12. ;
4196         format qoloftengas best12. ;
4197         format qoloftendia best12. ;
4198         format qoloftenabd best12. ;
4199         format quality_of_life_bronchiectasis_n best12. ;
4200         format sgrq_current_health best12. ;
4201         format sgrq1 best12. ;
4202         format sgrq2 best12. ;
4203         format sgrq3 best12. ;
4204         format sgrq4 best12. ;
4205         format sgrq5 best12. ;
4206         format sgrq6 best12. ;
4207         format sgrq7 best12. ;
4208         format sgrq8 best12. ;
4209         format sgrqimport best12. ;
4210         format sgrqjob best12. ;
4211         format sgrqsobsit best12. ;
4212         format sgrqsobdress best12. ;
4213         format sgrqsobhouse best12. ;
4214         format sgrqsoblevel best12. ;
4215         format sgrqsobstair best12. ;
4216         format sgrqsobhill best12. ;
4217         format sgrqsobsport best12. ;
4218         format sgrqcoughhurt best12. ;
4219         format sgrqcoughtire best12. ;
4220         format sgrqcoughtalk best12. ;
4221         format sgrqcoughbend best12. ;
4222         format sgrqcoughsleep best12. ;
4223         format sgrqcoughvtire best12. ;
4224         format sgrqrespemb best12. ;
4225         format sgrqrespnuis best12. ;
4226         format sgrqresppanic best12. ;
4227         format sgrqrespcont best12. ;
4228         format sgrqrespnobet best12. ;
4229         format sgrqrespfrail best12. ;
4230         format sgrqrespexc best12. ;
4231         format sgrqrespeff best12. ;
4232         format sgrqtxhelp best12. ;
4233         format sgrqtxmed best12. ;
4234         format sgrqtxside best12. ;
4235         format sgrqtxlife best12. ;
4236         format sgrqactdress best12. ;
4237         format sgrqactbath best12. ;
4238         format sgrqactslow best12. ;
4239         format sgrqactchore best12. ;
4240         format sgrqactstair best12. ;
4241         format sgrqactwalk best12. ;
4242         format sgrqactlight best12. ;
4243         format sgrqactheavy best12. ;
4244         format sgrqactvheav best12. ;
4245         format sgrqdaysport best12. ;
4246         format sgrqdayent best12. ;
4247         format sgrqdayshop best12. ;
4248         format sgrqdaychore best12. ;
4249         format sgrqdaymove best12. ;
4250         format sgrqaffect best12. ;
4251         format st_georges_respiratory_questionn best12. ;
4252         format phqdate $1. ;
4253         format phq_1 best12. ;
4254         format phq_2 best12. ;
4255         format phq_3 best12. ;
4256         format phq_4 best12. ;
4257         format phq_5 best12. ;
4258         format phq_6 best12. ;
4259         format phq_7 best12. ;
4260         format phq_8 best12. ;
4261         format phq_total best12. ;
4262         format phq_extra best12. ;
4263         format phq8_complete best12. ;
4264         format gaddate $1. ;
4265         format gad_1 best12. ;
4266         format gad_2 best12. ;
4267         format gad_3 best12. ;
4268         format gad_4 best12. ;
4269         format gad_5 best12. ;
4270         format gad_6 best12. ;
4271         format gad_7 best12. ;
4272         format gad_total best12. ;
4273         format gad7_complete best12. ;
4274         format fu_status best12. ;
4275         format reviewdate_fu mmddyy10. ;
4276         format blooddrawdate_v2 mmddyy10. ;
4277         format alive_fu best12. ;
4278         format smoke_fu best12. ;
4279         format vitd_fu best12. ;
4280         format vitdlevel1_fu best12. ;
4281         format vitdlevel2_fu best12. ;
4282         format weight_yr1 best12. ;
4283         format weightmeas_yr1 best12. ;
4284         format weight_yr2 best12. ;
4285         format weightmeas_yr2 best12. ;
4286         format demographics_followup_complete best12. ;
4287         format ntm_fu best12. ;
4288         format ntmsymptom_fu best12. ;
4289         format ntmradiography_fu $1. ;
4290         format ntmmicro_fu best12. ;
4291         format ntmdiagnoses_fu $1. ;
4292         format ntmother_fu $1. ;
4293         format overallntm_fu best12. ;
4294         format radiotreat_fu best12. ;
4295         format sxtreat_fu best12. ;
4296         format inittreat best12. ;
4297         format reviewstatus_fu best12. ;
4298         format update_ntm_status_complete best12. ;
4299         format surg_fu best12. ;
4300         format surgdate_fu $1. ;
4301         format treatafter best12. ;
4302         format treat_fu best12. ;
4303         format treatats_fu best12. ;
4304         format treatstop_fu___1 best12. ;
4305         format treatstop_fu___2 best12. ;
4306         format treatstop_fu___3 best12. ;
4307         format treatstop_fu___4 best12. ;
4308         format clintrial_fu best12. ;
4309         format clintriallist_fu___1 best12. ;
4310         format clintriallist_fu___2 best12. ;
4311         format clintriallist_fu___3 best12. ;
4312         format clintriallist_fu___4 best12. ;
4313         format clintriallist_fu___5 best12. ;
4314         format clintriallist_fu___6 best12. ;
4315         format clintriallist_fu___7 best12. ;
4316         format ins112startdate_fu $1. ;
4317         format ins212startdate_fu $1. ;
4318         format ins312startdate_fu $1. ;
4319         format insiirstartdate_fu $1. ;
4320         format clofazstartdate_fu $1. ;
4321         format mac2v3startdate_fu $1. ;
4322         format othtrialstartdate_fu $1. ;
4323         format drug16 best12. ;
4324         format drugroute16 best12. ;
4325         format drugdose16 best12. ;
4326         format drugunit16 best12. ;
4327         format drugdosechange16 best12. ;
4328         format drugdosereason16 best12. ;
4329         format drugdosedate16 mmddyy10. ;
4330         format drugnewdose16 best12. ;
4331         format drugnewunit16 best12. ;
4332         format drugfrequency16 best12. ;
4333         format drugfreqchange16 best12. ;
4334         format drugfreqreason16 best12. ;
4335         format drugfreqdate16 mmddyy10. ;
4336         format drugnewfreq16 best12. ;
4337         format drugreason16 best12. ;
4338         format drug17 best12. ;
4339         format drugstart17 best12. ;
4340         format drugdose17 best12. ;
4341         format drugunit17 best12. ;
4342         format drugdosechange17 best12. ;
4343         format drugdosereason17 $1. ;
4344         format drugdosedate17 $1. ;
4345         format drugnewdose17 $1. ;
4346         format drugnewunit17 $1. ;
4347         format drugfrequency17 best12. ;
4348         format drugfreqchange17 best12. ;
4349         format drugfreqreason17 best12. ;
4350         format drugfreqdate17 mmddyy10. ;
4351         format drugnewfreq17 best12. ;
4352         format drugreason17 best12. ;
4353         format drug18 best12. ;
4354         format drugroute18 best12. ;
4355         format drugdose18 best12. ;
4356         format drugunit18 best12. ;
4357         format drugdosechange18 best12. ;
4358         format drugdosereason18 best12. ;
4359         format drugdosedate18 mmddyy10. ;
4360         format drugnewdose18 best12. ;
4361         format drugnewunit18 best12. ;
4362         format drugfrequency18 best12. ;
4363         format drugfreqchange18 best12. ;
4364         format drugfreqreason18 $1. ;
4365         format drugfreqdate18 mmddyy10. ;
4366         format drugnewfreq18 best12. ;
4367         format drugreason18 best12. ;
4368         format drug19 best12. ;
4369         format drugroute19 best12. ;
4370         format drugdose19 best12. ;
4371         format drugunit19 best12. ;
4372         format drugdosechange19 best12. ;
4373         format drugdosereason19 $1. ;
4374         format drugdosedate19 $1. ;
4375         format drugnewdose19 $1. ;
4376         format drugnewunit19 $1. ;
4377         format drugfrequency19 best12. ;
4378         format drugfreqchange19 best12. ;
4379         format drugfreqreason19 best12. ;
4380         format drugfreqdate19 mmddyy10. ;
4381         format drugnewfreq19 best12. ;
4382         format drugreason19 best12. ;
4383         format drug20 best12. ;
4384         format drugroute20 best12. ;
4385         format drugdose20 best12. ;
4386         format drugunit20 best12. ;
4387         format drugdosechange20 best12. ;
4388         format drugdosereason20 $1. ;
4389         format drugdosedate20 $1. ;
4390         format drugnewdose20 $1. ;
4391         format drugnewunit20 $1. ;
4392         format drugfrequency20 best12. ;
4393         format drugfreqchange20 best12. ;
4394         format drugfreqreason20 $1. ;
4395         format drugfreqdate20 $1. ;
4396         format drugnewfreq20 $1. ;
4397         format drugreason20 best12. ;
4398         format drug21 best12. ;
4399         format drugroute21 best12. ;
4400         format drugdose21 best12. ;
4401         format drugunit21 best12. ;
4402         format drugdosechange21 best12. ;
4403         format drugdosereason21 $1. ;
4404         format drugdosedate21 $1. ;
4405         format drugnewdose21 $1. ;
4406         format drugnewunit21 $1. ;
4407         format drugfrequency21 best12. ;
4408         format drugfreqchange21 best12. ;
4409         format drugfreqreason21 best12. ;
4410         format drugfreqdate21 mmddyy10. ;
4411         format drugnewfreq21 best12. ;
4412         format drugreason21 $1. ;
4413         format drug22 best12. ;
4414         format drugroute22 best12. ;
4415         format drugdose22 best12. ;
4416         format drugunit22 best12. ;
4417         format drugdosechange22 best12. ;
4418         format drugdosereason22 $1. ;
4419         format drugdosedate22 $1. ;
4420         format drugnewdose22 $1. ;
4421         format drugnewunit22 $1. ;
4422         format drugfrequency22 best12. ;
4423         format drugfreqchange22 best12. ;
4424         format drugfreqreason22 $1. ;
4425         format drugfreqdate22 $1. ;
4426         format drugnewfreq22 $1. ;
4427         format drugreason22 best12. ;
4428         format drug23 best12. ;
4429         format drugroute23 best12. ;
4430         format drugdose23 best12. ;
4431         format drugunit23 best12. ;
4432         format drugdosechange23 best12. ;
4433         format drugdosereason23 $1. ;
4434         format drugdosedate23 $1. ;
4435         format drugnewdose23 $1. ;
4436         format drugnewunit23 $1. ;
4437         format drugfrequency23 best12. ;
4438         format drugfreqchange23 best12. ;
4439         format drugfreqreason23 $1. ;
4440         format drugfreqdate23 $1. ;
4441         format drugnewfreq23 $1. ;
4442         format drugreason23 best12. ;
4443         format drug24 $1. ;
4444         format drugroute24 $1. ;
4445         format drugdose24 $1. ;
4446         format drugunit24 $1. ;
4447         format drugdosechange24 $1. ;
4448         format drugdosereason24 $1. ;
4449         format drugdosedate24 $1. ;
4450         format drugnewdose24 $1. ;
4451         format drugnewunit24 $1. ;
4452         format drugfrequency24 $1. ;
4453         format drugfreqchange24 $1. ;
4454         format drugfreqreason24 $1. ;
4455         format drugfreqdate24 $1. ;
4456         format drugnewfreq24 $1. ;
4457         format drugreason24 $1. ;
4458         format drug25 $1. ;
4459         format drugroute25 $1. ;
4460         format drugdose25 $1. ;
4461         format drugunit25 $1. ;
4462         format drugdosechange25 $1. ;
4463         format drugdosereason25 $1. ;
4464         format drugdosedate25 $1. ;
4465         format drugnewdose25 $1. ;
4466         format drugnewunit25 $1. ;
4467         format drugfrequency25 $1. ;
4468         format drugfreqchange25 $1. ;
4469         format drugfreqreason25 $1. ;
4470         format drugfreqdate25 $1. ;
4471         format drugnewfreq25 $1. ;
4472         format drugreason25 $1. ;
4473         format drugotherroute4 $1. ;
4474         format drugotherdose4 $1. ;
4475         format drugotherunit4 $1. ;
4476         format drugotherdosechange4 $1. ;
4477         format drugotherdosedate4 $1. ;
4478         format drugotherdosereason4 $1. ;
4479         format drugothernewdose4 $1. ;
4480         format drugothernewunit4 $1. ;
4481         format drugotherfrequency4 $1. ;
4482         format drugotherfreqchange4 $1. ;
4483         format drugotherfreqreason4 $1. ;
4484         format drugotherfreqdate4 $1. ;
4485         format drugothernewfreq4 $1. ;
4486         format drugotherreason4 $1. ;
4487         format drugotherroute5 $1. ;
4488         format drugotherdose5 $1. ;
4489         format drugotherunit5 $1. ;
4490         format drugotherdosechange5 $1. ;
4491         format drugotherdosedate5 $1. ;
4492         format drugotherdosereason5 $1. ;
4493         format drugothernewdose5 $1. ;
4494         format drugothernewunit5 $1. ;
4495         format drugotherfrequency5 $1. ;
4496         format drugotherfreqchange5 $1. ;
4497         format drugotherfreqreason5 $1. ;
4498         format drugotherfreqdate5 $1. ;
4499         format drugothernewfreq5 $1. ;
4500         format drugotherreason5 $1. ;
4501         format drugotherroute6 $1. ;
4502         format drugotherdose6 $1. ;
4503         format drugotherunit6 $1. ;
4504         format drugotherdosechange6 $1. ;
4505         format drugotherdosedate6 $1. ;
4506         format drugotherdosereason6 $1. ;
4507         format drugothernewdose6 $1. ;
4508         format drugothernewunit6 $1. ;
4509         format drugotherfrequency6 $1. ;
4510         format drugotherfreqchange6 $1. ;
4511         format drugotherfreqreason6 $1. ;
4512         format drugotherfreqdate6 $1. ;
4513         format drugothernewfreq6 $1. ;
4514         format drugotherreason6 $1. ;
4515         format aeskin_fu $1. ;
4516         format aerash_fu best12. ;
4517         format aepruritis_fu $1. ;
4518         format aenausea_fu $1. ;
4519         format aeappetite_fu $1. ;
4520         format aemetallic_fu $1. ;
4521         format aehearing_fu $1. ;
4522         format aetinnitus_fu $1. ;
4523         format aebalance_fu $1. ;
4524         format aevision_fu $1. ;
4525         format aediarrhea_fu best12. ;
4526         format aeopticneuritis_fu $1. ;
4527         format aekidney_fu $1. ;
4528         format aeanemia_fu $1. ;
4529         format aeliver_fu $1. ;
4530         format aeairway_fu $1. ;
4531         format aeneuropathy_fu $1. ;
4532         format aecells_fu $1. ;
4533         format aethrombocytopenia_fu $1. ;
4534         format aetransaminitis_fu $1. ;
4535         format aeneutropenia_fu $1. ;
4536         format aeleukopenia_fu $1. ;
4537         format aeother_fu best12. ;
4538         format aeskindrug6 $1. ;
4539         format aeskindrug7 $1. ;
4540         format aeskindrug8 $1. ;
4541         format aeskindrug9 $1. ;
4542         format aeskindrug10 $1. ;
4543         format aerashdrug6 best12. ;
4544         format aerashdrug7 best12. ;
4545         format aerashdrug8 $1. ;
4546         format aerashdrug9 $1. ;
4547         format aerashdrug10 $1. ;
4548         format aepruritisdrug6 $1. ;
4549         format aepruritisdrug7 $1. ;
4550         format aepruritisdrug8 $1. ;
4551         format aepruritisdrug9 $1. ;
4552         format aepruritisdrug10 $1. ;
4553         format aenauseadrug6 $1. ;
4554         format aenauseadrug7 $1. ;
4555         format aenauseadrug8 $1. ;
4556         format aenauseadrug9 $1. ;
4557         format aenauseadrug10 $1. ;
4558         format aeappetitedrug6 $1. ;
4559         format aeappetitedrug7 $1. ;
4560         format aeappetitedrug8 $1. ;
4561         format aeappetitedrug9 $1. ;
4562         format aeappetitedrug10 $1. ;
4563         format aemetallicdrug6 $1. ;
4564         format aemetallicdrug7 $1. ;
4565         format aemetallicdrug8 $1. ;
4566         format aemetallicdrug9 $1. ;
4567         format aemetallicdrug10 $1. ;
4568         format aehearingdrug6 $1. ;
4569         format aehearingdrug7 $1. ;
4570         format aehearingdrug8 $1. ;
4571         format aehearingdrug9 $1. ;
4572         format aehearingdrug10 $1. ;
4573         format aetinnitusdrug6 $1. ;
4574         format aetinnitusdrug7 $1. ;
4575         format aetinnitusdrug8 $1. ;
4576         format aetinnitusdrug9 $1. ;
4577         format aetinnitusdrug10 $1. ;
4578         format aebalancedrug6 $1. ;
4579         format aebalancedrug7 $1. ;
4580         format aebalancedrug8 $1. ;
4581         format aebalancedrug9 $1. ;
4582         format aebalancedrug10 $1. ;
4583         format aevisiondrug6 $1. ;
4584         format aevisiondrug7 $1. ;
4585         format aevisiondrug8 $1. ;
4586         format aevisiondrug9 $1. ;
4587         format aevisiondrug10 $1. ;
4588         format aekidneydrug6 $1. ;
4589         format aekidneydrug7 $1. ;
4590         format aekidneydrug8 $1. ;
4591         format aekidneydrug9 $1. ;
4592         format aekidneydrug10 $1. ;
4593         format aediarrheadrug6 best12. ;
4594         format aediarrheadrug7 $1. ;
4595         format aediarrheadrug8 $1. ;
4596         format aediarrheadrug9 $1. ;
4597         format aediarrheadrug10 $1. ;
4598         format aeopticneuritisdrug6 $1. ;
4599         format aeopticneuritisdrug7 $1. ;
4600         format aeopticneuritisdrug8 $1. ;
4601         format aeopticneuritisdrug9 $1. ;
4602         format aeopticneuritisdrug10 $1. ;
4603         format aeanemiadrug6 $1. ;
4604         format aeanemiadrug7 $1. ;
4605         format aeanemiadrug8 $1. ;
4606         format aeanemiadrug9 $1. ;
4607         format aeanemiadrug10 $1. ;
4608         format aeliverdrug6 $1. ;
4609         format aeliverdrug7 $1. ;
4610         format aeliverdrug8 $1. ;
4611         format aeliverdrug9 $1. ;
4612         format aeliverdrug10 $1. ;
4613         format aeairwaydrug6 $1. ;
4614         format aeairwaydrug7 $1. ;
4615         format aeairwaydrug8 $1. ;
4616         format aeairwaydrug9 $1. ;
4617         format aeairwaydrug10 $1. ;
4618         format aeneuropathydrug6 $1. ;
4619         format aeneuropathydrug7 $1. ;
4620         format aeneuropathydrug8 $1. ;
4621         format aeneuropathydrug9 $1. ;
4622         format aeneuropathydrug10 $1. ;
4623         format aecellsdrug6 $1. ;
4624         format aecellsdrug7 $1. ;
4625         format aecellsdrug8 $1. ;
4626         format aecellsdrug9 $1. ;
4627         format aecellsdrug10 $1. ;
4628         format aethrombocytopeniadrug6 $1. ;
4629         format aethrombocytopeniadrug7 $1. ;
4630         format aethrombocytopeniadrug8 $1. ;
4631         format aethrombocytopeniadrug9 $1. ;
4632         format aethrombocytopeniadrug10 $1. ;
4633         format aetransaminitisdrug6 $1. ;
4634         format aetransaminitisdrug7 $1. ;
4635         format aetransaminitisdrug8 $1. ;
4636         format aetransaminitisdrug9 $1. ;
4637         format aetransaminitisdrug10 $1. ;
4638         format aeneutropeniadrug6 $1. ;
4639         format aeneutropeniadrug7 $1. ;
4640         format aeneutropeniadrug8 $1. ;
4641         format aeneutropeniadrug9 $1. ;
4642         format aeneutropeniadrug10 $1. ;
4643         format aeleukopeniadrug6 $1. ;
4644         format aeleukopeniadrug7 $1. ;
4645         format aeleukopeniadrug8 $1. ;
4646         format aeleukopeniadrug9 $1. ;
4647         format aeleukopeniadrug10 $1. ;
4648         format aeotherdrug6 best12. ;
4649         format aeotherdrug7 $1. ;
4650         format aeotherdrug8 $1. ;
4651         format aeotherdrug9 $1. ;
4652         format aeotherdrug10 $1. ;
4653         format ntm_therapy_followup_complete best12. ;
4654         format airclear best12. ;
4655         format airdevice___1 best12. ;
4656         format airdevice___2 best12. ;
4657         format airdevice___3 best12. ;
4658         format airdevice___4 best12. ;
4659         format airdevice___5 best12. ;
4660         format airclear_fu best12. ;
4661         format airdevice_fu___1 best12. ;
4662         format airdevice_fu___2 best12. ;
4663         format airdevice_fu___3 best12. ;
4664         format airdevice_fu___4 best12. ;
4665         format airdevice_fu___5 best12. ;
4666         format airway_clearance_complete best12. ;
4667         format micropseudomult_fu best12. ;
4668         format microafb21 best12. ;
4669         format microafbresult21 best12. ;
4670         format microsite21 best12. ;
4671         format microresult21 best12. ;
4672         format micromulti21 best12. ;
4673         format microresultmulti21 $1. ;
4674         format microafb22 best12. ;
4675         format microafbresult22 best12. ;
4676         format microsite22 best12. ;
4677         format microresult22 best12. ;
4678         format micromulti22 best12. ;
4679         format microresultmulti22 best12. ;
4680         format microafb23 best12. ;
4681         format microafbresult23 best12. ;
4682         format microsite23 best12. ;
4683         format microresult23 best12. ;
4684         format micromulti23 best12. ;
4685         format microresultmulti23 $1. ;
4686         format microafb24 best12. ;
4687         format microafbresult24 best12. ;
4688         format microsite24 best12. ;
4689         format microresult24 best12. ;
4690         format micromulti24 best12. ;
4691         format microresultmulti24 $1. ;
4692         format microafb25 best12. ;
4693         format microafbresult25 best12. ;
4694         format microsite25 best12. ;
4695         format microresult25 best12. ;
4696         format micromulti25 best12. ;
4697         format microresultmulti25 $1. ;
4698         format microafb26 best12. ;
4699         format microafbresult26 best12. ;
4700         format microsite26 best12. ;
4701         format microresult26 best12. ;
4702         format micromulti26 best12. ;
4703         format microresultmulti26 best12. ;
4704         format microafb27 best12. ;
4705         format microafbresult27 best12. ;
4706         format microsite27 best12. ;
4707         format microresult27 best12. ;
4708         format micromulti27 best12. ;
4709         format microresultmulti27 $1. ;
4710         format microafb28 best12. ;
4711         format microafbresult28 best12. ;
4712         format microsite28 best12. ;
4713         format microresult28 best12. ;
4714         format micromulti28 best12. ;
4715         format microresultmulti28 $1. ;
4716         format microafb29 best12. ;
4717         format microafbresult29 best12. ;
4718         format microsite29 best12. ;
4719         format microresult29 best12. ;
4720         format micromulti29 best12. ;
4721         format microresultmulti29 $1. ;
4722         format microafb30 best12. ;
4723         format microafbresult30 best12. ;
4724         format microsite30 best12. ;
4725         format microresult30 best12. ;
4726         format micromulti30 best12. ;
4727         format microresultmulti30 $1. ;
4728         format microbiology_followup_complete best12. ;
4729         format suscept___1 best12. ;
4730         format suscept___2 best12. ;
4731         format suscept___3 best12. ;
4732         format suscept___4 best12. ;
4733         format suscept___5 best12. ;
4734         format suscept___6 best12. ;
4735         format labsusc1 best12. ;
4736         format susceptid1 best12. ;
4737         format amimic1 best12. ;
4738         format amiltgte1 best12. ;
4739         format clarimic1 best12. ;
4740         format clariltgte1 best12. ;
4741         format clofazmic1 best12. ;
4742         format clofazltgte1 best12. ;
4743         format cipromic1 best12. ;
4744         format ciproltgte1 best12. ;
4745         format moximic1 best12. ;
4746         format moxiltgte1 best12. ;
4747         format lzdmic1 best12. ;
4748         format lzdltgte1 best12. ;
4749         format rifmic1 best12. ;
4750         format rifltgte1 best12. ;
4751         format rfbmic1 best12. ;
4752         format rfbltgte1 best12. ;
4753         format embmic1 best12. ;
4754         format embltgte1 best12. ;
4755         format rrifembmic1 best12. ;
4756         format rrifembltgte1 $1. ;
4757         format erifembmic1 best12. ;
4758         format erifembltgte1 $1. ;
4759         format tigmic1 best12. ;
4760         format tigltgte1 best12. ;
4761         format imipmic1 best12. ;
4762         format imipltgte1 best12. ;
4763         format cefomic1 best12. ;
4764         format cefoltgte1 best12. ;
4765         format doxymic1 best12. ;
4766         format doxyltgte1 best12. ;
4767         format augmmic1 $1. ;
4768         format augmltgte1 $1. ;
4769         format ttmpsulmic1 best12. ;
4770         format ttmpsulltgte1 $1. ;
4771         format stmpsulmic1 best12. ;
4772         format stmpsulltgte1 $1. ;
4773         format labsusc2 best12. ;
4774         format susceptid2 best12. ;
4775         format amimic2 best12. ;
4776         format amiltgte2 best12. ;
4777         format clarimic2 best12. ;
4778         format clariltgte2 $1. ;
4779         format clofazmic2 best12. ;
4780         format clofazltgte2 best12. ;
4781         format cipromic2 best12. ;
4782         format ciproltgte2 best12. ;
4783         format moximic2 best12. ;
4784         format moxiltgte2 best12. ;
4785         format lzdmic2 best12. ;
4786         format lzdltgte2 $1. ;
4787         format rifmic2 best12. ;
4788         format rifltgte2 best12. ;
4789         format rfbmic2 best12. ;
4790         format rfbltgte2 best12. ;
4791         format embmic2 best12. ;
4792         format embltgte2 $1. ;
4793         format rrifembmic2 best12. ;
4794         format rrifembltgte2 best12. ;
4795         format erifembmic2 best12. ;
4796         format erif best12. ;
4797         format VAR2181 $1. ;
4798         format VAR2182 $1. ;
4799         format VAR2183 $1. ;
4800         format VAR2184 $1. ;
4801         format VAR2185 $1. ;
4802         format VAR2186 $1. ;
4803         format VAR2187 $1. ;
4804         format VAR2188 $1. ;
4805         format VAR2189 $1. ;
4806         format VAR2190 $1. ;
4807         format VAR2191 $1. ;
4808         format VAR2192 $1. ;
4809         format VAR2193 $1. ;
4810         format VAR2194 $1. ;
4811         format VAR2195 $1. ;
4812         format VAR2196 $1. ;
4813         format VAR2197 $1. ;
4814         format VAR2198 $1. ;
4815         format VAR2199 $1. ;
4816         format VAR2200 $1. ;
4817         format VAR2201 $1. ;
4818         format VAR2202 $1. ;
4819         format VAR2203 $1. ;
4820         format VAR2204 $1. ;
4821         format VAR2205 $1. ;
4822         format VAR2206 $1. ;
4823         format VAR2207 $1. ;
4824         format VAR2208 $1. ;
4825         format VAR2209 $1. ;
4826         format VAR2210 $1. ;
4827         format VAR2211 $1. ;
4828         format VAR2212 $1. ;
4829         format VAR2213 $1. ;
4830         format VAR2214 $1. ;
4831         format VAR2215 $1. ;
4832         format VAR2216 $1. ;
4833         format VAR2217 $1. ;
4834         format VAR2218 $1. ;
4835         format VAR2219 $1. ;
4836         format VAR2220 $1. ;
4837         format VAR2221 $1. ;
4838         format VAR2222 $1. ;
4839         format VAR2223 $1. ;
4840         format VAR2224 $1. ;
4841         format VAR2225 $1. ;
4842         format VAR2226 $1. ;
4843         format VAR2227 $1. ;
4844         format VAR2228 $1. ;
4845         format VAR2229 $1. ;
4846         format VAR2230 $1. ;
4847         format VAR2231 $1. ;
4848         format VAR2232 $1. ;
4849         format VAR2233 $1. ;
4850         format VAR2234 $1. ;
4851         format VAR2235 $1. ;
4852         format VAR2236 $1. ;
4853         format VAR2237 $1. ;
4854         format VAR2238 $1. ;
4855         format VAR2239 $1. ;
4856         format VAR2240 $1. ;
4857         format VAR2241 $1. ;
4858         format VAR2242 $1. ;
4859         format VAR2243 $1. ;
4860         format VAR2244 $1. ;
4861         format VAR2245 $1. ;
4862         format VAR2246 $1. ;
4863         format VAR2247 $1. ;
4864         format VAR2248 $1. ;
4865         format VAR2249 $1. ;
4866         format VAR2250 $1. ;
4867         format VAR2251 $1. ;
4868         format VAR2252 $1. ;
4869         format VAR2253 $1. ;
4870         format VAR2254 $1. ;
4871         format VAR2255 $1. ;
4872         format VAR2256 $1. ;
4873         format VAR2257 $1. ;
4874         format VAR2258 $1. ;
4875         format VAR2259 $1. ;
4876         format VAR2260 $1. ;
4877         format VAR2261 $1. ;
4878         format VAR2262 $1. ;
4879         format VAR2263 $1. ;
4880         format VAR2264 $1. ;
4881         format VAR2265 $1. ;
4882         format VAR2266 $1. ;
4883         format VAR2267 $1. ;
4884         format VAR2268 $1. ;
4885         format VAR2269 $1. ;
4886         format VAR2270 $1. ;
4887         format VAR2271 best12. ;
4888         format VAR2272 best12. ;
4889         format VAR2273 best12. ;
4890         format VAR2274 best12. ;
4891         format VAR2275 best12. ;
4892         format VAR2276 best12. ;
4893         format VAR2277 best12. ;
4894         format VAR2278 best12. ;
4895         format VAR2279 best12. ;
4896         format VAR2280 best12. ;
4897         format VAR2281 $1. ;
4898         format VAR2282 $1. ;
4899         format VAR2283 best12. ;
4900         format VAR2284 $1. ;
4901         format VAR2285 best12. ;
4902         format VAR2286 best12. ;
4903         format VAR2287 best12. ;
4904         format VAR2288 best12. ;
4905         format VAR2289 best12. ;
4906         format VAR2290 best12. ;
4907         format VAR2291 best12. ;
4908         format VAR2292 best12. ;
4909         format VAR2293 best12. ;
4910         format VAR2294 best12. ;
4911         format VAR2295 best12. ;
4912         format VAR2296 best12. ;
4913         format VAR2297 best12. ;
4914         format VAR2298 best12. ;
4915         format VAR2299 best12. ;
4916         format VAR2300 best12. ;
4917         format VAR2301 best12. ;
4918         format VAR2302 best12. ;
4919         format VAR2303 best12. ;
4920         format VAR2304 best12. ;
4921         format VAR2305 best12. ;
4922         format VAR2306 best12. ;
4923         format VAR2307 best12. ;
4924         format VAR2308 $1. ;
4925         format VAR2309 best12. ;
4926         format VAR2310 $1. ;
4927         format VAR2311 $1. ;
4928         format VAR2312 best12. ;
4929         format VAR2313 $1. ;
4930         format VAR2314 best12. ;
4931         format VAR2315 best12. ;
4932         format VAR2316 best12. ;
4933         format VAR2317 best12. ;
4934         format VAR2318 best12. ;
4935         format VAR2319 best12. ;
4936         format VAR2320 best12. ;
4937         format VAR2321 best12. ;
4938         format VAR2322 best12. ;
4939         format VAR2323 best12. ;
4940         format VAR2324 best12. ;
4941         format VAR2325 best12. ;
4942         format VAR2326 best12. ;
4943         format VAR2327 best12. ;
4944         format VAR2328 best12. ;
4945         format VAR2329 best12. ;
4946         format VAR2330 best12. ;
4947         format VAR2331 best12. ;
4948         format VAR2332 $1. ;
4949         format VAR2333 $1. ;
4950         format VAR2334 $1. ;
4951         format VAR2335 $1. ;
4952         format VAR2336 $1. ;
4953         format VAR2337 $1. ;
4954         format VAR2338 $1. ;
4955         format VAR2339 $1. ;
4956         format VAR2340 $1. ;
4957         format VAR2341 $1. ;
4958         format VAR2342 $1. ;
4959         format VAR2343 $1. ;
4960         format VAR2344 best12. ;
4961         format VAR2345 best12. ;
4962         format VAR2346 best12. ;
4963         format VAR2347 best12. ;
4964         format VAR2348 best12. ;
4965         format VAR2349 best12. ;
4966         format VAR2350 $1. ;
4967         format VAR2351 best12. ;
4968         format VAR2352 best12. ;
4969         format VAR2353 best12. ;
4970         format VAR2354 best12. ;
4971         format VAR2355 best12. ;
4972         format VAR2356 best12. ;
4973         format VAR2357 $1. ;
4974         format VAR2358 best12. ;
4975         format VAR2359 best12. ;
4976         format VAR2360 best12. ;
4977         format VAR2361 best12. ;
4978         format VAR2362 best12. ;
4979         format VAR2363 best12. ;
4980         format VAR2364 best12. ;
4981         format VAR2365 best12. ;
4982         format VAR2366 best12. ;
4983         format VAR2367 best12. ;
4984         format VAR2368 best12. ;
4985         format VAR2369 best12. ;
4986         format VAR2370 best12. ;
4987         format VAR2371 best12. ;
4988         format VAR2372 best12. ;
4989         format VAR2373 best12. ;
4990         format VAR2374 best12. ;
4991         format VAR2375 best12. ;
4992         format VAR2376 best12. ;
4993         format VAR2377 best12. ;
4994         format VAR2378 best12. ;
4995         format VAR2379 best12. ;
4996         format VAR2380 best12. ;
4997         format VAR2381 best12. ;
4998         format VAR2382 best12. ;
4999         format VAR2383 best12. ;
5000         format VAR2384 best12. ;
5001         format VAR2385 best12. ;
5002         format VAR2386 best12. ;
5003         format VAR2387 best12. ;
5004         format VAR2388 best12. ;
5005         format VAR2389 best12. ;
5006         format VAR2390 best12. ;
5007         format VAR2391 best12. ;
5008         format VAR2392 best12. ;
5009         format VAR2393 best12. ;
5010         format VAR2394 best12. ;
5011         format VAR2395 best12. ;
5012         format VAR2396 best12. ;
5013         format VAR2397 best12. ;
5014         format VAR2398 best12. ;
5015         format VAR2399 best12. ;
5016         format VAR2400 best12. ;
5017         format VAR2401 best12. ;
5018         format VAR2402 best12. ;
5019         format VAR2403 best12. ;
5020         format VAR2404 best12. ;
5021         format VAR2405 best12. ;
5022         format VAR2406 best12. ;
5023         format VAR2407 best12. ;
5024         format VAR2408 best12. ;
5025         format VAR2409 best12. ;
5026         format VAR2410 best12. ;
5027         format VAR2411 best12. ;
5028         format VAR2412 best12. ;
5029         format VAR2413 best12. ;
5030         format VAR2414 best12. ;
5031         format VAR2415 best12. ;
5032         format VAR2416 best12. ;
5033         format VAR2417 best12. ;
5034         format VAR2418 best12. ;
5035         format VAR2419 best12. ;
5036         format VAR2420 best12. ;
5037         format VAR2421 best12. ;
5038         format VAR2422 best12. ;
5039         format VAR2423 best12. ;
5040         format VAR2424 best12. ;
5041         format VAR2425 best12. ;
5042         format VAR2426 best12. ;
5043         format VAR2427 best12. ;
5044         format VAR2428 best12. ;
5045         format VAR2429 best12. ;
5046         format VAR2430 best12. ;
5047         format VAR2431 best12. ;
5048         format VAR2432 best12. ;
5049         format VAR2433 best12. ;
5050         format VAR2434 best12. ;
5051         format VAR2435 best12. ;
5052         format VAR2436 best12. ;
5053         format VAR2437 best12. ;
5054         format VAR2438 best12. ;
5055         format VAR2439 best12. ;
5056         format VAR2440 best12. ;
5057         format VAR2441 best12. ;
5058         format VAR2442 best12. ;
5059         format VAR2443 best12. ;
5060         format VAR2444 best12. ;
5061         format VAR2445 best12. ;
5062         format VAR2446 best12. ;
5063         format VAR2447 best12. ;
5064         format VAR2448 best12. ;
5065         format VAR2449 best12. ;
5066         format VAR2450 best12. ;
5067         format VAR2451 best12. ;
5068         format VAR2452 best12. ;
5069         format VAR2453 best12. ;
5070         format VAR2454 best12. ;
5071         format VAR2455 best12. ;
5072         format VAR2456 best12. ;
5073         format VAR2457 best12. ;
5074         format VAR2458 best12. ;
5075         format VAR2459 best12. ;
5076         format VAR2460 $1. ;
5077         format VAR2461 best12. ;
5078         format VAR2462 $1. ;
5079         format VAR2463 best12. ;
5080         format VAR2464 $1. ;
5081         format VAR2465 best12. ;
5082         format VAR2466 $1. ;
5083         format VAR2467 best12. ;
5084         format VAR2468 $1. ;
5085         format VAR2469 best12. ;
5086         format VAR2470 $1. ;
5087         format VAR2471 best12. ;
5088         format VAR2472 $1. ;
5089         format VAR2473 best12. ;
5090         format VAR2474 $1. ;
5091         format VAR2475 best12. ;
5092         format VAR2476 $1. ;
5093         format VAR2477 $1. ;
5094         format VAR2478 best12. ;
5095         format VAR2479 mmddyy10. ;
5096         format VAR2480 best12. ;
5097         format VAR2481 $1. ;
5098         format VAR2482 best12. ;
5099         format VAR2483 $1. ;
5100         format VAR2484 best12. ;
5101         format VAR2485 $1. ;
5102         format VAR2486 best12. ;
5103         format VAR2487 $1. ;
5104         format VAR2488 best12. ;
5105         format VAR2489 $1. ;
5106         format VAR2490 $1. ;
5107         format VAR2491 $1. ;
5108         format VAR2492 $1. ;
5109         format VAR2493 $1. ;
5110         format VAR2494 $1. ;
5111         format VAR2495 $1. ;
5112         format VAR2496 best12. ;
5113         format VAR2497 mmddyy10. ;
5114         format VAR2498 best12. ;
5115         format VAR2499 best12. ;
5116         format VAR2500 best12. ;
5117         format VAR2501 best12. ;
5118         format VAR2502 $1. ;
5119         format VAR2503 best12. ;
5120         format VAR2504 $1. ;
5121         format VAR2505 $1. ;
5122         format VAR2506 $1. ;
5123         format VAR2507 $1. ;
5124         format VAR2508 best12. ;
5125         format VAR2509 mmddyy10. ;
5126         format VAR2510 best12. ;
5127         format VAR2511 $1. ;
5128         format VAR2512 best12. ;
5129         format VAR2513 $1. ;
5130         format VAR2514 best12. ;
5131         format VAR2515 best12. ;
5132         format VAR2516 best12. ;
5133         format VAR2517 best12. ;
5134         format VAR2518 best12. ;
5135         format VAR2519 best12. ;
5136         format VAR2520 best12. ;
5137         format VAR2521 best12. ;
5138         format VAR2522 best12. ;
5139         format VAR2523 best12. ;
5140         format VAR2524 best12. ;
5141         format VAR2525 best12. ;
5142         format VAR2526 best12. ;
5143         format VAR2527 best12. ;
5144         format VAR2528 best12. ;
5145         format VAR2529 best12. ;
5146         format VAR2530 best12. ;
5147         format VAR2531 best12. ;
5148         format VAR2532 best12. ;
5149         format VAR2533 best12. ;
5150         format VAR2534 best12. ;
5151         format VAR2535 best12. ;
5152         format VAR2536 best12. ;
5153         format VAR2537 best12. ;
5154         format VAR2538 best12. ;
5155         format VAR2539 best12. ;
5156         format VAR2540 best12. ;
5157         format VAR2541 best12. ;
5158         format VAR2542 best12. ;
5159         format VAR2543 best12. ;
5160         format VAR2544 best12. ;
5161         format VAR2545 best12. ;
5162         format VAR2546 best12. ;
5163         format VAR2547 best12. ;
5164         format VAR2548 best12. ;
5165         format VAR2549 best12. ;
5166         format VAR2550 best12. ;
5167         format VAR2551 best12. ;
5168         format VAR2552 best12. ;
5169         format VAR2553 best12. ;
5170         format VAR2554 best12. ;
5171         format VAR2555 best12. ;
5172         format VAR2556 best12. ;
5173         format VAR2557 best12. ;
5174         format VAR2558 best12. ;
5175         format VAR2559 best12. ;
5176         format VAR2560 best12. ;
5177         format VAR2561 best12. ;
5178         format VAR2562 best12. ;
5179         format VAR2563 $1. ;
5180         format VAR2564 $1. ;
5181         format VAR2565 $1. ;
5182         format VAR2566 $1. ;
5183         format VAR2567 $1. ;
5184         format VAR2568 $1. ;
5185         format VAR2569 $1. ;
5186         format VAR2570 $1. ;
5187         format VAR2571 $1. ;
5188         format VAR2572 $1. ;
5189         format VAR2573 best12. ;
5190         format VAR2574 mmddyy10. ;
5191         format VAR2575 mmddyy10. ;
5192         format VAR2576 best12. ;
5193         format VAR2577 mmddyy10. ;
5194         format VAR2578 best12. ;
5195         format VAR2579 mmddyy10. ;
5196         format VAR2580 mmddyy10. ;
5197         format VAR2581 mmddyy10. ;
5198         format VAR2582 best12. ;
5199      input
5200                  id
5201                  reviewdate
5202                  newntm
5203                  sex
5204                  birthplace
5205                  usyears  $
5206                  currentinsurance
5207                  smoke
5208                  vitd
5209                  vitdose1
5210                  vitdlevel1
5211                  height
5212                  heightmeas
5213                  currentweight
5214                  currentweightmeas
5215                  firstweight
5216                  firstweightmeas
5217                  criteriaweight
5218                  criteriaweightmeas
5219                  demographics_complete
5220                  ntm2005
5221                  symptoms2005
5222                  radiog2005  $
5223                  alternate2005
5224                  micro2005  $
5225                  ntmever
5226                  ntmnow
5227                  ntmsymptom
5228                  ntmradiography  $
5229                  ntmmicro
5230                  ntmdiagnoses  $
5231                  ntmother
5232                  reviewstatus
5233                  current_criteria_complete
5234                  oldntmsource
5235                  oldntmsite
5236                  oldntmculture
5237                  oldntmmulti
5238                  oldntmothermulti  $
5239                  oldntmculture2___0
5240                  oldntmculture2___1
5241                  oldntmculture2___2
5242                  oldntmculture2___3
5243                  oldntmculture2___4
5244                  oldntmculture2___5
5245                  oldntmculture2___6
5246                  oldntmculture2___7
5247                  oldntmtreat
5248                  oldntmimmuno___0
5249                  oldntmimmuno___1
5250                  oldntmimmuno___2
5251                  oldntmimmuno___3
5252                  oldntmimmuno___4
5253                  oldntmimmuno___5
5254                  oldntmimmuno___6
5255                  oldntmimmuno___7
5256                  oldntmimmuno___8
5257                  oldntmimmuno___9
5258                  oldntmimmuno___10
5259                  oldntmimmuno___11
5260                  oldntmimmuno___12
5261                  oldntmimmuno___13
5262                  oldntmimmuno___14
5263                  oldntmimmuno___15
5264                  oldntmimmuno___16
5265                  oldntmimmuno___17
5266                  oldntminhaled___0
5267                  oldntminhaled___1
5268                  oldntmcomorbid___0
5269                  oldntmcomorbid___1
5270                  oldntmcomorbid___2
5271                  oldntmcomorbid___3
5272                  oldntmcomorbid___4
5273                  oldntmcomorbid___5
5274                  oldntmcomorbid___6
5275                  oldntmcomorbid___7
5276                  oldntmcomorbid___8
5277                  oldntmcomorbid___9
5278                  oldntmcomorbid___10
5279                  oldntmcomorbid___11
5280                  oldntmcomorbid___12
5281                  oldntmcomorbid___13
5282                  oldntmcomorbid___14
5283                  oldntmcomorbid___15
5284                  oldntmcomorbid___16
5285                  oldntmcomorbid___17
5286                  oldntmcomorbid___18
5287                  oldntmcomorbid___19
5288                  oldntmcomorbid___20
5289                  oldntmtbtype  $
5290                  oldntmautoimmunetype  $
5291                  oldntmtransplant___0
5292                  oldntmtransplant___1
5293                  oldntmtransplant___2
5294                  old_history_complete
5295                  pid
5296                  pidntm
5297                  hiv
5298                  hivntm  $
5299                  cancer
5300                  cancerntm
5301                  transplant
5302                  lungtrans  $
5303                  organtrans  $
5304                  hematologictrans  $
5305                  transplantntm  $
5306                  lymphopenia
5307                  lymphopeniantm
5308                  hypogamma
5309                  hypogammantm
5310                  cd4
5311                  cd4ntm  $
5312                  immuneany
5313                  abatacept6mon
5314                  anakinra6mon
5315                  azathioprine6mon
5316                  belimumab6mon
5317                  chemo6mon
5318                  cyclophosphamide6mon
5319                  cyclosporine6mon
5320                  leflunamide6mon
5321                  methotrexate6mon
5322                  mmf6mon
5323                  prednisone6mon
5324                  rituximab6mon
5325                  tacrolimus6mon
5326                  tnf6mon
5327                  tocilizumab6mon
5328                  tofacitinib6mon
5329                  ustekinumab6mon
5330                  other6mont
5331                  abataceptafter
5332                  anakinraafter
5333                  azathioprineafter
5334                  belimumabafter
5335                  chemoafter
5336                  cyclophosphamideafter
5337                  cyclosporineafter
5338                  predinisoneafter
5339                  leflunamideafter
5340                  methotrexateafter
5341                  mmfafter
5342                  rituximabafter
5343                  tacrolimusafter
5344                  tnfafter
5345                  tocilizumabafter
5346                  tofacitinibafter
5347                  ustekinumabafter
5348                  otherafter
5349                  immunosuppressive_information_co
5350                  immuneany_enr
5351                  abatacept_enr
5352                  anakinra_enr
5353                  azathioprine_enr
5354                  belimumab_enr
5355                  chemo_enr
5356                  cyclophosphamide_enr
5357                  cyclosporine_enr
5358                  leflunamide_enr
5359                  methotrexate_enr
5360                  mmf_enr
5361                  prednisone_enr
5362                  rituximab_enr
5363                  tacrolimus_enr
5364                  tnf_enr
5365                  tocilizumab_enr
5366                  tofacitinib_enr
5367                  ustekinumab_enr
5368                  otherimmune_enr
5369                  immunosuppressive_information_en
5370                  copd
5371                  asthma
5372                  bronch
5373                  interstitial
5374                  sarcoid
5375                  pneumo
5376                  congestive
5377                  cf
5378                  tb
5379                  tbtype  $
5380                  liverdisease
5381                  diabetes
5382                  renaldisease
5383                  nonlungcancer
5384                  lungcancer
5385                  autoimmune
5386                  inflammatorybowel
5387                  psoriasis
5388                  ra
5389                  spondylitis
5390                  lupus
5391                  otherimmune
5392                  gerd
5393                  other
5394                  comorbidities_complete
5395                  inhaledany
5396                  isteroids6mon
5397                  itobramycin6mon
5398                  iaztreonam6mon
5399                  icolistin6mon
5400                  iamikacin6mon
5401                  ishortbeta6mon
5402                  ilongbeta6mon
5403                  ianticholinergics6mon
5404                  ipulmozyme6mon
5405                  isaline6mon
5406                  icombination6mon
5407                  iother6mon
5408                  isteroidsafter
5409                  itobramycinafter
5410                  iaztreonamafter
5411                  icolistinafter
5412                  iamikacinafter
5413                  ishortbetaafter
5414                  ilongbetaafter
5415                  ianticholinergicsafter
5416                  ipulmozymeafter
5417                  isalineafter
5418                  icombinationafter
5419                  iotherafter
5420                  inhaled_information_complete
5421                  inhaleenroll_enr
5422                  isteroids_enr
5423                  itobramycin_enr
5424                  iaztreonam_enr
5425                  icolistin_enr
5426                  iamikacin_enr
5427                  ishortbeta_enr
5428                  ilongbeta_enr
5429                  ianticholinergics_enr
5430                  ipulmozyme_enr
5431                  isaline_enr
5432                  icombination_enr
5433                  iother_enr
5434                  inhaled_information_enrollment_c
5435                  symptomatic
5436                  cough
5437                  hemoptysis
5438                  dyspnea
5439                  weightloss
5440                  fever
5441                  failthrive
5442                  skininfection
5443                  diarrhea
5444                  fatigue
5445                  othersymp1
5446                  othersymp2
5447                  clinical_symptoms_complete
5448                  cavntm
5449                  treebudct
5450                  brocharct
5451                  scan1type
5452                  abnormality1___0
5453                  abnormality1___1
5454                  abnormality1___2
5455                  abnormality1___3
5456                  inflocation1___0
5457                  inflocation1___1
5458                  inflocation1___2
5459                  inflocation1___3
5460                  inflocation1___4
5461                  inflocation1___5
5462                  nodlocation1___0
5463                  nodlocation1___1
5464                  nodlocation1___2
5465                  nodlocation1___3
5466                  nodlocation1___4
5467                  nodlocation1___5
5468                  cavlocation1___0
5469                  cavlocation1___1
5470                  cavlocation1___2
5471                  cavlocation1___3
5472                  cavlocation1___4
5473                  cavlocation1___5
5474                  brolocation1___0
5475                  brolocation1___1
5476                  brolocation1___2
5477                  brolocation1___3
5478                  brolocation1___4
5479                  brolocation1___5
5480                  effusion1
5481                  lymphadenopathy1
5482                  scan1improve
5483                  scan2type
5484                  abnormality2___0
5485                  abnormality2___1
5486                  abnormality2___2
5487                  abnormality2___3
5488                  inflocation2___0
5489                  inflocation2___1
5490                  inflocation2___2
5491                  inflocation2___3
5492                  inflocation2___4
5493                  inflocation2___5
5494                  nodlocation2___0
5495                  nodlocation2___1
5496                  nodlocation2___2
5497                  nodlocation2___3
5498                  nodlocation2___4
5499                  nodlocation2___5
5500                  cavlocation2___0
5501                  cavlocation2___1
5502                  cavlocation2___2
5503                  cavlocation2___3
5504                  cavlocation2___4
5505                  cavlocation2___5
5506                  brolocation2___0
5507                  brolocation2___1
5508                  brolocation2___2
5509                  brolocation2___3
5510                  brolocation2___4
5511                  brolocation2___5
5512                  effusion2
5513                  lymphadenopathy2
5514                  scan2improve
5515                  scan3type
5516                  abnormality3___0
5517                  abnormality3___1
5518                  abnormality3___2
5519                  abnormality3___3
5520                  inflocation3___0
5521                  inflocation3___1
5522                  inflocation3___2
5523                  inflocation3___3
5524                  inflocation3___4
5525                  inflocation3___5
5526                  nodlocation3___0
5527                  nodlocation3___1
5528                  nodlocation3___2
5529                  nodlocation3___3
5530                  nodlocation3___4
5531                  nodlocation3___5
5532                  cavlocation3___0
5533                  cavlocation3___1
5534                  cavlocation3___2
5535                  cavlocation3___3
5536                  cavlocation3___4
5537                  cavlocation3___5
5538                  brolocation3___0
5539                  brolocation3___1
5540                  brolocation3___2
5541                  brolocation3___3
5542                  brolocation3___4
5543                  brolocation3___5
5544                  effusion3
5545                  lymphadenopathy3
5546                  scan3improve
5547                  scan4type
5548                  abnormality4___0
5549                  abnormality4___1
5550                  abnormality4___2
5551                  abnormality4___3
5552                  inflocation4___0
5553                  inflocation4___1
5554                  inflocation4___2
5555                  inflocation4___3
5556                  inflocation4___4
5557                  inflocation4___5
5558                  nodlocation4___0
5559                  nodlocation4___1
5560                  nodlocation4___2
5561                  nodlocation4___3
5562                  nodlocation4___4
5563                  nodlocation4___5
5564                  cavlocation4___0
5565                  cavlocation4___1
5566                  cavlocation4___2
5567                  cavlocation4___3
5568                  cavlocation4___4
5569                  cavlocation4___5
5570                  brolocation4___0
5571                  brolocation4___1
5572                  brolocation4___2
5573                  brolocation4___3
5574                  brolocation4___4
5575                  brolocation4___5
5576                  effusion4
5577                  lymphadenopathy4
5578                  scan4improve
5579                  scan5type
5580                  abnormality5___0
5581                  abnormality5___1
5582                  abnormality5___2
5583                  abnormality5___3
5584                  inflocation5___0
5585                  inflocation5___1
5586                  inflocation5___2
5587                  inflocation5___3
5588                  inflocation5___4
5589                  inflocation5___5
5590                  nodlocation5___0
5591                  nodlocation5___1
5592                  nodlocation5___2
5593                  nodlocation5___3
5594                  nodlocation5___4
5595                  nodlocation5___5
5596                  cavlocation5___0
5597                  cavlocation5___1
5598                  cavlocation5___2
5599                  cavlocation5___3
5600                  cavlocation5___4
5601                  cavlocation5___5
5602                  brolocation5___0
5603                  brolocation5___1
5604                  brolocation5___2
5605                  brolocation5___3
5606                  brolocation5___4
5607                  brolocation5___5
5608                  effusion5
5609                  lymphadenopathy5
5610                  scan5improve
5611                  scan6type
5612                  abnormality6___0
5613                  abnormality6___1
5614                  abnormality6___2
5615                  abnormality6___3
5616                  inflocation6___0
5617                  inflocation6___1
5618                  inflocation6___2
5619                  inflocation6___3
5620                  inflocation6___4
5621                  inflocation6___5
5622                  nodlocation6___0
5623                  nodlocation6___1
5624                  nodlocation6___2
5625                  nodlocation6___3
5626                  nodlocation6___4
5627                  nodlocation6___5
5628                  cavlocation6___0
5629                  cavlocation6___1
5630                  cavlocation6___2
5631                  cavlocation6___3
5632                  cavlocation6___4
5633                  cavlocation6___5
5634                  brolocation6___0
5635                  brolocation6___1
5636                  brolocation6___2
5637                  brolocation6___3
5638                  brolocation6___4
5639                  brolocation6___5
5640                  effusion6
5641                  lymphadenopathy6
5642                  scan6improve
5643                  scan7type
5644                  abnormality7___0
5645                  abnormality7___1
5646                  abnormality7___2
5647                  abnormality7___3
5648                  inflocation7___0
5649                  inflocation7___1
5650                  inflocation7___2
5651                  inflocation7___3
5652                  inflocation7___4
5653                  inflocation7___5
5654                  nodlocation7___0
5655                  nodlocation7___1
5656                  nodlocation7___2
5657                  nodlocation7___3
5658                  nodlocation7___4
5659                  nodlocation7___5
5660                  cavlocation7___0
5661                  cavlocation7___1
5662                  cavlocation7___2
5663                  cavlocation7___3
5664                  cavlocation7___4
5665                  cavlocation7___5
5666                  brolocation7___0
5667                  brolocation7___1
5668                  brolocation7___2
5669                  brolocation7___3
5670                  brolocation7___4
5671                  brolocation7___5
5672                  effusion7
5673                  lymphadenopathy7
5674                  scan7improve
5675                  scan8type
5676                  abnormality8___0
5677                  abnormality8___1
5678                  abnormality8___2
5679                  abnormality8___3
5680                  inflocation8___0
5681                  inflocation8___1
5682                  inflocation8___2
5683                  inflocation8___3
5684                  inflocation8___4
5685                  inflocation8___5
5686                  nodlocation8___0
5687                  nodlocation8___1
5688                  nodlocation8___2
5689                  nodlocation8___3
5690                  nodlocation8___4
5691                  nodlocation8___5
5692                  cavlocation8___0
5693                  cavlocation8___1
5694                  cavlocation8___2
5695                  cavlocation8___3
5696                  cavlocation8___4
5697                  cavlocation8___5
5698                  brolocation8___0
5699                  brolocation8___1
5700                  brolocation8___2
5701                  brolocation8___3
5702                  brolocation8___4
5703                  brolocation8___5
5704                  effusion8
5705                  lymphadenopathy8
5706                  scan8improve
5707                  scan9type
5708                  abnormality9___0
5709                  abnormality9___1
5710                  abnormality9___2
5711                  abnormality9___3
5712                  inflocation9___0
5713                  inflocation9___1
5714                  inflocation9___2
5715                  inflocation9___3
5716                  inflocation9___4
5717                  inflocation9___5
5718                  nodlocation9___0
5719                  nodlocation9___1
5720                  nodlocation9___2
5721                  nodlocation9___3
5722                  nodlocation9___4
5723                  nodlocation9___5
5724                  cavlocation9___0
5725                  cavlocation9___1
5726                  cavlocation9___2
5727                  cavlocation9___3
5728                  cavlocation9___4
5729                  cavlocation9___5
5730                  brolocation9___0
5731                  brolocation9___1
5732                  brolocation9___2
5733                  brolocation9___3
5734                  brolocation9___4
5735                  brolocation9___5
5736                  effusion9
5737                  lymphadenopathy9
5738                  scan9improve
5739                  scan10type
5740                  abnormality10___0
5741                  abnormality10___1
5742                  abnormality10___2
5743                  abnormality10___3
5744                  inflocation10___0
5745                  inflocation10___1
5746                  inflocation10___2
5747                  inflocation10___3
5748                  inflocation10___4
5749                  inflocation10___5
5750                  nodlocation10___0
5751                  nodlocation10___1
5752                  nodlocation10___2
5753                  nodlocation10___3
5754                  nodlocation10___4
5755                  nodlocation10___5
5756                  cavlocation10___0
5757                  cavlocation10___1
5758                  cavlocation10___2
5759                  cavlocation10___3
5760                  cavlocation10___4
5761                  cavlocation10___5
5762                  brolocation10___0
5763                  brolocation10___1
5764                  brolocation10___2
5765                  brolocation10___3
5766                  brolocation10___4
5767                  brolocation10___5
5768                  effusion10
5769                  lymphadenopathy10
5770                  scan10improve
5771                  scan11type
5772                  abnormality11___0
5773                  abnormality11___1
5774                  abnormality11___2
5775                  abnormality11___3
5776                  inflocation11___0
5777                  inflocation11___1
5778                  inflocation11___2
5779                  inflocation11___3
5780                  inflocation11___4
5781                  inflocation11___5
5782                  nodlocation11___0
5783                  nodlocation11___1
5784                  nodlocation11___2
5785                  nodlocation11___3
5786                  nodlocation11___4
5787                  nodlocation11___5
5788                  cavlocation11___0
5789                  cavlocation11___1
5790                  cavlocation11___2
5791                  cavlocation11___3
5792                  cavlocation11___4
5793                  cavlocation11___5
5794                  brolocation11___0
5795                  brolocation11___1
5796                  brolocation11___2
5797                  brolocation11___3
5798                  brolocation11___4
5799                  brolocation11___5
5800                  effusion11
5801                  lymphadenopathy11
5802                  scan11improve
5803                  scan12type
5804                  abnormality12___0
5805                  abnormality12___1
5806                  abnormality12___2
5807                  abnormality12___3
5808                  inflocation12___0
5809                  inflocation12___1
5810                  inflocation12___2
5811                  inflocation12___3
5812                  inflocation12___4
5813                  inflocation12___5
5814                  nodlocation12___0
5815                  nodlocation12___1
5816                  nodlocation12___2
5817                  nodlocation12___3
5818                  nodlocation12___4
5819                  nodlocation12___5
5820                  cavlocation12___0
5821                  cavlocation12___1
5822                  cavlocation12___2
5823                  cavlocation12___3
5824                  cavlocation12___4
5825                  cavlocation12___5
5826                  brolocation12___0
5827                  brolocation12___1
5828                  brolocation12___2
5829                  brolocation12___3
5830                  brolocation12___4
5831                  brolocation12___5
5832                  effusion12
5833                  lymphadenopathy12
5834                  scan12improve
5835                  scan13type
5836                  abnormality13___0
5837                  abnormality13___1
5838                  abnormality13___2
5839                  abnormality13___3
5840                  inflocation13___0
5841                  inflocation13___1
5842                  inflocation13___2
5843                  inflocation13___3
5844                  inflocation13___4
5845                  inflocation13___5
5846                  nodlocation13___0
5847                  nodlocation13___1
5848                  nodlocation13___2
5849                  nodlocation13___3
5850                  nodlocation13___4
5851                  nodlocation13___5
5852                  cavlocation13___0
5853                  cavlocation13___1
5854                  cavlocation13___2
5855                  cavlocation13___3
5856                  cavlocation13___4
5857                  cavlocation13___5
5858                  brolocation13___0
5859                  brolocation13___1
5860                  brolocation13___2
5861                  brolocation13___3
5862                  brolocation13___4
5863                  brolocation13___5
5864                  effusion13
5865                  lymphadenopathy13
5866                  scan13improve
5867                  scan14type
5868                  abnormality14___0
5869                  abnormality14___1
5870                  abnormality14___2
5871                  abnormality14___3
5872                  inflocation14___0
5873                  inflocation14___1
5874                  inflocation14___2
5875                  inflocation14___3
5876                  inflocation14___4
5877                  inflocation14___5
5878                  nodlocation14___0
5879                  nodlocation14___1
5880                  nodlocation14___2
5881                  nodlocation14___3
5882                  nodlocation14___4
5883                  nodlocation14___5
5884                  cavlocation14___0
5885                  cavlocation14___1
5886                  cavlocation14___2
5887                  cavlocation14___3
5888                  cavlocation14___4
5889                  cavlocation14___5
5890                  brolocation14___0
5891                  brolocation14___1
5892                  brolocation14___2
5893                  brolocation14___3
5894                  brolocation14___4
5895                  brolocation14___5
5896                  effusion14
5897                  lymphadenopathy14
5898                  scan14improve
5899                  scan15type
5900                  abnormality15___0
5901                  abnormality15___1
5902                  abnormality15___2
5903                  abnormality15___3
5904                  inflocation15___0
5905                  inflocation15___1
5906                  inflocation15___2
5907                  inflocation15___3
5908                  inflocation15___4
5909                  inflocation15___5
5910                  nodlocation15___0
5911                  nodlocation15___1
5912                  nodlocation15___2
5913                  nodlocation15___3
5914                  nodlocation15___4
5915                  nodlocation15___5
5916                  cavlocation15___0
5917                  cavlocation15___1
5918                  cavlocation15___2
5919                  cavlocation15___3
5920                  cavlocation15___4
5921                  cavlocation15___5
5922                  brolocation15___0
5923                  brolocation15___1
5924                  brolocation15___2
5925                  brolocation15___3
5926                  brolocation15___4
5927                  brolocation15___5
5928                  effusion15
5929                  lymphadenopathy15
5930                  scan15improve
5931                  scan16type
5932                  abnormality16___0
5933                  abnormality16___1
5934                  abnormality16___2
5935                  abnormality16___3
5936                  inflocation16___0
5937                  inflocation16___1
5938                  inflocation16___2
5939                  inflocation16___3
5940                  inflocation16___4
5941                  inflocation16___5
5942                  nodlocation16___0
5943                  nodlocation16___1
5944                  nodlocation16___2
5945                  nodlocation16___3
5946                  nodlocation16___4
5947                  nodlocation16___5
5948                  cavlocation16___0
5949                  cavlocation16___1
5950                  cavlocation16___2
5951                  cavlocation16___3
5952                  cavlocation16___4
5953                  cavlocation16___5
5954                  brolocation16___0
5955                  brolocation16___1
5956                  brolocation16___2
5957                  brolocation16___3
5958                  brolocation16___4
5959                  brolocation16___5
5960                  effusion16
5961                  lymphadenopathy16
5962                  scan16improve
5963                  scan17type  $
5964                  abnormality17___0
5965                  abnormality17___1
5966                  abnormality17___2
5967                  abnormality17___3
5968                  inflocation17___0
5969                  inflocation17___1
5970                  inflocation17___2
5971                  inflocation17___3
5972                  inflocation17___4
5973                  inflocation17___5
5974                  nodlocation17___0
5975                  nodlocation17___1
5976                  nodlocation17___2
5977                  nodlocation17___3
5978                  nodlocation17___4
5979                  nodlocation17___5
5980                  cavlocation17___0
5981                  cavlocation17___1
5982                  cavlocation17___2
5983                  cavlocation17___3
5984                  cavlocation17___4
5985                  cavlocation17___5
5986                  brolocation17___0
5987                  brolocation17___1
5988                  brolocation17___2
5989                  brolocation17___3
5990                  brolocation17___4
5991                  brolocation17___5
5992                  effusion17  $
5993                  lymphadenopathy17  $
5994                  scan17improve  $
5995                  scan18type  $
5996                  abnormality18___0
5997                  abnormality18___1
5998                  abnormality18___2
5999                  abnormality18___3
6000                  inflocation18___0
6001                  inflocation18___1
6002                  inflocation18___2
6003                  inflocation18___3
6004                  inflocation18___4
6005                  inflocation18___5
6006                  nodlocation18___0
6007                  nodlocation18___1
6008                  nodlocation18___2
6009                  nodlocation18___3
6010                  nodlocation18___4
6011                  nodlocation18___5
6012                  cavlocation18___0
6013                  cavlocation18___1
6014                  cavlocation18___2
6015                  cavlocation18___3
6016                  cavlocation18___4
6017                  cavlocation18___5
6018                  brolocation18___0
6019                  brolocation18___1
6020                  brolocation18___2
6021                  brolocation18___3
6022                  brolocation18___4
6023                  brolocation18___5
6024                  effusion18  $
6025                  lymphadenopathy18  $
6026                  scan18improve  $
6027                  scan19type  $
6028                  abnormality19___0
6029                  abnormality19___1
6030                  abnormality19___2
6031                  abnormality19___3
6032                  inflocation19___0
6033                  inflocation19___1
6034                  inflocation19___2
6035                  inflocation19___3
6036                  inflocation19___4
6037                  inflocation19___5
6038                  nodlocation19___0
6039                  nodlocation19___1
6040                  nodlocation19___2
6041                  nodlocation19___3
6042                  nodlocation19___4
6043                  nodlocation19___5
6044                  cavlocation19___0
6045                  cavlocation19___1
6046                  cavlocation19___2
6047                  cavlocation19___3
6048                  cavlocation19___4
6049                  cavlocation19___5
6050                  brolocation19___0
6051                  brolocation19___1
6052                  brolocation19___2
6053                  brolocation19___3
6054                  brolocation19___4
6055                  brolocation19___5
6056                  effusion19  $
6057                  lymphadenopathy19  $
6058                  scan19improve  $
6059                  scan20type  $
6060                  abnormality20___0
6061                  abnormality20___1
6062                  abnormality20___2
6063                  abnormality20___3
6064                  inflocation20___0
6065                  inflocation20___1
6066                  inflocation20___2
6067                  inflocation20___3
6068                  inflocation20___4
6069                  inflocation20___5
6070                  nodlocation20___0
6071                  nodlocation20___1
6072                  nodlocation20___2
6073                  nodlocation20___3
6074                  nodlocation20___4
6075                  nodlocation20___5
6076                  cavlocation20___0
6077                  cavlocation20___1
6078                  cavlocation20___2
6079                  cavlocation20___3
6080                  cavlocation20___4
6081                  cavlocation20___5
6082                  brolocation20___0
6083                  brolocation20___1
6084                  brolocation20___2
6085                  brolocation20___3
6086                  brolocation20___4
6087                  brolocation20___5
6088                  effusion20  $
6089                  lymphadenopathy20  $
6090                  scan20improve  $
6091                  radiography_complete
6092                  extrapulm
6093                  micro1afb
6094                  micro1afbresult
6095                  micro1site
6096                  micro1result
6097                  micro1multi
6098                  micro1resultmulti  $
6099                  micro2afb
6100                  micro2afbresult
6101                  micro2site
6102                  micro2result
6103                  micro2multi
6104                  micro2resultmulti  $
6105                  micro3afb
6106                  micro3afbresult
6107                  micro3site
6108                  micro3result
6109                  micro3multi
6110                  micro3resultmulti  $
6111                  micro4afb
6112                  micro4afbresult
6113                  micro4site
6114                  micro4result
6115                  micro4multi
6116                  micro4resultmulti  $
6117                  micro5afb
6118                  micro5afbresult
6119                  micro5site
6120                  micro5result
6121                  micro5multi
6122                  micro5resultmulti  $
6123                  micro6afb
6124                  micro6afbresult
6125                  micro6site
6126                  micro6result
6127                  micro6multi
6128                  micro6resultmulti  $
6129                  micro7afb
6130                  micro7afbresult
6131                  micro7site
6132                  micro7result
6133                  micro7multi
6134                  micro7resultmulti  $
6135                  micro8afb
6136                  micro8afbresult
6137                  micro8site
6138                  micro8result
6139                  micro8multi
6140                  micro8resultmulti  $
6141                  micro9afb
6142                  micro9afbresult
6143                  micro9site
6144                  micro9result
6145                  micro9multi
6146                  micro9resultmulti  $
6147                  micro10afb
6148                  micro10afbresult
6149                  micro10site
6150                  micro10result
6151                  micro10multi
6152                  micro10resultmulti  $
6153                  micro11afb
6154                  micro11afbresult
6155                  micro11site
6156                  micro11result
6157                  micro11multi
6158                  micro11resultmulti  $
6159                  micro12afb
6160                  micro12afbresult
6161                  micro12site
6162                  micro12result
6163                  micro12multi
6164                  micro12resultmulti  $
6165                  micro13afb
6166                  micro13afbresult
6167                  micro13site
6168                  micro13result
6169                  micro13multi
6170                  micro13resultmulti  $
6171                  micro14afb
6172                  micro14afbresult
6173                  micro14site
6174                  micro14result
6175                  micro14multi
6176                  micro14resultmulti  $
6177                  micro15afb
6178                  micro15afbresult
6179                  micro15site
6180                  micro15result
6181                  micro15multi
6182                  micro15resultmulti  $
6183                  micro16afb
6184                  micro16afbresult
6185                  micro16site
6186                  micro16result
6187                  micro16multi
6188                  micro16resultmulti  $
6189                  micro17afb  $
6190                  micro17afbresult  $
6191                  micro17site  $
6192                  micro17result  $
6193                  micro17multi  $
6194                  micro17resultmulti  $
6195                  micro18afb  $
6196                  micro18afbresult  $
6197                  micro18site  $
6198                  micro18result  $
6199                  micro18multi  $
6200                  micro18resultmulti  $
6201                  micro19afb  $
6202                  micro19afbresult  $
6203                  micro19site  $
6204                  micro19result  $
6205                  micro19multi  $
6206                  micro19resultmulti  $
6207                  micro20afb  $
6208                  micro20afbresult  $
6209                  micro20site  $
6210                  micro20result  $
6211                  micro20multi  $
6212                  micro20resultmulti  $
6213                  microbiology_complete
6214                  nevertreat
6215                  enrolltreat
6216                  firstntmreg
6217                  treatstartfreq
6218                  treatstartdate
6219                  clintrial
6220                  clintriallist___1
6221                  clintriallist___2
6222                  clintriallist___3
6223                  clintriallist___4
6224                  clintriallist___5
6225                  clintriallist___6
6226                  clintriallist___7
6227                  ins112startdate  $
6228                  ins212startdate  $
6229                  ins312startdate  $
6230                  insiirstartdate  $
6231                  clofazstartdate  $
6232                  mac2v3startdate  $
6233                  othtrialstartdate  $
6234                  drug1
6235                  drug1route
6236                  drug1dose
6237                  drug1unit
6238                  drug1dosechange
6239                  drug1dosereason
6240                  drug1dosedate
6241                  drug1newdose
6242                  drug1newunit
6243                  drug1frequency
6244                  drug1freqchange
6245                  drug1freqreason
6246                  drug1freqdate
6247                  drug1newfreq
6248                  drug1reason
6249                  drug2
6250                  drug2route
6251                  drug2dose
6252                  drug2unit
6253                  drug2dosechange
6254                  drug2dosereason
6255                  drug2dosedate
6256                  drug2newdose
6257                  drug2newunit
6258                  drug2frequency
6259                  drug2freqchange
6260                  drug2freqreason
6261                  drug2freqdate
6262                  drug2newfreq
6263                  drug2reason
6264                  drug3
6265                  drug3route
6266                  drug3dose
6267                  drug3unit
6268                  drug3dosechange
6269                  drug3dosereason  $
6270                  drug3dosedate  $
6271                  drug3newdose  $
6272                  drug3newunit  $
6273                  drug3frequency
6274                  drug3freqchange
6275                  drug3freqreason  $
6276                  drug3freqdate  $
6277                  drug3newfreq  $
6278                  drug3reason
6279                  drug4
6280                  drug4route
6281                  drug4dose
6282                  drug4unit
6283                  drug4dosechange
6284                  drug4dosereason  $
6285                  drug4dosedate  $
6286                  drug4newdose  $
6287                  drug4newunit  $
6288                  drug4frequency
6289                  drug4freqchange
6290                  drug4freqreason
6291                  drug4freqdate
6292                  drug4newfreq
6293                  drug4reason
6294                  drug5
6295                  drug5route
6296                  drug5dose
6297                  drug5unit
6298                  drug5dosechange
6299                  drug5dosereason  $
6300                  drug5dosedate  $
6301                  drug5newdose  $
6302                  drug5newunit  $
6303                  drug5frequency
6304                  drug5freqchange
6305                  drug5freqreason
6306                  drug5freqdate
6307                  drug5newfreq
6308                  drug5reason
6309                  drug6
6310                  drug6route
6311                  drug6dose
6312                  drug6unit
6313                  drug6dosechange
6314                  drug6dosereason
6315                  drug6dosedate
6316                  drug6newdose
6317                  drug6newunit
6318                  drug6frequency
6319                  drug6freqchange
6320                  drug6freqreason
6321                  drug6freqdate
6322                  drug6newfreq
6323                  drug6reason
6324                  drug7
6325                  drug7route
6326                  drug7dose
6327                  drug7unit
6328                  drug7dosechange
6329                  drug7dosereason  $
6330                  drug7dosedate  $
6331                  drug7newdose  $
6332                  drug7newunit  $
6333                  drug7frequency
6334                  drug7freqchange
6335                  drug7freqreason  $
6336                  drug7freqdate  $
6337                  drug7newfreq  $
6338                  drug7reason
6339                  drug8
6340                  drug8route
6341                  drug8dose
6342                  drug8unit
6343                  drug8dosechange
6344                  drug8dosereason  $
6345                  drug8dosedate  $
6346                  drug8newdose  $
6347                  drug8newunit  $
6348                  drug8frequency
6349                  drug8freqchange
6350                  drug8freqreason  $
6351                  drug8freqdate  $
6352                  drug8newfreq  $
6353                  drug8reason
6354                  drug9
6355                  drug9route
6356                  drug9dose
6357                  drug9unit
6358                  drug9dosechange
6359                  drug9dosereason  $
6360                  drug9dosedate  $
6361                  drug9newdose  $
6362                  drug9newunit  $
6363                  drug9frequency
6364                  drug9freqchange
6365                  drug9freqreason  $
6366                  drug9freqdate  $
6367                  drug9newfreq  $
6368                  drug9reason
6369                  drug10
6370                  drug10route
6371                  drug10dose
6372                  drug10unit
6373                  drug10dosechange
6374                  drug10dosereason  $
6375                  drug10dosedate  $
6376                  drug10newdose  $
6377                  drug10newunit  $
6378                  drug10frequency
6379                  drug10freqchange
6380                  drug10freqreason  $
6381                  drug10freqdate  $
6382                  drug10newfreq  $
6383                  drug10reason
6384                  drug11
6385                  drug11route
6386                  drug11dose
6387                  drug11unit
6388                  drug11dosechange  $
6389                  drug11dosereason  $
6390                  drug11dosedate  $
6391                  drug11newdose  $
6392                  drug11newunit  $
6393                  drug11frequency
6394                  drug11freqchange  $
6395                  drug11freqreason  $
6396                  drug11freqdate  $
6397                  drug11newfreq  $
6398                  drug11reason
6399                  drug12  $
6400                  drug12route  $
6401                  drug12dose  $
6402                  drug12unit  $
6403                  drug12dosechange  $
6404                  drug12dosereason  $
6405                  drug12dosedate  $
6406                  drug12newdose  $
6407                  drug12newunit  $
6408                  drug12frequency  $
6409                  drug12freqchange  $
6410                  drug12freqreason  $
6411                  drug12freqdate  $
6412                  drug12newfreq  $
6413                  drug12reason  $
6414                  drug13  $
6415                  drug13route  $
6416                  drug13dose  $
6417                  drug13unit  $
6418                  drug13dosechange  $
6419                  drug13dosereason  $
6420                  drug13dosedate  $
6421                  drug13newdose  $
6422                  drug13newunit  $
6423                  drug13frequency  $
6424                  drug13freqchange  $
6425                  drug13freqreason  $
6426                  drug13freqdate  $
6427                  drug13newfreq  $
6428                  drug13reason  $
6429                  drug14  $
6430                  drug14route  $
6431                  drug14dose  $
6432                  drug14unit  $
6433                  drug14dosechange  $
6434                  drug14dosereason  $
6435                  drug14dosedate  $
6436                  drug14newdose  $
6437                  drug14newunit  $
6438                  drug14frequency  $
6439                  drug14freqchange  $
6440                  drug14freqreason  $
6441                  drug14freqdate  $
6442                  drug14newfreq  $
6443                  drug14reason  $
6444                  drug15  $
6445                  drug15route  $
6446                  drug15dose  $
6447                  drug15unit  $
6448                  drug15dosechange  $
6449                  drug15dosereason  $
6450                  drug15dosedate  $
6451                  drug15newdose  $
6452                  drug15newunit  $
6453                  drug15frequency  $
6454                  drug15freqchange  $
6455                  drug15freqreason  $
6456                  drug15freqdate  $
6457                  drug15newfreq  $
6458                  drug15reason  $
6459                  drug1otherroute  $
6460                  drug1otherdose  $
6461                  drug1otherunit  $
6462                  drug1otherdosechange  $
6463                  drug1otherdosedate  $
6464                  drug1otherdosereason  $
6465                  drug1othernewdose  $
6466                  drug1othernewunit  $
6467                  drug1otherfrequency  $
6468                  drug1otherfreqchange  $
6469                  drug1otherfreqreason  $
6470                  drug1otherfreqdate  $
6471                  drug1othernewfreq  $
6472                  drug1otherreason  $
6473                  drug2otherroute  $
6474                  drug2otherdose  $
6475                  drug2otherunit  $
6476                  drug2otherdosechange  $
6477                  drug2otherdosereason  $
6478                  drug2otherdosedate  $
6479                  drug2othernewdose  $
6480                  drug2othernewunit  $
6481                  drug2otherfrequency  $
6482                  drug2otherfreqchange  $
6483                  drug2otherfreqreason  $
6484                  drug2otherfreqdate  $
6485                  drug2othernewfreq  $
6486                  drug2otherreason  $
6487                  drug3otherroute  $
6488                  drug3otherdose  $
6489                  drug3otherunit  $
6490                  drug3otherdosechange  $
6491                  drug3otherdosereason  $
6492                  drug3otherdosedate  $
6493                  drug3othernewdose  $
6494                  drug3othernewunit  $
6495                  drug3otherfrequency  $
6496                  drug3otherfreqchange  $
6497                  drug3otherfreqreason  $
6498                  drug3otherfreqdate  $
6499                  drug3othernewfreq  $
6500                  drug3otherreason  $
6501                  aeskin  $
6502                  aerash
6503                  aepruritis
6504                  aenausea
6505                  aeappetite  $
6506                  aemetallic
6507                  aehearing
6508                  aetinnitus  $
6509                  aebalance  $
6510                  aevision
6511                  aediarrhea
6512                  aeopticneuritis  $
6513                  aekidney  $
6514                  aeanemia  $
6515                  aeliver  $
6516                  aeairway  $
6517                  aeneuropathy  $
6518                  aecells  $
6519                  aethrombocytopenia  $
6520                  aetransaminitis  $
6521                  aeneutropenia  $
6522                  aeleukopenia  $
6523                  aeother
6524                  aeskindrug1  $
6525                  aeskindrug2  $
6526                  aeskindrug3  $
6527                  aeskindrug4  $
6528                  aeskindrug5  $
6529                  aerashdrug1
6530                  aerashdrug2  $
6531                  aerashdrug3  $
6532                  aerashdrug4  $
6533                  aerashdrug5  $
6534                  aepruritisdrug1
6535                  aepruritisdrug2
6536                  aepruritisdrug3  $
6537                  aepruritisdrug4  $
6538                  aepruritisdrug5  $
6539                  aenauseadrug1
6540                  aenauseadrug2
6541                  aenauseadrug3  $
6542                  aenauseadrug4  $
6543                  aenauseadrug5  $
6544                  aeappetitedrug1  $
6545                  aeappetitedrug2  $
6546                  aeappetitedrug3  $
6547                  aeappetitedrug4  $
6548                  aeappetitedrug5  $
6549                  aemetallicdrug1
6550                  aemetallicdrug2  $
6551                  aemetallicdrug3  $
6552                  aemetallicdrug4  $
6553                  aemetallicdrug5  $
6554                  aehearingdrug1
6555                  aehearingdrug2
6556                  aehearingdrug3  $
6557                  aehearingdrug4  $
6558                  aehearingdrug5  $
6559                  aetinnitusdrug1  $
6560                  aetinnitusdrug2  $
6561                  aetinnitusdrug3  $
6562                  aetinnitusdrug4  $
6563                  aetinnitusdrug5  $
6564                  aebalancedrug1  $
6565                  aebalancedrug2  $
6566                  aebalancedrug3  $
6567                  aebalancedrug4  $
6568                  aebalancedrug5  $
6569                  aevisiondrug1
6570                  aevisiondrug2  $
6571                  aevisiondrug3  $
6572                  aevisiondrug4  $
6573                  aevisiondrug5  $
6574                  aekidneydrug1  $
6575                  aekidneydrug2  $
6576                  aekidneydrug3  $
6577                  aekidneydrug4  $
6578                  aekidneydrug5  $
6579                  aediarrheadrug1
6580                  aediarrheadrug2
6581                  aediarrheadrug3  $
6582                  aediarrheadrug4  $
6583                  aediarrheadrug5  $
6584                  aeopticneuritisdrug1  $
6585                  aeopticneuritisdrug2  $
6586                  aeopticneuritisdrug3  $
6587                  aeopticneuritisdrug4  $
6588                  aeopticneuritisdrug5  $
6589                  aeanemiadrug1  $
6590                  aeanemiadrug2  $
6591                  aeanemiadrug3  $
6592                  aeanemiadrug4  $
6593                  aeanemiadrug5  $
6594                  aeliverdrug1  $
6595                  aeliverdrug2  $
6596                  aeliverdrug3  $
6597                  aeliverdrug4  $
6598                  aeliverdrug5  $
6599                  aeairwaydrug1  $
6600                  aeairwaydrug2  $
6601                  aeairwaydrug3  $
6602                  aeairwaydrug4  $
6603                  aeairwaydrug5  $
6604                  aeneuropathydrug1  $
6605                  aeneuropathydrug2  $
6606                  aeneuropathydrug3  $
6607                  aeneuropathydrug4  $
6608                  aeneuropathydrug5  $
6609                  aecellsdrug1  $
6610                  aecellsdrug2  $
6611                  aecellsdrug3  $
6612                  aecellsdrug4  $
6613                  aecellsdrug5  $
6614                  aethrombocytopeniadrug1  $
6615                  aethrombocytopeniadrug2  $
6616                  aethrombocytopeniadrug3  $
6617                  aethrombocytopeniadrug4  $
6618                  aethrombocytopeniadrug5  $
6619                  aetransaminitisdrug1  $
6620                  aetransaminitisdrug2  $
6621                  aetransaminitisdrug3  $
6622                  aetransaminitisdrug4  $
6623                  aetransaminitisdrug5  $
6624                  aeneutropeniadrug1  $
6625                  aeneutropeniadrug2  $
6626                  aeneutropeniadrug3  $
6627                  aeneutropeniadrug4  $
6628                  aeneutropeniadrug5  $
6629                  aeleukopeniadrug1  $
6630                  aeleukopeniadrug2  $
6631                  aeleukopeniadrug3  $
6632                  aeleukopeniadrug4  $
6633                  aeleukopeniadrug5  $
6634                  aeotherdrug1
6635                  aeotherdrug2  $
6636                  aeotherdrug3  $
6637                  aeotherdrug4  $
6638                  aeotherdrug5  $
6639                  antimycobacterial_therapy_comple
6640                  fvcraw1
6641                  fvcdate1
6642                  fev1raw1
6643                  fev1date1
6644                  ratiodate1
6645                  fvcdate2
6646                  fev1date2
6647                  ratiodate2
6648                  fvcdate3
6649                  fev1date3
6650                  ratiodate3
6651                  fvcdate4
6652                  fev1date4
6653                  ratiodate4
6654                  fvcdate5  $
6655                  fev1date5
6656                  ratiodate5  $
6657                  fvcdate6  $
6658                  fev1date6
6659                  ratiodate6  $
6660                  fvcdate7  $
6661                  fev1date7
6662                  ratiodate7  $
6663                  fvcdate8
6664                  fev1date8
6665                  ratiodate8
6666                  fvcdate9  $
6667                  fev1date9  $
6668                  ratiodate9  $
6669                  fvcdate10  $
6670                  fev1date10  $
6671                  ratiodate10  $
6672                  fvcdate11  $
6673                  fev1date11  $
6674                  ratiodate11  $
6675                  fvcdate12  $
6676                  fev1date12  $
6677                  ratiodate12  $
6678                  fvcdate13  $
6679                  fev1date13  $
6680                  ratiodate13  $
6681                  fvcdate14  $
6682                  fev1date14  $
6683                  ratiodate14  $
6684                  fvcdate15  $
6685                  fev1date15  $
6686                  ratiodate15  $
6687                  fvcdate16  $
6688                  fev1date16  $
6689                  ratiodate16  $
6690                  fvcdate17  $
6691                  fev1date17  $
6692                  ratiodate17  $
6693                  fvcdate18  $
6694                  fev1date18  $
6695                  ratiodate18  $
6696                  fvcdate19  $
6697                  fev1date19  $
6698                  ratiodate19  $
6699                  fvcdate20  $
6700                  fev1date20  $
6701                  ratiodate20  $
6702                  pft_complete
6703                  qolbdate  $
6704                  qolb_db_sc
6705                  qolb_gndr_sc
6706                  qolb_vaca_sc
6707                  qolb_marital_sc
6708                  qolb_racial_sc
6709                  qolb_edu_sc
6710                  qolb_work_sc
6711                  qolb_vig_sc
6712                  qolb_walk_sc
6713                  qolb_carry_sc
6714                  qolb_stair_sc
6715                  qolb_well_sc
6716                  qolb_tired_sc
6717                  qolb_anx_sc
6718                  qolb_energ_sc
6719                  qolb_exhaust_sc
6720                  qolb_sad_sc
6721                  qolb_depr_sc
6722                  qolb_treat_sc
6723                  qolb_makediff_sc
6724                  qolb_eachday_sc
6725                  qolb_fittreat_sc
6726                  qolb_nowhealth_sc
6727                  qolb_limvig_sc
6728                  qolb_stayhome_sc
6729                  qolb_expossick_sc
6730                  qolb_imt_sc
6731                  qolb_normlife_sc
6732                  qolb_worseheal_sc
6733                  qolb_bothoth_sc
6734                  qolb_lone_sc
6735                  qolb_health_sc
6736                  qolb_futplan_sc
6737                  qolb_embarcough_sc
6738                  qolb_keepup_sc
6739                  qolb_getinway_sc
6740                  qolb_heartcong_sc
6741                  qolb_coughday_sc
6742                  qolb_coughmuc_sc
6743                  qolb_sputcol_sc
6744                  qolb_shortbreath_sc
6745                  qolb_wheez_sc
6746                  qolb_chestp_sc
6747                  qolb_shortbreathtalk_sc
6748                  qolb_midnight_sc
6749                  qolb_scr_pfd
6750                  qolb_scr_rfd
6751                  qolb_scr_vd
6752                  qolb_scr_efd
6753                  qolb_scr_sfd
6754                  qolb_scr_tbd
6755                  qolb_scr_hpd
6756                  qolb_scr_rsd
6757                  quality_of_life_bronchiectasis_q
6758                  qolsideeffects
6759                  qoleating
6760                  qolhealtheat
6761                  qolhealththin
6762                  qolhealthdiff
6763                  qolhealthapp
6764                  qolhealthheavy
6765                  qolhealthfreq
6766                  qolfeeleat
6767                  qolfeelwt
6768                  qolfeelfev
6769                  qolfeelsleep
6770                  qolfeelpain
6771                  qolfeelcold
6772                  qolfeelsmell
6773                  qolfeeltaste
6774                  qolfeelmouth
6775                  qolfeelmem
6776                  qoloftenconst
6777                  qoloftenrefl
6778                  qoloftenbloat
6779                  qoloftengas
6780                  qoloftendia
6781                  qoloftenabd
6782                  quality_of_life_bronchiectasis_n
6783                  sgrq_current_health
6784                  sgrq1
6785                  sgrq2
6786                  sgrq3
6787                  sgrq4
6788                  sgrq5
6789                  sgrq6
6790                  sgrq7
6791                  sgrq8
6792                  sgrqimport
6793                  sgrqjob
6794                  sgrqsobsit
6795                  sgrqsobdress
6796                  sgrqsobhouse
6797                  sgrqsoblevel
6798                  sgrqsobstair
6799                  sgrqsobhill
6800                  sgrqsobsport
6801                  sgrqcoughhurt
6802                  sgrqcoughtire
6803                  sgrqcoughtalk
6804                  sgrqcoughbend
6805                  sgrqcoughsleep
6806                  sgrqcoughvtire
6807                  sgrqrespemb
6808                  sgrqrespnuis
6809                  sgrqresppanic
6810                  sgrqrespcont
6811                  sgrqrespnobet
6812                  sgrqrespfrail
6813                  sgrqrespexc
6814                  sgrqrespeff
6815                  sgrqtxhelp
6816                  sgrqtxmed
6817                  sgrqtxside
6818                  sgrqtxlife
6819                  sgrqactdress
6820                  sgrqactbath
6821                  sgrqactslow
6822                  sgrqactchore
6823                  sgrqactstair
6824                  sgrqactwalk
6825                  sgrqactlight
6826                  sgrqactheavy
6827                  sgrqactvheav
6828                  sgrqdaysport
6829                  sgrqdayent
6830                  sgrqdayshop
6831                  sgrqdaychore
6832                  sgrqdaymove
6833                  sgrqaffect
6834                  st_georges_respiratory_questionn
6835                  phqdate  $
6836                  phq_1
6837                  phq_2
6838                  phq_3
6839                  phq_4
6840                  phq_5
6841                  phq_6
6842                  phq_7
6843                  phq_8
6844                  phq_total
6845                  phq_extra
6846                  phq8_complete
6847                  gaddate  $
6848                  gad_1
6849                  gad_2
6850                  gad_3
6851                  gad_4
6852                  gad_5
6853                  gad_6
6854                  gad_7
6855                  gad_total
6856                  gad7_complete
6857                  fu_status
6858                  reviewdate_fu
6859                  blooddrawdate_v2
6860                  alive_fu
6861                  smoke_fu
6862                  vitd_fu
6863                  vitdlevel1_fu
6864                  vitdlevel2_fu
6865                  weight_yr1
6866                  weightmeas_yr1
6867                  weight_yr2
6868                  weightmeas_yr2
6869                  demographics_followup_complete
6870                  ntm_fu
6871                  ntmsymptom_fu
6872                  ntmradiography_fu  $
6873                  ntmmicro_fu
6874                  ntmdiagnoses_fu  $
6875                  ntmother_fu  $
6876                  overallntm_fu
6877                  radiotreat_fu
6878                  sxtreat_fu
6879                  inittreat
6880                  reviewstatus_fu
6881                  update_ntm_status_complete
6882                  surg_fu
6883                  surgdate_fu  $
6884                  treatafter
6885                  treat_fu
6886                  treatats_fu
6887                  treatstop_fu___1
6888                  treatstop_fu___2
6889                  treatstop_fu___3
6890                  treatstop_fu___4
6891                  clintrial_fu
6892                  clintriallist_fu___1
6893                  clintriallist_fu___2
6894                  clintriallist_fu___3
6895                  clintriallist_fu___4
6896                  clintriallist_fu___5
6897                  clintriallist_fu___6
6898                  clintriallist_fu___7
6899                  ins112startdate_fu  $
6900                  ins212startdate_fu  $
6901                  ins312startdate_fu  $
6902                  insiirstartdate_fu  $
6903                  clofazstartdate_fu  $
6904                  mac2v3startdate_fu  $
6905                  othtrialstartdate_fu  $
6906                  drug16
6907                  drugroute16
6908                  drugdose16
6909                  drugunit16
6910                  drugdosechange16
6911                  drugdosereason16
6912                  drugdosedate16
6913                  drugnewdose16
6914                  drugnewunit16
6915                  drugfrequency16
6916                  drugfreqchange16
6917                  drugfreqreason16
6918                  drugfreqdate16
6919                  drugnewfreq16
6920                  drugreason16
6921                  drug17
6922                  drugstart17
6923                  drugdose17
6924                  drugunit17
6925                  drugdosechange17
6926                  drugdosereason17  $
6927                  drugdosedate17  $
6928                  drugnewdose17  $
6929                  drugnewunit17  $
6930                  drugfrequency17
6931                  drugfreqchange17
6932                  drugfreqreason17
6933                  drugfreqdate17
6934                  drugnewfreq17
6935                  drugreason17
6936                  drug18
6937                  drugroute18
6938                  drugdose18
6939                  drugunit18
6940                  drugdosechange18
6941                  drugdosereason18
6942                  drugdosedate18
6943                  drugnewdose18
6944                  drugnewunit18
6945                  drugfrequency18
6946                  drugfreqchange18
6947                  drugfreqreason18  $
6948                  drugfreqdate18
6949                  drugnewfreq18
6950                  drugreason18
6951                  drug19
6952                  drugroute19
6953                  drugdose19
6954                  drugunit19
6955                  drugdosechange19
6956                  drugdosereason19  $
6957                  drugdosedate19  $
6958                  drugnewdose19  $
6959                  drugnewunit19  $
6960                  drugfrequency19
6961                  drugfreqchange19
6962                  drugfreqreason19
6963                  drugfreqdate19
6964                  drugnewfreq19
6965                  drugreason19
6966                  drug20
6967                  drugroute20
6968                  drugdose20
6969                  drugunit20
6970                  drugdosechange20
6971                  drugdosereason20  $
6972                  drugdosedate20  $
6973                  drugnewdose20  $
6974                  drugnewunit20  $
6975                  drugfrequency20
6976                  drugfreqchange20
6977                  drugfreqreason20  $
6978                  drugfreqdate20  $
6979                  drugnewfreq20  $
6980                  drugreason20
6981                  drug21
6982                  drugroute21
6983                  drugdose21
6984                  drugunit21
6985                  drugdosechange21
6986                  drugdosereason21  $
6987                  drugdosedate21  $
6988                  drugnewdose21  $
6989                  drugnewunit21  $
6990                  drugfrequency21
6991                  drugfreqchange21
6992                  drugfreqreason21
6993                  drugfreqdate21
6994                  drugnewfreq21
6995                  drugreason21  $
6996                  drug22
6997                  drugroute22
6998                  drugdose22
6999                  drugunit22
7000                  drugdosechange22
7001                  drugdosereason22  $
7002                  drugdosedate22  $
7003                  drugnewdose22  $
7004                  drugnewunit22  $
7005                  drugfrequency22
7006                  drugfreqchange22
7007                  drugfreqreason22  $
7008                  drugfreqdate22  $
7009                  drugnewfreq22  $
7010                  drugreason22
7011                  drug23
7012                  drugroute23
7013                  drugdose23
7014                  drugunit23
7015                  drugdosechange23
7016                  drugdosereason23  $
7017                  drugdosedate23  $
7018                  drugnewdose23  $
7019                  drugnewunit23  $
7020                  drugfrequency23
7021                  drugfreqchange23
7022                  drugfreqreason23  $
7023                  drugfreqdate23  $
7024                  drugnewfreq23  $
7025                  drugreason23
7026                  drug24  $
7027                  drugroute24  $
7028                  drugdose24  $
7029                  drugunit24  $
7030                  drugdosechange24  $
7031                  drugdosereason24  $
7032                  drugdosedate24  $
7033                  drugnewdose24  $
7034                  drugnewunit24  $
7035                  drugfrequency24  $
7036                  drugfreqchange24  $
7037                  drugfreqreason24  $
7038                  drugfreqdate24  $
7039                  drugnewfreq24  $
7040                  drugreason24  $
7041                  drug25  $
7042                  drugroute25  $
7043                  drugdose25  $
7044                  drugunit25  $
7045                  drugdosechange25  $
7046                  drugdosereason25  $
7047                  drugdosedate25  $
7048                  drugnewdose25  $
7049                  drugnewunit25  $
7050                  drugfrequency25  $
7051                  drugfreqchange25  $
7052                  drugfreqreason25  $
7053                  drugfreqdate25  $
7054                  drugnewfreq25  $
7055                  drugreason25  $
7056                  drugotherroute4  $
7057                  drugotherdose4  $
7058                  drugotherunit4  $
7059                  drugotherdosechange4  $
7060                  drugotherdosedate4  $
7061                  drugotherdosereason4  $
7062                  drugothernewdose4  $
7063                  drugothernewunit4  $
7064                  drugotherfrequency4  $
7065                  drugotherfreqchange4  $
7066                  drugotherfreqreason4  $
7067                  drugotherfreqdate4  $
7068                  drugothernewfreq4  $
7069                  drugotherreason4  $
7070                  drugotherroute5  $
7071                  drugotherdose5  $
7072                  drugotherunit5  $
7073                  drugotherdosechange5  $
7074                  drugotherdosedate5  $
7075                  drugotherdosereason5  $
7076                  drugothernewdose5  $
7077                  drugothernewunit5  $
7078                  drugotherfrequency5  $
7079                  drugotherfreqchange5  $
7080                  drugotherfreqreason5  $
7081                  drugotherfreqdate5  $
7082                  drugothernewfreq5  $
7083                  drugotherreason5  $
7084                  drugotherroute6  $
7085                  drugotherdose6  $
7086                  drugotherunit6  $
7087                  drugotherdosechange6  $
7088                  drugotherdosedate6  $
7089                  drugotherdosereason6  $
7090                  drugothernewdose6  $
7091                  drugothernewunit6  $
7092                  drugotherfrequency6  $
7093                  drugotherfreqchange6  $
7094                  drugotherfreqreason6  $
7095                  drugotherfreqdate6  $
7096                  drugothernewfreq6  $
7097                  drugotherreason6  $
7098                  aeskin_fu  $
7099                  aerash_fu
7100                  aepruritis_fu  $
7101                  aenausea_fu  $
7102                  aeappetite_fu  $
7103                  aemetallic_fu  $
7104                  aehearing_fu  $
7105                  aetinnitus_fu  $
7106                  aebalance_fu  $
7107                  aevision_fu  $
7108                  aediarrhea_fu
7109                  aeopticneuritis_fu  $
7110                  aekidney_fu  $
7111                  aeanemia_fu  $
7112                  aeliver_fu  $
7113                  aeairway_fu  $
7114                  aeneuropathy_fu  $
7115                  aecells_fu  $
7116                  aethrombocytopenia_fu  $
7117                  aetransaminitis_fu  $
7118                  aeneutropenia_fu  $
7119                  aeleukopenia_fu  $
7120                  aeother_fu
7121                  aeskindrug6  $
7122                  aeskindrug7  $
7123                  aeskindrug8  $
7124                  aeskindrug9  $
7125                  aeskindrug10  $
7126                  aerashdrug6
7127                  aerashdrug7
7128                  aerashdrug8  $
7129                  aerashdrug9  $
7130                  aerashdrug10  $
7131                  aepruritisdrug6  $
7132                  aepruritisdrug7  $
7133                  aepruritisdrug8  $
7134                  aepruritisdrug9  $
7135                  aepruritisdrug10  $
7136                  aenauseadrug6  $
7137                  aenauseadrug7  $
7138                  aenauseadrug8  $
7139                  aenauseadrug9  $
7140                  aenauseadrug10  $
7141                  aeappetitedrug6  $
7142                  aeappetitedrug7  $
7143                  aeappetitedrug8  $
7144                  aeappetitedrug9  $
7145                  aeappetitedrug10  $
7146                  aemetallicdrug6  $
7147                  aemetallicdrug7  $
7148                  aemetallicdrug8  $
7149                  aemetallicdrug9  $
7150                  aemetallicdrug10  $
7151                  aehearingdrug6  $
7152                  aehearingdrug7  $
7153                  aehearingdrug8  $
7154                  aehearingdrug9  $
7155                  aehearingdrug10  $
7156                  aetinnitusdrug6  $
7157                  aetinnitusdrug7  $
7158                  aetinnitusdrug8  $
7159                  aetinnitusdrug9  $
7160                  aetinnitusdrug10  $
7161                  aebalancedrug6  $
7162                  aebalancedrug7  $
7163                  aebalancedrug8  $
7164                  aebalancedrug9  $
7165                  aebalancedrug10  $
7166                  aevisiondrug6  $
7167                  aevisiondrug7  $
7168                  aevisiondrug8  $
7169                  aevisiondrug9  $
7170                  aevisiondrug10  $
7171                  aekidneydrug6  $
7172                  aekidneydrug7  $
7173                  aekidneydrug8  $
7174                  aekidneydrug9  $
7175                  aekidneydrug10  $
7176                  aediarrheadrug6
7177                  aediarrheadrug7  $
7178                  aediarrheadrug8  $
7179                  aediarrheadrug9  $
7180                  aediarrheadrug10  $
7181                  aeopticneuritisdrug6  $
7182                  aeopticneuritisdrug7  $
7183                  aeopticneuritisdrug8  $
7184                  aeopticneuritisdrug9  $
7185                  aeopticneuritisdrug10  $
7186                  aeanemiadrug6  $
7187                  aeanemiadrug7  $
7188                  aeanemiadrug8  $
7189                  aeanemiadrug9  $
7190                  aeanemiadrug10  $
7191                  aeliverdrug6  $
7192                  aeliverdrug7  $
7193                  aeliverdrug8  $
7194                  aeliverdrug9  $
7195                  aeliverdrug10  $
7196                  aeairwaydrug6  $
7197                  aeairwaydrug7  $
7198                  aeairwaydrug8  $
7199                  aeairwaydrug9  $
7200                  aeairwaydrug10  $
7201                  aeneuropathydrug6  $
7202                  aeneuropathydrug7  $
7203                  aeneuropathydrug8  $
7204                  aeneuropathydrug9  $
7205                  aeneuropathydrug10  $
7206                  aecellsdrug6  $
7207                  aecellsdrug7  $
7208                  aecellsdrug8  $
7209                  aecellsdrug9  $
7210                  aecellsdrug10  $
7211                  aethrombocytopeniadrug6  $
7212                  aethrombocytopeniadrug7  $
7213                  aethrombocytopeniadrug8  $
7214                  aethrombocytopeniadrug9  $
7215                  aethrombocytopeniadrug10  $
7216                  aetransaminitisdrug6  $
7217                  aetransaminitisdrug7  $
7218                  aetransaminitisdrug8  $
7219                  aetransaminitisdrug9  $
7220                  aetransaminitisdrug10  $
7221                  aeneutropeniadrug6  $
7222                  aeneutropeniadrug7  $
7223                  aeneutropeniadrug8  $
7224                  aeneutropeniadrug9  $
7225                  aeneutropeniadrug10  $
7226                  aeleukopeniadrug6  $
7227                  aeleukopeniadrug7  $
7228                  aeleukopeniadrug8  $
7229                  aeleukopeniadrug9  $
7230                  aeleukopeniadrug10  $
7231                  aeotherdrug6
7232                  aeotherdrug7  $
7233                  aeotherdrug8  $
7234                  aeotherdrug9  $
7235                  aeotherdrug10  $
7236                  ntm_therapy_followup_complete
7237                  airclear
7238                  airdevice___1
7239                  airdevice___2
7240                  airdevice___3
7241                  airdevice___4
7242                  airdevice___5
7243                  airclear_fu
7244                  airdevice_fu___1
7245                  airdevice_fu___2
7246                  airdevice_fu___3
7247                  airdevice_fu___4
7248                  airdevice_fu___5
7249                  airway_clearance_complete
7250                  micropseudomult_fu
7251                  microafb21
7252                  microafbresult21
7253                  microsite21
7254                  microresult21
7255                  micromulti21
7256                  microresultmulti21  $
7257                  microafb22
7258                  microafbresult22
7259                  microsite22
7260                  microresult22
7261                  micromulti22
7262                  microresultmulti22
7263                  microafb23
7264                  microafbresult23
7265                  microsite23
7266                  microresult23
7267                  micromulti23
7268                  microresultmulti23  $
7269                  microafb24
7270                  microafbresult24
7271                  microsite24
7272                  microresult24
7273                  micromulti24
7274                  microresultmulti24  $
7275                  microafb25
7276                  microafbresult25
7277                  microsite25
7278                  microresult25
7279                  micromulti25
7280                  microresultmulti25  $
7281                  microafb26
7282                  microafbresult26
7283                  microsite26
7284                  microresult26
7285                  micromulti26
7286                  microresultmulti26
7287                  microafb27
7288                  microafbresult27
7289                  microsite27
7290                  microresult27
7291                  micromulti27
7292                  microresultmulti27  $
7293                  microafb28
7294                  microafbresult28
7295                  microsite28
7296                  microresult28
7297                  micromulti28
7298                  microresultmulti28  $
7299                  microafb29
7300                  microafbresult29
7301                  microsite29
7302                  microresult29
7303                  micromulti29
7304                  microresultmulti29  $
7305                  microafb30
7306                  microafbresult30
7307                  microsite30
7308                  microresult30
7309                  micromulti30
7310                  microresultmulti30  $
7311                  microbiology_followup_complete
7312                  suscept___1
7313                  suscept___2
7314                  suscept___3
7315                  suscept___4
7316                  suscept___5
7317                  suscept___6
7318                  labsusc1
7319                  susceptid1
7320                  amimic1
7321                  amiltgte1
7322                  clarimic1
7323                  clariltgte1
7324                  clofazmic1
7325                  clofazltgte1
7326                  cipromic1
7327                  ciproltgte1
7328                  moximic1
7329                  moxiltgte1
7330                  lzdmic1
7331                  lzdltgte1
7332                  rifmic1
7333                  rifltgte1
7334                  rfbmic1
7335                  rfbltgte1
7336                  embmic1
7337                  embltgte1
7338                  rrifembmic1
7339                  rrifembltgte1  $
7340                  erifembmic1
7341                  erifembltgte1  $
7342                  tigmic1
7343                  tigltgte1
7344                  imipmic1
7345                  imipltgte1
7346                  cefomic1
7347                  cefoltgte1
7348                  doxymic1
7349                  doxyltgte1
7350                  augmmic1  $
7351                  augmltgte1  $
7352                  ttmpsulmic1
7353                  ttmpsulltgte1  $
7354                  stmpsulmic1
7355                  stmpsulltgte1  $
7356                  labsusc2
7357                  susceptid2
7358                  amimic2
7359                  amiltgte2
7360                  clarimic2
7361                  clariltgte2  $
7362                  clofazmic2
7363                  clofazltgte2
7364                  cipromic2
7365                  ciproltgte2
7366                  moximic2
7367                  moxiltgte2
7368                  lzdmic2
7369                  lzdltgte2  $
7370                  rifmic2
7371                  rifltgte2
7372                  rfbmic2
7373                  rfbltgte2
7374                  embmic2
7375                  embltgte2  $
7376                  rrifembmic2
7377                  rrifembltgte2
7378                  erifembmic2
7379                  erif
7380                  VAR2181  $
7381                  VAR2182  $
7382                  VAR2183  $
7383                  VAR2184  $
7384                  VAR2185  $
7385                  VAR2186  $
7386                  VAR2187  $
7387                  VAR2188  $
7388                  VAR2189  $
7389                  VAR2190  $
7390                  VAR2191  $
7391                  VAR2192  $
7392                  VAR2193  $
7393                  VAR2194  $
7394                  VAR2195  $
7395                  VAR2196  $
7396                  VAR2197  $
7397                  VAR2198  $
7398                  VAR2199  $
7399                  VAR2200  $
7400                  VAR2201  $
7401                  VAR2202  $
7402                  VAR2203  $
7403                  VAR2204  $
7404                  VAR2205  $
7405                  VAR2206  $
7406                  VAR2207  $
7407                  VAR2208  $
7408                  VAR2209  $
7409                  VAR2210  $
7410                  VAR2211  $
7411                  VAR2212  $
7412                  VAR2213  $
7413                  VAR2214  $
7414                  VAR2215  $
7415                  VAR2216  $
7416                  VAR2217  $
7417                  VAR2218  $
7418                  VAR2219  $
7419                  VAR2220  $
7420                  VAR2221  $
7421                  VAR2222  $
7422                  VAR2223  $
7423                  VAR2224  $
7424                  VAR2225  $
7425                  VAR2226  $
7426                  VAR2227  $
7427                  VAR2228  $
7428                  VAR2229  $
7429                  VAR2230  $
7430                  VAR2231  $
7431                  VAR2232  $
7432                  VAR2233  $
7433                  VAR2234  $
7434                  VAR2235  $
7435                  VAR2236  $
7436                  VAR2237  $
7437                  VAR2238  $
7438                  VAR2239  $
7439                  VAR2240  $
7440                  VAR2241  $
7441                  VAR2242  $
7442                  VAR2243  $
7443                  VAR2244  $
7444                  VAR2245  $
7445                  VAR2246  $
7446                  VAR2247  $
7447                  VAR2248  $
7448                  VAR2249  $
7449                  VAR2250  $
7450                  VAR2251  $
7451                  VAR2252  $
7452                  VAR2253  $
7453                  VAR2254  $
7454                  VAR2255  $
7455                  VAR2256  $
7456                  VAR2257  $
7457                  VAR2258  $
7458                  VAR2259  $
7459                  VAR2260  $
7460                  VAR2261  $
7461                  VAR2262  $
7462                  VAR2263  $
7463                  VAR2264  $
7464                  VAR2265  $
7465                  VAR2266  $
7466                  VAR2267  $
7467                  VAR2268  $
7468                  VAR2269  $
7469                  VAR2270  $
7470                  VAR2271
7471                  VAR2272
7472                  VAR2273
7473                  VAR2274
7474                  VAR2275
7475                  VAR2276
7476                  VAR2277
7477                  VAR2278
7478                  VAR2279
7479                  VAR2280
7480                  VAR2281  $
7481                  VAR2282  $
7482                  VAR2283
7483                  VAR2284  $
7484                  VAR2285
7485                  VAR2286
7486                  VAR2287
7487                  VAR2288
7488                  VAR2289
7489                  VAR2290
7490                  VAR2291
7491                  VAR2292
7492                  VAR2293
7493                  VAR2294
7494                  VAR2295
7495                  VAR2296
7496                  VAR2297
7497                  VAR2298
7498                  VAR2299
7499                  VAR2300
7500                  VAR2301
7501                  VAR2302
7502                  VAR2303
7503                  VAR2304
7504                  VAR2305
7505                  VAR2306
7506                  VAR2307
7507                  VAR2308  $
7508                  VAR2309
7509                  VAR2310  $
7510                  VAR2311  $
7511                  VAR2312
7512                  VAR2313  $
7513                  VAR2314
7514                  VAR2315
7515                  VAR2316
7516                  VAR2317
7517                  VAR2318
7518                  VAR2319
7519                  VAR2320
7520                  VAR2321
7521                  VAR2322
7522                  VAR2323
7523                  VAR2324
7524                  VAR2325
7525                  VAR2326
7526                  VAR2327
7527                  VAR2328
7528                  VAR2329
7529                  VAR2330
7530                  VAR2331
7531                  VAR2332  $
7532                  VAR2333  $
7533                  VAR2334  $
7534                  VAR2335  $
7535                  VAR2336  $
7536                  VAR2337  $
7537                  VAR2338  $
7538                  VAR2339  $
7539                  VAR2340  $
7540                  VAR2341  $
7541                  VAR2342  $
7542                  VAR2343  $
7543                  VAR2344
7544                  VAR2345
7545                  VAR2346
7546                  VAR2347
7547                  VAR2348
7548                  VAR2349
7549                  VAR2350  $
7550                  VAR2351
7551                  VAR2352
7552                  VAR2353
7553                  VAR2354
7554                  VAR2355
7555                  VAR2356
7556                  VAR2357  $
7557                  VAR2358
7558                  VAR2359
7559                  VAR2360
7560                  VAR2361
7561                  VAR2362
7562                  VAR2363
7563                  VAR2364
7564                  VAR2365
7565                  VAR2366
7566                  VAR2367
7567                  VAR2368
7568                  VAR2369
7569                  VAR2370
7570                  VAR2371
7571                  VAR2372
7572                  VAR2373
7573                  VAR2374
7574                  VAR2375
7575                  VAR2376
7576                  VAR2377
7577                  VAR2378
7578                  VAR2379
7579                  VAR2380
7580                  VAR2381
7581                  VAR2382
7582                  VAR2383
7583                  VAR2384
7584                  VAR2385
7585                  VAR2386
7586                  VAR2387
7587                  VAR2388
7588                  VAR2389
7589                  VAR2390
7590                  VAR2391
7591                  VAR2392
7592                  VAR2393
7593                  VAR2394
7594                  VAR2395
7595                  VAR2396
7596                  VAR2397
7597                  VAR2398
7598                  VAR2399
7599                  VAR2400
7600                  VAR2401
7601                  VAR2402
7602                  VAR2403
7603                  VAR2404
7604                  VAR2405
7605                  VAR2406
7606                  VAR2407
7607                  VAR2408
7608                  VAR2409
7609                  VAR2410
7610                  VAR2411
7611                  VAR2412
7612                  VAR2413
7613                  VAR2414
7614                  VAR2415
7615                  VAR2416
7616                  VAR2417
7617                  VAR2418
7618                  VAR2419
7619                  VAR2420
7620                  VAR2421
7621                  VAR2422
7622                  VAR2423
7623                  VAR2424
7624                  VAR2425
7625                  VAR2426
7626                  VAR2427
7627                  VAR2428
7628                  VAR2429
7629                  VAR2430
7630                  VAR2431
7631                  VAR2432
7632                  VAR2433
7633                  VAR2434
7634                  VAR2435
7635                  VAR2436
7636                  VAR2437
7637                  VAR2438
7638                  VAR2439
7639                  VAR2440
7640                  VAR2441
7641                  VAR2442
7642                  VAR2443
7643                  VAR2444
7644                  VAR2445
7645                  VAR2446
7646                  VAR2447
7647                  VAR2448
7648                  VAR2449
7649                  VAR2450
7650                  VAR2451
7651                  VAR2452
7652                  VAR2453
7653                  VAR2454
7654                  VAR2455
7655                  VAR2456
7656                  VAR2457
7657                  VAR2458
7658                  VAR2459
7659                  VAR2460  $
7660                  VAR2461
7661                  VAR2462  $
7662                  VAR2463
7663                  VAR2464  $
7664                  VAR2465
7665                  VAR2466  $
7666                  VAR2467
7667                  VAR2468  $
7668                  VAR2469
7669                  VAR2470  $
7670                  VAR2471
7671                  VAR2472  $
7672                  VAR2473
7673                  VAR2474  $
7674                  VAR2475
7675                  VAR2476  $
7676                  VAR2477  $
7677                  VAR2478
7678                  VAR2479
7679                  VAR2480
7680                  VAR2481  $
7681                  VAR2482
7682                  VAR2483  $
7683                  VAR2484
7684                  VAR2485  $
7685                  VAR2486
7686                  VAR2487  $
7687                  VAR2488
7688                  VAR2489  $
7689                  VAR2490  $
7690                  VAR2491  $
7691                  VAR2492  $
7692                  VAR2493  $
7693                  VAR2494  $
7694                  VAR2495  $
7695                  VAR2496
7696                  VAR2497
7697                  VAR2498
7698                  VAR2499
7699                  VAR2500
7700                  VAR2501
7701                  VAR2502  $
7702                  VAR2503
7703                  VAR2504  $
7704                  VAR2505  $
7705                  VAR2506  $
7706                  VAR2507  $
7707                  VAR2508
7708                  VAR2509
7709                  VAR2510
7710                  VAR2511  $
7711                  VAR2512
7712                  VAR2513  $
7713                  VAR2514
7714                  VAR2515
7715                  VAR2516
7716                  VAR2517
7717                  VAR2518
7718                  VAR2519
7719                  VAR2520
7720                  VAR2521
7721                  VAR2522
7722                  VAR2523
7723                  VAR2524
7724                  VAR2525
7725                  VAR2526
7726                  VAR2527
7727                  VAR2528
7728                  VAR2529
7729                  VAR2530
7730                  VAR2531
7731                  VAR2532
7732                  VAR2533
7733                  VAR2534
7734                  VAR2535
7735                  VAR2536
7736                  VAR2537
7737                  VAR2538
7738                  VAR2539
7739                  VAR2540
7740                  VAR2541
7741                  VAR2542
7742                  VAR2543
7743                  VAR2544
7744                  VAR2545
7745                  VAR2546
7746                  VAR2547
7747                  VAR2548
7748                  VAR2549
7749                  VAR2550
7750                  VAR2551
7751                  VAR2552
7752                  VAR2553
7753                  VAR2554
7754                  VAR2555
7755                  VAR2556
7756                  VAR2557
7757                  VAR2558
7758                  VAR2559
7759                  VAR2560
7760                  VAR2561
7761                  VAR2562
7762                  VAR2563  $
7763                  VAR2564  $
7764                  VAR2565  $
7765                  VAR2566  $
7766                  VAR2567  $
7767                  VAR2568  $
7768                  VAR2569  $
7769                  VAR2570  $
7770                  VAR2571  $
7771                  VAR2572  $
7772                  VAR2573
7773                  VAR2574
7774                  VAR2575
7775                  VAR2576
7776                  VAR2577
7777                  VAR2578
7778                  VAR2579
7779                  VAR2580
7780                  VAR2581
7781                  VAR2582
7782      ;
7783      if _ERROR_ then call symputx('_EFIERR_',1);  /* set ERROR detection macro variable */
7784      run;

NOTE: The infile 'X:\SPH\Restricted\Winthrop\Current Projects\Biobank
      OCTRI\SAS\OCTRI4259NTMDiseaseP_DATA_2023-09-14_1057.csv' is:

      Filename=X:\SPH\Restricted\Winthrop\Current Projects\Biobank
      OCTRI\SAS\OCTRI4259NTMDiseaseP_DATA_2023-09-14_1057.csv,
      RECFM=V,LRECL=32767,File Size (bytes)=2318647,
      Last Modified=14Sep2023:10:58:14,
      Create Time=14Sep2023:10:58:14

NOTE: 614 records were read from the infile 'X:\SPH\Restricted\Winthrop\Current
      Projects\Biobank OCTRI\SAS\OCTRI4259NTMDiseaseP_DATA_2023-09-14_1057.csv'.
      The minimum record length was 3393.
      The maximum record length was 4400.
NOTE: The data set WORK.REDCAP has 614 observations and 2582 variables.
NOTE: DATA statement used (Total process time):
      real time           3.10 seconds
      cpu time            2.53 seconds


614 rows created in WORK.REDCAP from X:\SPH\Restricted\Winthrop\Current Projects\Biobank
OCTRI\SAS\OCTRI4259NTMDiseaseP_DATA_2023-09-14_1057.csv.



NOTE: WORK.REDCAP data set was successfully created.
NOTE: The data set WORK.REDCAP has 614 observations and 2582 variables.
NOTE: PROCEDURE IMPORT used (Total process time):
      real time           32.15 seconds
      cpu time            31.01 seconds


7785
7786  proc import file="X:\SPH\Restricted\Winthrop\Current Projects\Biobank
7786! OCTRI\SAS\OCTRI_data.xlsx"
7787  out=work.access
7788  dbms=xlsx;
7789  run;

NOTE:    Variable Name Change.  Study Status -> Study_Status
NOTE:    Variable Name Change.  Date of consent -> Date_of_consent
NOTE:    Variable Name Change.  Date of 1st draw -> Date_of_1st_draw
NOTE:    Variable Name Change.  Date of 2nd draw -> Date_of_2nd_draw
NOTE:    Variable Name Change.  Date of 3rd draw -> Date_of_3rd_draw
NOTE:    Variable Name Change.  V2-V3 Due (Month) -> VAR11
NOTE:    Variable Name Change.  V2-V3 status -> V2_V3_status
NOTE:    Variable Name Change.  Enrolled in eCRIS -> Enrolled_in_eCRIS
NOTE:    Variable Name Change.  Discontinued in eCRIS -> Discontinued_in_eCRIS
NOTE:    Variable Name Change.  Missed V2 -> Missed_V2
NOTE:    Variable Name Change.  Missed V3 -> Missed_V3
NOTE:    Variable Name Change.  Extra-pulm -> Extra_pulm
NOTE:    Variable Name Change.  recent called -> recent_called
NOTE:    Variable Name Change.  V2 letter mailed -> V2_letter_mailed
NOTE:    Variable Name Change.  ROI collected -> ROI_collected
NOTE:    Variable Name Change.  ROI needed -> ROI_needed
NOTE:    Variable Name Change.  first called -> first_called
NOTE:    Variable Name Change.  Date of Reconsent -> Date_of_Reconsent
NOTE:    Variable Name Change.  Wants results -> Wants_results
NOTE:    Variable Name Change.  Did the participant complete the ->
      Did_the_participant_complete_the
NOTE:    Variable Name Change...  Did_the_participant_complete_th1 ->
      Did_the_participant_complete_th1
NOTE:    Variable Name Change.  Second inducement -> Second_inducement
NOTE:    Variable Name Change.  refuse 2nd draw -> refuse_2nd_draw
NOTE:    Variable Name Change...  Did_the_participant_complete_th2 ->
      Did_the_participant_complete_th2
NOTE:    Variable Name Change...  Did_the_participant_complete_th3 ->
      Did_the_participant_complete_th3
NOTE:    Variable Name Change.  Third inducement -> Third_inducement
NOTE:    Variable Name Change.  refuse 3rd draw -> refuse_3rd_draw
NOTE:    Variable Name Change.  2nd fast -> _2nd_fast
NOTE:    Variable Name Change.  Clofaz? -> Clofaz_
NOTE:    Variable Name Change.  Appt Sched? -> Appt_Sched_
NOTE:    Variable Name Change.  Appt Date? -> Appt_Date_
NOTE:    Variable Name Change.  Appt Time? -> Appt_Time_
NOTE:    Variable Name Change.  Appt Location? -> Appt_Location_
NOTE:    Variable Name Change.  Person setting up appt -> Person_setting_up_appt
NOTE:    Variable Name Change.  CRBO email needed -> CRBO_email_needed
NOTE:    Variable Name Change.  CRBO email done -> CRBO_email_done
NOTE:    Variable Name Change.  EPIC orders needed -> EPIC_orders_needed
NOTE:    Variable Name Change.  EPIC orders entered -> EPIC_orders_entered
NOTE:    Variable Name Change.  Scheduling notes -> Scheduling_notes
NOTE:    Variable Name Change.  Interested 2wk NTMmod -> Interested_2wk_NTMmod
NOTE:    Variable Name Change.  Date of HRQOL consent -> Date_of_HRQOL_consent
NOTE:    Variable Name Change.  Date 2wk NTMmod returned -> Date_2wk_NTMmod_returned
NOTE: One or more variables were converted because the data type is not supported by the V9
      engine. For more details, run with options MSGLEVEL=I.
NOTE: The import data set has 848 observations and 73 variables.
NOTE: WORK.ACCESS data set was successfully created.
NOTE: PROCEDURE IMPORT used (Total process time):
      real time           0.65 seconds
      cpu time            0.48 seconds


7790
7791  options MSGLEVEL=I;
7792
7793  proc sort data=redcap; by id; run;

NOTE: There were 614 observations read from the data set WORK.REDCAP.
NOTE: SAS sort was used.
NOTE: The data set WORK.REDCAP has 614 observations and 2582 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.04 seconds
      cpu time            0.04 seconds


7794  proc sort data=access; by ID; run;

NOTE: There were 848 observations read from the data set WORK.ACCESS.
NOTE: SAS sort was used.
NOTE: The data set WORK.ACCESS has 848 observations and 73 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.04 seconds
      cpu time            0.01 seconds


7795  **Convert sex to a characteristic**;
7796
7797  data want;
7798  set access;
7799  if sex='M' then sex_r=1;
7800  if sex='F' then sex_r=0;
7801  drop sex;
7802  rename sex_r=sex;
7803  run;

NOTE: There were 848 observations read from the data set WORK.ACCESS.
NOTE: The data set WORK.WANT has 848 observations and 73 variables.
NOTE: DATA statement used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds


7804
7805
7806  **Merge both datasets into one excel**;
7807
7808  data enrollments;
7809  merge redcap (in=a) want (in=b);
7810  if a;
7811  by ID;
7812  run;

INFO: The variable sex on data set WORK.REDCAP will be overwritten by data set WORK.WANT.
NOTE: There were 614 observations read from the data set WORK.REDCAP.
NOTE: There were 848 observations read from the data set WORK.WANT.
NOTE: The data set WORK.ENROLLMENTS has 614 observations and 2653 variables.
NOTE: DATA statement used (Total process time):
      real time           0.06 seconds
      cpu time            0.03 seconds


7813
7814  proc print data=enrollments;
NOTE: Writing HTML Body file: sashtml.htm
7815      Title 'Biobank Enrollments';
7816      run;

NOTE: There were 614 observations read from the data set WORK.ENROLLMENTS.
NOTE: PROCEDURE PRINT used (Total process time):
      real time           2:29.28
      cpu time            2:23.57

The only variable from access that is needed is really just "source" which is a character variable of what clinic these particular enrollees were found in. 

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

From SAS Users blog
Want more? Visit our blog for more articles like these.
5 Steps to Your First Analytics Project Using SAS

For SAS newbies, this video is a great way to get started. James Harroun walks through the process using SAS Studio for SAS OnDemand for Academics, but the same steps apply to any analytics project.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 232 views
  • 0 likes
  • 2 in conversation