-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmodule1Stage.txt
2423 lines (1647 loc) · 159 KB
/
module1Stage.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// This file was transformed using the mapping data in Quest-2025-01-10-17-29-30_Transformation.json.
// JSON ERROR --> Concept ID collision for ID: 285545471 | there are unexpected collisions between Quest ID(s): [DRINKSWTR2A_SRC] and Concept(s): [In a usual week, about how often do you drink tap water from your home? We are interested in all tap water, whether or not it has been filtered or treated.]
// JSON ERROR --> Concept ID collision for ID: 961178879 | there are unexpected collisions between Quest ID(s): [DRINKSWTR2B_SRC] and Concept(s): [In a usual week, about how often do you use tap water from your home to make a cup of coffee? We are interested in all tap water, whether or not it has been filtered or treated.]
// JSON ERROR --> Concept ID collision for ID: 138116092 | there are unexpected collisions between Quest ID(s): [DRINKSWTR2C_SRC] and Concept(s): [In a usual week, about how often do you use tap water from your home to make a cup of hot tea? We are interested in all tap water, whether or not it has been filtered or treated.]
// JSON ERROR --> Concept ID collision for ID: 393682471 | there are unexpected collisions between Quest ID(s): [DRINKSWTR2D_SRC] and Concept(s): [In a usual week, about how often do you use tap water from your home to make a glass of iced tea? We are interested in all tap water, whether or not it has been filtered or treated.]
// JSON ERROR --> Concept ID collision for ID: 364303962 | there are unexpected collisions between Quest ID(s): [DRINKSWTR2E_SRC] and Concept(s): [In a usual week, about how often do you use tap water from your home to make any other beverages or soup? We are interested in all tap water, whether or not it has been filtered or treated.]
// JSON ERROR --> Concept ID collision for ID: 944517297 | there are unexpected collisions between Quest ID(s): [DRINKSWTR2F_SRC] and Concept(s): [In a usual week, about how often do you use tap water from your home to make [insert response from DRINKSWTR1/other beverages]? We are interested in all tap water, whether or not it has been filtered or treated.]
// JSON ERROR --> Concept ID collision for ID: 784119588 | there are unexpected collisions between Quest ID(s): [SRVBLU_LANGUAGE_V1R0, SRVBOH_LANGUAGE_V1R0, SRVBUM_LANGUAGE_V1R0, SRVCOE_LANGUAGE_V1R0, SRVCOV_LANGUAGE_V1R0, SRVLAW_LANGUAGE_V1R0, SRVMC_LANGUAGE_V1R0, SRVMRE_LANGUAGE_V1R0, SRVMW_LANGUAGE_V1R0, SRVQOL_LANGUAGE_V1R0, SRVSAS_LANGUAGE_V1R0, SRVSCR_LANGUAGE_V1R0, SRVSSN_LANGUAGE_V1R0]
// JSON ERROR --> Concept ID collision for ID: 431721131 | there are unexpected collisions between Quest ID(s): [QXAUTHOR1, SRVSCR_WHOCOMPLQX_V1R0]
// JSON ERROR --> DRINKSWTR2A_SRC option DRINKSWTR2A conceptId 285545471 already maps to Quest code: DRINKSWTR2A_SRC | conceptId collision
// JSON ERROR --> DRINKSWTR2B_SRC option DRINKSWTR2B conceptId 961178879 already maps to Quest code: DRINKSWTR2B_SRC | conceptId collision
// JSON ERROR --> DRINKSWTR2C_SRC option DRINKSWTR2C conceptId 138116092 already maps to Quest code: DRINKSWTR2C_SRC | conceptId collision
// JSON ERROR --> DRINKSWTR2D_SRC option DRINKSWTR2D conceptId 393682471 already maps to Quest code: DRINKSWTR2D_SRC | conceptId collision
// JSON ERROR --> DRINKSWTR2E_SRC option DRINKSWTR2E conceptId 364303962 already maps to Quest code: DRINKSWTR2E_SRC | conceptId collision
// JSON ERROR --> DRINKSWTR2F_SRC option DRINKSWTR2F conceptId 944517297 already maps to Quest code: DRINKSWTR2F_SRC | conceptId collision
// JSON ERROR --> SRVCOE_LANGUAGE_V1R0 conceptId 784119588 already maps to Quest code: SRVBLU_LANGUAGE_V1R0 | conceptId collision
// JSON ERROR --> SRVMRE_LANGUAGE_V1R0 conceptId 784119588 already maps to Quest code: SRVBLU_LANGUAGE_V1R0 | conceptId collision
// JSON ERROR --> SRVSCR_LANGUAGE_V1R0 conceptId 784119588 already maps to Quest code: SRVBLU_LANGUAGE_V1R0 | conceptId collision
// JSON ERROR --> SRVSCR_WHOCOMPLQX_V1R0 conceptId 431721131 already maps to Quest code: QXAUTHOR1 | conceptId collision
// JSON WARNING --> Concept ID 101310722 with concept "# Pills per day" is shared between these Textbox codes: [ACIDSUP3_1A, ACIDSUP3_2A, ACIDSUP3_3A, CHOLHTN3_1A, CHOLHTN3_2A, INSULIN3_1A, METFOR3_1A, PAINREL3_1A, PAINREL3_2A, PAINREL3_3A, PAINREL3_4A, PAINREL3_5A, PAINREL3_6A, PAINREL3_7A]
// JSON WARNING --> Concept ID 206625031 with concept "Age at diagnosis" is shared between these Textbox codes: [ANEMIA_AGE, ARRHYT_AGE, ASTHMA_AGE, BARESO_AGE, BLOODCLOT_AGE, BREASTDIS_AGE, CCD_AGE, CD_AGE, CHESTPAIN_AGE, CHF_AGE, CHILDCANC3A_AGE, CHILDCANC3B_AGE, CHILDCANC3C_AGE, CHILDCANC3D_AGE, CHILDCANC3E_AGE, CHILDCANC3F_AGE, CHILDCANC3G_AGE, CHILDCANC3H_AGE, CHILDCANC3I_AGE, CHILDCANC3J_AGE, CHILDCANC3K_AGE, CHILDCANC3L_AGE, CHILDCANC3M_AGE, CHILDCANC3N_AGE, CHILDCANC3O_AGE, CHILDCANC3P_AGE, CHILDCANC3Q_AGE, CHILDCANC3R_AGE, CHILDCANC3S_AGE, CHILDCANC3T_AGE, CHILDCANC3U_AGE, CHILDCANC3V_AGE, CHILDCANC3W_AGE, CHILDCANC3X_AGE, CHILDCANC3Y_AGE, CHLA_AGE, CHOL_AGE, CKD_AGE, COPD_AGE, CVD_AGE, DADCANC3A_AGE, DADCANC3B_AGE, DADCANC3C_AGE, DADCANC3D_AGE, DADCANC3E_AGE, DADCANC3F_AGE, DADCANC3G_AGE, DADCANC3H_AGE, DADCANC3I_AGE, DADCANC3J_AGE, DADCANC3K_AGE, DADCANC3L_AGE, DADCANC3M_AGE, DADCANC3N_AGE, DADCANC3O_AGE, DADCANC3P_AGE, DADCANC3Q_AGE, DADCANC3R_AGE, DADCANC3S_AGE, DADCANC3T_AGE, DADCANC3U_AGE, DADCANC3V_AGE, DCIS_AGE, DEPRESS2_AGE, DIVERT_AGE, DM2_AGE, ENDO_AGE, ENLGPROS_AGE, GALL_AGE, GENWARTS_AGE, GERD_AGE, GONORR_AGE, GOUT_AGE, GRAVES_AGE, HAYFEVER_AGE, HBVHCV_AGE, HEARTATT_AGE, HEARTVALV_AGE, HIVAIDS_AGE, HPV_AGE, HTN_AGE, IBD_AGE, IBS_AGE, KIDNEY_AGE, LIVCIRR_AGE, LUPUS_AGE, MOMCANC3A_AGE, MOMCANC3B_AGE, MOMCANC3C_AGE, MOMCANC3D_AGE, MOMCANC3E_AGE, MOMCANC3F_AGE, MOMCANC3G_AGE, MOMCANC3H_AGE, MOMCANC3I_AGE, MOMCANC3J_AGE, MOMCANC3K_AGE, MOMCANC3L_AGE, MOMCANC3M_AGE, MOMCANC3N_AGE, MOMCANC3O_AGE, MOMCANC3P_AGE, MOMCANC3Q_AGE, MOMCANC3R_AGE, MOMCANC3S_AGE, MOMCANC3T_AGE, MOMCANC3U_AGE, MOMCANC3V_AGE, MOMCANC3W_AGE, MONO_AGE, PANCREA_AGE, PCOS_AGE, RA_AGE, SHINGLES_AGE, SIBCANC3A_AGE, SIBCANC3B_AGE, SIBCANC3C_AGE, SIBCANC3D_AGE, SIBCANC3E_AGE, SIBCANC3F_AGE, SIBCANC3G_AGE, SIBCANC3H_AGE, SIBCANC3I_AGE, SIBCANC3J_AGE, SIBCANC3K_AGE, SIBCANC3L_AGE, SIBCANC3M_AGE, SIBCANC3N_AGE, SIBCANC3O_AGE, SIBCANC3P_AGE, SIBCANC3Q_AGE, SIBCANC3R_AGE, SIBCANC3S_AGE, SIBCANC3T_AGE, SIBCANC3U_AGE, SIBCANC3V_AGE, SIBCANC3W_AGE, SIBCANC3X_AGE, SIBCANC3Y_AGE, SKINCANC3_AGE, STROKE_AGE, SYPH_AGE, THYROID_AGE, TRICH_AGE, UC_AGE, UF_AGE]
// JSON WARNING --> Concept ID 261863326 with concept "Year at diagnosis" is shared between these Textbox codes: [ANEMIA_YEAR, ARRHYT_YEAR, ASTHMA_YEAR, BARESO_YEAR, BLOODCLOT_YEAR, BREASTDIS_YEAR, CCD_YEAR, CD_YEAR, CHESTPAIN_YEAR, CHF_YEAR, CHILDCANC3A_YEAR, CHILDCANC3B_YEAR, CHILDCANC3C_YEAR, CHILDCANC3D_YEAR, CHILDCANC3E_YEAR, CHILDCANC3F_YEAR, CHILDCANC3G_YEAR, CHILDCANC3H_YEAR, CHILDCANC3I_YEAR, CHILDCANC3J_YEAR, CHILDCANC3K_YEAR, CHILDCANC3L_YEAR, CHILDCANC3M_YEAR, CHILDCANC3N_YEAR, CHILDCANC3O_YEAR, CHILDCANC3P_YEAR, CHILDCANC3Q_YEAR, CHILDCANC3R_YEAR, CHILDCANC3S_YEAR, CHILDCANC3T_YEAR, CHILDCANC3U_YEAR, CHILDCANC3V_YEAR, CHILDCANC3W_YEAR, CHILDCANC3X_YEAR, CHILDCANC3Y_YEAR, CHLA_YEAR, CHOL_YEAR, CKD_YEAR, COPD_YEAR, CVD_YEAR, DADCANC3A_YEAR, DADCANC3B_YEAR, DADCANC3C_YEAR, DADCANC3D_YEAR, DADCANC3E_YEAR, DADCANC3F_YEAR, DADCANC3G_YEAR, DADCANC3H_YEAR, DADCANC3I_YEAR, DADCANC3J_YEAR, DADCANC3K_YEAR, DADCANC3L_YEAR, DADCANC3M_YEAR, DADCANC3N_YEAR, DADCANC3O_YEAR, DADCANC3P_YEAR, DADCANC3Q_YEAR, DADCANC3R_YEAR, DADCANC3S_YEAR, DADCANC3T_YEAR, DADCANC3U_YEAR, DADCANC3V_YEAR, DCIS_YEAR, DEPRESS2_YEAR, DIVERT_YEAR, DM2_YEAR, ENDO_YEAR, ENLGPROS_YEAR, GALL_YEAR, GENWARTS_YEAR, GERD_YEAR, GONORR_YEAR, GOUT_YEAR, GRAVES_YEAR, HAYFEVER_YEAR, HBVHCV_YEAR, HEARTATT_YEAR, HEARTVALV_YEAR, HIVAIDS_YEAR, HPV_YEAR, HTN_YEAR, IBD_YEAR, IBS_YEAR, KIDNEY_YEAR, LIVCIRR_YEAR, LUPUS_YEAR, MOMCANC3A_YEAR, MOMCANC3B_YEAR, MOMCANC3C_YEAR, MOMCANC3D_YEAR, MOMCANC3E_YEAR, MOMCANC3F_YEAR, MOMCANC3G_YEAR, MOMCANC3H_YEAR, MOMCANC3I_YEAR, MOMCANC3J_YEAR, MOMCANC3K_YEAR, MOMCANC3L_YEAR, MOMCANC3M_YEAR, MOMCANC3N_YEAR, MOMCANC3O_YEAR, MOMCANC3P_YEAR, MOMCANC3Q_YEAR, MOMCANC3R_YEAR, MOMCANC3S_YEAR, MOMCANC3T_YEAR, MOMCANC3U_YEAR, MOMCANC3V_YEAR, MOMCANC3W_YEAR, MONO_YEAR, PANCREA_YEAR, PCOS_YEAR, RA_YEAR, SHINGLES_YEAR, SIBCANC3A_YEAR, SIBCANC3B_YEAR, SIBCANC3C_YEAR, SIBCANC3D_YEAR, SIBCANC3E_YEAR, SIBCANC3F_YEAR, SIBCANC3G_YEAR, SIBCANC3H_YEAR, SIBCANC3I_YEAR, SIBCANC3J_YEAR, SIBCANC3K_YEAR, SIBCANC3L_YEAR, SIBCANC3M_YEAR, SIBCANC3N_YEAR, SIBCANC3O_YEAR, SIBCANC3P_YEAR, SIBCANC3Q_YEAR, SIBCANC3R_YEAR, SIBCANC3S_YEAR, SIBCANC3T_YEAR, SIBCANC3U_YEAR, SIBCANC3V_YEAR, SIBCANC3W_YEAR, SIBCANC3X_YEAR, SIBCANC3Y_YEAR, SKINCANC3_YEAR, STROKE_YEAR, SYPH_YEAR, THYROID_YEAR, TRICH_YEAR, UC_YEAR, UF_YEAR]
// JSON WARNING --> Concept ID 314198277 with concept "Last spent time at this address, year" is shared between these Textbox codes: [SEASADDYRS2_10_YEAR, SEASADDYRS2_1_YEAR, SEASADDYRS2_2_YEAR, SEASADDYRS2_3_YEAR, SEASADDYRS2_4_YEAR, SEASADDYRS2_5_YEAR, SEASADDYRS2_6_YEAR, SEASADDYRS2_7_YEAR, SEASADDYRS2_8_YEAR, SEASADDYRS2_9_YEAR]
// JSON WARNING --> Concept ID 434243220 with concept "Months used" is shared between these Textbox codes: [ANYCOMESTMONTH, COMBINEDMONTH, COPIUDMONTH, DEPROPROVMONTH, ESTOTHERMONTH, ESTSKINMONTH, HORCOMPILLMONTH, HORIUDMONTH, HORMEDOTHERMONTH, HORMEDPATCHMONTH, HORMEDRINGMONTH, MINIPILLMONTH, NORPLANTMONTH, ORALESTMONTH, ORALMEDMONTH, PATCHESTMONTH, PRESHOR2MONTH, PROESTMONTH, RINGMONTH, TWOPILLMONTH]
// JSON WARNING --> Concept ID 451310566 with concept "Months at address" is shared between these Textbox codes: [MONTHADD1, MONTHADD10, MONTHADD2, MONTHADD3, MONTHADD4, MONTHADD5, MONTHADD6, MONTHADD7, MONTHADD8, MONTHADD9]
// JSON WARNING --> Concept ID 623218391 with concept "Age at surgery" is shared between these Textbox codes: [APPEND_AGE, BARSUR_AGE, BREASTABSS_AGE, BREASTDBLREM_AGE, BREASTIMPLANTS_AGE, BREASTLACTREM_AGE, BREASTLIFT_AGE, BREASTOTH_AGE, BREASTPARTREM_AGE, BREASTRECON_AGE, BREASTREDN_AGE, BREASTREM_AGE, FTREM2_AGE, GALLREM_AGE, HYSTER_AGE, KIDREM2_AGE, LIPOSUCT_AGE, OVARYREM2_AGE, PENREM_AGE, PROSREM2_AGE, SPLEENREM_AGE, SRVSCR_APPENDECAGE_V1R1, SRVSCR_BARSURGAGE_V1R1, SRVSCR_BREASTABSCAGE_V1R1, SRVSCR_BREASTDBLREMAGE_V1R1, SRVSCR_BREASTIMPLAGE_V1R1, SRVSCR_BREASTLACREMAGE_V1R1, SRVSCR_BREASTLIFTAGE_V1R1, SRVSCR_BREASTOTHAGE_V1R1, SRVSCR_BREASTPTREMAGE_V1R1, SRVSCR_BREASTRECONAGE_V1R1, SRVSCR_BREASTREDAGE_V1R1, SRVSCR_BREASTREMAGE_V1R1, SRVSCR_CHOLECAGE_V1R1, SRVSCR_FSTSURGDBLREMAGE_V1R0, SRVSCR_HYSTERAGE_V1R1, SRVSCR_LIPOSUCTAGE_V1R1, SRVSCR_NEPHRECTOMYAGE_V1R0, SRVSCR_OOPHORECAGE_V1R1, SRVSCR_PENREMAGE_V1R1, SRVSCR_PROSREMSURGAGE_V1R1, SRVSCR_SALPINGECAGE_V1R1, SRVSCR_SECSURGDBLREMAGE_V1R0, SRVSCR_SPLENECTOMYAGE_V1R0, SRVSCR_TESTREMSURGAGE_V1R1, SRVSCR_THYROIDECTOMYAGE_V1R0, SRVSCR_TONSILSAGE_V1R1, SRVSCR_TUBLIGAGE_V1R1, SRVSCR_VASECTOMYAGE_V1R1, TESTREM2_AGE, THYRDREM_AGE, TONSILS_AGE, TUBLIG_AGE, VASEC_AGE]
// JSON WARNING --> Concept ID 707805344 with concept "# of Hours" is shared between these Textbox codes: [FALLASLEEPHOURS, LAYINBEDHRS, NONWORKAWAKEBEFOREUPHOURS, NONWORKFALLASLEEPHOURS, OUTSIDEHOURS, WORKDAYOUTSIDEHOURS]
// JSON WARNING --> Concept ID 765748316 with concept "Days per week" is shared between these Textbox codes: [ACETWEEK, ACIDSUP2_1WK, ACIDSUP2_2WK, ACIDSUP2_3WK, BABYASPRINWEEK, CELECOXIBWEEK, CHOLHTN2_1WK, CHOLHTN2_2WK, IBUPROFENWEEK, INSULIN2_1WK, METFOR2_1WK, NAPROXENWEEK, PAINRELWEEK, REGASPRINWEEK]
// JSON WARNING --> Concept ID 785412329 with concept "Days per month" is shared between these Textbox codes: [ACETMONTH, ACIDSUP2_1MO, ACIDSUP2_2MO, ACIDSUP2_3MO, BABYASPRINMONTH, CELECOXIBMONTH, CHOLHTN2_1MO, CHOLHTN2_2MO, IBUPROFENMONTH, INSULIN2_1MO, METFOR2_1MO, NAPROXENMONTH, PAINRELMONTH, REGASPRINMONTH]
// JSON WARNING --> Concept ID 802622485 with concept "Year of surgery" is shared between these Textbox codes: [APPEND_YEAR, BARSUR_YEAR, BREASTABSS_YEAR, BREASTDBLREM_YEAR, BREASTIMPLANTS_YEAR, BREASTLACTREM_YEAR, BREASTLIFT_YEAR, BREASTOTH_YEAR, BREASTPARTREM_YEAR, BREASTRECON_YEAR, BREASTREDN_YEAR, BREASTREM_YEAR, FTREM2_YEAR, GALLREM_YEAR, HYSTER_YEAR, KIDREM2_YEAR, LIPOSUCT_YEAR, OVARYREM2_YEAR, PENREM_YEAR, PROSREM2_YEAR, SPLEENREM_YEAR, SRVSCR_APPENDECYEAR_V1R0, SRVSCR_BARSURGYEAR_V1R0, SRVSCR_BREASTABSCYR_V1R0, SRVSCR_BREASTDBLREMYR_V1R0, SRVSCR_BREASTIMPLYR_V1R0, SRVSCR_BREASTLACREMYR_V1R0, SRVSCR_BREASTLIFTYR_V1R0, SRVSCR_BREASTOTHYR_V1R0, SRVSCR_BREASTPTREMYR_V1R0, SRVSCR_BREASTRECONYR_V1R0, SRVSCR_BREASTREDYR_V1R0, SRVSCR_BREASTREMYR_V1R0, SRVSCR_CHOLECYEAR_V1R0, SRVSCR_FSTSURGDBLREMYR_V1R0, SRVSCR_HYSTYEAR_V1R0, SRVSCR_LIPOSUCTYEAR_V1R0, SRVSCR_NEPHRECTOMYYR_V1R0, SRVSCR_OOPHORECYR_V1R0, SRVSCR_PENREMYEAR_V1R0, SRVSCR_PROSREMSURGYR_V1R0, SRVSCR_SALPINGECYR_V1R0, SRVSCR_SECSURGDBLREMYR_V1R0, SRVSCR_SPLENECTOMYYR_V1R0, SRVSCR_TESTREMSURGYR_V1R0, SRVSCR_THYROIDECTOMYYR_V1R0, SRVSCR_TONSILSYEAR_V1R0, SRVSCR_TUBLIGYEAR_V1R0, SRVSCR_VASECTOMYYR_V1R0, TESTREM2_YEAR, THYRDREM_YEAR, TONSILS_YEAR, TUBLIG_YEAR, VASEC_YEAR]
// JSON WARNING --> Concept ID 810608313 with concept "# Servings per day" is shared between these Textbox codes: [EAMAR9ANUM, EAMAR9CNUM, THMAR9ANUM, THMAR9CNUM]
// JSON WARNING --> Concept ID 850393641 with concept "# of Minutes" is shared between these Textbox codes: [FALLASLEEPMIN, LAYINBEDMIN, NONWORKAWAKEBEFOREUPMIN, NONWORKFALLASLEEPMIN, OUTSIDEMIN, WORKDAYOUTSIDEMIN]
// JSON WARNING --> Concept ID 942347130 with concept "Other breast surgeries: Please describe[text box]" is shared between these Textbox codes: [BREASTSUR_TB, SRVSCR_BREASTOTHERDES_V1R0]
// JSON WARNING --> Concept ID 943813942 with concept "Year moved out" is shared between these Textbox codes: [CHILDADD6_1_YEAR, HOMEMOVEOUT10_YEAR, HOMEMOVEOUT11_YEAR, HOMEMOVEOUT1_YEAR, HOMEMOVEOUT2_YEAR, HOMEMOVEOUT3_YEAR, HOMEMOVEOUT4_YEAR, HOMEMOVEOUT5_YEAR, HOMEMOVEOUT6_YEAR, HOMEMOVEOUT7_YEAR, HOMEMOVEOUT8_YEAR, HOMEMOVEOUT9_YEAR]
// JSON WARNING --> Concept ID 970604592 with concept "Years used" is shared between these Textbox codes: [ANYCOMESTYEAR, COMBINEDYEAR, COPIUDYEAR, DEPROPROVYEAR, ESTOTHERYEAR, ESTSKINYEAR, HORCOMPILLYEAR, HORIUDYEAR, HORMEDOTHERYEAR, HORMEDPATCHYEAR, HORMEDRINGYEAR, MINIPILLYEAR, NORPLANTYEAR, ORALESTYEAR, ORALMEDYEAR, PATCHESTYEAR, PRESHOR2YEAR, PROESTYEAR, RINGYEAR, TWOPILLYEAR]
//This file was last modified on Thu Jan 23 12:03:47 2025 -0500 (short timestamp = 2025-01-23-17-03-47)
//{"version":"4.0"}
{"name":"D_726699695_V2"}
[INTROM1] Welcome, {$u:firstName}! This survey is split into sections. Each section has questions that ask you about a wide range of topics. Our goal is to collect information about your medical history, family, work, and health behaviors. You can answer all of the questions in each survey section at one time, or answer some questions, pause, and return to answer the rest later. If you pause, your answers will be saved and you can pick up where you left off. You can also skip any questions that you do not want to answer.
For some questions, you may see a word or phrase that appears as a button. Clicking the button will show more information that might help you answer the question. Here is an |popup|example.|example|This is an example of how additional information will be displayed.|
Let’s get started.
[INTROBAC] First, we are interested in learning some general information about you, your medical history, and your family history. This information will help us better understand your current health status. It will also help us understand how your health may be different from the health of other people.
Please remember that we protect your privacy. We remove information that can identify you from your survey answers before we share them with researchers.
[D_783167257?] Are you now married, widowed, divorced, separated, never married, or living with a partner?
(514080822) Never Married
(522680498) Not married but living with partner
(288321056) Married
(649436542) Divorced
(733527132) Widowed
(741094625) Separated
(746038746) Prefer not to answer
[RACEETHINTRO] Next, we are going to ask a series of questions about your race/ethnicity. The first question will be more general and following questions will ask for more specific information.
[D_384191091?] Which of these describes you? Select all that apply. Note, you may select more than one group.
[583826374] American Indian or Alaska Native -> D_362270886
[636411467] Asian -> D_525535977
[458435048] Black, African American, or African -> D_976808005
[706998638] Hispanic, Latino, or Spanish -> D_308014437
[973565052] Middle Eastern or North African -> D_351657815
[586825330] Native Hawaiian or other Pacific Islander -> D_115616118
[412790539] White -> D_797626610
[807835037] None of these fully describe me: Please describe |__|id=D_747350323|
[178420302*] Don’t know
[746038746*] Prefer not to answer
< -> D_588212264 >
[D_362270886?,displayif=equals(D_384191091,583826374)] Which of these describes you best? Select all that apply.
[249603425] American Indian
[530063091] Alaska Native
[643489668] Central or South American Indian
[807835037] None of these fully describe me: Please describe |__|id=D_650100414|
[178420302*] Don't know
[746038746*] Prefer not to answer
[D_525535977?,displayif=equals(D_384191091,636411467)] Which of these describes you best? Select all that apply.
[773844957] Asian Indian
[901439277] Cambodian
[750168061] Chinese
[326604981] Filipino
[469918550] Hmong
[288079668] Japanese
[240721579] Korean
[571633051] Pakistani
[964924704] Vietnamese
[807835037] None of these fully describe me: Please describe |__|id=D_396618548|
[178420302*] Don't know
[746038746*] Prefer not to answer
[D_976808005?,displayif=equals(D_384191091,458435048)] Which of these describes you best? Select all that apply.
[704774349] African American
[240854115] Barbadian
[280957170] Caribbean
[533776046] Ethiopian
[647105074] Ghanaian
[618222258] Haitian
[487027241] Jamaican
[900838463] Liberian
[379093069] Nigerian
[304643362] Somali
[151821009] South African
[807835037] None of these fully describe me: Please describe |__|id=D_852296096|
[178420302*] Don't know
[746038746*] Prefer not to answer
[D_308014437?,displayif=equals(D_384191091,706998638)] Which of these describes you best? Select all that apply.
[810637250] Colombian
[248444252] Cuban
[764331628] Dominican
[412757551] Ecuadorian
[324416332] Guatemalan
[981774939] Honduran
[432305109] Mexican or Mexican American
[862718552] Puerto Rican
[988121468] Salvadoran
[773342525] Spanish
[807835037] None of these fully describe me: Please describe |__|id=D_440307926|
[178420302*] Don't know
[746038746*] Prefer not to answer
[D_351657815?,displayif=equals(D_384191091,973565052)] Which of these describes you best? Select all that apply.
[190152384] Afghan
[119632587] Algerian
[578616917] Egyptian
[834030167] Iranian
[680575651] Iraqi
[144320785] Israeli
[214951746] Lebanese
[932563284] Moroccan
[336596477] Syrian
[380583570] Tunisian
[807835037] None of these fully describe me: Please describe |__|id=D_576646485|
[178420302*] Don't know
[746038746*] Prefer not to answer
[D_115616118?,displayif=equals(D_384191091,586825330)] Which of these describes you best? Select all that apply.
[664730658] Chamorro
[949727109] Chuukese
[496132363] Fijian
[453456270] Marshallese
[819018322] Native Hawaiian
[685406566] Palauan
[786290435] Samoan
[167028305] Tahitian
[345861266] Tongan
[807835037] None of these fully describe me: Please describe |__|id=D_403180970|
[178420302*] Don't know
[746038746*] Prefer not to answer
[D_797626610?,displayif=equals(D_384191091,412790539)] Which of these describes you best? Select all that apply.
[664571574] Dutch
[163149180] English
[192776753] European
[733789220] French
[418464677] German
[859329001] Irish
[267472307] Italian
[918190932] Norwegian
[381749264] Polish
[704661219] Scottish
[773342525] Spanish
[533527231] Swedish
[807835037] None of these fully describe me: Please describe |__|id=D_774928994|
[178420302*] Don't know
[746038746*] Prefer not to answer
[D_588212264?] When you were a child, what language(s) did you <b>first</b> learn at home? Select all that apply.
[163149180] English
[773342525] Spanish
[918819379] Spanish Creole
[733789220] French
[760008937] French Creole
[267472307] Italian
[563857306] Portuguese
[418464677] German
[236546933] Russian
[381749264] Polish
[553424289] Hindi
[750168061] Chinese
[240721579] Korean
[964924704] Vietnamese
[544197293] Tagalog
[367462243] Ilocano
[288079668] Japanese
[669977999] Arabic
[807835037] Other language(s): Please describe |__|id=D_486535201|
[D_407056417!] Later questions in this survey will ask about surgeries and medical procedures, including the sex organs you were born with. We want to ask questions that will make sense for you. We are also interested in learning how gender identity and gender expression may affect your health and health care.
What was your biological sex assigned at birth?
(536341288) Female -> D_289664241
(654207589) Male -> D_289664241
(576796184) Intersex or other -> D_750420077
[D_750420077!,displayif=equals(D_407056417,576796184)] Please select the body parts that you were born with. Select all that apply.
[582784267] Penis (Phallus)
[751402477] Testes (Testicles)
[700100953] Prostate
[846483618] Vagina (Frontal genital opening)
[505282171] Cervix
[578416151] Uterus (Womb)
[434651539] Ovaries
[108025529] Fallopian Tubes
[D_289664241?] Do you think of yourself as:
(218837028) Woman
(983318667) Man
(405267600) Transgender Man
(873138103) Transgender Woman
(805712793) Genderqueer
(486192236) Non-binary
(807835037) Additional gender category: Please describe |__|id=D_918409306|
(746038746) Prefer not to answer
[D_987107433?] A person’s appearance, style, dress, or mannerisms (the way they walk or talk) may affect the way people think of them. On average, how do you think people would describe your appearance, style, dress, or mannerisms?
(220083334) Very feminine
(541300533) Mostly feminine
(878286618) Somewhat feminine
(910745276) Equally feminine and masculine
(510148951) Somewhat masculine
(265452386) Mostly masculine
(915528806) Very masculine
(746038746) Prefer not to answer
[SEXORIENTINTRO] We are interested in learning more about your sexual orientation. If some of these orientations are not familiar to you, that's OK! We are offering as many options as we can to make sure that all communities are included in Connect. We are collecting this information to learn more about health and cancer prevention in these communities. The more information we have, the better we may be able to answer research questions and tailor prevention and health recommendations to all communities.
[D_555481393?] Do you think of yourself as:
(271882746) Straight or heterosexual
(903084185) Lesbian, gay, or homosexual
(999994434) Bisexual
(727200870) Asexual
(854349138) Pansexual
(832978839) Mostly straight
(197935377) Queer
(410008111) Two-Spirit
(831942158) Questioning
(210894509) No labels
(807835037) Something else: Please describe |__|id=D_979809707|
(178420302) I don’t know
(746038746) Prefer not to answer
[INTROMH] <b>Medical History</b>
The next set of questions asks about medical conditions you may have or had in the past. Please answer “yes” to these questions <b>only if a doctor or other health professional</b> has told you that you have or had the condition. If you answer “yes,” you will also be asked how old you were when a doctor or health professional told you that you have or had the condition. If it is easier to remember, you can instead share the year you were told that you have or had the condition.
We also ask about certain medical procedures you may have had.
[D_537153788?] <b>Cancer</b>
Has a doctor or other health professional ever told you that you have or had <b>non-melanoma skin cancer</b>?
(104430631) No -> D_167101091
(353358909) Yes -> D_508846529
< #NR -> D_167101091 >
[D_508846529?] What type(s) of skin cancer did a doctor or other health professional tell you that you have or had? Select all that apply.
[864052438] Basal cell
[323177352]Squamous cell
[178420302*] Don’t know
[D_904550680?] How old were you when a doctor or other health professional <b>first</b> told you that you have or had skin cancer?<br/>
|__|__|xor=SKINCANC3 id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=SKINCANC3 id=D_261863326 min=_value("yob") max=#currentYear| Year at diagnosis
[D_167101091?]
<b>Cardiovascular disease</b>
Has a doctor or other health professional ever told you that you have or had any of these conditions? Select all that apply.
[698944820] B-12 Deficiency (Pernicious Anemia) -> D_965917116
[838744325] Coronary Artery/Coronary Heart Disease -> D_929240175
[769790179] Congestive Heart Failure -> D_836712013
[699553344] High Cholesterol -> D_836890480
[700811160] Heart Attack (Myocardial Infarction) -> D_624479779
[336505365] Abnormal Heart Rhythm (Arrhythmia) -> D_337278854
[132548932] Chest Pain (Angina) -> D_681229479
[747787163] Heart Valve Problems -> D_660358706
[693851465] High Blood Pressure (Hypertension) |displayif=or(equals(D_407056417,536341288),equals(D_407056417,576796184))|Please do not include hypertension during pregnancy.| -> D_884793537
[512012656] Blood Clots (Deep Vein Thrombosis, Pulmonary Embolism) -> D_460062034
[619337095] Stroke -> D_110652436
[535003378*] I have <b>not</b> had any of these conditions
< -> D_894259747 >
[D_965917116?,displayif=equals(D_167101091,698944820)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>vitamin B-12 deficiency (pernicious anemia)</b>?<br/>
|__|__|xor=ANEMIA id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=ANEMIA id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_929240175?,displayif=equals(D_167101091,838744325)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>coronary artery/coronary heart disease</b>?<br/>
|__|__|xor=CVD id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=CVD id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_836712013?,displayif=equals(D_167101091,769790179)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>congestive heart failure</b>?<br/>
|__|__|xor=CHF id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=CHF id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_836890480?,displayif=equals(D_167101091,699553344)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>high cholesterol</b>?<br/>
|__|__|xor=CHOL id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=CHOL id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_624479779?,displayif=equals(D_167101091,700811160)] How old were you when a doctor or other health professional <b>first</b> told you that you have had a <b>heart attack (myocardial infarction)</b>?<br/>
|__|__|xor=HEARTATT id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=HEARTATT id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_337278854?,displayif=equals(D_167101091,336505365)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>abnormal heart rhythm (arrhythmia)</b>?<br/>
|__|__|xor=ARRHYT id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=ARRHYT id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_681229479?,displayif=equals(D_167101091,132548932)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>chest pain (angina)</b>?<br/>
|__|__|xor=CHESTPAIN id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=CHESTPAIN id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_660358706?,displayif=equals(D_167101091,747787163)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>heart valve problems</b>?<br/>
|__|__|xor=HEARTVALV id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=HEARTVALV id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_884793537?,displayif=equals(D_167101091,693851465)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>high blood pressure (hypertension)</b>?<br/>
|__|__|xor=HTN id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=HTN id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_460062034?,displayif=equals(D_167101091,512012656)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>blood clots (deep vein thrombosis, pulmonary embolism)</b>?<br/>
|__|__|xor=BLOODCLOT id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=BLOODCLOT id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_110652436?,displayif=equals(D_167101091,619337095)] How old were you when a doctor or other health professional <b>first</b> told you that you have had a <b>stroke</b>?<br/>
|__|__|xor=STROKE id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=STROKE id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_894259747?]
<b>Respiratory problems</b>
Has a doctor or other health professional ever told you that you have or had any of these conditions? Select all that apply.
[359025642] Chronic lung disease (Emphysema, Chronic Bronchitis, or Chronic Obstructive Pulmonary Disease (COPD)) -> D_448722126
[407340134] Asthma -> D_201449164
[427219143] Hay Fever (Allergic to pollen or Allergic Rhinitis) -> D_436333358
[535003378*] I have <b>not</b> had any of these conditions
< -> D_180961306 >
[D_448722126?,displayif=equals(D_894259747,359025642)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>chronic lung disease (emphysema, chronic bronchitis, or chronic obstructive pulmonary disease (COPD))</b>?<br/>
|__|__|xor=COPD id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=COPD id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_201449164?,displayif=equals(D_894259747,407340134)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>asthma</b>?<br/>
|__|__|xor=ASTHMA id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=ASTHMA id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_436333358?,displayif=equals(D_894259747,427219143)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>hay fever (allergic rhinitis) or are allergic to pollen</b>?<br/>
|__|__|xor=HAYFEVER id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=HAYFEVER id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_180961306?] <b>Digestive System Problems</b>
Has a doctor or other health professional ever told you that you have or had any of these conditions? Select all that apply.
[406890409] Esophageal Acid Reflux (GERD) -> D_554782332
[704544306] Barrett’s Esophagus -> D_409622468
[691766591] Irritable Bowel Syndrome -> D_448476881
[308645635] Inflammatory Bowel Disease -> D_459764934
[731115613] Diverticulitis or Diverticulosis -> D_374697037
[567284980] Ulcerative Colitis -> D_580911251
[986548173] Crohn’s Disease -> D_190347832
[285995100] Celiac Disease (also known as Gluten-Sensitive Enteropathy) -> D_624777141
[545628561] Gallstones (Biliary Stones) -> D_980403315
[709786039] Liver Cirrhosis -> D_936039586
[984479578] Pancreatitis -> D_430472084
[535003378*] I have <b>not</b> had any of these conditions
< -> D_900541533 >
[D_554782332?,displayif=equals(D_180961306,406890409)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>esophageal acid reflux (GERD)</b>?<br/>
|__|__|xor=GERD id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=GERD id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_409622468?,displayif=equals(D_180961306,704544306)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>Barrett’s esophagus</b>?<br/>
|__|__|xor=BARESO id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=BARESO id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_448476881?,displayif=equals(D_180961306,691766591)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>irritable bowel syndrome</b>?<br/>
|__|__|xor=IBS id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=IBS id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_459764934?,displayif=equals(D_180961306,308645635)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>inflammatory bowel disease</b>?<br/>
|__|__|xor=IBD id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=IBD id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_374697037?,displayif=equals(D_180961306,731115613)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>diverticulitis or diverticulosis</b>?<br/>
|__|__|xor=DIVERT id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=DIVERT id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_580911251?,displayif=equals(D_180961306,567284980)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>ulcerative colitis</b>?<br/>
|__|__|xor=UC id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=UC id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_190347832?,displayif=equals(D_180961306,986548173)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>Crohn’s disease</b>?<br/>
|__|__|xor=CD id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=CD id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_624777141?,displayif=equals(D_180961306,285995100)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>celiac disease (also known as gluten-sensitive enteropathy)</b>?<br/>
|__|__|xor=CCD id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=CCD id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_980403315?,displayif=equals(D_180961306,545628561)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>gallstones (biliary stones)</b>?<br/>
|__|__|xor=GALL id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=GALL id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_936039586?,displayif=equals(D_180961306,709786039)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>liver cirrhosis</b>?<br/>
|__|__|xor=LIVCIRR id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=LIVCIRR id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_430472084?,displayif=equals(D_180961306,984479578)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>pancreatitis</b>?<br/>
|__|__|xor=PANCREA id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=PANCREA id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_900541533?] Has a doctor or other health professional ever told you that you have or had any of these conditions? Select all that apply.
[726539692] Thyroid Disorder (Overactive or Underactive Thyroid) -> D_139655599
[158044532] Diabetes -> D_494032093
[943054522] Graves’ Disease -> D_810918716
[535003378*] I have <b>not</b> had any of these conditions
< -> D_874046190 >
[D_139655599?,displayif=equals(D_900541533,726539692)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had a <b>thyroid disorder (overactive or underactive thyroid)</b>?<br/>
|__|__|xor=THYROID id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=THYROID id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_494032093?,displayif=equals(D_900541533,158044532)] Which type of <b>diabetes</b> did a doctor or other health professional tell you that you have or had?
(146477090) Type 1
(573635975) Type 2
(178420302) Don’t know
< ->D_301679110 >
[D_301679110?,displayif=equals(D_900541533,158044532)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>diabetes</b>?<br/>
|__|__|xor=DM2 id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=DM2 id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_810918716?,displayif=equals(D_900541533,943054522)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>Graves’ disease</b>?<br/>
|__|__|xor=GRAVES id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=GRAVES id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_874046190?] <b>Kidney Disease</b>
Has a doctor or other health professional ever told you that you have or had any of these conditions? Select all that apply.
[827542780] Kidney Stones -> D_989016875
[167238688] Chronic Kidney Disease (Also Known as Chronic Kidney Failure) -> D_878094302
[535003378*] I have <b>not</b> had any of these conditions
< -> D_543728565>
[D_989016875?,displayif=equals(D_874046190,827542780)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>kidney stones</b>?<br/>
|__|__|xor=KIDNEY id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=KIDNEY id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_878094302?,displayif=equals(D_874046190,167238688)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>chronic kidney disease (also known as chronic kidney failure)</b>?<br/>
|__|__|xor=CKD id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=CKD id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_543728565?]<b>Systemic and Other Problems</b>
Has a doctor or other health professional ever told you that you have or had any of these conditions? Select all that apply.
[636030086] Rheumatoid Arthritis -> D_173101988
[239687183] Lupus -> D_245861186
[134592375] Gout -> D_420423416
[535003378*] I have <b>not</b> had any of these conditions
< -> INTROSTD >
[D_173101988?,displayif=equals(D_543728565,636030086)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>rheumatoid arthritis</b>?<br/>
|__|__|xor=RA id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=RA id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_245861186?,displayif=equals(D_543728565,239687183)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>lupus</b>?<br/>
|__|__|xor=LUPUS id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=LUPUS id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_420423416?,displayif=equals(D_543728565,134592375)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>gout</b>?<br/>
|__|__|xor=GOUT id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=GOUT id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[INTROSTD]<b>Infections</b>
The following questions ask about infections. Some questions ask about sexually transmitted diseases (STDs), which are infections that are spread by sexual contact. Please remember that we protect your privacy. We remove information that can identify you from your survey answers before we share them with researchers.
[D_874709643?] Has a doctor or other health professional ever told you that you have or had any of these conditions? Select all that apply.
[164910211] Infectious Mononucleosis (“Mono” or “Kissing Disease”) -> D_915230886
[796616844] Shingles (Herpes Zoster) -> D_530548878
[436689514] Chronic Hepatitis B or C -> D_469947273
[296357383] Gonorrhea -> D_685735916
[901077233] Chlamydia -> D_954405492
[136956596] Trichomoniasis -> D_103397024
[455776698] Syphilis -> D_931470797
[155874194] Genital Warts -> D_922524563
[880962432] HPV -> D_978485677
[691450854] HIV/AIDS -> D_523188839
[535003378*] I have <b>not</b> had any of these conditions
< -> D_725626004 >
[D_915230886?,displayif=equals(D_874709643,164910211)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>“mono” or “kissing disease” (infectious mononucleosis)</b>?<br/>
|__|__|xor=MONO id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=MONO id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_530548878?,displayif=equals(D_874709643,796616844)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>shingles (herpes zoster)</b>?<br/>
|__|__|xor=SHINGLES id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=SHINGLES id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_469947273?,displayif=equals(D_874709643,436689514)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>chronic hepatitis B or C</b>?<br/>
|__|__|xor=HBVHCV id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=HBVHCV id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_685735916?,displayif=equals(D_874709643,296357383)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>gonorrhea</b>?<br/>
|__|__|xor=GONORR id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=GONORR id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_954405492?,displayif=equals(D_874709643,901077233)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>chlamydia</b>?<br/>
|__|__|xor=CHLA id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=CHLA id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_103397024?,displayif=equals(D_874709643,136956596)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>trichomoniasis</b>?<br/>
|__|__|xor=TRICH id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=TRICH id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_931470797?,displayif=equals(D_874709643,455776698)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>syphilis</b>?<br/>
|__|__|xor=SYPH id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=SYPH id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_922524563?,displayif=equals(D_874709643,155874194)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>genital warts</b>?<br/>
|__|__|xor=GENWARTS id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=GENWARTS id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_978485677?,displayif=equals(D_874709643,880962432)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>human papillomavirus (HPV)</b>?<br/>
|__|__|xor=HPV id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=HPV id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_523188839?,displayif=equals(D_874709643,691450854)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>HIV/AIDS</b>?<br/>
|__|__|xor=HIVAIDS id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=HIVAIDS id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_725626004?]<b>Urinary and Reproductive System Problems</b>
Has a doctor or other health professional ever told you that you have or had any of these conditions? Select all that apply.
[509721537,displayif=or(equals(D_407056417,536341288),and(equals(D_407056417,576796184),equals(D_750420077,578416151)))] Uterine Fibroids -> D_846786840
[863286658,displayif=or(equals(D_407056417,536341288),and(equals(D_407056417,576796184),equals(D_750420077,578416151)))] Endometriosis -> D_423547108
[386524148,displayif=or(equals(D_407056417,536341288),and(equals(D_407056417,576796184),equals(D_750420077,434651539)))] Polycystic Ovary Syndrome (PCOS) -> D_852898339
[937208760,displayif=or(equals(D_407056417,654207589),and(equals(D_407056417,576796184),equals(D_750420077,700100953)))] Enlarged Prostate -> D_467061940
[746542057] Fibrocystic Breast, or other Benign Breast Disease (such as proliferative Benign Breast Disease or LCIS) -> D_619481697
[854945381] Ductal Carcinoma <i>in situ</i> (DCIS)
[535003378*] I have <b>not</b> had any of these conditions
< -> DEPRESSINTRO >
[D_846786840?,displayif=equals(D_725626004,509721537)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>uterine fibroids</b>?<br/>
|__|__|xor=UF id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=UF id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_423547108?,displayif=equals(D_725626004,863286658)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>endometriosis</b>?<br/>
|__|__|xor=ENDO id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=ENDO id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
<-> D_266847650 >
[D_266847650?,displayif=equals(D_725626004,863286658)] Was your endometriosis confirmed by surgery?
(353358909) Yes
(104430631) No
[D_852898339?,displayif=equals(D_725626004,386524148)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>polycystic ovary syndrome (PCOS)</b>?<br/>
|__|__|xor=PCOS id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=PCOS id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_467061940?,displayif=equals(D_725626004,937208760)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had an <b>enlarged prostate (benign prostatic hyperplasia (BPH))</b>?<br/>
|__|__|xor=ENLGPROS id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=ENLGPROS id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[D_619481697?,displayif=equals(D_725626004,746542057)] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>fibrocystic breasts, or other benign breast disease</b>?<br/>
|__|__|xor=BREASTDIS id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=BREASTDIS id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
< -> D_134642404 >
[D_134642404?,displayif=equals(D_725626004,746542057)] When you were told that you have or had fibrocystic breasts, or other benign breast disease, was it <b>confirmed by biopsy</b>?
(104430631) No
(353358909) Yes
< -> D_219956652 >
[D_219956652?,displayif=equals(D_725626004,854945381)] How old were you when a doctor or other health professional first told you that you have or had <b>ductal carcinoma <i>in situ</i> of the breast</b>?<br/>
|__|__|xor=BREASTDIS3 id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=BREASTDIS3 id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
< -> D_852236900 >
[D_852236900?,displayif=equals(D_725626004,854945381)] When you were told that you have or had <b>ductal carcinoma <i>in situ</i> of the breast</b>, was it confirmed by biopsy?
(353358909) Yes
(104430631) No
[DEPRESSINTRO] <b>Depression</b><br/>
We are interested in learning about your mental health. The following question will ask whether you have ever been diagnosed with clinical depression (major depression, or major depressive disorder). Remember, all of the information you share is protected. We remove information that identifies you from your survey answers before we share them with researchers.
[D_347860896?] Has a doctor or other health professional ever told you that you have or had <b>clinical depression</b>?
(353358909) Yes -> D_301414575
(104430631) No -> INTROSURG
< #NR -> INTROSURG >
[D_301414575?] How old were you when a doctor or other health professional <b>first</b> told you that you have or had <b>clinical depression</b>?<br/>
|__|__|xor=DEPRESS2 id=D_206625031 min=0 max=_value("age")| Age at diagnosis
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=DEPRESS2 id=D_261863326 min=_value("yob") max=#currentYear| Year of diagnosis
[INTROSURG] <b>Surgical Procedures</b>
The next questions ask about certain surgical procedures you may have had.
[D_624179836?] Have you ever had any of these surgeries? Select all that apply.
[797189152] Tonsils removed (tonsillectomy) -> D_367884741
[633546100] Gallbladder removed (cholecystectomy) -> D_178353079
[866002271] Appendix removed (appendectomy) -> D_550075233
[209101810] Spleen removed (splenectomy) -> D_927516732
[413734739] Thyroid removed (thyroidectomy) -> D_552788665
[215525943] Removal of one or both kidneys (nephrectomy) -> D_439736294
[118789503] Liposuction -> D_860920332
[715563991] Bariatric surgery (lap band, gastric bypass) -> D_986613440
[533491176] Breast surgery -> D_517307064
[220755749,displayif=or(equals(D_407056417,536341288),and(equals(D_407056417,576796184),equals(D_750420077,578416151)))] Uterus removed (hysterectomy) -> D_150352141
[465318416,displayif=or(equals(D_407056417,536341288),and(equals(D_407056417,576796184),equals(D_750420077,108025529)))] Tubes tied (tubal ligation) -> D_122887481
[630100221,displayif=or(equals(D_407056417,536341288),and(equals(D_407056417,576796184),equals(D_750420077,434651539)))] Removal of one or both ovaries (oophorectomy) -> D_378892977
[692881833,displayif=or(equals(D_407056417,536341288),and(equals(D_407056417,576796184),equals(D_750420077,108025529)))] Removal of one or both fallopian tubes (salpingectomy) -> D_224791140
[654450030,displayif=or(equals(D_407056417,654207589),and(equals(D_750420077,582784267),equals(D_750420077,751402477)))] Vasectomy -> D_518750011
[532603425,displayif=or(equals(D_407056417,654207589),equals(D_750420077,751402477))] Removal of one or both testicles (orchiectomy or orchidectomy) -> D_946504570
[733236542,displayif=or(equals(D_407056417,654207589),equals(D_750420077,700100953))] Prostate removed (prostatectomy) -> D_107060069
[961987554,displayif=or(equals(D_407056417,654207589),equals(D_750420077,582784267))] Penis removed (penectomy) -> D_527057404
[535003378*] I have <b>not</b> had any of these surgeries
< -> D_453252072 >
[D_367884741?,displayif=equals(D_624179836,797189152)] How old were you when you had your <b>tonsils removed (tonsillectomy)</b>?<br/>
|__|__|xor=TONSILS id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=TONSILS id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_178353079?,displayif=equals(D_624179836,633546100)] How old were you when you had your <b>gallbladder removed (cholecystectomy)</b>?<br/>
|__|__|xor=GALLREM id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=GALLREM id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_550075233?,displayif=equals(D_624179836,866002271)] How old were you when you had your <b>appendix removed (appendectomy)</b>?<br/>
|__|__|xor=APPEND id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=APPEND id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_927516732?,displayif=equals(D_624179836,209101810)] How old were you when you had your <b>spleen removed (splenectomy)</b>?
|__|__|xor=SPLEENREM id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:
|__|__|__|__|xor=SPLEENREM id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_552788665?,displayif=equals(D_624179836,413734739)] How old were you when you had your <b>thyroid removed (thyroidectomy)</b>?
|__|__|xor=THYRDREM id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:
|__|__|__|__|xor=THYRDREM id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_439736294?,displayif=equals(D_624179836,215525943)] Which of these best describes the type of <b>kidney removal surgery</b> that you had?
(113771607) I had surgery to remove one kidney -> D_216506024
(668256654) I had surgery to remove both kidneys -> D_216506024
(535003378) None of the above
[D_216506024?,valueIsOneOf("D_439736294",113771607,668256654)] How old were you when you had one or both kidneys removed (nephrectomy)? If you have had more than one procedure, at what age did you <b>last</b> have this procedure?
|__|__|xor=KIDREM2 id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:
|__|__|__|__|xor=KIDREM2 id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_860920332?,displayif=equals(D_624179836,118789503)] How old were you when you <b>first</b> had <b>liposuction</b>?<br/>
|__|__|xor=LIPOSUCT id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=LIPOSUCT id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_986613440?,displayif=equals(D_624179836,715563991)] How old were you when you had your <b>bariatric surgery (lap band, gastric bypass)</b>?<br/>
|__|__|xor=BARSUR id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=BARSUR id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_517307064?,displayif=equals(D_624179836,533491176)] Which of these <b>breast surgeries</b> have you had? Please do not include a biopsy. Select all that apply.
[752953170] Breast implants (augmentation surgery) -> D_477690298
[325506683] Breast lift surgery (mastopexy) -> D_176453768
[335563082] Breast reconstruction surgery -> D_145786416
[955881350] Breast reduction (reduction mammaplasty) -> D_287605131
[492902023] Removal of a part of my breast tissue (breast-conserving surgery (BCS), lumpectomy, partial mastectomy, or segmental mastectomy) -> D_701157499
[256196714] Removal of one breast (mastectomy) -> D_428639167
[802859122] Removal of both breasts (double or bilateral mastectomy) -> D_282355641
[520432394] Surgery for a breast abscess (such as incision and draining) -> D_539301647
[667901971] Removal of a lactiferous or milk duct (microdochectomy) -> D_579225381
[807835037] Other: Please describe |__|id=D_942347130| -> D_891214661
[535003378*] None of the above
[D_477690298?,displayif=equals(D_517307064,752953170)] How old were you when you had <b>breast implants surgery</b> (augmentation surgery)?
|__|__|xor=BREASTSUR0 id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=BREASTSUR0 id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_176453768?,displayif=equals(D_517307064,325506683)] How old were you when you had <b>breast lift surgery</b> (mastopexy)?
|__|__|xor=BREASTSUR1 id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=BREASTSUR1 id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_145786416?,displayif=equals(D_517307064,335563082)] How old were you when you had <b>breast reconstruction surgery</b>?
|__|__|xor=BREASTSUR2 id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=BREASTSUR2 id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_287605131?,displayif=equals(D_517307064,955881350)] How old were you when you had <b>breast reduction surgery</b> (reduction mammaplasty)?
|__|__|xor=BREASTSUR3 id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=BREASTSUR3 id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_701157499?,displayif=equals(D_517307064,492902023)] How old were you when you had <b>surgery for removal of part of your breast tissue</b> (breast-conserving surgery (BCS), lumpectomy, partial mastectomy, or segmental mastectomy)?
|__|__|xor=BREASTSUR4 id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=BREASTSUR4 id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_428639167?,displayif=equals(D_517307064,256196714)] How old were you when you had <b>surgery for removal of one breast </b>(mastectomy)?
|__|__|xor=BREASTSUR5 id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=BREASTSUR5 id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_282355641?,displayif=equals(D_517307064,802859122)] How old were you when you had <b>surgery for removal of both breasts</b> (double or bilateral mastectomy)?
|__|__|xor=BREASTSUR6 id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=BREASTSUR6 id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_539301647?,displayif=equals(D_517307064,520432394)] How old were you when you had <b>surgery for a breast abscess (such as incision and draining)</b>?
|__|__|xor=BREASTSUR7 id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=BREASTSUR7 id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_579225381?,displayif=equals(D_517307064,667901971)] How old were you when you had <b>surgery for removal of a lactiferous or milk duct</b> (microdochectomy)?
|__|__|xor=BREASTSUR8 id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=BREASTSUR8 id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_891214661?,displayif=equals(D_517307064,807835037)] How old were you when you had |displayif=exists("D_942347130")|<b>{$D_942347130}</b>||displayif=doesNotExist("D_942347130")|<b>another type of breast surgery</b>|?<br/>
|__|__|xor=BREASTSUR9 id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=BREASTSUR9 id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_150352141?,displayif=equals(D_624179836,220755749)] How old were you when you had your <b>uterus removed (hysterectomy)</b>?<br/>
|__|__|xor=HYSTER id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=HYSTER id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_122887481?,displayif=equals(D_624179836,465318416)] How old were you when you had your <b>tubes tied (tubal ligation)</b>?<br/>
|__|__|xor=TUBLIG id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=TUBLIG id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_378892977?,displayif=equals(D_624179836,630100221)] Which of these best describes the type of <b>ovary removal surgery</b> that you had?
(333647143) I had surgery to remove one ovary
(109972911) I had surgery to remove both ovaries
(535003378) None of the above -> D_224791140
< -> D_534007917>
[D_534007917?,displayif=and(equals(D_624179836,630100221),or(equals(D_378892977,109972911),equals(D_378892977,333647143)))] How old were you when you had one or both ovaries removed (oophorectomy)? If you have had more than one procedure, at what age did you <b>last</b> have this procedure?<br/>
|__|__|xor=OVARYREM2 id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=OVARYREM2 id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_224791140?,displayif=equals(D_624179836,692881833)] Which of these best describes the type of <b>fallopian tube removal surgery</b> that you had?
(448068764) I had surgery to remove one fallopian tube
(537173119) I had surgery to remove both fallopian tubes
(535003378) None of the above -> D_518750011
<-> D_752636038>
[D_752636038?,displayif=and(equals(D_624179836,692881833),or(equals(D_224791140,537173119),equals(D_224791140,448068764)))] How old were you when you had one or both fallopian tubes removed (salpingectomy)? If you have had more than one procedure, at what age did you <b>last</b> have this procedure?<br/>
|__|__|xor=FTREM2 id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=FTREM2 id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_518750011?,displayif=equals(D_624179836,654450030)] How old were you when you had a <b>vasectomy</b>?<br/>
|__|__|xor=VASEC id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=VASEC id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery
[D_946504570?,displayif=equals(D_624179836,532603425)] Which of these best describes the type of <b>testicle removal surgery</b> that you had?
(770550588) I had surgery to remove one testicle
(970716952) I had surgery to remove both testicles
(535003378) None of the above -> D_107060069
<-> D_275770221>
[D_275770221?,displayif=and(equals(D_624179836,532603425),or(equals(D_946504570,970716952),equals(D_946504570,770550588)))] How old were you when you had one or both testicles removed (orchiectomy or orchidectomy)? If you have had more than one procedure, at what age did you <b>last</b> have this procedure?<br/>
|__|__|xor=TESTREM2 id=D_623218391 min=0 max=_value("age")| Age at surgery
Or, if it is easier to remember the year, enter that here:<br/>
|__|__|__|__|xor=TESTREM2 id=D_802622485 min=_value("yob") max=#currentYear| Year of surgery