diff --git a/tests/acceptance/external_studies/mainroute_cancer/analysis/codelists.py b/tests/acceptance/external_studies/mainroute_cancer/analysis/codelists.py index 9e896673a..df6b1a14d 100644 --- a/tests/acceptance/external_studies/mainroute_cancer/analysis/codelists.py +++ b/tests/acceptance/external_studies/mainroute_cancer/analysis/codelists.py @@ -55,3 +55,7 @@ column="snomedcode", category_column="Grouping_6", ) + +lowerGI_diagnostic_codes = codelist_from_csv( + "local_codelists/phc-lowergi-endoscopy-hrg.csv", column="code" +) \ No newline at end of file diff --git a/tests/acceptance/external_studies/mainroute_cancer/analysis/dataset_definition.py b/tests/acceptance/external_studies/mainroute_cancer/analysis/dataset_definition.py index 8992b02e1..67fa174b6 100644 --- a/tests/acceptance/external_studies/mainroute_cancer/analysis/dataset_definition.py +++ b/tests/acceptance/external_studies/mainroute_cancer/analysis/dataset_definition.py @@ -1,6 +1,6 @@ from ehrql import Dataset, years, days, months, minimum_of, maximum_of, case, when -from ehrql.tables.core import patients, clinical_events -from ehrql.tables.tpp import practice_registrations, ons_deaths +from ehrql.tables.core import patients +from ehrql.tables.tpp import practice_registrations, ons_deaths, clinical_events, clinical_events_ranges import codelists @@ -33,88 +33,251 @@ def make_dataset_lowerGI(index_date, end_date): dataset.death_date = death_date - def first_event(codelist): + def first_event(codelist, l_age, u_age): return clinical_events.where(clinical_events.snomedct_code.is_in(codelist) ).where( clinical_events.date.is_on_or_between(index_date, end_date) ).where( clinical_events.date.is_on_or_between(dataset.entry_date, dataset.exit_date) + ).where( + patients.age_on(clinical_events.date)>=l_age + ).where( + patients.age_on(clinical_events.date)=l_age + ).where( + patients.age_on(clinical_events.date)= 50) & ~prev_event(codelists.prbleeding_codes, dataset.prbleed_date) - dataset.wl_symp_50 = has_event(codelists.wl_codes) & (patients.age_on(dataset.wl_date) >= 50) & ~prev_event(codelists.wl_codes, dataset.wl_date) - dataset.abdopain_symp_50 = has_event(codelists.abdopain_codes) & (patients.age_on(dataset.abdopain_date) >= 50) & ~prev_event(codelists.abdopain_codes, dataset.abdopain_date) - dataset.anaemia_symp_60 = has_event(codelists.anaemia_codes) & (patients.age_on(dataset.anaemia_date) >= 60) & ~prev_event(codelists.anaemia_codes, dataset.anaemia_date) - dataset.wl_abdopain_symp_40 = has_event(codelists.wl_codes) & has_event(codelists.abdopain_codes) & ((patients.age_on(dataset.wl_date) >= 40) | (patients.age_on(dataset.abdopain_date) >= 40)) & ~prev_event(codelists.wl_codes, dataset.wl_date) & ~prev_event(codelists.abdopain_codes, dataset.abdopain_date) - dataset.prbleed_abdopain_symp = has_event(codelists.prbleeding_codes) & has_event(codelists.abdopain_codes) & (patients.age_on(dataset.prbleed_date) < 50) & ~prev_event(codelists.prbleeding_codes, dataset.prbleed_date) & ~prev_event(codelists.abdopain_codes, dataset.abdopain_date) - dataset.prbleed_wl_symp = has_event(codelists.prbleeding_codes) & has_event(codelists.wl_codes) & (patients.age_on(dataset.prbleed_date) < 50) & ~prev_event(codelists.prbleeding_codes, dataset.prbleed_date) & ~prev_event(codelists.wl_codes, dataset.wl_date) - dataset.lowerGI_any_symp = (dataset.ida_symp | dataset.cibh_symp | dataset.abdomass_symp | dataset.prbleed_symp_50 | dataset.wl_symp_50 | dataset.abdopain_symp_50 | dataset.anaemia_symp_60 | dataset.wl_abdopain_symp_40 | dataset.prbleed_abdopain_symp | dataset.prbleed_wl_symp) - - dataset.fit_test_any = has_event(codelists.fit_codes) & ~prev_event(codelists.fit_codes, dataset.fit_test_any_date) - - def fit_6_weeks(symp_date): + def has_event(codelist, l_age, u_age): + return first_event(codelist, l_age, u_age).exists_for_patient() + + dataset.ida_symp = has_event(codelists.ida_codes, 16, 111) & ~prev_event(codelists.ida_codes, ida_date, 16, 111) + dataset.cibh_symp = has_event(codelists.cibh_codes, 16, 111) & ~prev_event(codelists.cibh_codes, cibh_date, 16, 111) + dataset.abdomass_symp = has_event(codelists.abdomass_codes, 16, 111) & ~prev_event(codelists.abdomass_codes, abdomass_date, 16, 111) + dataset.prbleed_symp = has_event(codelists.prbleeding_codes, 16, 111) & ~prev_event(codelists.prbleeding_codes, prbleed_date, 16, 111) + dataset.wl_symp = has_event(codelists.wl_codes, 16, 111) & ~prev_event(codelists.wl_codes, wl_date, 16, 111) + dataset.abdopain_symp = has_event(codelists.abdopain_codes, 16, 111) & ~prev_event(codelists.abdopain_codes, abdopain_date, 16, 111) + dataset.anaemia_symp = has_event(codelists.anaemia_codes, 16, 111) & ~prev_event(codelists.anaemia_codes, anaemia_date, 16, 111) + + dataset.prbleed_symp_50 = has_event(codelists.prbleeding_codes, 50, 111) & ~prev_event(codelists.prbleeding_codes, prbleed_50_date, 50, 111) + dataset.wl_symp_50 = has_event(codelists.wl_codes, 50, 111) & ~prev_event(codelists.wl_codes, wl_50_date, 50, 111) + dataset.abdopain_symp_50 = has_event(codelists.abdopain_codes, 50, 111) & ~prev_event(codelists.abdopain_codes, abdopain_50_date, 50, 111) + dataset.anaemia_symp_60 = has_event(codelists.anaemia_codes, 60, 111) & ~prev_event(codelists.anaemia_codes, anaemia_60_date, 60, 111) + dataset.wl_abdopain_symp_40 = has_event(codelists.wl_codes, 40, 111) & has_event(codelists.abdopain_codes, 40, 111) & ~prev_event(codelists.wl_codes, wl_40_date, 40, 111) & ~prev_event(codelists.abdopain_codes, abdopain_40_date, 40, 111) + dataset.prbleed_abdopain_symp = has_event(codelists.prbleeding_codes, 16, 50) & has_event(codelists.abdopain_codes, 16, 50) & ~prev_event(codelists.prbleeding_codes, prbleed_u50_date, 16, 50) & ~prev_event(codelists.abdopain_codes, abdopain_u50_date, 16, 50) + dataset.prbleed_wl_symp = has_event(codelists.prbleeding_codes, 16, 50) & has_event(codelists.wl_codes, 16, 50) & ~prev_event(codelists.prbleeding_codes, prbleed_u50_date, 16, 50) & ~prev_event(codelists.wl_codes, wl_u50_date, 16, 50) + + dataset.lowerGI_any_symp = (dataset.ida_symp | dataset.cibh_symp | dataset.abdomass_symp | dataset.prbleed_symp | dataset.wl_symp | dataset.abdopain_symp | dataset.anaemia_symp) + dataset.lowerGI_2ww_symp = (dataset.ida_symp | dataset.cibh_symp | dataset.abdomass_symp | dataset.prbleed_symp_50 | dataset.wl_symp_50 | dataset.abdopain_symp_50 | dataset.anaemia_symp_60 | dataset.wl_abdopain_symp_40 | dataset.prbleed_abdopain_symp | dataset.prbleed_wl_symp) + + def symptom_date(symp_date, symp_event): + return case(when(symp_event).then(symp_date)) + + dataset.ida_date = symptom_date(ida_date, dataset.ida_symp) + dataset.cibh_date = symptom_date(cibh_date, dataset.cibh_symp) + dataset.prbleed_date = symptom_date(prbleed_date, dataset.prbleed_symp) + dataset.wl_date = symptom_date(wl_date, dataset.wl_symp) + dataset.abdomass_date = symptom_date(abdomass_date, dataset.abdomass_symp) + dataset.abdopain_date = symptom_date(abdopain_date, dataset.abdopain_symp) + dataset.anaemia_date = symptom_date(anaemia_date, dataset.anaemia_symp) + + dataset.prbleed_50_date = symptom_date(prbleed_50_date, dataset.prbleed_symp_50) + dataset.wl_50_date = symptom_date(wl_50_date, dataset.wl_symp_50) + dataset.abdopain_50_date = symptom_date(abdopain_50_date, dataset.abdopain_symp_50) + dataset.anaemia_60_date = symptom_date(anaemia_60_date, dataset.anaemia_symp_60) + dataset.wl_abdopain_40_date = case(when(dataset.wl_abdopain_symp_40).then(minimum_of(wl_40_date, abdopain_40_date))) + dataset.prbleed_abdopain_date = case(when(dataset.prbleed_abdopain_symp).then(minimum_of(prbleed_u50_date, abdopain_u50_date))) + dataset.prbleed_wl_date = case(when(dataset.prbleed_wl_symp).then(minimum_of(prbleed_u50_date, wl_u50_date))) + + dataset.lowerGI_any_symp_date = minimum_of(dataset.ida_date, dataset.cibh_date, dataset.prbleed_date, dataset.wl_date, dataset.abdomass_date, dataset.abdopain_date, dataset.anaemia_date) + dataset.lowerGI_2ww_symp_date = minimum_of(dataset.ida_date, dataset.cibh_date, dataset.abdomass_date, dataset.prbleed_50_date, dataset.wl_50_date, dataset.abdopain_50_date, dataset.anaemia_60_date, dataset.wl_abdopain_40_date, dataset.prbleed_abdopain_date, dataset.prbleed_wl_date) + + def colorectal_ca_symp_1year(symp_date): + return clinical_events.where(clinical_events.snomedct_code.is_in(codelists.colorectal_diagnosis_codes_snomed) + ).where( + clinical_events.date.is_on_or_between(symp_date, symp_date + months(12)) + ).sort_by( + clinical_events.date + ).first_for_patient().date + + dataset.ca_ida_date = colorectal_ca_symp_1year(dataset.ida_date) + dataset.ca_cibh_date = colorectal_ca_symp_1year(dataset.cibh_date) + dataset.ca_prbleed_date = colorectal_ca_symp_1year(dataset.prbleed_date) + dataset.ca_wl_date = colorectal_ca_symp_1year(dataset.wl_date) + dataset.ca_abdomass_date = colorectal_ca_symp_1year(dataset.abdomass_date) + dataset.ca_abdopain_date = colorectal_ca_symp_1year(dataset.abdopain_date) + dataset.ca_anaemia_date = colorectal_ca_symp_1year(dataset.anaemia_date) + + dataset.ca_prbleed_50_date = colorectal_ca_symp_1year(dataset.prbleed_50_date) + dataset.ca_wl_50_date = colorectal_ca_symp_1year(dataset.wl_50_date) + dataset.ca_abdopain_50_date = colorectal_ca_symp_1year(dataset.abdopain_50_date) + dataset.ca_anaemia_60_date = colorectal_ca_symp_1year(dataset.anaemia_60_date) + dataset.ca_wl_abdopain_40_date = colorectal_ca_symp_1year(dataset.wl_abdopain_40_date) + dataset.ca_prbleed_abdopain_date = colorectal_ca_symp_1year(dataset.prbleed_abdopain_date) + dataset.ca_prbleed_wl_date = colorectal_ca_symp_1year(dataset.prbleed_wl_date) + + dataset.ca_lowerGI_any_date = colorectal_ca_symp_1year(dataset.lowerGI_any_symp_date) + dataset.ca_lowerGI_2ww_date = colorectal_ca_symp_1year(dataset.lowerGI_2ww_symp_date) + + def symp_to_ca_days(ca_date, symp_date): + return (ca_date - symp_date).days + + dataset.ca_ida_days = symp_to_ca_days(dataset.ca_ida_date, dataset.ida_date) + dataset.ca_cibh_days = symp_to_ca_days(dataset.ca_cibh_date, dataset.cibh_date) + dataset.ca_prbleed_days = symp_to_ca_days(dataset.ca_prbleed_date, dataset.prbleed_date) + dataset.ca_wl_days = symp_to_ca_days(dataset.ca_wl_date, dataset.wl_date) + dataset.ca_abdomass_days = symp_to_ca_days(dataset.ca_abdomass_date, dataset.abdomass_date) + dataset.ca_abdopain_days = symp_to_ca_days(dataset.ca_abdopain_date, dataset.abdopain_date) + dataset.ca_anaemia_days = symp_to_ca_days(dataset.ca_anaemia_date, dataset.anaemia_date) + + dataset.ca_prbleed_50_days = symp_to_ca_days(dataset.ca_prbleed_50_date, dataset.prbleed_50_date) + dataset.ca_wl_50_days = symp_to_ca_days(dataset.ca_wl_50_date, dataset.wl_50_date) + dataset.ca_abdopain_50_days = symp_to_ca_days(dataset.ca_abdopain_50_date, dataset.abdopain_50_date) + dataset.ca_anaemia_60_days = symp_to_ca_days(dataset.ca_anaemia_60_date, dataset.anaemia_60_date) + dataset.ca_wl_abdopain_40_days = symp_to_ca_days(dataset.ca_wl_abdopain_40_date, dataset.wl_abdopain_40_date) + dataset.ca_prbleed_abdopain_days = symp_to_ca_days(dataset.ca_prbleed_abdopain_date, dataset.prbleed_abdopain_date) + dataset.ca_prbleed_wl_days = symp_to_ca_days(dataset.ca_prbleed_wl_date, dataset.prbleed_wl_date) + + dataset.ca_lowerGI_any_days = symp_to_ca_days(dataset.ca_lowerGI_any_date, dataset.lowerGI_any_symp_date) + dataset.ca_lowerGI_2ww_days = symp_to_ca_days(dataset.ca_lowerGI_2ww_date, dataset.lowerGI_2ww_symp_date) + + def fit_symp_3months(symp_date): return clinical_events.where(clinical_events.snomedct_code.is_in(codelists.fit_codes) ).where( - clinical_events.date.is_on_or_between(symp_date, symp_date + days(42)) + clinical_events.date.is_on_or_between(symp_date, symp_date + months(3)) ).sort_by( clinical_events.date - ).first_for_patient() + ).first_for_patient().date - dataset.fit_6_ida = dataset.ida_symp & fit_6_weeks(dataset.ida_date).exists_for_patient() - dataset.fit_6_cibh = dataset.cibh_symp & fit_6_weeks(dataset.cibh_date).exists_for_patient() - dataset.fit_6_abdomass = dataset.abdomass_symp & fit_6_weeks(dataset.abdomass_date).exists_for_patient() - dataset.fit_6_prbleed = dataset.prbleed_symp_50 & fit_6_weeks(dataset.prbleed_date).exists_for_patient() - dataset.fit_6_wl = dataset.wl_symp_50 & fit_6_weeks(dataset.wl_date).exists_for_patient() - dataset.fit_6_abdopain = dataset.abdopain_symp_50 & fit_6_weeks(dataset.abdopain_date).exists_for_patient() - dataset.fit_6_anaemia = dataset.anaemia_symp_60 & fit_6_weeks(dataset.anaemia_date).exists_for_patient() - dataset.fit_6_wl_abdopain = dataset.wl_abdopain_symp_40 & (fit_6_weeks(dataset.wl_date).exists_for_patient() | fit_6_weeks(dataset.abdopain_date).exists_for_patient()) - dataset.fit_6_prbleed_abdopain = dataset.prbleed_abdopain_symp & fit_6_weeks(dataset.prbleed_date).exists_for_patient() - dataset.fit_6_prbleed_wl = dataset.prbleed_wl_symp & fit_6_weeks(dataset.prbleed_date).exists_for_patient() - dataset.fit_6_all_lowerGI = (dataset.fit_6_ida | dataset.fit_6_cibh | dataset.fit_6_abdomass | dataset.fit_6_prbleed | dataset.fit_6_wl | dataset.fit_6_abdopain | dataset.fit_6_anaemia | dataset.fit_6_wl_abdopain | dataset.fit_6_prbleed_abdopain | dataset.fit_6_prbleed_wl) - - def colorectal_ca_symp_6_months(symp_date): - return clinical_events.where(clinical_events.snomedct_code.is_in(codelists.colorectal_diagnosis_codes_snomed) + dataset.fit_ida_date = fit_symp_3months(dataset.ida_date) + dataset.fit_cibh_date = fit_symp_3months(dataset.cibh_date) + dataset.fit_prbleed_date = fit_symp_3months(dataset.prbleed_date) + dataset.fit_wl_date = fit_symp_3months(dataset.wl_date) + dataset.fit_abdomass_date = fit_symp_3months(dataset.abdomass_date) + dataset.fit_abdopain_date = fit_symp_3months(dataset.abdopain_date) + dataset.fit_anaemia_date = fit_symp_3months(dataset.anaemia_date) + + dataset.fit_prbleed_50_date = fit_symp_3months(dataset.prbleed_50_date) + dataset.fit_wl_50_date = fit_symp_3months(dataset.wl_50_date) + dataset.fit_abdopain_50_date = fit_symp_3months(dataset.abdopain_50_date) + dataset.fit_anaemia_60_date = fit_symp_3months(dataset.anaemia_60_date) + dataset.fit_wl_abdopain_40_date = fit_symp_3months(dataset.wl_abdopain_40_date) + dataset.fit_prbleed_abdopain_date = fit_symp_3months(dataset.prbleed_abdopain_date) + dataset.fit_prbleed_wl_date = fit_symp_3months(dataset.prbleed_wl_date) + + dataset.fit_lowerGI_any_date = fit_symp_3months(dataset.lowerGI_any_symp_date) + dataset.fit_lowerGI_2ww_date = fit_symp_3months(dataset.lowerGI_2ww_symp_date) + + def fit_test_value(fit_date): + return clinical_events_ranges.where(clinical_events_ranges.snomedct_code.is_in(codelists.fit_codes) + ).where( + clinical_events_ranges.date.is_on_or_after(fit_date) + ).sort_by( + clinical_events_ranges.date + ).first_for_patient().numeric_value + + def fit_test_comparator(fit_date): + return clinical_events_ranges.where(clinical_events_ranges.snomedct_code.is_in(codelists.fit_codes) ).where( - clinical_events.date.is_on_or_between(symp_date, symp_date + months(6)) + clinical_events_ranges.date.is_on_or_after(fit_date) + ).sort_by( + clinical_events_ranges.date + ).first_for_patient().comparator + + def fit_test_code(fit_date): + return clinical_events.where(clinical_events.snomedct_code.is_in(codelists.fit_codes) + ).where( + clinical_events.date.is_on_or_after(fit_date) ).sort_by( clinical_events.date - ).first_for_patient() - - dataset.ca_6_ida = dataset.ida_symp & colorectal_ca_symp_6_months(dataset.ida_date).exists_for_patient() - dataset.ca_6_cibh = dataset.cibh_symp & colorectal_ca_symp_6_months(dataset.cibh_date).exists_for_patient() - dataset.ca_6_abdomass = dataset.abdomass_symp & colorectal_ca_symp_6_months(dataset.abdomass_date).exists_for_patient() - dataset.ca_6_prbleed = dataset.prbleed_symp_50 & colorectal_ca_symp_6_months(dataset.prbleed_date).exists_for_patient() - dataset.ca_6_wl = dataset.wl_symp_50 & colorectal_ca_symp_6_months(dataset.wl_date).exists_for_patient() - dataset.ca_6_abdopain = dataset.abdopain_symp_50 & colorectal_ca_symp_6_months(dataset.abdopain_date).exists_for_patient() - dataset.ca_6_anaemia = dataset.anaemia_symp_60 & colorectal_ca_symp_6_months(dataset.anaemia_date).exists_for_patient() - dataset.ca_6_wl_abdopain = dataset.wl_abdopain_symp_40 & (colorectal_ca_symp_6_months(dataset.wl_date).exists_for_patient() | colorectal_ca_symp_6_months(dataset.abdopain_date).exists_for_patient()) - dataset.ca_6_prbleed_abdopain = dataset.prbleed_abdopain_symp & colorectal_ca_symp_6_months(dataset.prbleed_date).exists_for_patient() - dataset.ca_6_prbleed_wl = dataset.prbleed_wl_symp & colorectal_ca_symp_6_months(dataset.prbleed_date).exists_for_patient() - dataset.ca_6_all_lowerGI = (dataset.ca_6_ida | dataset.ca_6_cibh | dataset.ca_6_abdomass | dataset.ca_6_prbleed | dataset.ca_6_wl | dataset.ca_6_abdopain | dataset.ca_6_anaemia | dataset.ca_6_wl_abdopain | dataset.ca_6_prbleed_abdopain | dataset.ca_6_prbleed_wl) + ).first_for_patient().snomedct_code + + def fit_test_positive(fit_date): + return case(when((fit_test_value(fit_date)>=10) & (fit_test_comparator(fit_date)!="<")).then(True), + when(fit_test_code(fit_date)=="389076003").then(True), + when(fit_test_code(fit_date)=="59614000").then(True), + otherwise=False) + + dataset.fit_ida_positive = fit_test_positive(dataset.fit_ida_date) + dataset.fit_cibh_positive = fit_test_positive(dataset.fit_cibh_date) + dataset.fit_prbleed_positive = fit_test_positive(dataset.fit_prbleed_date) + dataset.fit_wl_positive = fit_test_positive(dataset.fit_wl_date) + dataset.fit_abdomass_positive = fit_test_positive(dataset.fit_abdomass_date) + dataset.fit_abdopain_positive = fit_test_positive(dataset.fit_abdopain_date) + dataset.fit_anaemia_positive = fit_test_positive(dataset.fit_anaemia_date) + + dataset.fit_prbleed_50_positive = fit_test_positive(dataset.fit_prbleed_50_date) + dataset.fit_wl_50_positive = fit_test_positive(dataset.fit_wl_50_date) + dataset.fit_abdopain_50_positive = fit_test_positive(dataset.fit_abdopain_50_date) + dataset.fit_anaemia_60_positive = fit_test_positive(dataset.fit_anaemia_60_date) + dataset.fit_wl_abdopain_40_positive = fit_test_positive(dataset.fit_wl_abdopain_40_date) + dataset.fit_prbleed_abdopain_positive = fit_test_positive(dataset.fit_prbleed_abdopain_date) + dataset.fit_prbleed_wl_positive = fit_test_positive(dataset.fit_prbleed_wl_date) + + dataset.fit_lowerGI_any_positive = fit_test_positive(dataset.fit_lowerGI_any_date) + dataset.fit_lowerGI_2ww_positive = fit_test_positive(dataset.fit_lowerGI_2ww_date) + + def symp_to_fit_days(fit_date, symp_date): + return (fit_date - symp_date).days + + dataset.fit_ida_days = symp_to_fit_days(dataset.fit_ida_date, dataset.ida_date) + dataset.fit_cibh_days = symp_to_fit_days(dataset.fit_cibh_date, dataset.cibh_date) + dataset.fit_prbleed_days = symp_to_fit_days(dataset.fit_prbleed_date, dataset.prbleed_date) + dataset.fit_wl_days = symp_to_fit_days(dataset.fit_wl_date, dataset.wl_date) + dataset.fit_abdomass_days = symp_to_fit_days(dataset.fit_abdomass_date, dataset.abdomass_date) + dataset.fit_abdopain_days = symp_to_fit_days(dataset.fit_abdopain_date, dataset.abdopain_date) + dataset.fit_anaemia_days = symp_to_fit_days(dataset.fit_anaemia_date, dataset.anaemia_date) + + dataset.fit_prbleed_50_days = symp_to_fit_days(dataset.fit_prbleed_50_date, dataset.prbleed_50_date) + dataset.fit_wl_50_days = symp_to_fit_days(dataset.fit_wl_50_date, dataset.wl_50_date) + dataset.fit_abdopain_50_days = symp_to_fit_days(dataset.fit_abdopain_50_date, dataset.abdopain_50_date) + dataset.fit_anaemia_60_days = symp_to_fit_days(dataset.fit_anaemia_60_date, dataset.anaemia_60_date) + dataset.fit_wl_abdopain_40_days = symp_to_fit_days(dataset.fit_wl_abdopain_40_date, dataset.wl_abdopain_40_date) + dataset.fit_prbleed_abdopain_days = symp_to_fit_days(dataset.fit_prbleed_abdopain_date, dataset.prbleed_abdopain_date) + dataset.fit_prbleed_wl_days = symp_to_fit_days(dataset.fit_prbleed_wl_date, dataset.prbleed_wl_date) + + dataset.fit_lowerGI_any_days = symp_to_fit_days(dataset.fit_lowerGI_any_date, dataset.lowerGI_any_symp_date) + dataset.fit_lowerGI_2ww_days = symp_to_fit_days(dataset.fit_lowerGI_2ww_date, dataset.lowerGI_2ww_symp_date) + + lowerGI_any_num_ca = clinical_events.where(clinical_events.snomedct_code.is_in(codelists.colorectal_symptom_codes) + ).where( + clinical_events.date.is_on_or_between(dataset.lowerGI_any_symp_date, dataset.ca_lowerGI_any_date) + ).date.count_episodes_for_patient(days(42)) + + dataset.lowerGI_any_num_ca = lowerGI_any_num_ca + + lowerGI_any_num_fit = clinical_events.where(clinical_events.snomedct_code.is_in(codelists.colorectal_symptom_codes) + ).where( + clinical_events.date.is_on_or_between(dataset.lowerGI_any_symp_date, dataset.fit_lowerGI_any_date) + ).date.count_episodes_for_patient(days(42)) + + dataset.lowerGI_any_num_fit = lowerGI_any_num_fit return dataset diff --git a/tests/acceptance/external_studies/mainroute_cancer/analysis/define_static_dataset.py b/tests/acceptance/external_studies/mainroute_cancer/analysis/define_static_dataset.py index a413d55d5..acdafd24e 100644 --- a/tests/acceptance/external_studies/mainroute_cancer/analysis/define_static_dataset.py +++ b/tests/acceptance/external_studies/mainroute_cancer/analysis/define_static_dataset.py @@ -1,7 +1,8 @@ from ehrql import case, when, years, days, minimum_of, maximum_of -from ehrql.tables.core import patients, clinical_events +from ehrql.tables.core import patients from ehrql.tables.tpp import ( addresses, + clinical_events, practice_registrations) import codelists @@ -29,6 +30,13 @@ clinical_events.date.is_on_or_between(index_date, end_date) ).exists_for_patient() +dataset.colorectal_ca_diag_date = clinical_events.where(clinical_events.snomedct_code.is_in(codelists.colorectal_diagnosis_codes_snomed) + ).where( + clinical_events.date.is_on_or_between(index_date, end_date) + ).sort_by( + clinical_events.date + ).first_for_patient().date + age = patients.age_on(dataset.entry_date) dataset.age = age dataset.age_group = case( @@ -73,4 +81,30 @@ otherwise="Unknown" ) -dataset.region = practice_registrations.for_patient_on(dataset.entry_date).practice_nuts1_region_name \ No newline at end of file +dataset.region = practice_registrations.for_patient_on(dataset.entry_date).practice_nuts1_region_name + +def num_event(codelist, l_age, u_age): + return clinical_events.where(clinical_events.snomedct_code.is_in(codelist) + ).where( + clinical_events.date.is_on_or_between(index_date, end_date) + ).where( + clinical_events.date.is_on_or_between(dataset.entry_date, dataset.exit_date) + ).where( + patients.age_on(clinical_events.date)>=l_age + ).where( + patients.age_on(clinical_events.date) dataset.rtt_end_date) - ).count_for_patient() - dataset.add_column(f"{med}_post_count", post_count_query) - - # Any prescription after waiting list - post_any_query = med_events.where( - med_events.date.is_on_or_between(dataset.rtt_end_date + days(1), minimum_of(dataset.rtt_end_date + days(182), dataset.end_date)) - & (dataset.end_date > dataset.rtt_end_date) - ).exists_for_patient() - dataset.add_column(f"{med}_post_any", post_any_query) - - -# Date of first prescription -dataset.first_opioid_date = med_events.where( - med_events.dmd_code.is_in(codelists.opioid_codes) - & med_events.date.is_on_or_between(dataset.rtt_start_date - days(365), minimum_of(dataset.end_date, dataset.rtt_end_date + days(182))) - ).sort_by( - med_events.date - ).first_for_patient().date - - - -#### Demographics #### - -dataset.age = patients.age_on(dataset.rtt_start_date) -dataset.age_group = case( - when(dataset.age < 40).then("18-39"), - when(dataset.age < 50).then("40-49"), - when(dataset.age < 60).then("50-59"), - when(dataset.age < 70).then("60-69"), - when(dataset.age < 80).then("70-79"), - when(dataset.age >= 80).then("80+"), - otherwise="Missing", -) -dataset.sex = patients.sex - -# IMD decile -imd = addresses.for_patient_on(dataset.rtt_start_date).imd_rounded -dataset.imd10 = case( - when((imd >= 0) & (imd < int(32844 * 1 / 10))).then("1 (most deprived)"), - when(imd < int(32844 * 2 / 10)).then("2"), - when(imd < int(32844 * 3 / 10)).then("3"), - when(imd < int(32844 * 4 / 10)).then("4"), - when(imd < int(32844 * 5 / 10)).then("5"), - when(imd < int(32844 * 6 / 10)).then("6"), - when(imd < int(32844 * 7 / 10)).then("7"), - when(imd < int(32844 * 8 / 10)).then("8"), - when(imd < int(32844 * 9 / 10)).then("9"), - when(imd >= int(32844 * 9 / 10)).then("10 (least deprived)"), - otherwise="Unknown" -) - -# IMD quintile -dataset.imd5 = case( - when((imd >= 0) & (imd < int(32844 * 1 / 5))).then("1 (most deprived)"), - when(imd < int(32844 * 2 / 5)).then("2"), - when(imd < int(32844 * 3 / 5)).then("3"), - when(imd < int(32844 * 4 / 5)).then("4"), - when(imd >= int(32844 * 4 / 5)).then("5 (least deprived)"), - otherwise="Unknown" -) - -# Ethnicity 6 categories -ethnicity6 = clinical_events.where( - clinical_events.snomedct_code.is_in(codelists.ethnicity_codes_6) - ).where( - clinical_events.date.is_on_or_before(dataset.rtt_start_date) - ).sort_by( - clinical_events.date - ).last_for_patient().snomedct_code.to_category(codelists.ethnicity_codes_6) - -dataset.ethnicity6 = case( - when(ethnicity6 == "1").then("White"), - when(ethnicity6 == "2").then("Mixed"), - when(ethnicity6 == "3").then("South Asian"), - when(ethnicity6 == "4").then("Black"), - when(ethnicity6 == "5").then("Other"), - when(ethnicity6 == "6").then("Not stated"), - otherwise="Unknown" -) - -# Ethnicity 16 categories -ethnicity16 = clinical_events.where( - clinical_events.snomedct_code.is_in(codelists.ethnicity_codes_16) - ).where( - clinical_events.date.is_on_or_before(dataset.rtt_start_date) - ).sort_by( - clinical_events.date - ).last_for_patient().snomedct_code.to_category(codelists.ethnicity_codes_16) - -dataset.ethnicity16 = case( - when(ethnicity16 == "1").then("White - British"), - when(ethnicity16 == "2").then("White - Irish"), - when(ethnicity16 == "3").then("White - Other"), - when(ethnicity16 == "4").then("Mixed - White/Black Caribbean"), - when(ethnicity16 == "5").then("Mixed - White/Black African"), - when(ethnicity16 == "6").then("Mixed - White/Asian"), - when(ethnicity16 == "7").then("Mixed - Other"), - when(ethnicity16 == "8").then("Asian or Asian British - Indian"), - when(ethnicity16 == "9").then("Asian or Asian British - Pakistani"), - when(ethnicity16 == "10").then("Asian or Asian British - Bangladeshi"), - when(ethnicity16 == "11").then("Asian or Asian British - Other"), - when(ethnicity16 == "12").then("Black - Caribbean"), - when(ethnicity16 == "13").then("Black - African"), - when(ethnicity16 == "14").then("Black - Other"), - when(ethnicity16 == "15").then("Other - Chinese"), - when(ethnicity16 == "16").then("Other - Other"), - otherwise="Unknown" -) - -dataset.region = practice_registrations.for_patient_on(dataset.rtt_start_date).practice_nuts1_region_name - - -#### Clinical characteristics #### - -# Cancer diagnosis in past 5 years -dataset.cancer = clinical_events.where( - clinical_events.snomedct_code.is_in(codelists.cancer_codes) - ).where( - clinical_events.date.is_between_but_not_on(dataset.rtt_start_date - years(5), dataset.rtt_start_date) - ).exists_for_patient() - - -# Comorbidities in past 5 years -clin_events_5yrs = clinical_events.where( - clinical_events.date.is_on_or_between(dataset.rtt_start_date - years(5), dataset.rtt_start_date) - ) - -comorb_codes = { - "diabetes": codelists.diabetes_codes, - "cardiac": codelists.cardiac_codes, - "copd": codelists.copd_codes, - "liver": codelists.liver_codes, - "ckd": codelists.ckd_codes, - "oa": codelists.osteoarthritis_codes, - "ra": codelists.ra_codes, - "depression": codelists.depression_codes, - "anxiety": codelists.anxiety_codes, - "smi": codelists.smi_codes, - "oud": codelists.oud_codes - } - - -for comorb, comorb_codelist in comorb_codes.items(): - - if comorb in ["diabetes","cardiac","copd","liver","oa","ra"]: - - ctv3_query = clin_events_5yrs.where( - clin_events_5yrs.ctv3_code.is_in(comorb_codelist) - ).exists_for_patient() - dataset.add_column(comorb, ctv3_query) - - else: - - snomed_query = clin_events_5yrs.where( - clin_events_5yrs.snomedct_code.is_in(comorb_codelist) - ).exists_for_patient() - dataset.add_column(comorb, snomed_query) - - -#### DEFINE POPULATION #### - -dataset.define_population( - dataset.end_date.is_after(dataset.rtt_start_date) - & registrations.exists_for_patient() - & last_clockstops.exists_for_patient() -) diff --git a/tests/acceptance/external_studies/waiting-list/analysis/measures_opioid.py b/tests/acceptance/external_studies/waiting-list/analysis/measures_opioid.py index 2805c6f0e..95c5da245 100644 --- a/tests/acceptance/external_studies/waiting-list/analysis/measures_opioid.py +++ b/tests/acceptance/external_studies/waiting-list/analysis/measures_opioid.py @@ -37,7 +37,7 @@ wl_clockstops.referral_to_treatment_period_end_date.is_on_or_between("2021-05-01", "2022-04-30") & wl_clockstops.referral_to_treatment_period_start_date.is_on_or_before(wl_clockstops.referral_to_treatment_period_end_date) & wl_clockstops.week_ending_date.is_on_or_between("2021-05-01", "2022-04-30") - & wl_clockstops.waiting_list_type.is_in(["IRTT","ORTT","PTLO","PTLI","RTTO","RTTI"]) + & wl_clockstops.activity_treatment_function_code.is_in(["110","111"]) ).sort_by( wl_clockstops.referral_to_treatment_period_start_date, wl_clockstops.pseudo_referral_identifier, @@ -45,15 +45,6 @@ wl_clockstops.pseudo_organisation_code_patient_pathway_identifier_issuer ).last_for_patient() -routine = case( - when(last_clockstops.priority_type_code == "routine").then("Routine"), - when(last_clockstops.priority_type_code == "urgent").then("Urgent"), - when(last_clockstops.priority_type_code == "two week wait").then("Urgent"), - otherwise="Missing", - ) - -admitted = (last_clockstops.waiting_list_type.is_in(["IRTT","PTLI","RTTI"])) - # RTT waiting list start date and end date rtt_start_date = last_clockstops.referral_to_treatment_period_start_date @@ -87,6 +78,7 @@ # Standardise Rx dates relative to RTT start date for pre-WL prescribing all_opioid_rx.tmp_pre_date = tmp_date + days((all_opioid_rx.date - (rtt_start_date - days(182))).days) + ### Prescribing variables for numerator #### # Num Rx during waiting list (up to 1 year) @@ -109,12 +101,13 @@ ## Censoring date -registrations = practice_registrations.where( - practice_registrations.start_date.is_on_or_before(rtt_start_date - days(182)) - & (practice_registrations.end_date.is_after(rtt_start_date) | practice_registrations.end_date.is_null()) - ) +registrations = practice_registrations.spanning( + rtt_start_date - days(182), rtt_start_date + ).sort_by( + practice_registrations.end_date + ).last_for_patient() -reg_end_date = registrations.sort_by(registrations.end_date).last_for_patient().end_date +reg_end_date = registrations.end_date end_date = minimum_of(reg_end_date, patients.date_of_death, rtt_end_date + days(182)) # Standardise end date relative to RTT start and end dates @@ -143,43 +136,8 @@ # Demographics age = patients.age_on(rtt_start_date) -# age_group = case( -# when(age < 40).then("18-39"), -# when(age < 50).then("40-49"), -# when(age < 60).then("50-59"), -# when(age < 70).then("60-69"), -# when(age < 80).then("70-79"), -# when(age >= 80).then("80+"), -# otherwise="Missing", -# ) - sex = patients.sex -# # IMD decile -# imd = addresses.for_patient_on(rtt_start_date).imd_rounded -# imd10 = case( -# when((imd >= 0) & (imd < int(32844 * 1 / 10))).then("1 (most deprived)"), -# when(imd < int(32844 * 2 / 10)).then("2"), -# when(imd < int(32844 * 3 / 10)).then("3"), -# when(imd < int(32844 * 4 / 10)).then("4"), -# when(imd < int(32844 * 5 / 10)).then("5"), -# when(imd < int(32844 * 6 / 10)).then("6"), -# when(imd < int(32844 * 7 / 10)).then("7"), -# when(imd < int(32844 * 8 / 10)).then("8"), -# when(imd < int(32844 * 9 / 10)).then("9"), -# when(imd >= int(32844 * 9 / 10)).then("10 (least deprived)"), -# otherwise="Unknown" -# ) - -# # IMD quintile -# imd5 = case( -# when((imd >= 0) & (imd < int(32844 * 1 / 5))).then("1 (most deprived)"), -# when(imd < int(32844 * 2 / 5)).then("2"), -# when(imd < int(32844 * 3 / 5)).then("3"), -# when(imd < int(32844 * 4 / 5)).then("4"), -# when(imd >= int(32844 * 4 / 5)).then("5 (least deprived)"), -# otherwise="Unknown" -# ) ###### @@ -198,27 +156,23 @@ # Registered for >6 months & registrations.exists_for_patient() - # Orthopaedic surgery codes - & last_clockstops.activity_treatment_function_code.is_in(["110","111"]) - # No cancer & ~cancer # Censoring date (death/deregistration) after start of waiting list - & (end_date >= rtt_start_date) + & (end_date.is_after(rtt_start_date)) # Routine priority type - & routine.is_in(["Routine"]) - + & (last_clockstops.priority_type_code.is_in(["routine"])) + # Admitted - & admitted + & (last_clockstops.waiting_list_type.is_in(["IRTT","PTLI","RTTI"])) # Alive at end of waiting list - & (patients.date_of_death >= rtt_end_date) + & ((patients.date_of_death >= rtt_end_date) | patients.date_of_death.is_null()) ) - # Prescribing during WL measures.define_measure( name="count_wait", diff --git a/tests/acceptance/external_studies/waiting-list/codelists/ons-depression-and-generalised-anxiety-disorder-diagnoses-and-symptoms.csv b/tests/acceptance/external_studies/waiting-list/codelists/ons-depression-and-generalised-anxiety-disorder-diagnoses-and-symptoms.csv deleted file mode 100644 index a8948adcf..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/ons-depression-and-generalised-anxiety-disorder-diagnoses-and-symptoms.csv +++ /dev/null @@ -1,291 +0,0 @@ -code,term -10211000132109,Perinatal depression -1038261000000100,Maternal postnatal depression -10532003,"Primary degenerative dementia of the Alzheimer type, presenile onset, with depression" -1057351000000106,Signposting to depression self-help group -10743001000119103,Anxiety disorder in mother complicating childbirth -1086471000000103,"Recurrent reactive depressive episodes, severe, with psychosis" -1086661000000108,"Reactive depression, prolonged single episode" -1086671000000101,"Reactive depression, single episode" -1086681000000104,"Reactive depression, recurrent" -1086691000000102,"Reactive depression, first episode" -1089511000000100,Recurrent depression with current severe episode and psychotic features -1089631000000109,Recurrent depression with current severe episode without psychotic features -1089641000000100,Recurrent depression with current moderate episode -109006,Anxiety disorder of childhood OR adolescence -11003002,Nervous diarrhea -111487009,Dream anxiety disorder -112001000119100,Positive screening for depression on Patient Health Questionnaire 9 -11806006,Separation anxiety disorder of childhood -1196001,"Chronic bipolar II disorder, most recent episode major depressive" -12398201000119102,Anxiety disorder caused by methamphetamine -133121000119109,Severe seasonal affective disorder -14070001,Multi-infarct dementia with depression -14183003,"Chronic major depressive disorder, single episode" -15193003,"Severe recurrent major depression with psychotic features, mood-incongruent" -15277004,Hallucinogen-induced anxiety disorder -15639000,"Moderate major depression, single episode" -162218007,Stress-related problem -16238181000119101,Depressive disorder caused by amphetamine -16238221000119109,Depressive disorder caused by methamphetamine -16264621000119109,Recurrent mild major depressive disorder co-occurrent with anxiety -16264821000119108,Recurrent severe major depressive disorder co-occurrent with anxiety -16264901000119109,Recurrent moderate major depressive disorder co-occurrent with anxiety -16265061000119105,Recurrent major depressive disorder co-occurrent with anxiety in full remission -16265301000119106,Recurrent major depressive disorder in partial remission co-occurrent with anxiety -16265701000119107,Illness anxiety disorder -16265951000119109,Mild major depressive disorder co-occurrent with anxiety single episode -16266831000119100,Moderate major depressive disorder co-occurrent with anxiety single episode -16266991000119108,Severe major depressive disorder co-occurrent with anxiety single episode -162722001,On examination - depressed -162723006,On examination - anxious -162724000,On examination - nervous -16295005,"Bipolar II disorder, most recent episode major depressive" -166291000000108,Depression enhanced services administration -166481000000107,Depression enhanced service completed -1686006,"Sedative, hypnotic AND/OR anxiolytic-induced anxiety disorder" -17496003,Organic anxiety disorder -18818009,Moderate recurrent major depression -191455000,Presenile dementia with depression -191459006,Senile dementia with depression -191495003,Drug-induced depressive state -191601008,"Single major depressive episode, mild" -191602001,"Single major depressive episode, moderate" -191604000,"Single major depressive episode, severe, with psychosis" -191610000,"Recurrent major depressive episodes, mild" -191611001,"Recurrent major depressive episodes, moderate" -191613003,"Recurrent major depressive episodes, severe, with psychosis" -191616006,Recurrent depression -191627008,"Bipolar affective disorder, current episode depression" -191629006,"Bipolar affective disorder, currently depressed, mild" -191630001,"Bipolar affective disorder, currently depressed, moderate" -191632009,"Bipolar affective disorder, currently depressed, severe, with psychosis" -191659001,Atypical depressive disorder -191676002,Reactive depressive psychosis -191708009,Chronic anxiety -191709001,Recurrent anxiety -192037000,Acute panic state due to acute stress reaction -192038005,Acute fugue state due to acute stress reaction -192039002,Acute stupor state due to acute stress reaction -192041001,Acute situational disturbance -192044009,Stress reaction causing mixed disturbance of emotion and conduct -192046006,Brief depressive adjustment reaction -192049004,Prolonged depressive adjustment reaction -192079006,Postviral depression -192080009,Chronic depression -192108001,Disturbance of anxiety and fearfulness in childhood and adolescence -192191004,Organic mood disorder -192362008,"Bipolar affective disorder, current episode mixed" -19300006,"Severe bipolar II disorder, most recent episode major depressive with psychotic features, mood-congruent" -19694002,Late onset dysthymia -197480006,Anxiety disorder -198288003,Anxiety state -199111000000100,Referral for guided self-help for depression -20250007,"Severe major depression, single episode, with psychotic features, mood-incongruent" -207363009,Anxiety neurosis -20876004,Inhalant-induced anxiety disorder -21897009,Generalized anxiety disorder -21900002,"Bipolar I disorder, most recent episode depressed with catatonic features" -22407005,"Bipolar II disorder, most recent episode major depressive with catatonic features" -225624000,Panic attack -22621000119103,Anxiety disorder caused by drug -231443008,Right hemispheric organic affective disorder -231446000,Organic emotionally labile disorder -231485007,Post-schizophrenic depression -231499006,Endogenous depression first episode -231500002,Masked depression -231503000,Non-situational panic attack -231504006,Mixed anxiety and depressive disorder -231506008,Anxiety hysteria -231542000,Depressive conduct disorder -23645006,Organic mood disorder -237349002,Mild postnatal depression -237350002,Severe postnatal depression -247803002,Seasonal affective disorder -2506003,Early onset dysthymia -251000119105,"Severe major depression, single episode" -25922000,"Major depressive disorder, single episode with postpartum onset" -261000119107,Severe depressed bipolar I disorder -2618002,Chronic recurrent major depressive disorder -26852004,"Primary degenerative dementia of the Alzheimer type, senile onset, with depression" -268620009,Single major depressive episode -268621008,Recurrent major depressive episodes -271952001,Stress and adjustment reaction -272022009,Complaining of feeling depressed -272024005,Complaining of feeling unhappy -274948002,Endogenous depression - recurrent -279225001,Maternity blues -281000119103,Severe recurrent major depression -28475009,Severe recurrent major depression with psychotic features -288751000119101,"Reactive depressive psychosis, single episode" -29929003,"Bipolar I disorder, most recent episode depressed with atypical features" -300706003,Endogenous depression -300895004,Anxiety attack -30520009,"Severe bipolar II disorder, most recent episode major depressive with psychotic features" -30687003,"Bipolar II disorder, most recent episode major depressive with postpartum onset" -30819006,Dysphoric mood -310495003,Mild depression -310496002,Moderate depression -310497006,Severe depression -3109008,Secondary dysthymia early onset -319768000,Recurrent major depressive disorder with melancholic features -320751009,"Major depression, melancholic type" -321717001,Involutional depression -33078009,"Severe recurrent major depression with psychotic features, mood-congruent" -33736005,"Severe major depression with psychotic features, mood-congruent" -34315001,"Bipolar II disorder, most recent episode major depressive with melancholic features" -34938008,Alcohol-induced anxiety disorder -35489007,Depressive disorder -357705009,Cotard's syndrome -35846004,"Moderate bipolar II disorder, most recent episode major depressive" -36170009,Secondary dysthymia late onset -361761000000106,On full dose long term treatment for depression -36474008,Severe recurrent major depression without psychotic features -366979004,Depressed mood -36923009,"Major depression, single episode" -370143000,Major depressive disorder -37868008,Anxiety disorder of adolescence -38451003,Primary dysthymia early onset -386782008,Disturbance in affect -38694004,Recurrent major depressive disorder with atypical features -394924000,Symptoms of depression -395017009,Complaining of panic attack -395072006,Counseling for postnatal depression -397701000000102,[X]Severe depressive episode without psychotic symptoms -397711000000100,[X]Severe depressive episode with psychotic symptoms -39809009,Recurrent major depressive disorder with catatonic features -39951001,Cannabis-induced anxiety disorder -401211000000106,[X] Single episode major depression without psychotic symptoms -40379007,Mild recurrent major depression -40568001,Recurrent brief depressive disorder -415044007,Patient given advice about management of depression -417676004,On examination - panic attack -424196004,Feeling nervous -42594001,Organic mood disorder of depressed type -426174008,Chronic stress disorder -42925002,"Major depressive disorder, single episode with atypical features" -430421000000104,[X]Mild depressive episode -430852001,"Severe major depression, single episode, with psychotic features" -43568002,"Bipolar II disorder, most recent episode major depressive with atypical features" -442057004,Chronic depressive personality disorder -450714000,Severe major depression -455731000000100,[X] Single episode agitated depression without psychotic symptoms -46206005,Mood disorder -465441000000108,[X]Moderate depressive episode -467361000000105,"[X] Manic-depressive psychosis, depressed type without psychotic symptoms" -473126001,Suspected depressive disorder -48589009,Minor depressive disorder -48694002,Anxiety -49468007,Depressed bipolar I disorder -50026000,Psychoactive substance-induced organic anxiety disorder -51637008,"Chronic bipolar I disorder, most recent episode depressed" -52910006,Anxiety disorder due to a general medical condition -55967005,Phencyclidine-induced anxiety disorder -57194009,Adjustment disorder with depressed mood -58703003,Postpartum depression -596004,Premenstrual dysphoric disorder -59617007,Severe depressed bipolar I disorder with psychotic features -60099002,"Severe major depression with psychotic features, mood-incongruent" -609311000000100,Depressive disorder NEC -61387006,Moderate anxiety -63778009,"Major depressive disorder, single episode with melancholic features" -66344007,Recurrent major depression -66631006,Moderate depressed bipolar I disorder -67195008,Acute stress disorder -67711008,Primary dysthymia late onset -69392006,"Major depressive disorder, single episode with catatonic features" -69479009,Anxiety hyperventilation -7031000119100,Psychogenic fugue co-occurrent and due to stress reaction -70655008,Caffeine-induced anxiety disorder -70997004,Mild anxiety -712823008,Acute depression -71294008,"Mild bipolar II disorder, most recent episode major depressive" -71336009,Recurrent major depressive disorder with postpartum onset -713831000000108,Depression monitoring administration -715831000000109,Excepted from depression quality indicators - informed dissent -715924009,Disruptive mood dysregulation disorder -716111000000102,Exception reporting - depression quality indicators -716831000000103,Excepted from depression quality indicators - patient unsuitable -718636001,Minimal depression -719592004,Moderately severe major depression -719593009,Moderately severe depression -720451004,Minimal recurrent major depression -720452006,Moderately severe recurrent major depression -720453001,Moderately severe major depression single episode -720454007,Minimal major depression single episode -720455008,Minimal major depression -723928009,Mood disorder with depressive symptoms caused by alcohol -723930006,Mood disorder with mixed manic and depressive symptoms caused by alcohol -724654009,Anxiety disorder caused by opioid -724676000,Mood disorder with depressive symptoms caused by sedative -724677009,Mood disorder with depressive symptoms caused by hypnotic -724678004,Mood disorder with depressive symptoms caused by anxiolytic -724682002,Mood disorder with mixed depressive and manic symptoms caused by sedative -724683007,Mood disorder with mixed depressive and manic symptoms caused by hypnotic -724684001,Mood disorder with mixed depressive and manic symptoms caused by anxiolytic -724690002,Mood disorder with depressive symptoms caused by cocaine -724692005,Mood disorder with mixed depressive and manic symptoms caused by cocaine -724708007,Anxiety disorder caused by methylenedioxymethamphetamine -724722007,Anxiety disorder caused by dissociative drug -724723002,Anxiety disorder caused by ketamine -724757005,Depressive symptoms due to primary psychotic disorder -726772006,Major depression with psychotic features -737341006,Anxiety disorder caused by synthetic cannabinoid -73867007,Severe major depression with psychotic features -74506000,Bereavement due to life event -74686005,Mild depressed bipolar I disorder -75084000,Severe major depression without psychotic features -75752004,"Bipolar I disorder, most recent episode depressed with melancholic features" -75837004,Mood disorder with depressive features due to general medical condition -762321000,Mood disorder with depressive symptoms caused by opioid -762322007,Mood disorder with mixed depressive and manic symptoms caused by opioid -762329003,Mood disorder with depressive symptoms caused by stimulant -762330008,Mood disorder with mixed depressive and manic symptoms caused by stimulant -762331007,Anxiety disorder caused by stimulant -762336002,Mood disorder with depressive symptoms caused by hallucinogen -762337006,Mood disorder with mixed depressive and manic symptoms caused by hallucinogen -762339009,Mood disorder with depressive symptoms caused by volatile inhalant -762340006,Mood disorder with mixed depressive and manic symptoms caused by volatile inhalant -762345001,Mood disorder with depressive symptoms caused by dissociative drug -762346000,Mood disorder with mixed depressive and manic symptoms caused by dissociative drug -762512002,Mood disorder with depressive symptoms caused by synthetic cathinone -762514001,Mood disorder with mixed depressive and manic symptoms caused by synthetic cathinone -762515000,Anxiety disorder caused by synthetic cathinone -76441001,"Severe major depression, single episode, without psychotic features" -764611000000100,"Recurrent major depressive episodes, severe" -764631000000108,"Single major depressive episode, severe" -765176007,Psychosis and severe depression co-occurrent and due to bipolar affective disorder -767631007,"Bipolar disorder, most recent episode depression" -767636002,"Bipolar I disorder, most recent episode depression" -774531000000101,Antidepressant drug treatment started -77486005,Mood disorder with major depressive-like episode due to general medical condition -77911002,"Severe major depression, single episode, with psychotic features, mood-congruent" -782501005,Adjustment disorder with mixed anxiety and depressed mood -784051000000106,Depression care management -78667006,Dysthymia -788120007,Antenatal depression -788866004,Anxiety due to dementia -790961000000101,Antenatal depression -79298009,"Mild major depression, single episode" -79842004,Stuporous depression -80583007,Severe anxiety (panic) -81319007,"Severe bipolar II disorder, most recent episode major depressive without psychotic features" -81350009,Free-floating anxiety -82218004,Postoperative depression -82339009,Amphetamine-induced anxiety disorder -83176005,Primary dysthymia -832007,Moderate major depression -83458005,Agitated depression -838529004,Mood disorder with mixed depressive and manic symptoms caused by amfetamine and amfetamine derivative -838530009,Mood disorder with depressive symptoms caused by amfetamine and amfetamine derivative -84760002,"Schizoaffective disorder, depressive type" -84788008,Menopausal depression -85080004,Secondary dysthymia -87203005,"Bipolar I disorder, most recent episode depressed with postpartum onset" -87414006,Reactive depression (situational) -87512008,Mild major depression -87842000,Generalized neuromuscular exhaustion syndrome -923921000000104,Referral for depression self-help video -92501000119101,Stress reaction with psychomotor agitation -933441000000101,Referral for guided self-help for depression declined -94641000119109,Anxiety in pregnancy diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-anxiety-disorders.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-anxiety-disorders.csv deleted file mode 100644 index fbeca0eb6..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-anxiety-disorders.csv +++ /dev/null @@ -1,259 +0,0 @@ -code,term -1010649005,Acute vestibular syndrome due to anxiety and fear -10586006,Occupation-related stress disorder -10743001000119103,Anxiety disorder in mother complicating childbirth -109006,Anxiety disorder of childhood OR adolescence -111487009,Dream anxiety disorder -111490003,"Panic disorder with agoraphobia, agoraphobic avoidance in partial remission AND severe panic attacks" -111491004,"Panic disorder with agoraphobia, agoraphobic avoidance in full remission AND panic attacks in partial remission" -11458009,"Anticipatory anxiety, mild" -11806006,Separation anxiety disorder of childhood -11941006,"Panic disorder with agoraphobia, agoraphobic avoidance in full remission AND panic attacks in full remission" -12398201000119102,Anxiety disorder caused by methamphetamine -126943008,Separation anxiety -129869000,Death anxiety -13438001,Overanxious disorder of childhood -1380006,Agoraphobia without history of panic disorder with limited symptom attacks -139476005,Anxiousness (& symptom) -139598003,Anxious cognitions -139948007,O/E - anxious -15277004,Hallucinogen-induced anxiety disorder -154882009,(Anxiety state (& [states] or [panic attack])) or (pseudocyesis) -154884005,Phobic anxiety disorder -154964007,Mixed anxiety and depressive disorder -162192002,Anxiousness (& symptom) -16264621000119109,Recurrent mild major depressive disorder co-occurrent with anxiety -16264821000119108,Recurrent severe major depressive disorder co-occurrent with anxiety -16264901000119109,Recurrent moderate major depressive disorder co-occurrent with anxiety -16265061000119105,Recurrent major depressive disorder co-occurrent with anxiety in full remission -16265301000119106,Recurrent major depressive disorder in partial remission co-occurrent with anxiety -16265701000119107,Illness anxiety disorder -16265951000119109,Mild major depressive disorder co-occurrent with anxiety single episode -16266831000119100,Moderate major depressive disorder co-occurrent with anxiety single episode -16266991000119108,Severe major depressive disorder co-occurrent with anxiety single episode -162723006,On examination - anxious -1686006,"Sedative, hypnotic AND/OR anxiolytic-induced anxiety disorder" -17496003,Organic anxiety disorder -1816003,"Panic disorder with agoraphobia, severe agoraphobic avoidance AND mild panic attacks" -191703000,Anxiety disorder -191704006,Anxiety state unspecified -191706008,Generalised anxiety disorder -191707004,Mixed anxiety and depressive disorder -191708009,Chronic anxiety -191709001,Recurrent anxiety -191711005,Anxiety state NOS -191722009,Agoraphobia with panic attacks -191724005,"Social phobia, fear of eating in public" -191725006,"Social phobia, fear of public speaking" -191726007,"Social phobia, fear of public washing" -191736004,Obsessive-compulsive disorder -191737008,Compulsive neurosis -191738003,Obsessional neurosis -192014006,Psychogenic rumination -192037000,Acute panic state due to acute stress reaction -192038005,Acute fugue state due to acute stress reaction -192039002,Acute stupor state due to acute stress reaction -192041001,Acute situational disturbance -192042008,Acute post-trauma stress state -192044009,Stress reaction causing mixed disturbance of emotion and conduct -192108001,Disturbance of anxiety and fearfulness in childhood and adolescence -192109009,Childhood overanxious disorder -192110004,Childhood and adolescent fearfulness disturbance -192111000,Disturbance of anxiety and fearfulness in childhood and adolescence NOS -192192006,Organic anxiety disorder -192393009,[X]Phobic anxiety disorders -192397005,[X]Other phobic anxiety disorders -192398000,"[X]Phobic anxiety disorder, unspecified" -192399008,[X]Other anxiety disorders -192400001,[X]Panic disorder [episodic paroxysmal anxiety] -192401002,Generalised anxiety disorder -192402009,[X]Mixed anxiety and depressive disorder (& mild anxiety depression) -192403004,[X]Other mixed anxiety disorders -192404005,[X] Anxiety disorders: [other specified] or [anxiety hysteria] -192405006,"[X]Anxiety disorder, unspecified" -192459009,[X] Nightmares or dream anxiety disorder -192491005,Anxious personality disorder -192611004,Childhood phobic anxiety disorder -192612006,[X] Social anxiety disorder of childhood (avoidant disorder) -197480006,Anxiety disorder -19766004,"Panic disorder with agoraphobia, mild agoraphobic avoidance AND severe panic attacks" -198288003,Anxiety state -207363009,Anxiety neurosis -20876004,Inhalant-induced anxiety disorder -21897009,Generalized anxiety disorder -22230001,"Panic disorder with agoraphobia, agoraphobic avoidance in partial remission AND panic attacks in full remission" -225624000,Panic attack -225635005,Anxiety about treatment -225636006,Anxiety about forced dependence -225637002,Anxiety about loss of control -225638007,Anxiety about resuming sexual relations -225639004,Worried about not coping with baby -225640002,Worried about being a bad father -225641003,Worried about being a bad mother -225642005,Anxiety about not coping with parenthood -225643000,Anxiety about making mistakes -225644006,Anxiety about altered body image -22621000119103,Anxiety disorder caused by drug -231502005,Situational panic attack -231503000,Non-situational panic attack -231504006,Mixed anxiety and depressive disorder -231506008,Anxiety hysteria -231507004,Stage fright -231508009,Examination fear -231528008,Anxious personality disorder -238965007,Venereophobia -238966008,Syphilophobia -238976006,Bromisodrophobia -247649009,Anxious cognitions -247805009,Anxiety and fear -247808006,Anxiety about body function or health -24781009,"Panic disorder with agoraphobia, mild agoraphobic avoidance AND panic attacks in full remission" -247814004,Anxiety about blushing -247825008,Anxiety about behavior or performance -25501002,Social phobia -268714001,[X]Other specified anxiety disorders -268752000,(Anxiety state (& [states] or [panic attack])) or (pseudocyesis) -270472006,Maternal concern -277818007,Anxiety about losing control of bowels -277819004,Anxiety about wetting self -277820005,Anxiety about vomiting in public -277821009,Anxiety about having a fit -277822002,Anxiety about choking -277823007,Anxiety about swallowing -277824001,Anxiety about collapsing -277825000,Anxiety about shaking -277826004,Anxiety about sweating -277827008,Anxiety about dying -277828003,Anxiety about going crazy -277829006,Anxiety about losing emotional control -277831002,Anxiety about becoming fat -277833004,Anxiety about fainting -277834005,Anxiety about having a heart attack -277838008,Anxiety about appearing ridiculous -277839000,Anxiety about saying the wrong thing -279611005,Shell shock -279622009,Performance anxiety -286544004,Panic -286644009,Level of anxiety -30059008,"Panic disorder with agoraphobia, severe agoraphobic avoidance AND moderate panic attacks" -300894000,Parental anxiety -300895004,Anxiety attack -304896009,Castration anxiety complex -313182004,Chronic post-traumatic stress disorder -3158007,"Panic disorder with agoraphobia, agoraphobic avoidance in partial remission AND panic attacks in partial remission" -31781004,"Panic disorder with agoraphobia, agoraphobic avoidance in partial remission AND mild panic attacks" -318784009,"Posttraumatic stress disorder, delayed onset" -323331000000106,Anxiety about loss of memory -323341000000102,Anxiety about lethargy -323351000000104,Anxiety about mood -32388005,"Panic disorder with agoraphobia, agoraphobic avoidance in partial remission AND moderate panic attacks" -34116005,"Panic disorder with agoraphobia, agoraphobic avoidance in full remission AND severe panic attacks" -34938008,Alcohol-induced anxiety disorder -351861000000106,Stranger anxiety -35429005,Anticipatory anxiety -35607004,Panic disorder with agoraphobia -36646009,"Anticipatory anxiety, moderate" -371631005,Panic disorder -37868008,Anxiety disorder of adolescence -37872007,Avoidant disorder of childhood OR adolescence -38328002,"Panic disorder with agoraphobia, severe agoraphobic avoidance AND panic attacks in full remission" -386810004,Phobic disorder -395017009,Complaining of panic attack -39951001,Cannabis-induced anxiety disorder -402191000000101,[X] Anxiety disorders: [other specified] or [anxiety hysteria] -402951000000107,[X]Other phobic anxiety disorders -403593004,Phobic fear of skin cancer -41201000000107,Chronic anxiety -41211000000109,Recurrent anxiety -416621000000108,[X]Panic disorder [episodic paroxysmal anxiety] -417676004,On examination - panic attack -426174008,Chronic stress disorder -428687006,Nightmares associated with chronic post-traumatic stress disorder -431432003,Anxiety about loss of memory -43150009,Panic disorder without agoraphobia with severe panic attacks -443919007,Complex posttraumatic stress disorder -446175003,Acute posttraumatic stress disorder following military combat -446180007,Delayed posttraumatic stress disorder following military combat -450751000000102,"[X]Anxiety disorder, unspecified" -464911000000101,"[X]Phobic anxiety disorder, unspecified" -468761000000105,[X]Other anxiety disorders -469151000000104,[X]Other specified anxiety disorders -472131000000109,[X]Phobic anxiety disorders -47372000,Adjustment disorder with anxious mood -47505003,Posttraumatic stress disorder -478661000000105,[X]Other mixed anxiety disorders -48694002,Anxiety -4932002,"Panic disorder with agoraphobia, moderate agoraphobic avoidance AND mild panic attacks" -49564006,"Panic disorder with agoraphobia, mild agoraphobic avoidance AND moderate panic attacks" -50026000,Psychoactive substance-induced organic anxiety disorder -50983008,"Panic disorder with agoraphobia, mild agoraphobic avoidance AND panic attacks in partial remission" -51493001,Cocaine-induced anxiety disorder -52910006,Anxiety disorder due to a general medical condition -53467004,Anxiety disorder of childhood -53956006,Panic disorder without agoraphobia with panic attacks in partial remission -54587008,Simple phobia -5509004,Panic disorder with agoraphobia AND severe panic attacks -55967005,Phencyclidine-induced anxiety disorder -56576003,Panic disorder without agoraphobia -5874002,"Anticipatory anxiety, severe" -59923000,Panic disorder with agoraphobia AND panic attacks in full remission -61157009,Combat fatigue -61212007,"Panic disorder with agoraphobia, severe agoraphobic avoidance AND severe panic attacks" -61387006,Moderate anxiety -61569007,Agoraphobia without history of panic disorder -621271000000109,Anxiety state unspecified -62351001,Generalized social phobia -633361000000109,Anxiety state NOS -63701002,"Panic disorder with agoraphobia, mild agoraphobic avoidance AND mild panic attacks" -63909006,Panic disorder with agoraphobia AND panic attacks in partial remission -64060000,"Panic disorder with agoraphobia, moderate agoraphobic avoidance AND panic attacks in full remission" -64165008,Avoidant disorder of childhood -65064003,Panic disorder without agoraphobia with moderate panic attacks -65673007,Anxiety disorder -657791000000107,Disturbance of anxiety and fearfulness in childhood and adolescence NOS -67195008,Acute stress disorder -69479009,Anxiety hyperventilation -698693004,Adjustment disorder with anxious mood in remission -699241002,Chronic post-traumatic stress disorder following military combat -702535006,Anxiety about breathlessness -70655008,Caffeine-induced anxiety disorder -70691001,Agoraphobia -70997004,Mild anxiety -723913009,Olfactory reference disorder -724654009,Anxiety disorder caused by opioid -724693000,Obsessive compulsive disorder caused by cocaine -724708007,Anxiety disorder caused by methylenedioxymethamphetamine -724722007,Anxiety disorder caused by dissociative drug -724723002,Anxiety disorder caused by ketamine -724730008,Obsessive compulsive disorder caused by psychoactive substance -72861004,Panic disorder without agoraphobia with mild panic attacks -737341006,Anxiety disorder caused by synthetic cannabinoid -74010007,"Panic disorder with agoraphobia, severe agoraphobic avoidance AND panic attacks in partial remission" -762331007,Anxiety disorder caused by stimulant -762332000,Obsessive compulsive disorder caused by stimulant -762515000,Anxiety disorder caused by synthetic cathinone -762516004,Obsessive compulsive disorder caused by synthetic cathinone -76812003,"Panic disorder with agoraphobia, moderate agoraphobic avoidance AND panic attacks in partial remission" -76868007,"Panic disorder with agoraphobia, agoraphobic avoidance in full remission AND mild panic attacks" -782501005,Adjustment disorder with mixed anxiety and depressed mood -78541000000103,Chronic anxiety -78551000000100,Recurrent anxiety -788866004,Anxiety due to dementia -79823003,Panic -80583007,Severe anxiety (panic) -81350009,Free-floating anxiety -8185002,Panic disorder with agoraphobia AND moderate panic attacks -82339009,Amphetamine-induced anxiety disorder -82415003,Agoraphobia without history of panic disorder without limited symptom attacks -82494000,Panic disorder without agoraphobia with panic attacks in full remission -82738004,"Panic disorder with agoraphobia, moderate agoraphobic avoidance AND moderate panic attacks" -83253003,Shyness disorder of childhood -83631006,"Panic disorder with agoraphobia, moderate agoraphobic avoidance AND severe panic attacks" -85061001,"Separation anxiety disorder of childhood, early onset" -87798009,"Panic disorder with agoraphobia, agoraphobic avoidance in full remission AND moderate panic attacks" -887741000000102,Anxiety about breathlessness -887751000000104,Anxiety about breathlessness -89225005,Anxiety about blushing -89948007,Panic disorder with agoraphobia AND mild panic attacks -90790003,Avoidant disorder of adolescence -94641000119109,Anxiety in pregnancy diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-chronic-cardiac-disease.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-chronic-cardiac-disease.csv deleted file mode 100644 index 21828c8aa..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-chronic-cardiac-disease.csv +++ /dev/null @@ -1,1349 +0,0 @@ -CTV3ID,CTV3PreferredTermDesc,CTV3Source -14A3.,H/O: myocardial infarct at less than 60,CTV3Map_Code_And_Term -14A4.,H/O: myocardial infarct at greater than 60,CTV3Map_Code_And_Term -14A5.,H/O: angina pectoris,CTV3Map_Code_And_Term -14A6.,H/O: heart failure,CTV3Map_Code_And_Term -14S3.,H/O: heart recipient,CTV3Map_Code_And_Term -323..,ECG: myocardial infarction,CTV3Map_Code_And_Term -3232.,ECG: old myocardial infarction,CTV3Map_Code_And_Term -3233.,ECG: anteroseptal infarction,CTV3Map_Code_And_Term -3234.,ECG:posterior/inferior infarct,CTV3Map_Code_And_Term -3235.,ECG: subendocardial infarct,CTV3Map_Code_And_Term -3236.,ECG: lateral infarction,CTV3Map_Code_And_Term -323Z.,ECG: myocardial infarct NOS,CTV3Map_Code_And_Term -662K.,Angina control,CTV3Map_Code_And_Term -662K0,Angina control - good,CTV3Map_Code_And_Term -662K1,Angina control - poor,CTV3Map_Code_And_Term -662K2,Angina control - improving,CTV3Map_Code_And_Term -662K3,Angina control - worsening,CTV3Map_Code_And_Term -662Kz,Angina control NOS,CTV3Map_Code_And_Term -7900.,Heart and lung transplant,CTV3Map_Code_And_Term -79000,Allotransplant of heart and lung,CTV3Map_Code_And_Term -79001,Revision of transplantation of heart and lung,CTV3_Children -7900y,Other specified transplantation of heart and lung,CTV3_Children -7900z,Transplantation of heart and lung NOS,CTV3Map_Code_And_Term -7901.,Other transplantation of heart,CTV3Map_Code_And_Term -79010,Allotransplantation of heart NEC,CTV3Map_Code_And_Term -79011,Xenotransplant of heart,CTV3Map_Code_And_Term -79012,Implantation of prosthetic heart,CTV3Map_Code_And_Term -79013,Heterotopic allotransplant of heart,CTV3Map_Code_And_Term -79014,Revision of implantation of prosthetic heart,CTV3Map_Code_And_Term -79015,Revision of transplantation of heart NEC,CTV3Map_Code_And_Term -7901y,Other specified other transplantation of heart,CTV3Map_Code_And_Term -7901z,Other transplantation of heart NOS,CTV3Map_Code_And_Term -7902.,Repair of tetralogy of Fallot,CTV3Map_Code_And_Term -7902.,Repair of tetralogy of Fallot,CTV3Map_Code_Only -79020,Correct Fallot tetralogy valved right ventr outflow conduit,CTV3Map_Code_And_Term -79020,Correct Fallot tetralogy valved right ventr outflow conduit,CTV3Map_Code_Only -79021,Correct Fallot tetralogy- right ventric outflow conduit NEC,CTV3Map_Code_And_Term -79021,Correct Fallot tetralogy- right ventric outflow conduit NEC,CTV3Map_Code_Only -79022,Correct Fallot tetralogy- right ventricular outflow patch,CTV3Map_Code_And_Term -79023,Revision of correction of tetralogy of Fallot,CTV3Map_Code_And_Term -79023,Revision of correction of tetralogy of Fallot,CTV3Map_Code_Only -7902y,Other specified correction of tetralogy of Fallot,CTV3Map_Code_And_Term -7902y,Other specified correction of tetralogy of Fallot,CTV3Map_Code_Only -7902z,Correction of tetralogy of Fallot NOS,CTV3Map_Code_And_Term -7902z,Correction of tetralogy of Fallot NOS,CTV3Map_Code_Only -79030,Atrial inversion operation with patch,CTV3Map_Code_And_Term -79030,Atrial inversion operation with patch,CTV3Map_Code_Only -79031,Atrial inversion operation using atrial wall,CTV3Map_Code_And_Term -79031,Atrial inversion operation using atrial wall,CTV3Map_Code_Only -7903y,Atrial inversion op for transposition of great vessels OS,CTV3Map_Code_And_Term -7903y,Atrial inversion op for transposition of great vessels OS,CTV3Map_Code_Only -7903z,Atrial inversion op for transposition of great vessels NOS,CTV3Map_Code_And_Term -7903z,Atrial inversion op for transposition of great vessels NOS,CTV3Map_Code_Only -7904.,Other correction of transposition of great vessels,CTV3Map_Code_And_Term -79040,Arterial switch operation,CTV3Map_Code_And_Term -7904y,Other correction of transposition of great vessels OS,CTV3Map_Code_And_Term -7904z,Other correction of transposition of great vessels NOS,CTV3Map_Code_And_Term -7905.,Repair of total anomalous pulmonary venous connection,CTV3Map_Code_And_Term -79050,Correct total anomal pulm venous connect to supracard vessel,CTV3Map_Code_And_Term -79051,Correct total anomal pulm venous connect to coronary sinus,CTV3Map_Code_And_Term -79052,Correct total anomal pulm venous connect to infradiaph vess,CTV3_Children -7905y,Correction of total anomalous pulmonary venous connection OS,CTV3Map_Code_And_Term -7905z,Correction total anomalous pulmonary venous connection NOS,CTV3Map_Code_And_Term -790H3,Revascularisation of wall of heart,High_Level_SNOMED -792..,Coronary artery operations (& bypass),CTV3_Children -7920.,Saphenous vein graft bypass of coronary artery,CTV3Map_Code_And_Term -7920.,Saphenous vein graft bypass of coronary artery,CTV3Map_Code_Only -79200,Saphenous vein graft replacement of one coronary artery,CTV3Map_Code_And_Term -79201,Saphenous vein graft replacement of two coronary arteries,CTV3Map_Code_And_Term -79202,Saphenous vein graft replacement of three coronary arteries,CTV3Map_Code_And_Term -79203,Saphenous vein graft replacement of four+ coronary arteries,CTV3Map_Code_And_Term -7920y,Saphenous vein graft replacement of coronary artery OS,CTV3Map_Code_And_Term -7920z,Saphenous vein graft replacement coronary artery NOS,CTV3Map_Code_And_Term -7921.,Other autograft replacement of coronary artery,CTV3Map_Code_And_Term -7921.,Other autograft replacement of coronary artery,CTV3Map_Code_Only -79210,Autograft replacement of one coronary artery NEC,CTV3Map_Code_And_Term -79211,Autograft replacement of two coronary arteries NEC,CTV3Map_Code_And_Term -79212,Autograft replacement of three coronary arteries NEC,CTV3Map_Code_And_Term -79213,Autograft replacement of four of more coronary arteries NEC,CTV3Map_Code_And_Term -7921y,Other autograft replacement of coronary artery OS,CTV3Map_Code_And_Term -7921z,Other autograft replacement of coronary artery NOS,CTV3Map_Code_And_Term -7922.,Allograft bypass of coronary artery,CTV3Map_Code_And_Term -7922.,Allograft bypass of coronary artery,CTV3Map_Code_Only -79220,Allograft replacement of one coronary artery,CTV3Map_Code_And_Term -79221,Allograft replacement of two coronary arteries,CTV3Map_Code_And_Term -79222,Allograft replacement of three coronary arteries,CTV3Map_Code_And_Term -79223,Allograft replacement of four or more coronary arteries,CTV3Map_Code_And_Term -7922y,Other specified allograft replacement of coronary artery,CTV3Map_Code_And_Term -7922z,Allograft replacement of coronary artery NOS,CTV3Map_Code_And_Term -7923.,Prosthetic bypass of coronary artery,CTV3Map_Code_And_Term -7923.,Prosthetic bypass of coronary artery,CTV3Map_Code_Only -79230,Prosthetic replacement of one coronary artery,CTV3Map_Code_And_Term -79231,Prosthetic replacement of two coronary arteries,CTV3Map_Code_And_Term -79232,Prosthetic replacement of three coronary arteries,CTV3Map_Code_And_Term -79233,Prosthetic replacement of four or more coronary arteries,CTV3Map_Code_And_Term -7923y,Other specified prosthetic replacement of coronary artery,CTV3_Children -7923z,Prosthetic replacement of coronary artery NOS,CTV3Map_Code_And_Term -7924.,Revision of bypass for coronary artery,CTV3Map_Code_And_Term -79240,Revision of bypass for one coronary artery,CTV3Map_Code_And_Term -79241,Revision of bypass for two coronary arteries,CTV3Map_Code_And_Term -79242,Revision of bypass for three coronary arteries,CTV3Map_Code_And_Term -79243,Revision of bypass for four or more coronary arteries,CTV3Map_Code_And_Term -79244,Revision of connection of thoracic artery to coronary artery,CTV3_Children -79245,Revision of implantation of thoracic artery into heart,CTV3_Children -7924y,Other specified revision of bypass for coronary artery,CTV3Map_Code_And_Term -7924z,Revision of bypass for coronary artery NOS,CTV3Map_Code_And_Term -7925.,Connection of mammary artery to coronary artery,CTV3Map_Code_And_Term -7925.,Connection of mammary artery to coronary artery,CTV3Map_Code_Only -79250,Mamm to coron art anast: [double] or [LIMA seq]/[RIMA seq],CTV3_Children -79251,Double implant of mammary arteries into coronary arteries,CTV3Map_Code_And_Term -79252,Single anast mammary art to left ant descend coronary art,CTV3_Children -79253,Single mammary-coronary art anast: [NEC] or [LIMA] or [RIMA],CTV3_Children -79254,Single implantation of mammary artery into coronary artery,CTV3Map_Code_And_Term -7925y,Connection of mammary artery to coronary artery OS,CTV3Map_Code_And_Term -7925z,Connection of mammary artery to coronary artery NOS,CTV3Map_Code_And_Term -7926.,Connection of other thoracic artery to coronary artery,CTV3Map_Code_And_Term -79260,Double anastom thoracic arteries to coronary arteries NEC,CTV3Map_Code_And_Term -79261,Double implant thoracic arteries into coronary arteries NEC,CTV3_Children -79262,Single anastomosis of thoracic artery to coronary artery NEC,CTV3Map_Code_And_Term -79263,Single implantation thoracic artery into coronary artery NEC,CTV3Map_Code_And_Term -7926y,Connection of other thoracic artery to coronary artery OS,CTV3_Children -7926z,Connection of other thoracic artery to coronary artery NOS,CTV3Map_Code_And_Term -7927.,Other open operations on coronary artery,CTV3_Children -79270,Repair of arteriovenous fistula of coronary artery,CTV3_Children -79271,Repair of coronary artery aneurysm,CTV3_Children -79272,Transection of coronary artery muscle bridge,CTV3_Children -79273,Transposition of coronary artery NEC,CTV3_Children -79275,Open angioplasty of coronary artery,CTV3Map_Code_And_Term -7927y,Other specified other open operation on coronary artery,CTV3_Children -7927z,Other open operation on coronary artery NOS,CTV3_Children -7928.,Percutaneous balloon angioplasty of coronary artery,CTV3_Children -79280,Percut transluminal balloon angioplasty one coronary artery,CTV3_Children -79281,Percut translum balloon angioplasty mult coronary arteries,CTV3_Children -79282,Percut translum balloon angioplasty bypass graft coronary a,CTV3_Children -7928y,Transluminal balloon angioplasty of coronary artery OS,CTV3_Children -7928z,Transluminal balloon angioplasty of coronary artery NOS,CTV3_Children -7929.,Other therapeutic transluminal operations on coronary artery,CTV3_Children -79290,Percutaneous transluminal laser coronary angioplasty,CTV3_Children -79291,Percut transluminal coronary thrombolysis with streptokinase,CTV3Map_Code_And_Term -79291,Percut transluminal coronary thrombolysis with streptokinase,CTV3Map_Code_Only -79292,Percut translum inject therap subst to coronary artery NEC,CTV3_Children -79293,Percutaneous rotational coronary endarterectomy,CTV3_Children -7929y,Other therapeutic transluminal op on coronary artery OS,CTV3_Children -7929z,Other therapeutic transluminal op on coronary artery NOS,CTV3_Children -792A.,Diagnostic transluminal operations on coronary artery,CTV3_Children -792A0,Percutaneous transluminal angioscopy,CTV3_Children -792Ay,Diagnostic transluminal operation on coronary artery OS,CTV3_Children -792Az,Diagnostic transluminal operation on coronary artery NOS,CTV3_Children -792B.,Repair of coronary artery NEC,CTV3_Children -792B0,Endarterectomy of coronary artery NEC,CTV3_Children -792By,Other specified repair of coronary artery,CTV3_Children -792Bz,Repair of coronary artery NOS,CTV3_Children -792C.,Other replacement of coronary artery,CTV3Map_Code_And_Term -792C0,Replacement of coronary arteries using multiple methods,CTV3Map_Code_And_Term -792Cy,Other specified replacement of coronary artery,CTV3Map_Code_And_Term -792Cz,Replacement of coronary artery NOS,CTV3Map_Code_And_Term -792D.,Other bypass of coronary artery,CTV3Map_Code_And_Term -792Dy,Other specified other bypass of coronary artery,CTV3Map_Code_And_Term -792Dz,Other bypass of coronary artery NOS,CTV3Map_Code_And_Term -792y.,Other specified operations on coronary artery,CTV3_Children -792z.,Coronary artery operations NOS,CTV3_Children -79332,Transluminal maintenance of heart assist system,CTV3Map_Code_And_Term -C3733,Familial amyloid cardiomyopathy,High_Level_SNOMED -D4102,Polycythaemia due to cyanotic heart disease,CTV3Map_Code_And_Term -G1...,Chronic rheumatic heart disease,CTV3Map_Code_And_Term -G10..,Chronic rheumatic pericarditis,CTV3_Children -G100.,Adherent rheumatic pericardium,CTV3_Children -G101.,Chronic rheumatic mediastinopericarditis,CTV3_Children -G102.,Chronic rheumatic myopericarditis,CTV3_Children -G10z.,Chronic rheumatic pericarditis NOS,CTV3_Children -G14..,Other chronic rheumatic endocardial disease,CTV3_Children -G1y..,Other specified chronic rheumatic heart disease,CTV3_Children -G1yz.,Other and unspecified rheumatic heart disease,CTV3_Children -G1yz0,Rheumatic heart disease unspecified,CTV3_Children -G1yz1,Rheumatic left ventricular failure,CTV3Map_Code_And_Term -G1yzz,Other rheumatic heart disease NOS,CTV3_Children -G1z..,Chronic rheumatic heart disease NOS,CTV3_Children -G21..,Hypertensive heart disease,QOF -G210.,Malignant hypertensive heart disease,QOF -G2100,Malignant hypertensive heart disease without CCF,QOF -G2101,Malignant hypertensive heart disease with CCF,CTV3Map_Code_And_Term -G210z,Malignant hypertensive heart disease NOS,QOF -G211.,Benign hypertensive heart disease,QOF -G2110,Benign hypertensive heart disease without CCF,QOF -G2111,Benign hypertensive heart disease with CCF,CTV3Map_Code_And_Term -G211z,Benign hypertensive heart disease NOS,QOF -G21z.,Hypertensive heart disease NOS,QOF -G21z0,"Hypertensiv:[cardiomeg][heart dis NOS, no congest card fail]",QOF -G21z1,Hypertensive heart disease NOS with CCF,CTV3Map_Code_And_Term -G23..,Hypertensive heart and renal disease,QOF -G230.,Malignant hypertensive heart and renal disease,QOF -G231.,Benign hypertensive heart and renal disease,QOF -G232.,Hypertensive heart&renal dis wth (congestive) heart failure,CTV3Map_Code_And_Term -G233.,Hypertensive heart and renal disease with renal failure,CTV3Map_Code_And_Term -G234.,Hyperten heart&renal dis+both(congestv)heart and renal fail,CTV3Map_Code_And_Term -G23z.,Hypertensive heart and renal disease NOS,QOF -G3...,Ischaemic heart disease (& [arteriosclerotic]),CTV3_Children -G30..,(Myocard inf (& [ac][silent][card rupt])) or (coron thromb),CTV3_Children -G300.,Acute anterolateral myocardial infarction,CTV3Map_Code_And_Term -G301.,Other specified anterior myocardial infarction,CTV3Map_Code_And_Term -G3010,Acute anteroapical infarction,CTV3Map_Code_And_Term -G3011,Acute anteroseptal myocardial infarction,CTV3Map_Code_And_Term -G301z,Anterior myocardial infarction NOS,CTV3Map_Code_And_Term -G302.,Acute inferolateral myocardial infarction,CTV3Map_Code_And_Term -G303.,Acute inferoposterior infarction,CTV3Map_Code_And_Term -G304.,Posterior myocardial infarction NOS,CTV3Map_Code_And_Term -G305.,Lateral myocardial infarction NOS,CTV3Map_Code_And_Term -G306.,True posterior myocardial infarction,CTV3Map_Code_And_Term -G307.,Acute subendocardial infarction,CTV3Map_Code_And_Term -G308.,Inferior myocardial infarction NOS,CTV3Map_Code_And_Term -G30y.,Other acute myocardial infarction,CTV3Map_Code_And_Term -G30y0,Acute atrial infarction,CTV3Map_Code_And_Term -G30y1,Acute papillary muscle infarction,CTV3Map_Code_And_Term -G30y2,Acute septal infarction,CTV3Map_Code_And_Term -G30yz,Other acute myocardial infarction NOS,CTV3Map_Code_And_Term -G30z.,Acute myocardial infarction NOS,CTV3Map_Code_And_Term -G31..,Other acute and subacute ischaemic heart disease,CTV3Map_Code_And_Term -G310.,Post-myocardial infarction syndrome,CTV3Map_Code_And_Term -G310.,Post-myocardial infarction syndrome,CTV3Map_Code_Only -G311.,(Angina:[cresc][unstabl][at rest])(preinfar syn)(imp infarc),CTV3_Children -G3110,Aborted myocardial infarction,CTV3Map_Code_And_Term -G3110,Aborted myocardial infarction,CTV3Map_Code_Only -G311z,Preinfarction syndrome NOS,CTV3Map_Code_And_Term -G312.,Coronary thrombosis not resulting in myocardial infarction,CTV3Map_Code_And_Term -G31y0,Acute coronary insufficiency,CTV3Map_Code_And_Term -G31y1,Microinfarction of heart,CTV3Map_Code_And_Term -G31y2,Subendocardial ischaemia,CTV3Map_Code_And_Term -G31yz,Other acute and subacute ischaemic heart disease NOS,CTV3Map_Code_And_Term -G32..,Myocard infarct: [old] or [healed] or [personal history of],QOF -G33..,Angina,CTV3Map_Code_And_Term -G330.,Angina decubitus,CTV3Map_Code_And_Term -G3300,Nocturnal angina,CTV3Map_Code_And_Term -G330z,Angina decubitus NOS,CTV3Map_Code_And_Term -G331.,Prinzmetal's angina,CTV3Map_Code_And_Term -G331.,Prinzmetal's angina,CTV3Map_Code_Only -G33z.,Angina pectoris NOS,CTV3Map_Code_And_Term -G33z0,Status anginosus,CTV3Map_Code_And_Term -G33z1,Stenocardia,CTV3Map_Code_And_Term -G33z2,Syncope anginosa,CTV3Map_Code_And_Term -G33z3,Exercise-induced angina,CTV3_Children -G33zz,Angina pectoris NOS,CTV3_Children -G34..,Other chronic ischaemic heart disease,CTV3Map_Code_And_Term -G340.,Coronary (atheroscl or artery dis) or triple vess dis heart,CTV3_Children -G3400,Single coronary vessel disease,CTV3Map_Code_And_Term -G3401,Double coronary vessel disease,CTV3Map_Code_And_Term -G341.,Aneurysm of heart,CTV3_Children -G3410,Ventricular cardiac aneurysm,CTV3_Children -G3411,Mural cardiac aneurysm (& [other]),CTV3_Children -G3412,Coronary artery aneurysm,High_Level_SNOMED -G3413,Acquired atrioventricular fistula of heart,CTV3_Children -G341z,Aneurysm of heart NOS,CTV3_Children -G343.,Generalised ischaemic myocardial dysfunction,CTV3Map_Code_And_Term -G34y.,Other specified chronic ischaemic heart disease,CTV3Map_Code_And_Term -G34y0,Chronic myocardial ischaemia,CTV3_Children -G34y1,Chronic myocardial ischaemia,CTV3Map_Code_And_Term -G34yz,Other specified chronic ischaemic heart disease NOS,CTV3Map_Code_And_Term -G34z.,Other chronic ischaemic heart disease NOS,CTV3Map_Code_And_Term -G35..,Subsequent myocardial infarction,CTV3Map_Code_And_Term -G350.,Subsequent myocardial infarction of anterior wall,CTV3Map_Code_And_Term -G351.,Subsequent myocardial infarction of inferior wall,CTV3Map_Code_And_Term -G353.,Subsequent myocardial infarction of other sites,CTV3Map_Code_And_Term -G36..,Certain current complication follow acute myocardial infarct,CTV3Map_Code_And_Term -G360.,Haemopericardium/current comp folow acut myocard infarct,CTV3Map_Code_And_Term -G361.,Atrial septal defect/curr comp folow acut myocardal infarct,CTV3Map_Code_And_Term -G363.,Ruptur cardiac wall w'out haemopericard/cur comp fol ac MI,CTV3Map_Code_And_Term -G364.,Ruptur chordae tendinae/curr comp fol acute myocard infarct,CTV3Map_Code_And_Term -G365.,Rupture papillary muscle/curr comp fol acute myocard infarct,CTV3Map_Code_And_Term -G366.,"Thrombosis atrium,auric append&vent/curr comp foll acute MI",CTV3Map_Code_And_Term -G3y..,Other specified ischaemic heart disease,CTV3Map_Code_And_Term -G3z..,Ischaemic heart disease NOS,CTV3Map_Code_And_Term -G400.,Acute cor pulmonale,High_Level_SNOMED -G41..,Chronic pulmonary heart disease,CTV3Map_Code_And_Term -G41y.,Other chronic pulmonary heart disease,CTV3Map_Code_And_Term -G41yz,Other chronic pulmonary heart disease NOS,CTV3_Children -G41z.,Chronic cor pulmonale (& [NOS]),CTV3_Children -G5102,Chronic bacterial endocarditis,QOF -G54z2,Chronic cardiac valvulitis NOS,QOF -G55..,Cardiomyopathy,High_Level_SNOMED -G550.,Restrictive cardiomyopathy with endomyocardial fibrosis,High_Level_SNOMED -G551.,Hypertrophic obstructive cardiomyopathy,High_Level_SNOMED -G552.,(Becker's disease) or (obscure African cardiomyopathy),High_Level_SNOMED -G554.,Other primary cardiomyopathies,High_Level_SNOMED -G5540,(Congestive obstructive) or (congestive cardiomyopathy),High_Level_SNOMED -G5541,Restrictive cardiomyopathy,High_Level_SNOMED -G5542,Familial cardiomyopathy,High_Level_SNOMED -G5543,Hypertrophic cardiomyopathy without obstruction,High_Level_SNOMED -G5544,Primary dilated cardiomyopathy,CTV3Map_Code_And_Term -G554z,Other primary cardiomyopathy NOS,High_Level_SNOMED -G555.,Alcohol-induced heart muscle disease,High_Level_SNOMED -G557.,Nutritional and metabolic cardiomyopathies,High_Level_SNOMED -G5572,Cardiac glycogenosis,High_Level_SNOMED -G5574,Mucopolysaccharidosis cardiomyopathy,High_Level_SNOMED -G557z,(Heart:[fat infil][fat degen]) or (nutr/met cardmyopath NOS),High_Level_SNOMED -G558.,Cardiomyopathy in disease EC,High_Level_SNOMED -G5580,Cardiomyopathy in Friedreich's ataxia,High_Level_SNOMED -G5581,Cardiomyopathy in myotonic dystrophy,High_Level_SNOMED -G5582,Dystrophic cardiomyopathy,High_Level_SNOMED -G558z,"Cardiomyopathy in diseases EC, NOS",High_Level_SNOMED -G55y.,Secondary cardiomyopathy: [dilated] or [NOS],High_Level_SNOMED -G55y0,Cardiomyopathy due to drugs and other external agents,QOF -G55z.,Cardiomyopathy NOS,High_Level_SNOMED -G58..,Heart failure,CTV3Map_Code_And_Term -G58..,Heart failure,CTV3Map_Code_Only -G580.,Heart failure: [right] or [congestive],CTV3_Children -G5800,Acute congestive heart failure,CTV3Map_Code_And_Term -G5801,Chronic congestive heart failure,CTV3Map_Code_And_Term -G5802,Decompensated cardiac failure,CTV3Map_Code_And_Term -G5803,Compensated cardiac failure,CTV3Map_Code_And_Term -G581.,(L ventric:[fail][imp func]) or (card asth) or (ac pulm oed),High_Level_SNOMED -G5810,Acute left ventricular failure,CTV3_Children -G582.,Acute heart failure,CTV3_Children -G58z.,Heart: [weak] or [failure NOS],QOF -G5y1.,Myocardial degeneration,High_Level_SNOMED -G5y2.,Cardiovascular arteriosclerosis unspecified,CTV3_Children -G5y4.,Post cardiac operation functional disturbance,CTV3_Children -G5y40,Postcardiotomy syndrome,CTV3_Children -G5y4z,Post cardiac operation heart failure NOS,CTV3Map_Code_And_Term -G5yy6,Atrial thrombosis,CTV3_Children -G700.,(Aortic atherosclerosis) or (aorto-iliac disease),CTV3_Children -Gyu14,[X]Other specified rheumatic heart diseases,CTV3_Children -Gyu30,[X]Other forms of angina pectoris,CTV3Map_Code_And_Term -Gyu31,[X]Other current complicatns following acute myocard infarct,CTV3_Children -Gyu32,[X]Other forms of acute ischaemic heart disease,CTV3Map_Code_And_Term -Gyu33,[X]Other forms of chronic ischaemic heart disease,CTV3Map_Code_And_Term -Gyu34,[X]Acute transmural myocardial infarction of unspecif site,CTV3Map_Code_And_Term -Gyu35,[X]Subsequent myocardial infarction of other sites,CTV3Map_Code_And_Term -Gyu36,[X]Subsequent myocardial infarction of unspecified site,CTV3Map_Code_And_Term -Gyu5M,[X]Other hypertrophic cardiomyopathy,High_Level_SNOMED -Gyu5N,[X]Other restrictive cardiomyopathy,High_Level_SNOMED -Gyu5P,[X]Other cardiomyopathies,High_Level_SNOMED -Gyu5Q,[X]Cardiomyopathy in infectious+parasitic diseases CE,High_Level_SNOMED -Gyu5R,[X]Cardiomyopathy in metabolic diseases classified elsewhere,High_Level_SNOMED -Gyu5S,[X]Cardiomyopathy in nutritional diseases CE,High_Level_SNOMED -Gyu5T,[X]Cardiomyopathy in other diseases classified elsewhere,High_Level_SNOMED -H541z,Pulmonary oedema NOS,CTV3Map_Code_And_Term -H584.,Acute pulmonary oedema unspecified,CTV3_Children -H584z,Acute pulmonary oedema NOS,CTV3_Children -L09y1,Cardiac arrest following abortive pregnancy,CTV3Map_Code_And_Term -L09y2,Cardiac failure following abortive pregnancy,High_Level_SNOMED -L1280,Pre-exist hyperten heart dis compl preg childbth+puerperium,QOF -L1281,Pre-exist hyperten heart renal dis comp preg chldbirth/puerp,QOF -P50..,Aortopulmonary septal anomaly (& [common trunk] or [defect]),CTV3_Children -P50z.,Common aortopulmonary trunk NOS,CTV3_Children -P51..,Discordant ventriculoarterial connection,CTV3Map_Code_And_Term -P510.,Total great vessel transposition,CTV3Map_Code_And_Term -P511.,Double outlet right ventricle,CTV3Map_Code_And_Term -P5110,"Double outlet right ventricle, unspecified",CTV3_Children -P5111,Dextratransposition of aorta,CTV3Map_Code_And_Term -P5112,Incomplete great vessel transposition,CTV3Map_Code_And_Term -P5113,Double outlet rt ventricle + subpulm ventriculr septl defect,CTV3Map_Code_And_Term -P511z,Double outlet right ventricle NOS,CTV3Map_Code_And_Term -P512.,Congenitally corrected transposition of great arteries,CTV3Map_Code_And_Term -P51y.,(Oth spec transposit great vessels) or (transposit of aorta),CTV3_Children -P51z.,(Great vessel transpos NOS) or (transpos arterial trunk NEC),CTV3_Children -P52..,Tetralogy of Fallot,CTV3Map_Code_And_Term -P520.,Tetralog Fallot: [unsp][ventric sept def][dextraposit aorta],CTV3_Children -P521.,Pentalogy of Fallot,CTV3Map_Code_And_Term -P52z.,Tetralogy of Fallot NOS,CTV3Map_Code_And_Term -P53..,[Common] and [ventricle],QOF -P54..,Ventricular septal defect,QOF -P540.,"Ventricular septal defect, unspecified",QOF -P541.,Interventricular septal defect,QOF -P542.,Right sided atrium connecting to left ventricle,CTV3Map_Code_And_Term -P543.,Eisenmenger's complex,CTV3Map_Code_And_Term -P544.,Vent septal defect between left ventricle and right atrium,CTV3Map_Code_And_Term -P545.,Small ventricular septal defect,CTV3Map_Code_And_Term -P54y.,Other specified ventricular septal defect,QOF -P54z.,Ventricular septal defect NOS,QOF -P550.,Septal def: [interaur][atrial NOS][auric NOS][interatr NEC],QOF -P553.,Lutembacher's syndrome,QOF -P56..,Endocardial cushion defects,QOF -P560.,"Endocardial cushion defects, unspecified",QOF -P56y.,Other specified endocardial cushion defects,QOF -P56z.,Endocardial cushion defects NOS,QOF -P56z2,Common atrioventricular-type ventricular septal defect,CTV3_Children -P57..,Cor biloculare,QOF -P5y..,Other heart bulb and septal closure defect,CTV3_Children -P5z..,Heart bulb or septal closure defects NOS,CTV3_Children -P6...,Other congenital heart anomalies,QOF -P60..,Congenital pulmonary valve abnormality,QOF -P600.,"Pulmonary valve anomaly, unspecified",QOF -P601.,Congenital atresia of the pulmonary valve,QOF -P6010,Hypoplasia of pulmonary valve,QOF -P601z,Congenital atresia of pulmonary valve NOS,QOF -P602.,Congenital pulmonary valve stenosis,QOF -P6020,Congenital fusion of pulmonic cusps,QOF -P6021,Congenital fusion of pulmonary valve segment,QOF -P602z,Congenital pulmonary stenosis NOS,QOF -P603.,(Right hypoplastic heart synd) or (pseudotruncus arteriosus),QOF -P60z.,Other pulmonary valve anomalies,QOF -P60z0,Congenital insufficiency of the pulmonary valve,QOF -P60z1,Fallot's trilogy,CTV3Map_Code_And_Term -P60z2,Supernumerary pulmonary valve cusps,QOF -P60zz,Other pulmonary valve anomaly NOS,QOF -P61..,Congenital tricuspid atresia and stenosis,QOF -P610.,Tricuspid atresia,QOF -P611.,Congenital tricuspid stenosis,QOF -P61z.,Congenital tricuspid atresia or stenosis NOS,QOF -P62..,Ebstein's anomaly of tricuspid valve,QOF -P63..,Congenital aortic valve stenosis,QOF -P64..,Congenital aortic valve insufficiency,QOF -P640.,"Congenital aortic valve insufficiency, unspecified",QOF -P641.,Bicuspid aortic valve,QOF -P64z.,Congenital aortic valve insufficiency NOS,QOF -P65..,Congenital mitral stenosis,QOF -P650.,"Congenital mitral stenosis, unspecified",QOF -P651.,Fused commissure of the mitral valve,QOF -P652.,Parachute malformation of mitral valve,QOF -P653.,Supernumerary cusps of the mitral valve,QOF -P65z.,Congenital mitral stenosis NOS,QOF -P66..,Congenital mitral regurgitation,QOF -P67..,Hypoplastic left heart syndrome,CTV3Map_Code_And_Term -P6y..,Other specified heart anomalies,CTV3Map_Code_Only -P6y0.,Subaortic stenosis,QOF -P6y1.,Cor triatriatum,QOF -P6y2.,Pulmonary infundibular stenosis,QOF -P6y3.,Obstructive heart anomaly NEC,CTV3Map_Code_And_Term -P6y30,Paper thin right ventricle,CTV3Map_Code_And_Term -P6y3z,Obstructive heart anomaly NEC NOS,CTV3Map_Code_And_Term -P6y4.,Coronary artery abnormality,QOF -P6y40,Congenital absence of coronary artery,QOF -P6y41,Single coronary artery,QOF -P6y42,Coronary artery from aorta,QOF -P6y43,Anomalous origin of coronary artery from pulmonary trunk,QOF -P6y44,Anomalous congen coronary communication (& arteriovenous),High_Level_SNOMED -P6y45,Congenital coronary aneurysm,QOF -P6y46,Congenital stricture of coronary artery,QOF -P6y4z,Coronary artery anomaly NOS,QOF -P6y60,Heart predominantly in right hemithorax,QOF -P6y62,Mesocardia,QOF -P6y63,Extrathoracic heart,CTV3Map_Code_And_Term -P6y64,Abdominal heart,CTV3Map_Code_And_Term -P6y6z,Heart or cardiac apex malposition NOS,QOF -P6yy.,(Specif heart anom ([vars]) or (hypoplast aort orif/valve),QOF -P6yy0,Atresia of cardiac vein,CTV3_Children -P6yy1,Hypoplasia of cardiac vein,CTV3_Children -P6yy2,Congenital cardiomegaly,CTV3_Children -P6yy3,Congenital left ventricular diverticulum,QOF -P6yy5,Congenital anomaly of myocardium,CTV3_Children -P6yy6,Congenital aneurysm of heart,CTV3_Children -P6yy7,Atresia of heart valve NEC,CTV3_Children -P6yy8,Cor triloculare,CTV3_Children -P6yy9,Congenital epicardial cyst,CTV3_Children -P6yyA,Hemicardia,CTV3Map_Code_And_Term -P6yyB,Supernumerary heart valve cusps NEC,CTV3_Children -P6yyD,Fusion of heart valve cusps NEC (& [tricuspid]),QOF -P6yyz,Other specified heart anomalies NOS,CTV3_Children -P6z..,(Congenital heart anomaly NOS) or (Chiari's malformation),QOF -P6z0.,Unspecified anomaly of heart valve,CTV3_Children -P6z2.,Acyanotic congenital heart disease NOS,CTV3_Children -P6zz.,Congenital heart anomaly NOS,QOF -P71..,Aortic coarctation,QOF -P710.,"Hypoplasia of aortic arch, unspecified",QOF -P713.,Interrupted aortic arch,QOF -P71z.,Coarctation of aorta NOS,QOF -P72..,(Other anomalies aorta) or (anomalies aorta excl coarction),QOF -P720.,"Anomaly of aorta, unspecified",QOF -P7210,Anomalous origin of the aortic arch,QOF -P7211,Aorta [dextraposition] or [overriding],QOF -P7212,(Double aortic arch) or (vascular ring),QOF -P7214,Persistent aortic arch convolutions,QOF -P7215,Persistent right aortic arch,QOF -P7216,"Vascular ring, aorta",QOF -P7217,Overriding aorta,CTV3Map_Code_And_Term -P7217,Overriding aorta,CTV3Map_Code_Only -P721z,Aortic arch anomalies NOS,QOF -P722.,Atresia and stenosis of aorta,QOF -P7220,Congenital absence of aorta,QOF -P7221,Aplasia of aorta,QOF -P7224,Aortic stenosis: [supra-valvula] or [congenital ascending],QOF -P7225,Atresia of aorta,QOF -P722z,Atresia or stenosis of aorta NOS,QOF -P72z.,Other anomalies of aorta NOS,QOF -P72z0,Sinus of Valsalva aneurysm,QOF -P73..,Pulmonary artery abnormality,QOF -P730.,"Pulmonary artery anomaly, unspecified",QOF -P731.,Pulmonary artery absent,CTV3Map_Code_And_Term -P731.,Pulmonary artery absent,CTV3Map_Code_Only -P732.,Pulmonary artery atresia,CTV3Map_Code_And_Term -P733.,Coarctation of the pulmonary artery,CTV3Map_Code_And_Term -P734.,Pulmonary artery hypoplasia,CTV3Map_Code_And_Term -P735.,Pulmonary artery: [stenosis] or [congenital stricture],CTV3_Children -P738.,Atresia of pulmonary artery with septal defect,CTV3Map_Code_And_Term -P73y.,Other specified anomaly of pulmonary artery,QOF -P73z.,Pulmonary artery anomaly NOS,QOF -P74..,Anomalies of great veins,QOF -P740.,"Anomaly of great veins, unspecified",QOF -P7400,"Anomaly of the pulmonary veins, unspecified",QOF -P7401,"Anomaly of the vena cava, unspecified",QOF -P740z,"Unspecified anomaly of the great veins, NOS",QOF -P741.,Total anomalous pulmonary venous connection,CTV3Map_Code_And_Term -P7410,Subdiaphragmatic total anomalous pulmonary venous return,CTV3Map_Code_And_Term -P7411,Supradiaphragmatic total anomalous pulmonary venous return,CTV3Map_Code_And_Term -P741z,Total anomalous pulmonary venous return NOS,CTV3Map_Code_And_Term -P74z0,Absence of inferior vena cava,QOF -P74z1,Absence of superior vena cava,QOF -P74z2,Congenital inferior vena cava stenosis,QOF -P74z3,Congenital superior vena cava stenosis,QOF -P74z4,Persistent left posterior cardinal vein,QOF -P74z5,Persistent left superior vena cava,QOF -P74z6,Scimitar syndrome,CTV3Map_Code_And_Term -P74z7,Transposition of pulmonary veins,QOF -P74z8,Pulmonary vein atresia,CTV3Map_Code_And_Term -P74zz,Other great vein anomaly NOS,QOF -PK34.,Situs inversus with levocardia,QOF -PK35.,Kartageners syndrome,QOF -PKy71,Holt-Oram syndrome,QOF -PKyz1,Acardia,CTV3_Children -Pyu20,[X]Other cong malformatn of cardiac chambers & connections,QOF -Pyu21,[X]Other congenital malformations of cardiac septa,QOF -Pyu22,[X]Other congenital malformations of pulmonary valve,QOF -Pyu23,[X]Other congenital malformations of tricuspid valve,QOF -Pyu24,[X]Other congenital malformations of aortic & mitral valves,QOF -Pyu25,[X]Other specified congenital malformations of the heart,QOF -Pyu26,[X]Other congenital malformations of aorta,QOF -Pyu27,[X]Other congenital malformations of pulmonary artery,QOF -Pyu28,[X]Other congenital malformations of great arteries,QOF -Pyu29,[X]Other congenital malformations of great veins,QOF -Pyu2G,"[X]Congenital malformation of tricuspid valve, unspecified",QOF -Pyu2H,[X]Congenital malformation of aortic and mitral valves unsp,QOF -Pyu2J,"[X]Congenital malformation of great arteries, unspecified",QOF -Q48y1,Congenital cardiac failure,CTV3Map_Code_And_Term -R2y10,[D]Cardiorespiratory failure,High_Level_SNOMED -SP003,Mechanical complication of coronary bypass,CTV3Map_Code_And_Term -SP084,Heart transplant failure and rejection,CTV3Map_Code_And_Term -SP085,Heart-lung transplant failure and rejection,CTV3Map_Code_And_Term -SP111,[Cardiac insuffic] or [heart fail] as a complication of care,High_Level_SNOMED -SP2y1,Postcardiotomy syndrome,CTV3_Children -TB000,"Heart transplant with complication, without blame",CTV3Map_Code_And_Term -Ua1eH,Ischaemic chest pain,CTV3Map_Code_And_Term -X00tE,Coronary artery bypass grafting,CTV3Map_Code_And_Term -X00tE,Coronary artery bypass grafting,CTV3Map_Code_Only -X00tG,Coronary artery bypass graft x 1,CTV3_Children -X00tH,Coronary artery bypass grafts x 2,CTV3_Children -X00tI,Coronary artery bypass grafts x 3,CTV3_Children -X00tJ,Coronary artery bypass grafts x 4,CTV3_Children -X00tK,Coronary artery bypass grafts x 5,CTV3_Children -X00tL,Coronary artery bypass grafts greater than 5,CTV3_Children -X00tM,Endarterectomy of coronary artery,CTV3_Children -X00tN,Open coronary artery endarterectomy,CTV3_Children -X00tO,Percutaneous endarterectomy of coronary artery,CTV3_Children -X00tP,Percutaneous directional coronary atherectomy,CTV3_Children -X00tQ,Percutaneous low speed rotational coronary atherectomy,CTV3_Children -X00tR,Percutaneous high speed rotational coronary atherectomy,CTV3_Children -X00tS,Angioplasty of coronary artery,CTV3_Children -X00tT,Percutaneous thrombolysis of coronary artery,CTV3_Children -X00tU,Insertion of coronary artery stent,CTV3_Children -X00tX,Angioscopy of coronary artery,CTV3_Children -X00tY,Patch repair of coronary artery,CTV3_Children -X00tZ,Operation for coronary artery fistula,CTV3_Children -X00ta,Open operation for coronary artery fistula,CTV3_Children -X00tb,Embolisation of coronary artery fistula,CTV3_Children -X00tc,Ligation of coronary artery,CTV3_Children -X00td,Reimplantation of coronary artery,CTV3_Children -X00te,Removal of foreign body from coronary artery,CTV3_Children -X010U,Repair of Fallot-type double outlet right ventricle,CTV3Map_Code_And_Term -X010l,Repair of double outlet right ventricle,CTV3Map_Code_And_Term -X010m,Rastelli operation,CTV3_Children -X010n,Rev operation,CTV3_Children -X0111,Take down of total cavopulmonary connection,CTV3Map_Code_And_Term -X102X,Acute pulmonary oedema,CTV3Map_Code_Only -X102Y,Acute cardiac pulmonary oedema,CTV3Map_Code_And_Term -X102Y,Acute cardiac pulmonary oedema,CTV3Map_Code_Only -X2006,Triple vessel disease of the heart,CTV3Map_Code_And_Term -X2006,Triple vessel disease of the heart,CTV3Map_Code_Only -X2007,Angina at rest,CTV3Map_Code_And_Term -X2007,Angina at rest,CTV3Map_Code_Only -X2008,Stable angina,CTV3Map_Code_And_Term -X2009,Unstable angina,CTV3Map_Code_And_Term -X2009,Unstable angina,CTV3Map_Code_Only -X200A,New onset angina,CTV3Map_Code_And_Term -X200B,Coronary spasm,CTV3Map_Code_And_Term -X200C,Myocardial ischaemia,CTV3_Children -X200D,Silent myocardial ischaemia,CTV3Map_Code_And_Term -X200E,Myocardial infarction,CTV3Map_Code_And_Term -X200E,Myocardial infarction,CTV3Map_Code_Only -X200G,Acute Q wave infarction - anteroseptal,CTV3_Children -X200H,Acute non-Q wave infarction - anteroseptal,CTV3_Children -X200I,Acute Q wave infarction - anterolateral,CTV3_Children -X200J,Acute non-Q wave infarction - anterolateral,CTV3_Children -X200K,Acute inferior myocardial infarction,CTV3_Children -X200L,Acute Q wave infarction - inferior,CTV3_Children -X200M,Acute non-Q wave infarction - inferior,CTV3_Children -X200N,Acute Q wave infarction - inferolateral,CTV3_Children -X200O,Acute non-Q wave infarction - inferolateral,CTV3_Children -X200P,Acute lateral myocardial infarction,CTV3_Children -X200Q,Acute Q wave infarction - lateral,CTV3_Children -X200R,Acute non-Q wave infarction - lateral,CTV3_Children -X200S,Acute widespread myocardial infarction,CTV3_Children -X200T,Acute Q wave infarction - widespread,CTV3_Children -X200U,Acute non-Q wave infarction - widespread,CTV3_Children -X200V,Acute posterior myocardial infarction,CTV3_Children -X200W,Old anterior myocardial infarction,CTV3_Children -X200X,Old inferior myocardial infarction,CTV3_Children -X200Y,Old lateral myocardial infarction,CTV3_Children -X200Z,Old posterior myocardial infarction,CTV3_Children -X200a,Silent myocardial infarction,CTV3Map_Code_And_Term -X200a,Silent myocardial infarction,CTV3Map_Code_Only -X200b,Accelerated coronary artery disease in transplanted heart,QOF -X200c,Cardiac syndrome X,CTV3_Children -X200d,Post-infarction ventricular septal defect,CTV3Map_Code_And_Term -X200e,Cardiac rupture after acute myocardial infarction,CTV3Map_Code_And_Term -X200e,Cardiac rupture after acute myocardial infarction,CTV3Map_Code_Only -X200v,Familial mitral valve prolapse,QOF -X2010,Congenital mitral valve abnormality,QOF -X2018,Congenital aortic regurgitation,QOF -X201B,Congenital aortic valve abnormality,QOF -X201F,Congenital tricuspid regurgitation,QOF -X201H,Congenital tricuspid valve abnormality,QOF -X201M,Congenital pulmonary regurgitation,QOF -X201W,Congestive obstructive cardiomyopathy,CTV3Map_Code_And_Term -X201X,Fatty degeneration heart,High_Level_SNOMED -X201Y,Hypertrophic cardiomyopathy,High_Level_SNOMED -X201Z,Secondary dilated cardiomyopathy,CTV3Map_Code_And_Term -X201a,Post-myocarditic cardiomyopathy,CTV3_Children -X201b,Cardiomyopathy in the puerperium,CTV3_Children -X201c,Familial dilated cardiomyopathy,CTV3_Children -X201d,Restrictive cardiomyopathy without endomyocardial fibrosis,High_Level_SNOMED -X201e,Familial restrictive cardiomyopathy,High_Level_SNOMED -X201f,Specific heart muscle disorder,High_Level_SNOMED -X201g,Chronic myocardial disorder due to chemical/external agent,QOF -X201h,Drug-induced specific heart muscle disorder,High_Level_SNOMED -X202k,Heart failure as a complication of care,CTV3Map_Code_And_Term -X202k,Heart failure as a complication of care,CTV3Map_Code_Only -X202l,Right ventricular failure,CTV3Map_Code_And_Term -X202l,Right ventricular failure,CTV3Map_Code_Only -X202q,Mural thrombus,CTV3Map_Code_And_Term -X202r,Post-infarction mural thrombus,CTV3_Children -X202s,Intracardiac thrombosis in low output state,CTV3_Children -X203E,Chronic cor pulmonale,CTV3Map_Code_And_Term -X203E,Chronic cor pulmonale,CTV3Map_Code_Only -X203H,Eisenmenger's syndrome,QOF -X203e,Coronary artery stenosis,QOF -X203k,Coronary embolus,QOF -X203v,Coronary artery thrombosis,CTV3Map_Code_And_Term -X203v,Coronary artery thrombosis,CTV3Map_Code_Only -X204f,Coronary artery dissection,High_Level_SNOMED -X204q,Coronary artery rupture,High_Level_SNOMED -X204x,Coronary artery perforation,High_Level_SNOMED -X205P,Coronary steal syndrome,High_Level_SNOMED -X207c,Congenital abnormality of great veins and coronary sinus,QOF -X40AV,Congenital heart disease in pregnancy,QOF -X708p,Severe scapuloperoneal muscular dystrophy wth cardiomyopathy,High_Level_SNOMED -X70MZ,Syphilitic coronary artery disease,High_Level_SNOMED -X776w,Right ventricular fibromuscular infundibular stenosis,QOF -X776x,Right ventricular muscular infundibular stenosis,QOF -X777h,Bicuspid doming of aortic cusp,QOF -X778Q,Coronary artery occluded,QOF -X778W,Coronary graft stenosis,QOF -X778X,Coronary graft occluded,QOF -X778j,Aortic root congenital abnormality,QOF -X77tW,Congenital heart disease,QOF -X77tX,Fusion of tricuspid valve cusps NEC,CTV3_Children -X77tY,Congenital insufficiency of heart valve NEC,CTV3Map_Code_Only -X77tZ,Hypoplasia of heart NOS,CTV3Map_Code_And_Term -X77ta,"Congenital heart disease, septal and bulbar anomalies",CTV3_Children -X77td,Congenital cardiac rotation,QOF -X77th,Congenital abnormality of relationship of cardiac component,QOF -X77ti,Abnormal relationship of right ventricle to left ventricle,QOF -X77tj,Criss-cross heart,QOF -X77tk,Abnormal relationship of aortic orifice to pulmonary orifice,QOF -X77tl,Mirror-imaged heart,QOF -X77tm,Congenital abnormality of cardiac connection,QOF -X77to,Abnormal atrioventricular connection,QOF -X77tp,Abnormal atrioventricular connection - biventricular,QOF -X77tq,Cor triloculare biventriculare,CTV3Map_Code_And_Term -X77tr,Discordant atrioventricular connection,QOF -X77tt,Ambiguous atrioventricular connection,QOF -X77tu,Absent atrioventricular connection with straddling valve,QOF -X77tv,Abnormal atrioventricular connection - univentricular,QOF -X77tw,Double inlet ventricle,QOF -X77tx,Double inlet right ventricle,QOF -X77ty,Double inlet left ventricle,QOF -X77tz,Double inlet to ventricle of indeterminate morphology,QOF -X77u0,Absent right sided atrioventricular connection,QOF -X77u1,Left sided atrium connecting to left ventricle,QOF -X77u2,Left sided atrium connecting to right ventricle,QOF -X77u3,Left sided atrium connecting to both ventricles,QOF -X77u4,Lt side atrium connecting ventricle indeterminate morphology,QOF -X77u5,Absent left sided atrioventricular connection,QOF -X77u6,Right sided atrium connecting to right ventricle,QOF -X77u7,Right sided atrium connecting to both ventricles,QOF -X77u8,Rt sided atrium connectng ventricle indeterminate morphology,QOF -X77u9,Abnormal ventriculoarterial connection,QOF -X77uB,Transposition of aorta,CTV3Map_Code_And_Term -X77uB,Transposition of aorta,CTV3Map_Code_Only -X77uC,Discordt ventric/arterial connct + concordt atriovent connct,CTV3_Children -X77uE,Double outlet rt ventricle + subaort ventriculr septl defect,CTV3_Children -X77uF,Double outlet rt vent + noncommitted ventriculr septl defect,CTV3_Children -X77uG,Double outlet rt vent + doubly commit ventric septal defect,CTV3_Children -X77uH,Double outlet left ventricle,QOF -X77uI,Double outlet from ventricle of indeterminate morphology,QOF -X77uJ,Single outlet ventriculoarterial connection,QOF -X77uL,Solitary aortic trunk with pulmonary atresia,QOF -X77uM,Solitary pulmonary trunk with aortic atresia,QOF -X77uN,Solitary arterial trunk,QOF -X77uV,Anomalous insertion right superior vena cava to left atrium,QOF -X77uX,Laevoatrial cardinal vein,QOF -X77uY,Absent bridging vein,QOF -X77uf,Inferior vena cava connecting to morphological left atrium,QOF -X77ug,Inferior vena cava connecting to coronary sinus,QOF -X77uj,Pulmonary vein abnormality,QOF -X77uk,Anomalous termination of right pulmonary vein,QOF -X77ul,Anomalous pulmonary venous connection,QOF -X77um,Obstructed pulmonary venous connection,QOF -X77un,Congenital pulmonary vein stenosis,QOF -X77uo,Coronary sinus abnormality,QOF -X77up,Coronary sinus defect in left atrium,QOF -X77uq,Absent coronary sinus,QOF -X77ur,Coronary sinus orifice atresia,QOF -X77us,Congenital coronary sinus stenosis,QOF -X77ut,Coronary sinus to left ventricle fistula,QOF -X77uu,Congenital aneurysm of coronary sinus,QOF -X77uv,Ductus venosus abnormality,QOF -X77uw,Patent ductus venosus,QOF -X77uy,Abnormal connection of hepatic vein to atrium,QOF -X77uz,Congenital abnormality of atria and atrial septum,QOF -X77v0,Isomerism of atrial appendages,QOF -X77v1,Isomerism of right appendage,QOF -X77v2,Isomerism of left appendage,QOF -X77v3,Mirror imaged atria,QOF -X77v6,Obstructive Eustachian valve,QOF -X77v7,Prolapse of Eustachian valve,QOF -X77v8,Anomalous valve of coronary sinus,QOF -X77v9,Filigreed network of venous valves,QOF -X77vB,Right atrial appendage absent,QOF -X77vC,Right atrial appendage - left - juxtaposition,QOF -X77vE,Right atrial endocardial fibroelastosis,QOF -X77vF,Right atrial hypoplasia,QOF -X77vK,Divided left atrium,QOF -X77vL,Supramitral left atrial ring,QOF -X77vN,Left atrial appendage absent,QOF -X77vO,Left atrial appendage - right - juxtaposition,QOF -X77vQ,Left atrial endocardial fibroelastosis,QOF -X77vR,Left atrial hypoplasia,QOF -X77vW,Premature closure of foramen ovale,QOF -X77vX,Foramen ovale valvar aneurysm,QOF -X77va,Interauricular septal defect,QOF -X77vc,Auricular septal defect NOS,QOF -X77vd,Sinus venosus defect,QOF -X77ve,Sinus venosus defect with overriding superior vena cava,QOF -X77vf,Sinus venosus defect with overriding inferior vena cava,QOF -X77vi,Atrioventricular septal defect - isolated atrial component,QOF -X77vj,Cong abnorm atrioventricular valves & av septal defect,QOF -X77vn,Tricuspid leaflet dysplasia,QOF -X77vo,Tricuspid annulus hypoplasia,QOF -X77vp,Dilatation of tricuspid annulus,QOF -X77vr,Overriding tricuspid valve,QOF -X77vs,Straddling tricuspid valve,QOF -X77vu,Absent tricuspid leaflet,QOF -X77vv,Double orifice of tricuspid valve,QOF -X77vx,True cleft of tricuspid leaflet,QOF -X77vz,Accessory tissue on tricuspid leaflet,QOF -X77w1,Arcade abnormality of tricuspid chordae tendinae,QOF -X77w2,Tricuspid chordae tendinae too short,QOF -X77w3,Tricuspid chordae tendinae too long,QOF -X77w4,Tricuspid chordae tendinae to outlet septum,QOF -X77w6,Parachute malformation of tricuspid valve,QOF -X77w7,Absent tricuspid papillary muscle,QOF -X77w8,Fused tricuspid papillary muscle,QOF -X77w9,Hypoplastic tricuspid papillary muscle,QOF -X77wB,Mitral atresia,QOF -X77wD,Mitral valve dysplasia,QOF -X77wE,Mitral leaflet dysplasia,QOF -X77wF,Mitral valve hypoplasia,QOF -X77wH,Overriding mitral valve,QOF -X77wJ,Straddling mitral valve,QOF -X77wM,Absent mitral leaflets,QOF -X77wN,Double orifice of mitral valve,QOF -X77wO,Ebstein-like downward displacement of mitral valve,QOF -X77wQ,True cleft of mitral leaflet,QOF -X77wS,Anterior leaflet of mitral valve attached to septum,QOF -X77wT,Accessory tissue on mitral leaflet,QOF -X77wV,Arcade abnormality of mitral chordae tendinae,QOF -X77wZ,Absent mitral papillary muscle,QOF -X77wa,Fused mitral papillary muscles,QOF -X77wb,Hypoplastic mitral papillary muscle,QOF -X77wc,Atrioventricular septal defect & common atriovent junction,QOF -X77we,Atrioventricular septal defect: isol ventricular component,QOF -X77wf,Atrioventriculr sept defect: atrial & ventricular components,QOF -X77wg,Atrioventricular septal defect - ventricular component,QOF -X77wh,Atriovent sept def - vent comp under sup bridging leaflet,QOF -X77wi,Atrioventricular septal defect - Rastelli A,QOF -X77wj,Atrioventricular septal defect - Rastelli B,QOF -X77wk,Atrioventricular septal defect - Rastelli C,QOF -X77wl,Atriovent sept def - vent comp under inf bridging leaflet,QOF -X77wm,Malaligned atrial septum,QOF -X77wn,Double outlet right atrium,QOF -X77wo,Double outlet left atrium,QOF -X77wr,Atresia of common atrioventricular valve,QOF -X77ws,Imperforate common atrioventricular valve,QOF -X77wt,Hypoplasia of common atrioventricular valve,QOF -X77wu,Dysplasia of common atrioventricular valve,QOF -X77ww,Common atrioventricular valve limited to one ventricle,QOF -X77wx,Dilatation of common atrioventricular valve annulus,QOF -X77wy,Common atrioventricular valve stenosis,QOF -X77wz,Common atrioventricular valve leaflet abnormality,QOF -X77x0,Common atrioventricular valve prolapse,QOF -X77x1,True cleft of common atrioventricular valve leaflet,QOF -X77x2,Accessory tissue on common atrioventricular valve leaflet,QOF -X77x3,Double orifice of common atrioventricular valve,QOF -X77x4,Triple orifice lt vent component com av valve,QOF -X77x5,Ebstein's anomaly of common atrioventricular valve,QOF -X77x7,Common atrioventricular valve chordae too short,QOF -X77x8,Common atrioventricular valve chordae too long,QOF -X77x9,Common atrioventricular valve chordae to outlet septum,QOF -X77xA,Arcade abnormality of common atrioventricular valve chordae,QOF -X77xC,Parachute malformation of common atrioventricular valve,QOF -X77xD,Absent common atrioventricular valve papillary muscle,QOF -X77xE,Fused common atrioventricular valve papillary muscle,QOF -X77xF,Hypoplastic common atrioventricular valve papillary muscle,QOF -X77xH,Right atrioventricular valve atresia,QOF -X77xI,Imperforate right atrioventricular valve,QOF -X77xJ,Right atrioventricular valve dysplasia,QOF -X77xK,Right atrioventricular valve hypoplasia,QOF -X77xM,Overriding right atrioventricular valve,QOF -X77xP,Straddling right atrioventricular valve,QOF -X77xR,Absent right atrioventricular valve leaflets,QOF -X77xS,Double orifice of right atrioventricular valve,QOF -X77xT,Ebstein's anomaly of right atrioventricular valve,QOF -X77xV,True cleft of right atrioventricular valve leaflet,QOF -X77xW,Accessory tissue on right atrioventricular valve leaflet,QOF -X77xX,Right atrioventricular valve leaflet dysplasia,QOF -X77xb,Right atrioventricular valve chordae to outlet septum,QOF -X77xc,Arcade abnormality of right atrioventricular valve chordae,QOF -X77xe,Parachute malformation of right atrioventricular valve,QOF -X77xf,Absent right atrioventricular valve papillary muscle,QOF -X77xg,Fused right atrioventricular valve papillary muscles,QOF -X77xh,Hypoplastic right atrioventricular valve papillary muscle,QOF -X77xj,Left atrioventricular valve atresia,QOF -X77xk,Imperforate left atrioventricular valve,QOF -X77xl,Left atrioventricular valve dysplasia,QOF -X77xm,Left atrioventricular valve hypoplasia,QOF -X77xo,Overriding left atrioventricular valve,QOF -X77xr,Straddling left atrioventricular valve,QOF -X77xt,Absent left atrioventricular valve leaflets,QOF -X77xu,Double orifice of left atrioventricular valve,QOF -X77xv,Ebstein's anomaly of left atrioventricular valve,QOF -X77xx,True cleft of left atrioventricular valve leaflet,QOF -X77xy,Accessory tissue on left atrioventricular valve leaflet,QOF -X77xz,Left atrioventricular valve leaflet dysplasia,QOF -X77y3,Left atrioventricular valve chordae to outlet septum,QOF -X77y4,Arcade abnormality of left atrioventricular valve chordae,QOF -X77y6,Parachute malformation of left atrioventricular valve,QOF -X77y7,Absent left atrioventricular valve papillary muscle,QOF -X77y8,Fused left atrioventricular valve papillary muscles,QOF -X77y9,Hypoplastic left atrioventricular valve papillary muscle,QOF -X77yA,Congenital abnormality of ventricles and ventricular septum,QOF -X77yB,Tetralogy of Fallot with pulmonary stenosis,CTV3_Children -X77yC,Tetralogy of Fallot with pulmonary atresia,CTV3_Children -X77yD,Dextraposition of aorta in Fallot's tetralogy,CTV3Map_Code_And_Term -X77yD,Dextraposition of aorta in Fallot's tetralogy,CTV3Map_Code_Only -X77yE,Ventricular septal defect in Fallot's tetralogy,CTV3Map_Code_And_Term -X77yE,Ventricular septal defect in Fallot's tetralogy,CTV3Map_Code_Only -X77yG,Right ventricular hypoplasia,QOF -X77yH,Diffuse hypoplasia of right ventricle,QOF -X77yI,Hyoplasia of right ventricular inflow tract,QOF -X77yJ,Hypoplasia of right ventricular outflow tract,QOF -X77yK,Hypoplasia rt vent outflow tract and trabecular area,QOF -X77yN,Primary right ventricular endocardial fibroelastosis,QOF -X77yO,Two chambered right ventricle,QOF -X77yP,Congenital right ventricular diverticulum,QOF -X77yQ,Congenital right ventricular aneurysm,QOF -X77yR,Arrythmogenic right ventricular dysplasia,QOF -X77yS,Right ventricular outflow tract abnormality,QOF -X77yT,Right ventricular outflow tract obstruction,CTV3Map_Code_And_Term -X77yU,Right ventricular outflow obstruction - localised,CTV3_Children -X77yV,Right ventricular outflow obstruction - tubular,CTV3_Children -X77yW,Right ventricular outflow tract atresia,QOF -X77yX,Right ventricular outflow tract absent,QOF -X77yZ,Left ventricular hypoplasia,QOF -X77ya,Diffuse hypoplasia of left ventricle,QOF -X77yb,Hyoplasia of left ventricular inflow tract,QOF -X77yc,Hypoplasia of left ventricular outflow tract,QOF -X77yd,Hypoplasia lt ventricular outflow tract and trabecular area,QOF -X77yg,Abnormal left ventricular muscle band,QOF -X77yh,Primary left ventricular endocardial fibroelastosis,QOF -X77yi,Congenital left ventricular aneurysm,QOF -X77yj,Left ventricular outflow tract abnormality,QOF -X77yk,Left ventricular outflow tract obstruction,QOF -X77yl,Left ventricular outflow tract atresia,QOF -X77ym,Indeterminate ventricular outflow tract obstruction,QOF -X77yo,Multiple ventricular septal defects,QOF -X77yp,Restrictive ventricular septal defect,QOF -X77yq,Perimembranous ventricular septal defect,QOF -X77yr,Perimembr vent sept def extension to rt ventricular inlet,QOF -X77ys,Perimemb vent sep def - extens rt vent trabecular component,QOF -X77yt,Perimembr vent sept def - extension rt ventricular outlet,QOF -X77yu,Perimembr vent sept def - extens to all rt vent components,QOF -X77yv,Vent septal defect with malaligned outlet septum to right,QOF -X77yw,Vent sept def malalign outlet septum to rt overrid aort valv,QOF -X77yx,Vsd with malalign outlt septm to rt overrid pulmonary valve,QOF -X77yy,Ventr septal defect with malaligned outlet septum to left,QOF -X77yz,Vent sept def malalign outlt septm lt overrid aortic valve,QOF -X77z0,Vent sep def with malalign outlt septm lt overrid pulm valve,QOF -X77z1,Vent sept def malalign outlt septm & overrid truncal valve,QOF -X77z2,Muscular ventricular septal defect,QOF -X77z3,Muscular ventricular septal defect in inlet septum,QOF -X77z4,Muscular ventriculr septal defect central trabecular septum,QOF -X77z5,Musculr ventriculr septal defect in apical trabecular septum,QOF -X77z6,Muscular ventricular septal defect in marginal septum,QOF -X77z7,Muscular ventricular septal defect in outlet septum,QOF -X77z8,Multiple trabecular ventricular septal defect,QOF -X77z9,Doubly committed subarterial ventricular septal defect,QOF -X77zA,Doubl commit subart vent sept def - membranous septum exten,QOF -X77zB,Doubl commit subartl vent sept deft with musc post inf rim,QOF -X77zC,Giant ventricular septal defect,QOF -X77zD,Abnormal infundibular morphology,QOF -X77zE,Subpulmonary infundibulum,QOF -X77zF,Subaortic infundibulum,QOF -X77zG,Bilateral muscular infundibula,QOF -X77zH,Bilateral deficient infundibula,QOF -X77zK,Congenital abnormality of arterial valves,QOF -X77zL,Truncal valve abnormality,QOF -X77zM,Truncal valve dysplasia,QOF -X77zN,Truncal valve stenosis,QOF -X77zO,Truncal valve regurgitation,QOF -X77zP,Truncal valve prolapse,QOF -X77zQ,Accessory tissue on truncal valve cusp,QOF -X77zR,Pulmonary valve cusp hypoplasia,QOF -X77zS,Pulmonary valve ring hypoplasia,QOF -X77zT,Commissural fusion of pulmonary valve,QOF -X77zU,Pulmonary valve dysplasia,QOF -X77zV,Pulmonary valve atresia,QOF -X77zX,Pulmonary atresia with intact ventricular septum,QOF -X77zY,Pulmonary atresia with ventricular septal defect,QOF -X77zZ,Pulmonary valve atresia without ventricular outflow tract,QOF -X77za,Imperforate pulmonary valve,QOF -X77zc,Muscular pulmonary atresia,QOF -X77zf,Absent pulmonary valve,QOF -X77zg,Absent pulmonary valve syndrome,QOF -X77zh,Accessory tissue on pulmonary valve cusp,QOF -X77zi,Unicuspid pulmonary valve,QOF -X77zj,Bicuspid pulmonary valve,QOF -X77zk,Quadricuspid pulmonary valve,QOF -X77zm,Aortic valve ring hypoplasia,CTV3Map_Code_Only -X77zn,Commissural fusion of aortic valve,QOF -X77zo,Eccentric opening of aortic valve,QOF -X77zr,Aortic valve atresia,QOF -X77zs,Imperforate aortic valve,QOF -X77zu,Aortic valve absent,QOF -X77zw,Hypoplasia of aortic valve cusp,QOF -X77zx,Accessory tissue on aortic valve cusp,QOF -X77zy,Abnormal number of aortic valve cusps,QOF -X77zz,Unicuspid aortic valve,QOF -X7800,Quadricuspid aortic valve,QOF -X7802,Congenital dilatation of aorta,QOF -X7803,Tubular hypoplasia of aorta,QOF -X7804,Anomalies of the aorta excluding coarction,QOF -X7807,Type I common arterial trunk,CTV3_Children -X7808,Type II common arterial trunk,CTV3_Children -X7809,Type III common arterial trunk,CTV3_Children -X780A,Aortopulmonary window,CTV3_Children -X780C,Pulmonary trunk stenosis,QOF -X780D,Pulmonary trunk hypoplasia,QOF -X780E,Pulmonary trunk atresia,QOF -X780F,Pulmonary atresia with confluent pulmonary arteries,QOF -X780G,Pulmonary atresia with absent pulmonary artery,QOF -X780H,Pulmonary trunk absent,QOF -X780I,Pulmonary trunk absent with confluent pulmonary arteries,QOF -X780J,Pulmonary trunk absent with non-confluent pulmonary arteries,QOF -X780K,Pulmonary trunk absent with absent pulmonary artery,QOF -X780N,Peripheral pulmonary artery stenosis,CTV3_Children -X780O,Pulmonary artery dilatation,QOF -X780P,Abnormal origin of pulmonary artery,QOF -X780Q,Abnormal origin of right pulmonary artery,QOF -X780R,Origin of right pulmonary artery from ductus arteriosus,QOF -X780S,Origin of right pulmonary artery from ascending aorta,QOF -X780T,Abnormal origin of left pulmonary artery,QOF -X780U,Origin of left pulmonary artery from ductus arteriosus,QOF -X780V,Origin of left pulmonary artery from ascending aorta,QOF -X780W,Origin of left pulmonary artery from right pulmonary artery,QOF -X780a,Diffuse supravalvar aortic stenosis,QOF -X780b,Ascending aortic hypoplasia,QOF -X780c,Ascending aortic atresia,QOF -X780d,Ascending aorta absent,QOF -X780f,Congenital aneurysm of ascending aorta,QOF -X780i,Aortic tunnel,QOF -X780j,Aorta to left ventricle tunnel,QOF -X780k,Aorta to right ventricle tunnel,QOF -X780m,Right descending aorta,QOF -X780n,Left aortic arch and right descending aorta,QOF -X780o,Right aortic arch and right descending aorta,QOF -X780q,Right aortic arch and left descending aorta,QOF -X780r,Aortic arch centrally descending,QOF -X780s,Cervical aortic arch,QOF -X780t,Persisting fifth aortic arch,QOF -X780u,Vascular ring - disorder,QOF -X780v,Double aortic arch with both patent,QOF -X780w,Double aortic arch with unilateral hypoplasia,QOF -X780x,Double aortic arch with unilateral atresia,QOF -X780y,Vascular ring with left aortic arch,QOF -X780z,Vascular ring with right aortic arch,QOF -X7810,Vascular ring components,QOF -X7812,Aberrant subclavian artery,QOF -X7813,Aberrant retro-oesophageal subclavian artery,QOF -X7814,Isolation of subclavian artery,QOF -X7817,Retro-oesophageal right descending aorta,QOF -X781C,Preductal aortic stenosis,QOF -X781D,Preductal interruption of aorta,QOF -X781E,Preductal hypoplasia of aorta,QOF -X781F,Juxtaductal aortic coarctation,QOF -X781G,Postductal aortic stenosis,QOF -X781H,Postductal interruption of aorta,QOF -X781I,Thoracic aortic coarctation,QOF -X781K,Kinking of descending aorta,QOF -X781L,Tubular aortic arch hypoplasia,QOF -X781M,Postductal hypoplasia of aorta,QOF -X781N,Aortic arch atresia,QOF -X781O,Interrupted aortic arch distal to left subclavian artery,QOF -X781P,Interrup aort arch betw lt subclavian & lt comm carotid art,QOF -X781Q,Interr aort arch betw lt com carotid & brachiocephal artery,QOF -X781b,Collaterals to pulmonary arteries,QOF -X781c,Major aortopulmonary collateral artery,QOF -X781d,Systemic to pulmonary collateral artery,QOF -X781e,Stenosis of systemic to pulmonary artery collateral artery,QOF -X781o,Anomalous coronary artery origin,QOF -X781p,Variant coronary origin from aortic sinus,QOF -X781q,Variant coronary origin from left sinus,QOF -X781r,Variant coronary origin from right sinus,QOF -X781s,Coronary artery origin from non-facing sinus,QOF -X781t,Anom origin lt ant descending from right coronary artery,QOF -X781u,Anomalous origin coronary art from pulmonary arterial tree,QOF -X781v,Anomal origin coron artery from right pulmonary artery,QOF -X781w,Anomal origin coronary artery from left pulmonary artery,QOF -X781x,Abnormal coronary orifice,High_Level_SNOMED -X781y,Coronary orifice abnormally high,QOF -X781z,Coronary orifice asymmetrical,QOF -X7820,Dual coronary orifice,QOF -X7821,Coronary orifice stenosis,QOF -X7822,Coronary orifice atresia,QOF -X7823,Abnormal coronary artery course,QOF -X7824,Intramural coronary artery course,QOF -X7825,Lt ant descending runs across rt ventricular outflow tract,QOF -X7826,Coronary artery runs between aorta and pulmonary trunk,QOF -X7827,Circumflex runs posterior to pulmonary trunk,QOF -X7828,Circumflex runs posterior to aorta,QOF -X7829,Coronary artery fistula,High_Level_SNOMED -X782A,Congenital coronary arteriovenous fistula,QOF -X782B,Single coronary artery fistula,High_Level_SNOMED -X782C,Multiple coronary artery fistulae,High_Level_SNOMED -X782D,Coronary fistulae from right ventricle,QOF -X782E,Coronary fistulae from left ventricle,QOF -X782F,Congenital coronary artery calcification,QOF -X782M,Totally absent pericardium,QOF -X79u6,Directional atherectomy,High_Level_SNOMED -X90Qa,Open intracoronary repair of coronary artery fistula,CTV3_Children -X90WS,Coronary inclusion technique,CTV3_Children -X90WT,Coronary interposition technique,CTV3_Children -XA0Ae,Transection of coronary artery,High_Level_SNOMED -XC0I6,Malaligned outlet septum,QOF -XC0MC,Common ventricle,CTV3Map_Code_And_Term -XC0bX,Aneurysm of membranous septum,CTV3_Children -XE0Em,Coronary artery operation,CTV3Map_Code_And_Term -XE0Em,Coronary artery operation,CTV3Map_Code_Only -XE0En,Double anastomosis of mammary arteries to coronary arteries,CTV3Map_Code_And_Term -XE0Ue,Hypertensive heart disease NOS without CCF,QOF -XE0Uh,Acute myocardial infarction,CTV3Map_Code_And_Term -XE0Uh,Acute myocardial infarction,CTV3Map_Code_Only -XE0Ui,Worsening angina,CTV3Map_Code_And_Term -XE0Ui,Worsening angina,CTV3Map_Code_Only -XE0Uk,Other cardiac wall aneurysm,CTV3_Children -XE0Un,Chronic pulmonary heart disease NOS,CTV3Map_Code_And_Term -XE0Un,Chronic pulmonary heart disease NOS,CTV3Map_Code_Only -XE0Uy,Obscure African cardiomyopathy,High_Level_SNOMED -XE0Uz,Congestive cardiomyopathy,CTV3Map_Code_Only -XE0V0,Nutritional and metabolic cardiomyopathy NOS,High_Level_SNOMED -XE0V1,Secondary cardiomyopathy NOS,CTV3Map_Code_Only -XE0V8,Biventricular failure,CTV3Map_Code_And_Term -XE0V8,Biventricular failure,CTV3Map_Code_Only -XE0V9,Heart failure NOS,CTV3Map_Code_And_Term -XE0V9,Heart failure NOS,CTV3Map_Code_Only -XE0Vo,Rheumatic heart disease: [chronic] or [valvular],QOF -XE0Vq,Rheumatic mitral valve disease (& [chronic]),QOF -XE0Vu,Rheumatic aortic valve disease (& [chronic]),QOF -XE0Vw,Other chronic rheumatic heart,CTV3_Children -XE0WA,Myocardial infarction (& [acute]) or coronary thrombosis,CTV3_Children -XE0WC,Acute/subacute ischaemic heart disease NOS,CTV3_Children -XE0WE,Heart disease: [arteriosclerotic] or [chronic ischaemic NOS],CTV3_Children -XE0WG,Chronic ischaemic heart disease NOS,CTV3_Children -XE0WM,(Chronic cor pulmonale) or (pulmonary heart disease NOS),High_Level_SNOMED -XE0Wa,Cardmyopath (& [conges obst][hyper obst]) or endmyocard fibr,High_Level_SNOMED -XE0Wo,(Conges card fail)(dropsy)(card insuf)(R hrt fail)(LV fail),CTV3_Children -XE1KA,Bulbus cordis and cardiac septal closure anomalies,CTV3_Children -XE1KB,Other specified transposition of great vessels,CTV3Map_Code_And_Term -XE1KB,Other specified transposition of great vessels,CTV3Map_Code_Only -XE1KC,Great vessel transposition NOS,CTV3Map_Code_And_Term -XE1KC,Great vessel transposition NOS,CTV3Map_Code_Only -XE1KD,"Tetralogy of Fallot, unspecified",CTV3Map_Code_And_Term -XE1KD,"Tetralogy of Fallot, unspecified",CTV3Map_Code_Only -XE1KG,Right hypoplastic heart syndrome,CTV3Map_Code_And_Term -XE1KG,Right hypoplastic heart syndrome,CTV3Map_Code_Only -XE1KH,Congenital abnormality of cardiac position,QOF -XE1KJ,Fusion of heart valve cusps NEC,CTV3_Children -XE1KK,Cyanotic congenital heart disease NOS,CTV3Map_Code_And_Term -XE1KK,Cyanotic congenital heart disease NOS,CTV3Map_Code_Only -XE1KL,Other anomalies of aorta,QOF -XE1KM,Double aortic arch,QOF -XE1KN,Hypoplasia of aorta,QOF -XE1KO,Supravalvar aortic stenosis,QOF -XE1KP,Congenital aneurysm of aorta,QOF -XE1KQ,Pulmonary artery stenosis,CTV3Map_Code_And_Term -XE1KQ,Pulmonary artery stenosis,CTV3Map_Code_Only -XE1KS,Partial anomalous pulmonary venous connection,QOF -XE1KT,Other great vein anomalies,QOF -XE1NA,(Congen anom CVS) or (congen heart dis) or (cong def heart),QOF -XE1NE,(Bulbus/septum anom NOS) or (transposition of great vessels),QOF -XE1NG,Congenital heart: [anomaly NOS][valve][valvular heart dis],QOF -XE1p9,Cardiac insufficiency as a complication of care,CTV3Map_Code_And_Term -XE1p9,Cardiac insufficiency as a complication of care,CTV3Map_Code_Only -XE1tl,(Post-operative problem NOS) or (postcardiotomy syndrome),QOF -XE2Px,Single anastomosis of mammary artery to coronary artery NEC,CTV3Map_Code_And_Term -XE2Px,Single anastomosis of mammary artery to coronary artery NEC,CTV3Map_Code_Only -XE2QG,Left ventricular failure,CTV3Map_Code_And_Term -XE2QG,Left ventricular failure,CTV3Map_Code_Only -XE2Qh,Aortopulmonary septal anomaly,CTV3Map_Code_And_Term -XE2Qh,Aortopulmonary septal anomaly,CTV3Map_Code_Only -XE2Qi,Anomalous coronary artery communication,QOF -XE2Rv,(Ventricular septal defect) or (Eisenmenger defect),QOF -XE2aA,Old myocardial infarction,CTV3Map_Code_And_Term -XE2aA,Old myocardial infarction,CTV3Map_Code_Only -XE2r7,Coronary A by-pass anastam NOS,CTV3_Children -XE2uV,Ischaemic heart disease,CTV3Map_Code_And_Term -XE2uV,Ischaemic heart disease,CTV3Map_Code_Only -XE2uq,Aortic septal defect,CTV3Map_Code_Only -XE2ur,Dextraposition of aorta,CTV3Map_Code_And_Term -XE2ur,Dextraposition of aorta,CTV3Map_Code_Only -XE2vv,Preductal aortic coarctation,QOF -XE2vw,Postductal aortic coarctation,QOF -XE2vz,Common atrium,CTV3Map_Code_Only -XM00Q,Cong abnormality of thoracic aorta and pulmonary arteries,QOF -XM0rN,Coronary atherosclerosis,CTV3Map_Code_And_Term -XM0rN,Coronary atherosclerosis,CTV3Map_Code_Only -XM0v4,Congenital heart valve abnormality,QOF -XM1GB,Divided right atrium,QOF -XM1LR,LIMA single anastomosis,CTV3Map_Code_And_Term -XM1LR,LIMA single anastomosis,CTV3Map_Code_Only -XM1LS,RIMA single anastomosis,CTV3Map_Code_And_Term -XM1LS,RIMA single anastomosis,CTV3Map_Code_Only -XM1Le,Myocardial revascularisation,CTV3_Children -XM1M3,LIMA sequential anastomosis,CTV3Map_Code_Only -XM1M4,RIMA sequential anastomosis,CTV3Map_Code_Only -XM1Qk,Mural cardiac aneurysm,CTV3_Children -XM1Qn,Impaired left ventricular function,CTV3Map_Code_And_Term -XM1Qn,Impaired left ventricular function,CTV3Map_Code_Only -XM1Qp,Cardiomegaly - hypertensive,QOF -XM1Qw,Blue baby,CTV3Map_Code_And_Term -XM1Qw,Blue baby,CTV3Map_Code_Only -XSDT6,Coronary artery atheroma,CTV3_Children -Xa07h,Neonatal cardiac failure,High_Level_SNOMED -Xa07j,Myocardial ischaemia of newborn,CTV3_Children -Xa07k,Transient myocardial ischaemia of newborn,CTV3_Children -Xa0Kw,Coronary artery graft placement,CTV3_Children -Xa0RY,Percutaneous embolisation of coronary artery fistula,CTV3_Children -Xa0TT,Sepsis-associated left ventricular failure,High_Level_SNOMED -Xa0TU,Sepsis-associated right ventricular failure,High_Level_SNOMED -Xa0YL,Acute anterior myocardial infarction,CTV3_Children -Xa0aP,Percutaneous removal of foreign body from coronary artery,CTV3_Children -Xa1dP,Ischaemic myocardial dysfunction,QOF -Xa1dQ,Stunned myocardium,QOF -Xa1dR,Hibernating myocardium,QOF -Xa1fq,Arrhythmogenic right ventricular cardiomyopathy,High_Level_SNOMED -Xa3fK,Chronic rheumatic mitral valve,QOF -Xa3fN,Chronic rheumatic aortic valve disease,QOF -Xa3hW,Septal defect NOS,CTV3_Children -Xa3kl,Heart - arterial implant NOS,CTV3_Children -Xa3km,Indirect heart revascularisation,CTV3_Children -Xa3kp,Ligation of coronary arteriovenous fistula,CTV3_Children -Xa3ks,Heart internal mammary artery implant,CTV3_Children -Xa6Yx,Left ventricular aneurysm,CTV3_Children -Xa7lV,Carotid atherosclerosis,CTV3_Children -Xa7nH,Exercise-induced angina,CTV3Map_Code_And_Term -Xa9Bp,Muscular dystrophy - cardiac type,High_Level_SNOMED -Xa9Cm,Abnormal number of pulmonary valve cusps,QOF -Xa9Qh,Jatene procedure,CTV3_Children -XaAC3,Acute Q wave myocardial infarction,CTV3Map_Code_And_Term -XaAzi,Acute non-Q wave infarction,CTV3Map_Code_And_Term -XaBEB,[V]Presence of coronary artery bypass graft,CTV3Map_Code_And_Term -XaBEB,[V]Presence of coronary artery bypass graft,CTV3Map_Code_Only -XaBL1,H/O: Myocardial infarction in last year,CTV3Map_Code_And_Term -XaBL2,H/O: Angina in last year,CTV3Map_Code_And_Term -XaBL4,H/O: Treatment for ischaemic heart disease,CTV3Map_Code_And_Term -XaBLr,Antianginal therapy,CTV3Map_Code_And_Term -XaBLt,Cardiac failure therapy,CTV3Map_Code_And_Term -XaBtO,Right ventricular thrombus,CTV3_Children -XaBtP,Left ventricular thrombus,CTV3_Children -XaBwi,H/O: Heart failure in last year,CTV3Map_Code_And_Term -XaC2P,Persistent truncus arteriosus,CTV3Map_Code_And_Term -XaC2P,Persistent truncus arteriosus,CTV3Map_Code_Only -XaC2Q,Aortocoronary bypass grafting,CTV3_Children -XaCIn,Division of coronary arteriovenous fistula,CTV3_Children -XaD2b,Postoperative myocardial infarction,CTV3Map_Code_And_Term -XaD2d,Postoperative transmural myocardial infarction anterior wall,CTV3Map_Code_And_Term -XaD2e,Postoperative transmural myocardial infarction inferior wall,CTV3Map_Code_And_Term -XaD2f,Postoperative transmural myocardial infarction other sites,CTV3_Children -XaD2g,Postoperative transmural myocardial infarction unspec site,CTV3Map_Code_And_Term -XaD2h,Postoperative subendocardial myocardial infarction,CTV3Map_Code_And_Term -XaD2i,"Postoperative myocardial infarction, unspecified",CTV3Map_Code_And_Term -XaDki,Men ret congen heart dis blepharophim blepharop hypopl teeth,QOF -XaDyY,Congenital anomaly of aorta,QOF -XaEXt,Post infarct angina,CTV3Map_Code_And_Term -XaEgY,Refractory heart failure,CTV3_Children -XaEgZ,Non-Q wave myocardial infarction,CTV3_Children -XaFsG,Refractory angina,CTV3Map_Code_And_Term -XaFsH,Transient myocardial ischaemia,CTV3Map_Code_And_Term -XaFx7,Diab mellit insulin-glucose infus acute myocardial infarct,CTV3Map_Code_And_Term -XaG1Q,Asymptomatic coronary heart disease,CTV3Map_Code_And_Term -XaI9b,Cardiomyopathy in Duchenne muscular dystrophy,CTV3Map_Code_And_Term -XaI9h,Coronary heart disease annual review,CTV3Map_Code_And_Term -XaIIq,Left ventricular systolic dysfunction,CTV3Map_Code_And_Term -XaINF,Acute coronary syndrome,CTV3Map_Code_And_Term -XaIOW,Coronary heart disease review,CTV3Map_Code_And_Term -XaIQM,Heart failure follow-up,CTV3Map_Code_And_Term -XaIQN,Heart failure annual review,CTV3Map_Code_And_Term -XaIf1,First myocardial infarction,CTV3_Children -XaIfL,Coronary heart disease medication review,CTV3Map_Code_And_Term -XaIpn,Heart failure confirmed,CTV3Map_Code_And_Term -XaItG,Left ventricular diastolic dysfunction,CTV3Map_Code_And_Term -XaIvK,Coronary heart disease monitoring 1st letter,QOF -XaIvL,Coronary heart disease monitoring 2nd letter,QOF -XaIvM,Coronary heart disease monitoring 3rd letter,QOF -XaIvN,Coronary heart disease monitoring verbal invitation,QOF -XaIwM,Acute ST segment elevation myocardial infarction,CTV3Map_Code_And_Term -XaIwY,Acute non-ST segment elevation myocardial infarction,CTV3Map_Code_And_Term -XaJ4J,Exception reporting: CHD quality indicators,QOF -XaJ4L,Excepted from CHD quality indicators: Patient unsuitable,QOF -XaJ4M,Excepted from CHD quality indicators: Informed dissent,QOF -XaJ98,Echocardiogram shows left ventricular systolic dysfunction,CTV3Map_Code_And_Term -XaJ99,Echocardiogram shows left ventricular diastolic dysfunction,CTV3Map_Code_And_Term -XaJ9G,New York Heart Association classification - class I,CTV3Map_Code_And_Term -XaJ9H,New York Heart Association classification - class II,CTV3Map_Code_And_Term -XaJ9I,New York Heart Association classification - class III,CTV3Map_Code_And_Term -XaJ9J,New York Heart Association classification - class IV,CTV3Map_Code_And_Term -XaJIU,Coronary artery bypass graft occlusion,CTV3Map_Code_And_Term -XaJJv,Cardiothoracic transplantation,CTV3Map_Code_And_Term -XaJX0,Acute posterolateral myocardial infarction,CTV3Map_Code_And_Term -XaKNW,Admit heart failure emergency,CTV3Map_Code_And_Term -XaKyd,Myocardial bridge of coronary artery,QOF -XaL1C,Transfer of care from paediatric congenital heart service,CTV3Map_Code_And_Term -XaLN7,Heart failure review completed,CTV3Map_Code_And_Term -XaLNA,Heart failure care plan discussed with patient,CTV3Map_Code_And_Term -XaLSD,Insertion of drug-eluting coronary artery stent,CTV3_Children -XaLeo,Left ventricle aorta tunnel right ventricle pul art val con,CTV3Map_Code_And_Term -XaLep,Atrial switch and arterial switch,CTV3Map_Code_And_Term -XaLev,Percutaneous transluminal chemical mediated septal ablation,High_Level_SNOMED -XaLf7,Repair double outlet right ventricle intraventricular tunnel,CTV3_Children -XaLfL,Repair of univentricular heart,CTV3Map_Code_And_Term -XaLfM,Total cavopulmonary con extrac inf cav vein pulmon art con,CTV3Map_Code_And_Term -XaLfN,Total cavopulmonary connection with lateral atrial tunnel,CTV3Map_Code_And_Term -XaLfO,Radical aortopulmonary reconstr systemic-to-pulmon art shunt,CTV3Map_Code_And_Term -XaLfQ,Biventricular repair of hypoplastic left heart syndrome,CTV3Map_Code_And_Term -XaLfS,Conversion atrial pulmonary anastomosis total pulmon connect,CTV3Map_Code_And_Term -XaLfT,Other specified repair of univentricular heart,CTV3Map_Code_And_Term -XaLfU,Repair of univentricular heart NOS,CTV3Map_Code_And_Term -XaLfW,Relief of right ventricular outflow tract obstruction,CTV3Map_Code_And_Term -XaLfX,Repair of double chambered right ventricle,CTV3Map_Code_And_Term -XaLg5,Repair of rupture of coronary artery,CTV3_Children -XaLg6,Repair of arteriovenous malformation of coronary artery,CTV3Map_Code_And_Term -XaLgU,Perc translumin balloon angioplasty stenting coronary artery,CTV3_Children -XaLgV,Perc translum ball angio insert 1-2 drug elut stents cor art,CTV3_Children -XaLgW,Perc tran ball angio ins 3 or more drug elut stents cor art,CTV3_Children -XaLgX,Perc translum balloon angioplasty insert 1-2 stents cor art,CTV3_Children -XaLgY,Percutaneous cor balloon angiop 3 more stents cor art NEC,CTV3_Children -XaLgZ,OS perc translumina balloon angioplast stenting coronary art,CTV3_Children -XaLga,Perc translum balloon angioplasty stenting coronary art NOS,CTV3_Children -XaLon,Heart failure 6 month review,CTV3Map_Code_And_Term -XaLqp,Congenital heart condition monitoring,CTV3Map_Code_And_Term -XaMFr,Heart failure monitoring telephone invite,QOF -XaMGk,Coronary heart disease monitoring telephone invite,QOF -XaMGo,Heart failure monitoring verbal invite,QOF -XaMGs,Heart failure monitoring first letter,QOF -XaMGt,Heart failure monitoring second letter,QOF -XaMGu,Heart failure monitoring third letter,QOF -XaMJ9,Exception reporting: heart failure quality indicators,QOF -XaMJA,Excepted heart failure quality indicators: Patient unsuitabl,QOF -XaMJB,Excepted heart failure quality indicators: Informed dissent,QOF -XaMK5,Repair of tetralogy of Fallot using transannular patch,CTV3Map_Code_And_Term -XaMK6,Repair of tetralogy of Fallot with absent pulmonary valve,CTV3Map_Code_And_Term -XaMK7,Repair Fallot-type pulmonary atresia aortopulmonary collater,CTV3Map_Code_And_Term -XaMKA,Other repair of transposition of great arteries,CTV3Map_Code_And_Term -XaMKB,Repositioning of transposed great arteries,CTV3Map_Code_And_Term -XaMKC,OS other repair of transposition of great arteries,CTV3_Children -XaMKD,Other repair of transposition of great arteries NOS,CTV3Map_Code_And_Term -XaMKE,Percut translum cutting balloon angioplasty coronary artery,CTV3_Children -XaMqN,Atrial inversion operations for transposition of great art,CTV3Map_Code_And_Term -XaMqN,Atrial inversion operations for transposition of great art,CTV3Map_Code_Only -XaMzU,Review of patient at risk from coronary heart disease,CTV3_Children -XaNxN,Admit ischaemic heart disease emergency,CTV3Map_Code_And_Term -XaO5n,Congestive heart failure due to valvular disease,CTV3Map_Code_And_Term -XaOiT,Congenital dextroposition of heart,QOF -XaPiK,High risk of heart failure screening invitation,CTV3Map_Code_And_Term -XaPr5,Aortopulm reconstruct with systemic to pulmon arterial shunt,CTV3Map_Code_And_Term -XaPx1,Excepted CVD quality indicators: informed dissent,QOF -XaQk7,History of myocardial infarction,CTV3Map_Code_And_Term -XaQk7,History of myocardial infarction,CTV3Map_Code_Only -XaR8o,Heart failure resolved,CTV3Map_Code_And_Term -XaRFL,Exception reporting: myocardial infarction quality indicator,CTV3Map_Code_And_Term -XaRFO,Exc myocard infarction quality indicators: informed dissent,CTV3Map_Code_And_Term -XaRFP,Exc myocar infarction quality indicators: patient unsuitable,CTV3Map_Code_And_Term -XaVvs,Coronary artery bypass graft operation planned,CTV3Map_Code_And_Term -XaWye,Takotsubo cardiomyopathy,High_Level_SNOMED -XaWyi,Heart failure with normal ejection fraction,CTV3Map_Code_And_Term -XaWyi,Heart failure with normal ejection fraction,CTV3Map_Code_Only -XaX1p,Coronary angioplasty planned,CTV3Map_Code_And_Term -XaXIR,Referral to heart failure education group declined,CTV3Map_Code_And_Term -XaXLu,Worsening pulmonary oedema,CTV3Map_Code_And_Term -XaXNg,Tachycardia-induced cardiomyopathy,High_Level_SNOMED -XaXew,Angina self management plan commenced,CTV3Map_Code_And_Term -XaXex,Angina self management plan completed,CTV3Map_Code_And_Term -XaXgq,Referral to heart failure exercise programme declined,CTV3Map_Code_And_Term -XaXgs,Referral to heart failure exercise programme not indicated,CTV3Map_Code_And_Term -XaXkR,Has heart failure management plan,CTV3Map_Code_And_Term -XaXnr,Frequency of angina,CTV3Map_Code_And_Term -XaXzw,Preferred place of care for next exacerbation heart failure,CTV3Map_Code_And_Term -XaYYq,Coronary microvascular disease,CTV3Map_Code_And_Term -XaYYr,Right ventricular diastolic dysfunction,CTV3Map_Code_And_Term -XaYYs,Diastolic dysfunction,CTV3Map_Code_And_Term -XaYae,Angina self-management plan review,CTV3Map_Code_And_Term -XaYb7,Angina self-management plan agreed,CTV3Map_Code_And_Term -XaYbC,Heart failure self-management plan agreed,CTV3Map_Code_And_Term -XaYft,Education about deteriorating heart failure,CTV3Map_Code_And_Term -XaZKd,H/O acute coronary syndrome,CTV3Map_Code_And_Term -XaZSy,Percutaneous coronary intervention,CTV3_Children -XaZcx,Amyloid cardiomyopathy,High_Level_SNOMED -XaZih,Heart failure clinical pathway,CTV3Map_Code_And_Term -XaZlp,Referral to Angina Plan self-management programme,CTV3Map_Code_And_Term -XaZlr,Referral to Angina Plan self-management programme declined,CTV3Map_Code_And_Term -XaaH6,Referral to rapid access heart failure clinic,CTV3Map_Code_And_Term -XaaUg,Emergency percutaneous coronary intervention,CTV3_Children -Xaacj,Left ventricular cardiac dysfunction,CTV3Map_Code_And_Term -Xaapw,Right ventricular systolic dysfunction,CTV3Map_Code_And_Term -XabM9,On optimal heart failure therapy,CTV3Map_Code_And_Term -XabvP,Heart failure rehabilitation programme not available,CTV3Map_Code_And_Term -XaeVd,Non-obstructive coronary atherosclerosis,CTV3_Children -XafeB,Heart failure with reduced ejection fraction,CTV3_Children -XagLe,Coronary heart disease monitoring invitation email,QOF -Xagdx,Andersen Tawil syndrome,QOF -Y1781,Patient unsuitable for PTCA,CTV3_Children -Y1eef,Mixed myocardial ischaemia and infarction,CTV3_Children -Y1f1c,Coronary heart disease monitoring invitation,QOF -Y1f20,Heart failure monitoring invitation,QOF -Y1f93,Quality and Outcomes Framework secondary prevention of coronary heart disease quality indicator-related care invitation (procedure),QOF -Y1f9c,Quality and Outcomes Framework heart failure quality indicator-related care invitation (procedure),QOF -Y1f9d,Excepted from heart failure quality indicators - service unavailable (finding),QOF -Y3657,H/O: Ischaemic heart disease,CTV3_Children -Y9998,Common arterial trunk,CTV3_Children -ZV421,[V]Heart transplanted,CTV3Map_Code_And_Term -ZV457,[V]Presence of aortocoronary bypass graft,CTV3Map_Code_And_Term \ No newline at end of file diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-chronic-kidney-disease-snomed.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-chronic-kidney-disease-snomed.csv deleted file mode 100644 index c573c75f8..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-chronic-kidney-disease-snomed.csv +++ /dev/null @@ -1,407 +0,0 @@ -id,name,active,notes -238318009,Continuous ambulatory peritoneal dialysis (procedure),y,direct mapping -864311000000105,Thrombosis of vein of transplanted kidney (disorder),y,direct mapping -865861000000101,Stenosis of dialysis arteriovenous shunt (disorder),y,direct mapping -236538004,Acute disorder of hemodialysis (disorder),y,direct mapping -276983001,Percutaneous embolectomy of arteriovenous fistula (procedure),y,direct mapping -71192002,Peritoneal dialysis (procedure),y,direct mapping -866991000000105,Haemorrhage of dialysis arteriovenous graft (disorder),y,direct mapping -236566007,Extrusion of peritoneal dialysis catheter cuff (disorder),y,direct mapping -866951000000102,Infection of dialysis arteriovenous shunt (disorder),y,direct mapping -278691000,Procedure related to surgical arteriovenous connection (procedure),y,direct mapping -236565006,Poor drainage of peritoneal dialysis catheter (disorder),y,direct mapping -233580005,Continuous venovenous hemodialysis (procedure),y,direct mapping -236571000,Hyperacute rejection of renal transplant (disorder),y,direct mapping -175901007,Live donor renal transplant (procedure),y,direct mapping -236589004,Transplant glomerulopathy - late form (disorder),y,direct mapping -236567003,Misplacement of acute peritoneal dialysis catheter (disorder),y,direct mapping -233578004,Continuous hemodialysis (procedure),y,direct mapping -844661000000109,Vascular complication of renal transplant (disorder),y,direct mapping -216933008,Failure of sterile precautions during kidney dialysis (event),y,direct mapping -236564005,Omental wrapping around peritoneal dialysis catheter (disorder),y,direct mapping -847791000000101,Rupture of artery of transplanted kidney (disorder),y,direct mapping -238316008,Aspiration of chronic ambulatory peritoneal dialysis catheter (procedure),y,direct mapping -233576000,Intermittent hemodialysis with sequential ultrafiltration (procedure),y,direct mapping -276883000,Peritoneal dialysis-associated peritonitis (disorder),y,direct mapping -19765000,Complication of dialysis (disorder),y,direct mapping -233577009,Intermittent hemodialysis with continuous ultrafiltration (procedure),y,direct mapping -233583007,Continuous hemofiltration (procedure),y,direct mapping -87235005,Dialysis disequilibrium syndrome (disorder),y,direct mapping -236579003,Chronic rejection of renal transplant - grade 1 (disorder),y,direct mapping -233469007,Creation brachiocephalic fistula (procedure),y,direct mapping -236551009,Underdialysis (disorder),y,direct mapping -236558003,Peritoneal dialysis catheter tunnel infection (disorder),y,direct mapping -236562009,Obstruction of peritoneal dialysis catheter (disorder),y,direct mapping -236570004,Renal transplant rejection (disorder),y,direct mapping -288182009,Extracorporeal kidney (procedure),y,direct mapping -846761000000109,Aneurysm of needle site of dialysis arteriovenous fistula (disorder),y,direct mapping -180273006,Removal of chronic ambulatory peritoneal dialysis catheter (procedure),y,direct mapping -233495009,Exploration of arteriovenous fistula (procedure),y,direct mapping -233482004,Procedure on intraluminal device of arteriovenous fistula (procedure),y,direct mapping -233592005,Plasma filtration (procedure),y,direct mapping -236138007,Xenograft renal transplant (procedure),y,direct mapping -233581009,Hemofiltration (procedure),y,direct mapping -236576005,Acute rejection of renal transplant - grade II (disorder),y,direct mapping -238315007,Adjustment of chronic ambulatory peritoneal dialysis catheter (procedure),y,direct mapping -865781000000101,Infection of dialysis vascular access (disorder),y,direct mapping -216932003,Failure of sterile precautions during perfusion (event),y,direct mapping -233491000,Banding of arteriovenous fistula (procedure),y,direct mapping -843691000000100,Urological complication of renal transplant (disorder),y,direct mapping -427053002,Extracorporeal albumin hemodialysis (procedure),y,direct mapping -233585000,Continuous venovenous hemofiltration (procedure),y,direct mapping -236584009,Perfusion injury of renal transplant (disorder),y,direct mapping -872481000000106,Stenosis of venous side of dialysis arteriovenous shunt (disorder),y,direct mapping -233483009,Insertion of intraluminal device into arteriovenous fistula (procedure),y,direct mapping -216878005,"Accidental cut, puncture, perforation or hemorrhage during kidney dialysis (disorder)",y,direct mapping -182753006,Intestinal dialysis (procedure),y,direct mapping -70536003,Transplant of kidney (procedure),y,direct mapping -302497006,Hemodialysis (procedure),y,direct mapping -180277007,Insertion of temporary peritoneal dialysis catheter (procedure),y,direct mapping -233476002,Angioplasty of arteriovenous fistula (procedure),y,direct mapping -866041000000104,Occlusion of dialysis arteriovenous graft (disorder),y,direct mapping -236578006,Chronic rejection of renal transplant (disorder),y,direct mapping -233496005,Exploration of arteriovenous graft (procedure),y,direct mapping -175873005,Declotting of thigh vein loop (procedure),y,direct mapping -865981000000103,Thrombosis of dialysis arteriovenous graft (disorder),y,direct mapping -866061000000103,Occlusion of dialysis arteriovenous fistula (disorder),y,direct mapping -233587008,Intermittent hemodiafiltration (procedure),y,direct mapping -233484003,Insertion of stent into arteriovenous fistula (procedure),y,direct mapping -182750009,Ultrafiltration (procedure),y,direct mapping -236546003,Aluminum intoxication (disorder),y,direct mapping -236552002,Adynamic bone disease (disorder),y,direct mapping -161665007,History of renal transplant (situation),y,direct mapping -236588007,Transplant glomerulopathy - early form (disorder),y,direct mapping -238314006,Renewal of chronic ambulatory peritoneal dialysis catheter (procedure),y,direct mapping -236549005,Aluminum-related fracturing osteodystrophy (disorder),y,direct mapping -105502003,Dependence on renal dialysis (finding),y,direct mapping -236556004,Bloodstained peritoneal dialysis effluent (disorder),y,direct mapping -238321006,Intermittent peritoneal dialysis (procedure),y,direct mapping -846731000000104,Aneurysm of dialysis arteriovenous fistula (disorder),y,direct mapping -238322004,Tidal peritoneal dialysis (procedure),y,direct mapping -438546008,Ligation of arteriovenous dialysis fistula (procedure),y,direct mapping -225230008,Chronic peritoneal dialysis (procedure),y,direct mapping -180272001,Insertion of chronic ambulatory peritoneal dialysis catheter (procedure),y,direct mapping -265763003,Compensation for renal failure (procedure),y,direct mapping -27929005,Arteriovenous fistulization (procedure),y,direct mapping -233575001,Intermittent hemodialysis (procedure),y,direct mapping -32599008,Hemodialysis-associated amyloidosis (disorder),y,direct mapping -175779004,Attention to arteriovenous shunt (procedure),y,direct mapping -233579007,Continuous arteriovenous hemodialysis (procedure),y,direct mapping -846671000000106,Aneurysm of superficialised artery of dialysis arteriovenous fistula (disorder),y,direct mapping -238319001,Continuous cycling peritoneal dialysis (procedure),y,direct mapping -269698004,Mechanical failure of instrument or apparatus during kidney dialysis (event),y,direct mapping -225231007,Stab peritoneal dialysis (procedure),y,direct mapping -236436003,End stage renal failure with renal transplant (disorder),y,direct mapping -867011000000102,Haemorrhage of dialysis arteriovenous fistula (disorder),y,direct mapping -865761000000105,Occlusion of dialysis vascular access (disorder),y,direct mapping -175777002,Insertion of arteriovenous prosthesis (procedure),y,direct mapping -236548002,Aluminum-related osteomalacia (disorder),y,direct mapping -711411006,Allotransplantation of kidney from beating heart cadaver (procedure),y,direct mapping -236563004,Migration of peritoneal dialysis catheter (disorder),y,direct mapping -108241001,Dialysis procedure (procedure),y,direct mapping -233480007,Embolectomy of arteriovenous fistula (procedure),y,direct mapping -236583003,Failed renal transplant (disorder),y,direct mapping -847881000000107,Stenosis of vein of transplanted kidney (disorder),y,direct mapping -430332005,Infection of arteriovenous graft for hemodialysis (disorder),y,direct mapping -852981000000100,Aneurysm of vein of transplanted kidney (disorder),y,direct mapping -233477006,Thrombolysis of arteriovenous fistula (procedure),y,direct mapping -864271000000105,Thrombosis of artery of transplanted kidney (disorder),y,direct mapping -846461000000102,Ruptured aneurysm of dialysis vascular access (disorder),y,direct mapping -233481006,Embolectomy of arteriovenous graft (procedure),y,direct mapping -866001000000102,Thrombosis of dialysis arteriovenous fistula (disorder),y,direct mapping -236577001,Acute rejection of renal transplant - grade III (disorder),y,direct mapping -277011002,Pre-existing disease in renal transplant (disorder),y,direct mapping -847811000000100,Rupture of vein of transplanted kidney (disorder),y,direct mapping -175780001,Removal of infected arteriovenous shunt (procedure),y,direct mapping -233582002,Intermittent hemofiltration (procedure),y,direct mapping -282348002,Acquired renal arteriovenous fistula (disorder),y,direct mapping -438548009,Ligation of arteriovenous dialysis graft (procedure),y,direct mapping -867051000000103,Rupture of dialysis arteriovenous graft (disorder),y,direct mapping -711413009,Allotransplantation of kidney from non-beating heart cadaver (procedure),y,direct mapping -236539007,First use syndrome of dialysis (disorder),y,direct mapping -236580000,Chronic rejection of renal transplant - grade II (disorder),y,direct mapping -82801007,Removal of arteriovenous shunt device (procedure),y,direct mapping -271418008,Chronic ambulatory peritoneal dialysis catheter procedure (procedure),y,direct mapping -88351001,Hypercalcemia associated with chronic dialysis (disorder),y,direct mapping -251859005,Dialysis finding (finding),y,direct mapping -175788008,Ligation of acquired arteriovenous fistula (procedure),y,direct mapping -236543006,Beta-2 microglobulin arthropathy (disorder),y,direct mapping -233468004,Creation of Cimino fistula (procedure),y,direct mapping -236575009,Acute rejection of renal transplant - grade I (disorder),y,direct mapping -236555000,Pain during outflow of dialysate (disorder),y,direct mapping -427992007,Removal of thrombus of arteriovenous fistula (procedure),y,direct mapping -233485002,Removal of intraluminal device from arteriovenous fistula (procedure),y,direct mapping -865841000000102,Stenosis of dialysis arteriovenous graft (disorder),y,direct mapping -236435004,End stage renal failure on dialysis (disorder),y,direct mapping -233478001,Thrombolysis of arteriovenous graft (procedure),y,direct mapping -872461000000102,Stenosis of arterial side of dialysis arteriovenous shunt (disorder),y,direct mapping -238323009,Night-time intermittent peritoneal dialysis (procedure),y,direct mapping -276998004,Percutaneous thrombolysis of arteriovenous fistula (procedure),y,direct mapping -236557008,Peritoneal dialysis catheter exit site infection (disorder),y,direct mapping -236573002,Very mild acute rejection of renal transplant (disorder),y,direct mapping -265538001,Repair of acquired arteriovenous fistula (procedure),y,direct mapping -865801000000100,Haemorrhage of dialysis vascular access (disorder),y,direct mapping -236540009,Anaphylactoid reaction to dialysis (disorder),y,direct mapping -854131000000107,Thrombus in peritoneal dialysis catheter (disorder),y,direct mapping -854161000000102,Anaphylactoid reaction due to haemodialysis (disorder),y,direct mapping -236569000,Primary non-function of renal transplant (disorder),y,direct mapping -33461007,Complication of peritoneal dialysis (disorder),y,direct mapping -238317004,Flushing of chronic ambulatory peritoneal dialysis catheter (procedure),y,direct mapping -233590002,Continuous venovenous hemodiafiltration (procedure),y,direct mapping -276897008,Percutaneous balloon angioplasty of arteriovenous fistula (procedure),y,direct mapping -846801000000104,Aneurysm of anastomotic site of dialysis arteriovenous fistula (disorder),y,direct mapping -233487005,Adjustment of intraluminal device of arteriovenous fistula (procedure),y,direct mapping -236544000,Matrix stone formation of dialysis (disorder),y,direct mapping -236574008,Acute rejection of renal transplant (disorder),y,direct mapping -236559006,Loss of ultrafiltration (disorder),y,direct mapping -236547007,Aluminum bone disease (disorder),y,direct mapping -236561002,Disorder of peritoneal dialysis catheter (disorder),y,direct mapping -233589006,Continuous arteriovenous hemodiafiltration (procedure),y,direct mapping -175902000,Cadaveric renal transplant (procedure),y,direct mapping -233584001,Continuous arteriovenous hemofiltration (procedure),y,direct mapping -853651000000105,Thrombosis of dialysis vascular access (disorder),y,direct mapping -236581001,Chronic rejection of renal transplant - grade III (disorder),y,direct mapping -426340003,Creation of graft fistula for dialysis (procedure),y,direct mapping -313030004,Donor renal transplantation (procedure),y,direct mapping -233486001,Removal of stent from arteriovenous fistula (procedure),y,direct mapping -853631000000103,Stenosis of dialysis vascular access (disorder),y,direct mapping -236614007,Perirenal and periureteric post-transplant lymphocele (disorder),y,direct mapping -449288005,Infection of arteriovenous fistula for hemodialysis (disorder),y,direct mapping -236542001,Long-term disorder of dialysis (disorder),y,direct mapping -236554001,Pain during inflow of dialysate (disorder),y,direct mapping -233588003,Continuous hemodiafiltration (procedure),y,direct mapping -853021000000108,Aneurysm of artery of transplanted kidney (disorder),y,direct mapping -236582008,Acute-on-chronic rejection of renal transplant (disorder),y,direct mapping -236587002,Transplant glomerulopathy (disorder),y,direct mapping -236434000,End stage renal failure untreated by renal replacement therapy (disorder),y,direct mapping -866021000000106,Thrombosis of dialysis arteriovenous shunt (disorder),y,direct mapping -866081000000107,Occlusion of dialysis arteriovenous shunt (disorder),y,direct mapping -265764009,Renal dialysis (procedure),y,direct mapping -236550005,Polyserositis syndrome of dialysis (disorder),y,direct mapping -236560001,Loss of solute clearance (disorder),y,direct mapping -236572007,Accelerated rejection of renal transplant (disorder),y,direct mapping -277010001,Unexplained episode of renal transplant dysfunction (disorder),y,direct mapping -129214009,Acquired arteriovenous fistula (morphologic abnormality),y,direct mapping -233586004,Hemodiafiltration (procedure),y,direct mapping -429451003,Disorder related to renal transplantation (disorder),y,direct mapping -46177005,End-stage renal disease (disorder),y,direct mapping -699235009,Continuous ambulatory peritoneal dialysis associated peritonitis (disorder),y,direct mapping -233488000,Adjustment of arteriovenous fistula stent (procedure),y,direct mapping -867031000000105,Haemorrhage of dialysis arteriovenous shunt (disorder),y,direct mapping -428648006,Automated peritoneal dialysis (procedure),y,direct mapping -236541008,Hyperchloremic acidosis associated with dialysis (disorder),y,direct mapping -715743002,Emergency hemofiltration (procedure),y,descendant of concept mapped from leaf -708931003,Maintenance hemodialysis (procedure),y,descendant of concept mapped from leaf -381000124105,Increase dialyzer size for hemodialysis (procedure),y,descendant of concept mapped from leaf -765479007,Allotransplantation of right kidney (procedure),y,descendant of concept mapped from leaf -73257006,Peritoneal dialysis catheter maintenance (procedure),y,descendant of concept mapped from leaf -233595007,Intravenous gas exchange (procedure),y,descendant of concept mapped from leaf -473397008,Dialysis catheter in situ usable (finding),y,descendant of concept mapped from leaf -405331002,Creation of upper limb arteriovenous fistula (procedure),y,descendant of concept mapped from leaf -57274006,Initial hemodialysis (procedure),y,descendant of concept mapped from leaf -68341005,"Hemodialysis, supervision at home (procedure)",y,descendant of concept mapped from leaf -233574002,Extracorporeal carbon dioxide removal (procedure),y,descendant of concept mapped from leaf -708933000,Emergency hemodiafiltration (procedure),y,descendant of concept mapped from leaf -443143006,Dependence on hemodialysis (finding),y,descendant of concept mapped from leaf -300478000,Finding of measures of dialysis (finding),y,descendant of concept mapped from leaf -699070001,Repair of acquired femoral arteriovenous fistula (procedure),y,descendant of concept mapped from leaf -431873008,Peritonitis due to infected peritoneal dialysis catheter (disorder),y,descendant of concept mapped from leaf -331000124109,Hemodialysis finding (finding),y,descendant of concept mapped from leaf -405419000,Creation of lower limb arteriovenous fistula (procedure),y,descendant of concept mapped from leaf -698074000,Sustained low-efficiency dialysis (procedure),y,descendant of concept mapped from leaf -14130001000004103,Aquapheresis (procedure),y,descendant of concept mapped from leaf -719501003,Ultrafiltration failure (disorder),y,descendant of concept mapped from leaf -676002,Peritoneal dialysis including cannulation (procedure),y,descendant of concept mapped from leaf -11000771000119104,Dependence on continuous cycling peritoneal dialysis (finding),y,descendant of concept mapped from leaf -14684005,Peritoneal dialysis excluding cannulation (procedure),y,descendant of concept mapped from leaf -11932001,Stabilizing hemodialysis (procedure),y,descendant of concept mapped from leaf -704667004,Hypertension concurrent and due to end stage renal disease on dialysis (disorder),y,descendant of concept mapped from leaf -765478004,Allotransplantation of left kidney (procedure),y,descendant of concept mapped from leaf -621000124102,Non-compliance with analysis of peritoneal dialysate (finding),y,descendant of concept mapped from leaf -90791000119104,End stage renal disease on dialysis due to type 2 diabetes mellitus (disorder),y,descendant of concept mapped from leaf -704308002,Difficulty managing peritoneal dialysis (finding),y,descendant of concept mapped from leaf -708930002,Maintenance hemodiafiltration (procedure),y,descendant of concept mapped from leaf -90771000119100,End stage renal disease on dialysis due to type 1 diabetes mellitus (disorder),y,descendant of concept mapped from leaf -233573008,Extracorporeal membrane oxygenation (procedure),y,descendant of concept mapped from leaf -429075005,Dependence on dialysis due to end stage renal disease (finding),y,descendant of concept mapped from leaf -127991000119101,Hypertension concurrent and due to end stage renal disease on dialysis due to type 2 diabetes mellitus (disorder),y,descendant of concept mapped from leaf -461000124106,Increase in hemodialysis dialyzer size (finding),y,descendant of concept mapped from leaf -844011000000103,Arteriovenous extracorporeal carbon dioxide removal (procedure),y,descendant of concept mapped from leaf -251869004,Adequacy of hemodialysis (finding),y,descendant of concept mapped from leaf -442326005,Cloudy peritoneal dialysis effluent (finding),y,descendant of concept mapped from leaf -440597004,Obstruction of peritoneal dialysis catheter by fibrin formation (disorder),y,descendant of concept mapped from leaf -431000124102,Hemodialysis access site non-patent (finding),y,descendant of concept mapped from leaf -341000124104,Peritoneal dialysis finding (finding),y,descendant of concept mapped from leaf -444887005,Inadequate flow to support prescribed dialysis blood flow (finding),y,descendant of concept mapped from leaf -702635003,Inadequate hemodialysis (disorder),y,descendant of concept mapped from leaf -78922001,Repair of acquired or traumatic arteriovenous fistula of extremity (procedure),y,descendant of concept mapped from leaf -34897002,"Hemodialysis, maintenance in hospital (procedure)",y,descendant of concept mapped from leaf -232999000,Insertion of valve into vena cava (procedure),y,descendant of concept mapped from leaf -3257008,Empty and measure peritoneal dialysis fluid (procedure),y,descendant of concept mapped from leaf -451000124109,Increase in hemodialysis blood flow (finding),y,descendant of concept mapped from leaf -571000124100,Requires additional education about peritoneal dialysis (finding),y,descendant of concept mapped from leaf -581000124102,Complies with collection of peritoneal dialysate specimen (finding),y,descendant of concept mapped from leaf -233572003,Extracorporeal gas exchange (procedure),y,descendant of concept mapped from leaf -251285001,Extracorporeal gas exchange finding (finding),y,descendant of concept mapped from leaf -473193004,Mode of dialysis access by patient choice (finding),y,descendant of concept mapped from leaf -428937001,Dependence on peritoneal dialysis due to end stage renal disease (finding),y,descendant of concept mapped from leaf -471000124104,Increase in hemodialysis session time (finding),y,descendant of concept mapped from leaf -611000124105,Non-compliance with collection of peritoneal dialysate specimen (finding),y,descendant of concept mapped from leaf -601000124107,Inadequate monitoring of dose delivery of peritoneal dialysis (finding),y,descendant of concept mapped from leaf -443596009,Dependence on peritoneal dialysis (finding),y,descendant of concept mapped from leaf -175899003,Autotransplantation of kidney (procedure),y,descendant of concept mapped from leaf -213150003,Kidney transplant failure and rejection (disorder),y,descendant of concept mapped from leaf -591000124104,Complies with analysis of peritoneal dialysate (finding),y,descendant of concept mapped from leaf -341939001,Extracorporeal hemofiltration (procedure),y,descendant of concept mapped from leaf -708934006,Maintenance hemofiltration (procedure),y,descendant of concept mapped from leaf -182749009,Extracorporeal blood irradiation (procedure),y,descendant of concept mapped from leaf -365399009,Finding of adequacy of dialysis (finding),y,descendant of concept mapped from leaf -473398003,Dialysis catheter in situ unusable (finding),y,descendant of concept mapped from leaf -125141000119102,Non-compliance with renal dialysis (finding),y,descendant of concept mapped from leaf -286371000119107,Malignant hypertensive end stage renal disease on dialysis (disorder),y,descendant of concept mapped from leaf -708932005,Emergency hemodialysis (procedure),y,descendant of concept mapped from leaf -11000731000119102,Dependence on continuous ambulatory peritoneal dialysis (finding),y,descendant of concept mapped from leaf -128001000119105,Hypertension concurrent and due to end stage renal disease on dialysis due to type 1 diabetes mellitus (disorder),y,descendant of concept mapped from leaf -428982002,Dependence on hemodialysis due to end stage renal disease (finding),y,descendant of concept mapped from leaf -406168002,Dialysis access maintenance (regime/therapy),y,descendant of concept mapped from leaf -67970008,"Hemodialysis, maintenance at home (procedure)",y,descendant of concept mapped from leaf -702634004,Inadequate peritoneal dialysis (disorder),y,descendant of concept mapped from leaf -441000124107,Hemodialysis access site patent (finding),y,descendant of concept mapped from leaf -714749008,Continuous renal replacement therapy (procedure),y,descendant of concept mapped from leaf -855161000000103,Beta-2 microglobulin amyloidosis,n,via Query Table -866011000000100,Thrombosis of dialysis arteriovenous fistula ,n,via Query Table -266901000000105,Haemofiltration ,n,via Query Table -844671000000102,Vascular complication of renal transplant ,n,via Query Table -366961000000102,Renal transplant recipient (finding),n,via Query Table -856221000000106,Aneurysm of needle site of dialysis arteriovenous fistula,n,via Query Table -260981000000102,Banding of arteriovenous fistula ,n,via Query Table -244811000000102,Allotransplantation of kidney from cadaver NEC (procedure),n,via Query Table -523481000000103,Dialysis catheter in situ unusable (finding),n,via Query Table -857581000000107,Bloodstained peritoneal dialysis effluent,n,via Query Table -316054003,[V]Kidney transplanted (situation),n,via Query Table -866741000000102,Infection of dialysis arteriovenous graft (disorder),n,via Query Table -856931000000103,Unexplained episode of renal transplant dysfunction,n,via Query Table -1050711000000105,Dependence on renal dialysis,n,via Query Table -834931000000108,Accelerated rejection of renal transplant,n,via Query Table -467521000000106,[X]Other dialysis (context-dependent category),n,via Query Table -219601000000106,End stage renal disease,n,via Query Table -622431000000104,Other specified transplantation of kidney (procedure),n,via Query Table -236568008,Renal transplant disorder (disorder),n,via Query Table -523471000000100,Dialysis catheter in situ usable (finding),n,via Query Table -327751000000105,Fluoroscopy guided percutaneous thrombolysis of dialysis fistula (procedure),n,via Query Table -225371000000104,Creation of graft fistula for dialysis (procedure),n,via Query Table -856201000000102,Aneurysm of superficialised artery of dialysis arteriovenous fistula,n,via Query Table -847891000000109,Stenosis of vein of transplanted kidney ,n,via Query Table -640091000000107,Other specified compensation for renal failure (procedure),n,via Query Table -404471000000102,[X]Failure of sterile precautions during kidney dialysis or other perfusion (finding),n,via Query Table -856191000000104,Ruptured aneurysm of dialysis vascular access,n,via Query Table -364571000000105,Leakage of peritoneal dialysate into subcutaneous tissue of abdominal wall (disorder),n,via Query Table -866051000000101,Occlusion of dialysis arteriovenous graft ,n,via Query Table -866961000000104,Infection of dialysis arteriovenous shunt ,n,via Query Table -853661000000108,Thrombosis of dialysis vascular access ,n,via Query Table -876311000000107,Percutaneous balloon angioplasty of arteriovenous fistula,n,via Query Table -855901000000104,Thrombus in peritoneal dialysis catheter,n,via Query Table -780091000000107,Flushing of chronic ambulatory peritoneal dialysis catheter,n,via Query Table -865851000000104,Stenosis of dialysis arteriovenous graft ,n,via Query Table -843701000000100,Urological complication of renal transplant ,n,via Query Table -398481000000100,[V]Preparatory care for dialysis (situation),n,via Query Table -640081000000105,Hemodialysis NEC (procedure),n,via Query Table -853641000000107,Stenosis of dialysis vascular access ,n,via Query Table -866761000000101,Infection of dialysis arteriovenous fistula (disorder),n,via Query Table -342071000000104,Ligation of arteriovenous dialysis fistula (procedure),n,via Query Table -640141000000101,Placement of other apparatus for compensation for renal failure (procedure),n,via Query Table -864281000000107,Thrombosis of artery of transplanted kidney ,n,via Query Table -233181000000101,Peritoneal dialysis NEC (procedure),n,via Query Table -864321000000104,Thrombosis of vein of transplanted kidney ,n,via Query Table -266921000000101,Continuous ambulatory peritoneal dialysis ,n,via Query Table -856691000000107,Chronic rejection of renal transplant - grade 1,n,via Query Table -855271000000103,Very mild acute rejection of renal transplant,n,via Query Table -231691000000106,"Allotransplantation of kidney from cadaver, heart non-beating (procedure)",n,via Query Table -231631000000105,Automated peritoneal dialysis (procedure),n,via Query Table -399241000000100,[V]Kidney transplanted (context-dependent category),n,via Query Table -855091000000105,Aluminium-related fracturing osteodystrophy,n,via Query Table -637691000000101,Placement of other apparatus for compensation for renal failure NOS (procedure),n,via Query Table -261001000000101,Creation of graft fistula for dialysis ,n,via Query Table -830901000000105,Acute rejection of renal transplant - grade III,n,via Query Table -872491000000108,Stenosis of venous side of dialysis arteriovenous shunt ,n,via Query Table -364591000000109,Leakage of peritoneal dialysate into pleural cavity (disorder),n,via Query Table -523461000000107,Patient choice of dialysis access (finding),n,via Query Table -288004005,Kidney replacement (disorder),n,via Query Table -867061000000100,Rupture of dialysis arteriovenous graft ,n,via Query Table -231721000000102,"Allotransplantation of kidney from cadaver, heart-beating (procedure)",n,via Query Table -866031000000108,Thrombosis of dialysis arteriovenous shunt ,n,via Query Table -830871000000105,Acute-on-chronic rejection of renal transplant,n,via Query Table -260991000000100,Thrombectomy of arteriovenous fistula ,n,via Query Table -643501000000102,Failure of sterile precautions during other perfusion (event),n,via Query Table -225441000000104,Thrombectomy of arteriovenous fistula (procedure),n,via Query Table -643511000000100,Failure of sterile precautions during perfusion NOS (event),n,via Query Table -865871000000108,Stenosis of dialysis arteriovenous fistula ,n,via Query Table -853031000000105,Aneurysm of artery of transplanted kidney ,n,via Query Table -855951000000103,Beta-2 microglobulin arthropathy,n,via Query Table -856211000000100,Aneurysm of dialysis arteriovenous fistula,n,via Query Table -637681000000103,Other specified placement of other apparatus for compensation for renal failure (procedure),n,via Query Table -180268000,Hemodialysis NEC (procedure),n,via Query Table -834961000000103,Hard water syndrome,n,via Query Table -426361000000104,[V]Unspecified aftercare involving intermittent dialysis (situation),n,via Query Table -426351000000102,[V]Other specified aftercare involving intermittent dialysis (situation),n,via Query Table -410511000000103,[V]Aftercare involving extracorporeal dialysis (situation),n,via Query Table -855481000000100,Aluminium intoxication,n,via Query Table -857241000000102,Xenograft renal transplant,n,via Query Table -856161000000105,Anaphylactoid reaction due to haemodialysis,n,via Query Table -291421000000102,Extracorporeal albumin haemodialysis,n,via Query Table -856681000000105,Chronic rejection of renal transplant,n,via Query Table -856701000000107,Chronic rejection of renal transplant - grade II,n,via Query Table -866751000000104,Infection of dialysis arteriovenous graft ,n,via Query Table -698810000,Hypertensive renal disease with end stage renal failure (disorder),n,via Query Table -371181000000109,Ligation of arteriovenous dialysis fistula ,n,via Query Table -236537009,Disorder associated with dialysis (disorder),n,via Query Table -856231000000108,Aneurysm of anastomotic site of dialysis arteriovenous fistula,n,via Query Table -847821000000106,Rupture of vein of transplanted kidney ,n,via Query Table -622441000000108,Transplantation of kidney NOS (procedure),n,via Query Table -938461000000107,Dialysis disequilibrium,n,via Query Table -866771000000108,Infection of dialysis arteriovenous fistula ,n,via Query Table -261991000000109,"Allotransplantation of kidney from cadaver, heart non-beating ",n,via Query Table -429211000000100,[X] Peritoneal dialysis associated peritonitis (disorder),n,via Query Table -261981000000107,"Allotransplantation of kidney from cadaver, heart-beating ",n,via Query Table -284451000000108,Extracorporeal albumin haemodialysis (procedure),n,via Query Table -856711000000109,Chronic rejection of renal transplant - grade III,n,via Query Table -855231000000100,Aneurysm of vein of transplanted kidney,n,via Query Table -637641000000106,Compensation for renal failure NOS (procedure),n,via Query Table -865791000000104,Infection of dialysis vascular access ,n,via Query Table -438503005,Surgically constructed arteriovenous fistula (morphologic abnormality),n,via Query Table -48994000,Renal homotransplantation with unilateral recipient nephrectomy (situation),n,via Query Table -309819001,[X] Peritoneal dialysis associated peritonitis (disorder),n,via Query Table -938451000000109,Disorder associated with dialysis,n,via Query Table -640131000000105,Placement of ambulatory apparatus for compensation for renal failure NOS (procedure),n,via Query Table -830931000000104,Acute rejection of renal transplant,n,via Query Table -266931000000104,Peritoneal dialysis NEC ,n,via Query Table -830881000000107,Acute rejection of renal transplant - grade I,n,via Query Table -872471000000109,Stenosis of arterial side of dialysis arteriovenous shunt ,n,via Query Table -857311000000108,Renal transplant rejection,n,via Query Table -865811000000103,Haemorrhage of dialysis vascular access ,n,via Query Table -236553007,Disorders associated with peritoneal dialysis (disorder),n,via Query Table -847801000000102,Rupture of artery of transplanted kidney ,n,via Query Table -866071000000105,Occlusion of dialysis arteriovenous fistula ,n,via Query Table -266911000000107,Automated peritoneal dialysis ,n,via Query Table -855521000000100,Aluminium-related osteomalacia,n,via Query Table -867001000000104,Haemorrhage of dialysis arteriovenous graft ,n,via Query Table -364701000000105,Malposition of peritoneal dialysis catheter (disorder),n,via Query Table -866091000000109,Occlusion of dialysis arteriovenous shunt ,n,via Query Table -867041000000101,Haemorrhage of dialysis arteriovenous shunt ,n,via Query Table -371191000000106,Ligation of arteriovenous dialysis graft ,n,via Query Table -857631000000109,Adynamic bone disease,n,via Query Table -267261000000102,Extracorporeal membrane oxygenation ,n,via Query Table -525981000000106,Continuous ambulatory peritoneal dialysis associated peritonitis (disorder),n,via Query Table -855861000000106,First use syndrome of dialysis,n,via Query Table -342221000000108,Ligation of arteriovenous dialysis graft (procedure),n,via Query Table -830891000000109,Acute rejection of renal transplant - grade II,n,via Query Table -223178003,[X]Failure of sterile precautions during kidney dialysis or other perfusion (disorder),n,via Query Table -398471000000102,[V]Aftercare involving intermittent dialysis (situation),n,via Query Table -637661000000107,Other specified placement of ambulatory apparatus for compensation for renal failure (procedure),n,via Query Table -857571000000105,Disorders associated with peritoneal dialysis,n,via Query Table -867021000000108,Haemorrhage of dialysis arteriovenous fistula ,n,via Query Table -523491000000101,Inadequate dialysis blood flow (finding),n,via Query Table -706901000000104,Continuous ambulatory peritoneal dialysis associated peritonitis,n,via Query Table -310435001,Perfusion and dialysis finding (finding),n,via Query Table -865991000000101,Thrombosis of dialysis arteriovenous fistula ,n,via Query Table -865771000000103,Occlusion of dialysis vascular access ,n,via Query Table diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-chronic-liver-disease.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-chronic-liver-disease.csv deleted file mode 100644 index 24e8b9a07..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-chronic-liver-disease.csv +++ /dev/null @@ -1,182 +0,0 @@ -CTV3ID,CTV3PreferredTermDesc,CTV3Source -7609.,Open operations on oesophageal varices,CTV3Map_Code_And_Term -76093,Local ligation of oesophageal varices,CTV3Map_Code_And_Term -76094,Open injection sclerotherapy to oesophageal varices,CTV3Map_Code_And_Term -7609y,Oesophageal varices operation: [OS open] or [Tanner],CTV3_Children -7609z,Open operation on oesophageal varices NOS,CTV3Map_Code_And_Term -760C3,Fibreoptic oesophagoscopy & injection sclerotherapy varices,CTV3Map_Code_And_Term -760C5,Fibreoptic oesophagoscopy and banding of oesophageal varices,CTV3Map_Code_And_Term -760F3,Rigid oesophagoscopy and injection sclerotherapy of varices,CTV3Map_Code_And_Term -760F4,Rigid oesophagoscopy and banding of oesophageal varices,CTV3Map_Code_And_Term -760J4,Balloon tamponade of oesophagus,CTV3Map_Code_And_Term -7800.,Liver transplant,CTV3Map_Code_And_Term -78000,Orthotopic liver transplant,CTV3Map_Code_And_Term -78001,Heterotopic liver transplant,CTV3Map_Code_And_Term -78001,Heterotopic liver transplant,CTV3Map_Code_Only -78002,Replacement of previous liver transplant,CTV3Map_Code_And_Term -7800y,Other specified transplantation of liver,CTV3Map_Code_And_Term -7800z,Transplantation of liver NOS,CTV3Map_Code_And_Term -78052,Exploration liver (& transplanted),CTV3_Children -A704.,Other specified viral hepatitis with coma,CTV3Map_Code_And_Term -A7040,Viral hepatitis C with coma,CTV3Map_Code_And_Term -A704z,Other specified viral hepatitis with hepatic coma NOS,CTV3Map_Code_And_Term -A706.,Unspecified viral hepatitis with coma,CTV3Map_Code_And_Term -A7071,Chronic viral hepatitis B without delta-agent,CTV3Map_Code_And_Term -A7072,Chronic viral hepatitis C,CTV3_Children -AyuB1,[X]Other chronic viral hepatitis,CTV3Map_Code_And_Term -AyuB2,"[X]Chronic viral hepatitis, unspecified",CTV3Map_Code_And_Term -AyuB3,[X]Unspecified viral hepatitis with coma,CTV3Map_Code_And_Term -F10y0,Progressive neuronal degeneration with liver cirrhosis,CTV3Map_Code_And_Term -G850.,Bleeding oesophageal varices,CTV3Map_Code_And_Term -G851.,Oesophageal varices without bleeding,CTV3Map_Code_And_Term -G852.,Oesophageal varices in diseases EC,CTV3Map_Code_And_Term -G8520,Oesophageal varices with bleeding in diseases EC,CTV3Map_Code_And_Term -G8521,Oesophageal varices without bleeding in diseases EC,CTV3Map_Code_And_Term -G852z,Oesophageal varices in diseases EC NOS,CTV3Map_Code_And_Term -G857.,Gastric varices,CTV3Map_Code_And_Term -Gyu94,[X]Oesophageal varices in diseases classified elsewhere,CTV3Map_Code_And_Term -J6000,Acute hepatic failure,CTV3_Children -J6010,Subacute hepatic failure,CTV3_Children -J61..,Cirrhosis and chronic liver disease,CTV3Map_Code_And_Term -J610.,Alcoholic fatty liver,High_Level_SNOMED -J611.,Acute alcoholic hepatitis,High_Level_SNOMED -J612.,Cirrhosis: [florid] or [alcoholic],High_Level_SNOMED -J613.,Alcoholic liver damage unspecified,High_Level_SNOMED -J614.,Chronic hepatitis,CTV3Map_Code_And_Term -J6140,Chronic persistent hepatitis,CTV3Map_Code_And_Term -J6141,Chronic active hepatitis,CTV3Map_Code_And_Term -J6142,Chronic aggressive hepatitis,CTV3Map_Code_And_Term -J6143,Recurrent hepatitis,QOF -J614y,Chronic hepatitis unspecified,CTV3Map_Code_And_Term -J614z,Chronic hepatitis NOS,CTV3Map_Code_And_Term -J615.,(Cirrhosis - non alcoholic) or (portal cirrhosis),High_Level_SNOMED -J6150,Unilobular portal cirrhosis,QOF -J6151,Cirrhosis of liver: [multilobular portal] or [postnecrotic],QOF -J6152,Mixed portal cirrhosis,QOF -J6153,Diffuse nodular cirrhosis,CTV3Map_Code_And_Term -J6154,Fatty portal cirrhosis,CTV3Map_Code_And_Term -J6155,Macronodular cirrhosis,CTV3Map_Code_And_Term -J6156,Capsular portal cirrhosis,CTV3Map_Code_And_Term -J6157,Cirrhosis: [cardiac portal] or [congestive],CTV3_Children -J6158,Cirrhosis: [juv portal] or [childh funct] or [Indian childh],High_Level_SNOMED -J6159,Pigmentary portal cirrhosis,QOF -J615A,Pipestem portal cirrhosis,CTV3_Children -J615B,Toxic portal cirrhosis,QOF -J615D,Bacterial portal cirrhosis,CTV3Map_Code_And_Term -J615F,Syphilitic portal cirrhosis,CTV3Map_Code_And_Term -J615G,Zooparasitic portal cirrhosis,CTV3Map_Code_And_Term -J615H,Infectious cirrhosis NOS,CTV3Map_Code_And_Term -J615y,Portal cirrhosis unspecified,CTV3Map_Code_And_Term -J615z,(Liver cirrhos: [named vars] or [NOS]) or (hepat fibrosis),High_Level_SNOMED -J616.,Biliary cirrhosis,CTV3Map_Code_And_Term -J6160,Primary biliary cirrhosis,CTV3Map_Code_And_Term -J6161,Secondary biliary cirrhosis,CTV3Map_Code_And_Term -J6162,Biliary cirrhosis of children,CTV3Map_Code_And_Term -J616z,Biliary cirrhosis NOS,CTV3Map_Code_And_Term -J617.,Alcoholic hepatitis,High_Level_SNOMED -J61y.,Other non-alcoholic chronic liver disease,CTV3Map_Code_And_Term -J61y0,Chronic yellow atrophy,QOF -J61y3,Portal fibrosis without cirrhosis,CTV3Map_Code_And_Term -J61yz,Other non-alcoholic chronic liver disease NOS,CTV3Map_Code_And_Term -J61z.,Chronic liver disease NOS,CTV3Map_Code_And_Term -J62..,Liver abscess and sequelae of chronic liver disease,CTV3Map_Code_And_Term -J623.,Portal hypertension,CTV3Map_Code_And_Term -J624.,Hepatorenal syndrome,CTV3Map_Code_And_Term -J62z.,Liver abscess and chronic liver disease causing sequelae NOS,CTV3Map_Code_And_Term -J630.,Chronic passive congestion of liver,QOF -J6353,Toxic liver disease with chronic persistent hepatitis,CTV3Map_Code_And_Term -J6354,Toxic liver disease with chronic lobular hepatitis,CTV3Map_Code_And_Term -J6355,Toxic liver disease with chronic active hepatitis,CTV3Map_Code_And_Term -J6356,Toxic liver disease with fibrosis and cirrhosis of liver,CTV3Map_Code_And_Term -J63A.,Hepatic granulomas in sarcoidosis,CTV3Map_Code_And_Term -J6617,Primary sclerosing cholangitis,CTV3Map_Code_And_Term -Jyu71,[X]Other and unspecified cirrhosis of liver,CTV3Map_Code_And_Term -PB61.,Atresia of bile ducts,CTV3Map_Code_And_Term -PB610,Congenital absence of bile duct,CTV3Map_Code_And_Term -PB611,Congenital hypoplasia of bile duct,CTV3Map_Code_And_Term -PB614,Atresia of bile duct (& [intrahepatic] or [extrahepatic],CTV3_Children -PB615,Congenital absence of hepatic ducts,CTV3Map_Code_And_Term -PB616,Atresia of hepatic ducts,CTV3Map_Code_And_Term -PB61z,Biliary atresia NOS,CTV3Map_Code_And_Term -PB635,Alagille syndrome,CTV3Map_Code_And_Term -SP086,Liver transplant failure and rejection,CTV3Map_Code_And_Term -SP142,Hepatic failure as a complication of care,CTV3_Children -SP143,Hepatorenal syndrome as a complication of care,CTV3Map_Code_And_Term -X2063,Oesophageal varices,CTV3Map_Code_And_Term -X20Uu,Balln tamponade oesophagus using Sengstaken-Blakemore tube,CTV3Map_Code_And_Term -X20Uv,Balloon tamponade of oesophagus using Minnesota tube,CTV3_Children -X20Zz,Exploration of liver transplant,CTV3Map_Code_And_Term -X306h,Chronic viral hepatitis,CTV3Map_Code_And_Term -X306i,Chronic viral hepatitis B,CTV3Map_Code_And_Term -X306j,Chronic viral hepatitis B with hepatitis D,CTV3Map_Code_And_Term -X306k,Chronic viral hepatitis C,CTV3Map_Code_And_Term -X306l,Chronic non-A non-B hepatitis,CTV3_Children -X306r,Alcoholic hepatitis,High_Level_SNOMED -X3071,Alcoholic liver disease,High_Level_SNOMED -X3072,Alcoholic fibrosis and sclerosis of liver,CTV3Map_Code_And_Term -X3073,Alcoholic hepatic failure,CTV3Map_Code_And_Term -X3076,Hepatic failure,CTV3Map_Code_Only -X3077,Liver failure NOS,CTV3Map_Code_Only -X3078,Hepatic failure NOS,CTV3Map_Code_Only -X3079,Fulminant hepatic failure,CTV3_Children -X307A,Subfulminant hepatic failure,CTV3_Children -X307C,Chronic hepatic failure,CTV3_Children -X307G,Chronic lobular hepatitis,CTV3Map_Code_And_Term -X307I,Drug-induced chronic hepatitis,CTV3_Children -X307L,Cirrhosis of liver,QOF -X307M,Cirrhosis of liver NOS,CTV3Map_Code_And_Term -X307N,Florid cirrhosis,CTV3Map_Code_And_Term -X307O,Cryptogenic cirrhosis,CTV3Map_Code_And_Term -X307P,Indian childhood cirrhosis,CTV3Map_Code_And_Term -X307Q,Micronodular cirrhosis,QOF -X307R,Portal cirrhosis,CTV3Map_Code_And_Term -X307S,"Laennec's cirrhosis, non-alcoholic",CTV3Map_Code_Only -X307T,Infectious cirrhosis,QOF -X307U,Hypoxia-associated cirrhosis,QOF -X307V,Toxic cirrhosis,QOF -X307W,Fibrosis of liver,CTV3Map_Code_And_Term -X307X,Congenital hepatic fibrosis,CTV3_Children -X307Y,Pericellular fibrosis of congenital syphilis,CTV3_Children -X307Z,Hepatic sclerosis,CTV3Map_Code_And_Term -X307a,Portal and splenic vein sclerosis,CTV3_Children -X307b,Hepatic fibrosis with hepatic sclerosis,CTV3Map_Code_And_Term -X307c,Intrahepatic phlebosclerosis and fibrosis,CTV3_Children -X307x,Liver transplant disorder,High_Level_SNOMED -X307y,Liver transplant rejection,High_Level_SNOMED -X307z,Liver transplant failure,High_Level_SNOMED -X3085,Ichthyosis congenita with biliary atresia,QOF -X7847,Intrahepatic biliary atresia,CTV3Map_Code_And_Term -X7848,Extrahepatic biliary atresia,CTV3Map_Code_And_Term -XE0CP,Other specified open operation on oesophageal varices,CTV3Map_Code_And_Term -XE0b4,Alcoholic cirrhosis of liver,CTV3Map_Code_And_Term -XE0b5,Cirrhosis - non-alcoholic,CTV3Map_Code_And_Term -XE0b6,Multilobular portal cirrhosis,CTV3Map_Code_And_Term -XE0b7,Cardiac portal cirrhosis,CTV3Map_Code_And_Term -XE0b8,Juvenile portal cirrhosis,CTV3Map_Code_And_Term -XE0bA,Non-alcoholic cirrhosis NOS,CTV3Map_Code_And_Term -XE0bC,Other sequelae of chronic liver disease,CTV3Map_Code_And_Term -XE0dD,(Cirrhos &/or chron liver dis) or (alcoholic liver disease),High_Level_SNOMED -XE0dF,Alcoholic liver damage NOS,High_Level_SNOMED -XE0dH,Chronic hepatitis (& [NOS]/[active B]/[active]/[persistent]),CTV3_Children -XE0dJ,Biliary cirrhosis (& [primary]),CTV3_Children -XE2up,Cirrhosis secondary to cholestasis,CTV3Map_Code_And_Term -Xa9C7,Cardiac cirrhosis,CTV3Map_Code_And_Term -XaBE3,Chronic alcoholic hepatitis,CTV3Map_Code_And_Term -XaBM6,Oesophageal varices in cirrhosis of the liver,CTV3Map_Code_And_Term -XaC1d,Oesophageal varices in alcoholic cirrhosis of the liver,CTV3Map_Code_And_Term -XaE6u,Oesophageal varices NOS,CTV3Map_Code_And_Term -XaJTk,Autoimmune hepatitis,CTV3Map_Code_And_Term -XaJxp,Acute hepatic failure due to drugs,CTV3_Children -XaLdJ,Fibreopt endoscop rubber band ligation of upper GIT varices,CTV3Map_Code_And_Term -XaLde,Transplantation of liver cells,CTV3_Children -XaLdf,Orthotopic transplantation of whole liver,CTV3Map_Code_And_Term -XaMMe,Orthotopic transplantation of liver NEC,CTV3Map_Code_And_Term -XaMuG,Compensation for liver failure,CTV3Map_Code_And_Term -XaMuH,Other specified compensation for liver failure,CTV3_Children -XaMuI,Compensation for liver failure NOS,CTV3Map_Code_And_Term -XaPLW,Chronic hepatitis annual review,CTV3Map_Code_And_Term -XaREa,Liver disease due to cystic fibrosis,CTV3Map_Code_And_Term -XaXi9,Cystic fibrosis related cirrhosis,CTV3Map_Code_And_Term -XaYbp,Viral hepatitis with hepatic coma,CTV3Map_Code_And_Term -ZV427,[V]Liver transplanted,QOF -ZV7C0,[V]Assessment for liver transplant,CTV3Map_Code_And_Term \ No newline at end of file diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-chronic-respiratory-disease.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-chronic-respiratory-disease.csv deleted file mode 100644 index 9c128101a..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-chronic-respiratory-disease.csv +++ /dev/null @@ -1,413 +0,0 @@ -CTV3ID,CTV3PreferredTermDesc,CTV3Source -23E5.,O/E - fibrosis of lung present,High_Level_SNOMED -663K.,Airways obstructn irreversible,CTV3Map_Code_And_Term -7450.,Lung transplant,CTV3Map_Code_And_Term -7450y,Other specified transplantation of lung,CTV3Map_Code_And_Term -7450z,Transplantation of lung NOS,CTV3Map_Code_And_Term -A114.,Tuberculous fibrosis of lung,High_Level_SNOMED -A115.,Tuberculous bronchiectasis,CTV3Map_Code_And_Term -A7899,HIV disease resulting in lymphoid interstitial pneumonitis,CTV3_Children -AD52.,Sarcoidosis of lung with sarcoidosis of lymph nodes,CTV3Map_Code_And_Term -C370.,Cystic fibrosis,CTV3Map_Code_And_Term -C370.,Cystic fibrosis,CTV3Map_Code_Only -C3700,Cystic fibrosis with no meconium ileus,CTV3Map_Code_And_Term -C3701,Meconium ileus in cystic fibrosis,CTV3Map_Code_And_Term -C3701,Meconium ileus in cystic fibrosis,CTV3Map_Code_Only -C3702,Cystic fibrosis with pulmonary manifestations,CTV3Map_Code_And_Term -C3703,Cystic fibrosis with intestinal manifestations,CTV3Map_Code_And_Term -C370z,Cystic fibrosis NOS,CTV3Map_Code_And_Term -H0614,Obliterating fibrous bronchiolitis,QOF -H3...,Chronic obstructive lung disease,CTV3Map_Code_And_Term -H3...,Chronic obstructive lung disease,CTV3Map_Code_Only -H31..,Chronic bronchitis,CTV3Map_Code_And_Term -H310.,Simple chronic bronchitis,CTV3Map_Code_And_Term -H3100,Simple chronic bronchitis,CTV3_Children -H310z,Simple chronic bronchitis NOS,CTV3Map_Code_And_Term -H311.,Mucopurulent chronic bronchitis,CTV3Map_Code_And_Term -H3110,Purulent chronic bronchitis,CTV3_Children -H311z,Mucopurulent chronic bronchitis NOS,CTV3Map_Code_And_Term -H3121,Emphysematous bronchitis,CTV3Map_Code_And_Term -H3122,Acute exacerbation of chronic obstructive airways disease,CTV3Map_Code_And_Term -H312z,Obstructive chronic bronchitis NOS,CTV3Map_Code_And_Term -H313.,Mixed simple and mucopurulent chronic bronchitis,CTV3Map_Code_And_Term -H31y.,Other chronic bronchitis,CTV3Map_Code_And_Term -H31y0,Chronic tracheitis,QOF -H31y1,Chronic tracheobronchitis,CTV3Map_Code_And_Term -H31yz,Other chronic bronchitis NOS,CTV3Map_Code_And_Term -H31z.,Chronic bronchitis NOS,CTV3Map_Code_And_Term -H32..,Emphysema,CTV3Map_Code_And_Term -H320.,Chronic bullous emphysema,CTV3Map_Code_And_Term -H3200,Segmental bullous emphysema,CTV3Map_Code_And_Term -H3201,Zonal bullous emphysema,CTV3Map_Code_And_Term -H3202,Giant bullous emphysema,CTV3Map_Code_And_Term -H3203,(Bullous emphysema with collapse) or (tension pneumatocoele),High_Level_SNOMED -H320z,Chronic bullous emphysema NOS,CTV3Map_Code_And_Term -H321.,Panlobular emphysema,CTV3Map_Code_And_Term -H322.,Centrilobular emphysema,CTV3Map_Code_And_Term -H32y.,Other emphysema,CTV3Map_Code_And_Term -H32y0,Acute vesicular emphysema,CTV3Map_Code_And_Term -H32y1,Emphysema: [acute interstitial] or [atrophic - senile],QOF -H32y2,MacLeods syndrome,CTV3Map_Code_And_Term -H32y2,MacLeods syndrome,CTV3Map_Code_Only -H32yz,(Sawyer-Jones syndrome) or (other emphysema NOS),CTV3_Children -H32z.,Emphysema NOS,CTV3Map_Code_And_Term -H34..,Bronchiectasis,CTV3Map_Code_And_Term -H340.,Recurrent bronchiectasis,CTV3Map_Code_And_Term -H341.,Post-infective bronchiectasis,CTV3Map_Code_And_Term -H34z.,Bronchiectasis NOS,CTV3Map_Code_And_Term -H35..,Extrinsic allergic alveolitis,CTV3Map_Code_And_Term -H35..,Extrinsic allergic alveolitis,CTV3Map_Code_Only -H350.,Farmers' lung,CTV3Map_Code_And_Term -H351.,Bagassosis,CTV3Map_Code_And_Term -H352.,Bird-fancier's lung,CTV3Map_Code_And_Term -H3520,Budgerigar-fanciers' lung,CTV3Map_Code_And_Term -H3521,Pigeon-fanciers' lung,CTV3Map_Code_And_Term -H352z,Bird-fancier's lung NOS,CTV3Map_Code_And_Term -H353.,Cork-handlers' lung,CTV3Map_Code_And_Term -H354.,Malt workers' lung,CTV3Map_Code_And_Term -H355.,Mushroom workers' lung,CTV3Map_Code_And_Term -H356.,Maple bark strippers' lung,CTV3Map_Code_And_Term -H357.,Ventilation pneumonitis,CTV3Map_Code_And_Term -H35y.,Other allergic alveolitis,CTV3Map_Code_And_Term -H35y0,Cheese-washers' lung,CTV3Map_Code_And_Term -H35y1,Coffee-workers' lung,CTV3Map_Code_And_Term -H35y2,Fish-meal workers' lung,CTV3Map_Code_And_Term -H35y3,Furriers' lung,CTV3_Children -H35y4,Grain-handlers' disease,CTV3_Children -H35y5,Pituitary snuff-takers' disease,CTV3Map_Code_And_Term -H35y6,Sequoiosis,CTV3Map_Code_And_Term -H35y7,Wood pulp workers' lung,CTV3_Children -H35y8,Air-conditioner and humidifier lung,CTV3Map_Code_And_Term -H35yz,Other allergic alveolitis NOS,CTV3Map_Code_And_Term -H35z.,Allergic alveolitis and pneumonitis NOS,CTV3Map_Code_And_Term -H35z0,Allergic extrinsic alveolitis NOS,CTV3Map_Code_And_Term -H35z1,Hypersensitivity pneumonitis NOS,CTV3Map_Code_And_Term -H3y..,Other specified chronic obstructive airways disease,CTV3Map_Code_And_Term -H3y..,Other specified chronic obstructive airways disease,CTV3Map_Code_Only -H3y0.,Chronic obstruct pulmonary dis with acute lower resp infectn,CTV3Map_Code_And_Term -H3y1.,"Chron obstruct pulmonary dis wth acute exacerbation, unspec",CTV3_Children -H3z..,Chronic obstructive airways disease NOS,CTV3Map_Code_And_Term -H3z..,Chronic obstructive airways disease NOS,CTV3Map_Code_Only -H4...,Lung dis: [pneumoconioses] or [occup] or [due extern agent],CTV3_Children -H40..,Coal workers' pneumoconiosis,CTV3Map_Code_And_Term -H41..,Asbestos pneumoconiosis,CTV3Map_Code_And_Term -H41z.,Asbestosis NOS,CTV3Map_Code_And_Term -H42..,Silicosis,CTV3Map_Code_And_Term -H420.,Talc pneumoconiosis,CTV3Map_Code_And_Term -H421.,Simple silicosis,CTV3Map_Code_And_Term -H422.,Complicated silicosis,CTV3Map_Code_And_Term -H423.,Massive silicotic fibrosis,CTV3Map_Code_And_Term -H42z.,Silica pneumoconiosis NOS,CTV3Map_Code_And_Term -H43..,Pneumoconiosis due to other inorganic dust,CTV3Map_Code_And_Term -H430.,Aluminium lung,CTV3_Children -H431.,Bauxite pneumoconiosis,CTV3Map_Code_And_Term -H432.,Berylliosis,CTV3Map_Code_And_Term -H433.,Graphite pneumoconiosis,CTV3Map_Code_And_Term -H434.,Iron pneumoconiosis,CTV3Map_Code_And_Term -H435.,Tin pneumoconiosis,CTV3Map_Code_And_Term -H43z.,Pneumoconiosis due to inorganic dust NOS,CTV3Map_Code_And_Term -H44..,Pneumopathy due to inhalation of other dust,CTV3Map_Code_And_Term -H440.,Byssinosis,CTV3Map_Code_And_Term -H441.,Cannabinosis,CTV3Map_Code_And_Term -H44z.,Pneumopathy due to inhalation of other dust NOS,CTV3Map_Code_And_Term -H45..,Pneumoconiosis NOS,CTV3Map_Code_And_Term -H450.,Pneumoconiosis associated with tuberculosis,CTV3Map_Code_And_Term -H460.,Bronchitis and pneumonitis due to chemical fumes,High_Level_SNOMED -H4601,Acute pneumonitis due to chemical fumes,High_Level_SNOMED -H460z,Bronchitis and pneumonitis due to chemical fumes NOS,High_Level_SNOMED -H464.,Chronic respiratory conditions due to chemical fumes,CTV3Map_Code_And_Term -H4640,Chronic emphysema due to chemical fumes,CTV3Map_Code_And_Term -H4641,Toxic bronchiolitis obliterans,CTV3Map_Code_And_Term -H4642,Chronic pulmonary fibrosis due to chemical fumes,CTV3Map_Code_And_Term -H464z,Chronic respiratory conditions due to chemical fumes NOS,CTV3Map_Code_And_Term -H46z0,Silo-fillers' disease,High_Level_SNOMED -H47..,Aspiration pneumonitis,High_Level_SNOMED -H4y0.,Acute pulmonary radiation disease,High_Level_SNOMED -H4y00,Acute radiation pneumonitis,High_Level_SNOMED -H4y0z,Acute pulmonary radiation disease NOS,High_Level_SNOMED -H4y1.,Chronic pulmonary radiation disease,CTV3Map_Code_And_Term -H4y10,Radiation-induced diffuse interstitial pulmonary fibrosis,CTV3Map_Code_And_Term -H4y1z,Chronic pulmonary radiation disease NOS,CTV3Map_Code_And_Term -H4y2.,Drug-induced interstitial lung disorders,CTV3Map_Code_And_Term -H4y20,Acute drug-induced interstitial lung disorders,CTV3_Children -H4y21,Chronic drug-induced interstitial lung disorders,CTV3Map_Code_And_Term -H52y1,Persistent pneumothorax,QOF -H5302,Gangrenous pneumonia,High_Level_SNOMED -H5410,Chronic pulmonary oedema,CTV3Map_Code_And_Term -H55..,Lung: [cirrhosis of] or [postinflamm pulmonary fibrosis],CTV3_Children -H561.,Idiopathic pulmonary haemosiderosis,CTV3Map_Code_And_Term -H563.,(Fibros alveolitis: [idiopath][cryptog]) or (Hamm-Rich synd),CTV3_Children -H5631,Diffuse interstitial pulmonary fibrosis,CTV3Map_Code_And_Term -H563z,Idiopathic fibrosing alveolitis NOS,CTV3Map_Code_And_Term -H56y0,Endogenous lipoid pneumonia,High_Level_SNOMED -H571.,Rheumatic pneumonia,CTV3Map_Code_And_Term -H572.,Lung disease with systemic sclerosis,CTV3Map_Code_And_Term -H57y0,Pulmonary amyloidosis,CTV3Map_Code_And_Term -H57y1,Lung disease with polymyositis,CTV3Map_Code_And_Term -H57y2,Pulmonary sarcoidosis,CTV3Map_Code_And_Term -H57y3,Lung disease with Sjogren's disease,CTV3Map_Code_And_Term -H57y4,Lung disease with systemic lupus erythematosus,CTV3Map_Code_And_Term -H581.,(Emphysema [interstitial]/[mediastinal])/(pneumomediastinum),High_Level_SNOMED -H582.,Compensatory emphysema,CTV3Map_Code_And_Term -H583.,Pulmonary eosinophilia,High_Level_SNOMED -H591.,Chronic respiratory failure,CTV3Map_Code_And_Term -Hy02.,Chronic pulmonary insufficiency following surgery,CTV3Map_Code_And_Term -Hyu30,[X]Other emphysema,CTV3Map_Code_And_Term -Hyu31,[X]Other specified chronic obstructive pulmonary disease,CTV3Map_Code_And_Term -Hyu40,[X]Pneumoconiosis due to other dust containing silica,CTV3Map_Code_And_Term -Hyu41,[X]Pneumoconiosis due to other specified inorganic dusts,CTV3_Children -Hyu43,[X]Hypersensitivity pneumonitis due to other organic dusts,CTV3_Children -Hyu47,[X]Pneumonitis due to inhalation of other solids and liquids,High_Level_SNOMED -Hyu50,[X]Other interstitial pulmonary diseases with fibrosis,CTV3Map_Code_And_Term -K260.,(Azoospermia) or (Young's syndrome),High_Level_SNOMED -L380.,(Obstet anaesth + pulm complications) or (Mendelson's syndr),High_Level_SNOMED -N0421,Rheumatoid lung,CTV3Map_Code_And_Term -N0421,Rheumatoid lung,CTV3Map_Code_Only -N04y0,(Rheum lung) or (Caplan synd) or (fibr alveolit assoc arthr),High_Level_SNOMED -P851.,Pulmonary hypoplasia,CTV3_Children -P861.,Congenital bronchiectasis,CTV3Map_Code_And_Term -PK35.,Kartageners syndrome,High_Level_SNOMED -Q317.,Neonatal chronic respiratory disease,CTV3Map_Code_And_Term -Q3170,Bronchopulmonary dysplasia,CTV3Map_Code_And_Term -Q3171,Prematurity with interstitial pulmonary fibrosis,CTV3Map_Code_And_Term -Q3172,Pulmonary dysmaturity,CTV3Map_Code_And_Term -Q317z,Perinatal chronic respiratory disease NOS,CTV3Map_Code_And_Term -Qyu36,[X]Other chronic resp diseases originating/perinatal period,CTV3_Children -SP130,Mendelson's syndrome as a complication of care,High_Level_SNOMED -SP131,Other aspiration pneumonia as a complication of care,High_Level_SNOMED -X00s1,Single lung transplant,CTV3Map_Code_And_Term -X00s2,Double lung transplant,CTV3Map_Code_And_Term -X00s3,Double lung transplant as a block,CTV3_Children -X00s4,Bilateral sequential single lung transplant,CTV3_Children -X100V,Chronic pulmonary coccidioidomycosis,QOF -X100l,Congenital cystic bronchiectasis,CTV3_Children -X100m,Acquired bronchiectasis,CTV3_Children -X100n,Idiopathic bronchiectasis,CTV3_Children -X100o,Obstructive bronchiectasis,CTV3_Children -X100p,Toxin-induced bronchiectasis,CTV3_Children -X100q,Bronchiectasis due to toxic aspiration,CTV3_Children -X100r,Bronchiectasis due to toxic inhalation,CTV3_Children -X100t,Post-lung transplantation bronchiectasis,CTV3_Children -X101U,Asbestos-induced pleural plaque,CTV3Map_Code_And_Term -X101U,Asbestos-induced pleural plaque,CTV3Map_Code_Only -X101X,Inherited mucociliary clearance defect,High_Level_SNOMED -X101Z,Primary ciliary dyskinesia,High_Level_SNOMED -X101a,Primary ciliary dyskinesia - transposn ciliary microtubules,High_Level_SNOMED -X101b,Immotile cilia syndrome due to defective radial spokes,High_Level_SNOMED -X101c,Immotile cilia syndrome due to excessively long cilia,High_Level_SNOMED -X101d,Young's syndrome,QOF -X101e,Rutland ciliary disorientation syndrome,High_Level_SNOMED -X101i,"Chron obstruct pulmonary dis wth acute exacerbation, unspec",CTV3Map_Code_And_Term -X101j,Occupational chronic bronchitis,CTV3_Children -X101k,Byssinosis grade 3,CTV3_Children -X101l,Bronchiolitis obliterans,CTV3Map_Code_And_Term -X101m,Drug-induced bronchiolitis obliterans,CTV3_Children -X101n,Pulmonary emphysema,CTV3_Children -X101o,Pulmonary emphysema in alpha-1 PI deficiency,CTV3_Children -X101p,Toxic emphysema,CTV3_Children -X101q,Congenital lobar emphysema,CTV3_Children -X101r,Scar emphysema,CTV3_Children -X102B,Mill fever,CTV3_Children -X102H,Cryptogenic pulmonary eosinophilia,High_Level_SNOMED -X102J,Animal handlers' lung,CTV3_Children -X102K,Dog house disease,CTV3_Children -X102L,Dry rot lung,CTV3_Children -X102M,Lycoperdonosis,CTV3_Children -X102N,Wheat weevil disease,CTV3_Children -X102O,New Guinea lung,CTV3_Children -X102P,Paprika splitters' lung,CTV3_Children -X102Q,Pyrethrum alveolitis,CTV3_Children -X102R,Rodent handlers' lung,CTV3_Children -X102S,Sewage workers' lung,CTV3_Children -X102T,Summer-type hypersensitivity pneumonitis,CTV3_Children -X102U,Vineyard sprayers' lung,CTV3_Children -X102j,Cryptogenic organising pneumonitis,CTV3Map_Code_And_Term -X102j,Cryptogenic organising pneumonitis,CTV3Map_Code_Only -X102k,"Seasonal crypt organising pneumonia, biochemical cholestasis",CTV3_Children -X102u,Pulmonary fibrosis,CTV3Map_Code_And_Term -X102v,Usual interstitial pneumonitis,CTV3Map_Code_And_Term -X102v,Usual interstitial pneumonitis,CTV3Map_Code_Only -X102w,Desquamative interstitial pneumonitis,CTV3_Children -X102x,Lymphoid interstitial pneumonitis,CTV3_Children -X102y,Giant cell interstitial pneumonitis,CTV3_Children -X102z,Bronchiolitis obliterans with usual interstitial pneumonitis,CTV3_Children -X1030,Toxic diffuse interstitial pulmonary fibrosis,CTV3_Children -X1031,Drug-induced diffuse interstitial pulmonary fibrosis,CTV3_Children -X1032,Localised pulmonary fibrosis,CTV3_Children -X1033,Mediastinal radiation fibrosis,CTV3_Children -X1034,Pneumonitis of non-infectious cause,High_Level_SNOMED -X1035,Cholesterol pneumonia,High_Level_SNOMED -X1038,Lupus pneumonia,High_Level_SNOMED -X103A,Toxic pneumonitis,High_Level_SNOMED -X103G,Radiation-induced fibrous mediastinitis,CTV3_Children -X103W,Simple pneumoconiosis,CTV3_Children -X103X,Complicated pneumoconiosis,CTV3Map_Code_And_Term -X103Y,Rheumatoid pneumoconiosis,CTV3Map_Code_And_Term -X103Y,Rheumatoid pneumoconiosis,CTV3Map_Code_Only -X103Z,Bentonite pneumoconiosis,CTV3_Children -X103a,Erionite pneumoconiosis,CTV3_Children -X103b,Kaolin pneumoconiosis,CTV3_Children -X103c,Metal pneumoconiosis,CTV3_Children -X103d,Antimony pneumoconiosis,CTV3_Children -X103e,Argyro-siderosis,CTV3_Children -X103f,Barium pneumoconiosis,CTV3_Children -X103h,Subacute berylliosis,CTV3_Children -X103i,Chronic berylliosis,CTV3_Children -X103j,Cerium pneumoconiosis,CTV3_Children -X103k,Hard metal pneumoconiosis,CTV3_Children -X103l,Nickel pneumoconiosis,CTV3_Children -X103m,Thorium pneumoconiosis,CTV3_Children -X103n,Zirconium pneumoconiosis,CTV3_Children -X103o,Mica pneumoconiosis,CTV3_Children -X103p,Mixed mineral dust pneumoconiosis,CTV3_Children -X103q,Liparosis,CTV3_Children -X103r,Slate pneumoconiosis,CTV3_Children -X103s,Diatomite pneumoconiosis,CTV3_Children -X103u,Subacute silicosis,CTV3_Children -X103v,Chronic silicosis,CTV3_Children -X103w,Silicotuberculosis,CTV3_Children -X103x,Wollastonite pneumoconiosis,CTV3_Children -X1043,Stage 1 pulmonary sarcoidosis,CTV3_Children -X1044,Stage 2 pulmonary sarcoidosis,CTV3_Children -X1045,Stage 3 pulmonary sarcoidosis,CTV3_Children -X1046,Stage 4 pulmonary sarcoidosis,CTV3_Children -X1047,Endobronchial sarcoidosis,CTV3_Children -X1048,Necrotising sarcoid granulomatosis,CTV3_Children -X1049,Sarcoid pulmonary calcification,CTV3_Children -X104B,Grain fever,High_Level_SNOMED -X104C,Humidifier fever,High_Level_SNOMED -X309R,Cystic fibrosis of pancreas,High_Level_SNOMED -X701k,Fibrosing alveolitis associated with rheumatoid arthritis,CTV3Map_Code_And_Term -X701k,Fibrosing alveolitis associated with rheumatoid arthritis,CTV3Map_Code_Only -X70Eg,Pneumonitis due to fetal aspiration,High_Level_SNOMED -X70RL,Chronic pulmonary histoplasmosis capsulati,QOF -XE0YM,Purulent chronic bronchitis,CTV3Map_Code_And_Term -XE0YN,Bullous emphysema with collapse,CTV3Map_Code_And_Term -XE0YO,Atrophic (senile) emphysema,CTV3Map_Code_And_Term -XE0YO,Atrophic (senile) emphysema,CTV3Map_Code_Only -XE0YP,Other emphysema NOS,CTV3Map_Code_And_Term -XE0YY,Lung disease due to external agents,CTV3Map_Code_Only -XE0Ya,Post-inflammatory pulmonary fibrosis,CTV3Map_Code_And_Term -XE0Ya,Post-inflammatory pulmonary fibrosis,CTV3Map_Code_Only -XE0Yb,Cryptogenic fibrosing alveolitis,CTV3Map_Code_And_Term -XE0Yb,Cryptogenic fibrosing alveolitis,CTV3Map_Code_Only -XE0ZN,Chronic: [bronchitis NOS] or [tracheobronchitis],CTV3_Children -XE0ZV,"(Extrin allerg alveol)/(farm lung)/(pneumonitis, allerg NOS)",CTV3_Children -XE0ZX,(Asbestosis) or (byssinosis) or (pleural plaque disease),High_Level_SNOMED -XE0ZZ,(Pneumoconiosis NOS) or (siderosis),CTV3_Children -XE0Zf,Chronic chemical resp. disease,High_Level_SNOMED -XE0Zh,Chemical resp. disease NOS,High_Level_SNOMED -XE0Zr,Idiopath. fibrosing alveolitis (& Hamman-Rich syndrome),CTV3_Children -XE1NO,(Congenital resp anomalies NOS) or (bronchiectasis - congen),High_Level_SNOMED -XE1ep,Other specified perinatal chronic respiratory disease,CTV3Map_Code_And_Term -XE2Pp,History of chronic obstructive pulmonary disease,CTV3Map_Code_And_Term -XE2Pp,History of chronic obstructive pulmonary disease,CTV3Map_Code_Only -XM1Qc,Tension pneumatocele,CTV3Map_Code_Only -XSC3p,Complication of transplanted lung,CTV3Map_Code_And_Term -Xa08A,Chronic pulmonary insufficiency of prematurity,CTV3_Children -Xa0BC,Pulmonary fibroplasia,CTV3Map_Code_Only -Xa0Qe,Congenital hypoplasia of lung,CTV3_Children -Xa0Qi,Secondary pulmonary hypoplasia,CTV3_Children -Xa0Qj,Pulmonary hypoplasia associated with short gestation,CTV3_Children -Xa0Tw,Primary pulmonary hypoplasia,CTV3_Children -Xa35l,Acute infective exacerbation chronic obstruct airway disease,CTV3_Children -Xa9Bw,Pneumoconiosis,CTV3Map_Code_And_Term -Xa9Bw,Pneumoconiosis,CTV3Map_Code_Only -Xa9Bx,Radiation pneumonitis,High_Level_SNOMED -XaBDb,Cystic fibrosis with other manifestations,CTV3Map_Code_And_Term -XaBDb,Cystic fibrosis with other manifestations,CTV3Map_Code_Only -XaEIV,Mild chronic obstructive pulmonary disease,CTV3Map_Code_And_Term -XaEIW,Moderate chronic obstructive pulmonary disease,CTV3Map_Code_And_Term -XaEIY,Severe chronic obstructive pulmonary disease,CTV3Map_Code_And_Term -XaEKI,Flax-dressers' disease,CTV3_Children -XaIND,End stage chronic obstructive airways disease,CTV3Map_Code_And_Term -XaIQT,Chronic obstructive pulmonary disease monitoring,CTV3Map_Code_And_Term -XaIQg,Interstitial pulmonary emphysema,CTV3Map_Code_And_Term -XaIQg,Interstitial pulmonary emphysema,CTV3Map_Code_Only -XaIQh,Mediastinal emphysema,QOF -XaIRO,Chronic obstructive pulmonary disease monitoring due,CTV3Map_Code_And_Term -XaIUt,COPD self-management plan given,CTV3Map_Code_And_Term -XaIes,Chronic obstructive pulmonary disease follow-up,CTV3Map_Code_And_Term -XaIes,Chronic obstructive pulmonary disease follow-up,CTV3Map_Code_Only -XaIet,Chronic obstructive pulmonary disease annual review,CTV3Map_Code_And_Term -XaIu7,Chronic obstructive pulmonary disease monitoring by nurse,CTV3Map_Code_And_Term -XaIu8,Chronic obstructive pulmonary disease monitoring by doctor,CTV3Map_Code_And_Term -XaJ4k,Excepted from COPD quality indicators: Patient unsuitable,QOF -XaJFu,Admit COPD emergency,CTV3Map_Code_And_Term -XaJYf,Chronic obstructive pulmonary disease clini management plan,CTV3Map_Code_And_Term -XaJlS,Chronic obstructive pulmonary disease monitoring admin,CTV3Map_Code_And_Term -XaJlT,Chronic obstructive pulmonary disease monitoring 1st letter,CTV3Map_Code_And_Term -XaJlU,Chronic obstructive pulmonary disease monitoring 2nd letter,CTV3Map_Code_And_Term -XaJlV,Chronic obstructive pulmonary disease monitoring 3rd letter,CTV3Map_Code_And_Term -XaJlW,Chronic obstructive pulmonary disease monitoring verb invite,CTV3Map_Code_And_Term -XaJlY,Chronic obstructive pulmonary disease monitor phone invite,CTV3Map_Code_And_Term -XaK8Q,Chronic obstructive pulmonary disease finding,QOF -XaK8R,COPD accident and emergency attendance since last visit,CTV3Map_Code_And_Term -XaK8S,Emergency COPD admission since last appointment,CTV3Map_Code_And_Term -XaK8U,Number of COPD exacerbations in past year,CTV3Map_Code_And_Term -XaKv8,Chronic obstructive pulmonary disease disturbs sleep,CTV3Map_Code_And_Term -XaKv9,Chronic obstructive pulmonary disease does not disturb sleep,CTV3Map_Code_And_Term -XaKzy,Multiple COPD emergency hospital admissions,CTV3Map_Code_And_Term -XaL2O,"Pneumonitis, unspecified",High_Level_SNOMED -XaLcH,Single lobe lung transplant,CTV3_Children -XaLqj,Health education - chronic obstructive pulmonary disease,CTV3Map_Code_And_Term -XaMzI,Cystic fibrosis related diabetes mellitus,QOF -XaN4a,Very severe chronic obstructive pulmonary disease,CTV3Map_Code_And_Term -XaO5l,Chronic type 1 respiratory failure,CTV3Map_Code_And_Term -XaO5m,Chronic type 2 respiratory failure,CTV3Map_Code_And_Term -XaOYV,Recurrent pulmonary embolism,QOF -XaPZH,COPD patient unsuitable for pulmonary rehabilitation,CTV3Map_Code_And_Term -XaPZH,COPD patient unsuitable for pulmonary rehabilitation,CTV3Map_Code_Only -XaPls,Referred for COPD structured smoking assessment,CTV3Map_Code_And_Term -XaPls,Referred for COPD structured smoking assessment,CTV3Map_Code_Only -XaPlu,COPD structured smoking assessment declined,CTV3Map_Code_And_Term -XaPlu,COPD structured smoking assessment declined,CTV3Map_Code_Only -XaPzu,At risk of chronic obstructive pulmonary diseas exacerbation,CTV3Map_Code_And_Term -XaQvd,Cystic fibrosis annual review,CTV3Map_Code_And_Term -XaRCG,Step down change in COPD management plan,CTV3_Children -XaRCH,Step up change in COPD management plan,CTV3_Children -XaREX,Arthropathy in cystic fibrosis,CTV3Map_Code_And_Term -XaREZ,Cystic fibrosis with distal intestinal obstruction syndrome,CTV3Map_Code_And_Term -XaREa,Liver disease due to cystic fibrosis,CTV3Map_Code_And_Term -XaREd,Fibrosing colonopathy,CTV3Map_Code_And_Term -XaW9D,Issue of chronic obstructive pulmonary disease rescue pack,CTV3Map_Code_And_Term -XaXCa,Chronic obstructive pulmonary disease 3 monthly review,CTV3Map_Code_And_Term -XaXCb,Chronic obstructive pulmonary disease 6 monthly review,CTV3Map_Code_And_Term -XaXi9,Cystic fibrosis related cirrhosis,CTV3Map_Code_And_Term -XaXlE,Respiratory bronchiolitis associated interstitial lung dis,High_Level_SNOMED -XaXlF,Interstitial lung disease due to collagen vascular disease,CTV3Map_Code_And_Term -XaXlJ,Interstitial lung disease due to connective tissue disease,CTV3Map_Code_And_Term -XaXnt,GP OOH service notified of COPD care plan,CTV3Map_Code_And_Term -XaXzy,Preferred place of care for next exacerbation of COPD,CTV3Map_Code_And_Term -XaY05,Chronic obstructiv pulmonary disease medication optimisation,CTV3Map_Code_And_Term -XaY0w,Referral to COPD community nursing team,CTV3Map_Code_And_Term -XaYR1,Bronchiolitis obliterans syndrome after lung transplantation,CTV3Map_Code_And_Term -XaYZO,COPD self-management plan review,CTV3Map_Code_And_Term -XaYbA,COPD self-management plan agreed,CTV3Map_Code_And_Term -XaYby,Hantavirus pulmonary syndrome,High_Level_SNOMED -XaYuZ,Chronic obstructve pulmonry disease rescue pack not indicatd,CTV3Map_Code_And_Term -XaZ6U,On chronic obstructive pulmonary disease supprtv cre pathway,CTV3Map_Code_And_Term -XaZ6U,On chronic obstructive pulmonary disease supprtv cre pathway,CTV3Map_Code_Only -XaZ8t,Has chronic obstructive pulmonary disease care plan,CTV3Map_Code_And_Term -XaZd1,Acute non-infective exacerbation of COPD,CTV3_Children -XaZee,Chronic obstructive pulmonary disease care pathway,CTV3Map_Code_And_Term -XaZoz,Seen in chronic obstructive pulmonary disease clinic,CTV3Map_Code_And_Term -XaZp7,Chronic obstructive pulmonary disease rescue pack declined,CTV3Map_Code_And_Term -XaZp8,Chronic obstructive pulmon dis wr self managem plan declined,CTV3Map_Code_And_Term -XaZr7,Exacerbation of cystic fibrosis,CTV3Map_Code_And_Term -Xaa7C,Eosinophilic bronchitis,QOF -Xaam4,Chronic obstruct pulmonary disease management plan declined,CTV3Map_Code_And_Term -XaavA,Shared care chronic obstructive pulmonary disease monitoring,CTV3_Children -Xabud,H/O: bronchiectasis,CTV3Map_Code_And_Term -Xac33,Asthma-chronic obstructive pulmonary disease overlap syndrom,CTV3Map_Code_And_Term -Xac8s,Telehealth chronic obstructive pulmonary disease monitoring,CTV3Map_Code_And_Term -XafhZ,COPD monitoring email invitation,QOF -Xafhe,COPD monitring short message service text message invitation,QOF -Xafir,COPD monitoring SMS text message first invitation,QOF -Xafit,COPD monitoring SMS text message second invitation,QOF -Xafiu,COPD monitoring SMS text message third invitation,QOF -Y1f1b,Chronic obstructive pulmonary disease monitoring invitation,QOF -Y1f94,Quality and Outcomes Framework chronic obstructive pulmonary disease quality indicator-related care invitation (procedure),QOF -Y1f95,Excepted from chronic obstructive pulmonary disease quality indicators - service unavailable (finding),QOF -Y2708,Cystic fibrosis screening test,CTV3_Children -Y2710,Cystic fibrosis positive,CTV3_Children \ No newline at end of file diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-depression.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-depression.csv deleted file mode 100644 index 4b8c1897f..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-depression.csv +++ /dev/null @@ -1,82 +0,0 @@ -CTV3Code,Description -E0013,Presenile dementia with depression -E0021,Senile dementia with depression -E1120,"Single major depressive episode, unspecified" -E1121,"Single major depressive episode, mild" -E1122,"Single major depressive episode, moderate" -E1123,"Single major depressive episode, severe, without psychosis" -E1124,"Single major depressive episode, severe, with psychosis" -E1125,"Single major depressive episode, partial or unspec remission" -E1126,"Single major depressive episode, in full remission" -E112z,Single major depressive episode NOS -E1130,"Recurrent major depressive episodes, unspecified" -E1131,"Recurrent major depressive episodes, mild" -E1132,"Recurrent major depressive episodes, moderate" -E1133,"Recurrent major depressive episodes, severe, no psychosis" -E1134,"Recurrent major depressive episodes, severe, with psychosis" -E1135,"Recurrent major depressive episodes,partial/unspec remission" -E1137,Recurrent depression -E113z,Recurrent major depressive episode NOS -E1154,"Bipolar affect disord, now depressed, severe with psychosis" -E11y2,Atypical depressive disorder -E130.,Reactive depressive psychosis -E2112,Dysthymia -E291.,Prolonged depressive adjustment reaction -E2B..,Depressive disorder NEC -E2B1.,Chronic depression -Eu320,[X]Mild depressive episode -Eu321,[X]Moderate depressive episode -Eu322,"[X]Sev depress epis, no psych: (& single [agit][maj][vital])" -Eu323,[X]Sev depress epis + psych symp:(& singl epis [named vars]) -Eu32y,[X]Depression: [oth episode][atypic][single epis masked NOS] -Eu32z,[X](Depressn: [episode unsp][NOS (& react)][depress dis NOS] -Eu33.,[X]Recurrent depressive disorder (& [named variants]) -Eu330,"[X]Recurrent depressive disorder, current episode mild" -Eu331,"[X]Recurrent depressive disorder, current episode moderate" -Eu332,"[X]Depressn, no psych symp: [recurr: (named var)]/[endogen]" -Eu333,[X]Depress with psych sympt: [recurr: (named vars)][endogen] -Eu334,"[X]Recurrent depressive disorder, currently in remission" -Eu33y,[X]Other recurrent depressive disorders -Eu33z,[X] Depression recurrent: [unspecified] or [monopolar NOS] -Eu412,[X]Mixed anxiety and depress disord (& mild anxiet depressn) -Eu413,[X]Other mixed anxiety disorders -X00S8,Post-schizophrenic depression -X00SO,Depressive disorder -X00SQ,Agitated depression -X00SR,Endogenous depression -X00SS,Endogenous depression first episode -X00SU,Masked depression -X00Sb,Mixed anxiety and depressive disorder -X761L,Seasonal affective disorder -XE1Y0,Single major depressive episode -XE1Y1,Recurrent major depressive episodes -XE1YC,Reactive depression -XE1YD,Neurasthenia -XE1ZY,[X]Severe depressive episode without psychotic symptoms -XE1ZZ,[X]Severe depressive episode with psychotic symptoms -XE1Za,[X]Other depressive episodes -XE1Zb,"[X]Depressive episode, unspecified" -XE1Zc,[X]Recurrent depressive disorder -XE1Zd,[X]Recurr depress disorder cur epi severe without psyc sympt -XE1Ze,[X]Recurrent depress disorder cur epi severe with psyc symp -XE1Zf,"[X]Recurrent depressive disorder, unspecified" -XE2un,"Schizoaffective disorder, depressive type" -XM1GC,Endogenous depression - recurrent -XSEGJ,Major depressive disorder -XSGok,Mild major depression -XSGol,Moderate major depression -XSGom,Severe major depression without psychotic features -XSGon,Severe major depression with psychotic features -XSKr7,Cotard syndrome -Xa0wV,Recurrent brief depressive disorder -XaB9J,Depression NOS -XaCHo,"[X]Manic-depress psychosis,depressd,no psychotic symptoms" -XaCHr,[X]Single episode agitated depressn w'out psychotic symptoms -XaCHs,[X]Single episode major depression w'out psychotic symptoms -XaCIs,Mild depression -XaCIt,Moderate depression -XaCIu,Severe depression -XaX53,"Single major depress ep, severe with psych, psych in remissn" -XaX54,"Recurr major depress ep, severe with psych, psych in remissn" -XagU1,"Recurrent reactiv depressiv episodes, severe, with psychosis" -XagUK,Prolonged single episode of reactive depression diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-diabetes.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-diabetes.csv deleted file mode 100644 index e1d50db2a..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-diabetes.csv +++ /dev/null @@ -1,569 +0,0 @@ -CTV3ID,CTV3PreferredTermDesc,CTV3Source -13B1.,Diabetic diet,High_Level_SNOMED -14P3.,H/O: insulin therapy,CTV3Map_Code_And_Term -42W1.,Hb. A1C < 7% - good control,CTV3_Children -42W2.,Hb. A1C 7-10% - borderline,CTV3_Children -42W3.,Hb. A1C > 10% - bad control,CTV3_Children -42WZ.,Hb. A1C - diabetic control NOS,CTV3Map_Code_And_Term -42c0.,HbA1 less than 7% - good control,CTV3_Children -42c1.,HbA1 7-10% - borderline control,CTV3_Children -44V3.,Glucose tol. test diabetic,High_Level_SNOMED -66A3.,Diabetic on diet only,CTV3Map_Code_And_Term -66A4.,Diabetic on oral treatment,CTV3Map_Code_And_Term -66A5.,Diabetic on insulin,CTV3Map_Code_And_Term -66A6.,Last hypoglycaemia attack,High_Level_SNOMED -66A8.,Has seen dietitian - diabetes,High_Level_SNOMED -66A9.,Understands diet - diabetes,High_Level_SNOMED -66AA.,Injection sites (& diabetic),High_Level_SNOMED -66AG.,Diabetic drug side effects,CTV3Map_Code_And_Term -66AH.,Diabetic treatment changed,CTV3Map_Code_And_Term -66AH0,Conversion to insulin,CTV3Map_Code_And_Term -66AI.,Diabetic - good control,CTV3Map_Code_And_Term -66AJ.,Diabetic - poor control (& unstable),CTV3_Children -66AJ0,Chronic hyperglycaemia,CTV3_Children -66AJ1,[Brittle] and/or [labile diabetes],CTV3_Children -66AJ2,Loss of hypoglycaemic warning,QOF -66AJ3,Recurrent severe hypos,CTV3_Children -66AJz,Diabetic - poor control NOS,CTV3Map_Code_And_Term -66AK.,Diabetic - cooperative patient,CTV3Map_Code_And_Term -66AL.,Diabetic-uncooperative patient,CTV3Map_Code_And_Term -66AM.,Diabetic - follow-up default,CTV3Map_Code_And_Term -66AN.,Date diabetic treatment start,CTV3Map_Code_And_Term -66AP.,Diabetes: practice programme,CTV3Map_Code_And_Term -66AQ.,Diabetes: shared care programme,CTV3Map_Code_And_Term -66AR.,Diabetes management plan given,CTV3Map_Code_And_Term -66AS.,Diabetic annual review,CTV3Map_Code_And_Term -66AT.,Annual diabetic blood test,CTV3Map_Code_And_Term -7L100,Continuous subcutaneous infusion of insulin,CTV3Map_Code_And_Term -8A12.,Diabetic crisis monitoring,CTV3Map_Code_And_Term -8A13.,Diabetic stabilisation,CTV3Map_Code_And_Term -8CA41,Patient advised about diabetic diet,High_Level_SNOMED -8H2J.,Admit diabetic emergency,CTV3Map_Code_And_Term -8H3O.,Non-urgent diabetic admission,CTV3Map_Code_And_Term -8H7C.,"Refer, diabetic liaison nurse",High_Level_SNOMED -8HKE.,Diabetology domiciliary visit requested,CTV3Map_Code_And_Term -8HLE.,Diabetology D.V. done,CTV3Map_Code_And_Term -8HME.,Listed for Diabetology admissn,CTV3Map_Code_And_Term -9NM0.,Attending diabetes clinic,High_Level_SNOMED -9OL..,Diabetes administration: [monitoring] or [clinic],High_Level_SNOMED -9OL1.,Attends diabetes monitoring,High_Level_SNOMED -9OL2.,Refuses diabetes monitoring,High_Level_SNOMED -9OL3.,Diabetes monitoring default,High_Level_SNOMED -9OL4.,Diabetes monitoring first letter,QOF -9OL5.,Diabetes monitoring second letter,QOF -9OL6.,Diabetes monitoring third letter,QOF -9OL7.,Diabetes monitoring verbal invite,QOF -9OL8.,Diabetes monitoring telephone invite,QOF -9OL9.,Diabetes monitoring deleted,High_Level_SNOMED -9OLA.,Diabetes monitored (& check done),High_Level_SNOMED -9OLZ.,Diabetes monitoring admin.NOS,High_Level_SNOMED -C10..,Diabetes mellitus,CTV3Map_Code_And_Term -C100.,Diabetes mellitus with no mention of complication,CTV3Map_Code_And_Term -C1000,"Diabetes mellit: [juv type, no mention compl] or [insul dep]",CTV3_Children -C1001,"Diab mell: [adult ons, no ment comp][mat onset][non-ins dep]",CTV3_Children -C100z,Diabetes mellitus NOS with no mention of complication,CTV3Map_Code_And_Term -C101.,Diabetic ketoacidosis,CTV3Map_Code_And_Term -C1010,Type 1 diabetes mellitus with ketoacidosis,CTV3Map_Code_And_Term -C1011,Type 2 diabetes mellitus with ketoacidosis,CTV3Map_Code_And_Term -C101y,Other specified diabetes mellitus with ketoacidosis,CTV3Map_Code_And_Term -C101z,Diabetes mellitus NOS with ketoacidosis,CTV3Map_Code_And_Term -C102.,Diabetes mellitus with hyperosmolar coma,CTV3Map_Code_And_Term -C1020,"Diabetes mellitus, juvenile type, with hyperosmolar coma",CTV3Map_Code_And_Term -C1021,"Diabetes mellitus, adult onset, with hyperosmolar coma",CTV3Map_Code_And_Term -C102z,Diabetes mellitus NOS with hyperosmolar coma,CTV3Map_Code_And_Term -C103.,Diabetes mellitus with ketoacidotic coma,CTV3Map_Code_And_Term -C1030,Type 1 diabetes mellitus with ketoacidotic coma,CTV3Map_Code_And_Term -C1031,Type II diabetes mellitus with ketoacidotic coma,CTV3Map_Code_And_Term -C103y,Other specified diabetes mellitus with coma,CTV3Map_Code_And_Term -C103z,Diabetes mellitus NOS with ketoacidotic coma,CTV3Map_Code_And_Term -C104.,Diabetes mellitus: [with renal manifestatn] or [nephropathy],CTV3_Children -C1040,"Diabetes mellitus, juvenile type, with renal manifestation",CTV3Map_Code_And_Term -C1041,"Diabetes mellitus, adult onset, with renal manifestation",CTV3Map_Code_And_Term -C104y,Other specified diabetes mellitus with renal complications,CTV3Map_Code_And_Term -C104z,Diabetes mellitus with nephropathy NOS,CTV3Map_Code_And_Term -C105.,Diabetes mellitus with ophthalmic manifestation,CTV3Map_Code_And_Term -C1050,"Diabetes mellitus, juvenile type, + ophthalmic manifestation",CTV3Map_Code_And_Term -C1051,"Diabetes mellitus, adult onset, + ophthalmic manifestation",CTV3Map_Code_And_Term -C105y,Other specified diabetes mellitus with ophthalmic complicatn,CTV3Map_Code_And_Term -C105z,Diabetes mellitus NOS with ophthalmic manifestation,CTV3Map_Code_And_Term -C106.,Diab mell + neuro manif: (& [amyotroph][neurop][polyneurop]),QOF -C1060,"Diabetes mellitus, juvenile, + neurological manifestation",CTV3Map_Code_And_Term -C1061,"Diabetes mellitus, adult onset, + neurological manifestation",CTV3Map_Code_And_Term -C106y,Other specified diabetes mellitus with neurological comps,CTV3Map_Code_And_Term -C106z,Diabetes mellitus NOS with neurological manifestation,CTV3Map_Code_And_Term -C107.,Diabetes mellitus with: [gangrene] or [periph circul disord],CTV3_Children -C1070,"Diabetes mellitus, juvenile +peripheral circulatory disorder",CTV3Map_Code_And_Term -C1071,"Diabetes mellitus, adult, + peripheral circulatory disorder",CTV3Map_Code_And_Term -C1072,"Diabetes mellitus, adult with gangrene",CTV3Map_Code_And_Term -C1073,IDDM with peripheral circulatory disorder,CTV3Map_Code_And_Term -C1074,NIDDM with peripheral circulatory disorder,CTV3Map_Code_And_Term -C107y,Other specified diabetes mellitus with periph circ comps,CTV3Map_Code_And_Term -C107z,Diabetes mellitus NOS with peripheral circulatory disorder,CTV3Map_Code_And_Term -C1080,Type I diabetes mellitus with renal complications,CTV3Map_Code_And_Term -C1081,Type I diabetes mellitus with ophthalmic complications,CTV3Map_Code_And_Term -C1082,Type I diabetes mellitus with neurological complications,CTV3Map_Code_And_Term -C1083,Type I diabetes mellitus with multiple complications,CTV3Map_Code_And_Term -C1085,Type I diabetes mellitus with ulcer,CTV3Map_Code_And_Term -C1086,Type I diabetes mellitus with gangrene,CTV3Map_Code_And_Term -C1087,Type I diabetes mellitus with retinopathy,CTV3Map_Code_And_Term -C1088,Type I diabetes mellitus - poor control,CTV3Map_Code_And_Term -C1089,Type I diabetes mellitus maturity onset,CTV3Map_Code_And_Term -C108y,Other specified diabetes mellitus with multiple comps,CTV3Map_Code_And_Term -C108z,Unspecified diabetes mellitus with multiple complications,CTV3Map_Code_And_Term -C109.,Type II diabetes mellitus,CTV3_Children -C1090,Type II diabetes mellitus with renal complications,CTV3Map_Code_And_Term -C1091,Type II diabetes mellitus with ophthalmic complications,CTV3Map_Code_And_Term -C1092,Type II diabetes mellitus with neurological complications,CTV3Map_Code_And_Term -C1093,Type II diabetes mellitus with multiple complications,CTV3Map_Code_And_Term -C1094,Type II diabetes mellitus with ulcer,CTV3Map_Code_And_Term -C1095,Type II diabetes mellitus with gangrene,CTV3Map_Code_And_Term -C1096,Type II diabetes mellitus with retinopathy,CTV3Map_Code_And_Term -C1097,Type II diabetes mellitus - poor control,CTV3Map_Code_And_Term -C10y.,Diabetes mellitus with other specified manifestation,CTV3Map_Code_And_Term -C10y0,"Diabetes mellitus, juvenile, + other specified manifestation",CTV3Map_Code_And_Term -C10y1,"Diabetes mellitus, adult, + other specified manifestation",CTV3Map_Code_And_Term -C10yy,Other specified diabetes mellitus with other spec comps,CTV3Map_Code_And_Term -C10yz,Diabetes mellitus NOS with other specified manifestation,CTV3Map_Code_And_Term -C10z.,Diabetes mellitus with unspecified complication,CTV3Map_Code_And_Term -C10z0,"Diabetes mellitus, juvenile type, + unspecified complication",CTV3Map_Code_And_Term -C10z1,"Diabetes mellitus, adult onset, + unspecified complication",CTV3Map_Code_And_Term -C10zy,Other specified diabetes mellitus with unspecified comps,CTV3Map_Code_And_Term -C10zz,Diabetes mellitus NOS with unspecified complication,CTV3Map_Code_And_Term -C110.,Coma: [hypoglycaemic] or [insulin],CTV3_Children -C110z,Hypoglycaemic coma NOS,CTV3_Children -Cyu20,[X]Other specified diabetes mellitus,CTV3Map_Code_And_Term -Cyu21,[X]Malnutrit-relat diabetes mellitus with other spec comps,CTV3_Children -Cyu22,[X]Malnutrit-related diabetes mellitus with unspec complics,CTV3_Children -Cyu23,[X]Unspecified diabetes mellitus with renal complications,CTV3Map_Code_And_Term -F1711,Diabetic autonomic neuropathy,CTV3Map_Code_And_Term -F3450,Diabetic mononeuritis multiplex,CTV3Map_Code_And_Term -F35z0,Diabetic mononeuritis NOS,CTV3Map_Code_And_Term -F372.,Diabetic neuropathy &/or diabetic polyneuropathy,CTV3_Children -F3720,Acute painful diabetic neuropathy,CTV3Map_Code_And_Term -F3721,Chronic painful diabetic neuropathy,CTV3Map_Code_And_Term -F3722,Asymptomatic diabetic neuropathy,CTV3Map_Code_And_Term -F3813,(Myasth syndr due to diab amyotroph) or (diab amyotroph),QOF -F3y0.,Diabetic mononeuropathy,CTV3_Children -F420.,Diabetic retinopathy,CTV3Map_Code_And_Term -F4200,Background diabetic retinopathy,CTV3Map_Code_And_Term -F4201,Proliferative diabetic retinopathy,CTV3Map_Code_And_Term -F4202,Preproliferative diabetic retinopathy,CTV3Map_Code_And_Term -F4203,Advanced diabetic maculopathy,CTV3Map_Code_And_Term -F420z,Diabetic retinopathy NOS,CTV3Map_Code_And_Term -F4407,Diabetic iritis,CTV3Map_Code_And_Term -F4640,Diabetic cataract,CTV3Map_Code_And_Term -G73y0,Diabetic peripheral angiopathy,CTV3Map_Code_And_Term -K01x1,Nephrotic syndrome in diabetes mellitus,CTV3Map_Code_And_Term -Kyu03,[X]Glomerular disorders in diabetes mellitus,CTV3Map_Code_And_Term -Lyu29,"[X]Pre-existing diabetes mellitus, unspecified",CTV3Map_Code_And_Term -M0372,Cellulitis in diabetic foot,CTV3Map_Code_And_Term -M2710,Ischaemic ulcer diabetic foot,CTV3Map_Code_And_Term -M2711,Neuropathic diabetic ulcer - foot,CTV3Map_Code_And_Term -M2712,Mixed diabetic ulcer - foot,CTV3Map_Code_And_Term -N0300,Diabetic hand syndrome,CTV3Map_Code_And_Term -N0301,Diabetic neuropathic arthropathy,CTV3Map_Code_And_Term -Q441.,Neonatal diabetes mellitus,CTV3_Children -R0542,[D]Gangrene of toe in diabetic,CTV3Map_Code_And_Term -R0543,[D]Widespread diabetic foot gangrene,CTV3Map_Code_And_Term -X00Ag,Diabetic neuropathy,CTV3Map_Code_And_Term -X00Ah,Diabetic distal sensorimotor polyneuropathy,CTV3_Children -X00Ai,Diabetic acute painful polyneuropathy,CTV3_Children -X00Aj,Diabetic chronic painful polyneuropathy,CTV3_Children -X00Ak,Diabetic asymmetric polyneuropathy,CTV3_Children -X00Al,Diabetic mononeuropathy,CTV3Map_Code_And_Term -X00Am,Diabetic truncal radiculopathy,CTV3_Children -X00An,Diabetic thoracic radiculopathy,CTV3_Children -X00dF,Visually threatening diabetic retinopathy,CTV3_Children -X00dG,Diabetic maculopathy,CTV3Map_Code_And_Term -X00dH,Proliferative diabetic retinopathy new vessels on disc,CTV3_Children -X00dI,Proliferative diabet retinop new vessel elsewhere than disc,CTV3_Children -X00dJ,Diabetic traction retinal detachment,CTV3_Children -X30Kk,Diabetic nephropathy,CTV3Map_Code_And_Term -X30Kl,Microalbuminuric diabetic nephropathy,CTV3_Children -X30Km,Proteinuric diabetic nephropathy,CTV3Map_Code_And_Term -X40J4,Type I diabetes mellitus,CTV3Map_Code_And_Term -X40J5,Type II diabetes mellitus,CTV3Map_Code_And_Term -X40J6,Insulin treated Type 2 diabetes mellitus,CTV3Map_Code_And_Term -X40JG,Genetic syndromes of diabetes mellitus,CTV3_Children -X40JI,Diabetes mellitus autosomal dominant,CTV3Map_Code_And_Term -X40JJ,Diabetes mellitus autosomal dominant type 2,CTV3Map_Code_And_Term -X40JV,"Hypogonadism,diab mell,alopec,ment retar electro abnorm",QOF -X40JW,"Megaloblastic anaemia,diab mell and sensorineural deafness",QOF -X40JX,"Pineal hyperplasia,ins res diab mell and somatic abnorm",QOF -X40JY,Insulin-dependent diabetes mellitus secretory diarrhoea synd,CTV3_Children -X40JZ,Diabetes-deafness syndrome maternally transmitted,CTV3_Children -X40Ja,Abnormal metabolic state in diabetes mellitus,CTV3_Children -X40Jb,Diabetic severe hyperglycaemia,CTV3_Children -X40Jc,Poor glycaemic control,CTV3_Children -X40Je,Acute hyperglycaemia,CTV3_Children -X40Jj,Pregnancy and insulin-dependent diabetes mellitus,QOF -X40Jk,Pregnancy and non-insulin-dependent diabetes mellitus,QOF -X40Jo,Insulin coma,CTV3Map_Code_And_Term -X40Jq,Hypoglycaemic event in diabetes,CTV3Map_Code_And_Term -X40Jr,Hypoglycaemic state in diabetes,QOF -X40Js,Somogyi phenomenon,QOF -X40Jt,Nocturnal hypoglycaemia,QOF -X40KG,Insulin resistance in diabetes,QOF -X50E7,Insulin lipohypertrophy,CTV3Map_Code_And_Term -X50GO,Soft tissue complication of diabetes mellitus,QOF -X50GP,Diabetic dermopathy,QOF -X50GQ,Diabetic bulla,QOF -X50GR,Diabetic thick skin syndrome,QOF -X50GT,Diabetic rubeosis,QOF -X74WS,Diabetic monitoring status,High_Level_SNOMED -XE10E,"Diabetes mellitus, juvenile type, no mention of complication",CTV3Map_Code_And_Term -XE10F,"Diabetes mellitus, adult onset, no mention of complication",CTV3Map_Code_And_Term -XE10G,Diabetes mellitus with renal manifestation,CTV3Map_Code_And_Term -XE10H,Diabetes mellitus with neurological manifestation,CTV3Map_Code_And_Term -XE10I,Diabetes mellitus with peripheral circulatory disorder,CTV3Map_Code_And_Term -XE10J,Hypoglycaemic coma,CTV3Map_Code_Only -XE128,Diabetes mellitus (& [ketoacidosis]),CTV3_Children -XE12A,Diabetes mellitus: [adult onset] or [noninsulin dependent],CTV3_Children -XE12C,Diabetes mellitus: [juvenile] or [insulin dependent],CTV3_Children -XE12E,Diabetes + nephropathy (& [Kimmelstiel-Wilson syndrome]),CTV3_Children -XE12G,Diabetes + eye manifestation (& [cataract] or [retinopathy]),CTV3_Children -XE12I,Diabetes + neuropathy (& [amyotrophy]),CTV3_Children -XE12K,Diabetes: [peripheral circulatory disease] or [gangrene],CTV3_Children -XE12M,Diabetes with other complications,CTV3_Children -XE12Q,Hypoglycaemic coma (& [insulin]),CTV3_Children -XE15k,Diabetic polyneuropathy,CTV3Map_Code_And_Term -XE15n,Myasthenic syndrome due to diabetic amyotrophy,CTV3Map_Code_And_Term -XE18r,(Secondary cataract) or (diabetic cataract),High_Level_SNOMED -XE1T2,Diabetic monitoring - injection sites,CTV3Map_Code_And_Term -XE1T3,Diabetic - poor control,CTV3Map_Code_And_Term -XE1V0,Diabetic treatment changed (& [date]),CTV3_Children -XE1V2,Diabetic - poor control (& [unstable]),CTV3_Children -XE24t,Hb. A1C - diabetic control,CTV3Map_Code_And_Term -XE2Nd,Diabetes monitoring admin.,High_Level_SNOMED -XE2Ne,Diabetes monitoring check done,High_Level_SNOMED -XM0cY,Diabetes treatment satisfaction questionnaire,CTV3Map_Code_And_Term -XM0cZ,Diabetes wellbeing questionnaire,CTV3Map_Code_And_Term -XM0q4,Diabetic coma,QOF -XM19i,[EDTA]Diabetes Type I associated with renal failure,CTV3_Children -XM19j,[EDTA] Diabetes Type II associated with renal failure,CTV3_Children -XM1Qx,Diabetes mellitus with gangrene,CTV3Map_Code_And_Term -XM1Rs,Diabetes clinic administration,High_Level_SNOMED -XM1Xk,Unstable diabetes,CTV3Map_Code_And_Term -XSETH,Maturity onset diabetes mellitus in young,CTV3_Children -XSETp,Diabetes mellitus due to insulin receptor antibodies,CTV3_Children -Xa0lK,Diabetic (femoral mononeuropathy) & (Diabetic amyotrophy),QOF -Xa1J5,Diabetic foot,QOF -Xa2h7,Dietary advice for diabetes mellitus,High_Level_SNOMED -Xa2h9,Dietary advice for type I diabetes,High_Level_SNOMED -Xa2hA,Dietary advice for type II diabetes,High_Level_SNOMED -Xa3ee,Diabetes with ketoacidosis - no coma,CTV3_Children -Xa4g7,Unstable type I diabetes mellitus,CTV3Map_Code_And_Term -Xa9FG,Postpancreatectomy hypoinsulinaemia,QOF -XaA6b,Perceived control of insulin-dependent diabetes,High_Level_SNOMED -XaBLf,O/E - Right diabetic foot at risk,CTV3Map_Code_And_Term -XaBLg,O/E - Left diabetic foot at risk,CTV3Map_Code_And_Term -XaBTC,Referral to diabetic liaison nurse,High_Level_SNOMED -XaBU8,Diabetes monitoring call,High_Level_SNOMED -XaBU9,Diabetes monitoring status,High_Level_SNOMED -XaBZQ,Subcutaneous injection of insulin,CTV3Map_Code_And_Term -XaBuj,Education score - diabetes,High_Level_SNOMED -XaBul,Retinal abnormality - diabetes-related,CTV3Map_Code_And_Term -XaBun,Foot abnormality - diabetes-related,CTV3Map_Code_And_Term -XaBwj,H/O: Admission in last year for diabetes foot problem,CTV3Map_Code_And_Term -XaCES,HbA1 - diabetic control,CTV3Map_Code_And_Term -XaCET,HbA1 less than 7% - good control,CTV3_Children -XaCEU,HbA1 7-10% - borderline control,CTV3_Children -XaCEV,HbA1 greater than 10% - bad control,CTV3_Children -XaCGh,Diabetes monitoring invitation,QOF -XaCJ2,Diabetic hyperosmolar non-ketotic state,CTV3_Children -XaD2T,Advanced diabetic retinal disease,CTV3Map_Code_And_Term -XaE46,Referral to diabetes nurse,High_Level_SNOMED -XaE4q,Attending diabetes clinic,CTV3Map_Code_And_Term -XaE5T,Mild non proliferative diabetic retinopathy,CTV3_Children -XaE5U,Moderate non proliferative diabetic retinopathy,CTV3_Children -XaE5V,Severe non proliferative diabetic retinopathy,CTV3_Children -XaE5W,Proliferative diabetic retinopathy - non high risk,CTV3_Children -XaE5X,Proliferative diabetic retinopathy - high risk,CTV3Map_Code_And_Term -XaE5Y,Proliferative diabetic retinopathy - quiescent,CTV3_Children -XaE5Z,Proliferative diabetic retinopathy - iris neovascularisation,CTV3_Children -XaE5a,Diabetic vitreous haemorrhage,QOF -XaE5c,Diabetic macular oedema,QOF -XaEHw,[V]Admitted for conversion to insulin,CTV3Map_Code_And_Term -XaEHx,[V]Admitted for commencement of insulin,CTV3Map_Code_And_Term -XaEJQ,Seen in diabetic eye clinic,CTV3Map_Code_And_Term -XaELP,Type I diabetes mellitus without complication,CTV3Map_Code_And_Term -XaELQ,Type II diabetes mellitus without complication,CTV3Map_Code_And_Term -XaEVO,Diffuse diabetic maculopathy,CTV3_Children -XaEVP,Focal diabetic maculopathy,CTV3_Children -XaEVS,Ischaemic diabetic maculopathy,CTV3_Children -XaEVT,Mixed diabetic maculopathy,CTV3_Children -XaEgI,Diabetic on insulin and oral treatment,CTV3Map_Code_And_Term -XaEnn,Type I diabetes mellitus with mononeuropathy,CTV3Map_Code_And_Term -XaEno,Type I diabetes mellitus with polyneuropathy,CTV3Map_Code_And_Term -XaEnp,Type II diabetes mellitus with mononeuropathy,CTV3Map_Code_And_Term -XaEnq,Type II diabetes mellitus with polyneuropathy,CTV3Map_Code_And_Term -XaF04,Type I diabetes mellitus with nephropathy,CTV3Map_Code_And_Term -XaF05,Type II diabetes mellitus with nephropathy,CTV3Map_Code_And_Term -XaFWG,Type I diabetes mellitus with hypoglycaemic coma,CTV3Map_Code_And_Term -XaFWI,Type II diabetes mellitus with hypoglycaemic coma,CTV3Map_Code_And_Term -XaFm8,Type I diabetes mellitus with diabetic cataract,CTV3Map_Code_And_Term -XaFmA,Type II diabetes mellitus with diabetic cataract,CTV3Map_Code_And_Term -XaFmK,Type I diabetes mellitus with peripheral angiopathy,CTV3Map_Code_And_Term -XaFmL,Type I diabetes mellitus with arthropathy,CTV3Map_Code_And_Term -XaFmM,Type I diabetes mellitus with neuropathic arthropathy,CTV3Map_Code_And_Term -XaFn7,Type II diabetes mellitus with peripheral angiopathy,CTV3Map_Code_And_Term -XaFn8,Type II diabetes mellitus with arthropathy,CTV3Map_Code_And_Term -XaFn9,Type II diabetes mellitus with neuropathic arthropathy,CTV3Map_Code_And_Term -XaFsp,Diabetes resolved,QOF -XaFvj,Diabetic lipid lowering diet,High_Level_SNOMED -XaFvk,Diabetic weight reducing diet,CTV3Map_Code_And_Term -XaFx7,Diab mellit insulin-glucose infus acute myocardial infarct,CTV3Map_Code_And_Term -XaIIe,Diabetes care by hospital only,CTV3Map_Code_And_Term -XaIIj,Diabetic retinopathy screening,CTV3Map_Code_And_Term -XaIP5,Non proliferative diabetic retinopathy,CTV3Map_Code_And_Term -XaIPk,O/E - diabetic maculopathy present both eyes,CTV3Map_Code_And_Term -XaIQS,Refer to diabetic foot screener,CTV3Map_Code_And_Term -XaIW8,High risk non proliferative diabetic retinopathy,CTV3Map_Code_And_Term -XaIeH,O/E - Right diabetic foot at low risk,CTV3Map_Code_And_Term -XaIeI,O/E - Right diabetic foot at high risk,CTV3Map_Code_And_Term -XaIeJ,O/E - Right diabetic foot - ulcerated,CTV3Map_Code_And_Term -XaIeK,O/E - Left diabetic foot - ulcerated,CTV3Map_Code_And_Term -XaIeL,O/E - Left diabetic foot at low risk,CTV3Map_Code_And_Term -XaIeM,O/E - Left diabetic foot at high risk,CTV3Map_Code_And_Term -XaIeR,O/E - Left diabetic foot at moderate risk,CTV3Map_Code_And_Term -XaIeS,O/E - Right diabetic foot at moderate risk,CTV3Map_Code_And_Term -XaIeT,Diabetic foot risk assessment,CTV3Map_Code_And_Term -XaIeU,Diabetic pre-pregnancy counselling,CTV3Map_Code_And_Term -XaIeo,Diabetes: shared care in pregnancy - diabetol and obstet,CTV3_Children -XaIfG,Type II diabetes on insulin,CTV3_Children -XaIfI,Type II diabetes on diet only,CTV3_Children -XaIfM,Diabetes medication review,CTV3Map_Code_And_Term -XaIok,Diabetic monitoring not required,High_Level_SNOMED -XaIrL,Diabetic diet - good compliance,High_Level_SNOMED -XaIrM,Diabetic diet - poor compliance,High_Level_SNOMED -XaIrf,Hyperosmolar non-ketotic state in type II diabetes mellitus,CTV3Map_Code_And_Term -XaIuE,Diabetic foot examination,CTV3Map_Code_And_Term -XaIyt,Diabetic peripheral neuropathy screening,CTV3Map_Code_And_Term -XaIyu,Hypoglycaemic attack requiring 3rd party assistance,High_Level_SNOMED -XaIyz,Diabetes mellitus with persistent microalbuminuria,CTV3_Children -XaIz0,Diabetes mellitus with persistent proteinuria,CTV3_Children -XaIzM,Type 1 diabetes mellitus with persistent proteinuria,CTV3Map_Code_And_Term -XaIzN,Type 1 diabetes mellitus with persistent microalbuminuria,CTV3Map_Code_And_Term -XaIzQ,Type II diabetes mellitus with persistent proteinuria,CTV3Map_Code_And_Term -XaIzR,Type II diabetes mellitus with persistent microalbuminuria,CTV3Map_Code_And_Term -XaJ4Q,Exception reporting: diabetes quality indicators,QOF -XaJ4h,Excepted from diabetes qual indicators: Patient unsuitable,QOF -XaJ4i,Excepted from diabetes quality indicators: Informed dissent,QOF -XaJ5j,Patient on maximal tolerated therapy for diabetes,CTV3Map_Code_And_Term -XaJEN,Seen in diabetic foot clinic,CTV3Map_Code_And_Term -XaJLa,Diabetic retinopathy 12 month review,CTV3Map_Code_And_Term -XaJLb,Diabetic retinopathy 6 month review,CTV3Map_Code_And_Term -XaJO3,Under care of diabetologist,CTV3Map_Code_And_Term -XaJO4,Under care of diabetes specialist nurse,High_Level_SNOMED -XaJO9,Under care of diabetic foot screener,CTV3Map_Code_And_Term -XaJOD,Diabetic retinopathy screening not indicated,CTV3Map_Code_And_Term -XaJOE,Diabetic foot examination not indicated,CTV3Map_Code_And_Term -XaJOO,Patient held diabetic record issued,CTV3Map_Code_And_Term -XaJOg,O/E - right eye background diabetic retinopathy,CTV3Map_Code_And_Term -XaJOh,O/E - left eye background diabetic retinopathy,CTV3Map_Code_And_Term -XaJOi,O/E - right eye preproliferative diabetic retinopathy,CTV3Map_Code_And_Term -XaJOj,O/E - left eye preproliferative diabetic retinopathy,CTV3Map_Code_And_Term -XaJOk,O/E - right eye proliferative diabetic retinopathy,CTV3Map_Code_And_Term -XaJOl,O/E - left eye proliferative diabetic retinopathy,CTV3Map_Code_And_Term -XaJOn,O/E - right eye diabetic maculopathy,CTV3Map_Code_And_Term -XaJOo,O/E - left eye diabetic maculopathy,CTV3Map_Code_And_Term -XaJQp,Type II diabetes mellitus with exudative maculopathy,CTV3Map_Code_And_Term -XaJSr,Type 1 diabetes mellitus with exudative maculopathy,CTV3Map_Code_And_Term -XaJUH,Insulin autoimmune syndrome,QOF -XaJYg,Diabetes clinical management plan,CTV3Map_Code_And_Term -XaJix,Diabetic foot examination declined,CTV3Map_Code_And_Term -XaJkQ,Diabetic retinopathy screening refused,CTV3Map_Code_And_Term -XaJlI,Pan retinal photocoagulation for diabetes,CTV3Map_Code_And_Term -XaKDG,O/E - right eye stable treated prolif diabetic retinopathy,CTV3Map_Code_And_Term -XaKDH,O/E - left eye stable treated prolif diabetic retinopathy,CTV3Map_Code_And_Term -XaKGs,Patient diabetes education review,QOF -XaKGy,Referral to diabetes structured education programme,QOF -XaKH0,Attended diabetes structured education programme,QOF -XaKHD,Transition of diabetes care options discussed,CTV3Map_Code_And_Term -XaKHh,O/E - right chronic diabetic foot ulcer,CTV3Map_Code_And_Term -XaKHi,O/E - left chronic diabetic foot ulcer,CTV3Map_Code_And_Term -XaKOF,Patient held diabetic record declined,High_Level_SNOMED -XaKSn,Diabetes care plan agreed,CTV3Map_Code_And_Term -XaKSp,Patient offered diabetes structured education programme,QOF -XaKT5,Diabetic patient unsuitable for digital retinal photography,CTV3Map_Code_And_Term -XaKaW,Diabetic retinopathy screening offered,CTV3Map_Code_And_Term -XaKbu,Discharged from care of diabetes specialist nurse,CTV3Map_Code_And_Term -XaKcS,O/E - sight threatening diabetic retinopathy,CTV3Map_Code_And_Term -XaKjW,Diabetic monitoring - injection site check declined,CTV3_Children -XaKjX,Diabetic monitoring - injection site not checked,CTV3_Children -XaKjY,Hypoglycaemic warning impaired,QOF -XaKjZ,Hypoglycaemic warning good,QOF -XaKtr,Insulin therapy declined,CTV3Map_Code_And_Term -XaKvV,Insulin needles changed daily,CTV3Map_Code_And_Term -XaKvW,Insulin needles changed for each injection,CTV3Map_Code_And_Term -XaKwQ,Diabetic 6 month review,CTV3Map_Code_And_Term -XaKyW,Type 1 diabetes mellitus with gastroparesis,CTV3Map_Code_And_Term -XaKyX,Type II diabetes mellitus with gastroparesis,CTV3Map_Code_And_Term -XaKzO,Referral to multidisciplinary diabetic clinic,High_Level_SNOMED -XaL1R,Insulin needles changed less than once a day,CTV3Map_Code_And_Term -XaL1S,Did not attend diabetic retinopathy clinic,CTV3Map_Code_And_Term -XaL2E,Diabetic monitoring - lower risk albumin excretion,High_Level_SNOMED -XaL2F,Diabetic monitoring - higher risk albumin excretion,High_Level_SNOMED -XaLMa,Referral to diabetic register,CTV3Map_Code_And_Term -XaLMy,Patient consent given for addition to diabetic register,CTV3Map_Code_And_Term -XaLP3,Referral to diabetic eye clinic,CTV3Map_Code_And_Term -XaLSk,Diabetic - adequate control,High_Level_SNOMED -XaLsL,Diabetic digital retinopathy screening offered,CTV3Map_Code_And_Term -XaMFF,Referral for diabetic retinopathy screening,CTV3Map_Code_And_Term -XaMdq,Insulin dose changed,CTV3Map_Code_And_Term -XaMhJ,Diabetes type 1 review,CTV3Map_Code_And_Term -XaMhK,Diabetes type II review,CTV3Map_Code_And_Term -XaMhQ,Referral to community diabetes specialist nurse,High_Level_SNOMED -XaMzI,Cystic fibrosis related diabetes mellitus,CTV3Map_Code_And_Term -XaN1z,Attend diabetes educ self manage ongo new diagn struct prog,QOF -XaNHW,Di struc educ prog co ([Di struc ed prog co] SNO map type),QOF -XaNT8,Attended XPERT diabetes structured education programme,CTV3Map_Code_And_Term -XaNTA,Attended DAFNE diabetes structured education programme,CTV3Map_Code_And_Term -XaNTB,DAFNE diabetes structured education programme completed,CTV3Map_Code_And_Term -XaNTC,DESMOND structured programme completed,QOF -XaNTD,XPERT diabetes structured education programme completed,CTV3Map_Code_And_Term -XaNTH,Diabetes structured education programme declined,QOF -XaNTQ,Referral to DAFNE diabetes structured education programme,CTV3Map_Code_And_Term -XaNTS,Referral to DESMOND diabetes structured programme,QOF -XaNTT,Referral to XPERT diabetes structured education programme,CTV3Map_Code_And_Term -XaNTa,Did not attend diabetes structured education programme,QOF -XaNTd,Did not complete diabetes structured education programme,QOF -XaNTe,Did not complete DAFNE diabetes structured education program,CTV3Map_Code_And_Term -XaNTf,Did not complete DESMOND structured programme,QOF -XaNTg,Did not complet XPERT diabetes structured education programm,CTV3Map_Code_And_Term -XaNU1,Did not attend DAFNE diabetes structured education programme,CTV3Map_Code_And_Term -XaNU2,Did not attend DESMOND structured programme,QOF -XaNU3,Did not attend XPERT diabetes structured education programme,CTV3Map_Code_And_Term -XaON1,Referral to diabetes special interest general practitioner,High_Level_SNOMED -XaOPt,Maternally inherited diabetes mellitus,CTV3Map_Code_And_Term -XaOPu,Latent autoimmune diabetes mellitus in adult,CTV3Map_Code_And_Term -XaP4P,Referral to children's diabetes nurse specialist,High_Level_SNOMED -XaP5E,Insulin initiation enhanced services administration,CTV3Map_Code_And_Term -XaP63,Insulin treatment initiated,CTV3Map_Code_And_Term -XaPQH,Diabetic foot screen,CTV3Map_Code_And_Term -XaPaa,Eligible for diabetic retinopathy screening,CTV3Map_Code_And_Term -XaPab,Ineligible for diabetic retinopathy screening,CTV3_Children -XaPac,Eligibility temporarily inactive for diabetic retinop screen,CTV3Map_Code_And_Term -XaPad,Eligibility permanently inactive for diabetic retinop screen,CTV3_Children -XaPbv,Does rotate site of insulin injection,High_Level_SNOMED -XaPem,Diabetic retinopathy screening administrative status,CTV3Map_Code_And_Term -XaPen,Impaired vision due to diabetic retinopathy,CTV3Map_Code_And_Term -XaPjH,Excluded from diabetic retinopathy screening as moved away,CTV3Map_Code_And_Term -XaPjI,Excluded from diabetic retinopathy screening as deceased,CTV3Map_Code_And_Term -XaPjJ,Excluded diabetc retinop screen as under care ophthalmolgist,CTV3Map_Code_And_Term -XaPjK,Excluded from diabetic retinopathy screening as blind,CTV3Map_Code_And_Term -XaPjL,Excluded from diabetic retinop screen as no longer diabetic,CTV3_Children -XaPjM,Declined diabetic retinopathy screening,CTV3Map_Code_And_Term -XaPjN,Excluded frm diab retinop screen as no currnt contct details,CTV3_Children -XaPjO,Excluded frm diabetic retinopathy screen as terminal illness,CTV3Map_Code_And_Term -XaPjP,Excluded from diabetic retinopthy screen as learn disability,CTV3Map_Code_And_Term -XaPjQ,Excluded from diabetic retinopathy screen physical disorder,CTV3Map_Code_And_Term -XaPjR,Excluded from diabetic retinopathy screening,CTV3_Children -XaPmW,Diabetic femoral mononeuropathy,CTV3_Children -XaPmX,Diabetic amyotrophy,CTV3Map_Code_And_Term -XaQGH,Discharged from diabetes shared care programme,High_Level_SNOMED -XaQdT,Diabetes self management plan,CTV3_Children -XaQjs,Unsuitable for diabetes year of care programme,CTV3_Children -XaR8L,Education in self management of diabetes,QOF -XaRGt,Diabetic on subcutaneous treatment,High_Level_SNOMED -XaX0F,Excepted from diabetes qual indicators: service unavailable,QOF -XaX1n,Diabetes monitor invitation by SMS (short message service),QOF -XaX3o,Diabetic dietary review,QOF -XaX3p,Type I diabetic dietary review,CTV3Map_Code_And_Term -XaX3q,Type II diabetic dietary review,CTV3Map_Code_And_Term -XaX3r,Diabetic dietary review declined,QOF -XaX49,Referral to type I diabetes structured education programme,QOF -XaX5D,Diabetes structured education programme completed,QOF -XaX6J,O/E - Right diabetic foot at increased risk,CTV3Map_Code_And_Term -XaX6K,O/E - Left diabetic foot at increased risk,CTV3Map_Code_And_Term -XaX8e,Advised ([?AND/OR advice ?AND/OR eductn]) diabetes driving,High_Level_SNOMED -XaXH5,Diabetic monitoring - injection sites normal,CTV3_Children -XaXH6,Diabetic monitoring - injection sites abnormal,CTV3_Children -XaXHD,Did not attend diabetes foot screening,CTV3Map_Code_And_Term -XaXOw,Incretin mimetic dose changed,CTV3_Children -XaXZB,H/O: autosomal dominant diabetes mellitus,QOF -XaXZR,H/O: diabetes mellitus type 2,QOF -XaXZv,H/O: diabetes mellitus type 1,QOF -XaXbW,Symptomatic diabetic peripheral neuropathy,CTV3_Children -XaXfs,Diabetic retinopathy detected by national screening program,CTV3_Children -XaXgv,Diabetic erectile dysfunction review,CTV3Map_Code_And_Term -XaXhE,Diabetic assessment of erectile dysfunction,CTV3Map_Code_And_Term -XaXkZ,Referral to DESMOND structured programme declined,QOF -XaXoT,No evidence of diabetic nephropathy,CTV3Map_Code_And_Term -XaXv9,Diabetes care plan declined,CTV3Map_Code_And_Term -XaYWU,Referral to diabetic clinic,High_Level_SNOMED -XaYZP,Diabetes self-management plan review,CTV3Map_Code_And_Term -XaYaB,Referral to community diabetes service,CTV3Map_Code_And_Term -XaYbB,Diabetes self-management plan agreed,CTV3Map_Code_And_Term -XaZCO,Provision of diabetes clinical summary,CTV3Map_Code_And_Term -XaZKr,Insulin administration education,CTV3Map_Code_And_Term -XaZMQ,Diabetes quality of life questionnaire,High_Level_SNOMED -XaZNW,Referral to community diabetes specialist nurse declined,CTV3Map_Code_And_Term -XaZRZ,Referral to community diabetes clinic,CTV3Map_Code_And_Term -XaZS6,Date insulin pump therapy started,CTV3_Children -XaZig,Diabetes clinical pathway,CTV3Map_Code_And_Term -XaZlw,Does monitor blood glucose level before driving,High_Level_SNOMED -XaZpJ,Provision of written information about diabetes and driving,CTV3Map_Code_And_Term -XaZuQ,Referral to DAFNE diabetes structured educn prog declined,CTV3Map_Code_And_Term -XaZw5,Diabetic foot screening invitation,CTV3Map_Code_And_Term -XaZw7,Diabetic foot screening invitation first letter,CTV3Map_Code_And_Term -XaZw8,Diabetic foot screening invitation second letter,CTV3Map_Code_And_Term -XaZyM,Diabetic foot screening invitation third letter,CTV3Map_Code_And_Term -Xaa8r,Erectile dysfunction due to diabetes mellitus,CTV3Map_Code_And_Term -XaaCR,In-house diabetic foot screening,CTV3Map_Code_And_Term -XaaCS,In-house diabetic foot screening first appointment,CTV3_Children -XaaCU,In-house diabetic foot screening follow-up appointment,CTV3_Children -XaaJJ,Conversion to insulin in secondary care,CTV3Map_Code_And_Term -XaaJK,Conversion to insulin by diabetes specialist nurse,CTV3Map_Code_And_Term -XaaNP,Insulin passport not checked,CTV3Map_Code_And_Term -XaaaR,Education about diabetes and driving,CTV3Map_Code_And_Term -XaadP,Diabetes structured education programme not available,CTV3Map_Code_And_Term -XaaeP,Non-diabetic hyperglycaemia,QOF -Xaag1,Diabetes Year of Care annual review,CTV3Map_Code_And_Term -Xaaq3,Hypoglycaemic warning absent,QOF -XabAX,Diabetes Distress Scale 17 item,High_Level_SNOMED -XabQM,Conversion to non-insulin injectable medication,CTV3Map_Code_And_Term -XabZd,Diabetic foot care education,CTV3Map_Code_And_Term -Xabhn,Discharge from secondary care diabetes service,CTV3Map_Code_And_Term -XabjM,Enquiry about diabetic erectile dysfunction declined,CTV3Map_Code_And_Term -Xac0x,Diabetic peripheral neuropathic pain,CTV3Map_Code_And_Term -XacIu,Joint consultn pracse nurse & comm diabetes specialist nurse,CTV3Map_Code_And_Term -XacXh,Diabetic on non-insulin injectable medication,CTV3Map_Code_And_Term -XacXr,Provision of diabetes identity card,High_Level_SNOMED -XacY8,Has diabetes identity card,High_Level_SNOMED -XaccX,Diabetic injection administration education,CTV3Map_Code_And_Term -XaceC,Not suitable for DESMOND programme,QOF -XacoB,Maturity onset diabetes of the young type 5,CTV3_Children -XacsX,Diabetic on oral treatment and glucagon-like peptide 1,CTV3Map_Code_And_Term -XacsY,Diabetic on insulin and glucagon-like peptide 1,CTV3Map_Code_And_Term -Xacu2,Recommendation self-refer for diabetes structured education,High_Level_SNOMED -Xad5D,Diabetic carbohydrate counting diet,CTV3Map_Code_And_Term -XaeBz,Under care of hospital-based diabetes specialist nurse,High_Level_SNOMED -XaeC0,Under care of community-based diabetes specialist nurse,High_Level_SNOMED -XaeWH,X-PERT First Steps diabetes self-management programme complt,High_Level_SNOMED -Xaes7,Hypoglycaemic attack - attendance by ambulance crew,High_Level_SNOMED -Xaffg,Type 2 diabetes mellitus risk assessment invitation,QOF -Xaffh,Type 2 diabetes mellitus risk assessment inv first letter,QOF -Xaffi,Type 2 diabetes mellitus risk assessment inv second letter,QOF -Xaffj,Type 2 diabetes mellitus risk assessment inv third letter,QOF -Xaffk,Type 2 diabetes mellitus risk assessment verbal invitation,QOF -Xaffl,Type 2 diabetes mellitus risk assessment telephone inv,QOF -Xaffm,Type 2 diabetes mellitus risk assessment inv SMS text msg,QOF -Xafj0,Diabetes monitoring short msg service text msg 1st invitaton,QOF -Xafj1,Diabetes monitoring short msg service text msg 2nd invitaton,QOF -Xafj2,Diabetes monitoring short msg service text msg 3rd invitaton,QOF -XafjT,Eating disorder co-occurrent with diabetes mellitus type 1,QOF -XagLc,Diabetes monitoring invitation email,QOF -Xagk3,Skin ulcer associated with diabetes mellitus,CTV3Map_Code_And_Term -Y0022,Age Diabetes Diagnosed,CTV3_Children -Y0502,No Diabetic Retinopathy,CTV3_Children -Y0505,Advanced Artificial Eye Disease,CTV3_Children -Y0c48,Diabetic foot examined left,CTV3_Children -Y0c49,Diabetic foot examined right,CTV3_Children -Y1f9a,Quality and Outcomes Framework diabetes mellitus quality indicator-related care invitation (procedure),QOF -Y204f,Remote diabetes structured education and support programme commenced,QOF -Y205a,Remote diabetes structured education and support programme completed,QOF -Y205b,Did not commence remote structured diabetes education and support programme,QOF -Y20bf,Change in insulin dose,CTV3_Children -Y9993,Unspecified diabetes mellitus,CTV3_Children -YX128,Attending Diabetes satellite clinic,CTV3_Children \ No newline at end of file diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-high-dose-long-acting-opioids-openprescribing-dmd.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-high-dose-long-acting-opioids-openprescribing-dmd.csv deleted file mode 100644 index 922454275..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-high-dose-long-acting-opioids-openprescribing-dmd.csv +++ /dev/null @@ -1,290 +0,0 @@ -code,term,dmd_id,type,bnf_code -10724911000001106,Fentanyl 50micrograms/hour transdermal patches,10724911000001106,AMP,0407020A0AAAFAF -10725111000001107,Fentanyl 75micrograms/hour transdermal patches,10725111000001107,AMP,0407020A0AAAGAG -10725311000001109,Fentanyl 100micrograms/hour transdermal patches,10725311000001109,AMP,0407020A0AAAHAH -11085311000001109,Matrifen 50micrograms/hour transdermal patches,11085311000001109,AMP,0407020A0BEACAF -11085711000001108,Matrifen 75micrograms/hour transdermal patches,11085711000001108,AMP,0407020A0BEADAG -11085911000001105,Matrifen 100micrograms/hour transdermal patches,11085911000001105,AMP,0407020A0BEAEAH -11492611000001102,Transtec 52.5micrograms/hour transdermal patches,11492611000001102,AMP, -11492811000001103,Transtec 70micrograms/hour transdermal patches,11492811000001103,AMP, -11929811000001101,OxyContin 40mg modified-release tablets,11929811000001101,AMP, -11930011000001101,OxyContin 80mg modified-release tablets,11930011000001101,AMP, -12874911000001104,Fentalis Reservoir 50micrograms/hour transdermal patches,12874911000001104,AMP,0407020A0BGABAF -12875011000001104,Fentalis Reservoir 75micrograms/hour transdermal patches,12875011000001104,AMP,0407020A0BGACAG -12875111000001103,Fentalis Reservoir 100micrograms/hour transdermal patches,12875111000001103,AMP,0407020A0BGADAH -12882011000001103,Mezolar Matrix 50micrograms/hour transdermal patches,12882011000001103,AMP,0407020A0BFACAF -12882411000001107,Mezolar Matrix 75micrograms/hour transdermal patches,12882411000001107,AMP,0407020A0BFADAG -12882611000001105,Mezolar Matrix 100micrograms/hour transdermal patches,12882611000001105,AMP,0407020A0BFAEAH -13440811000001103,Fentanyl 50micrograms/hour transdermal patches,13440811000001103,AMP,0407020A0AAAFAF -13441011000001100,Fentanyl 75micrograms/hour transdermal patches,13441011000001100,AMP,0407020A0AAAGAG -13441211000001105,Fentanyl 100micrograms/hour transdermal patches,13441211000001105,AMP,0407020A0AAAHAH -13567711000001108,Osmach 50micrograms/hour transdermal patches,13567711000001108,AMP,0407020A0BHABAF -13567911000001105,Osmach 75micrograms/hour transdermal patches,13567911000001105,AMP,0407020A0BHACAG -13568111000001108,Osmach 100micrograms/hour transdermal patches,13568111000001108,AMP,0407020A0BHADAH -14009111000001102,Transtec 52.5micrograms/hour transdermal patches,14009111000001102,AMP, -14009711000001101,Transtec 70micrograms/hour transdermal patches,14009711000001101,AMP, -14675111000001101,Transtec 52.5micrograms/hour transdermal patches,14675111000001101,AMP, -14683811000001104,Transtec 70micrograms/hour transdermal patches,14683811000001104,AMP, -14930611000001104,Filnarine SR 200mg tablets,14930611000001104,AMP,0407020Q0BMAEAG -15024011000001104,Fentanyl 50micrograms/hour transdermal patches,15024011000001104,AMP,0407020A0AAAFAF -15024211000001109,Fentanyl 75micrograms/hour transdermal patches,15024211000001109,AMP,0407020A0AAAGAG -15024411000001108,Fentanyl 100micrograms/hour transdermal patches,15024411000001108,AMP,0407020A0AAAHAH -15049811000001106,Durogesic DTrans 50micrograms/hour transdermal patches,15049811000001106,AMP, -15050011000001105,Durogesic DTrans 75micrograms/hour transdermal patches,15050011000001105,AMP, -15050211000001100,Durogesic DTrans 100micrograms/hour transdermal patches,15050211000001100,AMP, -15084611000001104,Fentanyl 100micrograms/hour transdermal patches,15084611000001104,AMP, -15085911000001109,Fentanyl 50micrograms/hour transdermal patches,15085911000001109,AMP, -15086111000001100,Fentanyl 75micrograms/hour transdermal patches,15086111000001100,AMP, -15234311000001109,Morphine 100mg modified-release tablets,15234311000001109,AMP, -15234911000001105,Morphine 60mg modified-release tablets,15234911000001105,AMP, -15302611000001107,Osmanil 50micrograms/hour transdermal patches,15302611000001107,AMP,0407020A0BLABAF -15302811000001106,Osmanil 75micrograms/hour transdermal patches,15302811000001106,AMP,0407020A0BLACAG -15303011000001109,Osmanil 100micrograms/hour transdermal patches,15303011000001109,AMP,0407020A0BLADAH -15363411000001101,Victanyl 50micrograms/hour transdermal patches,15363411000001101,AMP,0407020A0BMABAF -15363611000001103,Victanyl 75micrograms/hour transdermal patches,15363611000001103,AMP,0407020A0BMACAG -15363811000001104,Victanyl 100micrograms/hour transdermal patches,15363811000001104,AMP,0407020A0BMADAH -15851311000001104,Targinact 40mg/20mg modified-release tablets,15851311000001104,AMP,0407020AFBBADAD -15852811000001104,Oxycodone 40mg / Naloxone 20mg modified-release tablets,15852811000001104,VMP,0407020AFAAADAD -16220211000001105,OxyContin 40mg modified-release tablets,16220211000001105,AMP, -16220411000001109,OxyContin 80mg modified-release tablets,16220411000001109,AMP, -16565811000001101,Durogesic DTrans 50micrograms/hour transdermal patches,16565811000001101,AMP, -16566011000001103,Durogesic DTrans 75micrograms/hour transdermal patches,16566011000001103,AMP, -16566211000001108,Durogesic DTrans 100micrograms/hour transdermal patches,16566211000001108,AMP, -16653011000001108,Morphine 60mg modified-release tablets,16653011000001108,AMP, -16653211000001103,Morphine 100mg modified-release tablets,16653211000001103,AMP, -16653411000001104,Morphine 200mg modified-release tablets,16653411000001104,AMP,0407020Q0AAAGAG -17345411000001109,OxyContin 40mg modified-release tablets,17345411000001109,AMP, -17345611000001107,OxyContin 80mg modified-release tablets,17345611000001107,AMP, -17468211000001102,Transtec 52.5micrograms/hour transdermal patches,17468211000001102,AMP, -17906211000001101,Fentanyl 50micrograms/hour transdermal patches,17906211000001101,AMP, -17906411000001102,Fentanyl 75micrograms/hour transdermal patches,17906411000001102,AMP, -17906611000001104,Fentanyl 100micrograms/hour transdermal patches,17906611000001104,AMP, -18068611000001101,Transtec 52.5micrograms/hour transdermal patches,18068611000001101,AMP, -18068811000001102,Transtec 70micrograms/hour transdermal patches,18068811000001102,AMP, -18177311000001107,Transtec 70micrograms/hour transdermal patches,18177311000001107,AMP, -18575311000001107,Durogesic DTrans 100micrograms/hour transdermal patches,18575311000001107,AMP, -18575911000001108,Durogesic DTrans 50micrograms/hour transdermal patches,18575911000001108,AMP, -18576111000001104,Durogesic DTrans 75micrograms/hour transdermal patches,18576111000001104,AMP, -18604511000001101,OxyContin 40mg modified-release tablets,18604511000001101,AMP, -18604911000001108,OxyContin 80mg modified-release tablets,18604911000001108,AMP, -18641711000001104,OxyContin 120mg modified-release tablets,18641711000001104,AMP,0407020ADBCAFAP -18643311000001102,OxyContin 60mg modified-release tablets,18643311000001102,AMP,0407020ADBCAGAQ -18645511000001107,Oxycodone 120mg modified-release tablets,18645511000001107,VMP,0407020ADAAAPAP -18664411000001101,Palexia SR 150mg tablets,18664411000001101,AMP,0407020AGBBAEAE -18664711000001107,Palexia SR 200mg tablets,18664711000001107,AMP,0407020AGBBAFAF -18665211000001104,Palexia SR 250mg tablets,18665211000001104,AMP,0407020AGBBAGAG -18671911000001101,Tapentadol 150mg modified-release tablets,18671911000001101,VMP,0407020AGAAAEAE -18672011000001108,Tapentadol 200mg modified-release tablets,18672011000001108,VMP,0407020AGAAAFAF -18672111000001109,Tapentadol 250mg modified-release tablets,18672111000001109,VMP,0407020AGAAAGAG -19487111000001100,Fencino 50micrograms/hour transdermal patches,19487111000001100,AMP,0407020A0BQACAF -19487311000001103,Fencino 75micrograms/hour transdermal patches,19487311000001103,AMP,0407020A0BQADAG -19487511000001109,Fencino 100micrograms/hour transdermal patches,19487511000001109,AMP,0407020A0BQAEAH -19962711000001101,Durogesic DTrans 50micrograms/hour transdermal patches,19962711000001101,AMP, -19962911000001104,Durogesic DTrans 75micrograms/hour transdermal patches,19962911000001104,AMP, -19963111000001108,Durogesic DTrans 100micrograms/hour transdermal patches,19963111000001108,AMP, -20938111000001106,Longtec 40mg modified-release tablets,20938111000001106,AMP,0407020ADBEADAH -20938311000001108,Longtec 80mg modified-release tablets,20938311000001108,AMP,0407020ADBEAEAI -20969211000001103,Oxylan 40mg modified-release tablets,20969211000001103,AMP,0407020ADBFADAH -20969411000001104,Oxylan 80mg modified-release tablets,20969411000001104,AMP,0407020ADBFAEAI -21516511000001109,Candox 80mg modified-release tablets,21516511000001109,AMP,0407020ADBGAEAI -21516811000001107,Candox 40mg modified-release tablets,21516811000001107,AMP,0407020ADBGADAH -219511000001108,Filnarine SR 100mg tablets,219511000001108,AMP,0407020Q0BMADAH -22379811000001105,OxyContin 60mg modified-release tablets,22379811000001105,AMP, -22420411000001106,Oxylan 40mg modified-release tablets,22420411000001106,AMP,0407020ADBFAIAH -22420911000001103,Oxylan 80mg modified-release tablets,22420911000001103,AMP,0407020ADBFAJAI -23020811000001107,Dolocodon PR 40mg tablets,23020811000001107,AMP,0407020ADBIABAH -23446411000001102,Hapoctasin 52.5micrograms/hour transdermal patches,23446411000001102,AMP,0407020B0BGABAF -23446611000001104,Hapoctasin 70micrograms/hour transdermal patches,23446611000001104,AMP,0407020B0BGACAG -23449811000001106,Opiodur 75micrograms/hour transdermal patches,23449811000001106,AMP,0407020A0BRACAG -23450011000001105,Opiodur 100micrograms/hour transdermal patches,23450011000001105,AMP,0407020A0BRADAH -23450311000001108,Opiodur 50micrograms/hour transdermal patches,23450311000001108,AMP,0407020A0BRAEAF -23595111000001100,Fentanyl 50micrograms/hour transdermal patches,23595111000001100,AMP, -23595511000001109,Fentanyl 75micrograms/hour transdermal patches,23595511000001109,AMP, -23595711000001104,Fentanyl 100micrograms/hour transdermal patches,23595711000001104,AMP, -24099711000001102,Targinact 40mg/20mg modified-release tablets,24099711000001102,AMP, -24467711000001101,Reltebon 40mg modified-release tablets,24467711000001101,AMP,0407020ADBKADAH -24467911000001104,Reltebon 80mg modified-release tablets,24467911000001104,AMP,0407020ADBKAEAI -24559211000001101,Oxycodone 40mg modified-release tablets,24559211000001101,AMP, -24559411000001102,Oxycodone 80mg modified-release tablets,24559411000001102,AMP, -24560611000001100,Mylafent 50micrograms/hour transdermal patches,24560611000001100,AMP,0407020A0BUACAF -24560811000001101,Mylafent 75micrograms/hour transdermal patches,24560811000001101,AMP,0407020A0BUADAG -24561011000001103,Mylafent 100micrograms/hour transdermal patches,24561011000001103,AMP,0407020A0BUAEAH -24567511000001100,Oxycodone 40mg modified-release tablets,24567511000001100,AMP, -24567911000001107,Oxycodone 80mg modified-release tablets,24567911000001107,AMP, -27993311000001101,Reltebon 60mg modified-release tablets,27993311000001101,AMP,0407020ADBKAHAQ -2836411000001102,Durogesic 50micrograms transdermal patches,2836411000001102,AMP,0407020A0BBABAF -2836711000001108,Durogesic 75micrograms transdermal patches,2836711000001108,AMP,0407020A0BBACAG -2838111000001106,Durogesic 100micrograms transdermal patches,2838111000001106,AMP,0407020A0BBADAH -28489811000001100,Buprenorphine 52.5micrograms/hour transdermal patches,28489811000001100,AMP, -28490011000001102,Buprenorphine 70micrograms/hour transdermal patches,28490011000001102,AMP, -2883211000001103,MST Continus 60mg tablets,2883211000001103,AMP,0407020Q0BBACAI -2883611000001101,MST Continus 100mg tablets,2883611000001101,AMP,0407020Q0BBADAH -2897211000001106,OxyContin 40mg modified-release tablets,2897211000001106,AMP,0407020ADBCACAH -2898111000001104,OxyContin 80mg modified-release tablets,2898111000001104,AMP,0407020ADBCADAI -29676711000001106,Oxeltra 80mg modified-release tablets,29676711000001106,AMP,0407020ADBLABAI -29677411000001103,Oxeltra 60mg modified-release tablets,29677411000001103,AMP,0407020ADBLADAQ -29677611000001100,Oxeltra 40mg modified-release tablets,29677611000001100,AMP,0407020ADBLAEAH -29838211000001107,Longtec 120mg modified-release tablets,29838211000001107,AMP,0407020ADBEAFAP -29838811000001108,Longtec 60mg modified-release tablets,29838811000001108,AMP,0407020ADBEAIAQ -30002211000001101,Yemex 50micrograms/hour transdermal patches,30002211000001101,AMP,0407020A0BVACAF -30002711000001108,Yemex 75micrograms/hour transdermal patches,30002711000001108,AMP,0407020A0BVADAG -30003011000001102,Yemex 100micrograms/hour transdermal patches,30003011000001102,AMP,0407020A0BVAEAH -30028111000001103,Buprenorphine 52.5micrograms/hour transdermal patches,30028111000001103,AMP, -30028311000001101,Buprenorphine 70micrograms/hour transdermal patches,30028311000001101,AMP, -30055211000001103,Fentanyl 50micrograms/hour transdermal patches,30055211000001103,AMP, -30055411000001104,Fentanyl 75micrograms/hour transdermal patches,30055411000001104,AMP, -30055611000001101,Fentanyl 100micrograms/hour transdermal patches,30055611000001101,AMP, -30720811000001109,Abtard 40mg modified-release tablets,30720811000001109,AMP,0407020ADBMAEAH -30721411000001103,Abtard 60mg modified-release tablets,30721411000001103,AMP,0407020ADBMAGAQ -30721711000001109,Abtard 80mg modified-release tablets,30721711000001109,AMP,0407020ADBMAHAI -32133511000001104,Zomestine 80mg modified-release tablets,32133511000001104,AMP,0407020ADBNAAAI -32136711000001102,Zomestine 40mg modified-release tablets,32136711000001102,AMP,0407020ADBNABAH -32196811000001100,Carexil 40mg modified-release tablets,32196811000001100,AMP,0407020ADBDADAH -32197311000001107,Carexil 80mg modified-release tablets,32197311000001107,AMP,0407020ADBDAEAI -32484411000001105,Bupeaze 52.5micrograms/hour transdermal patches,32484411000001105,AMP,0407020B0BIABAF -32484611000001108,Bupeaze 70micrograms/hour transdermal patches,32484611000001108,AMP,0407020B0BIACAG -32643211000001102,Prenotrix 52.5micrograms/hour transdermal patches,32643211000001102,AMP,0407020B0BJABAF -32643711000001109,Prenotrix 70micrograms/hour transdermal patches,32643711000001109,AMP,0407020B0BJACAG -32904611000001109,Oxycodone 40mg modified-release tablets,32904611000001109,AMP, -32904811000001108,Oxycodone 80mg modified-release tablets,32904811000001108,AMP, -33546411000001107,Buplast 52.5micrograms/hour transdermal patches,33546411000001107,AMP,0407020B0BNABAF -33548111000001103,Buplast 70micrograms/hour transdermal patches,33548111000001103,AMP,0407020B0BNACAG -33629811000001105,Leveraxo 40mg modified-release tablets,33629811000001105,AMP,0407020ADBPAEAH -33630011000001105,Leveraxo 60mg modified-release tablets,33630011000001105,AMP,0407020ADBPAFAQ -33630211000001100,Leveraxo 80mg modified-release tablets,33630211000001100,AMP,0407020ADBPAGAI -34051311000001106,Onexila XL 40mg tablets,34051311000001106,AMP,0407020ADBQACAH -34052211000001105,Onexila XL 80mg tablets,34052211000001105,AMP,0407020ADBQADAI -34172111000001105,Relevtec 70micrograms/hour transdermal patches,34172111000001105,AMP,0407020B0BPACAG -34172311000001107,Relevtec 52.5micrograms/hour transdermal patches,34172311000001107,AMP,0407020B0BPABAF -3448811000001101,Transtec 52.5micrograms/hour transdermal patches,3448811000001101,AMP,0407020B0BDABAF -3449311000001104,Transtec 70micrograms/hour transdermal patches,3449311000001104,AMP,0407020B0BDACAG -34627111000001107,Oxycodone 60mg modified-release tablets,34627111000001107,AMP, -34911911000001105,Turgeon 52.5micrograms/hour transdermal patches,34911911000001105,AMP,0407020B0BSABAF -34912111000001102,Turgeon 70micrograms/hour transdermal patches,34912111000001102,AMP,0407020B0BSACAG -35359511000001107,Opiodur 50micrograms/hour transdermal patches,35359511000001107,AMP,0407020A0BRAHAF -35359711000001102,Opiodur 75micrograms/hour transdermal patches,35359711000001102,AMP,0407020A0BRAIAG -35359911000001100,Opiodur 100micrograms/hour transdermal patches,35359911000001100,AMP,0407020A0BRAJAH -35542911000001106,Renocontin 40mg modified-release tablets,35542911000001106,AMP,0407020ADBRAFAH -35543311000001100,Renocontin 60mg modified-release tablets,35543311000001100,AMP,0407020ADBRAGAQ -35543911000001104,Carlosafine 52.5micrograms/hour transdermal patches,35543911000001104,AMP,0407020B0BTABAF -35544111000001100,Carlosafine 70micrograms/hour transdermal patches,35544111000001100,AMP,0407020B0BTACAG -35847011000001108,Oxypro 40mg modified-release tablets,35847011000001108,AMP,0407020ADBSAFAH -35847211000001103,Oxypro 60mg modified-release tablets,35847211000001103,AMP,0407020ADBSAGAQ -35847411000001104,Oxypro 80mg modified-release tablets,35847411000001104,AMP,0407020ADBSAHAI -35857911000001109,Ixyldone 40mg modified-release tablets,35857911000001109,AMP,0407020ADBTAFAH -35858711000001108,Ixyldone 60mg modified-release tablets,35858711000001108,AMP,0407020ADBTAGAQ -35859011000001101,Ixyldone 80mg modified-release tablets,35859011000001101,AMP,0407020ADBTAHAI -35913811000001106,Buprenorphine 52.5micrograms/hour transdermal patches,35913811000001106,VMP,0407020B0AAAFAF -35913911000001101,Buprenorphine 70micrograms/hour transdermal patches,35913911000001101,VMP,0407020B0AAAGAG -36057211000001102,Hydromorphone 16mg modified-release capsules,36057211000001102,VMP,040702050AAAAAA -36057311000001105,Hydromorphone 24mg modified-release capsules,36057311000001105,VMP,040702050AAABAB -36119911000001103,Fentanyl 100micrograms/hour transdermal patches,36119911000001103,VMP,0407020A0AAAHAH -36120211000001106,Fentanyl 50micrograms/hour transdermal patches,36120211000001106,VMP,0407020A0AAAFAF -36120311000001103,Fentanyl 75micrograms/hour transdermal patches,36120311000001103,VMP,0407020A0AAAGAG -36125811000001101,Morphine 100mg modified-release capsules,36125811000001101,VMP,0407020Q0AAEBEB -36126211000001108,Morphine 100mg modified-release tablets,36126211000001108,VMP,0407020Q0AAAHAH -36126611000001105,Morphine 120mg modified-release capsules,36126611000001105,VMP,0407020Q0AADVDV -36126711000001101,Morphine 150mg modified-release capsules,36126711000001101,VMP,0407020Q0AADWDW -36126911000001104,Morphine 200mg modified-release capsules,36126911000001104,VMP,0407020Q0AAEIEI -36127011000001100,Morphine 200mg modified-release tablets,36127011000001100,VMP,0407020Q0AAAGAG -36127611000001107,Morphine 60mg modified-release capsules,36127611000001107,VMP,0407020Q0AAEHEH -36127711000001103,Morphine 60mg modified-release tablets,36127711000001103,VMP,0407020Q0AAAIAI -36127811000001106,Morphine 90mg modified-release capsules,36127811000001106,VMP,0407020Q0AADUDU -36130911000001104,Oxycodone 40mg modified-release tablets,36130911000001104,VMP,0407020ADAAAHAH -36131311000001105,Oxycodone 60mg modified-release tablets,36131311000001105,VMP,0407020ADAAAQAQ -36131511000001104,Oxycodone 80mg modified-release tablets,36131511000001104,VMP,0407020ADAAAIAI -37354511000001107,Durogesic DTrans 50micrograms/hour transdermal patches,37354511000001107,AMP, -37355011000001100,Durogesic DTrans 75micrograms/hour transdermal patches,37355011000001100,AMP, -37355511000001108,Durogesic DTrans 100micrograms/hour transdermal patches,37355511000001108,AMP, -37375011000001102,Transtec 52.5micrograms/hour transdermal patches,37375011000001102,AMP, -37375211000001107,Transtec 70micrograms/hour transdermal patches,37375211000001107,AMP, -37381811000001103,Matrifen 50micrograms/hour transdermal patches,37381811000001103,AMP, -37385611000001104,Matrifen 75micrograms/hour transdermal patches,37385611000001104,AMP, -37385811000001100,Matrifen 100micrograms/hour transdermal patches,37385811000001100,AMP, -37391311000001106,Targinact 40mg/20mg modified-release tablets,37391311000001106,AMP, -37421211000001102,Reltebon 40mg modified-release tablets,37421211000001102,AMP, -37632111000001103,Durogesic DTrans 100micrograms/hour transdermal patches,37632111000001103,AMP, -37632811000001105,Durogesic DTrans 50micrograms/hour transdermal patches,37632811000001105,AMP, -37633011000001108,Durogesic DTrans 75micrograms/hour transdermal patches,37633011000001108,AMP, -37704711000001109,Targinact 40mg/20mg modified-release tablets,37704711000001109,AMP, -3778011000001102,Zomorph 60mg modified-release capsules,3778011000001102,AMP,0407020Q0BKACEH -3778211000001107,MXL 60mg capsules,3778211000001107,AMP,0407020Q0BIABEH -37974911000001105,Opiodur 50micrograms/hour transdermal patches,37974911000001105,AMP,0407020A0BRAMAF -37975411000001101,Opiodur 75micrograms/hour transdermal patches,37975411000001101,AMP,0407020A0BRANAG -37975711000001107,Opiodur 100micrograms/hour transdermal patches,37975711000001107,AMP,0407020A0BRAPAH -38099211000001109,Matrifen 50micrograms/hour transdermal patches,38099211000001109,AMP, -38099411000001108,Matrifen 75micrograms/hour transdermal patches,38099411000001108,AMP, -38099611000001106,Matrifen 100micrograms/hour transdermal patches,38099611000001106,AMP, -38100611000001106,MST Continus 60mg tablets,38100611000001106,AMP, -38152711000001105,MST Continus 60mg tablets,38152711000001105,AMP, -38153011000001104,MST Continus 100mg tablets,38153011000001104,AMP, -38153211000001109,MST Continus 200mg tablets,38153211000001109,AMP, -38158711000001108,OxyContin 60mg modified-release tablets,38158711000001108,AMP, -38169111000001109,Targinact 40mg/20mg modified-release tablets,38169111000001109,AMP, -38420311000001107,Myloxifin 40mg/20mg modified-release tablets,38420311000001107,AMP,0407020AFBCACAD -38802811000001102,Oxyargin 40mg/20mg modified-release tablets,38802811000001102,AMP,0407020AFBDADAD -3881611000001107,Zomorph 100mg modified-release capsules,3881611000001107,AMP,0407020Q0BKADEB -3882211000001103,Morcap SR 100mg capsules,3882211000001103,AMP,0407020Q0BJACEB -3882611000001101,MXL 90mg capsules,3882611000001101,AMP,0407020Q0BIACDU -3882911000001107,MXL 150mg capsules,3882911000001107,AMP,0407020Q0BIAEDW -3883211000001109,MXL 120mg capsules,3883211000001109,AMP,0407020Q0BIADDV -38911511000001104,Mezolar Matrix 50micrograms/hour transdermal patches,38911511000001104,AMP, -38911711000001109,Mezolar Matrix 75micrograms/hour transdermal patches,38911711000001109,AMP, -38911911000001106,Mezolar Matrix 100micrograms/hour transdermal patches,38911911000001106,AMP, -39122311000001105,MST Continus 60mg tablets,39122311000001105,AMP, -39122511000001104,MST Continus 100mg tablets,39122511000001104,AMP, -394011000001106,MST Continus 200mg tablets,394011000001106,AMP,0407020Q0BBAEAG -39407211000001105,Longtec 40mg modified-release tablets,39407211000001105,AMP, -39407411000001109,Longtec 80mg modified-release tablets,39407411000001109,AMP, -39407611000001107,Longtec 120mg modified-release tablets,39407611000001107,AMP, -39585511000001109,Ationdo SR 150mg tablets,39585511000001109,AMP,0407020AGBCADAE -39585711000001104,Ationdo SR 200mg tablets,39585711000001104,AMP,0407020AGBCAEAF -39585911000001102,Ationdo SR 250mg tablets,39585911000001102,AMP,0407020AGBCAFAG -39969111000001109,Longtec 40mg modified-release tablets,39969111000001109,AMP, -4001411000001107,Palladone SR 16mg capsules,4001411000001107,AMP,040702050BBAFAA -4004111000001104,Palladone SR 24mg capsules,4004111000001104,AMP,040702050BBAGAB -40123311000001103,Longtec 60mg modified-release tablets,40123311000001103,AMP, -4035511000001101,Zomorph 200mg modified-release capsules,4035511000001101,AMP,0407020Q0BKAEEI -40461711000001106,Longtec 40mg modified-release tablets,40461711000001106,AMP, -40462111000001100,Longtec 60mg modified-release tablets,40462111000001100,AMP, -40462311000001103,Longtec 80mg modified-release tablets,40462311000001103,AMP, -4088311000001108,MST Continus suspension 60mg granules sachets,4088311000001108,AMP,0407020Q0BBAHDC -4088611000001103,MST Continus suspension 100mg granules sachets,4088611000001103,AMP,0407020Q0BBAIDD -4089211000001105,MST Continus suspension 200mg granules sachets,4089211000001105,AMP,0407020Q0BBAJDE -4110711000001101,Morphine 100mg modified-release granules sachets sugar free,4110711000001101,VMP,0407020Q0AADDDD -4110811000001109,Morphine 200mg modified-release granules sachets sugar free,4110811000001109,VMP,0407020Q0AADEDE -4110911000001104,Morphine 60mg modified-release granules sachets sugar free,4110911000001104,VMP,0407020Q0AADCDC -4388011000001106,MXL 200mg capsules,4388011000001106,AMP,0407020Q0BIAFEI -4527211000001108,Morphgesic SR 60mg tablets,4527211000001108,AMP,0407020Q0BNACAI -4527411000001107,Rhotard Morphine SR 60mg tablets,4527411000001107,AMP,0407020Q0BPACAI -4527911000001104,Morphgesic SR 100mg tablets,4527911000001104,AMP,0407020Q0BNADAH -4528311000001104,Rhotard Morphine SR 100mg tablets,4528311000001104,AMP,0407020Q0BPADAH -9089911000001100,Durogesic DTrans 50micrograms/hour transdermal patches,9089911000001100,AMP,0407020A0BBAJAF -9090111000001109,Durogesic DTrans 75micrograms/hour transdermal patches,9090111000001109,AMP,0407020A0BBAKAG -9090311000001106,Durogesic DTrans 100micrograms/hour transdermal patches,9090311000001106,AMP,0407020A0BBALAH -93411000001103,Filnarine SR 60mg tablets,93411000001103,AMP,0407020Q0BMACAI -9508211000001101,Tilofyl 50micrograms/hour transdermal patches,9508211000001101,AMP,0407020A0BDABAF -9508511000001103,Tilofyl 75micrograms/hour transdermal patches,9508511000001103,AMP,0407020A0BDACAG -9508911000001105,Tilofyl 100micrograms/hour transdermal patches,9508911000001105,AMP,0407020A0BDADAH -9708711000001107,Fentanyl 50micrograms/hour transdermal patches,9708711000001107,AMP, -9708911000001109,Fentanyl 75micrograms/hour transdermal patches,9708911000001109,AMP, -9709111000001104,Fentanyl 100micrograms/hour transdermal patches,9709111000001104,AMP, -322672007,VMP previous to 36057211000001102,322672007,VMP,040702050AAAAAA -322673002,VMP previous to 36057311000001105,322673002,VMP,040702050AAABAB -322696002,VMP previous to 36130911000001104,322696002,VMP,0407020ADAAAHAH -322697006,VMP previous to 36131511000001104,322697006,VMP,0407020ADAAAIAI -322714005,VMP previous to 36127711000001103,322714005,VMP,0407020Q0AAAIAI -322715006,VMP previous to 36126211000001108,322715006,VMP,0407020Q0AAAHAH -322716007,VMP previous to 36127011000001100,322716007,VMP,0407020Q0AAAGAG -322722003,VMP previous to 36127611000001107,322722003,VMP,0407020Q0AAEHEH -322723008,VMP previous to 36125811000001101,322723008,VMP,0407020Q0AAEBEB -322730002,VMP previous to 36127811000001106,322730002,VMP,0407020Q0AADUDU -322731003,VMP previous to 36126611000001105,322731003,VMP,0407020Q0AADVDV -322732005,VMP previous to 36126711000001101,322732005,VMP,0407020Q0AADWDW -322733000,VMP previous to 36126911000001104,322733000,VMP,0407020Q0AAEIEI -333920004,VMP previous to 36120211000001106,333920004,VMP,0407020A0AAAFAF -333921000,VMP previous to 36120311000001103,333921000,VMP,0407020A0AAAGAG -333922007,VMP previous to 36119911000001103,333922007,VMP,0407020A0AAAHAH -407896004,VMP previous to 35913811000001106,407896004,VMP,0407020B0AAAFAF -407897008,VMP previous to 35913911000001101,407897008,VMP,0407020B0AAAGAG -445146000,VMP previous to 36131311000001105,445146000,VMP,0407020ADAAAQAQ diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-hypertension.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-hypertension.csv deleted file mode 100644 index f263b0e78..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-hypertension.csv +++ /dev/null @@ -1,224 +0,0 @@ -CTV3ID,CTV3PreferredTermDesc,CTV3Source -14A2.,H/O: hypertension,CTV3Map_Code_And_Term -21261,Hypertension resolved,QOF -2466.,O/E - BP reading raised,QOF -2467.,O/E - BP reading very high,QOF -662..,Cardiac disease monitoring (& [hypertension]),CTV3_Children -6627.,Good hypertension control,CTV3Map_Code_And_Term -6628.,Poor hypertension control,CTV3Map_Code_And_Term -6629.,Hypertension:follow-up default,CTV3Map_Code_And_Term -662F.,Hypertension treatm. started,CTV3Map_Code_And_Term -662G.,Hypertensive treatm.changed,CTV3Map_Code_And_Term -662H.,Hypertension treatm.stopped,CTV3Map_Code_And_Term -662O.,On treatment for hypertension,CTV3_Children -662P.,Hypertension monitoring,CTV3_Children -8HT5.,Referral to hypertension clinic,CTV3Map_Code_And_Term -9N03.,Seen in hypertension clinic,High_Level_SNOMED -9N1y2,Seen in hypertension clinic,CTV3Map_Code_And_Term -9OI..,Hypertension admin: [monitoring] or [clinic],High_Level_SNOMED -9OI1.,Attends hypertension monitoring,CTV3Map_Code_And_Term -9OI3.,Hypertension monitoring offer default,CTV3Map_Code_And_Term -9OI4.,Hypertension monitoring first letter,CTV3Map_Code_And_Term -9OI4.,Hypertension monitoring first letter,QOF -9OI5.,Hypertension monitoring second letter,CTV3Map_Code_And_Term -9OI5.,Hypertension monitoring second letter,QOF -9OI6.,Hypertension monitoring third letter,CTV3Map_Code_And_Term -9OI6.,Hypertension monitoring third letter,QOF -9OI7.,Hypertension monitoring verbal invite,CTV3Map_Code_And_Term -9OI7.,Hypertension monitoring verbal invite,QOF -9OI8.,Hypertension monitoring telephone invite,CTV3Map_Code_And_Term -9OI8.,Hypertension monitoring telephone invite,QOF -9OIA.,Hypertension monitor (& check done),High_Level_SNOMED -9OIZ.,Hypertens.monitoring admin.NOS,CTV3Map_Code_And_Term -F4211,Hypertensive retinopathy,CTV3Map_Code_And_Term -G2...,Hypertensive disease,CTV3Map_Code_And_Term -G2...,Hypertensive disease,CTV3Map_Code_Only -G2...,Hypertensive disease,QOF -G20..,High blood pressure (& [essential hypertension]),CTV3_Children -G20..,High blood pressure (& [essential hypertension]),QOF -G200.,Malignant essential hypertension,CTV3Map_Code_And_Term -G200.,Malignant essential hypertension,QOF -G201.,Benign essential hypertension,CTV3Map_Code_And_Term -G201.,Benign essential hypertension,QOF -G202.,Systolic hypertension,CTV3Map_Code_And_Term -G202.,Systolic hypertension,QOF -G20z.,Hypertension NOS (& [essential]),CTV3_Children -G20z.,Hypertension NOS (& [essential]),QOF -G21..,Hypertensive heart disease,CTV3Map_Code_And_Term -G21..,Hypertensive heart disease,QOF -G210.,Malignant hypertensive heart disease,CTV3Map_Code_And_Term -G210.,Malignant hypertensive heart disease,QOF -G2100,Malignant hypertensive heart disease without CCF,CTV3Map_Code_And_Term -G2100,Malignant hypertensive heart disease without CCF,QOF -G2101,Malignant hypertensive heart disease with CCF,CTV3Map_Code_And_Term -G2101,Malignant hypertensive heart disease with CCF,QOF -G210z,Malignant hypertensive heart disease NOS,CTV3Map_Code_And_Term -G210z,Malignant hypertensive heart disease NOS,QOF -G211.,Benign hypertensive heart disease,CTV3Map_Code_And_Term -G211.,Benign hypertensive heart disease,QOF -G2110,Benign hypertensive heart disease without CCF,CTV3Map_Code_And_Term -G2110,Benign hypertensive heart disease without CCF,QOF -G2111,Benign hypertensive heart disease with CCF,CTV3Map_Code_And_Term -G2111,Benign hypertensive heart disease with CCF,QOF -G211z,Benign hypertensive heart disease NOS,CTV3Map_Code_And_Term -G211z,Benign hypertensive heart disease NOS,QOF -G21z.,Hypertensive heart disease NOS,CTV3Map_Code_And_Term -G21z.,Hypertensive heart disease NOS,QOF -G21z0,"Hypertensiv:[cardiomeg][heart dis NOS, no congest card fail]",CTV3_Children -G21z0,"Hypertensiv:[cardiomeg][heart dis NOS, no congest card fail]",QOF -G21z1,Hypertensive heart disease NOS with CCF,CTV3Map_Code_And_Term -G21z1,Hypertensive heart disease NOS with CCF,QOF -G22..,Hypertensive renal disease (& [nephrosclerosis]),CTV3_Children -G220.,Malignant hypertensive renal disease,CTV3Map_Code_And_Term -G221.,Benign hypertensive renal disease,CTV3Map_Code_And_Term -G222.,Hypertensive renal disease with renal failure,CTV3Map_Code_And_Term -G22z.,(Renal hypertension) or (hypertensive renal disease NOS),CTV3_Children -G23..,Hypertensive heart and renal disease,CTV3Map_Code_And_Term -G23..,Hypertensive heart and renal disease,QOF -G230.,Malignant hypertensive heart and renal disease,CTV3Map_Code_And_Term -G230.,Malignant hypertensive heart and renal disease,QOF -G231.,Benign hypertensive heart and renal disease,CTV3Map_Code_And_Term -G231.,Benign hypertensive heart and renal disease,QOF -G232.,Hypertensive heart&renal dis wth (congestive) heart failure,CTV3Map_Code_And_Term -G232.,Hypertensive heart&renal dis wth (congestive) heart failure,QOF -G233.,Hypertensive heart and renal disease with renal failure,CTV3Map_Code_And_Term -G233.,Hypertensive heart and renal disease with renal failure,QOF -G234.,Hyperten heart&renal dis+both(congestv)heart and renal fail,CTV3Map_Code_And_Term -G234.,Hyperten heart&renal dis+both(congestv)heart and renal fail,QOF -G23z.,Hypertensive heart and renal disease NOS,CTV3Map_Code_And_Term -G23z.,Hypertensive heart and renal disease NOS,QOF -G24..,Secondary hypertension,CTV3Map_Code_And_Term -G24..,Secondary hypertension,QOF -G240.,Malignant secondary hypertension,CTV3Map_Code_And_Term -G240.,Malignant secondary hypertension,QOF -G2400,Secondary malignant renovascular hypertension,CTV3Map_Code_And_Term -G2400,Secondary malignant renovascular hypertension,QOF -G240z,Secondary malignant hypertension NOS,CTV3Map_Code_And_Term -G240z,Secondary malignant hypertension NOS,QOF -G241.,Secondary benign hypertension,CTV3Map_Code_And_Term -G241.,Secondary benign hypertension,QOF -G2410,Secondary benign renovascular hypertension,CTV3Map_Code_And_Term -G2410,Secondary benign renovascular hypertension,QOF -G241z,Secondary benign hypertension NOS,CTV3Map_Code_And_Term -G241z,Secondary benign hypertension NOS,QOF -G244.,Hypertension secondary to endocrine disorders,CTV3Map_Code_And_Term -G244.,Hypertension secondary to endocrine disorders,QOF -G24z.,Secondary hypertension NOS,CTV3Map_Code_And_Term -G24z.,Secondary hypertension NOS,QOF -G24z0,Secondary renovascular hypertension NOS,CTV3Map_Code_And_Term -G24z0,Secondary renovascular hypertension NOS,QOF -G24zz,Secondary hypertension NOS,CTV3_Children -G24zz,Secondary hypertension NOS,QOF -G2y..,Other specified hypertensive disease,CTV3Map_Code_And_Term -G2y..,Other specified hypertensive disease,QOF -G2z..,Hypertensive disease NOS,CTV3Map_Code_And_Term -G2z..,Hypertensive disease NOS,QOF -G672.,Hypertensive: [encephalopathy] or [crisis],High_Level_SNOMED -Gyu2.,[X]Hypertensive diseases,CTV3Map_Code_And_Term -Gyu2.,[X]Hypertensive diseases,QOF -Gyu20,[X]Other secondary hypertension,CTV3Map_Code_And_Term -Gyu20,[X]Other secondary hypertension,QOF -Gyu21,[X]Hypertension secondary to other renal disorders,CTV3Map_Code_And_Term -Gyu21,[X]Hypertension secondary to other renal disorders,QOF -L122.,Other pre-existing hypertension in preg/childbirth/puerp,CTV3Map_Code_And_Term -L122.,Other pre-existing hypertension in preg/childbirth/puerp,QOF -L1220,Other pre-existing hypertension in preg/childb/puerp unspec,CTV3Map_Code_And_Term -L1220,Other pre-existing hypertension in preg/childb/puerp unspec,QOF -L1221,Other pre-existing hypertension in preg/childb/puerp - deliv,CTV3Map_Code_And_Term -L1221,Other pre-existing hypertension in preg/childb/puerp - deliv,QOF -L1222,Oth pre-exist hypert in preg/childb/puerp -del with p/n comp,CTV3_Children -L1222,Oth pre-exist hypert in preg/childb/puerp -del with p/n comp,QOF -L1223,Other pre-exist hypertension in preg/childb/puerp-not deliv,CTV3Map_Code_And_Term -L1223,Other pre-exist hypertension in preg/childb/puerp-not deliv,QOF -L1224,Other pre-exist hypertension in preg/childb/puerp + p/n comp,CTV3_Children -L1224,Other pre-exist hypertension in preg/childb/puerp + p/n comp,QOF -L122z,Other pre-existing hypertension in preg/childb/puerp NOS,CTV3Map_Code_And_Term -L122z,Other pre-existing hypertension in preg/childb/puerp NOS,QOF -L127.,Pre-eclampsia or eclampsia with pre-existing hypertension,CTV3Map_Code_And_Term -L127.,Pre-eclampsia or eclampsia with pre-existing hypertension,QOF -L127z,Pre-eclampsia or eclampsia + pre-existing hypertension NOS,CTV3Map_Code_And_Term -L127z,Pre-eclampsia or eclampsia + pre-existing hypertension NOS,QOF -L128.,Pre-exist hypertension compl preg childbirth and puerperium,CTV3Map_Code_And_Term -L128.,Pre-exist hypertension compl preg childbirth and puerperium,QOF -L1280,Pre-exist hyperten heart dis compl preg childbth+puerperium,CTV3Map_Code_And_Term -L1281,Pre-exist hyperten heart renal dis comp preg chldbirth/puerp,CTV3_Children -L1281,Pre-exist hyperten heart renal dis comp preg chldbirth/puerp,QOF -L1282,Pre-exist 2ndry hypertens comp preg childbth and puerprum,CTV3Map_Code_And_Term -L1282,Pre-exist 2ndry hypertens comp preg childbth and puerprum,QOF -XE0Ub,Hypertension,CTV3Map_Code_And_Term -XE0Ub,Hypertension,CTV3Map_Code_Only -XE0Ub,Hypertension,QOF -XE0Uc,Essential hypertension,CTV3Map_Code_And_Term -XE0Uc,Essential hypertension,CTV3Map_Code_Only -XE0Uc,Essential hypertension,QOF -XE0Ud,Essential hypertension NOS,CTV3Map_Code_And_Term -XE0Ud,Essential hypertension NOS,CTV3Map_Code_Only -XE0Ud,Essential hypertension NOS,QOF -XE0Ue,Hypertensive heart disease NOS without CCF,CTV3Map_Code_And_Term -XE0Ue,Hypertensive heart disease NOS without CCF,CTV3Map_Code_Only -XE0Ue,Hypertensive heart disease NOS without CCF,QOF -XE0Uf,Hypertensive renal disease,CTV3Map_Code_And_Term -XE0Uf,Hypertensive renal disease,CTV3Map_Code_Only -XE0VM,Hypertensive encephalopathy,CTV3Map_Code_And_Term -XE0VM,Hypertensive encephalopathy,CTV3Map_Code_Only -XE0W8,(Hypertensive disease) or (hypertension),CTV3_Children -XE0W8,(Hypertensive disease) or (hypertension),QOF -XE0xu,Pregnancy with hypertension (& [pre-existing]),CTV3_Children -XE2NY,Hypertension monitoring admin.,CTV3Map_Code_And_Term -XE2NY,Hypertension monitoring admin.,CTV3Map_Code_Only -XE2NZ,Hypertension monitoring check done,CTV3Map_Code_And_Term -XE2NZ,Hypertension monitoring check done,CTV3Map_Code_Only -XM1Qp,Cardiomegaly - hypertensive,CTV3Map_Code_And_Term -XM1Qp,Cardiomegaly - hypertensive,CTV3Map_Code_Only -XM1Qp,Cardiomegaly - hypertensive,QOF -XM1U2,Hypertension clinic admin.,CTV3Map_Code_And_Term -XM1U2,Hypertension clinic admin.,CTV3Map_Code_Only -XM1YA,Hypertension monitoring,CTV3Map_Code_And_Term -XSDSb,Diastolic hypertension,CTV3Map_Code_And_Term -XSDSb,Diastolic hypertension,QOF -Xa0Cs,Labile hypertension,CTV3_Children -Xa0Cs,Labile hypertension,QOF -Xa0kX,Renovascular hypertension,CTV3_Children -Xa0kX,Renovascular hypertension,QOF -Xa0lt,Pre-existing hypertension complicating pregnancy,CTV3_Children -Xa0lt,Pre-existing hypertension complicating pregnancy,QOF -Xa3fQ,Malignant hypertension,CTV3_Children -Xa3fQ,Malignant hypertension,QOF -Xa8HD,On treatment for hypertension,CTV3Map_Code_And_Term -XaBLq,Antihypertensive therapy,CTV3Map_Code_And_Term -XaBSX,Hypertension screening recall,High_Level_SNOMED -XaBU4,Hypertension monitoring status,High_Level_SNOMED -XaBU5,Hypertension monitoring call,High_Level_SNOMED -XaIy8,Moderate hypertension control,CTV3Map_Code_And_Term -XaIyD,Hypertension six month review,CTV3Map_Code_And_Term -XaIyE,Hypertension annual review,CTV3Map_Code_And_Term -XaJ5h,Patient on maximal tolerated antihypertensive therapy,CTV3Map_Code_And_Term -XaJ5h,Patient on maximal tolerated antihypertensive therapy,QOF -XaJYi,Hypertension clinical management plan,CTV3Map_Code_And_Term -XaM5f,High cost hypertension drugs,CTV3Map_Code_And_Term -XaM5n,Other specified high cost hypertension drugs,CTV3Map_Code_And_Term -XaM5p,High cost hypertension drugs NOS,CTV3_Children -XaXOi,Hypertension 9 month review,CTV3Map_Code_And_Term -XaYZS,Hypertension self-management plan review,High_Level_SNOMED -XaZWm,Stage 1 hypertension (NICE - Nat Ins for Hth Clin Excl 2011),CTV3Map_Code_And_Term -XaZWm,Stage 1 hypertension (NICE - Nat Ins for Hth Clin Excl 2011),CTV3Map_Code_Only -XaZWm,Stage 1 hypertension (NICE - Nat Ins for Hth Clin Excl 2011),QOF -XaZWn,Severe hypertension (Nat Inst for Health Clinical Ex 2011),CTV3Map_Code_And_Term -XaZWn,Severe hypertension (Nat Inst for Health Clinical Ex 2011),CTV3Map_Code_Only -XaZWn,Severe hypertension (Nat Inst for Health Clinical Ex 2011),QOF -XaZbT,Hypertension resistant to drug therapy,CTV3Map_Code_And_Term -XaZbT,Hypertension resistant to drug therapy,QOF -XaZbz,Stage 2 hypertension (NICE - Nat Ins for Hth Clin Excl 2011),CTV3Map_Code_And_Term -XaZbz,Stage 2 hypertension (NICE - Nat Ins for Hth Clin Excl 2011),QOF -XaZzo,Nocturnal hypertension,CTV3_Children -XaZzo,Nocturnal hypertension,QOF -Xab9L,Stage 1 hyperten (NICE 2011) without evidnce end organ damge,CTV3_Children -Xab9L,Stage 1 hyperten (NICE 2011) without evidnce end organ damge,QOF -Xab9M,Stage 1 hyperten (NICE 2011) with evidnce end organ damge,CTV3_Children -Xab9M,Stage 1 hyperten (NICE 2011) with evidnce end organ damge,QOF -Xafj3,Hypertension monitoring invitation short msg service txt msg,QOF -Xafj4,Hypertension mnitoring short msg service text msg 1st invitn,QOF -Xafj5,Hypertension mnitoring short msg service text msg 2nd invitn,QOF -Xafj6,Hypertension mnitoring short msg service text msg 3rd invitn,QOF -XagLb,Hypertension monitoring invitation email,QOF -Y1328,Refractory Hypertension,CTV3_Children \ No newline at end of file diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-nsaids-oral.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-nsaids-oral.csv deleted file mode 100644 index a265fdf3f..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-nsaids-oral.csv +++ /dev/null @@ -1,1476 +0,0 @@ -code,term,dmd_id,type,bnf_code -100211000001103,Indometacin 50mg capsules,100211000001103,AMP,1001010K0AAABAB -10194911000001107,Solpadeine Migraine Ibuprofen & Codeine tablets,10194911000001107,AMP,1001010J0DGAAAY -10198211000001109,Meloxicam 7.5mg tablets,10198211000001109,AMP,1001010AAAAAAAA -10198411000001108,Meloxicam 15mg tablets,10198411000001108,AMP,1001010AAAAABAB -10239611000001109,Nurofen Maximum Strength Migraine Pain 684mg caplets,10239611000001109,AMP,1001010ADBCABAC -10245111000001102,Ibuprofen lysine 400mg tablets,10245111000001102,VMP,1001010ADAAACAC -10301011000001101,Nabumetone 500mg tablets,10301011000001101,AMP,1001010X0AAAAAA -10302411000001100,Meloxicam 15mg tablets,10302411000001100,AMP,1001010AAAAABAB -10302611000001102,Meloxicam 7.5mg tablets,10302611000001102,AMP,1001010AAAAAAAA -10304311000001100,Meloxicam 7.5mg tablets,10304311000001100,AMP,1001010AAAAAAAA -10304811000001109,Meloxicam 15mg tablets,10304811000001109,AMP,1001010AAAAABAB -103411000001107,Slo-Indo 75mg capsules,103411000001107,AMP,1001010K0BLAAAD -10360711000001106,Phenylbutazone 100mg tablets,10360711000001106,AMP,1001010Q0AAABAB -10361211000001105,Phenylbutazone 200mg tablets,10361211000001105,AMP,1001010Q0AAACAC -10378911000001102,Ibuprofen 200mg tablets,10378911000001102,AMP,1001010J0AAADAD -10379111000001107,Ibuprofen 400mg tablets,10379111000001107,AMP,1001010J0AAAEAE -10379411000001102,Ibuprofen 600mg tablets,10379411000001102,AMP,1001010J0AAAFAF -10381711000001100,Indometacin 25mg capsules,10381711000001100,AMP,1001010K0AAAAAA -10389911000001104,Mefenamic acid 250mg capsules,10389911000001104,AMP,1001010N0AAAAAA -10396611000001103,Naproxen 250mg tablets,10396611000001103,AMP,1001010P0AAADAD -10396811000001104,Naproxen 500mg tablets,10396811000001104,AMP,1001010P0AAAEAE -10401011000001106,Diclofenac sodium 25mg gastro-resistant tablets,10401011000001106,AMP,1001010C0AAADAD -10401211000001101,Diclofenac sodium 50mg gastro-resistant tablets,10401211000001101,AMP,1001010C0AAAEAE -10403211000001102,Piroxicam 10mg capsules,10403211000001102,AMP,1001010R0AAAAAA -10403611000001100,Piroxicam 20mg capsules,10403611000001100,AMP,1001010R0AAABAB -10423311000001100,Phenylbutazone 100mg tablets,10423311000001100,AMP,1001010Q0AAABAB -10423711000001101,Phenylbutazone 200mg tablets,10423711000001101,AMP,1001010Q0AAACAC -10440011000001105,Meloxicam 7.5mg tablets,10440011000001105,AMP,1001010AAAAAAAA -10440311000001108,Meloxicam 15mg tablets,10440311000001108,AMP,1001010AAAAABAB -10485111000001108,Voltarol Rapid 50mg tablets,10485111000001108,AMP, -10486111000001102,Voltarol 50mg dispersible tablets,10486111000001102,AMP, -10494611000001100,Brexidol 20mg tablets,10494611000001100,AMP, -10500411000001103,Celebrex 100mg capsules,10500411000001103,AMP, -10505811000001107,Indocid R 75mg capsules,10505811000001107,AMP, -10529711000001106,Diclofenac sodium 100mg modified-release capsules,10529711000001106,AMP, -10530111000001102,Diclofenac sodium 75mg modified-release capsules,10530111000001102,AMP, -106011000001106,Ketovail 200mg modified-release capsules,106011000001106,AMP,1001010L0BEABAJ -10612711000001100,Dicloflex 25mg gastro-resistant tablets,10612711000001100,AMP,1001010C0BQAIAD -10614811000001102,Meloxicam 7.5mg tablets,10614811000001102,AMP,1001010AAAAAAAA -10615011000001107,Meloxicam 15mg tablets,10615011000001107,AMP,1001010AAAAABAB -10686011000001100,Dicloflex 25mg gastro-resistant tablets,10686011000001100,AMP,1001010C0BQAJAD -10686211000001105,Dicloflex 50mg gastro-resistant tablets,10686211000001105,AMP,1001010C0BQAKAE -10686411000001109,Dicloflex 75mg SR tablets,10686411000001109,AMP,1001010C0BQALAL -10686711000001103,Dicloflex Retard 100mg tablets,10686711000001103,AMP,1001010C0BQAMAF -10701211000001107,Meloxicam 15mg tablets,10701211000001107,AMP,1001010AAAAABAB -10702311000001108,Meloxicam 7.5mg tablets,10702311000001108,AMP,1001010AAAAAAAA -107411000001100,Flamrase 50 EC tablets,107411000001100,AMP,1001010C0BKABAE -10752411000001106,Anadin LiquiFast 400mg capsules,10752411000001106,AMP,1001010J0CJACAU -10768811000001101,Nurofen Extra Strength 400mg capsules,10768811000001101,AMP,1001010J0B4ATAU -10774611000001104,Ibuprofen 400mg capsules,10774611000001104,VMP,1001010J0AAAUAU -10857811000001108,Oruvail 100 modified-release capsules,10857811000001108,AMP, -10925311000001102,Etopan XL 600mg tablets,10925311000001102,AMP,1001010E0BGAAAD -109311000001102,Ketoprofen 50mg capsules,109311000001102,AMP,1001010L0AAAAAA -10961711000001107,Aceclofenac 100mg tablets,10961711000001107,AMP,100101080AAAAAA -10961811000001104,Aceclofenac 100mg tablets,10961811000001104,AMP,100101080AAAAAA -10962111000001101,Meloxicam 7.5mg tablets,10962111000001101,AMP,1001010AAAAAAAA -10962511000001105,Meloxicam 15mg tablets,10962511000001105,AMP,1001010AAAAABAB -10985211000001100,Aceclofenac 100mg tablets,10985211000001100,AMP,100101080AAAAAA -11017511000001105,Indometacin 50mg capsules,11017511000001105,AMP,1001010K0AAABAB -11017711000001100,Indometacin 25mg capsules,11017711000001100,AMP,1001010K0AAAAAA -110611000001104,Ibuprofen 200mg tablets,110611000001104,AMP,1001010J0AAADAD -11141111000001109,Etodolac 600mg modified-release tablets,11141111000001109,AMP,1001010E0AAADAD -11177511000001107,Ibuprofen 400mg tablets,11177511000001107,AMP,1001010J0AAAEAE -11177711000001102,Ibuprofen 600mg tablets,11177711000001102,AMP,1001010J0AAAFAF -11256211000001106,Phenylbutazone 100mg tablets,11256211000001106,AMP,1001010Q0AAABAB -11256411000001105,Phenylbutazone 200mg tablets,11256411000001105,AMP,1001010Q0AAACAC -11270111000001101,Galprofen Migraine Relief 200mg capsules,11270111000001101,AMP,1001010J0CCAEAA -11405211000001107,Indometacin 25mg capsules,11405211000001107,AMP,1001010K0AAAAAA -11426211000001109,Meloxicam 7.5mg tablets,11426211000001109,AMP,1001010AAAAAAAA -11426411000001108,Meloxicam 15mg tablets,11426411000001108,AMP,1001010AAAAABAB -11426611000001106,Naproxen 250mg gastro-resistant tablets,11426611000001106,AMP,1001010P0AAAHAH -11426811000001105,Naproxen 500mg gastro-resistant tablets,11426811000001105,AMP,1001010P0AAAIAI -11484811000001108,Mefenamic acid 50mg/5ml oral suspension,11484811000001108,AMP,1001010N0AAABAB -11508411000001105,Mefenamic acid 50mg/5ml oral suspension,11508411000001105,AMP,1001010N0AAABAB -11538811000001103,Arcoxia 60mg tablets,11538811000001103,AMP, -11539111000001103,Arcoxia 90mg tablets,11539111000001103,AMP, -11579811000001108,Ibuprofen 200mg tablets,11579811000001108,AMP,1001010J0AAADAD -11615511000001106,Diclofenac 50mg/5ml oral suspension,11615511000001106,AMP,1001010C0AABLBL -11632711000001101,Diclofenac 12.5mg/5ml oral suspension,11632711000001101,AMP,1001010C0AABCBC -11633411000001103,Diclofenac 12.5mg/5ml oral solution,11633411000001103,AMP,1001010C0AABCBC -11634411000001100,Diclofenac 50mg/5ml oral solution,11634411000001100,AMP,1001010C0AAAVAV -11648711000001104,Diclofenac 50mg/5ml oral suspension,11648711000001104,VMP,1001010C0AABLBL -11650911000001102,Diclofenac 12.5mg/5ml oral solution,11650911000001102,VMP,1001010C0AABCBC -11651011000001105,Diclofenac 12.5mg/5ml oral suspension,11651011000001105,VMP,1001010C0AABCBC -11651311000001108,Diclofenac 50mg/5ml oral solution,11651311000001108,VMP,1001010C0AAAVAV -11753011000001104,Calprofen 100mg/5ml oral suspension 5ml sachets,11753011000001104,AMP,1001010J0DBACBM -11764811000001101,Arcoxia 120mg tablets,11764811000001101,AMP, -11775811000001106,Galpharm Maximum Strength Ibuprofen 400mg liquid capsules,11775811000001106,AMP,1001010J0DFABAU -11934111000001109,Nurofen Express 342mg caplets,11934111000001109,AMP,1001010ADBEAAAB -11934511000001100,Nurofen Express 200mg liquid capsules,11934511000001100,AMP,1001010J0B4AUAA -11934911000001107,Nurofen Express 400mg liquid capsules,11934911000001107,AMP,1001010J0B4AVAU -11935111000001108,Nurofen Express 684mg caplets,11935111000001108,AMP,1001010ADBEABAC -12257211000001109,Naproxen 100mg/5ml oral suspension,12257211000001109,AMP,1001010P0AAAYAY -12257611000001106,Naproxen 200mg/5ml oral suspension,12257611000001106,AMP,1001010P0AABCBC -12258411000001107,Naproxen 75mg/5ml oral suspension,12258411000001107,AMP,1001010P0AAAZAZ -122811000001109,Mefenamic acid 500mg tablets,122811000001109,AMP,1001010N0AAADAD -12301311000001108,Naproxen 100mg/5ml oral suspension,12301311000001108,VMP,1001010P0AAAYAY -12301411000001101,Naproxen 200mg/5ml oral suspension,12301411000001101,VMP,1001010P0AABCBC -12301611000001103,Naproxen 75mg/5ml oral suspension,12301611000001103,VMP,1001010P0AAAZAZ -123311000001105,Diclovol Retard 100mg tablets,123311000001105,AMP,1001010C0CCADAF -12560211000001105,Feldene Melt 20mg tablets,12560211000001105,AMP, -12597711000001104,Ibuprofen 200mg/5ml oral suspension,12597711000001104,AMP,1001010J0AABIBI -12599811000001104,Indometacin 10mg/5ml oral suspension,12599811000001104,AMP,1001010K0AAAXAX -12600111000001108,Indometacin 10mg/5ml oral solution,12600111000001108,AMP,1001010K0AAAXAX -12602811000001100,Indometacin 20mg/5ml oral suspension,12602811000001100,AMP,1001010K0AAARAR -12603111000001101,Indometacin 20mg/5ml oral solution,12603111000001101,AMP,1001010K0AAARAR -126111000001103,Feldene 20mg dispersible tablets,126111000001103,AMP,1001010R0BBADAE -12637311000001104,Ibuprofen 200mg/5ml oral suspension,12637311000001104,VMP,1001010J0AABIBI -12638011000001101,Indometacin 10mg/5ml oral solution,12638011000001101,VMP,1001010K0AAAXAX -12638111000001100,Indometacin 10mg/5ml oral suspension,12638111000001100,VMP,1001010K0AAAXAX -12638611000001108,Indometacin 20mg/5ml oral solution,12638611000001108,VMP,1001010K0AAARAR -12638711000001104,Indometacin 20mg/5ml oral suspension,12638711000001104,VMP,1001010K0AAARAR -129111000001106,Naproxen 250mg gastro-resistant tablets,129111000001106,AMP,1001010P0AAAHAH -13011000001106,Diclofenac sodium 50mg gastro-resistant tablets,13011000001106,AMP,1001010C0AAAEAE -13090211000001100,Novo-Diflunisal 250mg tablets,13090211000001100,AMP,1001010D0BCAAAA -13099411000001106,Arcoxia 60mg tablets,13099411000001106,AMP, -13099911000001103,Arcoxia 90mg tablets,13099911000001103,AMP, -13101011000001106,Anadin Joint Pain 200mg tablets,13101011000001106,AMP,1001010J0CJADAD -13122311000001105,Arcoxia 30mg tablets,13122311000001105,AMP,1001010AJBBADAD -13132911000001109,Etoricoxib 30mg tablets,13132911000001109,VMP,1001010AJAAADAD -13216611000001106,Voltarol Rapid 50mg tablets,13216611000001106,AMP, -13216811000001105,Voltarol 50mg dispersible tablets,13216811000001105,AMP, -13243911000001104,Piroxicam 10mg capsules,13243911000001104,AMP, -13244211000001106,Piroxicam 20mg capsules,13244211000001106,AMP, -13244511000001109,Piroxicam 10mg dispersible tablets,13244511000001109,AMP, -13244711000001104,Piroxicam 20mg dispersible tablets,13244711000001104,AMP, -13411000001102,Flamatak MR 75mg tablets,13411000001102,AMP,1001010C0BYABAL -13413211000001103,Meloxicam 7.5mg tablets,13413211000001103,AMP,1001010AAAAAAAA -13413411000001104,Meloxicam 15mg tablets,13413411000001104,AMP,1001010AAAAABAB -13435511000001107,Aceclofenac 100mg tablets,13435511000001107,AMP,100101080AAAAAA -13577411000001107,Fenbufen 450mg tablets,13577411000001107,AMP,1001010F0AAACAC -13578911000001103,Ibuprofen 200mg tablets,13578911000001103,AMP,1001010J0AAADAD -13579211000001102,Ibuprofen 400mg tablets,13579211000001102,AMP,1001010J0AAAEAE -13581311000001100,Mefenamic acid 500mg tablets,13581311000001100,AMP,1001010N0AAADAD -13581711000001101,Naproxen 250mg tablets,13581711000001101,AMP,1001010P0AAADAD -13583611000001109,Sulindac 100mg tablets,13583611000001109,AMP,1001010S0AAAAAA -13583811000001108,Sulindac 200mg tablets,13583811000001108,AMP,1001010S0AAABAB -13623411000001108,Ibuprofen 100mg/5ml oral suspension sugar free,13623411000001108,AMP,1001010J0AABHBH -13623911000001100,Ibuprofen 100mg/5ml oral suspension 5ml sachets sugar free,13623911000001100,AMP,1001010J0AABMBM -13630511000001104,Galprofen Long Lasting 300mg capsules,13630511000001104,AMP,1001010J0CCAFAB -13636911000001109,Galpharm Children's Ibuprofen 100mg/5ml oral suspension,13636911000001109,AMP,1001010J0DFACBH -13750411000001109,Lloydspharmacy Ibuprofen Long Lasting 200mg capsules,13750411000001109,AMP,1001010J0CMACBA -137711000001101,Diclofenac sodium 50mg gastro-resistant tablets,137711000001101,AMP,1001010C0AAAEAE -13829511000001101,Arcoxia 60mg tablets,13829511000001101,AMP, -13829711000001106,Arcoxia 90mg tablets,13829711000001106,AMP, -13829911000001108,Arcoxia 120mg tablets,13829911000001108,AMP, -13830511000001106,Arthrotec 50 gastro-resistant tablets,13830511000001106,AMP, -13830711000001101,Arthrotec 75 gastro-resistant tablets,13830711000001101,AMP, -13837411000001106,Brexidol 20mg tablets,13837411000001106,AMP, -13845911000001109,Naproxen 250mg tablets,13845911000001109,AMP,1001010P0AAADAD -13846111000001100,Naproxen 500mg tablets,13846111000001100,AMP,1001010P0AAAEAE -13847111000001102,Celebrex 100mg capsules,13847111000001102,AMP, -13847411000001107,Celebrex 200mg capsules,13847411000001107,AMP, -13860211000001101,Lloydspharmacy Ibuprofen 200mg liquid capsules,13860211000001101,AMP,1001010J0CMADAA -13860411000001102,Lloydspharmacy Maximum Strength Ibuprofen 400mg liquid capsules,13860411000001102,AMP,1001010J0CMAEAU -13865111000001104,Diclomax SR 75mg capsules,13865111000001104,AMP, -13930111000001109,Meloxicam 15mg tablets,13930111000001109,AMP, -13939911000001101,Seractil 300mg tablets,13939911000001101,AMP, -13942911000001105,Oruvail 200 modified-release capsules,13942911000001105,AMP, -13978411000001104,Voltarol 50mg dispersible tablets,13978411000001104,AMP, -13978811000001102,Voltarol Rapid 50mg tablets,13978811000001102,AMP, -14033611000001100,Voltarol Pain-eze 12.5mg tablets,14033611000001100,AMP,1001010AGBCAAAC -14062911000001108,Diclofenac potassium 12.5mg tablets,14062911000001108,VMP,1001010AGAAACAC -14162311000001104,Meloxicam 7.5mg tablets,14162311000001104,AMP,1001010AAAAAAAA -14162511000001105,Meloxicam 15mg tablets,14162511000001105,AMP,1001010AAAAABAB -14195411000001100,Arcoxia 60mg tablets,14195411000001100,AMP, -14195911000001108,Arcoxia 90mg tablets,14195911000001108,AMP, -14197111000001101,Arthrotec 50 gastro-resistant tablets,14197111000001101,AMP, -14197511000001105,Arthrotec 75 gastro-resistant tablets,14197511000001105,AMP, -14232711000001108,Feldene Melt 20mg tablets,14232711000001108,AMP, -14288711000001103,Brexidol 20mg tablets,14288711000001103,AMP, -14314011000001103,Diclofenac 50mg dispersible tablets sugar free,14314011000001103,AMP, -143611000001103,Naproxen 500mg gastro-resistant tablets,143611000001103,AMP,1001010P0AAAIAI -14492311000001100,Celebrex 100mg capsules,14492311000001100,AMP, -14492711000001101,Celebrex 200mg capsules,14492711000001101,AMP, -14493911000001106,Meloxicam 15mg tablets,14493911000001106,AMP, -14600611000001108,Nurofen Express 256mg tablets,14600611000001108,AMP,1001010APBBAAAA -14601611000001103,Nurofen Express 512mg tablets,14601611000001103,AMP,1001010APBBABAB -14606211000001108,Ibuprofen sodium dihydrate 200mg tablets,14606211000001108,VMP,1001010APAAAAAA -14606311000001100,Ibuprofen sodium dihydrate 400mg tablets,14606311000001100,VMP,1001010APAAABAB -146611000001109,Piroxicam 20mg capsules,146611000001109,AMP,1001010R0AAABAB -14671611000001106,Oruvail 200 modified-release capsules,14671611000001106,AMP, -14703311000001100,Ibuprofen 200mg capsules,14703311000001100,AMP,1001010J0AAAAAA -14713011000001101,Mobic 7.5mg tablets,14713011000001101,AMP, -14713411000001105,Mobic 15mg tablets,14713411000001105,AMP, -14713911000001102,Mobiflex 20mg tablets,14713911000001102,AMP, -14714811000001105,Piroxicam 10mg dispersible tablets,14714811000001105,AMP, -14716311000001107,Piroxicam 20mg dispersible tablets,14716311000001107,AMP, -14740311000001102,Nurofen Express 256mg caplets,14740311000001102,AMP,1001010APBBACAA -14759611000001104,Voltarol 50mg dispersible tablets,14759611000001104,AMP, -14760511000001104,Voltarol Rapid 50mg tablets,14760511000001104,AMP, -14761111000001102,Voltarol Retard 100mg tablets,14761111000001102,AMP, -14772411000001106,Ibuprofen 200mg tablets,14772411000001106,AMP,1001010J0AAADAD -14772911000001103,Ibuprofen 400mg tablets,14772911000001103,AMP,1001010J0AAAEAE -14773611000001104,Ibuprofen 600mg tablets,14773611000001104,AMP,1001010J0AAAFAF -14783711000001102,Indometacin 25mg capsules,14783711000001102,AMP,1001010K0AAAAAA -14784511000001105,Ibuprofen 200mg tablets,14784511000001105,AMP,1001010J0AAADAD -14945211000001109,Mefenamic acid 250mg capsules,14945211000001109,AMP,1001010N0AAAAAA -14945411000001108,Mefenamic acid 500mg tablets,14945411000001108,AMP,1001010N0AAADAD -150011000001103,Naproxen 250mg tablets,150011000001103,AMP,1001010P0AAADAD -15019211000001100,Ibuprofen 200mg capsules,15019211000001100,AMP,1001010J0AAAAAA -15055611000001106,Ibuprofen 400mg tablets,15055611000001106,AMP,1001010J0AAAEAE -15058911000001106,Aceclofenac 100mg tablets,15058911000001106,AMP,100101080AAAAAA -15100811000001100,Ibuprofen 100mg/5ml oral suspension sugar free,15100811000001100,AMP,1001010J0AABHBH -15101111000001101,Ibuprofen 600mg tablets,15101111000001101,AMP,1001010J0AAAFAF -15103511000001109,Ketoprofen 50mg capsules,15103511000001109,AMP,1001010L0AAAAAA -15109011000001103,Mefenamic acid 500mg tablets,15109011000001103,AMP,1001010N0AAADAD -15109311000001100,Meloxicam 15mg tablets,15109311000001100,AMP,1001010AAAAABAB -15109611000001105,Meloxicam 7.5mg tablets,15109611000001105,AMP,1001010AAAAAAAA -1511000001104,Ibuprofen 400mg tablets,1511000001104,AMP,1001010J0AAAEAE -15119311000001103,Aceclofenac 100mg tablets,15119311000001103,AMP, -15166111000001109,Aceclofenac 100mg tablets,15166111000001109,AMP,100101080AAAAAA -15229011000001105,Tenoxicam 20mg tablets,15229011000001105,AMP,100101040AAAAAA -15236411000001105,Naproxen 375mg gastro-resistant tablets,15236411000001105,AMP,1001010P0AAAJAJ -15238211000001107,Diclofenac 100mg/5ml oral solution,15238211000001107,AMP,1001010C0AABJBJ -15238511000001105,Diclofenac 100mg/5ml oral suspension,15238511000001105,AMP,1001010C0AABJBJ -15242611000001108,Diclofenac 100mg/5ml oral solution,15242611000001108,VMP,1001010C0AABJBJ -15242711000001104,Diclofenac 100mg/5ml oral suspension,15242711000001104,VMP,1001010C0AABJBJ -15417211000001101,Diclomax Retard 100mg capsules,15417211000001101,AMP, -15417411000001102,Diclomax SR 75mg capsules,15417411000001102,AMP, -15512111000001104,Feminax Ultra 250mg gastro-resistant tablets,15512111000001104,AMP,1001010P0BSAAAH -155411000001100,Oruvail 100 modified-release capsules,155411000001100,AMP,1001010L0BDAAAI -15711000001109,Ibuprofen 600mg tablets,15711000001109,AMP,1001010J0AAAFAF -15870411000001104,Diflunisal 250mg tablets,15870411000001104,AMP,1001010D0AAAAAA -15881511000001101,Indometacin 5mg/5ml oral suspension,15881511000001101,AMP,1001010K0AABABA -15881811000001103,Indometacin 5mg/5ml oral solution,15881811000001103,AMP,1001010K0AABABA -15914011000001100,Indometacin 5mg/5ml oral solution,15914011000001100,VMP,1001010K0AABABA -15914111000001104,Indometacin 5mg/5ml oral suspension,15914111000001104,VMP,1001010K0AABABA -16056611000001104,Ibuprofen 200mg tablets,16056611000001104,AMP,1001010J0AAADAD -16057111000001105,Ibuprofen 400mg tablets,16057111000001105,AMP,1001010J0AAAEAE -161211000001108,Naproxen 500mg tablets,161211000001108,AMP,1001010P0AAAEAE -16138511000001106,Arcoxia 60mg tablets,16138511000001106,AMP, -16138711000001101,Arcoxia 90mg tablets,16138711000001101,AMP, -16140611000001108,Axorid 200mg/20mg modified-release capsules,16140611000001108,AMP,1001010L0BQABAN -16142811000001108,Brexidol 20mg tablets,16142811000001108,AMP, -16147411000001109,Celebrex 200mg capsules,16147411000001109,AMP, -16148311000001101,Axorid 100mg/20mg modified-release capsules,16148311000001101,AMP,1001010L0BQAAAM -16174311000001107,Ketoprofen 100mg / Omeprazole 20mg modified-release capsules,16174311000001107,VMP,1001010L0AAAMAM -16174411000001100,Ketoprofen 200mg / Omeprazole 20mg modified-release capsules,16174411000001100,VMP,1001010L0AAANAN -162011000001106,Naprosyn 500mg tablets,162011000001106,AMP,1001010P0BCABAE -16207511000001104,Mobic 7.5mg tablets,16207511000001104,AMP, -16207711000001109,Mobic 15mg tablets,16207711000001109,AMP, -16212811000001102,Naproxen 250mg gastro-resistant tablets,16212811000001102,AMP,1001010P0AAAHAH -16213011000001104,Naproxen 500mg gastro-resistant tablets,16213011000001104,AMP,1001010P0AAAIAI -16218011000001106,Oruvail 200 modified-release capsules,16218011000001106,AMP, -16236911000001100,Diclofenac potassium 25mg tablets,16236911000001100,AMP,1001010AGAAAAAA -16237611000001108,Diclofenac potassium 50mg tablets,16237611000001108,AMP,1001010AGAAABAB -16257411000001109,Diclofenac 50mg dispersible tablets sugar free,16257411000001109,AMP, -16258311000001101,Diclomax Retard 100mg capsules,16258311000001101,AMP, -16258611000001106,Diclomax SR 75mg capsules,16258611000001106,AMP, -16265311000001101,Arcoxia 60mg tablets,16265311000001101,AMP, -16265711000001102,Arcoxia 90mg tablets,16265711000001102,AMP, -16266111000001109,Arcoxia 120mg tablets,16266111000001109,AMP, -16268811000001101,Arthrotec 75 gastro-resistant tablets,16268811000001101,AMP, -16331311000001104,Voltarol 50mg dispersible tablets,16331311000001104,AMP, -16347811000001100,Brexidol 20mg tablets,16347811000001100,AMP, -164411000001109,Mefenamic acid 250mg capsules,164411000001109,AMP,1001010N0AAAAAA -16446911000001100,Voltarol Rapid 50mg tablets,16446911000001100,AMP, -16458511000001106,Celebrex 100mg capsules,16458511000001106,AMP, -16458911000001104,Celebrex 200mg capsules,16458911000001104,AMP, -16528311000001106,Ibucalm 200mg tablets,16528311000001106,AMP,1001010J0DHAAAD -16528811000001102,Ibucalm 400mg tablets,16528811000001102,AMP,1001010J0DHABAE -16556511000001100,Mobic 15mg tablets,16556511000001100,AMP, -16576611000001103,Feldene Melt 20mg tablets,16576611000001103,AMP, -166111000001106,Arthrosin 500 tablets,166111000001106,AMP,1001010P0BDADAE -16650211000001108,Diclofenac potassium 50mg tablets,16650211000001108,AMP,1001010AGAAABAB -16681111000001104,Voltarol 50mg dispersible tablets,16681111000001104,AMP, -16681811000001106,Voltarol Rapid 50mg tablets,16681811000001106,AMP, -17014711000001105,Diclofenac potassium 25mg tablets,17014711000001105,AMP,1001010AGAAAAAA -17023611000001107,Ibuprofen 200mg tablets,17023611000001107,AMP,1001010J0AAADAD -17042011000001106,Hedex Ibuprofen 200mg tablets,17042011000001106,AMP,1001010J0CPABAD -17061411000001100,Lornoxicam 8mg tablets,17061411000001100,AMP,1001010AIAAACAC -17203811000001108,Meloxicam 7.5mg tablets,17203811000001108,AMP,1001010AAAAAAAA -17204011000001100,Meloxicam 15mg tablets,17204011000001100,AMP,1001010AAAAABAB -172111000001101,Indocid R 75mg capsules,172111000001101,AMP,1001010K0BDAFAD -17238111000001100,Mandafen 600mg tablets,17238111000001100,AMP,1001010J0CYACAF -172511000001105,Diclomax SR 75mg capsules,172511000001105,AMP,1001010C0BMABAW -17303111000001109,Galpharm Migraine Relief 200mg capsules,17303111000001109,AMP,1001010J0DFADAA -17303811000001102,Galpharm Period Pain Relief 250mg gastro-resistant tablets,17303811000001102,AMP,1001010P0BTAAAH -17307311000001104,Ibuprofen 200mg capsules,17307311000001104,AMP,1001010J0AAAAAA -17308011000001101,Nabumetone 500mg tablets,17308011000001101,AMP,1001010X0AAAAAA -17317011000001104,Paramed Ibuprofen 200mg liquid capsules,17317011000001104,AMP,1001010J0DFAEAA -17343411000001105,Oruvail 200 modified-release capsules,17343411000001105,AMP, -17359311000001102,Diclofenac 10mg dispersible tablets,17359311000001102,AMP,1001010C0AABBBB -17369211000001102,Diclofenac 10mg dispersible tablets,17369211000001102,VMP,1001010C0AABBBB -17412711000001105,Sulindac 100mg tablets,17412711000001105,AMP,1001010S0AAAAAA -17415011000001103,Sulindac 200mg tablets,17415011000001103,AMP,1001010S0AAABAB -17420711000001103,Preservex 100mg tablets,17420711000001103,AMP, -17473411000001100,Voltarol Rapid 50mg tablets,17473411000001100,AMP, -17476311000001103,Voltarol 50mg dispersible tablets,17476311000001103,AMP, -17476511000001109,Voltarol 75mg SR tablets,17476511000001109,AMP, -174811000001102,Nycopren 500mg gastro-resistant tablets,174811000001102,AMP,1001010P0BGABAI -17492311000001105,Arcoxia 30mg tablets,17492311000001105,AMP, -17493111000001102,Arthrotec 50 gastro-resistant tablets,17493111000001102,AMP, -175011000001107,Diclofenac sodium 25mg gastro-resistant tablets,175011000001107,AMP,1001010C0AAADAD -17516811000001106,Mobic 7.5mg tablets,17516811000001106,AMP, -17526411000001101,Voltarol Joint Pain 12.5mg tablets,17526411000001101,AMP,1001010AGBDAAAC -17534011000001103,Brufen 100mg/5ml syrup,17534011000001103,AMP, -17538811000001101,Feminax Express 342mg tablets,17538811000001101,AMP,1001010ADBFAAAB -17585111000001107,Mobic 15mg tablets,17585111000001107,AMP, -17585511000001103,Mobic 7.5mg tablets,17585511000001103,AMP, -17587411000001108,Arcoxia 60mg tablets,17587411000001108,AMP, -17587811000001105,Arcoxia 90mg tablets,17587811000001105,AMP, -17588311000001100,Arcoxia 120mg tablets,17588311000001100,AMP, -17591311000001106,Arthrotec 75 gastro-resistant tablets,17591311000001106,AMP, -17609911000001102,Naprosyn EC 250mg tablets,17609911000001102,AMP, -17610611000001100,Naprosyn EC 500mg tablets,17610611000001100,AMP, -17614211000001105,Brufen 600mg effervescent granules sachets,17614211000001105,AMP, -17615911000001102,Oruvail 200 modified-release capsules,17615911000001102,AMP, -17623711000001105,Celebrex 100mg capsules,17623711000001105,AMP, -17624111000001106,Celebrex 200mg capsules,17624111000001106,AMP, -17627211000001107,Enstar SR 75 tablets,17627211000001107,AMP,1001010C0CMAAAL -17627411000001106,Enstar XL 100 tablets,17627411000001106,AMP,1001010C0CMABAF -17664811000001107,Diclofenac potassium 50mg tablets,17664811000001107,AMP,1001010AGAAABAB -177111000001104,Ibuprofen 600mg tablets,177111000001104,AMP,1001010J0AAAFAF -17748811000001101,Aceclofenac 100mg tablets,17748811000001101,AMP,100101080AAAAAA -17811000001106,Brexidol 20mg tablets,17811000001106,AMP,1001010R0BHAAAK -17878511000001101,Piroxicam 10mg capsules,17878511000001101,AMP,1001010R0AAAAAA -17878711000001106,Piroxicam 20mg capsules,17878711000001106,AMP,1001010R0AAABAB -178811000001105,Naprosyn EC 250mg tablets,178811000001105,AMP,1001010P0BCAGAH -17891411000001103,Diclofenac sodium 25mg gastro-resistant tablets,17891411000001103,AMP,1001010C0AAADAD -17891611000001100,Diclofenac sodium 50mg gastro-resistant tablets,17891611000001100,AMP,1001010C0AAAEAE -17909911000001101,Flurbiprofen 50mg tablets,17909911000001101,AMP,1001010I0AAABAB -17910111000001107,Flurbiprofen 100mg tablets,17910111000001107,AMP,1001010I0AAACAC -17931411000001104,Ibuprofen 200mg tablets,17931411000001104,AMP,1001010J0AAADAD -17931611000001101,Ibuprofen 400mg tablets,17931611000001101,AMP,1001010J0AAAEAE -17931811000001102,Ibuprofen 600mg tablets,17931811000001102,AMP,1001010J0AAAFAF -17932611000001107,Indometacin 25mg capsules,17932611000001107,AMP,1001010K0AAAAAA -17932811000001106,Indometacin 50mg capsules,17932811000001106,AMP,1001010K0AAABAB -17939411000001103,Mefenamic acid 250mg capsules,17939411000001103,AMP,1001010N0AAAAAA -17939611000001100,Meloxicam 7.5mg tablets,17939611000001100,AMP,1001010AAAAAAAA -17939811000001101,Meloxicam 15mg tablets,17939811000001101,AMP,1001010AAAAABAB -17944911000001106,Nabumetone 500mg tablets,17944911000001106,AMP,1001010X0AAAAAA -17945511000001103,Naproxen 250mg gastro-resistant tablets,17945511000001103,AMP,1001010P0AAAHAH -17945711000001108,Naproxen 500mg gastro-resistant tablets,17945711000001108,AMP,1001010P0AAAIAI -17966411000001101,Nabumetone 500mg tablets,17966411000001101,AMP,1001010X0AAAAAA -17970611000001108,Mefenamic acid 500mg tablets,17970611000001108,AMP,1001010N0AAADAD -17982711000001105,Boots Rapid Ibuprofen lysine 342mg tablets,17982711000001105,AMP,1001010ADBGAAAB -180611000001102,Dysman 500 tablets,180611000001102,AMP,1001010N0BDADAD -18074911000001106,Ibuprofen 200mg tablets,18074911000001106,AMP,1001010J0AAADAD -18075111000001107,Ibuprofen 400mg tablets,18075111000001107,AMP,1001010J0AAAEAE -18078211000001108,Ibuprofen 600mg tablets,18078211000001108,AMP,1001010J0AAAFAF -18080011000001108,Nabumetone 500mg tablets,18080011000001108,AMP,1001010X0AAAAAA -18109611000001102,Ibuprofen 100mg/5ml oral suspension sugar free,18109611000001102,AMP,1001010J0AABHBH -18158711000001105,Voltarol Retard 100mg tablets,18158711000001105,AMP, -18191711000001105,Brufen 600mg effervescent granules sachets,18191711000001105,AMP, -18233711000001101,Vimovo 500mg/20mg modified-release tablets,18233711000001101,AMP,1001010P0BUAABB -18245811000001107,Naproxen 500mg / Esomeprazole 20mg modified-release tablets,18245811000001107,VMP,1001010P0AABBBB -182611000001101,Diclofenac sodium 25mg gastro-resistant tablets,182611000001101,AMP,1001010C0AAADAD -18261111000001105,Feldene Melt 20mg tablets,18261111000001105,AMP, -18292411000001107,Celebrex 100mg capsules,18292411000001107,AMP, -18299411000001101,Dicloflex 75mg SR tablets,18299411000001101,AMP,1001010C0BQANAL -18341211000001104,Diclofenac potassium 50mg tablets,18341211000001104,AMP,1001010AGAAABAB -18361711000001101,Diclofenac sodium 75mg modified-release tablets,18361711000001101,AMP, -18464611000001101,Naproxen 250mg tablets,18464611000001101,AMP,1001010P0AAADAD -18464911000001107,Naproxen 500mg tablets,18464911000001107,AMP,1001010P0AAAEAE -18545411000001104,Arcoxia 30mg tablets,18545411000001104,AMP, -18547411000001105,Brufen 600mg effervescent granules sachets,18547411000001105,AMP, -18547611000001108,Brufen 100mg/5ml syrup,18547611000001108,AMP, -18557911000001100,Ibuprofen 200mg caplets,18557911000001100,AMP,1001010J0AAADAD -18558411000001107,Ibuprofen 400mg caplets,18558411000001107,AMP,1001010J0AAAEAE -18559111000001109,Indometacin 25mg capsules,18559111000001109,AMP,1001010K0AAAAAA -185611000001105,Volraman 50mg gastro-resistant tablets,185611000001105,AMP,1001010C0BFABAE -18573911000001107,Diclofenac 50mg dispersible tablets sugar free,18573911000001107,AMP, -18574111000001106,Diclomax Retard 100mg capsules,18574111000001106,AMP, -18578511000001109,Feldene Melt 20mg tablets,18578511000001109,AMP, -18618611000001109,Diclofenac potassium 50mg tablets,18618611000001109,AMP,1001010AGAAABAB -18627211000001104,Naproxen 500mg tablets,18627211000001104,AMP,1001010P0AAAEAE -18627511000001101,Naproxen 250mg tablets,18627511000001101,AMP,1001010P0AAADAD -18637011000001107,First Resort Double Action Pain Relief 12.5mg tablets,18637011000001107,AMP,1001010AGBEABAC -18640211000001100,First Resort Period Pain Reliever 250mg gastro-resistant tablets,18640211000001100,AMP,1001010P0BVAAAH -186711000001109,Mefenamic acid 50mg/5ml oral suspension,186711000001109,AMP,1001010N0AAABAB -18680711000001104,Rhumalgan XL 100mg capsules,18680711000001104,AMP,1001010C0BDAHAN -18681011000001105,Rhumalgan SR 75mg capsules,18681011000001105,AMP,1001010C0BDAGAW -18711000001102,Celebrex 100mg capsules,18711000001102,AMP,1001010AHBBAAAA -18722511000001107,Diclofenac sodium 50mg gastro-resistant tablets,18722511000001107,AMP,1001010C0AAAEAE -18734211000001102,Piroxicam 10mg capsules,18734211000001102,AMP,1001010R0AAAAAA -18734411000001103,Piroxicam 20mg capsules,18734411000001103,AMP,1001010R0AAABAB -188111000001107,Mefenamic acid 250mg capsules,188111000001107,AMP,1001010N0AAAAAA -18822611000001108,Boots Ibuprofen 6 Months Plus 100mg/5ml oral suspension strawberry,18822611000001108,AMP,1001010J0CFABBH -18893911000001104,Oruvail 100 modified-release capsules,18893911000001104,AMP, -189011000001101,Mefenamic acid 500mg tablets,189011000001101,AMP,1001010N0AAADAD -190611000001103,Dicloflex Retard 100mg tablets,190611000001103,AMP,1001010C0BQACAF -19195411000001104,Naproxen 250mg tablets,19195411000001104,AMP,1001010P0AAADAD -19195611000001101,Naproxen 500mg tablets,19195611000001101,AMP,1001010P0AAAEAE -192711000001106,Feldene Melt 20mg tablets,192711000001106,AMP,1001010R0BBAGAG -19310911000001108,Mefenamic acid 250mg capsules,19310911000001108,AMP,1001010N0AAAAAA -193111000001104,Acoflam 50mg gastro-resistant tablets,193111000001104,AMP,1001010C0CDABAE -193511000001108,Diclotard 75mg modified-release tablets,193511000001108,AMP,1001010C0BZAAAL -19363611000001107,Voltarol Pain-eze Extra Strength 25mg tablets,19363611000001107,AMP,1001010AGBCABAA -19510011000001106,Anadin LiquiFast 200mg effervescent tablets,19510011000001106,AMP,1001010J0CJAEBP -19525111000001109,Ibuprofen 200mg effervescent tablets,19525111000001109,VMP,1001010J0AABPBP -195311000001101,Ibufem 200mg tablets,195311000001101,AMP,1001010J0CHAAAD -19690911000001104,Manorfen 200mg tablets,19690911000001104,AMP,1001010J0CTABAD -19700711000001109,Aceclofenac 100mg tablets,19700711000001109,AMP,100101080AAAAAA -19729911000001108,Brufen 100mg/5ml syrup,19729911000001108,AMP, -19865111000001101,Arcoxia 30mg tablets,19865111000001101,AMP, -19865311000001104,Arcoxia 120mg tablets,19865311000001104,AMP, -19866611000001104,Brufen 100mg/5ml syrup,19866611000001104,AMP, -19876411000001108,Voltarol Rapid 25mg tablets,19876411000001108,AMP, -19964211000001104,Feldene Melt 20mg tablets,19964211000001104,AMP, -19971111000001103,Motifene 75mg modified-release capsules,19971111000001103,AMP, -20030411000001108,Voltarol 75mg SR tablets,20030411000001108,AMP, -20132411000001101,Arcoxia 30mg tablets,20132411000001101,AMP, -201711000001104,Ibuprofen 200mg tablets,201711000001104,AMP,1001010J0AAADAD -20323711000001105,Diclofenac sodium 50mg gastro-resistant tablets,20323711000001105,AMP,1001010C0AAAEAE -20324411000001101,Indometacin 25mg capsules,20324411000001101,AMP,1001010K0AAAAAA -20324611000001103,Indometacin 50mg capsules,20324611000001103,AMP,1001010K0AAABAB -20325711000001106,Naproxen 250mg gastro-resistant tablets,20325711000001106,AMP,1001010P0AAAHAH -20325911000001108,Naproxen 500mg gastro-resistant tablets,20325911000001108,AMP,1001010P0AAAIAI -205911000001100,Valdic 75 Retard tablets,205911000001100,AMP,1001010C0CHABAL -207911000001105,Ibuprofen 400mg tablets,207911000001105,AMP,1001010J0AAAEAE -20914211000001103,Etodolac 600mg modified-release tablets,20914211000001103,AMP,1001010E0AAADAD -209211000001107,Fenbufen 450mg tablets,209211000001107,AMP,1001010F0AAACAC -21033511000001107,Ibuprofen 600mg tablets,21033511000001107,AMP,1001010J0AAAFAF -210711000001105,Fenactol SR 75mg tablets,210711000001105,AMP,1001010C0CJACAL -212611000001100,Nabumetone 500mg tablets,212611000001100,AMP,1001010X0AAAAAA -213111000001102,Mobiflex 20mg tablets,213111000001102,AMP,100101040BBAAAA -213511000001106,Lofensaid Retard 75 tablets,213511000001106,AMP,1001010C0BRACAL -21524011000001101,Nurofen Express Period Pain 200mg capsules,21524011000001101,AMP,1001010J0B4AWAA -21679511000001103,Nurofen Express Soluble 400mg oral powder sachets,21679511000001103,AMP,1001010ADBEACAD -21681311000001104,Ibuprofen lysine 400mg oral powder sachets,21681311000001104,VMP,1001010ADAAADAD -21748411000001104,Aceclofenac 100mg tablets,21748411000001104,AMP,100101080AAAAAA -21786211000001109,Tenoxicam 20mg tablets,21786211000001109,AMP,100101040AAAAAA -21791511000001102,Mefenamic acid 250mg capsules,21791511000001102,AMP,1001010N0AAAAAA -21791711000001107,Mefenamic acid 500mg tablets,21791711000001107,AMP,1001010N0AAADAD -21792011000001102,Meloxicam 7.5mg tablets,21792011000001102,AMP,1001010AAAAAAAA -21792211000001107,Meloxicam 15mg tablets,21792211000001107,AMP,1001010AAAAABAB -21816811000001106,Nabumetone 500mg tablets,21816811000001106,AMP,1001010X0AAAAAA -21817711000001100,Naproxen 250mg gastro-resistant tablets,21817711000001100,AMP,1001010P0AAAHAH -21817911000001103,Naproxen 500mg gastro-resistant tablets,21817911000001103,AMP,1001010P0AAAIAI -21818111000001100,Naproxen 250mg tablets,21818111000001100,AMP,1001010P0AAADAD -21818311000001103,Naproxen 500mg tablets,21818311000001103,AMP,1001010P0AAAEAE -21848811000001100,Piroxicam 10mg capsules,21848811000001100,AMP,1001010R0AAAAAA -21849011000001101,Piroxicam 20mg capsules,21849011000001101,AMP,1001010R0AAABAB -21867711000001104,Diclofenac sodium 100mg modified-release tablets,21867711000001104,AMP, -21943011000001106,Diclofenac sodium 25mg gastro-resistant tablets,21943011000001106,AMP,1001010C0AAADAD -21943211000001101,Diclofenac sodium 50mg gastro-resistant tablets,21943211000001101,AMP,1001010C0AAAEAE -21977911000001102,Etodolac 600mg modified-release tablets,21977911000001102,AMP,1001010E0AAADAD -22014911000001109,Flurbiprofen 100mg tablets,22014911000001109,AMP,1001010I0AAACAC -22046511000001104,Ibuprofen 200mg tablets,22046511000001104,AMP,1001010J0AAADAD -22046911000001106,Ibuprofen 400mg tablets,22046911000001106,AMP,1001010J0AAAEAE -220511000001107,Naproxen 500mg tablets,220511000001107,AMP,1001010P0AAAEAE -22057111000001108,Ibuprofen 600mg tablets,22057111000001108,AMP,1001010J0AAAFAF -22061111000001107,Indometacin 25mg capsules,22061111000001107,AMP,1001010K0AAAAAA -22061611000001104,Indometacin 50mg capsules,22061611000001104,AMP,1001010K0AAABAB -221211000001103,Dysman 250 capsules,221211000001103,AMP,1001010N0BDACAA -22345911000001103,Diclofenac sodium 100mg modified-release tablets,22345911000001103,AMP, -22348511000001102,Ibuprofen 400mg capsules,22348511000001102,AMP, -22408911000001109,Diclofenac sodium 100mg modified-release tablets,22408911000001109,AMP, -22421311000001109,Rhumalgan SR 75mg capsules,22421311000001109,AMP, -22421611000001104,Rhumalgan XL 100mg capsules,22421611000001104,AMP,1001010C0BDAJAN -22468711000001106,Rhumalgan SR 75mg capsules,22468711000001106,AMP,1001010C0BDAIAW -224911000001105,Diclozip 50mg gastro-resistant tablets,224911000001105,AMP,1001010C0BIABAE -225611000001103,Dicloflex 75mg SR tablets,225611000001103,AMP,1001010C0BQADAL -22591711000001107,Misofen 50mg/200microgram gastro-resistant tablets,22591711000001107,AMP,1001010C0CNAAAM -22592011000001102,Misofen 75mg/200microgram gastro-resistant tablets,22592011000001102,AMP,1001010C0CNABAX -22640411000001107,Meloxicam 15mg orodispersible tablets sugar free,22640411000001107,AMP,1001010AAAAAJAJ -22640911000001104,Meloxicam 7.5mg orodispersible tablets sugar free,22640911000001104,AMP,1001010AAAAAKAK -22648611000001108,Meloxicam 15mg orodispersible tablets sugar free,22648611000001108,VMP,1001010AAAAAJAJ -22648711000001104,Meloxicam 7.5mg orodispersible tablets sugar free,22648711000001104,VMP,1001010AAAAAKAK -22679511000001104,Diclofenac sodium 50mg gastro-resistant / Misoprostol 200microgram tablets,22679511000001104,AMP,1001010C0AAAMAM -22679711000001109,Diclofenac sodium 75mg gastro-resistant / Misoprostol 200microgram tablets,22679711000001109,AMP, -226811000001107,Ponstan 250mg capsules,226811000001107,AMP,1001010N0BBAAAA -22695711000001100,Diclofenac sodium 75mg modified-release tablets,22695711000001100,AMP, -22695911000001103,Diclofenac sodium 100mg modified-release tablets,22695911000001103,AMP, -230111000001100,Brufen 600mg tablets,230111000001100,AMP,1001010J0BCACAF -23279311000001100,Ibuprofen 200mg capsules,23279311000001100,AMP,1001010J0AAAAAA -23429211000001108,Diclofenac sodium 100mg modified-release tablets,23429211000001108,AMP, -235611000001100,Feldene 10mg capsules,235611000001100,AMP,1001010R0BBAAAA -23591411000001107,Diclofenac sodium 75mg modified-release capsules,23591411000001107,AMP, -23591611000001105,Diclofenac sodium 100mg modified-release tablets,23591611000001105,AMP, -23597011000001108,Indometacin 75mg modified-release capsules,23597011000001108,AMP, -23598311000001107,Ketoprofen 200mg modified-release capsules,23598311000001107,AMP, -23649611000001109,"Nurofen for Children Cold, Pain and Fever Strawberry Flavour 100mg/5ml oral suspension",23649611000001109,AMP,1001010J0B4AXBH -23649811000001108,"Nurofen for Children Cold, Pain and Fever Orange Flavour 100mg/5ml oral suspension",23649811000001108,AMP,1001010J0B4AYBH -23654211000001105,Diclofenac sodium 75mg modified-release capsules,23654211000001105,AMP, -23654611000001107,Diclofenac sodium 75mg modified-release tablets,23654611000001107,AMP, -23654911000001101,Diclofenac sodium 100mg modified-release tablets,23654911000001101,AMP, -236611000001105,Arthrosin EC 500 tablets,236611000001105,AMP,1001010P0BDAEAI -23679411000001105,Meloxicam 7.5mg orodispersible tablets sugar free,23679411000001105,AMP,1001010AAAAAKAK -23679611000001108,Meloxicam 15mg orodispersible tablets sugar free,23679611000001108,AMP,1001010AAAAAJAJ -23811000001106,Ibuprofen 100mg/5ml oral suspension sugar free,23811000001106,AMP,1001010J0AABHBH -23862211000001104,Diclofenac sodium 25mg gastro-resistant tablets,23862211000001104,AMP,1001010C0AAADAD -23915011000001106,Etodolac 600mg modified-release tablets,23915011000001106,AMP,1001010E0AAADAD -23937411000001104,Diclofenac sodium 100mg modified-release tablets,23937411000001104,AMP, -23948511000001100,Indometacin 75mg modified-release capsules,23948511000001100,AMP, -23968811000001108,Diclofenac sodium 75mg modified-release capsules,23968811000001108,AMP, -240011000001102,Ketpron XL 200mg capsules,240011000001102,AMP,1001010L0BPABAJ -24026011000001101,Diclofenac sodium 100mg modified-release tablets,24026011000001101,AMP, -240311000001104,Relcofen 400mg tablets,240311000001104,AMP,1001010J0BYABAE -24157511000001102,Diclofenac sodium 100mg modified-release tablets,24157511000001102,AMP, -24174611000001106,Ibuprofen 100mg/5ml oral suspension sugar free,24174611000001106,AMP,1001010J0AABHBH -24176011000001109,Indometacin 25mg capsules,24176011000001109,AMP,1001010K0AAAAAA -24176411000001100,Indometacin 50mg capsules,24176411000001100,AMP,1001010K0AAABAB -24378611000001109,Mefenamic acid 250mg capsules,24378611000001109,AMP,1001010N0AAAAAA -24378911000001103,Meloxicam 15mg tablets,24378911000001103,AMP,1001010AAAAABAB -24379111000001108,Meloxicam 7.5mg tablets,24379111000001108,AMP,1001010AAAAAAAA -24411000001107,Indometacin 25mg capsules,24411000001107,AMP,1001010K0AAAAAA -24511000001106,Pacifene 200mg tablets,24511000001106,AMP,1001010J0BUAAAD -24522011000001103,Diclofenac sodium 100mg modified-release tablets,24522011000001103,AMP, -24550711000001101,Diclofenac sodium 75mg modified-release capsules,24550711000001101,AMP, -24550911000001104,Diclofenac sodium 100mg modified-release capsules,24550911000001104,AMP, -24584811000001108,Numark Max Strength Pharmacy Ibuprofen 400mg tablets,24584811000001108,AMP,1001010J0CDADAE -24595811000001105,Diclofenac sodium 100mg modified-release capsules,24595811000001105,AMP, -24596011000001108,Diclofenac sodium 100mg modified-release tablets,24596011000001108,AMP, -24596211000001103,Diclofenac sodium 75mg modified-release capsules,24596211000001103,AMP, -24596411000001104,Diclofenac sodium 75mg modified-release tablets,24596411000001104,AMP, -24616411000001108,Flurbiprofen 50mg tablets,24616411000001108,AMP,1001010I0AAABAB -24616611000001106,Flurbiprofen 100mg tablets,24616611000001106,AMP,1001010I0AAACAC -24625711000001103,Ibuprofen 200mg capsules,24625711000001103,AMP,1001010J0AAAAAA -252911000001102,Diclofenac sodium 50mg gastro-resistant tablets,252911000001102,AMP,1001010C0AAAEAE -25311000001101,Ibuprofen 600mg tablets,25311000001101,AMP,1001010J0AAAFAF -253811000001104,Fenactol 25mg gastro-resistant tablets,253811000001104,AMP,1001010C0CJAAAD -25599211000001102,Diclofenac sodium 100mg modified-release tablets,25599211000001102,AMP, -256211000001107,Diclofenac sodium 50mg gastro-resistant tablets,256211000001107,AMP,1001010C0AAAEAE -25702211000001108,Diclofenac sodium 100mg modified-release tablets,25702211000001108,AMP, -258411000001107,Galprofen Cold and Flu 200mg tablets,258411000001107,AMP,1001010J0CCABAD -258511000001106,Indocid 25mg capsules,258511000001106,AMP,1001010K0BDAAAA -259811000001102,Mefenamic acid 50mg/5ml oral suspension,259811000001102,AMP,1001010N0AAABAB -26311000001106,Ibuprofen 100mg/5ml oral suspension sugar free,26311000001106,AMP,1001010J0AABHBH -263211000001109,Brufen 400mg tablets,263211000001109,AMP,1001010J0BCABAE -267611000001103,Piroxicam 20mg capsules,267611000001103,AMP,1001010R0AAABAB -26779711000001102,Indometacin 25mg capsules,26779711000001102,AMP,1001010K0AAAAAA -26780111000001103,Indometacin 50mg capsules,26780111000001103,AMP,1001010K0AAABAB -26853411000001107,Mefenamic acid 50mg/5ml oral suspension,26853411000001107,AMP,1001010N0AAABAB -268911000001105,Diclofenac sodium 25mg gastro-resistant tablets,268911000001105,AMP,1001010C0AAADAD -269111000001100,Mefenamic acid 250mg capsules,269111000001100,AMP,1001010N0AAAAAA -27170011000001102,Ibuprofen 200mg caplets,27170011000001102,AMP,1001010J0AAADAD -271711000001109,Diclofenac sodium 25mg gastro-resistant tablets,271711000001109,AMP,1001010C0AAADAD -273411000001104,Ibuprofen 400mg tablets film coated,273411000001104,AMP,1001010J0AAAEAE -27511000001103,Froben SR 200mg capsules,27511000001103,AMP,1001010I0BBADAD -276611000001107,Piroxicam 20mg dispersible tablets,276611000001107,AMP,1001010R0AAAEAE -27711000001108,Naproxen 500mg gastro-resistant tablets,27711000001108,AMP,1001010P0AAAIAI -27840711000001109,Aceclofenac 100mg tablets,27840711000001109,AMP,100101080AAAAAA -279011000001106,Naproxen 500mg gastro-resistant tablets,279011000001106,AMP,1001010P0AAAIAI -28000911000001105,Celecoxib 200mg capsules,28000911000001105,AMP,1001010AHAAABAB -28001111000001101,Celecoxib 100mg capsules,28001111000001101,AMP,1001010AHAAAAAA -28011711000001103,Celecoxib 100mg capsules,28011711000001103,AMP,1001010AHAAAAAA -28011911000001101,Celecoxib 200mg capsules,28011911000001101,AMP,1001010AHAAABAB -28039011000001105,Celecoxib 100mg capsules,28039011000001105,AMP,1001010AHAAAAAA -28039211000001100,Celecoxib 200mg capsules,28039211000001100,AMP,1001010AHAAABAB -281911000001103,Ibuprofen 600mg tablets,281911000001103,AMP,1001010J0AAAFAF -282011000001105,Nabumetone 500mg tablets,282011000001105,AMP,1001010X0AAAAAA -282411000001101,Diclovol 75mg SR tablets,282411000001101,AMP,1001010C0CCACAL -28292711000001100,Celecoxib 100mg capsules,28292711000001100,AMP,1001010AHAAAAAA -28292911000001103,Celecoxib 200mg capsules,28292911000001103,AMP,1001010AHAAABAB -28378211000001108,Celecoxib 100mg capsules,28378211000001108,AMP,1001010AHAAAAAA -28378411000001107,Celecoxib 200mg capsules,28378411000001107,AMP,1001010AHAAABAB -28378611000001105,Celecoxib 100mg capsules,28378611000001105,AMP,1001010AHAAAAAA -28378811000001109,Celecoxib 200mg capsules,28378811000001109,AMP,1001010AHAAABAB -2841311000001100,Vioxx 25mg tablets,2841311000001100,AMP,1001010AFBBADAD -28414411000001104,Diclofenac 40mg/5ml oral solution,28414411000001104,AMP,1001010C0AABKBK -28414711000001105,Diclofenac 40mg/5ml oral suspension,28414711000001105,AMP,1001010C0AABKBK -2841511000001106,VioxxAcute 25mg tablets,2841511000001106,AMP,1001010AFBBAEAD -28422211000001104,Diclofenac 40mg/5ml oral solution,28422211000001104,VMP,1001010C0AABKBK -28422311000001107,Diclofenac 40mg/5ml oral suspension,28422311000001107,VMP,1001010C0AABKBK -286411000001100,Piroxicam 10mg capsules,286411000001100,AMP,1001010R0AAAAAA -28777611000001107,Naproxen 500mg / Esomeprazole 20mg modified-release tablets,28777611000001107,AMP, -28919111000001108,Indometacin 50mg capsules,28919111000001108,AMP,1001010K0AAABAB -2892711000001101,Keral 25mg tablets,2892711000001101,AMP,1001010AEBBAAAA -28939511000001106,Anadin Period Pain Relief 200mg capsules,28939511000001106,AMP,1001010J0CJAFAA -28984611000001101,Ibuprofen 200mg tablets,28984611000001101,AMP,1001010J0AAADAD -28984811000001102,Ibuprofen 400mg tablets,28984811000001102,AMP,1001010J0AAAEAE -28985211000001102,Naproxen 250mg tablets,28985211000001102,AMP,1001010P0AAADAD -28985411000001103,Naproxen 500mg tablets,28985411000001103,AMP,1001010P0AAAEAE -28986111000001102,Piroxicam 10mg capsules,28986111000001102,AMP,1001010R0AAAAAA -28986311000001100,Piroxicam 20mg capsules,28986311000001100,AMP,1001010R0AAABAB -2911000001100,Voltarol 25mg gastro-resistant tablets,2911000001100,AMP,1001010C0BBAAAD -294311000001102,Ketocid 200 modified-release capsules,294311000001102,AMP,1001010L0BIAAAJ -29666011000001102,Care Ibuprofen for Children 100mg/5ml oral suspension,29666011000001102,AMP,1001010J0CUABBH -29688611000001108,Masidemen 50mg/200microgram gastro-resistant tablets,29688611000001108,AMP,1001010C0CPAAAM -29688811000001107,Masidemen 75mg/200microgram gastro-resistant tablets,29688811000001107,AMP,1001010C0CPABAX -297211000001103,Naproxen 500mg gastro-resistant tablets,297211000001103,AMP,1001010P0AAAIAI -29742611000001106,Tiloket CR 200mg capsules,29742611000001106,AMP,1001010L0BNADAJ -29784111000001104,Celecoxib 200mg capsules,29784111000001104,AMP,1001010AHAAABAB -29784511000001108,Celecoxib 100mg capsules,29784511000001108,AMP,1001010AHAAAAAA -29875911000001106,Ibuprofen 200mg tablets,29875911000001106,AMP,1001010J0AAADAD -29877911000001101,Indometacin 25mg capsules,29877911000001101,AMP,1001010K0AAAAAA -29878111000001103,Indometacin 50mg capsules,29878111000001103,AMP,1001010K0AAABAB -29904711000001109,Mefenamic acid 250mg capsules,29904711000001109,AMP,1001010N0AAAAAA -29928311000001106,Naproxen 250mg gastro-resistant tablets,29928311000001106,AMP,1001010P0AAAHAH -29928511000001100,Naproxen 250mg tablets,29928511000001100,AMP,1001010P0AAADAD -29928711000001105,Naproxen 500mg gastro-resistant tablets,29928711000001105,AMP,1001010P0AAAIAI -29928911000001107,Naproxen 500mg tablets,29928911000001107,AMP,1001010P0AAAEAE -29978211000001104,Arthrotec 50 gastro-resistant tablets,29978211000001104,AMP, -29978411000001100,Arthrotec 75 gastro-resistant tablets,29978411000001100,AMP, -29980411000001108,Brufen 600mg effervescent granules sachets,29980411000001108,AMP, -29980611000001106,Brufen Retard 800mg tablets,29980611000001106,AMP, -30011211000001106,Celecoxib 100mg capsules,30011211000001106,AMP,1001010AHAAAAAA -30011411000001105,Celecoxib 200mg capsules,30011411000001105,AMP,1001010AHAAABAB -30048011000001102,Diclofenac potassium 50mg tablets,30048011000001102,AMP,1001010AGAAABAB -30048411000001106,Diclofenac sodium 75mg modified-release tablets,30048411000001106,AMP, -30049011000001107,Diclofenac sodium 50mg gastro-resistant tablets,30049011000001107,AMP,1001010C0AAAEAE -30049311000001105,Diclofenac sodium 100mg modified-release capsules,30049311000001105,AMP, -30054411000001100,Etodolac 600mg modified-release tablets,30054411000001100,AMP,1001010E0AAADAD -30062011000001105,Nabumetone 500mg tablets,30062011000001105,AMP,1001010X0AAAAAA -30062411000001101,Naproxen 250mg gastro-resistant tablets,30062411000001101,AMP,1001010P0AAAHAH -30062611000001103,Naproxen 375mg gastro-resistant tablets,30062611000001103,AMP,1001010P0AAAJAJ -30062811000001104,Naproxen 500mg gastro-resistant tablets,30062811000001104,AMP,1001010P0AAAIAI -30063011000001101,Naproxen 500mg tablets,30063011000001101,AMP,1001010P0AAAEAE -30112511000001107,Piroxicam 10mg capsules,30112511000001107,AMP,1001010R0AAAAAA -30112711000001102,Piroxicam 20mg capsules,30112711000001102,AMP,1001010R0AAABAB -30136411000001104,Celecoxib 100mg capsules,30136411000001104,AMP,1001010AHAAAAAA -30136611000001101,Celecoxib 200mg capsules,30136611000001101,AMP,1001010AHAAABAB -30212411000001106,Ibuprofen 200mg tablets,30212411000001106,AMP,1001010J0AAADAD -30213011000001106,Ibuprofen 400mg tablets,30213011000001106,AMP,1001010J0AAAEAE -3021311000001105,Manorfen 400mg tablets,3021311000001105,AMP,1001010J0CTAAAE -30216811000001109,Ketoprofen 200mg modified-release capsules,30216811000001109,AMP, -3023411000001104,Relifex 500mg tablets,3023411000001104,AMP,1001010X0BBAAAA -302411000001106,Diclofenac sodium 50mg gastro-resistant tablets,302411000001106,AMP,1001010C0AAAEAE -30269111000001109,Brufen 100mg/5ml syrup,30269111000001109,AMP, -30269311000001106,Brufen 600mg effervescent granules sachets,30269311000001106,AMP, -30804111000001103,Ibuprofen 100mg/5ml oral suspension sugar free,30804111000001103,AMP,1001010J0AABHBH -30810311000001107,Etodolac 600mg modified-release tablets,30810311000001107,AMP,1001010E0AAADAD -30825611000001104,Diclofenac sodium 50mg gastro-resistant tablets,30825611000001104,AMP,1001010C0AAAEAE -30827011000001104,Meloxicam 7.5mg tablets,30827011000001104,AMP,1001010AAAAAAAA -30827211000001109,Meloxicam 15mg tablets,30827211000001109,AMP,1001010AAAAABAB -308411000001108,Surgam 300mg tablets,308411000001108,AMP,1001010T0BBABAC -30849711000001108,Naproxen 250mg tablets,30849711000001108,AMP,1001010P0AAADAD -30849911000001105,Naproxen 500mg tablets,30849911000001105,AMP,1001010P0AAAEAE -30850111000001100,Naproxen 500mg gastro-resistant tablets,30850111000001100,AMP,1001010P0AAAIAI -30857611000001107,Piroxicam 10mg capsules,30857611000001107,AMP,1001010R0AAAAAA -30857811000001106,Piroxicam 20mg capsules,30857811000001106,AMP,1001010R0AAABAB -30934911000001101,Ketoprofen 200mg modified-release capsules,30934911000001101,AMP, -31003411000001100,Boots Ibuprofen 3 Months Plus 100mg/5ml oral suspension strawberry,31003411000001100,AMP,1001010J0CFACBH -31004511000001103,Boots Ibuprofen and Codeine 200mg/12.8mg tablets,31004511000001103,AMP,1001010J0CFADAY -31005011000001105,Boots Ibuprofen Long Lasting 200mg capsules,31005011000001105,AMP,1001010J0CFAEBA -310111000001102,Piroxicam 10mg capsules,310111000001102,AMP,1001010R0AAAAAA -31017911000001101,Boots Period Pain Relief 250mg gastro-resistant tablets,31017911000001101,AMP,1001010P0BWAAAH -31279811000001102,Stirlescent 250mg effervescent tablets,31279811000001102,AMP,1001010P0BXAABD -31306711000001103,Naproxen 250mg effervescent tablets sugar free,31306711000001103,VMP,1001010P0AABDBD -31393111000001107,Nurofen Joint & Back Pain Relief 256mg tablets,31393111000001107,AMP,1001010APBCAAAA -31394111000001109,Nurofen Max Strength Joint & Back Pain Relief 512mg tablets,31394111000001109,AMP,1001010APBCABAB -31394411000001104,Nurofen Joint & Back Pain Relief 256mg caplets,31394411000001104,AMP,1001010APBCACAA -31394911000001107,Nurofen Joint & Back Pain Relief 200mg capsules,31394911000001107,AMP,1001010J0B4AZAA -31396411000001107,Nurofen Sinus Pressure & Headache Relief 200mg/30mg tablets,31396411000001107,AMP,1001010J0B4BABJ -3158711000001107,Nurofen Long Lasting 300mg capsules,3158711000001107,AMP,1001010J0B4AGAB -3159211000001105,Fenbid 300mg Spansules,3159211000001105,AMP,1001010J0BEAAAB -3159911000001101,Arthrotec 50 gastro-resistant tablets,3159911000001101,AMP,1001010C0BLAAAM -3161411000001104,Arthrotec 75 gastro-resistant tablets,3161411000001104,AMP,1001010C0BLABAX -317911000001103,Piroxicam 10mg capsules,317911000001103,AMP,1001010R0AAAAAA -318711000001104,Acoflam 25mg gastro-resistant tablets,318711000001104,AMP,1001010C0CDAAAD -31993111000001104,Ibuprofen 200mg capsules,31993111000001104,AMP,1001010J0AAAAAA -31993611000001107,Ibuprofen 400mg capsules,31993611000001107,AMP, -32011000001107,Ibuprofen 600mg tablets,32011000001107,AMP,1001010J0AAAFAF -322299000,Naproxen sodium 275mg tablets,322299000,VMP,100101070AAAAAA -3224611000001107,Naproxen 500mg tablets,3224611000001107,AMP,1001010P0AAAEAE -32360011000001100,Ibuprofen 200mg orodispersible tablets sugar free,32360011000001100,AMP, -323611000001109,Flurbiprofen 50mg tablets,323611000001109,AMP,1001010I0AAABAB -32390811000001108,Nurofen for Children 100mg chewable capsules,32390811000001108,AMP,1001010J0B4BBBQ -3239211000001107,Brufen 600mg effervescent granules sachets,3239211000001107,AMP,1001010J0BCAEAN -32392411000001107,Ibuprofen 100mg chewable capsules,32392411000001107,VMP,1001010J0AABQBQ -32397411000001105,Celecoxib 100mg capsules,32397411000001105,AMP,1001010AHAAAAAA -32410211000001100,Ibuprofen 200mg orodispersible tablets sugar free,32410211000001100,AMP, -32465611000001107,Ibuprofen 200mg capsules,32465611000001107,AMP,1001010J0AAAAAA -324811000001106,Rhumalgan CR 100 tablets,324811000001106,AMP,1001010C0BDADAF -32496211000001102,Celecoxib 100mg capsules,32496211000001102,AMP,1001010AHAAAAAA -32496411000001103,Celecoxib 200mg capsules,32496411000001103,AMP,1001010AHAAABAB -326211000001100,Diclofenac sodium 25mg gastro-resistant tablets,326211000001100,AMP,1001010C0AAADAD -32636911000001104,Naproxen 25mg/ml oral suspension sugar free,32636911000001104,AMP,1001010P0AABEBE -32638811000001105,Naproxen 125mg/5ml oral suspension sugar free,32638811000001105,VMP,1001010P0AABEBE -327311000001106,Ibuprofen 200mg tablets,327311000001106,AMP,1001010J0AAADAD -32775911000001100,Naproxen 125mg/5ml oral suspension sugar free,32775911000001100,AMP,1001010P0AABEBE -32777811000001100,Nabumetone 500mg/5ml oral suspension,32777811000001100,AMP,1001010X0AAADAD -32778411000001103,Nabumetone 500mg/5ml oral suspension,32778411000001103,VMP,1001010X0AAADAD -32811000001101,Galprofen 100mg/5ml oral suspension,32811000001101,AMP,1001010J0CCADBH -329574003,Diclofenac sodium 75mg gastro-resistant modified-release capsules,329574003,VMP,1001010C0AAARAR -329587009,Diclofenac sodium 50mg gastro-resistant tablets,329587009,VMP,1001010C0AAAEAE -329591004,Diclofenac 50mg dispersible tablets sugar free,329591004,VMP,1001010C0AAAJAJ -329598005,Diclofenac sodium 50mg gastro-resistant / Misoprostol 200microgram tablets,329598005,VMP,1001010C0AAAMAM -329602007,Diclofenac sodium 75mg gastro-resistant / Misoprostol 200microgram tablets,329602007,VMP,1001010C0AAAXAX -329607001,Diclofenac sodium 75mg modified-release tablets,329607001,VMP,1001010C0AAALAL -329612000,Diflunisal 250mg tablets,329612000,VMP,1001010D0AAAAAA -329613005,Diflunisal 500mg tablets,329613005,VMP,1001010D0AAABAB -329620003,Etodolac 300mg capsules,329620003,VMP,1001010E0AAACAC -329622006,Etodolac 600mg modified-release tablets,329622006,VMP,1001010E0AAADAD -329630007,Fenbufen 300mg capsules,329630007,VMP,1001010F0AAAAAA -329636001,Fenbufen 450mg tablets,329636001,VMP,1001010F0AAACAC -329641009,Fenoprofen 300mg tablets,329641009,VMP,1001010G0AAABAB -329642002,Fenoprofen 600mg tablets,329642002,VMP,1001010G0AAADAD -329648003,Flurbiprofen 50mg tablets,329648003,VMP,1001010I0AAABAB -329649006,Flurbiprofen 100mg tablets,329649006,VMP,1001010I0AAACAC -329652003,Ibuprofen 200mg tablets,329652003,VMP,1001010J0AAADAD -329653008,Ibuprofen 400mg tablets,329653008,VMP,1001010J0AAAEAE -329654002,Ibuprofen 600mg tablets,329654002,VMP,1001010J0AAAFAF -329662005,Ibuprofen 800mg modified-release tablets,329662005,VMP,1001010J0AAAPAP -329677002,Ibuprofen 600mg effervescent granules sachets,329677002,VMP,1001010J0AAANAN -329683004,Ibuprofen 200mg / Codeine 12.8mg tablets,329683004,VMP,1001010J0AAAYAY -329686007,Ibuprofen 100mg/5ml oral suspension sugar free,329686007,VMP,1001010J0AABHBH -329710002,Ibuprofen 100mg/5ml oral suspension,329710002,VMP,1001010J0AAACAC -329714006,Indometacin 25mg capsules,329714006,VMP,1001010K0AAAAAA -329715007,Indometacin 50mg capsules,329715007,VMP,1001010K0AAABAB -329758006,Ketoprofen 50mg capsules,329758006,VMP,1001010L0AAAAAA -329790001,Mefenamic acid 250mg capsules,329790001,VMP,1001010N0AAAAAA -329803004,Mefenamic acid 500mg tablets,329803004,VMP,1001010N0AAADAD -329806007,Naproxen 250mg tablets,329806007,VMP,1001010P0AAADAD -329807003,Naproxen 500mg tablets,329807003,VMP,1001010P0AAAEAE -329838002,Naproxen 250mg gastro-resistant tablets,329838002,VMP,1001010P0AAAHAH -329839005,Naproxen 500mg gastro-resistant tablets,329839005,VMP,1001010P0AAAIAI -329852000,Naproxen 125mg/5ml oral suspension,329852000,VMP,1001010P0AAARAR -329854004,Phenylbutazone 100mg tablets,329854004,VMP,1001010Q0AAABAB -329855003,Phenylbutazone 200mg tablets,329855003,VMP,1001010Q0AAACAC -329862007,Piroxicam 10mg capsules,329862007,VMP,1001010R0AAAAAA -329863002,Piroxicam 20mg capsules,329863002,VMP,1001010R0AAABAB -329881004,Piroxicam 10mg dispersible tablets,329881004,VMP,1001010R0AAADAD -329882006,Piroxicam 20mg dispersible tablets,329882006,VMP,1001010R0AAAEAE -329887000,Sulindac 100mg tablets,329887000,VMP,1001010S0AAAAAA -329888005,Sulindac 200mg tablets,329888005,VMP,1001010S0AAABAB -329896000,Tiaprofenic acid 300mg tablets,329896000,VMP,1001010T0AAACAC -329907004,Acemetacin 60mg capsules,329907004,VMP,100101050AAAAAA -329910006,Nabumetone 500mg tablets,329910006,VMP,1001010X0AAAAAA -329914002,Tenoxicam 20mg tablets,329914002,VMP,100101040AAAAAA -329925006,Aceclofenac 100mg tablets,329925006,VMP,100101080AAAAAA -329927003,Meloxicam 7.5mg tablets,329927003,VMP,1001010AAAAAAAA -329928008,Meloxicam 15mg tablets,329928008,VMP,1001010AAAAABAB -329963003,Dexketoprofen 25mg tablets,329963003,VMP,1001010AEAAAAAA -329967002,Diclofenac potassium 25mg tablets,329967002,VMP,1001010AGAAAAAA -329968007,Diclofenac potassium 50mg tablets,329968007,VMP,1001010AGAAABAB -330163001,Rofecoxib 25mg tablets,330163001,VMP,1001010AFAAADAD -330169002,Celecoxib 200mg capsules,330169002,VMP,1001010AHAAABAB -330170001,Celecoxib 100mg capsules,330170001,VMP,1001010AHAAAAAA -3311000001106,Indolar SR 75mg capsules,3311000001106,AMP,1001010K0BGADAD -3313611000001105,Ibuprofen 200mg tablets,3313611000001105,AMP,1001010J0AAADAD -33136211000001102,Naproxen 125mg/5ml oral suspension sugar free,33136211000001102,AMP,1001010P0AABEBE -3323411000001100,Ibuprofen 100mg/5ml oral suspension sugar free,3323411000001100,AMP,1001010J0AABHBH -333311000001102,Ibuprofen 400mg tablets,333311000001102,AMP,1001010J0AAAEAE -334011000001103,Diclozip 25mg gastro-resistant tablets,334011000001103,AMP,1001010C0BIAAAD -334411000001107,Ibuprofen 600mg tablets,334411000001107,AMP,1001010J0AAAFAF -33498211000001105,Aceclofenac 100mg tablets,33498211000001105,AMP,100101080AAAAAA -3354811000001101,Voltarol 50mg dispersible tablets,3354811000001101,AMP,1001010C0BBAGAJ -33548811000001105,Etolyn 600mg modified-release tablets,33548811000001105,AMP,1001010E0BHAAAD -33588711000001109,Celecoxib 100mg capsules,33588711000001109,AMP,1001010AHAAAAAA -33588911000001106,Celecoxib 200mg capsules,33588911000001106,AMP,1001010AHAAABAB -336911000001107,Hedex Ibuprofen 200mg caplets,336911000001107,AMP,1001010J0CPAAAD -33743911000001109,Naproxen 50mg/ml oral suspension,33743911000001109,AMP,1001010P0AABFBF -3377811000001108,Ketoprofen 100mg capsules,3377811000001108,VMP,1001010L0AAABAB -34016011000001105,Indometacin 25mg capsules,34016011000001105,AMP,1001010K0AAAAAA -3406111000001103,Arcoxia 60mg tablets,3406111000001103,AMP,1001010AJBBAAAA -3406811000001105,Arcoxia 90mg tablets,3406811000001105,AMP,1001010AJBBABAB -3407911000001102,Arcoxia 120mg tablets,3407911000001102,AMP,1001010AJBBACAC -341611000001107,Volraman 25mg gastro-resistant tablets,341611000001107,AMP,1001010C0BFAAAD -34195911000001106,Naproxen 50mg/ml oral suspension,34195911000001106,AMP,1001010P0AABFBF -3420111000001109,Codafen Continus tablets,3420111000001109,AMP,1001010J0B8AAAR -342211000001103,Ibuprofen 200mg tablets,342211000001103,AMP,1001010J0AAADAD -34328011000001102,Naproxen 50mg/ml oral suspension,34328011000001102,AMP,1001010P0AABFBF -343711000001102,Lederfen 450mg tablets,343711000001102,AMP,1001010F0BBADAC -3439011000001103,Piroxicam betadex 20mg tablets,3439011000001103,VMP,1001010R0AAAKAK -345311000001100,Oruvail 200 modified-release capsules,345311000001100,AMP,1001010L0BDABAJ -34584911000001102,Celecoxib 200mg capsules,34584911000001102,AMP,1001010AHAAABAB -34603211000001104,Diclofenac sodium 50mg gastro-resistant tablets,34603211000001104,AMP,1001010C0AAAEAE -34604011000001106,Diclofenac sodium 25mg gastro-resistant tablets,34604011000001106,AMP,1001010C0AAADAD -34618111000001103,Etoricoxib 30mg tablets,34618111000001103,AMP,1001010AJAAADAD -34618311000001101,Etoricoxib 60mg tablets,34618311000001101,AMP,1001010AJAAAAAA -34618511000001107,Etoricoxib 90mg tablets,34618511000001107,AMP,1001010AJAAABAB -34618711000001102,Etoricoxib 120mg tablets,34618711000001102,AMP,1001010AJAAACAC -34620211000001100,Etoricoxib 30mg tablets,34620211000001100,AMP,1001010AJAAADAD -34620411000001101,Etoricoxib 60mg tablets,34620411000001101,AMP,1001010AJAAAAAA -34620611000001103,Etoricoxib 90mg tablets,34620611000001103,AMP,1001010AJAAABAB -34620811000001104,Etoricoxib 120mg tablets,34620811000001104,AMP,1001010AJAAACAC -34624211000001108,Etoricoxib 30mg tablets,34624211000001108,AMP,1001010AJAAADAD -34624411000001107,Etoricoxib 60mg tablets,34624411000001107,AMP,1001010AJAAAAAA -34624611000001105,Etoricoxib 90mg tablets,34624611000001105,AMP,1001010AJAAABAB -34624711000001101,Etoricoxib 120mg tablets,34624711000001101,AMP,1001010AJAAACAC -34691111000001107,Etoricoxib 30mg tablets,34691111000001107,AMP,1001010AJAAADAD -34691311000001109,Etoricoxib 60mg tablets,34691311000001109,AMP,1001010AJAAAAAA -34691511000001103,Etoricoxib 90mg tablets,34691511000001103,AMP,1001010AJAAABAB -34691711000001108,Etoricoxib 120mg tablets,34691711000001108,AMP,1001010AJAAACAC -34698811000001106,Etoricoxib 30mg tablets,34698811000001106,AMP,1001010AJAAADAD -34699011000001105,Etoricoxib 60mg tablets,34699011000001105,AMP,1001010AJAAAAAA -34699211000001100,Etoricoxib 90mg tablets,34699211000001100,AMP,1001010AJAAABAB -34699411000001101,Etoricoxib 120mg tablets,34699411000001101,AMP,1001010AJAAACAC -34710711000001106,Etoricoxib 30mg tablets,34710711000001106,AMP,1001010AJAAADAD -34710911000001108,Etoricoxib 60mg tablets,34710911000001108,AMP,1001010AJAAAAAA -34711111000001104,Etoricoxib 90mg tablets,34711111000001104,AMP,1001010AJAAABAB -34711311000001102,Etoricoxib 120mg tablets,34711311000001102,AMP,1001010AJAAACAC -347249002,Phenylbutazone 100mg gastro-resistant tablets,347249002,VMP,1001010Q0AAABAB -34790511000001100,Flarin 200mg capsules,34790511000001100,AMP,1001010J0DIAAAA -34874211000001103,Sudafed Sinus Pain Relief 200mg/6.1mg tablets,34874211000001103,AMP,1001010J0CSABBS -34878411000001108,Ibuprofen 200mg / Phenylephrine 6.1mg tablets,34878411000001108,VMP,1001010J0AABSBS -349811000001107,Ibuprofen 600mg tablets,349811000001107,AMP,1001010J0AAAFAF -350511000001103,Diclomax Retard 100mg capsules,350511000001103,AMP,1001010C0BMAAAN -35096411000001107,Seractil 300mg tablets,35096411000001107,AMP,1001010AMBBACAA -351111000001101,Nabumetone 500mg tablets,351111000001101,AMP,1001010X0AAAAAA -35140711000001104,Celecoxib 100mg capsules,35140711000001104,AMP,1001010AHAAAAAA -35160611000001101,Etoricoxib 30mg tablets,35160611000001101,AMP,1001010AJAAADAD -35160811000001102,Etoricoxib 60mg tablets,35160811000001102,AMP,1001010AJAAAAAA -35161011000001104,Etoricoxib 90mg tablets,35161011000001104,AMP,1001010AJAAABAB -35161211000001109,Etoricoxib 120mg tablets,35161211000001109,AMP,1001010AJAAACAC -35369111000001107,Mefenamic acid 50mg/5ml oral suspension,35369111000001107,VMP,1001010N0AAABAB -358411000001104,Rhumalgan CR 75 tablets,358411000001104,AMP,1001010C0BDACAL -35851611000001107,Ibuprofen 200mg tablets,35851611000001107,AMP,1001010J0AAADAD -35861211000001104,Nabumetone 500mg tablets,35861211000001104,AMP,1001010X0AAAAAA -35906711000001107,Celecoxib 100mg capsules,35906711000001107,AMP,1001010AHAAAAAA -35906911000001109,Celecoxib 200mg capsules,35906911000001109,AMP,1001010AHAAABAB -35918311000001105,Tiaprofenic acid 300mg modified-release capsules,35918311000001105,VMP,1001010T0AAADAD -359411000001107,Fenactol 50mg gastro-resistant tablets,359411000001107,AMP,1001010C0CJABAE -36011911000001106,Naproxen 250mg tablets,36011911000001106,AMP,1001010P0AAADAD -36017011000001102,Piroxicam 20mg orodispersible tablets sugar free,36017011000001102,VMP,1001010R0AAAGAG -36026111000001106,Naproxen 500mg tablets,36026111000001106,AMP,1001010P0AAAEAE -36030111000001106,Naproxen 500mg modified-release tablets,36030111000001106,VMP,1001010P0AAAQAQ -36037011000001106,Ketoprofen 100mg modified-release capsules,36037011000001106,VMP,1001010L0AAAIAI -36037211000001101,Ketoprofen 150mg modified-release capsules,36037211000001101,VMP,1001010L0AAALAL -36037311000001109,Ketoprofen 200mg modified-release capsules,36037311000001109,VMP,1001010L0AAAJAJ -36042811000001102,Ibuprofen 400mg tablets,36042811000001102,AMP,1001010J0AAAEAE -36043011000001104,Ibuprofen 600mg tablets,36043011000001104,AMP,1001010J0AAAFAF -36045011000001103,Ibuprofen 200mg modified-release capsules,36045011000001103,VMP,1001010J0AABABA -36045211000001108,Ibuprofen 300mg modified-release / Codeine 20mg tablets,36045211000001108,VMP,1001010J0AAARAR -36045311000001100,Ibuprofen 300mg modified-release capsules,36045311000001100,VMP,1001010J0AAABAB -36046811000001101,Indometacin 75mg modified-release capsules,36046811000001101,VMP,1001010K0AAADAD -36059011000001103,Flurbiprofen 200mg modified-release capsules,36059011000001103,VMP,1001010I0AAADAD -36080311000001102,Ibuprofen 600mg tablets,36080311000001102,AMP,1001010J0AAAFAF -360911000001103,Naproxen 250mg tablets,360911000001103,AMP,1001010P0AAADAD -36105911000001102,Ibular 200mg tablets,36105911000001102,AMP,1001010J0DJAAAD -36106111000001106,Ibular 400mg tablets,36106111000001106,AMP,1001010J0DJABAE -361811000001100,Piroxicam 10mg dispersible tablets,361811000001100,AMP,1001010R0AAADAD -363911000001106,Flurbiprofen 100mg tablets,363911000001106,AMP,1001010I0AAACAC -36513111000001106,Ibuprofen 600mg tablets,36513111000001106,AMP,1001010J0AAAFAF -36563711000001106,Diclofenac sodium 100mg modified-release tablets,36563711000001106,VMP,1001010C0AAAFAF -36564511000001103,Naproxen 375mg gastro-resistant tablets,36564511000001103,VMP,1001010P0AAAJAJ -36566511000001109,Diclofenac sodium 25mg gastro-resistant tablets,36566511000001109,VMP,1001010C0AAADAD -365911000001107,Ketoprofen 50mg capsules,365911000001107,AMP,1001010L0AAAAAA -36597211000001105,Naproxen 250mg tablets,36597211000001105,AMP,1001010P0AAADAD -36597611000001107,Naproxen 500mg tablets,36597611000001107,AMP,1001010P0AAAEAE -36603011000001101,Ibuprofen Twelve Plus Pain Relief 200mg/5ml oral suspension,36603011000001101,AMP,1001010J0DKAABR -36608611000001101,Ibuprofen 200mg/5ml oral suspension sugar free,36608611000001101,VMP,1001010J0AABRBR -36700311000001101,Ibuprofen 600mg tablets,36700311000001101,AMP,1001010J0AAAFAF -3671411000001106,Sulindac 100mg tablets,3671411000001106,AMP,1001010S0AAAAAA -3671811000001108,Sulindac 100mg tablets,3671811000001108,AMP,1001010S0AAAAAA -36736411000001102,Nexocin EC 250mg gastro-resistant tablets,36736411000001102,AMP,1001010P0BYAAAH -36737011000001109,Nexocin EC 375mg gastro-resistant tablets,36737011000001109,AMP,1001010P0BYABAJ -3673711000001104,Sulindac 100mg tablets,3673711000001104,AMP,1001010S0AAAAAA -36737211000001104,Nexocin EC 500mg gastro-resistant tablets,36737211000001104,AMP,1001010P0BYACAI -3674011000001104,Dolobid 250mg tablets,3674011000001104,AMP,1001010D0BBAAAA -36741411000001107,Celecoxib 200mg capsules,36741411000001107,AMP,1001010AHAAABAB -3674211000001109,Clinoril 100mg tablets,3674211000001109,AMP,1001010S0BBAAAA -3674511000001107,Sulindac 100mg tablets,3674511000001107,AMP,1001010S0AAAAAA -3674611000001106,Dolobid 500mg tablets,3674611000001106,AMP,1001010D0BBABAB -367511000001109,Ibuprofen 200mg tablets,367511000001109,AMP,1001010J0AAADAD -36751811000001106,Celecoxib 100mg capsules,36751811000001106,AMP,1001010AHAAAAAA -3675211000001105,Sulindac 200mg tablets,3675211000001105,AMP,1001010S0AAABAB -3675511000001108,Sulindac 200mg tablets,3675511000001108,AMP,1001010S0AAABAB -3675811000001106,Sulindac 200mg tablets,3675811000001106,AMP,1001010S0AAABAB -3676011000001109,Clinoril 200mg tablets,3676011000001109,AMP,1001010S0BBABAB -36760411000001109,Ibuprofen Seven Plus Pain Relief 200mg/5ml oral suspension,36760411000001109,AMP,1001010J0DKABBR -3676211000001104,Sulindac 200mg tablets,3676211000001104,AMP,1001010S0AAABAB -36781911000001106,Naproxen 500mg gastro-resistant tablets,36781911000001106,AMP,1001010P0AAAIAI -36782111000001103,Naproxen 250mg gastro-resistant tablets,36782111000001103,AMP,1001010P0AAAHAH -36784811000001104,Diclofenac sodium 25mg gastro-resistant tablets,36784811000001104,AMP,1001010C0AAADAD -36785011000001109,Diclofenac sodium 50mg gastro-resistant tablets,36785011000001109,AMP,1001010C0AAAEAE -367911000001102,Naproxen 250mg gastro-resistant tablets,367911000001102,AMP,1001010P0AAAHAH -368011000001100,Brufen Retard 800mg tablets,368011000001100,AMP,1001010J0BCAFAP -368211000001105,Naproxen 500mg gastro-resistant tablets,368211000001105,AMP,1001010P0AAAIAI -36833011000001101,Etoricoxib 30mg tablets,36833011000001101,AMP,1001010AJAAADAD -36833211000001106,Etoricoxib 60mg tablets,36833211000001106,AMP,1001010AJAAAAAA -36833411000001105,Etoricoxib 90mg tablets,36833411000001105,AMP,1001010AJAAABAB -36833611000001108,Etoricoxib 120mg tablets,36833611000001108,AMP,1001010AJAAACAC -3684611000001103,Fenopron 300 tablets,3684611000001103,AMP,1001010G0BBAAAB -3685511000001101,Fenopron 600 tablets,3685511000001101,AMP,1001010G0BBABAD -36859211000001109,Celecoxib 100mg capsules,36859211000001109,AMP,1001010AHAAAAAA -36859611000001106,Celecoxib 200mg capsules,36859611000001106,AMP,1001010AHAAABAB -36926211000001106,Naproxen 500mg tablets,36926211000001106,AMP,1001010P0AAAEAE -370195008,Ibuprofen 200mg capsules,370195008,VMP,1001010J0AAAAAA -37062811000001105,Ibuprofen 400mg tablets,37062811000001105,AMP,1001010J0AAAEAE -37064511000001102,Etoricoxib 30mg tablets,37064511000001102,AMP,1001010AJAAADAD -37065011000001109,Etoricoxib 60mg tablets,37065011000001109,AMP,1001010AJAAAAAA -37065411000001100,Etoricoxib 90mg tablets,37065411000001100,AMP,1001010AJAAABAB -37065911000001108,Etoricoxib 120mg tablets,37065911000001108,AMP,1001010AJAAACAC -37079111000001100,Ibuprofen 600mg tablets,37079111000001100,AMP,1001010J0AAAFAF -37084611000001101,Diclofenac sodium 100mg modified-release capsules,37084611000001101,VMP,1001010C0AAANAN -37084911000001107,Diclofenac sodium 75mg modified-release capsules,37084911000001107,VMP,1001010C0AAAWAW -37119811000001109,Mefenamic acid 500mg tablets,37119811000001109,AMP,1001010N0AAADAD -37122511000001106,Naproxen 250mg gastro-resistant tablets,37122511000001106,AMP,1001010P0AAAHAH -37230511000001109,Etoricoxib 30mg tablets,37230511000001109,AMP,1001010AJAAADAD -37236911000001104,Diclofenac sodium 25mg gastro-resistant tablets,37236911000001104,AMP,1001010C0AAADAD -372911000001106,Ibuprofen 600mg tablets film coated,372911000001106,AMP,1001010J0AAAFAF -37336111000001109,Naproxen 375mg gastro-resistant tablets,37336111000001109,AMP,1001010P0AAAJAJ -37354011000001104,Etoricoxib 120mg tablets,37354011000001104,AMP,1001010AJAAACAC -37354711000001102,Etoricoxib 30mg tablets,37354711000001102,AMP,1001010AJAAADAD -37355211000001105,Etoricoxib 60mg tablets,37355211000001105,AMP,1001010AJAAAAAA -37355811000001106,Etoricoxib 90mg tablets,37355811000001106,AMP,1001010AJAAABAB -37358211000001103,Arcoxia 90mg tablets,37358211000001103,AMP, -37358511000001100,Arcoxia 60mg tablets,37358511000001100,AMP, -37377011000001109,Etoricoxib 30mg tablets,37377011000001109,AMP,1001010AJAAADAD -37377411000001100,Etoricoxib 60mg tablets,37377411000001100,AMP,1001010AJAAAAAA -37377611000001102,Etoricoxib 90mg tablets,37377611000001102,AMP,1001010AJAAABAB -37378011000001105,Etoricoxib 120mg tablets,37378011000001105,AMP,1001010AJAAACAC -37380011000001100,Brufen Retard 800mg tablets,37380011000001100,AMP, -37380211000001105,Brufen 600mg effervescent granules sachets,37380211000001105,AMP, -37386211000001107,Preservex 100mg tablets,37386211000001107,AMP, -37399311000001105,Oruvail 200 modified-release capsules,37399311000001105,AMP, -37421811000001101,Ibuprofen 100mg/5ml oral suspension sugar free,37421811000001101,AMP,1001010J0AABHBH -37422011000001104,Ibuprofen 600mg tablets,37422011000001104,AMP,1001010J0AAAFAF -374311000001103,Defanac 50mg gastro-resistant tablets,374311000001103,AMP,1001010C0CIADAE -37530011000001108,Lodine SR 600mg tablets,37530011000001108,AMP, -37609211000001109,Naproxen 50mg/ml oral suspension,37609211000001109,AMP,1001010P0AABFBF -37620411000001105,Arcoxia 60mg tablets,37620411000001105,AMP, -37620611000001108,Arcoxia 90mg tablets,37620611000001108,AMP, -37620811000001107,Arthrotec 50 gastro-resistant tablets,37620811000001107,AMP, -376878007,Indometacin 25mg/5ml oral suspension,376878007,VMP,1001010K0AABBBB -37689911000001101,Aceclofenac 100mg tablets,37689911000001101,AMP, -37723411000001105,Mefenamic acid 500mg tablets,37723411000001105,AMP, -377711000001106,Naproxen 500mg tablets,377711000001106,AMP,1001010P0AAAEAE -37862011000001100,Ibuprofen 200mg tablets,37862011000001100,AMP,1001010J0AAADAD -37893811000001100,Celecoxib 100mg capsules,37893811000001100,AMP,1001010AHAAAAAA -37894011000001108,Celecoxib 200mg capsules,37894011000001108,AMP,1001010AHAAABAB -37926711000001100,Diclofenac sodium 25mg gastro-resistant tablets,37926711000001100,AMP,1001010C0AAADAD -37926911000001103,Diclofenac sodium 50mg gastro-resistant tablets,37926911000001103,AMP,1001010C0AAAEAE -37999211000001105,Naproxen 250mg gastro-resistant tablets,37999211000001105,AMP,1001010P0AAAHAH -37999411000001109,Naproxen 375mg gastro-resistant tablets,37999411000001109,AMP,1001010P0AAAJAJ -37999611000001107,Naproxen 500mg gastro-resistant tablets,37999611000001107,AMP,1001010P0AAAIAI -37999811000001106,Naproxen 500mg tablets,37999811000001106,AMP,1001010P0AAAEAE -38122811000001103,Brufen Retard 800mg tablets,38122811000001103,AMP, -38411011000001109,Diclo-SR 75mg tablets,38411011000001109,AMP,1001010C0CRAAAL -385011000001106,Piroxicam 10mg capsules,385011000001106,AMP,1001010R0AAAAAA -386511000001105,Defanac 25mg gastro-resistant tablets,386511000001105,AMP,1001010C0CIACAD -3869111000001103,Nurofen Meltlets 200mg tablets,3869111000001103,AMP,1001010J0B4AHBN -38692711000001102,Nurofen for Children 200mg/5ml oral suspension orange,38692711000001102,AMP,1001010J0B4BCBR -38692911000001100,Nurofen for Children 200mg/5ml oral suspension strawberry,38692911000001100,AMP,1001010J0B4BDBR -38695211000001104,Ibuprofen 400mg tablets,38695211000001104,AMP,1001010J0AAAEAE -38695411000001100,Ibuprofen 200mg tablets,38695411000001100,AMP,1001010J0AAADAD -387211000001109,Indometacin 25mg capsules,387211000001109,AMP,1001010K0AAAAAA -3875511000001104,Ibuprofen 200mg orodispersible tablets sugar free,3875511000001104,VMP,1001010J0AABNBN -38763711000001104,Aceclofenac 100mg tablets,38763711000001104,AMP,100101080AAAAAA -38826811000001106,Celecoxib 200mg capsules,38826811000001106,AMP,1001010AHAAABAB -38827111000001101,Celecoxib 100mg capsules,38827111000001101,AMP,1001010AHAAAAAA -38869711000001103,Diclofenac potassium 50mg tablets,38869711000001103,AMP,1001010AGAAABAB -38869911000001101,Diclofenac sodium 25mg gastro-resistant tablets,38869911000001101,AMP,1001010C0AAADAD -38870111000001101,Diclofenac sodium 50mg gastro-resistant tablets,38870111000001101,AMP,1001010C0AAAEAE -38902311000001104,Etoricoxib 120mg tablets,38902311000001104,AMP,1001010AJAAACAC -38902611000001109,Etoricoxib 30mg tablets,38902611000001109,AMP,1001010AJAAADAD -38902811000001108,Etoricoxib 60mg tablets,38902811000001108,AMP,1001010AJAAAAAA -38903011000001106,Etoricoxib 90mg tablets,38903011000001106,AMP,1001010AJAAABAB -38920811000001101,Flurbiprofen 100mg tablets,38920811000001101,AMP,1001010I0AAACAC -389511000001100,Arthrofen 200 tablets,389511000001100,AMP,1001010J0B1ADAD -38957111000001108,Nabumetone 500mg tablets,38957111000001108,AMP,1001010X0AAAAAA -38968711000001103,Ibuprofen 200mg tablets,38968711000001103,AMP,1001010J0AAADAD -38991111000001109,Ibuprofen 400mg tablets,38991111000001109,AMP,1001010J0AAAEAE -38991811000001102,Ibuprofen 600mg tablets,38991811000001102,AMP,1001010J0AAAFAF -38997011000001103,Ibuprofen 100mg/5ml oral suspension sugar free,38997011000001103,AMP,1001010J0AABHBH -39000711000001105,Indometacin 25mg capsules,39000711000001105,AMP,1001010K0AAAAAA -39000911000001107,Indometacin 50mg capsules,39000911000001107,AMP,1001010K0AAABAB -39024511000001101,Diclofenac sodium 75mg modified-release tablets,39024511000001101,VMP,1001010C0AAALAL -39035311000001108,Mefenamic acid 250mg capsules,39035311000001108,AMP,1001010N0AAAAAA -39035511000001102,Mefenamic acid 500mg tablets,39035511000001102,AMP,1001010N0AAADAD -39035911000001109,Meloxicam 15mg tablets,39035911000001109,AMP,1001010AAAAABAB -39036111000001100,Meloxicam 7.5mg tablets,39036111000001100,AMP,1001010AAAAAAAA -39053211000001103,Nabumetone 500mg tablets,39053211000001103,AMP,1001010X0AAAAAA -39053611000001101,Naproxen 250mg tablets,39053611000001101,AMP,1001010P0AAADAD -39053811000001102,Naproxen 375mg gastro-resistant tablets,39053811000001102,AMP,1001010P0AAAJAJ -39054011000001105,Naproxen 500mg tablets,39054011000001105,AMP,1001010P0AAAEAE -39054211000001100,Naproxen 250mg gastro-resistant tablets,39054211000001100,AMP,1001010P0AAAHAH -39054411000001101,Naproxen 500mg gastro-resistant tablets,39054411000001101,AMP,1001010P0AAAIAI -39108111000001104,Ibuprofen 100mg/5ml oral suspension sugar free,39108111000001104,VMP,1001010J0AABHBH -39109711000001107,Etodolac 600mg modified-release tablets,39109711000001107,VMP,1001010E0AAADAD -39110311000001101,Ibuprofen 800mg modified-release tablets,39110311000001101,VMP,1001010J0AAAPAP -3915411000001104,Nurofen Plus tablets,3915411000001104,AMP,1001010J0B4AKAY -3916211000001109,Solpaflex tablets,3916211000001109,AMP,1001010J0CBAAAY -39162411000001108,Piroxicam 10mg capsules,39162411000001108,AMP,1001010R0AAAAAA -39162711000001102,Piroxicam 20mg capsules,39162711000001102,AMP,1001010R0AAABAB -3917611000001108,Nurofen 200mg liquid capsules,3917611000001108,AMP,1001010J0B4AIAA -3918911000001101,Anadin Ultra 200mg capsules,3918911000001101,AMP,1001010J0CJABAA -392111000001104,Pardelprin MR 75mg capsules,392111000001104,AMP,1001010K0BVAAAD -39258411000001103,Sulindac 100mg tablets,39258411000001103,AMP,1001010S0AAAAAA -39258711000001109,Sulindac 200mg tablets,39258711000001109,AMP,1001010S0AAABAB -393211000001104,Mefenamic acid 500mg tablets,393211000001104,AMP,1001010N0AAADAD -39411000001109,Ketoprofen 100mg capsules,39411000001109,AMP,1001010L0AAABAB -39414411000001101,Ibuprofen 200mg tablets,39414411000001101,AMP,1001010J0AAADAD -39415111000001105,Ibuprofen 400mg tablets,39415111000001105,AMP,1001010J0AAAEAE -3953411000001109,Motifene 75mg modified-release capsules,3953411000001109,AMP,1001010C0BPAAAR -396811000001107,Naproxen 500mg tablets,396811000001107,AMP,1001010P0AAAEAE -39690211000001106,Dexketoprofen 25mg tablets,39690211000001106,VMP,1001010AEAAAAAA -39692011000001102,Fenoprofen 300mg tablets,39692011000001102,VMP,1001010G0AAABAB -39693611000001104,Ibuprofen 200mg / Pseudoephedrine hydrochloride 30mg tablets,39693611000001104,VMP,1001010J0AABJBJ -39709911000001103,Diclofenac 50mg dispersible tablets sugar free,39709911000001103,VMP,1001010C0AAAJAJ -39721011000001108,Piroxicam 10mg dispersible tablets,39721011000001108,VMP,1001010R0AAADAD -39721211000001103,Piroxicam 20mg dispersible tablets,39721211000001103,VMP,1001010R0AAAEAE -39737111000001104,Ibuprofen 400mg capsules,39737111000001104,AMP,1001010J0AAAUAU -3979611000001106,Ebretin 300mg capsules,3979611000001106,AMP,1001010E0BDABAC -398311000001104,Fenbufen 450mg tablets,398311000001104,AMP,1001010F0AAACAC -39879911000001107,Meloxicam 15mg orodispersible tablets sugar free,39879911000001107,AMP,1001010AAAAAJAJ -39880111000001109,Meloxicam 7.5mg orodispersible tablets sugar free,39880111000001109,AMP,1001010AAAAAKAK -3996111000001104,Galprofen Long Lasting 200mg capsules,3996111000001104,AMP,1001010J0CCACBA -39977211000001102,Ibuprofen 400mg tablets,39977211000001102,AMP,1001010J0AAAEAE -403111000001103,Ketozip 200 XL capsules,403111000001103,AMP,1001010L0BKAAAJ -403211000001109,Pirozip 10 capsules,403211000001109,AMP,1001010R0BDAAAA -40619711000001108,Diclofenac sodium 25mg gastro-resistant tablets,40619711000001108,AMP,1001010C0AAADAD -40685111000001107,Etoricoxib 60mg tablets,40685111000001107,AMP,1001010AJAAAAAA -40685311000001109,Etoricoxib 90mg tablets,40685311000001109,AMP,1001010AJAAABAB -40685511000001103,Etoricoxib 120mg tablets,40685511000001103,AMP,1001010AJAAACAC -40689411000001104,Etoricoxib 90mg tablets,40689411000001104,AMP,1001010AJAAABAB -40692911000001101,Etoricoxib 60mg tablets,40692911000001101,AMP,1001010AJAAAAAA -40693711000001106,Etoricoxib 30mg tablets,40693711000001106,AMP,1001010AJAAADAD -40694111000001107,Etoricoxib 120mg tablets,40694111000001107,AMP,1001010AJAAACAC -40694811000001100,Naproxen 250mg tablets,40694811000001100,AMP,1001010P0AAADAD -40695011000001105,Naproxen 500mg tablets,40695011000001105,AMP,1001010P0AAAEAE -407711000001107,Diclovol 50mg gastro-resistant tablets,407711000001107,AMP,1001010C0CCABAE -407904005,Ibuprofen 200mg / Pseudoephedrine hydrochloride 30mg tablets,407904005,VMP,1001010J0AABJBJ -407907003,Etoricoxib 60mg tablets,407907003,VMP,1001010AJAAAAAA -407908008,Etoricoxib 90mg tablets,407908008,VMP,1001010AJAAABAB -407909000,Etoricoxib 120mg tablets,407909000,VMP,1001010AJAAACAC -40829711000001109,Etoricoxib 30mg tablets,40829711000001109,AMP,1001010AJAAADAD -40855211000001101,Mefenamic acid 500mg tablets,40855211000001101,AMP,1001010N0AAADAD -408602008,Lornoxicam 8mg tablets,408602008,VMP,1001010AIAAACAC -408811000001100,Naproxen 500mg tablets,408811000001100,AMP,1001010P0AAAEAE -40910911000001100,Galpharm Rapid Ibuprofen lysine 342mg tablets,40910911000001100,AMP,1001010ADBHAAAB -40913711000001106,Noubid 200mg tablets,40913711000001106,AMP,1001010J0DLAAAD -40927611000001102,Ibuprofen 200mg tablets,40927611000001102,AMP,1001010J0AAADAD -40928011000001105,Ibuprofen 400mg tablets,40928011000001105,AMP,1001010J0AAAEAE -41014211000001102,Ibuprofen 400mg capsules,41014211000001102,AMP,1001010J0AAAUAU -410711000001109,Flurbiprofen 100mg tablets,410711000001109,AMP,1001010I0AAACAC -41091211000001100,Bell's Children's Pain & Fever Relief 100mg/5ml oral suspension,41091211000001100,AMP,1001010J0DMAABH -411211000001108,Mefenamic acid 500mg tablets,411211000001108,AMP,1001010N0AAADAD -41169911000001101,Period Pain Reliever 250mg gastro-resistant tablets,41169911000001101,AMP, -41351211000001108,Mefenamic acid 500mg tablets,41351211000001108,AMP, -415611000001108,Arthrofen 600 tablets,415611000001108,AMP,1001010J0B1AFAF -415811000001107,Ibuprofen 400mg tablets sugar coated,415811000001107,AMP,1001010J0AAAEAE -418352003,Dexibuprofen 300mg tablets,418352003,VMP,1001010AMAAAAAA -418811000001103,Diclofenac sodium 100mg modified-release tablets,418811000001103,AMP, -418855005,Dexibuprofen 400mg tablets,418855005,VMP,1001010AMAAABAB -419711000001102,Ketovail 100mg modified-release capsules,419711000001102,AMP,1001010L0BEAAAI -420811000001109,Ibuprofen 400mg tablets sugar coated,420811000001109,AMP,1001010J0AAAEAE -429511000001103,Orudis 50mg capsules,429511000001103,AMP,1001010L0BCAAAA -430611000001107,Ketoprofen 200mg modified-release capsules,430611000001107,AMP, -4331311000001106,Indometacin 25mg capsules,4331311000001106,AMP,1001010K0AAAAAA -4331511000001100,Indometacin 50mg capsules,4331511000001100,AMP,1001010K0AAABAB -434011000001107,Naprosyn EC 500mg tablets,434011000001107,AMP,1001010P0BCAIAI -434411000001103,Valdic 100 Retard tablets,434411000001103,AMP,1001010C0CHAAAF -434811000001101,Ibuprofen 400mg tablets,434811000001101,AMP,1001010J0AAAEAE -436011000001102,Nabumetone 500mg tablets,436011000001102,AMP,1001010X0AAAAAA -440911000001102,Defanac Retard 100mg tablets,440911000001102,AMP,1001010C0CIABAF -44511000001108,Lofensaid 50mg gastro-resistant tablets,44511000001108,AMP,1001010C0BRAAAE -445711000001109,Brufen 100mg/5ml syrup,445711000001109,AMP,1001010J0BCADAC -447511000001108,Naproxen 500mg tablets,447511000001108,AMP,1001010P0AAAEAE -447611000001107,Fenbufen 450mg tablets,447611000001107,AMP,1001010F0AAACAC -450411000001108,Piroxicam 20mg capsules,450411000001108,AMP,1001010R0AAABAB -450611000001106,Lofensaid 25mg gastro-resistant tablets,450611000001106,AMP,1001010C0BRABAD -4506711000001105,Xefo 8mg tablets,4506711000001105,AMP,1001010AIBBACAC -451211000001103,Ibuprofen 600mg tablets,451211000001103,AMP,1001010J0AAAFAF -451911000001107,Piroxicam 20mg dispersible tablets,451911000001107,AMP,1001010R0AAAEAE -4535711000001109,Fenpaed 100mg/5ml oral suspension,4535711000001109,AMP,1001010J0CXABBH -4545511000001100,Nurofen Advance 200mg tablets,4545511000001100,AMP,1001010ADBBAAAB -4550611000001107,Naprosyn 125mg/5ml oral suspension,4550611000001107,AMP,1001010P0BCACAR -455111000001106,Ketoprofen 200mg modified-release capsules,455111000001106,AMP, -4557011000001104,Ibuprofen lysine 200mg tablets,4557011000001104,VMP,1001010ADAAABAB -455811000001104,Piroxicam 10mg dispersible tablets,455811000001104,AMP,1001010R0AAADAD -4572011000001104,Diclofenac sodium 75mg modified-release tablets,4572011000001104,AMP, -4572311000001101,Diclofenac sodium 100mg modified-release tablets,4572311000001101,AMP, -4573211000001103,Indometacin 75mg modified-release capsules,4573211000001103,AMP, -4575711000001106,Ketoprofen 100mg modified-release capsules,4575711000001106,AMP,1001010L0AAAIAI -458511000001105,Orudis 100mg capsules,458511000001105,AMP,1001010L0BCABAB -4585211000001105,Calprofen 100mg/5ml oral suspension,4585211000001105,AMP,1001010J0DBAABH -4603011000001107,Ibuprofen 200mg tablets,4603011000001107,AMP,1001010J0AAADAD -4603411000001103,Nurofen Recovery 200mg orodispersible tablets,4603411000001103,AMP,1001010J0B4AMBN -4603811000001101,Nurofen Migraine Pain 342mg tablets,4603811000001101,AMP,1001010ADBCACAB -4604211000001104,Ibuprofen 400mg tablets,4604211000001104,AMP,1001010J0AAAEAE -4605611000001101,Nurofen for Children Singles 100mg/5ml oral suspension 5ml sachets orange,4605611000001101,AMP,1001010J0B4ALBM -4606211000001109,Nurofen Cold and Flu tablets,4606211000001109,AMP,1001010J0B4APBJ -4615511000001102,Ibuprofen 100mg/5ml oral suspension 5ml sachets sugar free,4615511000001102,VMP,1001010J0AABMBM -4626911000001105,Eccoxolac 300mg capsules,4626911000001105,AMP,1001010E0BFAAAC -4632211000001100,Feverfen 100mg/5ml oral suspension,4632211000001100,AMP,1001010J0CWABBH -4663611000001101,Butacote 100mg gastro-resistant tablets,4663611000001101,AMP,1001010Q0BBAAAB -468211000001100,Piroxicam 10mg capsules,468211000001100,AMP,1001010R0AAAAAA -473411000001103,Feldene 10mg dispersible tablets,473411000001103,AMP,1001010R0BBACAD -474111000001105,Galprofen 200mg tablets,474111000001105,AMP,1001010J0CCAAAD -477011000001101,Orbifen For Children 100mg/5ml oral suspension,477011000001101,AMP,1001010J0CRAABH -477611000001108,Flurbiprofen 50mg tablets,477611000001108,AMP,1001010I0AAABAB -481611000001108,Naproxen 500mg tablets,481611000001108,AMP,1001010P0AAAEAE -482011000001109,Larafen CR 200mg capsules,482011000001109,AMP,1001010L0BHAAAJ -4820811000001106,Flurbiprofen 50mg tablets,4820811000001106,AMP,1001010I0AAABAB -4821011000001109,Flurbiprofen 100mg tablets,4821011000001109,AMP,1001010I0AAACAC -4870111000001103,Nabumetone 500mg tablets,4870111000001103,AMP,1001010X0AAAAAA -490411000001102,Lofensaid Retard 100 tablets,490411000001102,AMP,1001010C0BRADAF -491911000001103,Ibuprofen 400mg tablets,491911000001103,AMP,1001010J0AAAEAE -494511000001107,Piroxicam 10mg capsules,494511000001107,AMP,1001010R0AAAAAA -495411000001109,Surgam SA 300mg capsules,495411000001109,AMP,1001010T0BBADAD -497011000001107,Closteril 100 modified-release tablets,497011000001107,AMP,1001010C0CGAAAF -49711000001102,Flamrase 75mg SR tablets,49711000001102,AMP,1001010C0BKADAL -497111000001108,Ibuprofen 400mg tablets,497111000001108,AMP,1001010J0AAAEAE -497711000001109,Piroxicam 20mg dispersible tablets,497711000001109,AMP,1001010R0AAAEAE -5003211000001101,Nabumetone 500mg tablets,5003211000001101,AMP,1001010X0AAAAAA -5021111000001102,Ibuprofen 100mg/5ml oral suspension sugar free,5021111000001102,AMP,1001010J0AABHBH -505811000001104,Ketoprofen 100mg modified-release capsules,505811000001104,AMP,1001010L0AAAIAI -510811000001107,Flurbiprofen 50mg tablets,510811000001107,AMP,1001010I0AAABAB -513511000001103,Ketoprofen 50mg capsules,513511000001103,AMP,1001010L0AAAAAA -521011000001101,Naproxen 500mg tablets,521011000001101,AMP,1001010P0AAAEAE -521711000001104,Naproxen 250mg tablets,521711000001104,AMP,1001010P0AAADAD -522911000001108,Ibuprofen 400mg tablets,522911000001108,AMP,1001010J0AAAEAE -525611000001106,Indometacin 50mg capsules,525611000001106,AMP,1001010K0AAABAB -530011000001108,Diclofenac sodium 25mg gastro-resistant tablets,530011000001108,AMP,1001010C0AAADAD -531911000001100,Indometacin 75mg modified-release capsules,531911000001100,AMP, -5329711000001101,Aceclofenac 100mg tablets,5329711000001101,AMP, -5334711000001100,Arthrotec 50 gastro-resistant tablets,5334711000001100,AMP, -5335511000001106,Arthrotec 75 gastro-resistant tablets,5335511000001106,AMP, -5346211000001101,Celebrex 200mg capsules,5346211000001101,AMP, -534911000001102,Diclofenac sodium 25mg gastro-resistant tablets,534911000001102,AMP,1001010C0AAADAD -5358611000001100,Dexketoprofen 25mg tablets,5358611000001100,AMP, -5361611000001103,Diclofenac 50mg dispersible tablets sugar free,5361611000001103,AMP, -5363211000001101,Dolobid 500mg tablets,5363211000001101,AMP, -5368511000001107,Froben SR 200mg capsules,5368511000001107,AMP, -538211000001100,Froben 100mg tablets,538211000001100,AMP,1001010I0BBABAC -5389511000001104,Mobic 7.5mg tablets,5389511000001104,AMP, -5389711000001109,Meloxicam 7.5mg tablets,5389711000001109,AMP, -5389911000001106,Meloxicam 15mg tablets,5389911000001106,AMP, -5390911000001104,Mobic 15mg tablets,5390911000001104,AMP, -5392711000001102,Motifene 75mg modified-release capsules,5392711000001102,AMP, -5392911000001100,Naprosyn 500mg tablets,5392911000001100,AMP, -5396711000001103,Oruvail 200 modified-release capsules,5396711000001103,AMP, -5406211000001101,Relifex 500mg tablets,5406211000001101,AMP, -541311000001100,Indomod 75mg modified-release capsules,541311000001100,AMP,1001010K0BIABAD -541811000001109,Acoflam 75mg SR tablets,541811000001109,AMP,1001010C0CDACAL -5425611000001101,Voltarol Retard 100mg tablets,5425611000001101,AMP, -5426311000001101,Vioxx 25mg tablets,5426311000001101,AMP, -5441311000001107,Aceclofenac 100mg tablets,5441311000001107,AMP, -5441711000001106,Preservex 100mg tablets,5441711000001106,AMP, -5474911000001107,Naproxen 250mg gastro-resistant tablets,5474911000001107,AMP,1001010P0AAAHAH -547611000001101,Diclofenac sodium 50mg gastro-resistant tablets,547611000001101,AMP,1001010C0AAAEAE -547811000001102,Naproxen 250mg gastro-resistant tablets,547811000001102,AMP,1001010P0AAAHAH -5482811000001102,Mobiflex 20mg tablets,5482811000001102,AMP, -5489311000001103,Brufen Retard 800mg tablets,5489311000001103,AMP, -5496511000001100,Meloxicam 15mg tablets,5496511000001100,AMP, -5496611000001101,Meloxicam 7.5mg tablets,5496611000001101,AMP, -550011000001109,Motrin 600mg tablets,550011000001109,AMP,1001010J0BHACAF -5506011000001100,Nabumetone 500mg tablets,5506011000001100,AMP, -5511811000001103,Tenoxicam 20mg tablets,5511811000001103,AMP, -5525711000001101,Brufen Retard 800mg tablets,5525711000001101,AMP, -5529911000001102,Celebrex 200mg capsules,5529911000001102,AMP, -5530911000001106,Celebrex 100mg capsules,5530911000001106,AMP, -5545311000001102,Froben SR 200mg capsules,5545311000001102,AMP, -555811000001109,Diclofenac sodium 25mg gastro-resistant tablets,555811000001109,AMP,1001010C0AAADAD -5561611000001101,Mobic 15mg tablets,5561611000001101,AMP, -5562611000001107,Mobic 7.5mg tablets,5562611000001107,AMP, -5565611000001103,Motifene 75mg modified-release capsules,5565611000001103,AMP, -5567511000001106,Oruvail 200 modified-release capsules,5567511000001106,AMP, -5590411000001105,Mobiflex 20mg tablets,5590411000001105,AMP, -5595511000001104,Vioxx 25mg tablets,5595511000001104,AMP, -5597111000001104,Voltarol 75mg SR tablets,5597111000001104,AMP, -5597311000001102,Voltarol Retard 100mg tablets,5597311000001102,AMP, -5613011000001104,Arthrotec 50 gastro-resistant tablets,5613011000001104,AMP, -5613611000001106,Arthrotec 75 gastro-resistant tablets,5613611000001106,AMP, -5621511000001101,Relifex 500mg tablets,5621511000001101,AMP, -5639311000001108,Econac SR 75mg tablets,5639311000001108,AMP,1001010C0CKAAAL -5639711000001107,Econac XL 100mg tablets,5639711000001107,AMP,1001010C0CKABAF -56411000001103,Synflex 275mg tablets,56411000001103,AMP,100101070BBAAAA -564511000001104,Indometacin 25mg capsules,564511000001104,AMP,1001010K0AAAAAA -565511000001103,Tenoxicam 20mg tablets,565511000001103,AMP,100101040AAAAAA -570111000001107,Dicloflex 25mg gastro-resistant tablets,570111000001107,AMP,1001010C0BQAAAD -574511000001107,Flurbiprofen 50mg tablets,574511000001107,AMP,1001010I0AAABAB -579011000001103,Naproxen 250mg gastro-resistant tablets,579011000001103,AMP,1001010P0AAAHAH -581911000001106,Indocid 50mg capsules,581911000001106,AMP,1001010K0BDABAB -586711000001103,Ponstan Forte 500mg tablets,586711000001103,AMP,1001010N0BBABAD -589011000001106,Emflex 60mg capsules,589011000001106,AMP,100101050BBAAAA -591611000001104,Mobic 7.5mg tablets,591611000001104,AMP,1001010AABBAAAA -594411000001100,Fenbufen 450mg tablets,594411000001100,AMP,1001010F0AAACAC -601311000001100,Anadin Ibuprofen 200mg tablets,601311000001100,AMP,1001010J0CJAAAD -602311000001109,Flamrase 25 EC tablets,602311000001109,AMP,1001010C0BKAAAD -602711000001108,Tenoxicam 20mg tablets,602711000001108,AMP,100101040AAAAAA -603311000001104,Naproxen 250mg gastro-resistant tablets,603311000001104,AMP,1001010P0AAAHAH -604011000001100,Indometacin 50mg capsules,604011000001100,AMP,1001010K0AAABAB -60511000001108,Naproxen 250mg tablets,60511000001108,AMP,1001010P0AAADAD -605911000001102,Voltarol Rapid 50mg tablets,605911000001102,AMP,1001010AGBBABAB -61111000001105,Naprosyn S/R 500mg tablets,61111000001105,AMP,1001010P0BCAJAQ -611711000001104,Naprosyn EC 375mg tablets,611711000001104,AMP,1001010P0BCAHAJ -616611000001101,Fenbufen 450mg tablets,616611000001101,AMP,1001010F0AAACAC -621611000001103,Cuprofen Maximum Strength 400mg tablets,621611000001103,AMP,1001010J0BMACAE -621911000001109,Nurofen 200mg caplets,621911000001109,AMP,1001010J0B4AEAD -624911000001107,Arthrosin 250 tablets,624911000001107,AMP,1001010P0BDACAD -625011000001107,Diclofenac sodium 50mg gastro-resistant tablets,625011000001107,AMP,1001010C0AAAEAE -627511000001108,Piroxicam 20mg capsules,627511000001108,AMP,1001010R0AAABAB -630611000001105,Naproxen 250mg tablets,630611000001105,AMP,1001010P0AAADAD -632211000001109,Volsaid Retard 100 tablets,632211000001109,AMP,1001010C0BSABAF -63311000001108,Piroxicam 20mg capsules,63311000001108,AMP,1001010R0AAABAB -633211000001103,Advil Extra Strength 400mg tablets,633211000001103,AMP,1001010J0CEABAE -635011000001109,Nabumetone 500mg tablets,635011000001109,AMP,1001010X0AAAAAA -6407711000001109,Ibuprofen 200mg tablets sugar coated,6407711000001109,AMP,1001010J0AAADAD -640911000001100,Cuprofen 200mg tablets,640911000001100,AMP,1001010J0BMAAAD -641211000001103,Ibuprofen 600mg tablets,641211000001103,AMP,1001010J0AAAFAF -642011000001100,Junior Ibuprofen 100mg/5ml oral suspension,642011000001100,AMP,1001010J0CDABBH -643711000001106,Brufen 200mg tablets,643711000001106,AMP,1001010J0BCAAAD -644111000001107,Ibuprofen 400mg tablets,644111000001107,AMP,1001010J0AAAEAE -65111000001107,Ketoprofen 100mg capsules,65111000001107,AMP,1001010L0AAABAB -654211000001104,Ibuprofen 200mg tablets film coated,654211000001104,AMP,1001010J0AAADAD -655611000001101,Mefenamic acid 500mg tablets,655611000001101,AMP,1001010N0AAADAD -656011000001104,Fenactol Retard 100mg tablets,656011000001104,AMP,1001010C0CJADAF -657811000001107,Oruvail 150 modified-release capsules,657811000001107,AMP,1001010L0BDADAL -657911000001102,Flexotard MR 100mg tablets,657911000001102,AMP,1001010C0BXAAAF -658611000001107,Naproxen 375mg gastro-resistant tablets,658611000001107,AMP,1001010P0AAAJAJ -658811000001106,Flamatak MR 100mg tablets,658811000001106,AMP,1001010C0BYAAAF -659911000001109,Ketoprofen 200mg modified-release capsules,659911000001109,AMP,1001010L0AAAJAJ -663411000001105,Voltarol Rapid 25mg tablets,663411000001105,AMP,1001010AGBBAAAA -664811000001105,Nurofen for Children 100mg/5ml oral suspension orange,664811000001105,AMP,1001010J0B4AJBH -667011000001107,Slofenac 75mg SR tablets,667011000001107,AMP,1001010C0BWAAAL -678411000001107,Naproxen 500mg gastro-resistant tablets,678411000001107,AMP,1001010P0AAAIAI -681811000001105,Piroxicam 10mg dispersible tablets,681811000001105,AMP,1001010R0AAADAD -686111000001107,Flurbiprofen 100mg tablets,686111000001107,AMP,1001010I0AAACAC -687211000001104,Naproxen 250mg gastro-resistant tablets,687211000001104,AMP,1001010P0AAAHAH -692711000001105,Naproxen 500mg gastro-resistant tablets,692711000001105,AMP,1001010P0AAAIAI -694111000001101,Piroxicam 20mg capsules,694111000001101,AMP,1001010R0AAABAB -694411000001106,Nurofen 200mg tablets,694411000001106,AMP,1001010J0B4ABAD -699311000001103,Diclofenac sodium 50mg gastro-resistant tablets,699311000001103,AMP,1001010C0AAAEAE -700211000001105,Diclofenac sodium 50mg gastro-resistant tablets,700211000001105,AMP,1001010C0AAAEAE -714611000001102,Ibuprofen 400mg tablets,714611000001102,AMP,1001010J0AAAEAE -715111000001109,Rheumatac Retard 75 tablets,715111000001109,AMP,1001010C0CEAAAL -715411000001104,Ibuprofen 200mg tablets,715411000001104,AMP,1001010J0AAADAD -719711000001107,Dicloflex 50mg gastro-resistant tablets,719711000001107,AMP,1001010C0BQABAE -721011000001102,Diclofenac sodium 75mg modified-release tablets,721011000001102,AMP, -723011000001101,Piroxicam 20mg capsules,723011000001101,AMP,1001010R0AAABAB -731611000001107,Ibuprofen 100mg/5ml oral suspension sugar free,731611000001107,AMP,1001010J0AABHBH -732111000001109,Flurbiprofen 100mg tablets,732111000001109,AMP,1001010I0AAACAC -732311000001106,Jomethid XL 200mg capsules,732311000001106,AMP,1001010L0BMAAAJ -735411000001107,Piroxicam 10mg capsules,735411000001107,AMP,1001010R0AAAAAA -740211000001103,Mefenamic acid 500mg tablets,740211000001103,AMP,1001010N0AAADAD -741211000001109,Diclofenac sodium 50mg gastro-resistant tablets,741211000001109,AMP,1001010C0AAAEAE -745711000001100,Voltarol 50mg gastro-resistant tablets,745711000001100,AMP,1001010C0BBABAE -746311000001109,Indometacin 25mg capsules,746311000001109,AMP,1001010K0AAAAAA -7498011000001106,Tiloket 50mg capsules,7498011000001106,AMP,1001010L0BNACAA -749911000001101,Indometacin 50mg capsules,749911000001101,AMP,1001010K0AAABAB -75311000001102,Lederfen 300mg capsules,75311000001102,AMP,1001010F0BBAAAA -753111000001104,Tenoxicam 20mg tablets,753111000001104,AMP,100101040AAAAAA -756011000001108,Mefenamic acid 250mg capsules,756011000001108,AMP,1001010N0AAAAAA -757111000001107,Fenbufen 450mg tablets,757111000001107,AMP,1001010F0AAACAC -761911000001109,Flamrase SR 100mg tablets,761911000001109,AMP,1001010C0BKACAF -762311000001104,Froben 50mg tablets,762311000001104,AMP,1001010I0BBAAAB -763111000001107,Voltarol 75mg SR tablets,763111000001107,AMP,1001010C0BBAHAL -764211000001103,Naproxen 250mg gastro-resistant tablets,764211000001103,AMP,1001010P0AAAHAH -7643811000001101,Calprofen 100mg/5ml oral suspension paediatric,7643811000001101,AMP,1001010J0DBABBH -7664811000001108,Orbifen For Children 100mg/5ml oral suspension 5ml sachets,7664811000001108,AMP,1001010J0CRABBM -767711000001103,Mefenamic acid 250mg capsules,767711000001103,AMP,1001010N0AAAAAA -770811000001101,Indometacin 25mg capsules,770811000001101,AMP,1001010K0AAAAAA -771311000001100,Ibuprofen 200mg tablets,771311000001100,AMP,1001010J0AAADAD -774611000001107,Mefenamic acid 500mg tablets,774611000001107,AMP,1001010N0AAADAD -774811000001106,Naproxen 250mg tablets,774811000001106,AMP,1001010P0AAADAD -778511000001101,Ketoprofen 100mg modified-release capsules,778511000001101,AMP,1001010L0AAAIAI -779411000001108,Ibuprofen 400mg tablets,779411000001108,AMP,1001010J0AAAEAE -780411000001108,Diclofenac sodium 25mg gastro-resistant tablets,780411000001108,AMP,1001010C0AAADAD -78311000001106,Diclovol 25mg gastro-resistant tablets,78311000001106,AMP,1001010C0CCAAAD -784011000001106,Acoflam 100mg Retard tablets,784011000001106,AMP,1001010C0CDADAF -7852911000001109,Dicloflex 75mg SR tablets,7852911000001109,AMP,1001010C0BQAEAL -7853311000001103,Dicloflex Retard 100mg tablets,7853311000001103,AMP,1001010C0BQAGAF -7853611000001108,Diclovol 75mg SR tablets,7853611000001108,AMP,1001010C0CCAEAL -7854011000001104,Diclovol Retard 100mg tablets,7854011000001104,AMP,1001010C0CCAFAF -7854211000001109,Dicloflex 75mg SR tablets,7854211000001109,AMP,1001010C0BQAFAL -7854611000001106,Dicloflex Retard 100mg tablets,7854611000001106,AMP,1001010C0BQAHAF -787911000001104,Indometacin 50mg capsules,787911000001104,AMP,1001010K0AAABAB -788011000001102,Fenbufen 450mg tablets,788011000001102,AMP,1001010F0AAACAC -7898511000001105,Naproxen 375mg gastro-resistant tablets,7898511000001105,AMP,1001010P0AAAJAJ -7926811000001106,Ibuprofen 200mg caplets,7926811000001106,AMP,1001010J0AAADAD -7928011000001101,Ibuprofen 400mg caplets,7928011000001101,AMP,1001010J0AAAEAE -7929311000001109,Lloydspharmacy Ibuprofen 100mg/5ml oral suspension,7929311000001109,AMP,1001010J0CMAFBH -793611000001101,Valket 200 Retard capsules,793611000001101,AMP,1001010L0BNAAAJ -7944111000001109,Ibuprofen 100mg/5ml oral suspension sugar free,7944111000001109,AMP,1001010J0AABHBH -7987311000001109,Obifen 400mg tablets,7987311000001109,AMP, -799011000001106,Indometacin 50mg capsules,799011000001106,AMP,1001010K0AAABAB -7997311000001105,Mandafen for Children 100mg/5ml oral suspension sugar free,7997311000001105,AMP,1001010J0CYAABH -7997811000001101,Mandafen 400mg tablets,7997811000001101,AMP,1001010J0CYABAE -8008611000001103,Sudafed Sinus Pressure & Pain tablets,8008611000001103,AMP,1001010J0CSAABJ -802111000001103,Nabumetone 500mg tablets,802111000001103,AMP,1001010X0AAAAAA -804611000001103,Tiloket CR 100mg capsules,804611000001103,AMP,1001010L0BNABAI -804711000001107,Voltarol Retard 100mg tablets,804711000001107,AMP,1001010C0BBAFAF -805711000001106,Ibuprofen 200mg tablets sugar coated,805711000001106,AMP,1001010J0AAADAD -8061211000001108,Nurofen Back Pain SR 300mg capsules,8061211000001108,AMP,1001010J0B4ANAB -80711000001101,Naproxen 500mg tablets,80711000001101,AMP,1001010P0AAAEAE -8092711000001106,Cuprofen PLUS tablets,8092711000001106,AMP,1001010J0BMAEAY -8104311000001107,Fenpaed 100mg/5ml oral suspension 5ml sachets,8104311000001107,AMP,1001010J0CXACBM -814411000001103,Volsaid Retard 75 tablets,814411000001103,AMP,1001010C0BSAAAL -81511000001104,Mobic 15mg tablets,81511000001104,AMP,1001010AABBABAB -817811000001105,Naproxen 375mg gastro-resistant tablets,817811000001105,AMP,1001010P0AAAJAJ -819011000001108,Nycopren 250mg gastro-resistant tablets,819011000001108,AMP,1001010P0BGAAAH -8196311000001104,Rhumalgan XL 100mg capsules,8196311000001104,AMP,1001010C0BDAEAN -8197611000001106,Rhumalgan SR 75mg capsules,8197611000001106,AMP,1001010C0BDAFAW -8211000001106,Ketotard XL 200mg capsules,8211000001106,AMP,1001010L0BLAAAJ -823411000001108,Ketoprofen 100mg capsules,823411000001108,AMP,1001010L0AAABAB -823911000001100,Ketoprofen 100mg capsules,823911000001100,AMP,1001010L0AAABAB -825611000001105,Flurbiprofen 50mg tablets,825611000001105,AMP,1001010I0AAABAB -828011000001106,Piroxicam 10mg dispersible tablets,828011000001106,AMP,1001010R0AAADAD -829411000001105,Diclofenac sodium 25mg gastro-resistant tablets,829411000001105,AMP,1001010C0AAADAD -842611000001103,Naproxen 375mg gastro-resistant tablets,842611000001103,AMP,1001010P0AAAJAJ -8438311000001105,Diclofenac 10mg/5ml oral solution,8438311000001105,AMP,1001010C0AABDBD -8438611000001100,Diclofenac 10mg/5ml oral suspension,8438611000001100,AMP,1001010C0AABDBD -8439611000001109,Diclofenac 25mg/5ml oral solution,8439611000001109,AMP,1001010C0AAAYAY -8440111000001105,Diclofenac 25mg/5ml oral suspension,8440111000001105,AMP,1001010C0AAAYAY -84411000001101,Indomax 75 SR capsules,84411000001101,AMP,1001010K0BQABAD -844911000001100,Preservex 100mg tablets,844911000001100,AMP,100101080BBAAAA -8455011000001100,Diclofenac 10mg/5ml oral solution,8455011000001100,VMP,1001010C0AABDBD -8455111000001104,Diclofenac 10mg/5ml oral suspension,8455111000001104,VMP,1001010C0AABDBD -8455411000001109,Diclofenac 25mg/5ml oral solution,8455411000001109,VMP,1001010C0AAAYAY -8455511000001108,Diclofenac 25mg/5ml oral suspension,8455511000001108,VMP,1001010C0AAAYAY -853011000001103,Indometacin 75mg modified-release capsules,853011000001103,AMP,1001010K0AAADAD -8544811000001104,Indometacin 50mg/5ml oral solution,8544811000001104,AMP,1001010K0AAAVAV -8544911000001109,Indometacin 25mg/5ml oral solution,8544911000001109,AMP,1001010K0AAAQAQ -8545311000001107,Indometacin 50mg/5ml oral suspension,8545311000001107,AMP,1001010K0AAAVAV -8545911000001108,Indometacin 25mg/5ml oral suspension,8545911000001108,AMP,1001010K0AABBBB -8561611000001108,Indometacin 25mg/5ml oral solution,8561611000001108,VMP,1001010K0AAAQAQ -8561811000001107,Indometacin 50mg/5ml oral solution,8561811000001107,VMP,1001010K0AAAVAV -8561911000001102,Indometacin 50mg/5ml oral suspension,8561911000001102,VMP,1001010K0AAAVAV -859511000001108,Ibuprofen 200mg tablets,859511000001108,AMP,1001010J0AAADAD -8607611000001109,Mefenamic acid 250mg/5ml oral suspension,8607611000001109,AMP,1001010N0AAAGAG -8608211000001106,Mefenamic acid 500mg/5ml oral suspension,8608211000001106,AMP,1001010N0AAAHAH -86111000001104,Naproxen 250mg tablets,86111000001104,AMP,1001010P0AAADAD -8637511000001100,Naproxen 125mg/5ml oral suspension,8637511000001100,AMP,1001010P0AAARAR -8638311000001107,Naproxen 250mg/5ml oral suspension,8638311000001107,AMP,1001010P0AABFBF -8639711000001102,Naproxen 500mg/5ml oral suspension,8639711000001102,AMP,1001010P0AAATAT -8662311000001102,Mefenamic acid 250mg/5ml oral suspension,8662311000001102,VMP,1001010N0AAAGAG -8662411000001109,Mefenamic acid 500mg/5ml oral suspension,8662411000001109,VMP,1001010N0AAAHAH -866711000001104,Fenbufen 300mg capsules,866711000001104,AMP,1001010F0AAAAAA -8669711000001109,Naproxen 250mg/5ml oral suspension,8669711000001109,VMP,1001010P0AABFBF -8669811000001101,Naproxen 500mg/5ml oral suspension,8669811000001101,VMP,1001010P0AAATAT -867111000001102,Ketpron XL 100mg capsules,867111000001102,AMP,1001010L0BPAAAI -867711000001101,Berlind 75 Retard capsules,867711000001101,AMP,1001010K0BXAAAD -868911000001103,Motrin 400mg tablets,868911000001103,AMP,1001010J0BHABAE -869811000001101,Ibuprofen 200mg tablets,869811000001101,AMP,1001010J0AAADAD -878111000001108,Celebrex 200mg capsules,878111000001108,AMP,1001010AHBBABAB -8781711000001100,Boots Cold and Flu Relief with Ibuprofen tablets,8781711000001100,AMP,0310000N0BPAAAN -878411000001103,Ibuprofen 400mg tablets,878411000001103,AMP,1001010J0AAAEAE -878611000001100,Piroxicam 20mg dispersible tablets,878611000001100,AMP,1001010R0AAAEAE -881711000001108,Ketoprofen 100mg capsules,881711000001108,AMP,1001010L0AAABAB -886811000001105,Ketoprofen 50mg capsules,886811000001105,AMP,1001010L0AAAAAA -889911000001109,Naproxen 250mg tablets,889911000001109,AMP,1001010P0AAADAD -892211000001107,Ibuprofen 200mg tablets,892211000001107,AMP,1001010J0AAADAD -8929611000001109,Diclofenac sodium 75mg modified-release capsules,8929611000001109,AMP, -8932811000001101,Diclofenac sodium 100mg modified-release capsules,8932811000001101,AMP, -894311000001106,Naprosyn 250mg tablets,894311000001106,AMP,1001010P0BCAAAD -8970311000001109,Advil 200mg tablets,8970311000001109,AMP,1001010J0CEAAAD -901511000001105,Ibuprofen 600mg tablets,901511000001105,AMP,1001010J0AAAFAF -901911000001103,Librofem 200mg tablets,901911000001103,AMP,1001010J0BSAAAD -903411000001105,Migrafen 200mg tablets,903411000001105,AMP,1001010J0B2AAAD -90611000001109,Feldene 20 capsules,90611000001109,AMP,1001010R0BBABAB -906311000001107,Defanac 75mg SR tablets,906311000001107,AMP,1001010C0CIAAAL -910811000001103,Pirozip 20 capsules,910811000001103,AMP,1001010R0BDABAB -911611000001107,Rheumacin LA 75mg capsules,911611000001107,AMP,1001010K0BKAAAD -913811000001105,Ibuprofen 400mg tablets,913811000001105,AMP,1001010J0AAAEAE -915411000001107,Ketoprofen 50mg capsules,915411000001107,AMP,1001010L0AAAAAA -9164311000001106,Nurofen for Children Singles 100mg/5ml oral suspension 5ml sachets strawberry,9164311000001106,AMP,1001010J0B4ARBM -9164611000001101,Nurofen for Children 100mg/5ml oral suspension strawberry,9164611000001101,AMP,1001010J0B4AQBH -9172611000001104,Ibuprofen 200mg caplets,9172611000001104,AMP,1001010J0AAADAD -91911000001105,Flurbiprofen 100mg tablets,91911000001105,AMP,1001010I0AAACAC -9191811000001101,Piroxicam 10mg capsules,9191811000001101,AMP,1001010R0AAAAAA -9192011000001104,Piroxicam 20mg capsules,9192011000001104,AMP,1001010R0AAABAB -920011000001100,Fenbufen 300mg capsules,920011000001100,AMP,1001010F0AAAAAA -9209811000001100,Ibuprofen 100mg/5ml oral suspension sugar free,9209811000001100,AMP,1001010J0AABHBH -9210011000001100,Ibuprofen 100mg/5ml oral suspension 5ml sachets sugar free,9210011000001100,AMP,1001010J0AABMBM -921411000001100,Lodine SR 600mg tablets,921411000001100,AMP,1001010E0BBADAD -922511000001109,Dexomon 75mg SR tablets,922511000001109,AMP,1001010C0BUABAL -922711000001104,Arthrosin EC 250 tablets,922711000001104,AMP,1001010P0BDAFAH -9244911000001100,Pure Health Junior Ibuprofen 100mg/5ml oral suspension,9244911000001100,AMP,1001010J0DEAABH -92511000001106,Tenoxicam 20mg tablets,92511000001106,AMP,100101040AAAAAA -92811000001109,Piroxicam 20mg capsules,92811000001109,AMP,1001010R0AAABAB -928211000001108,Ibuprofen 600mg tablets,928211000001108,AMP,1001010J0AAAFAF -928911000001104,Piroxicam 10mg capsules,928911000001104,AMP,1001010R0AAAAAA -931711000001108,Fenbufen 300mg capsules,931711000001108,AMP,1001010F0AAAAAA -933011000001107,Arthrofen 400 tablets,933011000001107,AMP,1001010J0B1AEAE -936011000001104,Naproxen 500mg gastro-resistant tablets,936011000001104,AMP,1001010P0AAAIAI -9372211000001106,Cuprofen for Children 100mg/5ml oral suspension,9372211000001106,AMP, -940111000001102,Fenbufen 300mg capsules,940111000001102,AMP,1001010F0AAAAAA -9444911000001101,Nurofen Sinus tablets,9444911000001101,AMP,1001010J0B4ASBJ -9447211000001103,Seractil 300mg tablets,9447211000001103,AMP,1001010AMBBAAAA -9447611000001101,Seractil 400mg tablets,9447611000001101,AMP,1001010AMBBABAB -9458211000001101,Ibuprofen 100mg/5ml oral suspension 5ml sachets sugar free,9458211000001101,AMP,1001010J0AABMBM -9501811000001106,Ibuprofen 200mg tablets,9501811000001106,AMP,1001010J0AAADAD -9502111000001109,Ibuprofen 400mg tablets,9502111000001109,AMP,1001010J0AAAEAE -9511211000001108,Nurofen Tension Headache 342mg caplets,9511211000001108,AMP,1001010ADBDAAAB -9648711000001108,Ibuprofen 400mg tablets,9648711000001108,AMP,1001010J0AAAEAE -9746611000001109,Ibuprofen 400mg caplets,9746611000001109,AMP,1001010J0AAAEAE -9746811000001108,Ibuprofen 200mg caplets,9746811000001108,AMP,1001010J0AAADAD -9805311000001101,Ibuprofen 200mg tablets,9805311000001101,AMP,1001010J0AAADAD -9805911000001100,Ibuprofen 600mg tablets,9805911000001100,AMP,1001010J0AAAFAF -9807011000001106,Indometacin 50mg capsules,9807011000001106,AMP,1001010K0AAABAB -9816611000001104,Ibuprofen 400mg tablets,9816611000001104,AMP,1001010J0AAAEAE -9834411000001104,Meloxicam 7.5mg tablets,9834411000001104,AMP,1001010AAAAAAAA -9834611000001101,Meloxicam 15mg tablets,9834611000001101,AMP,1001010AAAAABAB -9834811000001102,Meloxicam 7.5mg tablets,9834811000001102,AMP,1001010AAAAAAAA -9835011000001107,Meloxicam 15mg tablets,9835011000001107,AMP,1001010AAAAABAB -9856111000001101,Meloxicam 7.5mg tablets,9856111000001101,AMP,1001010AAAAAAAA -9856311000001104,Meloxicam 15mg tablets,9856311000001104,AMP,1001010AAAAABAB -9870211000001108,Meloxicam 7.5mg tablets,9870211000001108,AMP,1001010AAAAAAAA -9870511000001106,Meloxicam 15mg tablets,9870511000001106,AMP,1001010AAAAABAB -98811000001106,Fenoket 200mg modified-release capsules,98811000001106,AMP,1001010L0BJAAAJ -9890311000001105,Cuprofen for Children 100mg/5ml oral suspension,9890311000001105,AMP,1001010J0BMADBH -9905911000001107,Meloxicam 7.5mg tablets,9905911000001107,AMP,1001010AAAAAAAA -9906111000001103,Meloxicam 15mg tablets,9906111000001103,AMP,1001010AAAAABAB -9991411000001100,Meloxicam 7.5mg tablets,9991411000001100,AMP,1001010AAAAAAAA -9991611000001102,Meloxicam 15mg tablets,9991611000001102,AMP,1001010AAAAABAB -9993111000001106,Galpharm Ibuprofen For Children 100mg/5ml oral suspension 5ml sachets,9993111000001106,AMP,1001010J0DFAABM -329559000,VMP previous to 37084911000001107,329559000,VMP,1001010C0AAAWAW -329585001,VMP previous to 36563711000001106,329585001,VMP,1001010C0AAAFAF -329586000,VMP previous to 36566511000001109,329586000,VMP,1001010C0AAADAD -329591004,VMP previous to 39709911000001103,329591004,VMP,1001010C0AAAJAJ -329600004,VMP previous to 37084611000001101,329600004,VMP,1001010C0AAANAN -329607001,VMP previous to 39024511000001101,329607001,VMP,1001010C0AAALAL -329622006,VMP previous to 39109711000001107,329622006,VMP,1001010E0AAADAD -329641009,VMP previous to 39692011000001102,329641009,VMP,1001010G0AAABAB -329647008,VMP previous to 36059011000001103,329647008,VMP,1001010I0AAADAD -329662005,VMP previous to 39110311000001101,329662005,VMP,1001010J0AAAPAP -329686007,VMP previous to 39108111000001104,329686007,VMP,1001010J0AABHBH -329711003,VMP previous to 36045011000001103,329711003,VMP,1001010J0AABABA -329712005,VMP previous to 36045311000001100,329712005,VMP,1001010J0AAABAB -329713000,VMP previous to 36045211000001108,329713000,VMP,1001010J0AAARAR -329756005,VMP previous to 36046811000001101,329756005,VMP,1001010K0AAADAD -329785004,VMP previous to 36037211000001101,329785004,VMP,1001010L0AAALAL -329787007,VMP previous to 36037011000001106,329787007,VMP,1001010L0AAAIAI -329788002,VMP previous to 36037311000001109,329788002,VMP,1001010L0AAAJAJ -329804005,VMP previous to 35369111000001107,329804005,VMP,1001010N0AAABAB -329847005,VMP previous to 36030111000001106,329847005,VMP,1001010P0AAAQAQ -329850008,VMP previous to 36564511000001103,329850008,VMP,1001010P0AAAJAJ -329880003,VMP previous to 36017011000001102,329880003,VMP,1001010R0AAAGAG -329881004,VMP previous to 39721011000001108,329881004,VMP,1001010R0AAADAD -329882006,VMP previous to 39721211000001103,329882006,VMP,1001010R0AAAEAE -329894002,VMP previous to 35918311000001105,329894002,VMP,1001010T0AAADAD -329963003,VMP previous to 39690211000001106,329963003,VMP,1001010AEAAAAAA -3411011000001108,VMP previous to 407909000,3411011000001108,VMP,1001010AJAAACAC -3411111000001109,VMP previous to 407907003,3411111000001109,VMP,1001010AJAAAAAA -3411211000001103,VMP previous to 407908008,3411211000001103,VMP,1001010AJAAABAB -3926211000001104,VMP previous to 370195008,3926211000001104,VMP,1001010J0AAAAAA -407904005,VMP previous to 39693611000001104,407904005,VMP,1001010J0AABJBJ -4508611000001100,VMP previous to 408602008,4508611000001100,VMP,1001010AIAAACAC -4615611000001103,"VMP previous to 39693611000001104, 407904005",4615611000001103,VMP,1001010J0AABJBJ -8561711000001104,VMP previous to 376878007,8561711000001104,VMP,1001010K0AABBBB -9467711000001102,VMP previous to 418352003,9467711000001102,VMP,1001010AMAAAAAA -9467811000001105,VMP previous to 418855005,9467811000001105,VMP,1001010AMAAABAB -42099211000001100,VMP subsequent to 329925006,42099211000001100,VMP,100101080AAAAAA -42099311000001108,VMP subsequent to 329907004,42099311000001108,VMP,100101050AAAAAA -42100411000001101,VMP subsequent to 330170001,42100411000001101,VMP,1001010AHAAAAAA -42100511000001102,VMP subsequent to 330169002,42100511000001102,VMP,1001010AHAAABAB -42101111000001100,VMP subsequent to 418352003,42101111000001100,VMP,1001010AMAAAAAA -42101211000001106,VMP subsequent to 418855005,42101211000001106,VMP,1001010AMAAABAB -42101611000001108,VMP subsequent to 329967002,42101611000001108,VMP,1001010AGAAAAAA -42101711000001104,VMP subsequent to 329968007,42101711000001104,VMP,1001010AGAAABAB -42101811000001107,VMP subsequent to 329598005,42101811000001107,VMP,1001010C0AAAMAM -42101911000001102,VMP subsequent to 329587009,42101911000001102,VMP,1001010C0AAAEAE -42102011000001109,VMP subsequent to 329602007,42102011000001109,VMP,1001010C0AAAXAX -42102111000001105,VMP subsequent to 329574003,42102111000001105,VMP,1001010C0AAARAR -42102211000001104,VMP subsequent to 329612000,42102211000001104,VMP,1001010D0AAAAAA -42102311000001107,VMP subsequent to 329613005,42102311000001107,VMP,1001010D0AAABAB -42103111000001104,VMP subsequent to 329620003,42103111000001104,VMP,1001010E0AAACAC -42103211000001105,VMP subsequent to 407909000,42103211000001105,VMP,1001010AJAAACAC -42103311000001102,VMP subsequent to 407907003,42103311000001102,VMP,1001010AJAAAAAA -42103411000001109,VMP subsequent to 407908008,42103411000001109,VMP,1001010AJAAABAB -42103711000001103,VMP subsequent to 329630007,42103711000001103,VMP,1001010F0AAAAAA -42103911000001101,VMP subsequent to 329636001,42103911000001101,VMP,1001010F0AAACAC -42104011000001103,VMP subsequent to 329642002,42104011000001103,VMP,1001010G0AAADAD -42104211000001108,VMP subsequent to 329649006,42104211000001108,VMP,1001010I0AAACAC -42104311000001100,VMP subsequent to 329648003,42104311000001100,VMP,1001010I0AAABAB -42104511000001106,VMP subsequent to 329710002,42104511000001106,VMP,1001010J0AAACAC -42104611000001105,VMP subsequent to 329683004,42104611000001105,VMP,1001010J0AAAYAY -42104711000001101,VMP subsequent to 370195008,42104711000001101,VMP,1001010J0AAAAAA -42104811000001109,VMP subsequent to 329652003,42104811000001109,VMP,1001010J0AAADAD -42104911000001104,VMP subsequent to 329653008,42104911000001104,VMP,1001010J0AAAEAE -42105211000001109,VMP subsequent to 329677002,42105211000001109,VMP,1001010J0AAANAN -42105311000001101,VMP subsequent to 329654002,42105311000001101,VMP,1001010J0AAAFAF -42105611000001106,VMP subsequent to 329714006,42105611000001106,VMP,1001010K0AAAAAA -42105711000001102,VMP subsequent to 376878007,42105711000001102,VMP,1001010K0AABBBB -42105811000001105,VMP subsequent to 329715007,42105811000001105,VMP,1001010K0AAABAB -42106011000001108,VMP subsequent to 329758006,42106011000001108,VMP,1001010L0AAAAAA -42106211000001103,VMP subsequent to 408602008,42106211000001103,VMP,1001010AIAAACAC -42106311000001106,VMP subsequent to 329790001,42106311000001106,VMP,1001010N0AAAAAA -42106411000001104,VMP subsequent to 329803004,42106411000001104,VMP,1001010N0AAADAD -42106611000001101,VMP subsequent to 329928008,42106611000001101,VMP,1001010AAAAABAB -42106811000001102,VMP subsequent to 329927003,42106811000001102,VMP,1001010AAAAAAAA -42107211000001101,VMP subsequent to 329910006,42107211000001101,VMP,1001010X0AAAAAA -42107311000001109,VMP subsequent to 329852000,42107311000001109,VMP,1001010P0AAARAR -42107411000001102,VMP subsequent to 329838002,42107411000001102,VMP,1001010P0AAAHAH -42107511000001103,VMP subsequent to 329806007,42107511000001103,VMP,1001010P0AAADAD -42107611000001104,VMP subsequent to 329839005,42107611000001104,VMP,1001010P0AAAIAI -42107811000001100,VMP subsequent to 329807003,42107811000001100,VMP,1001010P0AAAEAE -42107911000001105,VMP subsequent to 322299000,42107911000001105,VMP,100101070AAAAAA -42109811000001108,VMP subsequent to 347249002,42109811000001108,VMP,1001010Q0AAABAB -42109911000001103,VMP subsequent to 329854004,42109911000001103,VMP,1001010Q0AAABAB -42110011000001108,VMP subsequent to 329855003,42110011000001108,VMP,1001010Q0AAACAC -42110111000001109,VMP subsequent to 329862007,42110111000001109,VMP,1001010R0AAAAAA -42110211000001103,VMP subsequent to 329863002,42110211000001103,VMP,1001010R0AAABAB -42111111000001103,VMP subsequent to 330163001,42111111000001103,VMP,1001010AFAAADAD -42111611000001106,VMP subsequent to 329887000,42111611000001106,VMP,1001010S0AAAAAA -42111711000001102,VMP subsequent to 329888005,42111711000001102,VMP,1001010S0AAABAB -42112011000001107,VMP subsequent to 329914002,42112011000001107,VMP,100101040AAAAAA -42112211000001102,VMP subsequent to 329896000,42112211000001102,VMP,1001010T0AAACAC diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-osteoarthritis.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-osteoarthritis.csv deleted file mode 100644 index 4aee7c1c6..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-osteoarthritis.csv +++ /dev/null @@ -1,227 +0,0 @@ -CTV3PreferredTermDesc,CTV3ID,CTV3Source -Cervical spond.with myelopathy,Y5903,CTV3_Children -Cervical spondylosis,X703j,CTV3Map_Code_Only -Cervical spondylosis,X703j,CTV3Map_Code_And_Term -Cervical spondylosis with myelopathy,XE1Ev,CTV3_Children -Cervical spondylosis with radiculopathy,N119.,CTV3_Children -Cervical spondylosis with vascular compression,N11A.,CTV3_Children -Cervical spondylosis without myelopathy,XE1Eu,CTV3Map_Code_Only -Lumbar spondylosis,X703k,CTV3Map_Code_And_Term -Lumbosacral spondylosis,XaE3C,CTV3_Children -Lumbosacral spondylosis with myelopathy,N115.,CTV3_Children -Lumbosacral spondylosis with radiculopathy,N11C.,CTV3_Children -Lumbosacral spondylosis without myelopathy,XE1Ex,CTV3_Children -Multiple-level cervical spondylosis with myelopathy,N1112,CTV3_Children -Multiple-level cervical spondylosis with radiculopathy,N1192,CTV3_Children -Multiple-level cervical spondylosis without myelopathy,N1102,CTV3_Children -Multiple-level lumbosacral spondylosis with myelopathy,N1152,CTV3_Children -Multiple-level lumbosacral spondylosis with radiculopathy,N11C2,CTV3_Children -Multiple-level lumbosacral spondylosis without myelopathy,N1142,CTV3_Children -Multiple-level thoracic spondylosis with myelopathy,N1132,CTV3_Children -Multiple-level thoracic spondylosis with radiculopathy,N11B2,CTV3_Children -Multiple-level thoracic spondylosis without myelopathy,N1122,CTV3_Children -Other spondyloses and allied disorders,N11y.,CTV3_Children -Single-level cervical spondylosis with myelopathy,N1110,CTV3_Children -Single-level cervical spondylosis with radiculopathy,N1190,CTV3_Children -Single-level cervical spondylosis without myelopathy,N1100,CTV3_Children -Single-level lumbosacral spondylosis with myelopathy,N1150,CTV3_Children -Single-level lumbosacral spondylosis with radiculopathy,N11C0,CTV3_Children -Single-level lumbosacral spondylosis without myelopathy,N1140,CTV3_Children -Single-level thoracic spondylosis with myelopathy,N1130,CTV3_Children -Single-level thoracic spondylosis with radiculopathy,N11B0,CTV3_Children -Single-level thoracic spondylosis without myelopathy,N1120,CTV3_Children -Spondylosis,X7039,CTV3Map_Code_Only -Spondylosis,X7039,CTV3Map_Code_And_Term -Spondylosis NOS,XE1Ey,CTV3Map_Code_And_Term -Spondylosis NOS,XE1Ey,CTV3Map_Code_Only -Spondylosis NOS,N11zz,CTV3_Children -Spondylosis and allied disorders,XE1Et,CTV3Map_Code_Only -"Spondylosis with myelopathy, NOS",N11z1,CTV3_Children -"Spondylosis without myelopathy, NOS",N11z0,CTV3_Children -Thoracic spondylosis,X70Cw,CTV3Map_Code_And_Term -Thoracic spondylosis (& [without myelopathy]),N112.,CTV3_Children -Thoracic spondylosis with myelopathy,N113.,CTV3_Children -Thoracic spondylosis with radiculopathy,N11B.,CTV3_Children -Thoracic spondylosis without myelopathy,XE1Ew,CTV3_Children -Two-level cervical spondylosis with myelopathy,N1111,CTV3_Children -Two-level cervical spondylosis with radiculopathy,N1191,CTV3_Children -Two-level cervical spondylosis without myelopathy,N1101,CTV3_Children -Two-level lumbosacral spondylosis with myelopathy,N1151,CTV3_Children -Two-level lumbosacral spondylosis with radiculopathy,N11C1,CTV3_Children -Two-level lumbosacral spondylosis without myelopathy,N1141,CTV3_Children -Two-level thoracic spondylosis with myelopathy,N1131,CTV3_Children -Two-level thoracic spondylosis with radiculopathy,N11B1,CTV3_Children -Two-level thoracic spondylosis without myelopathy,N1121,CTV3_Children -[X]Other spondylosis,Nyu64,CTV3_Children -[X]Other spondylosis with myelopathy,Nyu62,CTV3_Children -[X]Other spondylosis with radiculopathy,Nyu63,CTV3_Children -(Lumbosacr spondylos [& no myelopath]) or (degen lumb spine),N114.,CTV3_Children -(Spond:[cerv][lum][sac]) or (arth spine) or (osteoart spine),XE1HM,CTV3_Children -(Spondyl & allied dis) or (arthr spine) or (osteoarth spine),N11..,High_Level_SNOMED -Cerv spondylos (& [no myelopath]) or (osteoarthr cerv spine),N110.,CTV3_Children -Degenerative arthropathy of spinal facet joint,X70Cy,High_Level_SNOMED -Bouchard's nodes with arthropathy,N0503,CTV3Map_Code_And_Term -Delivery of rehabilitation for osteoarthritis,XaLsk,CTV3Map_Code_And_Term -Erosive osteoarthrosis,N0506,CTV3Map_Code_And_Term -Finger osteoarthritis NOS,X7035,CTV3Map_Code_Only -Foot osteoarthritis NOS,X7030,CTV3Map_Code_And_Term -Generalised osteoarthritis NOS,N050z,CTV3Map_Code_And_Term -Generalised osteoarthritis of multiple sites,N0502,CTV3Map_Code_And_Term -Generalised osteoarthritis of the hand,XE1DW,CTV3Map_Code_Only -Generalised osteoarthritis of unspecified site,N0500,CTV3Map_Code_And_Term -H/O: osteoarthritis,14G2.,CTV3Map_Code_And_Term -Heberden's nodes with arthropathy,N0507,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified",N053.,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, NOS",N053z,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, of other spec site",N0538,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, of shoulder region",N0531,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, of the ankle and foot",N0537,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, of the forearm",N0533,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, of the hand",N0534,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, of the lower leg",XE1DZ,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, of the upper arm",N0532,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, of unspecified site",N0530,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, pelvic region/thigh",XE1DY,CTV3Map_Code_Only -"Localised, primary osteoarthritis",N051.,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis NOS",N051z,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of elbow",XaEGf,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of other specified site",N0518,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of the ankle and foot",N0517,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of the forearm",N0513,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of the hand",N0514,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of the lower leg",N0516,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of the pelvic region/thigh",N0515,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of the shoulder region",N0511,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of the upper arm",N0512,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of the wrist",XaEGd,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of toe",XaEGe,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of unspecified site",N0510,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis",N052.,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis NOS",N052z,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis of other specified site",N0528,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis of pelvic region/thigh",XE1DX,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis of the ankle and foot",N0527,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis of the forearm",N0523,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis of the hand",N0524,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis of the lower leg",N0526,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis of the shoulder region",N0521,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis of the upper arm",N0522,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis of unspecified site",N0520,CTV3Map_Code_And_Term -O/E - hands - Heberden's nodes,2G26.,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspec, of unspecified sites",N0540,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified",N054.,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified, multiple sites",N0549,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified, of ankle/foot",N0547,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified, of forearm",N0543,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified, of hand",N0544,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified, of lower leg",N0546,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified, of pelvis/thigh",N0545,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified, of shoulder",N0541,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified, of upper arm",N0542,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified, other spec sites",N0548,CTV3Map_Code_And_Term -Osteoarthritis,XE1DV,CTV3Map_Code_Only -Osteoarthritis NOS,N05zz,CTV3_Children -"Osteoarthritis NOS, of DIP joint of finger",N05zH,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of PIP joint of finger",N05zG,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of acromioclavicular joint",N05zB,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of ankle",N05zN,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of ankle and foot",XE1Dg,CTV3Map_Code_Only -"Osteoarthritis NOS, of elbow",N05zC,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of hip",N05zJ,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of knee",N05zL,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of other tarsal joint",N05zR,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of shoulder",N05z9,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of shoulder region",N05z1,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of sternoclavicular joint",N05zA,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of subtalar joint",N05zP,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of talonavicular joint",N05zQ,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of the forearm",XE1Dc,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of the hand",XE1Dd,CTV3Map_Code_Only -"Osteoarthritis NOS, of the lower leg",XE1Df,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of the upper arm",XE1Db,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of unspecified site",N05z0,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of wrist",N05zE,CTV3Map_Code_And_Term -"Osteoarthritis NOS, other specified site",N05z8,CTV3Map_Code_And_Term -"Osteoarthritis NOS, pelvic region/thigh",XE1De,CTV3Map_Code_Only -"Osteoarthritis of more than one site, unspecified, NOS",N054z,CTV3Map_Code_And_Term -Osteoarthritis of spinal facet joint,X703A,CTV3Map_Code_And_Term -Patellofemoral osteoarthritis,XaYQD,CTV3Map_Code_Only -"Post-traumatic coxarthrosis, bilateral",N0529,CTV3Map_Code_And_Term -"Primary coxarthrosis, bilateral",N0519,CTV3Map_Code_And_Term -Thumb osteoarthritis NOS,X7034,CTV3Map_Code_And_Term -Toe osteoarthritis NOS,X702z,CTV3Map_Code_And_Term -[X]Other post-traumatic coxarthrosis,Nyu23,CTV3Map_Code_And_Term -(Heberden nodes) or (Bouchard nodes) or (gen osteoarth hand),N0501,CTV3_Children -(Spondylosis NOS) or (osteoarthritis spine),N11z.,CTV3_Children -Ankle osteoarthritis NOS,X7031,CTV3Map_Code_Only -Bouchard's node,X76G5,CTV3Map_Code_Only -Bouchard's node,X76G5,CTV3Map_Code_And_Term -Endemic osteoarthritis,X704R,CTV3_Children -Exacerbation of osteoarthritis,XaIna,CTV3_Children -Finger osteoarthritis NOS,X7035,CTV3Map_Code_And_Term -Foot osteoarthritis NOS,X7030,CTV3Map_Code_Only -Generalised osteoarthritis,N050.,CTV3Map_Code_And_Term -Generalised osteoarthritis of the hand,XE1DW,CTV3Map_Code_And_Term -Heberden's node,XM05w,CTV3Map_Code_And_Term -Heberden's node,XM05w,CTV3Map_Code_Only -Idiopathic osteoarthritis,N0504,CTV3_Children -Idiopathic osteoarthritis,X7038,CTV3Map_Code_And_Term -Localised osteoarthritis,X7041,CTV3_Children -"Localised osteoarthritis, unspecified, of the lower leg",XE1DZ,CTV3Map_Code_Only -"Localised osteoarthritis, unspecified, pelvic region/thigh",XE1DY,CTV3Map_Code_And_Term -O/E - Heberden's nodes,XaBzh,CTV3_Children -Osteoarthritis,XE1DV,CTV3Map_Code_And_Term -Osteoarthritis (& [allied disorders]),N05..,CTV3_Children -Osteoarthritis - ankle/foot,Xa3gR,CTV3_Children -Osteoarthritis - hand joint,Xa3gQ,CTV3_Children -Osteoarthritis - other joint,Xa3gS,CTV3_Children -Osteoarthritis -multiple joint,XE1Gm,CTV3_Children -Osteoarthritis NOS,XE1Da,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of 1st metatarsophalangeal joint",N05zS,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of ankle and foot",XE1Dg,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of distal radioulnar joint",N05zD,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of elbow",N05zC,CTV3Map_Code_Only -"Osteoarthritis NOS, of hip",N05zJ,CTV3Map_Code_Only -"Osteoarthritis NOS, of interphalangeal joint of toe",N05zU,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of knee",N05zL,CTV3Map_Code_Only -"Osteoarthritis NOS, of lesser metatarsophalangeal joint",N05zT,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of metacarpophalangeal joint",N05zF,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of sacroiliac joint",N05zK,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of the forearm",XE1Dc,CTV3Map_Code_Only -"Osteoarthritis NOS, of the hand",XE1Dd,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of the lower leg",XE1Df,CTV3Map_Code_Only -"Osteoarthritis NOS, of the upper arm",XE1Db,CTV3Map_Code_Only -"Osteoarthritis NOS, of tibiofibular joint",N05zM,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of wrist",N05zE,CTV3Map_Code_Only -"Osteoarthritis NOS, pelvic region/thigh",XE1De,CTV3Map_Code_And_Term -Osteoarthritis NOS: [ankle &/or foot] or [toe],N05z7,CTV3_Children -Osteoarthritis NOS: [hand] or [finger] or [thumb],N05z4,CTV3_Children -Osteoarthritis NOS: [lower leg] or [knee],N05z6,CTV3_Children -Osteoarthritis NOS: [of the forearm] or [wrist],N05z3,CTV3_Children -Osteoarthritis NOS: [of the upper arm] or [elbow],N05z2,CTV3_Children -Osteoarthritis NOS: [pelvic region and/or thigh] or [hip],N05z5,CTV3_Children -Osteoarthritis of acromioclavicular joint,X703C,CTV3_Children -Osteoarthritis of ankle,X703M,CTV3_Children -Osteoarthritis of distal interphalangeal joint,X703H,CTV3_Children -Osteoarthritis of elbow,X703D,CTV3_Children -Osteoarthritis of finger joint,X703G,CTV3_Children -Osteoarthritis of first carpometacarpal joint,X703F,CTV3_Children -Osteoarthritis of first metatarsalphalangeal joint,X703O,CTV3_Children -Osteoarthritis of foot joint,XaBmY,CTV3_Children -Osteoarthritis of hip,X703K,CTV3_Children -Osteoarthritis of knee,X703L,CTV3_Children -Osteoarthritis of metacarpophalangeal joint,XM1NQ,CTV3_Children -Osteoarthritis of metacarpophalangeal joint of finger,X703J,CTV3_Children -Osteoarthritis of proximal interphalangeal joint,X703I,CTV3_Children -Osteoarthritis of shoulder joint,X703B,CTV3_Children -Osteoarthritis of subtalar joint,X703N,CTV3_Children -Osteoarthritis of toe joint,X703P,CTV3_Children -Osteoarthritis of wrist,X703E,CTV3_Children -Osteoarthritis: [localised low leg unsp] or [patellofemoral],N0536,CTV3_Children -Patellofemoral osteoarthritis,XaYQD,CTV3Map_Code_And_Term -Secondary osteoarthritis,X703Q,CTV3_Children -Thumb osteoarthritis NOS,X7034,CTV3Map_Code_Only -Toe osteoarthritis NOS,X702z,CTV3Map_Code_Only -[Joint degeneration] or [osteoarthritis NOS],N05z.,CTV3_Children -(Otto pel)(hip osteoart NOS)(loc osteoart uns pel reg/thigh),N0535,CTV3_Children -Otto's pelvis,X7042,CTV3Map_Code_Only \ No newline at end of file diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-rheumatoid-arthritis.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-rheumatoid-arthritis.csv deleted file mode 100644 index 875df20cc..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-rheumatoid-arthritis.csv +++ /dev/null @@ -1,82 +0,0 @@ -CTV3ID,CTV3PreferredTermDesc,CTV3Source -N0431,Acute polyarticular juvenile rheumatoid arthritis,High_Level_SNOMED -N041.,Felty's syndrome,CTV3Map_Code_And_Term -X701k,Fibrosing alveolitis associated with rheumatoid arthritis,CTV3Map_Code_Only -X701k,Fibrosing alveolitis associated with rheumatoid arthritis,CTV3Map_Code_And_Term -N040T,Flare of rheumatoid arthritis,CTV3Map_Code_And_Term -14G1.,H/O: rheumatoid arthritis,High_Level_SNOMED -X701t,Juvenile rheumatoid arthritis,High_Level_SNOMED -XE1Gi,Juvenile rheumatoid arthritis &/or Still's disease,High_Level_SNOMED -N043z,Juvenile rheumatoid arthritis NOS,High_Level_SNOMED -N0433,Monarticular juvenile rheumatoid arthritis,High_Level_SNOMED -F3964,Myopathy due to rheumatoid arthritis,CTV3Map_Code_And_Term -X705t,Nailfold rheumatoid vasculitis,CTV3_Children -X705v,Necrotising rheumatoid vasculitis,CTV3_Children -2G27.,O/E-hands-rheumatoid spindling,CTV3Map_Code_And_Term -N0401,Other rheumatoid arthritis of spine,CTV3Map_Code_And_Term -N042.,Other rheumatoid arthropathy + visceral/systemic involvement,CTV3Map_Code_And_Term -F3712,Polyneuropathy in rheumatoid arthritis,CTV3Map_Code_And_Term -Xafj8,Rheum arth monitor invitation by SMS (short message service),QOF -N040.,Rheumatoid arthritis,CTV3Map_Code_And_Term -Xa3gN,Rheumatoid arthritis - ankle/foot,CTV3_Children -Xa3gM,Rheumatoid arthritis - hand joint,CTV3_Children -N040S,Rheumatoid arthritis - multiple joint,CTV3_Children -Xa3gL,Rheumatoid arthritis - multiple joint,CTV3Map_Code_And_Term -Xa3gO,Rheumatoid arthritis - other joint,CTV3_Children -Xa3gP,Rheumatoid arthritis NOS,CTV3_Children -XE1DU,Rheumatoid arthritis and other inflammatory polyarthropathy,QOF -XaZdB,Rheumatoid arthritis annual review,CTV3_Children -XM1XV,Rheumatoid arthritis monitoring,CTV3Map_Code_And_Term -XafjA,Rheumatoid arthritis monitoring SMS text mesg 2nd invitation,QOF -XafjB,Rheumatoid arthritis monitoring SMS text mesg 3rd invitation,QOF -XaaWW,Rheumatoid arthritis monitoring invitation,QOF -XagLZ,Rheumatoid arthritis monitoring invitation email,QOF -XaaWt,Rheumatoid arthritis monitoring invitation first letter,QOF -XaaWu,Rheumatoid arthritis monitoring invitation second letter,QOF -XaaWv,Rheumatoid arthritis monitoring invitation third letter,QOF -XaaWx,Rheumatoid arthritis monitoring telephone invitation,QOF -XaaWw,Rheumatoid arthritis monitoring verbal invitation,QOF -Xafj9,Rheumatoid arthritis monitring SMS text msg first invitation,QOF -N040A,Rheumatoid arthritis of DIP joint of finger,CTV3Map_Code_And_Term -N0409,Rheumatoid arthritis of PIP joint of finger,CTV3Map_Code_And_Term -N0404,Rheumatoid arthritis of acromioclavicular joint,CTV3Map_Code_And_Term -N040F,Rheumatoid arthritis of ankle,CTV3Map_Code_And_Term -N0400,Rheumatoid arthritis of cervical spine,CTV3Map_Code_And_Term -N0406,Rheumatoid arthritis of distal radioulnar joint,CTV3Map_Code_And_Term -N0405,Rheumatoid arthritis of elbow,CTV3Map_Code_And_Term -N040K,Rheumatoid arthritis of first metatarsophalangeal joint,CTV3Map_Code_And_Term -N040B,Rheumatoid arthritis of hip,CTV3Map_Code_And_Term -N040M,Rheumatoid arthritis of interphalangeal joint of toe,CTV3Map_Code_And_Term -N040D,Rheumatoid arthritis of knee,CTV3Map_Code_And_Term -N040L,Rheumatoid arthritis of lesser metatarsophalangeal joint,CTV3Map_Code_And_Term -N0408,Rheumatoid arthritis of metacarpophalangeal joint,CTV3Map_Code_And_Term -N040J,Rheumatoid arthritis of other tarsal joint,CTV3Map_Code_And_Term -N040C,Rheumatoid arthritis of sacroiliac joint,CTV3Map_Code_And_Term -N0402,Rheumatoid arthritis of shoulder,CTV3Map_Code_And_Term -N0403,Rheumatoid arthritis of sternoclavicular joint,CTV3Map_Code_And_Term -N040G,Rheumatoid arthritis of subtalar joint,CTV3Map_Code_And_Term -N040H,Rheumatoid arthritis of talonavicular joint,CTV3Map_Code_And_Term -N040E,Rheumatoid arthritis of tibiofibular joint,CTV3Map_Code_And_Term -N0407,Rheumatoid arthritis of wrist,CTV3Map_Code_And_Term -X701m,Rheumatoid arthritis with multisystem involvement,CTV3_Children -X701j,Rheumatoid arthritis with organ / system involvement,CTV3_Children -N042z,Rheumatoid arthropathy + visceral/systemic involvement NOS,CTV3Map_Code_And_Term -N040Q,Rheumatoid bursitis,CTV3Map_Code_And_Term -G5yA.,Rheumatoid carditis,CTV3Map_Code_And_Term -N0421,Rheumatoid lung,CTV3Map_Code_And_Term -N0421,Rheumatoid lung,CTV3Map_Code_Only -G5y8.,Rheumatoid myocarditis,CTV3Map_Code_And_Term -N0422,Rheumatoid nodule,CTV3Map_Code_And_Term -X103Y,Rheumatoid pneumoconiosis,CTV3Map_Code_Only -X103Y,Rheumatoid pneumoconiosis,CTV3Map_Code_And_Term -X701l,Rheumatoid vasculitis,CTV3Map_Code_And_Term -X701i,Seronegative rheumatoid arthritis,CTV3Map_Code_And_Term -XaBMO,Seropositive errosive rheumatoid arthritis,CTV3Map_Code_And_Term -X701h,Seropositive rheumatoid arthritis,CTV3_Children -Xa3wk,Still's disease - juvenile rheumatoid arthritis,High_Level_SNOMED -X705u,Systemic rheumatoid vasculitis,CTV3_Children -Nyu11,[X]Other seropositive rheumatoid arthritis,CTV3Map_Code_And_Term -Nyu12,[X]Other specified rheumatoid arthritis,CTV3Map_Code_And_Term -Nyu10,[X]Rheumatoid arthritis+involvement/other organs or systems,CTV3Map_Code_And_Term -Nyu1G,"[X]Seropositive rheumatoid arthritis, unspecified",CTV3Map_Code_And_Term -N04X.,"[X]Seropositive rheumatoid arthritis, unspecified",CTV3_Children \ No newline at end of file diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-strongopioidsCW-dmd.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-strongopioidsCW-dmd.csv index 584c02954..3a60f49d0 100644 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-strongopioidsCW-dmd.csv +++ b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-strongopioidsCW-dmd.csv @@ -36,10 +36,10 @@ code,term,dmd_id,dmd_type,bnf_code 11415411000001109,Tramadol 50mg capsules,11415411000001109,AMP,040702040AAAAAA 17860911000001102,Tramadol 50mg capsules,17860911000001102,AMP,040702040AAAAAA 40703011000001103,Tramadol 50mg capsules,40703011000001103,AMP,040702040AAAAAA -849011000001103,Tramadol 50mg capsules,849011000001103,AMP,040702040AAAAAA 36925411000001101,Tramadol 50mg capsules,36925411000001101,AMP,040702040AAAAAA 24622911000001109,Tramadol 50mg capsules,24622911000001109,AMP,040702040AAAAAA 15195711000001100,Tramadol 50mg capsules,15195711000001100,AMP,040702040AAAAAA +849011000001103,Tramadol 50mg capsules,849011000001103,AMP,040702040AAAAAA 796411000001109,Tramadol 50mg capsules,796411000001109,AMP,040702040AAAAAA 26787711000001101,Tramadol 50mg capsules,26787711000001101,AMP,040702040AAAAAA 812811000001107,Tramadol 50mg capsules,812811000001107,AMP,040702040AAAAAA @@ -54,7 +54,9 @@ code,term,dmd_id,dmd_type,bnf_code 28798511000001104,Tramadol 100mg/2ml solution for injection ampoules,28798511000001104,AMP,040702040AAABAB 35920311000001103,Tramadol 100mg modified-release tablets,35920311000001103,VMP,040702040AAACAC 35920611000001108,Tramadol 150mg modified-release tablets,35920611000001108,VMP,040702040AAADAD +42490811000001102,Tramadol 150mg modified-release tablets,42490811000001102,AMP,040702040AAADAD 35920811000001107,Tramadol 200mg modified-release tablets,35920811000001107,VMP,040702040AAAEAE +42491611000001106,Tramadol 200mg modified-release tablets,42491611000001106,AMP,040702040AAAEAE 39714911000001102,Tramadol 50mg soluble tablets sugar free,39714911000001102,VMP,040702040AAAFAF 35940111000001103,Tramadol 50mg modified-release capsules,35940111000001103,VMP,040702040AAAGAG 28838511000001107,Tramadol 50mg modified-release capsules,28838511000001107,AMP,040702040AAAGAG @@ -387,12 +389,12 @@ code,term,dmd_id,dmd_type,bnf_code 40630111000001106,Fenhuma 400microgram sublingual tablets,40630111000001106,AMP,0407020A0BXADAZ 40630611000001103,Fenhuma 300microgram sublingual tablets,40630611000001103,AMP,0407020A0BXAEAY 40631111000001100,Fenhuma 200microgram sublingual tablets,40631111000001100,AMP,0407020A0BXAFAX -42283711000001101,Iremia 67microgram sublingual tablets,42283711000001101,AMP,0407020A0BYAACA -42282511000001104,Iremia 133microgram sublingual tablets,42282511000001104,AMP,0407020A0BYABBX -42282811000001101,Iremia 267microgram sublingual tablets,42282811000001101,AMP,0407020A0BYACBZ -42283111000001102,Iremia 400microgram sublingual tablets,42283111000001102,AMP,0407020A0BYADAZ -42283411000001107,Iremia 533microgram sublingual tablets,42283411000001107,AMP,0407020A0BYAEBY -42284011000001101,Iremia 800microgram sublingual tablets,42284011000001101,AMP,0407020A0BYAFBB +42282511000001104,Iremia 133microgram sublingual tablets,42282511000001104,AMP,0407020A0BYAGCB +42282811000001101,Iremia 267microgram sublingual tablets,42282811000001101,AMP,0407020A0BYAHCC +42283111000001102,Iremia 400microgram sublingual tablets,42283111000001102,AMP,0407020A0BYAICD +42283411000001107,Iremia 533microgram sublingual tablets,42283411000001107,AMP,0407020A0BYAJCE +42283711000001101,Iremia 67microgram sublingual tablets,42283711000001101,AMP,0407020A0BYAKCF +42284011000001101,Iremia 800microgram sublingual tablets,42284011000001101,AMP,0407020A0BYALCG 14615911000001108,Papaveretum 7.7mg/1ml solution for injection ampoules,14615911000001108,VMP,0407020ABAAAAAA 10055711000001107,Papaveretum 7.7mg/1ml solution for injection ampoules,10055711000001107,AMP,0407020ABAAAAAA 9768811000001103,Papaveretum 7.7mg/1ml solution for injection ampoules,9768811000001103,AMP,0407020ABAAAAAA @@ -414,7 +416,9 @@ code,term,dmd_id,dmd_type,bnf_code 36468311000001107,Oxycodone 5mg/5ml oral solution sugar free,36468311000001107,AMP,0407020ADAAAAAA 30824811000001101,Oxycodone 5mg/5ml oral solution sugar free,30824811000001101,AMP,0407020ADAAAAAA 36854211000001105,Oxycodone 5mg/5ml oral solution sugar free,36854211000001105,AMP,0407020ADAAAAAA +42527211000001103,Oxycodone 5mg/5ml oral solution sugar free,42527211000001103,AMP,0407020ADAAAAAA 39073511000001103,Oxycodone 5mg/5ml oral solution sugar free,39073511000001103,AMP,0407020ADAAAAAA +42510211000001108,Oxycodone 5mg/5ml oral solution sugar free,42510211000001108,AMP,0407020ADAAAAAA 19661411000001101,Oxycodone 5mg/5ml oral solution sugar free,19661411000001101,AMP,0407020ADAAAAAA 36130011000001103,Oxycodone 10mg/ml oral solution sugar free,36130011000001103,VMP,0407020ADAAABAB 19670811000001101,Oxycodone 10mg/ml oral solution sugar free,19670811000001101,AMP,0407020ADAAABAB @@ -423,6 +427,7 @@ code,term,dmd_id,dmd_type,bnf_code 36854411000001109,Oxycodone 10mg/ml oral solution sugar free,36854411000001109,AMP,0407020ADAAABAB 40538911000001104,Oxycodone 10mg/ml oral solution sugar free,40538911000001104,AMP,0407020ADAAABAB 39073311000001109,Oxycodone 10mg/ml oral solution sugar free,39073311000001109,AMP,0407020ADAAABAB +42493811000001109,Oxycodone 10mg/ml oral solution sugar free,42493811000001109,AMP,0407020ADAAABAB 19662111000001101,Oxycodone 10mg/ml oral solution sugar free,19662111000001101,AMP,0407020ADAAABAB 42016011000001103,Oxycodone 5mg capsules,42016011000001103,VMP,0407020ADAAACAC 42015811000001101,Oxycodone 10mg capsules,42015811000001101,VMP,0407020ADAAADAD @@ -501,11 +506,11 @@ code,term,dmd_id,dmd_type,bnf_code 29838411000001106,Longtec 15mg modified-release tablets,29838411000001106,AMP,0407020ADBEAGAS 29838611000001109,Longtec 30mg modified-release tablets,29838611000001109,AMP,0407020ADBEAHAR 29838811000001108,Longtec 60mg modified-release tablets,29838811000001108,AMP,0407020ADBEAIAQ -20968611000001105,Oxylan 5mg modified-release tablets,20968611000001105,AMP,0407020ADBFAAAK -20968811000001109,Oxylan 10mg modified-release tablets,20968811000001109,AMP,0407020ADBFABAF -20969011000001108,Oxylan 20mg modified-release tablets,20969011000001108,AMP,0407020ADBFACAG -20969211000001103,Oxylan 40mg modified-release tablets,20969211000001103,AMP,0407020ADBFADAH -20969411000001104,Oxylan 80mg modified-release tablets,20969411000001104,AMP,0407020ADBFAEAI +20968611000001105,Oxylan 5mg prolonged-release tablets,20968611000001105,AMP,0407020ADBFAAAK +20968811000001109,Oxylan 10mg prolonged-release tablets,20968811000001109,AMP,0407020ADBFABAF +20969011000001108,Oxylan 20mg prolonged-release tablets,20969011000001108,AMP,0407020ADBFACAG +20969211000001103,Oxylan 40mg prolonged-release tablets,20969211000001103,AMP,0407020ADBFADAH +20969411000001104,Oxylan 80mg prolonged-release tablets,20969411000001104,AMP,0407020ADBFAEAI 22416411000001100,Oxylan 5mg modified-release tablets,22416411000001100,AMP,0407020ADBFAFAK 22417611000001100,Oxylan 10mg modified-release tablets,22417611000001100,AMP,0407020ADBFAGAF 22417811000001101,Oxylan 20mg modified-release tablets,22417811000001101,AMP,0407020ADBFAHAG @@ -618,9 +623,13 @@ code,term,dmd_id,dmd_type,bnf_code 42017511000001108,Tapentadol 50mg tablets,42017511000001108,VMP,0407020AGAAAAAA 42017611000001107,Tapentadol 75mg tablets,42017611000001107,VMP,0407020AGAAABAB 18672211000001103,Tapentadol 50mg modified-release tablets,18672211000001103,VMP,0407020AGAAACAC +42540411000001100,Tapentadol 50mg modified-release tablets,42540411000001100,AMP,0407020AGAAACAC 18671811000001106,Tapentadol 100mg modified-release tablets,18671811000001106,VMP,0407020AGAAADAD +42540711000001106,Tapentadol 100mg modified-release tablets,42540711000001106,AMP,0407020AGAAADAD 18671911000001101,Tapentadol 150mg modified-release tablets,18671911000001101,VMP,0407020AGAAAEAE +42540911000001108,Tapentadol 150mg modified-release tablets,42540911000001108,AMP,0407020AGAAAEAE 18672011000001108,Tapentadol 200mg modified-release tablets,18672011000001108,VMP,0407020AGAAAFAF +42541111000001104,Tapentadol 200mg modified-release tablets,42541111000001104,AMP,0407020AGAAAFAF 18672111000001109,Tapentadol 250mg modified-release tablets,18672111000001109,VMP,0407020AGAAAGAG 24408811000001107,Tapentadol 20mg/ml oral solution sugar free,24408811000001107,VMP,0407020AGAAAHAH 39819711000001100,Tapentadol 25mg modified-release tablets,39819711000001100,VMP,0407020AGAAAIAI @@ -899,6 +908,8 @@ code,term,dmd_id,dmd_type,bnf_code 15105811000001106,Diamorphine hydrochloride powder,15105811000001106,AMP,0407020K0AAFPFP 37514111000001109,Diamorphine hydrochloride powder,37514111000001109,AMP,0407020K0AAFPFP 4306811000001100,Diamorphine hydrochloride powder,4306811000001100,AMP,0407020K0AAFPFP +42477011000001103,Diamorphine 500mg oral powder sachets,42477011000001103,VMP,0407020K0AAFQFQ +42447811000001108,Diamorphine 500mg oral powder sachets,42447811000001108,AMP,0407020K0AAFQFQ 12299211000001109,Methadone 100mg impregnated cigarettes,12299211000001109,VMP,0407020M0AAA2A2 12240411000001106,Methadone 100mg impregnated cigarettes,12240411000001106,AMP,0407020M0AAA2A2 36121011000001105,Methadone 20mg/2ml solution for injection ampoules,36121011000001105,VMP,0407020M0AAA3A3 diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-symptoms-pain.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-symptoms-pain.csv deleted file mode 100644 index 9f10ceb20..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-symptoms-pain.csv +++ /dev/null @@ -1,3608 +0,0 @@ -code,term -10000006,Radiating chest pain -1000004,Sprain -1003721002,Pain of joint of knee -1003722009,Pain of knee region -10085004,Metatarsalgia -1010233001,Otalgia of left ear -1010234007,Otalgia of right ear -102480002,Generalized acute body pains -102481003,Generalized chronic body pains -102482005,Growing pains -102554000,Cervical spinous process tenderness -102555004,Neck pain aggravated by recumbency -102556003,Pain in upper limb -102570003,Inguinal pain -102587001,Acute chest pain -102588006,Chest wall pain -102589003,Atypical chest pain -102591006,Chest wall tenderness -102616008,Painful mouth -102619001,Pain in esophagus -102628000,Gallbladder pain -102830001,Renal angle tenderness -102831002,Renal angle pain -102997000,Psychroalgia -103000001,Crymodynia -103013007,Smarting pain -103014001,Cervical nerve root pain -103015000,Thoracic nerve root pain -103016004,Lumbosacral nerve root pain -10317009,Spinal enthesopathy -1033009,Thoracic arthritis -10512004,Sprain of other site of shoulder and upper arm -105380005,Cryoanalgesia -105611005,Sprain of ligament of joint -10601006,Pain in lower limb -1069301000000108,Does manage pain in body part -1069661000000101,Unable to understand pain in body part -1070371000000103,Difficulty managing generalised pain -1070461000000102,Difficulty managing pain in body part -1071031000000107,Difficulty tolerating generalised pain -1071041000000103,Difficulty tolerating pain in body part -1072071000000104,Does not manage generalised pain -1072151000000109,Does not manage pain in body part -1072701000000109,Does not tolerate generalised pain -1072711000000106,Does not tolerate pain in body part -1073721000000107,Does manage generalised pain -1074391000119103,Osteoarthritis of right sternoclavicular joint -1074411000119103,Osteoarthritis of bilateral sternoclavicular joints -1074451000119102,Osteoarthritis of left sternoclavicular joint -1074461000119100,Osteoarthritis of right foot -1074471000119106,Osteoarthritis of midtarsal joint of right foot -1074481000119109,Osteoarthritis of first metatarsophalangeal joint of right foot -1074491000119107,Osteoarthritis of left foot -1074501000119100,Osteoarthritis of midtarsal joint of left foot -1074511000119102,Osteoarthritis of first metatarsophalangeal joint of left foot -1074561000119104,Osteoarthritis of right sacroiliac joint -1074571000119105,Osteoarthritis of left sacroiliac joint -1074631000119106,Arthritis of bilateral glenohumeral joints -1074651000119100,Arthritis of left glenohumeral joint -1074661000119103,Arthritis of left sternoclavicular joint -1074671000119109,Arthritis of right glenohumeral joint -1074681000119107,Arthritis of right sternoclavicular joint -1074691000119105,Arthritis of left elbow -1074701000119105,Arthritis of right elbow -1074711000119108,Arthritis of bilateral elbows -1074721000119101,Arthritis of left wrist -1074731000119103,Arthritis of right wrist -1074741000119107,Arthritis of bilateral wrist -1074771000119100,Arthritis of finger of bilateral hand -1074781000119102,Arthritis of bilateral first carpometacarpal joints -1074801000119103,Arthritis of first carpometacarpal joint of left hand -1074811000119100,Arthritis of first carpometacarpal joint of right hand -1074881000119106,Arthritis of left ankle -1074891000119109,Arthritis of left foot -1074901000119108,Arthritis of left midtarsal joint -1074911000119106,Arthritis of right ankle -1074921000119104,Arthritis of right foot -1074931000119101,Arthritis of right midtarsal joint -1074941000119105,Arthritis of bilateral ankle -1074951000119107,Arthritis of bilateral feet -1074961000119109,Arthritis of bilateral sternoclavicular joints -1074971000119103,Arthritis of left sacroiliac joint -1074981000119100,Arthritis of right sacroiliac joint -1075231000000101,Unable to manage generalised pain -1075321000000105,Unable to manage pain in body part -1075491000119108,Femoral acetabular impingement of right hip joint -1075501000119101,Femoral acetabular impingement of left hip joint -1075631000119107,Pain of right sternoclavicular joint -1075651000119101,Pain of left sternoclavicular joint -1075811000119101,Calcific tendinitis of right foot -1075821000119108,Calcific tendinitis of right achilles tendon -1075841000119102,Calcific tendinitis of left achilles tendon -1075851000119100,Tenosynovitis of right wrist -1075861000119103,Tenosynovitis of left wrist -1075871000119109,Tenosynovitis of right hand -1075881000119107,Tenosynovitis of left hand -1075891000119105,Synovitis of left ankle joint -1075901000119109,Synovitis of right ankle joint -1075911000119107,Synovitis of joint of left foot -1075921000000109,Unable to tolerate generalised pain -1075921000119100,Synovitis of joint of right foot -1075931000000106,Unable to tolerate pain in body part -1075931000119102,Tenosynovitis of left ankle -1075941000119106,Tenosynovitis of right ankle -1075951000119108,Tenosynovitis of left foot -1075961000119105,Tenosynovitis of right foot -1076011000000108,Unable to understand generalised pain -1076171000119108,Patellar bursitis of right knee -1076181000119106,Bursitis of right knee -1076191000119109,Pes anserinus bursitis of right knee -1076211000119105,Suprapatellar bursitis of right knee -1076221000119103,Subpatellar bursitis of right knee -1076231000119100,Patellar bursitis of left knee -1076241000119109,Bursitis of left knee -1076251000119106,Pes anserinus bursitis of left knee -1076271000119102,Suprapatellar bursitis of left knee -1076281000119104,Subpatellar bursitis of left knee -1076291000119101,Ischiogluteal bursitis of right hip -1076301000119100,Iliopsoas bursitis of right hip -1076311000119102,Ischiogluteal bursitis of left hip -1076321000119109,Iliopsoas bursitis of left hip -1076421000119104,Retrocalcaneal bursitis of right foot -1076441000119105,Retrocalcaneal bursitis of left foot -1076501000119109,Subacromial bursitis of right shoulder -1076521000119100,Subdeltoid bursitis of right shoulder -1076531000119102,Scapulothoracic bursitis of right shoulder -1076541000119106,Subacromial bursitis of left shoulder -1076561000119105,Subdeltoid bursitis of left shoulder -1076571000119104,Scapulothoracic bursitis of left shoulder -1076621000119101,Tendinitis of right knee -1076631000119103,Tendinitis of right hip adductor muscle -1076641000119107,Tendinitis of left knee -1076651000119109,Tendinitis of left hip adductor muscle -1076671000119100,Tendinitis of right flexor hallucis longus -1076691000119104,Tendinitis of left flexor hallucis longus -1076721000119108,Joint pain in right hand -1076731000119106,Joint pain in left hand -1078021000000101,Pelvic girdle pain -107841000000101,Mechanical low back pain -1082771000000109,Magnetic resonance arthrography of carpometacarpal joint -1084561000119106,Referred otalgia of bilateral ears -1088071000000108,Pain in upper arm -1089311000000108,Painful and cold upper limb -1089321000000102,Painful and cold lower limb -1089331000000100,Painful and cold lower leg -1089341000000109,Painful and cold foot -1089351000000107,Painful and cold forearm -1089361000000105,Painful and cold hand -108941000000106,Ischial bursitis -1089561000119107,Referred otalgia of left ear -1092171000119100,Referred otalgia of right ear -109297005,Acute bursitis -109298000,Subacute bursitis -109299008,Chronic bursitis -1094851000000101,Chronic sacroiliac joint pain -109659002,Tenderness of temporomandibular joint on palpation -109663009,Arthritis of temporomandibular joint as part of polyarthritis -109668000,Degenerative arthritis of temporomandibular joint -11023001,Acute calcific periarthritis -110288007,Tenderness of joint -110341006,Tenderness of gums -11049006,Cervical radiculitis -1108141000000108,Expresses pain atypically -11114002,Sore gums -111211002,Migratory polyarthritis -111219000,Degenerative joint disease of other site -111220006,Primary localized osteoarthrosis of other site -111237004,Putti's syndrome -111239001,Peripheral enthesopathy -111240004,Enthesopathy of shoulder region -111242007,Periarthritis of wrist -111243002,Bursitis of knee -111255008,Avascular necrosis of the capital femoral epiphysis -111277007,Pharyngeal bursitis -111349000,Glossopyrosis -111653006,Sprain of sacroiliac region -1119213008,Tenderness of left lumbar region of back -1119214002,Tenderness of right lumbar region of back -1119215001,Pain in left lumbar region of back -1119216000,Pain in right lumbar region of back -1121000119107,Chronic neck pain -112102006,Atypical neuralgia -112104007,Localized pain -112581000119104,Acute pain of joint of knee -112821000000109,Neuropathic pain -112961000119103,Osteoarthritis of joint of bilateral feet -112971000119109,Osteoarthritis of joint of bilateral ankles -112981000119107,Osteoarthritis of bilateral knee joints -112991000119105,Osteoarthritis of bilateral hip joints -113001000119106,Osteoarthritis of joint of finger of bilateral hands -113011000119109,Osteoarthritis of joint of bilateral hands -113021000119102,Osteoarthritis of bilateral wrists -113041000119108,Osteoarthritis of bilateral shoulders -113611000119100,Myofascial pain syndrome of lumbar spine -11382003,Sprain of ulnar collateral ligament -11654001,Achilles tendinitis -11679003,Radicular pain -117711000000105,Myalgia/myositis of neck -11826631000119102,Strain of tendon of left hand -11826671000119104,Strain of muscle of left hand -11826711000119100,Strain of tendon of right wrist -11826791000119109,Strain of tendon of left wrist -11833751000119108,Sprain of talofibular ligament of right ankle -11833791000119103,Sprain of talofibular ligament of left ankle -11838861000119108,Strain of intrinsic muscle of left thumb -11839051000119107,Strain of muscle of right hand -11839121000119103,Strain of intrinsic muscle of right thumb -11839311000119108,Strain of tendon of right hand -11842371000119107,Strain of tendon of right ankle -11842451000119109,Strain of tendon of left ankle -11842731000119108,Strain of muscle of right foot -11842771000119106,Strain of muscle of left foot -11857981000119105,Strain of muscle of right lower leg -11858021000119108,Strain of muscle of left lower leg -11858061000119103,Strain of muscle of right posterior lower leg -11858101000119100,Strain of muscle of left posterior lower leg -11892641000119101,Chronic female pelvic pain syndrome -11939005,Acute arthritis -11991005,Degenerative joint disease of lower leg -12236481000119105,Bursitis of left wrist -12236521000119105,Bursitis of right wrist -12236561000119100,Arthritis of finger of left hand -12236601000119100,Arthritis of finger of right hand -12241111000119104,Tendinitis of left elbow -12241151000119103,Tendinitis of left forearm -12241191000119108,Tendinitis of right elbow -12241231000119104,Tendinitis of right forearm -12241631000119102,Osteoarthritis of finger joint of left hand -12241671000119104,Osteoarthritis of finger joint of right hand -12242791000119100,Tenderness of left temporomandibular joint -12242831000119106,Tenderness of right temporomandibular joint -12247531000119106,Pain in bilateral lower legs -12247571000119109,Bilateral foot joint pain -1229008,Sprain of midcarpal joint -123091001,Painful ejaculation -123253007,Neuralgia -123255000,Radiculitis -12336008,Referred otalgia -123536004,Sprain of upper extremity -123586005,Tendon sheath crepitus -12367361000119109,Osteoarthritis of right patellofemoral joint -12367411000119102,Osteoarthritis of left patellofemoral joint -12367461000119104,Osteoarthritis of bilateral patellofemoral joints -123796003,Cervical spondylosis -123797007,Thoracic spondylosis -12519004,Sprain of sacroiliac ligament -12521000132103,Strain of jaw -12531000132101,Strain of toe -125624001,Sprain of ligament -12584003,Bone pain -12594008,Sprain of sacrotuberous ligament -127292004,Sprain of anterior cruciate ligament of knee -127293009,Sprain of posterior cruciate ligament of knee -128079007,Reflex sympathetic dystrophy -128196005,Lumbar radiculopathy -128197001,Sacral radiculopathy -128200000,Complex regional pain syndrome -128268005,Arthropathy of pelvis -129501000119107,Chronic sacral pain for greater than three months -129511000119105,Chronic pain in coccyx for more than three months -129613007,Tympanic plexus neuralgia syndrome -1304004,Fibromyalgia -13057000,Pleuropericardial chest pain -130731000119100,Disorder of joint of lumbosacral vertebra -130986009,Acute onset pain -13155005,Infection caused by Elaeophora schneideri -13271000119101,Prolapse of thoracic intervertebral disc without radiculopathy -13291000119100,Prolapse of lumbar intervertebral disc without radiculopathy -133731000119108,Chronic pain in male pelvis -134407002,Chronic back pain -135860001,Exacerbation of backache -13612005,Temporomandibular joint-pain-dysfunction syndrome -1362191000000105,Pain relieved by passing flatus -1362201000000107,Pain relieved by defaecating -136791000119103,Chronic thoracic back pain -13888000,Primary localized osteoarthrosis of shoulder region -139146005,Back pain -139148006,Back pain -139149003,Backache with radiation -139150003,Back pain worse on sneezing -139151004,C/O - low back pain -139152006,Back pain without radiation NOS -139153001,C/O - upper back ache -139154007,Backache symptom NOS -139171008,Growing pains -139228007,Chest pain -139229004,Chest pain not present -139231008,Precordial pain -139232001,Anterior chest wall pain -139233006,Pleuritic pain -139234000,Parasternal pain -139236003,Atypical chest pain -139237007,Retrosternal pain -139238002,Chest pain on exertion -139239005,Rib pain -139240007,Chest pain NOS -139275007,Sore mouth -139276008,Sore gums -139293008,Swallowing painful -139314004,Defaecation painful -139316002,Pain: [site of GIT] or [abdominal site symptom] or [flank] or [subcostal] or [iliac fossa] -139319009,Left subcostal pain -139320003,Right subcostal pain -139321004,Left flank pain -139322006,Right flank pain -139325008,Suprapubic pain -139376006,Defaecation painful -139421003,(Pain: [lumbar] or [renal] or [loin]) or (lumbar renal ache) -139427004,C/O pelvic pain -139428009,C/O perineal pain -139429001,Pain in penis -139430006,Pain in scrotum -139556001,Pain in eye -139625000,Earache symptoms -139627008,Unilateral earache -139628003,Bilateral earache -139630001,Earache symptom NOS -139682004,C/O: [a pain] or [an ache] -139768007,Pain character -139769004,Burning pain -139770003,Aching pain -139771004,Stabbing pain -139772006,Cutting pain -139773001,Griping pain -139774007,Tightening pain -139775008,Pricking pain -139776009,Generalised aches and pains -139777000,Shooting pain -139778005,Rest pain -139780004,Pain character NOS -139942008,O/E - in pain -139999000,O/E - pain influenced posture -14040001000004109,Uncontrolled pain -140422000,O/E pain: [abdominal (& on palpation)] or [epigastric] or [iliac] or [lumbar] or [umbilical] -140423005,O/E - no abd.pain on palpation -140427006,O/E - abd. pain - R.lumbar -140429009,O/E - abd. pain - L.lumbar -140432007,O/E - left iliac: [abdominal pain] or [tender] -140433002,O/E -abd.pain on palpation NOS -140568000,O/E - renal angle tenderness -140929002,O/E - pain sensation -140933009,O/E - pain sensation NOS -14107000,Synovitis -141416002,O/E - painful ear -141418001,O/E - ear auricle painful -141419009,O/E - pain over mastoid -141420003,O/E - painful ear NOS -141443007,O/E - maxillary sinus: [tenderness] or [pain] -141444001,O/E - frontal sinus: [tenderness] or [pain] -14150005,Alteration in comfort: chronic pain -141694009,O/E: [shoulder joint abnormal] or [painful arc] -141718000,O/E - joint movement painful -14175009,Rheumatic joint disease -141806002,O/E - tenderness &/or pain -141865000,O/E - sign painful -141867008,O/E - sign slightly painful -141868003,O/E - sign moderately painful -141869006,O/E - sign very painful -141870007,O/E - sign painful NOS -144951000000106,Chronic mechanical low back pain -144961000000109,Mechanical neck pain -148074006,Rheumatology disorder - joints affected -154930008,Somatoform pain disorder -154932000,Psychalgia: [tension backache] or [other] -155048007,(Cluster headaches) or (migrainous neuralgia) or (migraine NOS) -155066002,Trigeminal neuralgia -155067006,Atypical facial pain -155074001,Other mononeuritis upper limb &/or causalgia -155076004,Meralgia paraesthetica -155078003,Interdigital neuralgia -15525009,Sprain of distal radioulnar joint -155251005,Otalgia -155650000,(Temporomandibular joint dis) or (snapping jaw) or (temporomandibular syndrome) -155788009,Proctalgia fugax (& anal spasm): disorder or observation -156236006,Pelvic joint/ligament damage -15629941000119104,Left inguinal pain -15629981000119109,Right inguinal pain -15630021000119102,Pain of bilateral inguinal regions -15630651000119104,Tendinitis of right hand -15630691000119109,Tendinitis of left hand -15630731000119102,Tendinitis of bilateral hands -15630931000119100,Bursitis of bilateral hips -15632371000119104,Disorder of bilateral patellofemoral joints -15632451000119102,Right temporomandibular joint pain dysfunction syndrome -15632491000119107,Left temporomandibular joint pain dysfunction syndrome -15632531000119107,Bilateral temporomandibular joint pain dysfunction syndrome -15633361000119103,Bilateral sciatica -15634471000119104,Bilateral calf pain -15635921000119105,Pes anserinus bursitis of bilateral knees -15636001000119108,Lateral epicondylitis of bilateral humerus -15636531000119108,Somatic dysfunction of left sacroiliac joint -15636571000119106,Somatic dysfunction of right sacroiliac joint -15636611000119102,Somatic dysfunction of bilateral sacroiliac joints -15636851000119100,Stiffness of bilateral hand joints -15637151000119108,Tendinitis of long head of biceps brachii of bilateral shoulders -15637191000119103,Calcific tendinitis of bilateral shoulders -15637311000119105,Olecranon bursitis of bilateral elbows -15638411000119100,Peroneal tendinitis of bilateral lower legs -15638571000119107,Prepatellar bursitis of bilateral knees -15638971000119100,Femoral acetabular impingement of bilateral hip joints -15639561000119107,Pain of bilateral acromioclavicular joints -15639721000119105,Pain in bilateral temporomandibular joints -156459003,(Arthritis/arthrosis) or (arthropathy) or (joint disorders) -156484000,Polyarthropathy (& [inflammatory]) NOS -156486003,Osteoarthritis -156487007,Osteoarthritis -multiple joint -156488002,Osteoarthritis of shoulder joint -156489005,Osteoarthritis of elbow -156490001,Osteoarthritis of wrist -156491002,Osteoarthritis - hand joint -156492009,Osteoarthritis of hip -156493004,Osteoarthritis of knee -156494005,Osteoarthritis - ankle/foot -156495006,Osteoarthritis - other joint -156496007,Osteoarthritis NOS -156508002,Arthropathy NOS -156510000,Climacteric arthritis -156514009,(Arthropathy NOS) or (arthrosis) or (Charcot's joint) or (Otto's pelvis) or (polyarthritis NOS) -156592007,(Pain in joint) or (coxalgia) -156593002,Multiple joint pain -156594008,Joint pain: [shoulder] or [acromioclavicular] -156595009,Elbow joint pain -156596005,Wrist joint pain -156597001,Hand joint pain -156598006,Hip pain -156599003,Knee joint pain -156600000,Arthralgia of the ankle and foot -156601001,Arthralgia of other specified site -156602008,Arthralgia NOS -156616003,(Joint: [disorder NOS] or [unstable]) or (polyarthralgia) -156622007,(Spondyloses: [cervical] or [lumbar] or [sacral]) or (arthritis - spine) or (osteoarthritis - spine) -156641005,(Cervicalgia) or (neck pain NOS) -156647009,Pain in thoracic spine -156648004,Low back pain -156649007,Sciatica -156651006,(Backache NOS) or (back pain [& low]) -156655002,Soft tissue rheumatism -156656001,Polymyalgia rheumatica -156657005,(Peripheral enthesopathies) or (capsulitis) -156658000,(Shoulder: [syndrome (& [painful arc][rotator cuff])][bicipital tendinit][bursitis][frozen][pericapsulit][adhes capsulit]) or (tendinitis: [subscapular][supraspinat][infraspinat][bicep long head]) -156659008,(Epicondylitis &/or tennis elbow) or (golfers' elbow) -156660003,Periarthritis of wrist -156661004,Enthesopathy of the hip region -156662006,(Patellar tendinitis) or (Pellegrini-Stieda syndrome) -156663001,(Tendinitis: [ankle/tarsus] or [achilles] or [ankle]) or (calcaneal spur) or (metatarsalgia) -156665008,(Peripheral enthesopathy NOS) or (exostosis NOS) or (periarthritis NOS) or (semi-membranosus bursa) or (tendinitis NOS) -156666009,Synovitis &/or tenosynovitis -156667000,Synovitis/tenosyn.- multiple -156668005,Synovitis/tenosynovitis - shoulder -156669002,Synovitis/tenosynovitis - elbow -156670001,(Synovitis/tenosynovitis - wrist) or (de Quervain's tenosynovitis) -156671002,(Synovitis/tenosynovitis - hand) or (finger: [snapping] or [trigger]) -156672009,Synovitis/tenosynovitis - hip -156673004,Synovitis/tenosynovitis - knee -156674005,Synovitis/tenosynovitis - ankle/foot -156675006,Synovitis or tenosynovitis NOS -156677003,Bursitis -156678008,Bursitis - multiple -156679000,Bursitis of shoulder -156680002,Elbow bursitis (& olecranon) -156681003,Bursitis of wrist -156682005,Bursitis of hand -156683000,Bursitis of hip -156684006,(Bursitis: [knee] or [pre-patellar]) or (house-maid's knee) -156685007,(Bursitis - ankle/foot) or (painful heel syndrome) -156686008,Bursitis NOS -156726002,Muscle strain -156727006,Fibromyalgia -156730004,Rheumatism &/or fibrositis: [NOS] -156731000,Rheumatism multiple NOS -156732007,Rheumatism shoulder NOS -156733002,Rheumatism elbow NOS -156734008,Rheumatism wrist NOS -156735009,Rheumatism hand NOS -156736005,Rheumatism hip NOS -156737001,Rheumatism knee NOS -156738006,Rheumatism ankle/foot NOS -156739003,Rheumatism or fibrositis NOS -156740001,Myalgia &/or myositis: [NOS] -156741002,Myalgia/myositis - multiple -156742009,Myalgia/myositis - shoulder -156743004,Myalgia/myositis - upper arm -156744005,Myalgia/myositis - forearm -156745006,Myalgia/myositis - hand -156746007,Myalgia/myositis -pelvis/thigh -15674641000119105,Tendinitis of bilateral psoas tendons -156747003,Myalgia/myositis - lower leg -156748008,Myalgia/myositis - ankle/foot -15674881000119101,Tendinitis of adductor tendon of bilateral hips -156749000,(Myalgia/myositis NOS) or (intercostal myalgia) -15674961000119103,Tendinitis of bilateral hips -156750000,"Neuralgia, neuritis or radiculitis NOS" -156752008,Neuralgia/neuritis - multiple -15675201000119109,Tendinitis of metatarsophalangeal joint of second toe of left foot -15675281000119101,Tendinitis of metatarsophalangeal joint of second toe of right foot -156753003,Neuralgia/neuritis - shoulder -156754009,Neuralgia/neuritis - upper arm -15675401000119105,Tendinitis of bilateral feet -156755005,Neuralgia/neuritis - forearm -15675561000119107,Calcific tendinitis of bilateral achilles tendons -156756006,Neuralgia/neuritis - hand -156757002,Neuralgia/neuritis - pelvis/thigh -15675721000119105,Calcific tendinitis of bilateral elbows -156758007,Neuralgia/neuritis - lower leg -15675801000119108,Calcific tendinitis of bilateral knees -156759004,(Neuralgia/neuritis - ankle/foot) or (policemans' disease) -15675961000119102,Calcific tendinitis of bilateral wrists -156760009,(Neuralgia/neuritis - NOS) or (nerve root pain NEC) -15676041000119107,Tenosynovitis of bilateral wrists -156761008,Pain in limb &/or NOS -15676161000119105,Tendinitis of bilateral pes anserinus tendons -156762001,Pain in limb - multiple -15676241000119103,Tendinitis of bilateral knees -156763006,Pain in left arm -156764000,Pain in right arm -15676401000119104,Tendinitis of flexor tendon of left hand -15676441000119102,Tendinitis of flexor tendon of right hand -15676481000119107,Tendinitis of flexor tendon of bilateral hands -156765004,Pain in left leg -15676521000119107,Tendinitis of extensor tendon of right hand -15676561000119102,Tendinitis of extensor tendon of bilateral hands -156766003,Pain in right leg -15676601000119102,Tendinitis of extensor tendon of left hand -156767007,Pain in limb NOS -156779007,(Nonarticular rheumatism NOS) or (panniculitis) -15683241000119104,Infrapatellar bursitis of bilateral knees -15683321000119104,Bursitis of bilateral knees -15683361000119109,Bursitis of bilateral calcaneal tendon bursae -15683841000119100,Subacromial bursitis of bilateral shoulders -15683881000119105,Scapulothoracic bursitis of bilateral shoulders -15683921000119103,Ischiogluteal bursitis of bilateral hips -15686041000119102,Osteoarthritis of right temporomandibular joint -15686081000119107,Osteoarthritis of bilateral temporomandibular joints -15686121000119109,Osteoarthritis of left temporomandibular joint -15686521000119102,Transient synovitis of right knee -15686601000119107,Transient synovitis of left knee -15687041000119100,Synovitis of joint of bilateral knees -15687921000119105,Capsulitis of metatarsophalangeal joint of left foot -15687961000119100,Capsulitis of left tarsus -15688081000119106,Capsulitis of metatarsophalangeal joint of right foot -15688121000119108,Capsulitis of right tarsus -15688201000119108,Capsulitis of metatarsophalangeal joint of bilateral feet -15692321000119108,Arthritis of bilateral first metatarsophalangeal joints -15697681000119103,Tendinitis of bilateral ankles -15722441000119106,Osteoarthritis of left subtalar joint -15722521000119101,Osteoarthritis of right subtalar joint -15722561000119106,Osteoarthritis of first metatarsophalangeal joint of bilateral feet -15722961000119101,Osteoarthritis of bilateral sacroiliac joints -15724041000119109,Enthesopathy of bilateral ankles -15724121000119102,Enthesopathy of bilateral knees -15724161000119107,Enthesopathy of left knee region -15724201000119102,Enthesopathy of right knee region -15724281000119105,Enthesopathy of right foot -15724361000119105,Enthesopathy of left foot -15724441000119104,Enthesopathy of bilateral feet -15724961000119109,Enthesopathy of right elbow -15725041000119105,Enthesopathy of left elbow -15725521000119105,Disorder of bilateral sacroiliac joints -157257005,[Dislocations &/or sprains &/or strains] or subluxations -15726841000119108,Arthropathy of bilateral knee joints -15727761000119101,Adhesions of bilateral temporomandibular joints -157281003,Sprain: [shoulder] or [upper arm] -157282005,Arm sprain - upper -157283000,Sprain of elbow joint -157284006,Forearm sprain -15728481000119104,Arthropathy of joint of bilateral hands -157285007,Sprain of wrist joint -157286008,Sprain: [hand] or [finger] -157287004,Sprained finger &/or thumb -157288009,Hand sprain NOS -157289001,Hip sprain -157290005,Sprained upper leg (& [thigh]) -157291009,Sprain of knee joint -157292002,Sprain of lateral collateral ligament of knee joint -157293007,Sprain of medial collateral ligament of knee joint -157294001,Sprain of cruciate ligament of knee -15729441000119103,Arthropathy of joint of bilateral shoulder regions -157295000,Knee sprain NOS -157296004,Leg sprain -157297008,Sprain of ankle joint -157298003,Strain of tendo achilles -15729841000119100,Heberden node of distal interphalangeal joint of finger of bilateral hands -15729881000119105,Heberden node of the distal interphalangeal joints of the right hand -157299006,(Sprain - ankle NOS) or (twisted ankle) -15729921000119103,Heberden node of the distal interphalangeal joints of the left hand -157300003,Sprain of foot joint -157301004,Sprained toe -157302006,Foot sprain NOS -157303001,Back sprain -157304007,(Sprained neck) or (whiplash injury) -157305008,Thoracic back sprain -157306009,Lumbar sprain -157307000,Lumbosacral sprain -157308005,Sacral &/or coccyx sprain -157309002,Sprain of sacroiliac joint -157310007,Back sprain NOS -157311006,Other sprains -157312004,Sprain of temporomandibular joint -157313009,Rib sprain unspecified -157314003,Sternum sprain -157315002,Pelvic sprain (& [pubic symphisis]) -157316001,Strain of tendon of medial thigh muscle -157317005,Other sprains NOS -15739006,Juvenile osteochondrosis of hip AND/OR pelvis -15743521000119108,Chronic pain of right upper limb -15743561000119103,Chronic pain of left upper limb -15743681000119106,Pain of bilateral shoulder blades -15749341000119107,Pain in bilateral upper arms -15749801000119104,Chronic pain of bilateral feet -15803009,Bladder pain -158180005,"[D]Pain, generalised" -158217005,[D]Musculoskeletal pain -158297006,[D]Facial pain -158298001,[D]Pain in head NOS -158393008,[D]Chest pain -158394002,[D]Precordial pain -158395001,Breathing painful -158396000,[D]Anterior chest wall pain -158397009,[D]Pleuritic pain -158402008,Retrosternal pain [D] -158403003,[D]Musculoskeletal chest pain -158404009,[D]Chest pain NOS -158494001,[D]Vesical pain -158508009,[D]Suprapubic pain -158511005,[D]Loin pain -15883961000119103,Tenderness of bilateral temporomandibular joints -15941001,Brachialgia -15968001,Sprain of thigh -15972981000119101,Arthritis of bilateral sacroiliac joint -15978711000119106,Disorder of left cervical nerve root -15978831000119108,Disorder of right cervical nerve root -15980431000119104,Articular disc disorder of left temporomandibular joint -15980471000119101,Articular disc disorder of bilateral temporomandibular joints -15980511000119105,Articular disc disorder of right temporomandibular joint -15980671000119103,Arthritis of right temporomandibular joint -15980711000119104,Arthritis of left temporomandibular joint -15980751000119103,Arthritis of bilateral temporomandibular joints -16001004,Otalgia -16002671000119106,Chronic pain of bilateral upper limbs -16002871000119105,Chronic pain of right foot -16002911000119108,Chronic pain of left foot -16003591000119104,Tendinitis of right rotator cuff -16003631000119104,Tendinitis of bilateral rotator cuffs -16003671000119101,Tendinitis of left rotator cuff -16003791000119106,Rotator cuff arthropathy of right shoulder -16003831000119100,Rotator cuff arthropathy of left shoulder -16003871000119102,Rotator cuff arthropathy of bilateral shoulders -16004271000119100,Tenosynovitis of right radial styloid -16004311000119100,Tenosynovitis of bilateral radial styloids -16004351000119104,Tenosynovitis of left radial styloid -16007431000119108,Tenosynovitis of bilateral hands -16010911000119109,Arthropathy of right foot -16010991000119100,Arthropathy of left foot -16011071000119109,Arthropathy of bilateral feet -16015391000119105,Osteoarthritis of midtarsal joints of bilateral feet -16015791000119109,Arthritis of left subtalar joint -16015991000119106,Arthritis of right subtalar joint -16016111000119109,Arthritis of bilateral subtalar joint -16021151000119108,Bursitis of right foot -16021191000119103,Iliopsoas bursitis of bilateral hips -16021271000119105,Bursitis of bilateral feet -16021311000119105,Retrocalcaneal bursitis of bilateral feet -16021391000119101,Bursitis of left foot -16021431000119106,Bursitis of bilateral ankles -16024431000119108,Acute polyarticular juvenile idiopathic arthritis -16044751000119106,Polyarticular juvenile idiopathic arthritis -16046003,Muscle rigidity -16052151000119104,Tendinitis of bilateral quadriceps tendon -16052191000119109,Tendinitis of right quadriceps tendon -16052231000119100,Tendinitis of left quadriceps tendon -16052271000119102,Tendinitis of bilateral elbows -16057351000119103,Neuralgia of left glossopharyngeal nerve -16057391000119108,Neuralgia of right glossopharyngeal nerve -161817008,Pain on intercourse -161882006,Stiff neck -161889002,Backache symptom -161891005,Backache -161892003,Backache with radiation -161893008,Back pain worse on sneezing -161894002,Complaining of low back pain -161895001,Back pain without radiation NOS -161896000,Complaining of upper back ache -161897009,Backache symptom NOS -161916000,Growing pains (& symptom) -161971004,Chest pain not present -161973001,Anterior chest wall pain -161974007,Parasternal pain -161976009,Rib pain -161977000,Costal margin chest pain -161978005,Chest pain NOS -162011005,Sore mouth -162043005,Hunger pain -162045003,Pain: [GIT site] or [abdominal] or [flank] or [subcostal] or [iliac fossa] -162047006,Left subcostal pain -162048001,Right subcostal pain -162049009,Left flank pain -162050009,Right flank pain -162053006,Suprapubic pain -16206781000119109,Meralgia paresthetica of bilateral lower limbs -162099008,Defaecation painful -162138001,Genitourinary pain -162141005,(C/O - pain: [loin] or [lumbar] or [renal]) or (lumbar ache - renal) -162143008,Pain in female genitalia -162146000,Ovarian pain -162147009,Complaining of pelvic pain -162148004,Complaining of perineal pain -162149007,Pain in penis -162150007,Pain in scrotum -162209005,Headache (& [C/O]) -162286001,Pain in eye -162302003,(Frontal headache) or (pain in sinuses) -162356005,Earache symptom -162358006,Unilateral earache -162359003,Bilateral earache -162361007,Earache symptom NOS -162397003,Pain in throat -162412006,(Pain) or (C/O: [ache] or [pain]) -162413001,C/O - pain in toes -162414007,C/O - pain in hallux -162425003,Chest wall tenderness -162502002,Finding of pain character -162503007,Cutting pain -162504001,Griping pain -162505000,Tightening pain -162506004,Pricking pain -162507008,Rest pain -162509006,Pain character NOS -16269008,Neuralgia -162717001,On examination - in pain (context-dependent category) -162777005,On examination - pain influenced posture -16282000,Sprain of ulnohumeral joint -163212000,O/E: pain on palpation (& [abdominal] or [epigastric] or [iliac] or [lumbar] or [umbilical]) -163213005,On examination - no abdominal pain on palpation -163217006,On examination - abdominal pain - right lumbar -163219009,On examination - abdominal pain - left lumbar -163220003,On examination - abdominal pain - right iliac -163222006,On examination - abdominal pain - left iliac -163223001,On examination - abdominal pain on palpation NOS -163358002,On examination - renal angle tenderness -163728006,On examination - pain sensation -163732000,On examination - pain sensation NOS -16399001,Difficulty coping with pain -164219003,On examination - painful ear -164221008,On examination - ear auricle painful -164222001,On examination - pain over mastoid -164223006,On examination - painful ear NOS -164246008,On examination - maxillary sinus tenderness -164247004,On examination - frontal sinus tenderness -16426601000119103,Arthritis of facet joint of thoracic spine -16426641000119101,Arthritis of facet joint of lumbar spine -16426681000119106,Arthritis of facet joint of cervical spine -16438171000119103,Greater trochanteric pain syndrome of right lower limb -16438211000119101,Greater trochanteric pain syndrome of bilateral lower limbs -16438251000119100,Greater trochanteric pain syndrome of left lower limb -16442141000119109,Periorbital pain of left eye -16442181000119104,Periorbital pain of right eye -16442221000119107,Periorbital pain of bilateral eyes -164509005,O/E: [shoulder joint abnormal] or [painful arc] -164539000,On examination - joint movement painful -164627001,O/E - tenderness &/or pain -164628006,O/E - snuff box tenderness -164688009,On examination - sign painful -164690005,On examination - sign slightly painful -164691009,On examination - sign moderately painful -164692002,On examination - sign very painful -164693007,On examination - sign painful NOS -16546631000119102,Strain of right patellar tendon -16546791000119109,Strain of left patellar tendon -16583361000119101,Osteoarthritis of joint right ankle -16638321000119100,Neuralgia of bilateral pudendal nerves -16638401000119101,Neuralgia of nerve of bilateral lower limbs -16690551000119106,Female deep pain on intercourse -1679003,Arthritis associated with another disorder -16839401000119104,Low back pain co-occurrent with neuralgia of left sciatic nerve -16864831000119104,Lumbar radiculitis -16899701000119102,Pain of joint of bilateral hands -16986008,Back pain -17059001,Prepatellar bursitis -170848008,Rheumatology disorder - joints affected -17111003,Postinfectious neuralgia -1715006,Primary localized osteoarthrosis of upper arm -17184000,Sprain of coracohumeral ligament -175004,Supraorbital neuralgia -17654007,Tibialis anticus tendinitis -1771000119109,Arthritis of wrist -1781000119107,Sprain of ankle grade II -17883008,Sprain of hip -1791000119105,Sprain of ankle grade I -18251006,Calcium deposits in tendon AND/OR bursa -186231000000109,Muscle pain -186261000000104,Pain in elbow -187331000119105,Arthropathy of pelvis due to neurological disorder -18876004,Pain in finger -18888002,Strain of supraspinatus muscle AND/OR tendon -189671000000104,Muscle pain -189701000000100,Pain in elbow -190799001,(Liposynovitis prepatellaris) or (Hoffa's Disease) -192027005,Psychogenic pain unspecified -192029008,Psychogenic backache -192030003,Psychalgia NOS -192435004,[X] Somatoform pain disorder (& [persistent] or [psychalgia] or [psychogenic backache] or [psychogenic headache]) -193031009,Cluster headache syndrome -193089003,Other specified trigeminal neuralgia -193090007,Trigeminal neuralgia NOS -193115004,Phantom limb syndrome with pain -193116003,Phantom limb syndrome without pain -193149007,Interdigital neuralgia -193150007,Interdigital neuralgia -193947008,Ciliary neuralgia -194185002,Eye pain NOS -194406008,(Otalgia) or (ear pain) -194407004,Unspecified otalgia -194408009,Otalgia NOS -195830008,Nasal: [obstruction] or [congestion (& sinus)] or [infection] or [sore nostril] or [cavity and sinus disease NOS] -196434003,Temporomandibular joint disorder NOS -196554004,(Sore lip) or (angular stomatitis &/or cheilitis) -197834003,Chronic interstitial cystitis -198404001,Dysmenorrhoea (& spasmodic) -198411002,Other pelvic pain - female -201012005,(Pruritus ani) or (perianal itch) or (sore bottom) -201734004,Neuropathic arthropathy (& Charcot's) -201735003,Post-immunisation arthritis -201739009,Other general diseases with associated arthropathy -201740006,"Arthritis associated with other disease, shoulder" -201741005,"Arthritis associated with other disease, sternoclavicular joint" -201742003,"Arthritis associated with other disease, acromioclavicular joint" -201743008,"Arthritis associated with other disease, elbow" -201744002,"Arthritis associated with other disease, distal radioulnar joint" -201745001,"Arthritis associated with other disease, wrist" -201746000,"Arthritis associated with other disease, metacarpophalangeal joint" -201747009,"Arthritis associated with other disease, proximal interphalangeal joint of finger" -201748004,"Arthritis associated with other disease, distal interphalangeal joint of finger" -201750007,"Arthritis associated with other disease, hip" -201751006,"Arthritis associated with other disease, sacroiliac joint" -201752004,"Arthritis associated with other disease, knee" -201753009,"Arthritis associated with other disease, tibiofibular joint" -201754003,"Arthritis associated with other disease, ankle" -201755002,"Arthritis associated with other disease, subtalar joint" -201756001,"Arthritis associated with other disease, talonavicular joint" -201757005,"Arthritis associated with other disease, other tarsal joint" -201758000,"Arthritis associated with other disease, 1st metatarsophalangeal joint" -201759008,"Arthritis associated with other disease, lesser metatarsophalangeal joint" -201760003,"Arthritis associated with other disease, interphalangeal joint of toe" -201763001,Inflammatory polyarthropathy: (& [rheumatoid arthritis] or [other]) -201801009,Other juvenile arthritis -201803007,Polyarticular onset juvenile chronic arthritis -201809006,Pauciarticular onset juvenile chronic arthritis -201812009,Other specified inflammatory polyarthropathy -201816007,Other specified inflammatory polyarthropathy NOS -201817003,Inflammatory polyarthropathy NOS -201818008,Osteoarthritis (& [allied disorders]) -201819000,Generalized osteoarthritis -201820006,Generalized osteoarthritis of unspecified site -201821005,(Heberdens' nodes) or (Bouchards' nodes) or (generalised osteoarthritis of the hand) -201822003,Generalized osteoarthritis of multiple sites -201823008,Bouchard's nodes with arthropathy -201824002,Idiopathic osteoarthritis -201827009,Heberden's nodes with arthropathy -201828004,Generalized osteoarthritis NOS -201829007,"Localized, primary osteoarthritis" -201830002,"Localized, primary osteoarthritis of unspecified site" -201831003,"Localized, primary osteoarthritis of the shoulder region" -201832005,"Localized, primary osteoarthritis of the upper arm" -201833000,"Localized, primary osteoarthritis of the forearm" -201834006,"Localized, primary osteoarthritis of the hand" -201835007,"Localized, primary osteoarthritis of the pelvic region and thigh" -201836008,"Localized, primary osteoarthritis of the lower leg" -201837004,"Localized, primary osteoarthritis of the ankle and/or foot" -201838009,"Localized, primary osteoarthritis of other specified site" -201839001,"Primary coxarthrosis, bilateral" -201841000,"Primary gonarthrosis, bilateral" -201842007,"Primary arthrosis of first carpometacarpal joints, bilateral" -201843002,"Localised, primary osteoarthritis of the wrist" -201844008,"Localised, primary osteoarthritis of toe" -201845009,"Localised, primary osteoarthritis of elbow" -201846005,"Localized, primary osteoarthritis NOS" -201862004,"Localized osteoarthritis, unspecified" -201863009,"Localized osteoarthritis, unspecified, of unspecified site" -201864003,"Localized osteoarthritis, unspecified, of the shoulder region" -201865002,"Localized osteoarthritis, unspecified, of the upper arm" -201866001,"Localized osteoarthritis, unspecified, of the forearm" -201867005,"Localized osteoarthritis, unspecified, of the hand" -201868000,"(Otto's pelvis) or (hip osteoarthitis NOS) or (localised osteoarthritis, unspecified, of the pelvic region and thigh)" -201869008,"Osteoarthritis: [localised of the lower leg, unspecified] or [patellofemoral]" -201870009,"Localized osteoarthritis, unspecified, of the ankle and foot" -201871008,"Localized osteoarthritis, unspecified, of other specified site" -201872001,"Arthrosis of first carpometacarpal joint, unspecified" -201873006,"Localized osteoarthritis, unspecified, NOS" -201874000,"Oligoarticular osteoarthritis, unspecified" -201875004,"Oligoarticular osteoarthritis, unspecified, of unspecified sites" -201876003,"Oligoarticular osteoarthritis, unspecified, of the shoulder region" -201877007,"Oligoarticular osteoarthritis, unspecified, of upper arm" -201878002,"Oligoarticular osteoarthritis, unspecified, of forearm" -201879005,"Oligoarticular osteoarthritis, unspecified, of hand" -201880008,"Oligoarticular osteoarthritis, unspecified, of the pelvic region and thigh" -201881007,"Oligoarticular osteoarthritis, unspecified, of lower leg" -201882000,"Oligoarticular osteoarthritis, unspecified, of ankle and foot" -201883005,"Oligoarticular osteoarthritis, unspecified, of other specified sites" -201884004,"Oligoarticular osteoarthritis, unspecified, of multiple sites" -201885003,"Osteoarthritis of more than one site, unspecified, NOS" -201886002,[Joint degeneration] or [osteoarthritis NOS] -201887006,"Osteoarthritis NOS, of unspecified site" -201888001,"Osteoarthritis NOS, of shoulder region" -201889009,Osteoarthritis NOS: [of the upper arm] or [elbow] -201890000,Osteoarthritis NOS: [of the forearm] or [wrist] -201891001,Osteoarthritis NOS: [hand] or [finger] or [thumb] -201892008,Osteoarthritis NOS: [pelvic region and/or thigh] or [hip] -201893003,Osteoarthritis NOS: [lower leg] or [knee] -201894009,Osteoarthritis NOS: [ankle &/or foot] or [toe] -201895005,"Osteoarthritis NOS, other specified site" -201896006,"Osteoarthritis NOS, of shoulder" -201897002,"Osteoarthritis NOS, of sternoclavicular joint" -201898007,"Osteoarthritis NOS, of acromioclavicular joint" -201899004,"Osteoarthritis NOS, of elbow" -201900009,"Osteoarthritis NOS, of distal radioulnar joint" -201901008,"Osteoarthritis NOS, of wrist" -201902001,"Osteoarthritis NOS, of metacarpophalangeal joint" -201903006,"Osteoarthritis NOS, of proximal interphalangeal joint of finger" -201904000,"Osteoarthritis NOS, of distal interphalangeal joint of finger" -201905004,"Osteoarthritis NOS, of hip" -201906003,"Osteoarthritis NOS, of sacroiliac joint" -201908002,"Osteoarthritis NOS, of knee" -201909005,"Osteoarthritis NOS, of tibiofibular joint" -201910000,"Osteoarthritis NOS, of ankle" -201911001,"Osteoarthritis NOS, of subtalar joint" -201912008,"Osteoarthritis NOS, of talonavicular joint" -201913003,"Osteoarthritis NOS, of other tarsal joint" -201914009,"Osteoarthritis NOS, of 1st metatarsophalangeal joint" -201915005,"Osteoarthritis NOS, of lesser metatarsophalangeal joint" -201916006,"Osteoarthritis NOS, of interphalangeal joint of toe" -201917002,Osteoarthritis NOS -201975003,Climacteric arthritis -201976002,Climacteric arthritis of unspecified site -201977006,Climacteric arthritis of the shoulder region -201978001,Climacteric arthritis of the upper arm -201979009,Climacteric arthritis of the forearm -201980007,Climacteric arthritis of the hand -201981006,Climacteric arthritis of the pelvic region and thigh -201982004,Climacteric arthritis of the lower leg -201983009,Climacteric arthritis of the ankle and/or foot -201984003,Climacteric arthritis of other specified site -201985002,Climacteric arthritis of multiple sites -201986001,Climacteric arthritis NOS -201987005,Transient arthropathy of unspecified site -201988000,Transient arthropathy of shoulder region -201989008,Transient arthropathy of the upper arm -201990004,Transient arthropathy of the forearm -201991000,Transient arthropathy of hand -201992007,Transient arthropathy of the pelvic region and thigh -201993002,Transient arthropathy of the lower leg -201994008,Transient arthropathy of the ankle and/or foot -201995009,Transient arthropathy of other specified site -201996005,Transient arthropathy of multiple sites -201997001,Transient arthropathy of shoulder -201998006,Transient arthropathy of sternoclavicular joint -201999003,Transient arthropathy of acromioclavicular joint -202001008,Transient arthropathy of elbow joint -202002001,Transient arthropathy of distal radioulnar joint -202003006,Transient arthropathy of wrist -202004000,Transient arthropathy of metacarpophalangeal joint -202005004,Transient arthropathy of proximal interphalangeal joint of finger -202006003,Transient arthropathy of distal interphalangeal joint of finger -202007007,(Transient arthropathy of the hip) or (irritable hip) -202009005,Transient arthropathy of sacroiliac joint -202010000,Transient arthropathy of knee -202011001,Transient arthropathy of tibiofibular joint -202012008,Transient arthropathy of ankle joint -202013003,Transient arthropathy of subtalar joint -202014009,Transient arthropathy of talonavicular joint -202015005,Transient arthropathy of other tarsal joint -202016006,Transient arthropathy of first metatarsophalangeal joint -202017002,Transient arthropathy of lesser metatarsophalangeal joint -202018007,Transient arthropathy of interphalangeal joint of toe -202019004,Transient arthropathy NOS -202020005,(Polyarthropathy: [unspecified] or [NEC]) or (polyarthritis) -202021009,Unspecified polyarthropathy of unspecified site -202022002,Unspecified polyarthropathy of the shoulder region -202023007,Unspecified polyarthropathy of the upper arm -202024001,Unspecified polyarthropathy of the forearm -202025000,Unspecified polyarthropathy of the hand -202026004,Unspecified polyarthropathy of the pelvic region and thigh -202027008,Unspecified polyarthropathy of the lower leg -202028003,Unspecified polyarthropathy of the ankle and foot -202029006,Unspecified polyarthropathy of other specified site -202030001,Unspecified polyarthropathy of multiple sites -202031002,Generalized arthritis -202032009,(Unspecified polyarthropathy or polyarthritis NOS) or (polyarthritis) -202033004,Unspecified monoarthritis (& [coxitis]) -202034005,Unspecified monoarthritis of unspecified site -202035006,Unspecified monoarthritis of the shoulder region -202036007,Unspecified monoarthritis of the upper arm -202037003,Unspecified monoarthritis of the forearm -202038008,Unspecified monoarthritis of the hand -202039000,Unspecified monoarthritis of the pelvic region and thigh -202040003,Unspecified monoarthritis of the lower leg -202041004,Unspecified monoarthritis of the ankle and foot -202042006,Unspecified monoarthritis of other specified site -202043001,Unspecified monoarthritis NOS -202047000,Other specified arthropathy -202048005,Other specified arthropathy of unspecified site -202049002,Other specified arthropathy of the shoulder region -202050002,Other specified arthropathy of the upper arm -202051003,Other specified arthropathy of the forearm -202052005,Other specified arthropathy of the hand -202053000,Other specified arthropathy of the pelvic region and thigh -202054006,Other specified arthropathy of the lower leg -202055007,Other specified arthropathy of the ankle and foot -202056008,Other specified arthropathy of other specified site -202057004,Other specified arthropathy of multiple sites -202058009,Other specified arthropathy NOS -202059001,(Arthropathy NOS) or (arthritis) -202061005,"Arthropathy NOS, of unspecified site" -202062003,"Arthropathy NOS, of the shoulder region" -202063008,"(Arthropathy NOS, of the upper arm) or (elbow arthritis NOS)" -202064002,"(Arthropathy NOS, of the forearm) or (wrist arthritis NOS)" -202065001,"Arthropathy NOS, of the hand" -202066000,(Arthropathy NOS of the pelvic region and thigh) or (hip arthritis NOS) -202067009,(Arthropathy NOS of the lower leg) or (knee arthritis NOS) -202068004,(Arthropathy NOS of the ankle and foot) or (arthritis NOS: [ankle] or [foot]) -202069007,"Arthropathy NOS, of other specified site" -202070008,"Arthropathy NOS, of multiple sites" -202071007,Acute arthritis -202072000,Chronic arthritis -202073005,Arthropathy NOS -202126001,Adhesions of knee joint -202143003,Articular cartilage disorder of other joints of the shoulder girdle -202455001,(Palindromic rheumatism) or (intermittent joint effusion) -202456000,Palindromic rheumatism of unspecified site -202457009,Palindromic rheumatism of shoulder region -202458004,Palindromic rheumatism of the upper arm -202459007,Palindromic rheumatism of the forearm -202460002,Palindromic rheumatism of hand -202461003,Palindromic rheumatism of pelvic region and thigh -202462005,Palindromic rheumatism of the lower leg -202463000,Palindromic rheumatism of ankle and/or foot -202464006,Palindromic rheumatism of other specified site -202465007,Palindromic rheumatism of multiple sites -202466008,Palindromic rheumatism NOS -202467004,Joint: [pain - arthralgia] or [ache] -202468009,Arthralgia of unspecified site -202469001,Arthralgia of the shoulder region (& [shoulder joint]) -202470000,Arthralgia of the upper arm (& [elbow]) -202471001,Arthralgia of the forearm (& [wrist]) -202472008,Hand joint pain -202473003,(Arthralgia of the pelvic region and thigh) or (coxalgia) or (hip joint pain) or (irritable hip) -202474009,Arthralgia of the lower leg (& [knee]) -202475005,Arthralgia of the ankle &/or foot -202476006,Arthralgia of other specified site -202477002,Shoulder joint pain -202478007,Sternoclavicular joint pain -202479004,Acromioclavicular joint pain -202480001,Elbow joint pain -202481002,Distal radioulnar joint pain -202482009,Wrist joint pain -202483004,Metacarpophalangeal joint pain -202484005,Proximal interphalangeal joint of finger pain -202485006,Distal interphalangeal joint of finger pain -202486007,Hip pain -202487003,Sacroiliac joint pain -202488008,Knee joint pain -202489000,Tibiofibular joint pain -202490009,Ankle joint pain -202491008,Subtalar joint pain -202493006,Talonavicular joint pain -202494000,Arthralgia of other tarsal joint -202495004,First metatarsophalangeal joint pain -202496003,Lesser metatarsophalangeal joint pain -202497007,Interphalangeal joint of toe pain -202498002,Anterior knee pain -202499005,Arthralgia NOS -202533006,(Other joint symptoms) or (joint crepitus) or (musculoskeletal pain in joints) -202576008,Synovial osteochondromatosis of sternoclavicular joint -202577004,Synovial osteochondromatosis of acromioclavicular joint -202579001,Synovial osteochondromatosis of distal radioulnar joint -202581004,Synovial osteochondromatosis of metacarpophalangeal joint -202582006,Synovial osteochondromatosis of proximal interphalangeal joint of finger -202583001,Synovial osteochondromatosis of distal interphalangeal joint of finger -202585008,Synovial osteochondromatosis of sacroiliac joint -202587000,Synovial osteochondromatosis of tibiofibular joint -202589002,Synovial osteochondromatosis of subtalar joint -202590006,Synovial osteochondromatosis of talonavicular joint -202591005,Synovial osteochondromatosis of other tarsal joint -202592003,Synovial osteochondromatosis of first metatarsophalangeal joint -202593008,Synovial osteochondromatosis of lesser metatarsophalangeal joint -202595001,Synovial osteochondromatosis of interphalangeal joint of toe -202655008,(Spondylosis and allied disorders) or (arthritis of spine) or -202656009,Cervical spondylosis (& [without myelopathy]) or (osteoarthritis cervical spine) -202683005,Cervical spondylosis with radiculopathy -202684004,Single-level cervical spondylosis with radiculopathy -202685003,Two-level cervical spondylosis with radiculopathy -202686002,Multiple-level cervical spondylosis with radiculopathy -202688001,Thoracic spondylosis with radiculopathy -202689009,Single-level thoracic spondylosis with radiculopathy -202690000,Two-level thoracic spondylosis with radiculopathy -202692008,Multiple-level thoracic spondylosis with radiculopathy -202693003,Lumbosacral spondylosis with radiculopathy -202694009,Single-level lumbosacral spondylosis with radiculopathy -202695005,Two-level lumbosacral spondylosis with radiculopathy -202696006,Multiple-level lumbosacral spondylosis with radiculopathy -202701004,(Spondylosis NOS) or (osteoarthritis spine) -202705008,(Intervertebral disc: [disorders] or [displacement] or [slipped]) or (acute back pain) -202732003,Disc prolapse with radiculopathy -202733008,Cervical disc prolapse with radiculopathy -202734002,Thoracic disc prolapse with radiculopathy -202735001,Lumbar disc prolapse with radiculopathy -202737009,Prolapsed lumbar intervertebral disc with sciatica -202757008,Cervical disc disorder with radiculopathy -202764005,Pain in neck (& [cervical spine]) -202765006,(Neuritis: [brachial - cervical] or [ulnar]) or (radiculitis: [brachial] or [cervical]) or (cervical root pain) -202769000,Neck: [wry] or [torticollis NOS] or [stiff NOS] -202775009,Crick in neck -202792000,Thoracic pain: [spine] or [acute back] -202793005,(Back pain: [lumbar spine] or [low] or [acute lumbar]) or (lumbalgia) or (lumbago) -202794004,Lumbago with sciatica -202795003,Acute back pain &/or sciatica -202797006,"Thoracic: [neuritis, unspecified] or [nerve root pain]" -202800008,(Backache unspecified) or (back pain unspecified & [acute]) -202803005,Lumbosacral: [instability] or [strain] -202805003,Sacroiliac disorder -202806002,(Sacroiliac strain) or (disorders of the sacrum NOS) -202833003,"Rheumatism, excluding the back" -202834009,Polymyalgia (& [rheumatica]) -202836006,Peripheral enthesopathies and allied syndromes -202837002,Shoulder: (frozen) or (adhesive capsulitis) or (bursitis) -202839004,(Rotator cuff syndrome unspecified) or (supraspinatus syndrome) -202840002,Bicipital tenosynovitis -202841003,Supraspinatus tendinitis -202844006,Bursitis of shoulder -202845007,(Rotator cuff syndrome NOS) or (painful arc syndrome) or (subacromial bursitis) -202852009,Shoulder tendinitis -202854005,Elbow enthesopathy unspecified -202855006,Lateral epicondylitis -202856007,Biceps tendinitis -202857003,Triceps tendinitis -202858008,Elbow enthesopathy NOS -202859000,Enthesopathy of the wrist and/or carpus -202860005,Wrist or carpus enthesopathy NOS -202861009,Enthesopathy of the hip region -202862002,"Hip enthesopathy, unspecified" -202866004,Hip enthesopathy NOS -202867008,Bursitis: [knee NOS] or [semi-membranosus] or [popliteal] -202868003,Pes anserinus tendinitis and bursitis -202869006,(Tibial collateral ligament bursitis) or (Pellegrini-Stieda syndrome) -202870007,Fibular collateral ligament bursitis -202871006,Subpatellar bursitis -202872004,Biceps femoris tendinitis -202873009,Semimembranosus tendinitis -202874003,(Suprapatellar bursitis) or (knee enthesopathy NOS) -202875002,Enthesopathy of the ankle &/or tarsus -202876001,Enthesopathy of the ankle unspecified -202877005,Enthesopathy of the tarsus unspecified -202878000,Metatarsalgia NOS -202879008,Achilles bursitis -202880006,Tibialis anterior tendinitis -202881005,Tibialis posterior tendinitis -202886000,Ankle or tarsus enthesopathy NOS -202887009,Other peripheral enthesopathies -202890003,Enthesopathy NOS -202891004,Capsulitis NOS -202892006,Periarthritis NOS -202893001,Tendinitis: [NOS] or [bicepital] or [adductor] or [supraspinatus] -202898005,Peripheral enthesopathy NOS -202900007,Synovitis and tenosynovitis -202901006,Synovitis or tenosynovitis NOS -202905002,(Radial styloid tenosynovitis) or (De Quervain's disease) or (trigger thumb [& acquired]) -202906001,"(Tensynovitis: [fingers] or [other, of hand or wrist]) or (tendonitis of thumb)" -202907005,Tenosynovitis of ankle -202908000,Tenosynovitis of foot -202911004,Flexor tenosynovitis of wrist -202912006,Flexor tenosynovitis of finger -202913001,Flexor tenosynovitis of thumb -202914007,Extensor tenosynovitis of wrist -202915008,Extensor tenosynovitis of finger -202916009,Extensor tenosynovitis of thumb -202917000,Achilles tenosynovitis -202918005,Tibialis anterior tenosynovitis -202919002,Tibialis posterior tenosynovitis -202920008,Extensor hallucis longus tenosynovitis -202921007,Extensor digitorum longus tenosynovitis -202922000,Peroneus longus tenosynovitis -202923005,Peroneus brevis tenosynovitis -202924004,Transient synovitis -202925003,Chronic crepitant synovitis of hand and wrist -202926002,Synovitis of hip -202927006,(Synovitis: [knee] or [elbow] or [shoulder]) or (other synovitis and tenosynovitis) -202930004,Olecranon bursitis -202931000,Prepatellar bursitis -202935009,Bursitis: [NOS] or [postcalcaneal] -203082005,Fibromyalgia -203090005,Calcific tendinitis -203094001,Muscle strain -203099006,Rheumatism and fibrositis unspecified -203100003,Rheumatism unspecified -203102006,Muscular rheumatism -203103001,Rheumatic pain -203106009,Hand rheumatism -203107000,Rheumatism or fibrositis NOS -203108005,Myalgia and myositis unspecified -203109002,(Myalgia: [unspecified] or [intercostal myalgia]) or (muscle pain) -203113009,Myalgia or myositis NOS -203114003,"Neuralgia, neuritis and radiculitis unspecified" -203115002,Neuralgia unspecified -203117005,Radiculitis unspecified -203118000,"(Neuralgia, neuritis or radiculitis NOS) or (policeman's disease)" -203124006,Pain in limb (& [ankle] or [arm] or [foot] or [hand] or [heel] or [leg] or [shoulder] or [thigh] or [buttock]) -203125007,Hand pain (& [thumb] or [finger]) -203126008,Foot pain (& [toe]) -203127004,Pain in leg (& [aching leg syndrome]) -203128009,Pain in upper limb -203129001,Pain in calf -203130006,Pain in axilla -203131005,Tender heel pad -203132003,Shoulder pain -203138004,Fibromyalgia -203139007,(Soft tissue disorders NOS) or (polyalgia) -203142001,Other specified nonarticular rheumatism -203143006,Nonarticular rheumatism NOS -203367009,(Perthes' disease) or (Coxa plana) -203490000,Reflex sympathetic dystrophy -203507006,Bone pain -203508001,Bony pelvic pain -203509009,Clavicle pain -20361002,Alteration in comfort: pain -203722004,[X]Other streptococcal arthritis and polyarthritis -203735008,[X]Other juvenile arthritis -203736009,[X]Juvenile arthritis in other diseases classified elsewhere -203741001,[X]Other specified arthritis -203747002,[X]Arthrosis -203748007,[X]Other polyarthrosis -203749004,[X]Other primary coxarthrosis -203753002,[X] Primary gonarthrosis: [other] or [unilateral] -203757001,[X]Other primary arthrosis of first carpometacarpal joint -203761007,[X]Other specified arthrosis -203814001,[X]Other spondylosis with radiculopathy -203825005,[X]Lumbar and other intervertebral disc disorders with radiculopathy -203831008,[X]Other dorsalgia -203848000,[X]Other synovitis and tenosynovitis -203856002,[X]Other bursitis of elbow -203857006,[X]Other bursitis of knee -203858001,[X]Other bursitis of hip -203862007,"[X]Other bursitis, not elsewhere classified" -203868006,"[X]Other enthesopathies of lower limb, excluding foot" -203869003,[X]Other enthesopathy of foot -203870002,"[X]Other enthesopathies, not elsewhere classified" -203875007,"[X]Enthesopathy of lower limb, unspecified" -203898004,[X]Other hypertrophic osteoarthropathy -204001000000104,Synovitis NOS -20502007,Pain in scrotum -206786009,"[D]Pain, generalized" -206795001,[D]Acute pain -206796000,[D]Chronic intractable pain -20680006,Sprain AND/OR strain of sacroiliac region -206842008,[D]Growing pains - limbs -206843003,[D]Musculoskeletal pain -206947001,[D]Facial pain -206948006,([D]Pain: (in head NOS) or (jaw)) -207078009,[D]Chest pain -207079001,[D](Chest pain: (unspecified) or (retrosternal)) -207080003,[D]Precordial pain -207081004,[D]Anterior chest wall pain -207082006,[D]Painful respiration NOS -207083001,[D]Pleuritic pain -207088005,[D]Parasternal chest pain -207089002,[D]Musculoskeletal chest pain -207090006,[D]Non-cardiac chest pain -207091005,[D]Retrosternal chest pain -207093008,[D]Chest pain NOS -207124007,"[D]Flatulence, eructation and gas pain" -207131006,"[D]Flatulence, eructation and gas pain NOS" -207148003,[D] Defecation painful -207149006,[D]Pain in esophagus -207200008,[D]Vesical pain -207214008,[D]Suprapubic pain -207217001,[D]Groin pain -207218006,[D]Loin pain -207222001,[D]Pelvic and perineal pain -207224000,[D] Right upper quadrant pain -207225004,[D] Left upper quadrant pain -207226003,[D]Left lower quadrant pain -207227007,[D]Right lower quadrant pain -207583009,[X]Other chest pain -207621000,[X]Other chronic pain -20793008,Scapulalgia -208941000000108,Synovitis NOS -208951000000106,Synovitis of knee -208961000000109,Synovitis of elbow -208971000000102,Shoulder synovitis -209409002,Sprains and strains of joints and adjacent muscles -209410007,Sprain of shoulder and upper arm -209411006,Sprain of ligament of acromioclavicular joint -209412004,"Sprain, coracoclavicular ligament" -209413009,Coracohumeral sprain -209414003,Strain of infraspinatus tendon -209415002,Strain of subscapularis tendon -209416001,Strain of supraspinatus tendon -209417005,"Sprain, shoulder joint, anterior" -209418000,"Sprain, shoulder joint, posterior" -209419008,"Sprain, biceps tendon" -209420002,Strain of long head of biceps -209421003,"Sprain, triceps tendon" -209422005,[X]Sprain and strain of other and unspecified parts of shoulder girdle -209423000,Shoulder strain (& other) -209424006,(Other upper arm sprain) or (traumatic rupture of biceps tendon) -209425007,Shoulder sprain NOS -209426008,Upper arm sprain NOS -209427004,Sprain of elbow &/or forearm -209428009,"Sprain, elbow joint, lateral collateral ligament" -209429001,"Sprain, elbow joint, medial collateral ligament" -209430006,Radiohumeral sprain -209431005,Ulnohumeral sprain -209432003,Other elbow sprain -209433008,Other forearm sprain -209434002,Elbow sprain NOS -209435001,Forearm sprain NOS -209436000,Sprain of wrist and/or hand -209437009,Sprain of ligament of wrist -209438004,Wrist sprain unspecified -209439007,Carpal joint sprain -209440009,Sprain proximal radiocarpal ligament nonspecific -209441008,Distal radioulnar joint sprain -209442001,Sprain of collateral carpal radial ligament -209443006,Sprain volar radiocarpal ligament nonspecific -209444000,Sprain volar radiocarpal ligament superficial -209445004,Sprain of radioscaphocapitate ligament -209446003,Sprain of radiolunate ligament -209447007,Sprain of radioscapholunate ligament -209448002,Sprain dorsal radiocarpal ligament -209449005,Sprain ulnar carpal complex nonspecific -209450005,Sprain ulnar-carpal meniscus -209451009,Sprain triangular fibrocartilage -209452002,Sprain of ulnolunate ligament -209453007,Sprain of ulnar collateral ligament of wrist joint -209454001,Sprain short intrinsic ligament nonspecific -209455000,Sprain of scaphotrapezium ligament -209456004,Sprain of lunotriquetral ligament -209457008,Sprain of scapholunate ligament -209458003,Sprain volar intercarpal ligament or V ligament -209459006,Sprain dorsal intercarpal ligament -209460001,Wrist sprain NOS -209461002,(Hand sprain) or (tendon injury of hand) -209462009,Sprain: [hand unspecified] or [finger] or [thumb] -209463004,Carpometacarpal sprain -209464005,Metacarpophalangeal sprain -209465006,Interphalangeal sprain -209466007,Midcarpal joint sprain -209467003,Hand sprain NOS -209468008,Sprain of thumb joint -209469000,"Sprain thumb, carpometacarpal joint" -209470004,"Sprain thumb, metacarpophalangeal joint nonspecific" -209471000,"Sprain thumb, metacarpophalangeal joint, radial collateral ligament" -209472007,"Sprain thumb, metacarpophalangeal joint, ulnar collateral ligament" -209473002,"Sprain thumb, interphalangeal joint, nonspecific" -209474008,"Sprain thumb, interphalangeal joint, radial collateral ligament" -209476005,"Sprain thumb, interphalangeal joint, ulnar collateral ligament" -209477001,Sprain of finger joint -209478006,"Sprain finger, carpometacarpal joint" -209479003,"Sprain finger, metacarpophalangeal joint, nonspecific" -209480000,"Sprain finger, metacarpophalangeal joint, radial collateral ligament" -209481001,"Sprain finger, metacarpophalangeal joint, ulnar collateral ligament" -209482008,"Sprain finger, proximal interphalangeal joint, nonspecific" -209483003,"Sprain finger, proximal interphalangeal joint, radial collateral ligament" -209484009,"Sprain finger, proximal interphalangeal joint, ulnar collateral ligament" -209485005,"Sprain finger, distal interphalangeal joint, nonspecific" -209486006,"Sprain finger, distal interphalangeal joint, radial collateral ligament" -209487002,"Sprain finger, distal interphalangeal joint, ulnar collateral ligament" -209493005,Sprain tendon wrist or hand -209494004,Sprain wrist extensors -209495003,Sprain wrist flexors -209496002,Sprain tendon of thumb -209497006,"Sprain, flexor pollicis longus tendon" -209498001,"Sprain, extensor pollicis longus tendon" -209499009,Sprain tendon of finger -209500000,"Sprain, flexor digitorum superficialis tendon" -209501001,"Sprain, flexor digitorum profundus tendon" -209502008,"Sprain, extensor digitorum tendon" -209503003,Wrist and hand sprain NOS -209504009,Sprain: [hip and/or thigh] or [groin] or [hamstring] -209505005,Iliofemoral sprain -209506006,Ischiocapsular sprain -209507002,Strain of quadriceps tendon -209508007,Strain of patellar tendon -209509004,Strain of hamstring tendon -209510009,Other hip sprain -209511008,Other thigh sprain -209512001,Hip sprain NOS -209513006,Thigh sprain NOS -209514000,Sprain: [knee] &/or [leg] -209515004,"Sprain or partial tear, knee, lateral collateral ligament" -209518002,Sprain of medial collateral ligament of knee joint -209522007,Sprain of superior tibiofibular ligament -209523002,"Sprain, plantaris tendon" -209524008,Other specified knee sprain -209525009,Other specified leg sprain -209526005,Gastrocnemius: [sprain] or [torn] -209527001,Knee sprain NOS -209528006,Leg sprain NOS -209529003,Sprain of ankle and/or foot -209530008,"Ankle sprain, unspecified" -209531007,"Sprain, ankle joint, medial" -209532000,"Sprain, ankle joint, lateral" -209533005,Distal tibiofibular sprain -209534004,"(Sprain, tendocalcaneus (Achilles tendon)) or (achilles tendon: [ruptured, traumatic] or [torn])" -209537006,Ankle sprain NOS -209538001,"Foot sprain, unspecified" -209539009,"Sprain, tarsometatarsal joint" -209540006,"Sprain, metatarsophalangeal joint" -209541005,"Sprain: [inter-phalangeal joint, toe] or [toe]" -209542003,Sprain of midtarsal joint -209543008,"Sprain, flexor tendon, foot" -209544002,"Sprain, extensor tendon, foot" -209545001,Foot sprain NOS -209546000,Ankle and foot sprain NOS -209547009,Sprain pelvic ligament -209548004,Sprain of ligament of lumbosacral joint -209549007,Sprain of anterior sacroiliac ligament -209550007,Sprain of posterior sacroiliac ligament -209551006,"Sprain, sacrospinous ligament" -209552004,"Sprain, sacrotuberous ligament" -209553009,Sprain of iliolumbar ligament -209554003,Other specified sacroiliac sprains -209555002,Sacroiliac sprain NOS -209556001,Sprain: [other parts of back] or [back sprain excluding lumbosacral] -209557005,Neck sprain -209558000,"(Neck sprain, unspecified) or (traumatic torticollis) or (whiplash injury)" -209559008,Cervical anterior longitudinal ligament sprain -209560003,Atlantoaxial joint sprain -209561004,Atlanto-occipital joint sprain -209563001,Neck sprain NOS -209564007,Thoracic sprain -209565008,Lumbar sprain -209566009,Sacrum sprain -209567000,"Sacral sprain, unspecified" -209568005,Sacrococcygeal sprain -209569002,Sacrum sprain NOS -209571002,Coccyx sprain -209572009,[X]Sprain and strain of other and unspecified parts of lumbar spine and pelvis -209573004,Back sprain NOS -209788006,Other and ill-defined sprains and strains -209789003,Septal cartilage nose sprain -209790007,"Jaw sprain, unspecified" -209791006,Sprain of temporomandibular joint -209792004,Jaw sprain NOS -209793009,Thyroid region sprain -209794003,"Thyroid region sprain, unspecified" -209795002,Cricoarytenoid sprain -209796001,Cricothyroid sprain -209797005,Thyroid cartilage sprain -209798000,Thyroid region sprain NOS -209799008,Sprain of costal cartilage -209800007,Rib sprain unspecified -209801006,Chondrocostal joint sprain -209802004,Sprain of costal cartilage -209803009,Rib sprain NOS -209804003,Sternum sprain -209805002,Sternum sprain unspecified -209806001,Sternoclavicular sprain -209807005,Chondrosternal sprain -209808000,Xiphoid cartilage sprain -209809008,Sternum sprain NOS -209810003,Pelvis sprain or complete tear -209811004,"Sprain of pelvis, unspecified" -209812006,"Sprain, symphysis pubis" -209819002,Sprain of pelvis NOS -209820008,[X]Sprain and strain of other and unspecified parts of thorax -209821007,Other specified sprains and strains -209822000,Other and ill-defined sprains and strains NOS -209824004,(Sprains and strains NOS) or (sprain: [joint NOS] or [ligament NOS] or [muscle NOS] or [rectus sprain] or [tendon NOS]) or (tendon rupture NOS) -21142001,Sprain of sacrospinatus ligament -213399005,[X]Sprain and strain of joints and ligaments of other and unspecified parts of head -2134003,Diffuse pain -213425007,[X]Sprain and strain of joints and ligaments of other and unspecified parts of neck -213443006,[X]Sprain and strain of other and unspecified parts of thorax -213461002,[X]Sprain and strain of other and unspecified parts of lumbar spine and pelvis -213482008,[X]Sprain and strain of other and unspecified parts of shoulder girdle -213517007,[X]Sprain and strain of other and unspecified parts of wrist and hand -213548004,[X]Sprain and strain of other and unspecified parts of knee -213567000,[X]Sprain and strain of other and unspecified parts of foot -213661000000108,Ankle pain -213671000000101,Ankle pain -21409006,Enthesopathy of ankle AND/OR tarsus -21545007,Tenalgia -21621000119107,Pain in female perineum -2169001,Thoracic radiculitis -21794005,Radial styloid tenosynovitis -21954000,Herpes zoster auricularis -220000,Unspecified monoarthritis -22166009,Skeletal muscle tender -221695002,Bursitis of calcaneal tendon bursa -22193007,Degenerative joint disease of hand -22253000,Pain -2237002,Pleuritic pain -224729007,Proliferative arthritis -22531000119104,Prolapse of cervical intervertebral disc without radiculopathy -225399009,Pain assessment -225564006,Pain of nose -225565007,Perineal pain -225595004,Pain associated with defecation -225655006,Degenerative polyarthritis -225782006,Pain control -225783001,Minimizing pain -225912009,Unable to cope with pain -226586002,Degenerative arthropathy -227588009,Osteoarthrosis -22817005,Strain of Achilles tendon -22913005,Dorsalgia -230537000,Idiopathic trigeminal neuralgia -23056005,Sciatica -230654000,Painful legs and moving toes -23096007,Cranial neuralgia -231488009,Delusional pain -232399005,Acute herpes simplex pharyngitis -23285006,Painful sexual act of male -233845001,Cardiac syndrome X -23415000,Sprain of jaw -23680005,Enthesopathy -237067000,Chronic pain in female pelvis -237135001,Painful menorrhea -238777005,Erythromelalgia -239166000,Persistent wound pain -239191000000102,Pain radiating to centre of chest -239201000000100,Pain radiating to head -239211000000103,Pain radiating to jaw -239221000000109,Pain radiating to left arm -239231000000106,Pain radiating to left flank -239241000000102,Pain radiating to left leg -239251000000104,Pain radiating to left shoulder -239261000000101,Pain radiating to left side of chest -239281000000105,Pain radiating to lumbar region of back -239301000000106,Pain radiating to neck -239311000000108,Pain radiating to right arm -239321000000102,Pain radiating to right flank -239331000000100,Pain radiating to right leg -239341000000109,Pain radiating to right shoulder -239351000000107,Pain radiating to right side of chest -239361000000105,Pain radiating to thoracic region left side -239371000000103,Pain radiating to thoracic region right side -239641000000100,Finding of geographic location of pain -239651000000102,Pain characterised by relieving factor -239711009,Foot arthritis NOS -239712002,Ankle arthritis NOS -239713007,Knee arthritis NOS -239714001,Hip arthritis NOS -239715000,Wrist arthritis NOS -239716004,Elbow arthritis NOS -239733006,Anterior knee pain -239789002,Post-immunization arthritis -239796000,Juvenile chronic arthritis -239797009,Early onset pauciarticular chronic arthritis -239799007,Early onset polyarticular juvenile chronic arthritis -239816008,Synovitis of elbow -239817004,Synovitis of knee -239818009,Shoulder synovitis -239819001,Undifferentiated inflammatory oligoarthritis -239820007,Undifferentiated inflammatory monoarthritis -239828000,Apatite-associated destructive arthritis -239831004,Calcific periarthritis -239832006,Calcium pyrophosphate deposition disease -239835008,Idiopathic pyrophosphate arthritis -239853002,Toe osteoarthritis NOS -239854008,Foot osteoarthritis NOS -239855009,Ankle osteoarthritis NOS -239856005,"Osteoarthritis NOS, of knee" -239857001,"Osteoarthritis NOS, of hip" -239858006,Thumb osteoarthritis NOS -239859003,Finger osteoarthritis NOS -239860008,"Osteoarthritis NOS, of wrist" -239861007,"Osteoarthritis NOS, of elbow" -239862000,Idiopathic osteoarthritis -239863005,Osteoarthritis of spinal facet joint -239864004,Osteoarthritis of shoulder joint -239865003,Osteoarthritis of acromioclavicular joint -239866002,Osteoarthritis of elbow -239867006,Osteoarthritis of wrist -239868001,Osteoarthritis of finger joint -239869009,Osteoarthritis of distal interphalangeal joint -239870005,Osteoarthritis of proximal interphalangeal joint -239871009,Osteoarthritis of metacarpophalangeal joint of finger -239872002,Osteoarthritis of hip -239873007,Osteoarthritis of knee -239874001,Osteoarthritis of ankle -239876004,Osteoarthritis of subtalar joint -239877008,Osteoarthritis of first metatarsophalangeal joint -239878003,Osteoarthritis of toe joint -239880009,Lumbar spondylosis -239949003,Polyalgia -239955008,Tendinitis AND/OR tenosynovitis of the shoulder region -239956009,Infraspinatus tendinitis -239957000,Calcific tendinitis of shoulder -239958005,Painful arc syndrome -239961006,Bursitis of shoulder -239965002,Tendinitis AND/OR tenosynovitis of the elbow region -239968000,Bursitis of elbow region -239973006,Tendinitis AND/OR tenosynovitis of wrist AND/OR hand -239974000,Other tenosynovitis of the wrist -239975004,Other tenosynovitis of the hand -239976003,Extensor carpi radialis tenosynovitis -239991001,Tendinitis AND/OR tenosynovitis of the pelvic region -239992008,Bursitis of pelvic region -239993003,Ischial bursitis -239994009,Enthesopathy of pelvic region -240000001,Tendinitis AND/OR tenosynovitis of the knee region -240002009,Popliteal bursitis -240003004,Suprapatellar bursitis -240004005,Semimembranosus bursitis -240011009,Tibialis posterior tenosynovitis -240012002,Tibialis anterior tenosynovitis -240017008,Bursitis of ankle region -240018003,Tarsus enthesopathy -240027002,Bursitis of foot region -240028007,Enthesopathy of foot region -240033006,Bursitis of retrocalcaneal bursa -240034000,Tendinitis AND/OR tenosynovitis -240035004,Tenosynovitis -240036003,Tenosynovitis of fingers -240117006,Trichinosis myositis -240223006,Degenerative arthropathy of spinal facet joint -241102002,Skeletal survey - arthritis -24133009,Lateral epicondylitis of elbow joint -241401000000103,Patient unable to rate pain -2415007,Lumbosacral radiculopathy -242061000000100,Gradual onset of pain -242071000000107,Pain onset at rest -242081000000109,Pain onset during exertion -242091000000106,Pain onset during moderate exercise -242101000000103,Pain onset during sleep -242111000000101,Pattern of onset of pain -242121000000107,Constant pain -243331000000103,Squeezing pain -243341000000107,Vague pain -243911000000107,Pain characterised by provoking factor -243921000000101,Pain relieved by analgesics -243951000000106,Pain relieved by patient medication -243961000000109,Pain relieved by patient position -243971000000102,Pain relieved by rest -243981000000100,Pain relieved by sitting up -243991000000103,Pain relieved by slowing respiration -244001000000108,Pain relieved by supine position -244011000000105,Pain relieved by walking -244021000000104,Pain commenced at home -244031000000102,Pain commenced in clinic -244041000000106,Pain commenced in construction area -244051000000109,Pain commenced in educational area -244071000000100,Pain commenced in hospital -244081000000103,Pain commenced in industrial area -244091000000101,Pain commenced on motorway -244101000000109,Pain commenced at office -244111000000106,Pain commenced in residential home -244121000000100,Pain commenced in sports/athletic area -244131000000103,Pain commenced in street -244141000000107,Pain commenced at industrial site -244151000000105,Pain commenced outdoors -244161000000108,Pain commenced in public building -244401000000101,Pain provoked by altercation -244411000000104,Pain provoked by breathing -244421000000105,Pain provoked by coughing -244431000000107,Pain provoked by eating -244441000000103,Pain provoked by exertion -244451000000100,Pain provoked by light -244461000000102,Pain provoked by movement -244471000000109,Pain provoked by rest -244481000000106,Pain provoked by running -244511000000100,Spontaneous pain -244521000000106,Pain provoked by lifting -244531000000108,Pain provoked by walking -24693007,Fibromyositis -24730004,Sprain of calcaneofibular ligament -247345006,Sore gums -247346007,Sore mouth -247348008,Tenderness -247349000,Painful teething -247352008,Subcostal pain -247355005,Flank pain -247363006,Musculoskeletal pain disorder -247364000,Psychosomatic rheumatism -247365004,Fibromyalgia -247366003,Acute back pain with sciatica -247368002,Posterior compartment low back pain -247369005,Facet joint pain -247373008,Ankle pain -247375001,Arc of pain in joint -247376000,Beginning of painful arc -247377009,End of painful arc -247380005,Phantom pain -247381009,Limb stump pain -247384001,Neurological pain disorder -247385000,Lateral femoral cutaneous neuralgia -247386004,Obturator neuralgia -247387008,Cruralgia -247388003,Segmental peripheral neuralgia -247389006,Intercostal neuralgia -247391003,Perineal neuralgia -247393000,Ilioinguinal nerve neuralgia -247395007,Genitofemoral nerve neuralgia -247397004,Causalgia -247398009,Neuropathic pain -247399001,Pseudothalamic pain -247400008,Painful arms and moving fingers -247404004,Allodynia -247409009,Specific body function causing pain -247410004,Painful cough -247411000,Talking painful -247416005,Defecation painful -247417001,Pain on intercourse -247418006,Superficial pain on intercourse -247419003,Deep pain on intercourse -247738008,Hallucinations of pain -24864009,Sprain of interphalangeal joint of toe -249123005,Onset of contractions -24928009,Strain of infraspinatus muscle AND/OR tendon -249919003,Muscle stiffness -249921008,Stiff back -250125001,Arthritis by pattern of joint involvement -250126000,Symmetrical arthritis -250127009,Asymmetrical arthritis -250128004,Small joint arthritis -250129007,Large joint arthritis -250130002,Small and large joint arthritis -250131003,Lower limb joint arthritis -25064002,Headache -25416002,Peripheral neuralgia -25428005,Sprain of carpometacarpal joint -254779008,Osteoarthritis deformans -25616007,Acute arthropathy -262962009,Rectus muscle sprain -262963004,Muscle sprain NOS -262964005,Strain of neck muscle -262965006,Strain of back muscle -262972007,Tendon strain -262973002,Tendon sprain NOS -262974008,Strain of tendon of neck -262975009,Strain of tendon of back -262976005,Strain of tendon of adductor longus -262977001,Strain of peroneal tendon -262990008,Forearm sprain -262991007,Thigh sprain -262992000,Hamstring sprain -262993005,Hip sprain -262994004,Leg sprain -262995003,Back sprain excluding lumbosacral -262996002,Joint sprain NOS -262997006,Sprain of sacroiliac joint -262998001,Sprain of toe joint -263000005,Joint capsule sprain -263127006,Ligament sprain NOS -263128001,Sprain of ligament of elbow -263129009,Sprain of ligament of finger -263130004,Sprain of ligament of thumb -263131000,Sprain of ligament of knee joint -263132007,Sprain of ligament of ankle joint -263133002,Sprain of lateral ligament of ankle joint -266492006,(Temporomandibular joint dis) or (snapping jaw) or (temporomandibular syndrome) -266599000,Dysmenorrhea -267067009,Lumbar ache - renal -267104002,Complaining of a pain -267165003,Pain: [site of GIT] or [abdominal site symptom] or [flank] or [subcostal] or [iliac fossa] -267169009,(Pain: [lumbar] or [renal] or [loin]) or (lumbar renal ache) -267182001,C/O: [a pain] or [an ache] -267348004,Pelvic joint/ligament damage -267699004,(Cluster headaches) or (migrainous neuralgia) or (migraine NOS) -267705008,Other mononeuritis upper limb &/or causalgia -267888004,Osteoarthritis -267889007,Generalized osteoarthritis of the hand -267891004,"Localized osteoarthritis, unspecified, of the pelvic region and thigh" -267892006,"Localized osteoarthritis, unspecified, of the lower leg" -267893001,Osteoarthritis NOS -267894007,"Osteoarthritis NOS, of the upper arm" -267895008,"Osteoarthritis NOS, of the forearm" -267896009,"Osteoarthritis NOS, of the hand" -267897000,"Osteoarthritis NOS, pelvic region/thigh" -267898005,"Osteoarthritis NOS, of the lower leg" -267899002,"Osteoarthritis NOS, of ankle and foot" -267900007,Transient arthropathy of hip -267902004,Unspecified polyarthropathy or polyarthritis NOS -267903009,Unspecified monoarthritis -267904003,Arthropathy NOS -267905002,"Arthropathy NOS, of the upper arm" -267906001,"Arthropathy NOS, of the forearm" -267907005,"Arthropathy NOS, of the pelvic region and thigh" -267908000,"Arthropathy NOS, of the lower leg" -267909008,"Arthropathy NOS, of the ankle and foot" -267949000,Shoulder joint pain -267950000,Arthralgia of the upper arm -267951001,Arthralgia of the forearm -267952008,Arthralgia of the pelvic region and thigh -267953003,Arthralgia of the lower leg -267954009,Arthralgia of the ankle and/or foot -267973008,Spondylosis NOS -267977009,Brachial (cervical) neuritis -267981009,Pain in thoracic spine -267982002,Pain in lumbar spine -267984001,"Backache, unspecified" -267988003,Polymyalgia rheumatica -267990002,Peripheral enthesopathies -267991003,"Rotator cuff syndrome, unspecified" -267992005,Rotator cuff syndrome NOS -267993000,Bursitis of the knee NOS -267994006,Knee enthesopathy NOS -267995007,Enthesopathy of the ankle and/or tarsus -267996008,Tendinitis NOS -267998009,Other tenosynovitis of hand or wrist -267999001,Other synovitis and tenosynovitis -268000007,Bursitis NOS -268010003,Myalgia unspecified -268011004,"Neuralgia, neuritis or radiculitis NOS" -268043004,[X]Other primary gonarthrosis -268051001,(Arthritis/arthrosis) or (arthropathy) or (joint disorders) -268053003,Polyarthropathy (& [inflammatory]) NOS -268054009,Osteoarthritis of multiple joints -268056006,(Arthropathy NOS) or (arthrosis) or (Charcot's joint) or (Otto's pelvis) or (polyarthritis NOS) -268065004,(Pain in joint) or (coxalgia) -268066003,Joint pain: [shoulder] or [acromioclavicular] -268068002,Ankle and/or foot joint stiffness -268070006,(Joint: [disorder NOS] or [unstable]) or (polyarthralgia) -268074002,(Spondyloses: [cervical] or [lumbar] or [sacral]) or (arthritis - spine) or (osteoarthritis - spine) -268078004,(Cervicalgia) or (neck pain NOS) -268083007,(Backache NOS) or (back pain [& low]) -268086004,(Peripheral enthesopathies) or (capsulitis) -268087008,(Shoulder: [syndrome (& [painful arc][rotator cuff])][bicipital tendinit][bursitis][frozen][pericapsulit][adhes capsulit]) or (tendinitis: [subscapular][supraspinat][infraspinat][bicep long head]) -268088003,(Epicondylitis &/or tennis elbow) or (golfers' elbow) -268089006,(Patellar tendinitis) or (Pellegrini-Stieda syndrome) -268090002,(Tendinitis: [ankle/tarsus] or [achilles] or [ankle]) or (calcaneal spur) or (metatarsalgia) -268091003,(Peripheral enthesopathy NOS) or (exostosis NOS) or (periarthritis NOS) or (semi-membranosus bursa) or (tendinitis NOS) -268092005,Synovitis &/or tenosynovitis -268093000,Synovitis and/or tenosyn.- multiple -268094006,(Synovitis/tenosynovitis - wrist) or (de Quervain's tenosynovitis) -268095007,(Synovitis/tenosynovitis - hand) or (finger: [snapping] or [trigger]) -268096008,(Bursitis: [knee] or [pre-patellar]) or (house-maid's knee) -268097004,(Bursitis - ankle/foot) or (painful heel syndrome) -268107007,Rheumatism &/or fibrositis: [NOS] -268108002,Myalgia &/or myositis: [NOS] -268109005,(Myalgia/myositis NOS) or (intercostal myalgia) -268110000,(Neuralgia/neuritis - ankle/foot) or (policemans' disease) -268111001,(Neuralgia/neuritis - NOS) or (nerve root pain NEC) -268112008,Pain in limb &/or NOS -268122002,(Nonarticular rheumatism NOS) or (panniculitis) -268718003,[X]Persistent somatoform pain disorder -268777004,Psychalgia: [tension backache] or [other] -268994009,On examination - tenderness/pain -269018004,O/E pain: [abdominal (& on palpation)] or [epigastric] or [iliac] or [lumbar] or [umbilical] -269019007,O/E - right iliac: [abdominal pain] or [tender] -269020001,O/E - left iliac: [abdominal pain] or [tender] -269046002,O/E - maxillary sinus: [tenderness] or [pain] -269047006,O/E - frontal sinus: [tenderness] or [pain] -269132000,Other shoulder sprain -269133005,Other upper arm sprain -269134004,Sprain of elbow and forearm -269135003,Hand sprain unspecified -269136002,Sprain of hip and thigh -269137006,Sprain of knee and leg -269138001,Strain of gastrocnemius tendon -269139009,Sprain of interphalangeal joint of toe -269140006,Sprain of other parts of back -269141005,"Neck sprain, unspecified" -269143008,Sprains and strains NOS -269324003,[Dislocations &/or sprains &/or strains] or subluxations -269328000,Sprain: [shoulder] or [upper arm] -269329008,Arm sprain - upper -269330003,Sprain: [hand] or [finger] -269331004,Sprained finger &/or thumb -269332006,Sprained upper leg (& [thigh]) -269333001,(Sprain - ankle NOS) or (twisted ankle) -269334007,(Sprained neck) or (whiplash injury) -269335008,Sacral &/or coccyx sprain -269336009,Pelvic sprain (& [pubic symphisis]) -269337000,Other sprains NOS -270506005,Unspecified polyarthropathy or polyarthritis -270534003,Proctalgia fugax (& anal spasm): disorder or observation -270542002,Elbow bursitis (& olecranon) -271329006,[D]Pain in head NOS -271330001,"[D]Chest pain, unspecified" -271681002,Stomach ache -27182002,Sprain of acromioclavicular ligament -271843009,Painful straining for stool -271856002,Groin pain -271857006,Loin pain -272047006,Complaining of loin pain -272048001,C/O - lumbar pain (context-dependent category) -272049009,Complaining of renal pain -2733002,Heel pain -27355003,Toothache -273685000,Pain diary -274135002,Arthritis/arthrosis -274140005,Subscapularis tendinitis -274161003,Back sprain -274162005,Thoracic back sprain -274163000,Lumbosacral sprain -274253004,[D]Retrosternal pain -274279008,Renal pain -274289007,On examination - iliac pain - abdominal -274290003,On examination - lumbar pain abdominal -274305000,On examination - maxillary sinus pain -274306004,On examination - frontal sinus pain -274663001,Acute pain -274664007,Chest pain on breathing -274665008,Chronic intractable pain -274666009,Face ache -274667000,Jaw pain -274668005,Non-cardiac chest pain -274669002,Other chronic pain -274671002,Pelvic and perineal pain -274796008,Examination of pain sensation -275315004,On examination - iliac pain on palpation -275316003,On examination - lumbar pain on palpation -275317007,Finger pain -275324008,Osteoarthritis of metacarpophalangeal joint -275334004,Shoulder strain -275446004,Gardner-Diamond syndrome -275449006,Sore bottom -275875002,On examination - painful arc -275895008,On examination - tenderness -275896009,On examination - pain -27635008,Aching pain -276435006,Pain / sensation finding -276889001,Eponymous strains A-L -277167007,Tenderness in ear canal -277168002,Tenderness in ear canal on distracting pinna -277210007,Tender mastoid -277238004,Tenderness over maxillary sinus -277241008,Tenderness over frontal sinus -277247007,Tender larynx -277285005,Thalamic pain -27741009,Calcific tendinitis of shoulder -277467000,Eponymous strain -277514002,Eponymous strains M-Z -277802001,Notalgia paresthetica -278018006,Tender muscles -27830001,Brachial radiculitis -278525009,Enthesopathy -278860009,Chronic low back pain -278862001,Acute low back pain -278995006,Facial tenderness -278997003,Bone tenderness -279001004,Pain finding at anatomical site -279019008,Central crushing chest pain -279021003,Epididymal pain -279028009,Ovarian pain -279029001,Pain in cervical spine -279030006,Myofascial pain syndrome of neck -279032003,Chronic pelvic pain without obvious pathology -279035001,Acute thoracic back pain -279036000,Myofascial pain syndrome of thorax -279038004,Thoracic back pain -279039007,Low back pain -279040009,Mechanical low back pain -279041008,Myofascial pain syndrome of lower back -279043006,Pain in buttock -279044000,Total body pain syndrome -279047007,Persistent pain following procedure -279052002,Sympathetically independent pain -279053007,Sympathetically maintained pain -279056004,Pain on penetration -279058003,Neurogenic pain -279059006,Hypoglossal neuralgia -279061002,Pain of anatomical structure -279062009,Myofascial pain -279063004,Lumbar facet joint pain -279066007,Foot joint pain -279067003,Metatarsophalangeal joint pain -279069000,Musculoskeletal pain -279070004,Muscle tension pain -279072007,Sore lip -279073002,Sore nostril -279075009,Pain finding -279087002,Painful spasm of anus -279093005,Cramping pain -279095003,Heavy pain -279096002,Sore pain -279097006,Splitting pain -279098001,Crushing pain -279114001,Character of pain -279980002,Peripheral neurogenic pain -279981003,Peripheral neuropathic pain -281245003,Musculoskeletal chest pain -281352004,Iliopsoas bursitis -281537007,Strain of tendon of head and neck -281538002,Strain of tendon of trunk -281539005,Strain of tendon of upper limb -281540007,Strain of tendon of upper arm -281541006,"Strain of tendon of forearm, wrist, hand" -281542004,Strain of tendon of lower limb -281543009,Strain of tendon of medial thigh muscle -281544003,Strain of tendon of foot and ankle -281598004,Sprain of spinal ligament -281599007,Sprain of ligament of lower limb -282743009,Malignant bone pain -285365001,Pain in toe -285375003,Pain in penis -285385002,Left sided chest pain -285386001,Right sided chest pain -285389008,Upper chest pain -285391000,Strain of muscle of lower limb -285393002,Strain of muscle of upper limb -285394008,Strain of muscle of trunk -285395009,Strain of calf muscle -287011007,Osteoarthritis - hand joint -287012000,Osteoarthritis - ankle and/or foot -287013005,Osteoarthritis - other joint -287016002,Synovitis/tenosynovitis - multiple joints -287017006,Synovitis/tenosynovitis - shoulder -287018001,Synovitis/tenosynovitis - elbow -287019009,Synovitis/tenosynovitis - wrist -287020003,Synovitis/tenosynovitis - hip -287021004,Synovitis/tenosynovitis - knee -287022006,Synovitis and/or tenosynovitis - ankle and/or foot -287023001,Bursitis of multiple bursa -287024007,Bursitis - knee -287025008,Bursitis of bursa of ankle and/or foot -287042002,Rheumatism hip NOS -287043007,Rheumatism knee NOS -287044001,Rheumatism ankle/foot NOS -287045000,Pain in left arm -287046004,Pain in right arm -287047008,Pain in left lower limb -287048003,Pain in right lower limb -287049006,Pain in limb NOS -287097007,Sprained finger/thumb -287098002,Sprained toe -287099005,Other sprains -28729000,Proliferative synovitis -28736004,Primary localized osteoarthrosis of multiple sites -287495009,On examination - Site of pain -288213002,Synovitis/tenosynovitis - hand -288220009,Rheumatism multiple NOS -288221008,Rheumatism shoulder NOS -288222001,Rheumatism elbow NOS -288223006,Rheumatism wrist NOS -288224000,Rheumatism hand NOS -288225004,Myalgia/myositis - multiple -288226003,Myalgia/myositis - shoulder -288227007,Myalgia/myositis - upper arm -288228002,Myalgia/myositis - forearm -288229005,Myalgia/myositis - hand -288230000,Myalgia/myositis -pelvis/thigh -288231001,Myalgia/myositis - lower leg -288232008,Myalgia/myositis - ankle/foot -288233003,Neuralgia/neuritis - multiple -288234009,Neuralgia/neuritis - shoulder -288235005,Neuralgia/neuritis - upper arm -288236006,Neuralgia/neuritis - forearm -288237002,Neuralgia/neuritis - hand -288238007,Neuralgia/neuritis - pelvis/thigh -288239004,Neuralgia/neuritis - lower leg -288240002,Neuralgia/neuritis - ankle/foot -288241003,Pain in limb - multiple -289817003,Pain of cervix -289818008,Pain on movement of cervix -289842007,Ovary tender -289844008,Pain of ovary -289845009,Pain on movement of ovary -289900009,Period pain present -289901008,Period pain absent -291761000119107,Complex regional pain syndrome type II of left upper limb -291771000119101,Complex regional pain syndrome type II of right upper limb -291781000119103,Complex regional pain syndrome type II of left lower limb -291791000119100,Complex regional pain syndrome type II of right lower limb -29207008,Tenderness -29210001,Trochanteric tendinitis -292481000119104,Neuralgia of right pudendal nerve -292491000119101,Neuralgia of left pudendal nerve -292521000119104,Neuralgia of nerve of right lower limb -292531000119101,Neuralgia of nerve of left lower limb -293921000119104,Complex regional pain syndrome type I of bilateral upper limbs -293931000119101,Complex regional pain syndrome type I of left lower limb -293941000119105,Complex regional pain syndrome type I of left upper limb -293951000119107,Complex regional pain syndrome type I of bilateral lower limbs -293961000119109,Complex regional pain syndrome type I of right lower limb -293971000119103,Complex regional pain syndrome type I of right upper limb -29695002,Throbbing pain -297128006,Nuchal pain -297217002,Rib pain -298160000,Inflamed joint -298161001,Temporomandibular joint inflamed -298162008,Shoulder joint inflamed -298163003,Elbow joint inflamed -298164009,Wrist joint inflamed -298165005,Hand joint inflamed -298166006,Metacarpophalangeal joint inflamed -298167002,Finger joint inflamed -298168007,Inflammation of thumb joint -298169004,Hip joint inflamed -298170003,Knee joint inflamed -298171004,Ankle joint inflamed -298172006,Foot joint inflamed -298173001,Subtalar joint inflamed -298174007,Metatarsophalangeal joint inflamed -298175008,Interphalangeal joint of toe inflamed -298176009,Cervical spine joint inflamed -298177000,Thoracic spine joint inflamed -298178005,Lumbar spine joint inflamed -298240000,Sacroiliac joint stiff -298250004,Joint tender -298251000,Tenderness of sacroiliac joint -298252007,Joint non-tender -298253002,Cervical facet joint pain -298254008,Thoracic facet joint pain -298255009,Pain on joint movement -298268001,Tenderness of tendon -298288002,Diffuse muscle tenderness -298289005,Muscle tender point -298290001,Tenderness at muscle insertion -298291000000107,Pain with no relieving factor -298292009,Pain on movement of skeletal muscle -298301000000106,Right sided thoracic back pain -298311000000108,Left sided thoracic back pain -298351000000107,Pain on passive stretch of joint -29837005,Dysmenorrhea -298375002,Tenderness of temporomandibular joint -298376001,Temporomandibular joint painful on movement -298477006,Cervical spine tender -298478001,Pain on movement of cervical spine -29857009,Chest pain -298578004,Thoracic spine - tender -298579007,Pain on movement of thoracic spine -298673002,Lumbar spine - tender -298674008,Pain on movement of lumbar spine -298729007,Sternum tender -298731003,Pain of sternum -298740004,Rib tender -298741000,Rib non-tender -298751004,Tenderness of upper limb -298752006,Pain in upper limb -298856001,Tenderness of shoulder joint -298857005,Shoulder joint painful on movement -298858000,Shoulder joint - painful arc -298928007,Tenderness of elbow joint -298929004,Elbow joint - painful on movement -299017002,Tenderness of wrist joint -299018007,Wrist joint painful on movement -299111003,Tenderness of finger joint -299112005,Finger joint painful on movement -29913006,Rheumatism -29918002,Cervical spondylosis without myelopathy -299198008,Tenderness of thumb joint -299199000,Thumb joint painful on movement -29930001000004103,Intractable low back pain -299307002,Tenderness of hip joint -299308007,Hip joint painful on movement -299372009,Tenderness of knee joint -299373004,Tenderness on medial joint line of knee -299374005,Tenderness on lateral joint line of knee -299375006,Infrapatellar tenderness -299376007,Tenderness in popliteal fossa -299377003,Knee joint painful on movement -299446004,Tenderness of ankle joint -299447008,Ankle joint - painful on movement -299512002,Tenderness of foot joint -299513007,Foot joint - painful on movement -299553005,Tenderness of subtalar joint -299554004,Subtalar joint painful on movement -299632005,Tenderness of toe joint -299633000,Toe joint painful on movement -300103004,Pinna tender -300104005,Generalized tenderness in pinna -300105006,Focal tenderness in pinna -300107003,Pain on movement of pinna -300348008,Gallbladder tender -300349000,Gallbladder non-tender -300446008,Kidney tender -300447004,Kidney non-tender -300459000,Bladder tender -300460005,Bladder non-tender -300501005,Epididymis tender -300502003,Epididymis non-tender -300566002,Spleen tender -30077003,Somatoform pain disorder -300820003,Tender -30085007,Morton's metatarsalgia -300942003,Tender lymph node -300947009,Deltoid tendinitis -300953009,Pain in axilla -300954003,Pain in calf -300955002,Pain in thumb -300956001,Low back strain -300957005,Postural low back pain -300960003,Psychogenic back pain -301353005,Pain of eye structure -301354004,Pain of ear -301355003,Pain of respiratory structure -301356002,Maxillary sinus pain -301357006,Frontal sinus pain -301358001,Pain of cardiovascular structure -301359009,Pain of lymphoreticular structure -301361000,Pain of oral cavity structure -301362007,Pain of digestive structure -301363002,Pain of endocrine structure -301365009,Pain of head and neck region -301366005,Pain of truncal structure -301369003,Finding of pattern of pain -301370002,Finding of sensory dimension of pain -301371003,Gnawing pain -301372005,Finding of affective dimension of pain -301373000,Tiring with pain -301375007,Sickening with pain -301376008,Fearful with pain -301377004,Punishing with pain -301378009,Finding of present pain intensity -301380003,Mild present pain -301381004,Discomforting present pain -301382006,Distressing present pain -301383001,Horrible present pain -301384007,Excruciating present pain -301385008,Tenderness finding -301386009,Tenderness of body structure -301387000,Tenderness of eye structure -301388005,Tenderness of ear structure -301389002,Tenderness of respiratory structure -301390006,Tenderness of cardiovascular structure -301391005,Tenderness of lymphoreticular structure -301392003,Tenderness of oral cavity structure -301393008,Tenderness of digestive structure -301396000,Tenderness of male genital structure -301397009,Tenderness of female genital structure -301398004,Tenderness of endocrine structure -301399007,Musculoskeletal tenderness -301400000,Tenderness of body region -301401001,Tenderness of head and neck region -301402008,Tenderness of truncal structure -301406006,Tenderness of central region -301407002,Tenderness of right lumbar -301408007,Tenderness of left lumbar -301421000,Tenderness in limb -301422007,Tenderness in upper limb -301423002,Tenderness in lower limb -301715003,Left upper quadrant pain -301716002,Left lower quadrant pain -301717006,Right upper quadrant pain -301754002,Right lower quadrant pain -301773003,Pain in femur -301864002,Transient synovitis of hip -302017001,Sore eye -302072004,Pain in thyroid -302073009,Tenderness of thyroid -302219006,Ear pain -302241006,[D]Jaw pain -30233002,Swallowing painful -302934007,Disorder of spine -302936009,Enthesopathy of wrist and/or hand -302937000,Enthesopathy of lower leg and ankle region -302938005,Tendinitis AND/OR tenosynovitis of the ankle region -302939002,Tendinitis AND/OR tenosynovitis of the foot region -303041000119104,Osteoarthritis of bilateral first carpometacarpal joints -303191000119108,Calcific tendinitis of left shoulder -303211000119109,Calcific tendinitis of left upper arm -303261000119107,Calcific tendinitis of right shoulder -303281000119103,Calcific tendinitis of right upper arm -30473006,Pain in pelvis -3061000119102,Chronic nonmalignant pain -30701005,Inflammatory polyarthropathy -307176005,Acute sciatica -307177001,Chronic sciatica -30731004,Glossodynia -307499004,Cricoarytenoid joint fixation -307500008,Cricoarytenoid joint arthritis -307722004,[D] Right upper quadrant pain -307724003,[D] Left upper quadrant pain -308150007,[D]Retrosternal chest pain -308497004,Strain - lesion -308601000000105,Pain in face -308761000119108,Tendinitis of left gluteal tendon -308771000119102,Tendinitis of right gluteal tendon -308927000,Pain / sensation symptom finding -308941000119107,Calcific tendinitis of left ankle -308951000119109,Calcific tendinitis of left elbow -308961000119106,Calcific tendinitis of left hip -308971000119100,Calcific tendinitis of left knee -308991000119104,Calcific tendinitis of right ankle -309001000119104,Calcific tendinitis of right elbow -309021000000104,Pain in face -309021000119108,Calcific tendinitis of right hip -309031000119106,Calcific tendinitis of right knee -309246000,Osteoarthritis of foot joint -30936004,Enthesopathy of hip region -309471000000109,Complex regional pain syndrome type II -309522006,Tenderness of neck -309552003,[D]Painful respiration -309678000,On examination - pain and sensation -309710005,Lumbosacral strain -30989003,Knee pain -310072004,Acute pain service -310482008,On examination - snuff box tenderness -310483003,Complaining of pain in toe -310484009,Complaining of pain in hallux -310631000000103,Suspected inflammatory arthritis -310641000000107,Suspected inflammatory arthritis -310651000000105,Suspected inflammatory arthritis -311804006,Prolapsed lumbar intervertebral disc with sciatica -311811005,[D]Left lower quadrant pain -311812003,[D]Right lower quadrant pain -312411000119100,Lateral epicondylitis of left humerus -312421000119107,Lateral epicondylitis of right humerus -312785002,Tendinitis -312836001,Enthesopathy of lower limb -313257005,"Localized, primary osteoarthritis of the wrist" -313258000,"Localized, primary osteoarthritis of toe" -313259008,"Localized, primary osteoarthritis of elbow" -313631000119104,Monoarthritis of left knee -313701000119100,Monoarthritis of right knee -314108007,Adhesions of knee joint -314591000119101,Bursitis of olecranon of left elbow -314601000119108,Bursitis of olecranon of right elbow -314642004,Intermittent pain -314716005,Acute pelvic pain -314884009,Sprain of ligament of hand -31490007,Nasociliary neuralgia -316761000119109,Pain of left forearm -316801000119101,Pain of left lower leg -31681005,Trigeminal neuralgia -316841000119104,Pain of left upper arm -316941000119108,Pain of right lower leg -316981000119103,Pain of right upper arm -317741000119107,Peroneal tendinitis of left lower limb -317751000119109,Peroneal tendinitis of right lower limb -318171000119100,Tendinitis of left posterior tibial tendon -318181000119102,Tendinitis of right posterior tibial tendon -31829008,Strain of lumbar region -318641000119101,Osteoarthritis of joint of left ankle -318651000119104,Osteoarthritis of joint of left elbow -318661000119102,Osteoarthritis of joint of left hand -318671000119108,Osteoarthritis of joint of left shoulder region -318681000119106,Osteoarthritis of joint of left wrist -318691000119109,Osteoarthritis of joint of right ankle and/or foot -318701000119109,Osteoarthritis of joint of right elbow -318711000119107,Osteoarthritis of joint of right hand -318721000119100,Osteoarthritis of joint of right shoulder region -318731000119102,Osteoarthritis of joint of right wrist -318771000119104,Tendinitis of left psoas tendon -318781000119101,Tendinitis of right psoas tendon -3199001,Sprain of shoulder -3200003,Sacrocoxalgia -32128001,Sprain of metacarpophalangeal joint -322521000119104,Transient synovitis of left elbow -322531000119101,Transient synovitis of left hand -322541000119105,Transient synovitis of left hip -322571000119103,Transient synovitis of left wrist -322601000119109,Transient synovitis of right elbow -322611000119107,Transient synovitis of right hand -322621000119100,Transient synovitis of right hip -322651000119108,Transient synovitis of right wrist -322769008,Trigeminal neuralgia [no drugs here] -323291000119108,Osteoarthritis of left hip joint -323301000119109,Osteoarthritis of left knee joint -323311000119107,Osteoarthritis of right hip joint -323321000119100,Osteoarthritis of right knee joint -323850000,Sore pain -330275003,Other preps for inflamed joints -331000119106,Tendinitis of elbow or forearm -33262002,Osteoarthrosis involving multiple sites but not designated as generalized -33275002,Degenerative joint disease of upper arm -33439002,Enthesopathy of wrist AND/OR carpus -3368006,Dull chest pain -33952002,Localized osteoarthrosis -34789001,Pain in coccyx -34791000119103,Chest pain due to pericarditis -34840004,Tendinitis -35185008,Enthesopathy of elbow region -35496009,Femoral neuralgia -35635000,Cervicobrachial neuralgia -35678005,Multiple joint pain -357182002,Spondyloarthropathy -35726004,Sprain of lateral collateral ligament of knee -35908007,Chronic arthritis -359173000,Seronegative arthritis -359643005,Enthesitis -360437006,Strain of tendon of neck -360450007,Strain of neck muscle -361197009,Sarcoid arthropathy -361198004,Sarcoid arthritis -36163009,Night pain -36186002,Polyarthropathy -36241000119108,Sprain of ligament of cervical spine region -36269003,Cheilodynia -363178003,Inflammatory disorder of joint -36349006,Burning pain -364624006,Pain / sensation observable -364625007,Characteristic of pain -364626008,Characteristic of pain at anatomical site -364627004,Characteristics of pain of head and neck region -364629001,Characteristics of pain of truncal structure -364631005,Pattern of pain -364632003,Pain character -364635001,Feature of present pain intensity -36527001,Periarthritis of shoulder -365882001,Backache -36630001,Deep pain -36657004,Sprain of radial collateral ligament -366948003,Exacerbation of backache -366958004,Chest wall pain -366981002,Pain -366982009,Pain in upper limb -367127009,Muscle strain -367130002,Joint sprain -367173006,Exacerbation of backache -367183005,Chest wall pain -367206007,Pain -367207003,Pain in upper limb -36729000,Pain of prostate -367433008,Dysmenorrhea -367539009,Disorder of the vertebral column -36859004,Esophageal chest pain -369001000000109,Neck pain -369021000000100,Complex regional pain syndrome type I -371030007,Squeezing chest pain -371081002,Arthritis of knee -371082009,Arthritis of spine -37151006,Erythromelalgia -371921000000105,Tendinitis of rotator cuff -372091005,Arthritis -372109003,Disorder of joint of spine -37226004,Pain co-occurrent with tenderness -3723001,Arthritis -37358006,Autoerythrocyte sensitivity disorder -373589003,Backache -373598000,Hand arthritis NOS -373609007,Shoulder arthritis NOS -373621006,Chronic pain syndrome -373623009,Osteoarthritis of glenohumeral joint -373634007,Backache -373644009,Back pain -373673007,Disorder characterized by pain -37440001,Kashin-Bek disease -37475001,Synesthesialgia -37616004,Pharyngitis -37785001,Patellar tendonitis -37895003,Osteoarthrosis of the carpometacarpal joint of the thumb -37913005,Sprain of other specified site of sacroiliac region -381000119107,Pain disorder with psychological factor -38343000,Vaginal pain -384709000,Sprain -384710005,Sprain of radiocarpal ligament -38540001,Sprain of interphalangeal joint of finger -386207004,Temporomandibular joint-pain-dysfunction syndrome -387800004,Cervical spondylosis -387801000,Cervical arthritis -387802007,Thoracic spondylosis -38800000,Acute serous synovitis -38850007,Chronic arthropathy -389320000,Chronic low back pain -389331008,Right upper quadrant pain -389342004,Pain in lower limb -389343009,Knee pain -389344003,Foot pain -390055001,Chronic low back pain -390064006,Right upper quadrant pain -390075005,Pain in lower limb -390076006,Knee pain -390077002,Foot pain -390421000000103,[X]Other bursitis of knee -393602007,Exacerbation of osteoarthritis -39386008,Thoracic spondylosis without myelopathy -39402007,Pelvic congestion syndrome -394640000,Radiculopathy -394991004,Exacerbation of osteoarthritis -39510005,Neurogenic ossifying arthropathy -39511000000109,Anterior knee pain -39547005,Enthesopathy of knee -39565009,Pain crisis -396159001,Referral to rheumatology service for osteoarthritis -396275006,Osteoarthritis -396332003,Rheumatism -396333008,Non-articular rheumatism -397704003,"Pain sensation, function" -397721000000106,[D]Chest pain NOS -39848009,Whiplash injury to neck -398878007,Sprain of ligament -398997008,Vertebrogenic pain syndrome -399044006,Glossopyrosis -399079008,Back pain -399114005,Adhesive capsulitis of shoulder -399194009,Disorder characterized by back pain -399269003,Arthropathy -400601000000103,[D]Pain in head NOS -40129004,Sprain of ligament of lumbosacral joint -40196000,Mild pain -402751000000105,[X]Sprain and strain of other and unspecified parts of shoulder girdle -403390002,Primary erythromelalgia -403391003,Secondary erythromelalgia -405059008,Pain level: psychological effects -405160001,Pain level: disruptive effects -405161002,Pain level -406127006,Pain intensity -406189006,Pain observable -40709005,Lumbago -40799003,Subacromial bursitis -408749000,"Complex regional pain syndrome, type II, lower limb" -408750000,"Complex regional pain syndrome, type II, upper limb" -408751001,"Complex regional pain syndrome, type II" -408950005,Acute pain control -408951009,Acute pain control management -408952002,Acute pain control assessment -408953007,Acute pain control education -409021000000106,[X]Other specified arthrosis -40913006,Primary localized osteoarthrosis of hand -409871000000103,[X]Other dorsalgia -41000119109,Strain of foot -410481000000109,[X]Other hypertrophic osteoarthropathy -4106009,Rotator cuff syndrome -410713007,Sore sensation quality -410720000,Pain by sensation quality -410793008,Chronic arthritis of juvenile onset -41137001,Bicipital tenosynovitis -412021000000101,[X]Sprain and strain of joints and ligaments of other and unspecified parts of neck -41226008,Exquisite pain -412714008,Myalgia/myositis of neck -41321000119101,Myofascial pain syndrome of thoracic spine -41397009,Polyarthritis -414001000000101,[X] Somatoform pain disorder (& [persistent] or [psychalgia] or [psychogenic backache] or [psychogenic headache]) -414881000000100,[X]Other bursitis of hip -414971000000105,[X]Sprain and strain of other and unspecified parts of lumbar spine and pelvis -4151000119102,Facial neuralgia -415352004,Rotator cuff tear arthropathy -416209007,Synovitis -41652007,Pain in eye -416816003,Ligamentous strain -416956002,Undifferentiated inflammatory polyarthritis -417009006,Tender point -417021005,Sclerotomal pain -417180005,Undifferentiated inflammatory arthritis -417310005,Sphenobasilar synchondrosis lateral strain -417373000,Inflammatory polyarthropathy -417643003,Ligamentous articular strain -417704008,Membranous articular strain -41771000000105,Anterior knee pain -41821000119108,Strain of intercostal muscle -418237007,Pain in hallux -41888000,Temporomandibular joint disorder -418958006,Complaining of backache -419258005,Back pain -419411000000109,[X]Sprain and strain of other and unspecified parts of knee -419891000000102,[X]Other primary coxarthrosis -420454001,Consultation for chronic pain -420650002,Consultation for pain -421946003,Consultation for acute pain -422965008,Compensated movement at site of pain -423093000,Tendinitis of flexor tendon of hand -423184003,Adult pain assessment -423226005,Tendinitis of finger -423401003,Pediatric pain assessment -423417009,Tendinitis of hand -423778009,Tenosynovitis of hand -423810002,Tendinitis of wrist -424010006,Tendinitis of hip -424295009,Pain behavior present -42452002,Thoracic radiculopathy -424548006,Elbow hygroma -4248008,Synovitis AND/OR tenosynovitis associated with another disease -424806009,Stated pain intensity within acceptable range -425421000000105,[X]Other chest pain -425423002,Pain provoked by movement -42545001,Subacute arthritis -425473004,Pain radiating to left shoulder -42561004,Reminiscent neuralgia -425677008,Pain radiating to left arm -425746004,Pain provoked by light -425772008,Tendinitis of foot -425781002,Pain provoked by running -425831002,Pain characterized by relieving factor -425834005,Pain radiating to right flank -425839000,Pain radiating to head -425908001,Pain radiating to thoracic region right side -425940002,Inflammation of bursa of olecranon -426068005,Pain provoked by altercation -426120002,Pain provoked by rest -426135001,Chronic prostatitis - chronic pelvic pain syndrome -426142001,Pain radiating to right shoulder -426206001,Constant pain -426218005,Tendinitis of flexor hallucis longus -426277009,Pain provoked by eating -426351003,Pain provoked by lifting -426394008,Calcific tendinitis of achilles tendon -426466001,Pain radiating to left flank -426469008,Pain radiating to left leg -42647000,"Pain sensation, function" -426483005,Pain radiating to thoracic region left side -426555006,Pain radiating to jaw -426566004,Central pain syndrome -426628005,Chronic vaginal pain -426702003,Pain in female pelvis -426774001,Pain characterized by provoking factor -426803004,Pain radiating to right arm -426829004,Temporomandibular joint capsulitis -426845002,Bursitis of finger -426899007,Pain provoked by walking -426976009,Pain provoked by breathing -427128002,Gradual onset of pain -427146008,Pain provoked by coughing -427191004,Bursitis of intermetatarsal bursa -427252003,Pain radiating to right side of chest -427293006,Pain radiating to left side of chest -427310006,Pain radiating to neck -427341007,Pain provoked by exertion -427365005,Pain radiating to center of chest -427475007,Pain radiating to lumbar region of back -427500003,Arthropathy of cervical spine facet joint -427653003,Pain radiating to right leg -427878002,Arthropathy of the hand associated with a neurological disorder -427925000,Arthropathy of the wrist associated with a neurological disorder -427935006,Pain relief by rest -427947000,Monoarthritis of hip joint -427972000,Pudendal neuralgia -428097001,Disorder of hip joint -428104002,Arthritis of midtarsal joint -428107009,Disorder of wrist joint -428143003,Arthritis of joint of toe -428264009,Painful gait -428339009,Disorder of joint of foot -428346000,Pain relief by medication -428360003,Arthropathy of joint of hand -428432004,Spontaneous pain -428460002,Arthropathy of thoracic facet joint -428539005,Strain of triceps brachii muscle -428557006,Squeezing pain -428643002,Pain relief by supine position -428671008,Arthropathy of lumbar facet joint -428724006,Arthropathy of knee joint -428779003,Arthropathy of the knee associated with a neurological disorder -428911004,Pain relief by walking -428926002,Pain onset at rest -42898009,Acute polyarthritis -429038000,Pain onset during sleep -429051000000106,[D]Pain in head NOS -429056000,Pain onset during exertion -429147006,Pain relief related to position -429298008,Climacteric arthritis of spine -429350001,Arthropathy of spinal facet joint -429360005,Tendinitis of knee -429422002,Rheumatic arthritis of temporomandibular joint -429459001,Arthritis of acromioclavicular joint -429492007,Pain relief by sitting up -429501000000104,[X]Other spondylosis with radiculopathy -429531000,Pain on passive stretch of joint -429554009,Arthropathy of elbow -429555005,Sacral arthritis -429643006,Arthropathy of the elbow associated with a neurological disorder -429661000000101,[X]Sprain and strain of other and unspecified parts of wrist and hand -429722003,Strain of flexor muscle of hip -429742007,Pain onset during moderate exercise -430428000,Arthropathy of the ankle AND/OR foot associated with a neurological disorder -430474001,Secondary adhesive capsulitis -430879002,Posterior auricular pain -430894003,Strain of muscle of chest wall -430906009,Strain of rectus femoris muscle -430968008,Pain in male perineum -431956005,Suspected inflammatory arthritis -432463002,Arthropathy of the hip associated with a neurological disorder -432615008,Chronic pain in face -432733005,Acute degenerative joint disease of shoulder region -433159008,Acute pain in female pelvis -43470008,Pain in heart -43548008,Mittelschmerz -4368004,Strain of back -43751000119109,Periorbital and/or eye pain -43763009,Glossopharyngeal neuralgia -43781007,"Other specified arthropathy, NEC" -43800000,Bursitis of wrist -43829003,Chronic osteoarthritis -438505003,Strain of trapezius muscle -438551000000106,[X]Other enthesopathy of foot -439071000000104,[X]Other synovitis and tenosynovitis -43915000,Sprain of superior tibiofibular joint AND/OR ligament -439656005,Arthritis of elbow -440341000000101,[X]Persistent somatoform pain disorder -440571000000100,[D]Painful respiration NOS -441702008,Strain of muscle and/or tendon of wrist -441711008,Chronic psychogenic pain -441761004,Sprain of ligament of face -441932009,Strain of muscle and/or tendon of hand -441933004,Strain of muscle and/or tendon of lower leg -442048005,Tenosynovitis of wrist -442092007,Strain of muscle of face -442130003,Strain of muscle and/or tendon of elbow region -44221002,Idiopathic polyarthritis -442246002,Disorder of joint of ankle and/or foot -442265005,Strain of muscle and/or tendon of forearm -442372009,Strain of muscle and/or tendon of thigh -44245003,Tibial collateral ligament bursitis -442520000,Inflammation of rotator cuff tendon -443341000000106,([D]Pain: (in head NOS) or (jaw)) -443798008,Inflammation of joint of shoulder region -444381000000100,[X]Sprain and strain of other and unspecified parts of thorax -444561000000102,[X]Arthrosis -44465007,Sprain of ankle -444899003,Pain in forearm -444971006,Inflammation of extensor tendon of hand -444972004,Inflammation of tendon of metatarsophalangeal joint of second toe -444979008,Inflammation of flexor carpi ulnaris muscle tendon -445117007,Inflammation of flexor carpi radialis muscle tendon -445247000,Inflammation of bursa of patella -445271007,Villous arthritis -445276002,Inflammation of extensor carpi ulnaris muscle tendon -445290004,Inflammation of extensor pollicis longus muscle tendon -445335008,Inflammation of extensor indicis muscle tendon -445422000,Joint pain in ankle and foot -445478004,Degenerative joint disease of pelvis -445760005,Acute sprain of ligament of neck -446198006,Strain of infraspinatus muscle -446199003,Strain of supraspinatus muscle -448394006,Inflammation of joint of foot -448589005,Inflammation of joint of hand -449313005,Referred pain in face -449823005,Tenosynovitis of thumb -449941000000105,"[X]Other bursitis, not elsewhere classified" -450101000000104,[X]Lumbar and other intervertebral disc disorders with radiculopathy -450321000000106,"[X]Other enthesopathies of lower limb, excluding foot" -450331000000108,"[X]Other enthesopathies, not elsewhere classified" -450521003,Osteoarthritis of patellofemoral joint -45064008,Primary localized osteoarthrosis of thigh -450721000000107,[X]Other bursitis of elbow -451201000000104,[X]Other primary arthrosis of first carpometacarpal joint -452131000000106,[X]Other primary gonarthrosis -45231001,Infrapatellar bursitis -45326000,Shoulder pain -4568003,Retrosternal pain -45861001,Pes anserinus tendinitis -45979003,Abdominal wind pain -462691000000108,"[D]Flatulence, eructation and gas pain NOS" -463331000000107,[X]Other specified arthritis -464831000000100,[X]Sprain and strain of joints and ligaments of other and unspecified parts of head -464921000000107,[X]Juvenile arthritis in other diseases classified elsewhere -46578006,Lumbosacral radiculitis -467271000000108,[X] Primary gonarthrosis: [other] or [unilateral] -468091000000102,[X]Other polyarthrosis -46860007,Sprain of ligament of cricothyroid joint -468971000000100,[X]Sprain and strain of other and unspecified parts of lumbar spine and pelvis -469101000000100,[X]Sprain and strain of other and unspecified parts of shoulder girdle -471000119102,Somatic dysfunction of sacroiliac joint -471371000000100,[X]Sprain and strain of other and unspecified parts of foot -471551000000103,[D]Chest pain NOS -473007007,Cervical discogenic pain -473008002,Pain in cheek -473009005,Pain in palate -473434003,Pain in chin -477931000000109,"[X]Enthesopathy of lower limb, unspecified" -478421000000104,[X]Other chronic pain -478451000000109,[X]Other juvenile arthritis -478731000000105,[X]Other streptococcal arthritis and polyarthritis -47874006,Sprain of arm -47933007,Foot pain -479711000000108,[X]Sprain and strain of other and unspecified parts of thorax -481000119104,Strain of hamstring muscle -48210000,Lumbosacral spondylosis without myelopathy -48274004,Sprain of thyroid cartilage -48429009,Somatic pain -48532005,Muscle strain -48926009,Pain in spine -491431000000104,Cervical spondylosis -491441000000108,Fibromyalgia -49218002,Hip pain -49388007,Sprain of foot -49575005,Shooting pain -495911000000100,"[D]Pain, generalised" -496001000000108,[D]Acute pain -496011000000105,[D]Chronic intractable pain -496291000000107,[D]Growing pains - limbs -496301000000106,[D]Musculoskeletal pain -49650001,Dysuria -4969004,Sinus headache -497111000000109,[D]Facial pain -498151000000109,[D]Chest pain -498161000000107,[D]Precordial pain -498171000000100,[D]Anterior chest wall pain -498181000000103,[D]Pleuritic pain -498231000000105,[D]Parasternal chest pain -498241000000101,[D]Musculoskeletal chest pain -498251000000103,[D]Non-cardiac chest pain -498491000000107,"[D]Flatulence, eructation and gas pain" -498671000000105,[D]Defaecation painful -498681000000107,[D]Pain in oesophagus -499071000000107,[D]Vesical pain -499191000000105,[D]Suprapubic pain -499221000000103,[D]Groin pain -499231000000101,[D]Loin pain -499271000000104,[D]Pelvic and perineal pain -49986002,Central pain -50127006,Tibialis tendinitis -502141000000102,"[D]Chest pain, unspecified" -502361000000104,[D]Retrosternal pain -502561000000106,[D]Jaw pain -502571000000104,[D]Right upper quadrant pain -502581000000102,[D]Left upper quadrant pain -502641000000109,[D]Retrosternal chest pain -502711000000102,[D]Painful respiration -502821000000101,[D]Left lower quadrant pain -502831000000104,[D]Right lower quadrant pain -50415004,Moderate pain -50442003,Palindromic rheumatism -50642008,Algodystrophy -50818007,Painful ejaculation -50921008,Periarthritis -51049005,Primary localized osteoarthrosis of ankle AND/OR foot -513131000000100,Pain in wrist -51388003,Pharyngeal pain -51428002,Bog spavin -5150003,Sprain of symphysis pubis -515481000000109,Pain or discomfort -515491000000106,Symptoms such as pain -51736007,Sprain of septal cartilage of nose -51741000119105,Acute ankle pain -51777006,"Pain self-management deficit, chronic" -51881000119109,Chronic ankle pain -52084006,Sprain of carpal joint -52598005,Rest pain -53057004,Hand pain -53208009,Peroneal tendinitis -53332000,Spinal arthritis deformans -534221000000101,On examination - painful ear NOS -53574006,Girdle pain -536851000000100,Backache symptom NOS -540501000000100,On examination - abdominal pain on palpation NOS -54314008,Putti-Chavany syndrome -54404000,Cervical radiculopathy -544491000000101,Bursitis of the knee NOS -544501000000107,Knee enthesopathy NOS -544511000000109,Tendinitis NOS -54617005,Tibialis posticus tendinitis -54848004,Sprain of other specified site of knee and leg -54888009,Sprain of knee -54942004,Sprain of sternum -551151000000104,Other and ill-defined sprains and strains -551161000000101,"Jaw sprain, unspecified" -551171000000108,Jaw sprain NOS -551181000000105,"Thyroid region sprain, unspecified" -551191000000107,Thyroid region sprain NOS -551201000000109,Rib sprain unspecified -551211000000106,Rib sprain NOS -551221000000100,Sternum sprain unspecified -551231000000103,Sternum sprain NOS -551241000000107,"Sprain of pelvis, unspecified" -551251000000105,Sprain of pelvis NOS -551261000000108,Other specified sprains and strains -55145008,Stabbing pain -55146009,Inflammation of sacroiliac joint -55350005,Hungry -55406008,Hyperalgesia -55865003,Cluster headache -558651000000104,"Localized osteoarthritis, unspecified, of the ankle and foot" -558661000000101,"Localized osteoarthritis, unspecified, of other specified site" -558671000000108,"Arthrosis of first carpometacarpal joint, unspecified" -558681000000105,"Localized osteoarthritis, unspecified, NOS" -558691000000107,"Oligoarticular osteoarthritis, unspecified" -558701000000107,"Oligoarticular osteoarthritis, unspecified, of unspecified sites" -558711000000109,Unspecified monoarthritis of unspecified site -558721000000103,Unspecified monoarthritis of the shoulder region -559961000000104,Chest pain NOS -564151000000108,Back pain without radiation NOS -564211000000101,On examination - pain sensation NOS -565041000000108,On examination - sign painful NOS -56608008,Pain in wrist -566891000000100,Other general diseases with associated arthropathy -566901000000104,Shoulder sprain NOS -566911000000102,Upper arm sprain NOS -566921000000108,Other elbow sprain -568161000000104,"Arthritis associated with other disease, distal radioulnar joint" -568201000000107,"Arthritis associated with other disease, distal interphalangeal joint of finger" -568561000000109,Earache symptom NOS -57149003,"Tenosynovitis of hand and wrist, NEC" -572971000000100,Pain character NOS -57356000,Bursitis of hand -576511000000100,"Osteoarthritis NOS, of elbow" -576531000000108,Forearm sprain NOS -576541000000104,Wrist sprain unspecified -576571000000105,Hand sprain NOS -57676002,Joint pain -57693002,Degenerative joint disease of pelvic region -5771000119106,Phantom limb syndrome with pain -581171000000104,Enthesopathy of the ankle unspecified -581181000000102,Enthesopathy of the tarsus unspecified -58156007,Primary localized osteoarthrosis -58278007,"Other enthesopathy of ankle and tarsus, NEC" -5853003,Sprain of lower extremity -587181000000107,"Osteoarthritis NOS, of distal radioulnar joint" -587191000000109,Other specified arthropathy of the forearm -587201000000106,"Osteoarthritis NOS, of proximal interphalangeal joint of finger" -587211000000108,"Osteoarthritis NOS, of distal interphalangeal joint of finger" -587221000000102,Other specified arthropathy of other specified site -587231000000100,"Osteoarthritis NOS, of hip" -58769002,Subacute rheumatic arthritis -58772009,Sprain of sacrum -58781003,Gluteal tendinitis -588301000000104,"Arthritis associated with other disease, sternoclavicular joint" -588311000000102,"Arthritis associated with other disease, wrist" -588321000000108,"Arthritis associated with other disease, metacarpophalangeal joint" -588331000000105,"Arthritis associated with other disease, proximal interphalangeal joint of finger" -588341000000101,"Oligoarticular osteoarthritis, unspecified, of the shoulder region" -588351000000103,"Arthritis associated with other disease, hip" -588361000000100,"Arthritis associated with other disease, sacroiliac joint" -588371000000107,"Arthritis associated with other disease, knee" -588381000000109,"Oligoarticular osteoarthritis, unspecified, of hand" -590901000000104,Generalized osteoarthritis of unspecified site -590911000000102,Generalized osteoarthritis NOS -590921000000108,"Localized, primary osteoarthritis of unspecified site" -59139008,Crushing chest pain -59185006,Primary localized osteoarthrosis of lower leg -59201007,Sprain of chondrosternal joint -594431000000107,"Localized, primary osteoarthritis of other specified site" -594441000000103,"Osteoarthritis NOS, of 1st metatarsophalangeal joint" -594451000000100,"Localized, primary osteoarthritis NOS" -594841000000101,Wrist or carpus enthesopathy NOS -594861000000100,Elbow enthesopathy unspecified -594871000000107,Elbow enthesopathy NOS -59603003,Phantom limb syndrome -597331000000105,Ankle and foot sprain NOS -600131000000101,Other sprains -600411000000102,Temporomandibular joint disorder NOS -60058008,Sprain of cruciate ligament of knee -6011000119108,Transient arthritis -604841000000108,Other forearm sprain -604851000000106,Elbow sprain NOS -607681000000107,Other chronic pain -608830002,Discogenic pain -608831003,Thoracic discogenic pain -608832005,Lumbar discogenic pain -60932006,Buttock pain -609495006,Sprain of ankle grade III -611721000000109,Eye pain NOS -61203005,Lumbar AND/OR sacral arthritis -61264001,"Pain self-management deficit, acute" -614491000000104,Other shoulder sprain -614501000000105,Other upper arm sprain -614511000000107,Hand sprain unspecified -614601000000109,Unspecified monoarthritis of the hand -614611000000106,Unspecified monoarthritis of the pelvic region and thigh -614721000000106,"Osteoarthritis NOS, of interphalangeal joint of toe" -614801000000108,Articular cartilage disorder of other joints of the shoulder girdle -614831000000102,Palindromic rheumatism of unspecified site -61486003,Sacral back pain -616461000000101,"Neck sprain, unspecified" -616471000000108,Sprains and strains NOS -61830005,Sphenopalatine neuralgia -620541000000106,Other sprains NOS -62171003,Plantar heel pain -625131000000101,"Localized osteoarthritis, unspecified, of the pelvic region and thigh" -625461000000100,"Hip enthesopathy, unspecified" -625471000000107,Hip enthesopathy NOS -625481000000109,Metatarsalgia NOS -625491000000106,Ankle or tarsus enthesopathy NOS -625501000000100,Other peripheral enthesopathies -625511000000103,Enthesopathy NOS -625521000000109,Periarthritis NOS -625531000000106,Peripheral enthesopathy NOS -625651000000100,Trigeminal neuralgia NOS -625671000000109,Other specified trigeminal neuralgia -62647006,Painful spasm of anus -627841000000108,Other and ill-defined sprains and strains NOS -629821000000108,Arthralgia of unspecified site -629831000000105,Arthralgia of other specified site -630071000000107,Synovial osteochondromatosis of other tarsal joint -630321000000105,Capsulitis NOS -63052008,Sprain of atlanto-axial joint -631000119102,Chronic back pain greater than three months duration -631091000000104,Wrist and hand sprain NOS -631101000000107,Other hip sprain -63117002,Sprain of elbow -635131000000103,Unspecified polyarthropathy of the lower leg -635141000000107,Unspecified polyarthropathy of the ankle and foot -635361000000105,Palindromic rheumatism NOS -637091000000105,"Osteoarthritis NOS, of the lower leg" -637101000000102,"Osteoarthritis NOS, of ankle and foot" -637111000000100,Unspecified polyarthropathy or polyarthritis NOS -637121000000106,Arthropathy NOS -637131000000108,"Arthropathy NOS, of the upper arm" -637141000000104,"Arthropathy NOS, of the forearm" -637151000000101,"Arthropathy NOS, of the pelvic region and thigh" -637161000000103,"Arthropathy NOS, of the lower leg" -637171000000105,"Arthropathy NOS, of the ankle and foot" -637211000000108,Other tenosynovitis of the hand -638451000000105,Rheumatism shoulder NOS -64166009,Subpatellar bursitis -643261000000101,"Backache, unspecified" -643801000000104,Unspecified otalgia -647101000000103,"Localized osteoarthritis, unspecified, of the lower leg" -647111000000101,Osteoarthritis NOS -647121000000107,"Osteoarthritis NOS, of the hand" -647131000000109,"Osteoarthritis NOS, pelvic region/thigh" -648401000000105,Other pelvic pain - female -650141000000104,"Osteoarthritis NOS, of the upper arm" -65259006,Sprain of atlanto-occipital joint -65323003,Polymyalgia rheumatica -653461000000100,"Osteoarthritis NOS, of wrist" -653471000000107,"Osteoarthritis NOS, of metacarpophalangeal joint" -653481000000109,Other specified arthropathy of the ankle and foot -653491000000106,Other specified inflammatory polyarthropathy -653521000000109,Other specified inflammatory polyarthropathy NOS -653531000000106,Inflammatory polyarthropathy NOS -6561007,Pain in urethra -656661000000109,"Osteoarthritis NOS, of sternoclavicular joint" -65684000,Sprain of neck -657001000000102,"Neuralgia, neuritis or radiculitis NOS" -657461000000108,"Oligoarticular osteoarthritis, unspecified, of lower leg" -657471000000101,Unspecified monoarthritis of the upper arm -657481000000104,Unspecified monoarthritis of the forearm -65761003,Inflammatory pain -659571000000106,"Localized osteoarthritis, unspecified" -659591000000105,"Localized osteoarthritis, unspecified, of the shoulder region" -659601000000104,"Localized osteoarthritis, unspecified, of the upper arm" -659621000000108,"Localized osteoarthritis, unspecified, of the forearm" -659631000000105,"Localized osteoarthritis, unspecified, of the hand" -659641000000101,Transient arthropathy of unspecified site -66056001,Causalgia -661531000000103,"Localized osteoarthritis, unspecified, of unspecified site" -661561000000108,Climacteric arthritis of unspecified site -661571000000101,Climacteric arthritis of other specified site -661581000000104,Climacteric arthritis NOS -661601000000108,Transient arthropathy of other specified site -661611000000105,Transient arthropathy of other tarsal joint -661621000000104,Transient arthropathy NOS -6617009,Referred pain -66191007,Transient arthropathy -66405000,Sprain of radiohumeral joint -664241000000106,"Osteoarthritis NOS, of ankle" -664251000000109,"Osteoarthritis NOS, of other tarsal joint" -664261000000107,"Arthropathy NOS, of multiple sites" -664271000000100,"Osteoarthritis NOS, of lesser metatarsophalangeal joint" -66452006,Stenosing tenosynovitis -66540002,Back strain of thoracic region -665941000000104,Psychogenic pain unspecified -665951000000101,Psychalgia NOS -666351000000107,Palindromic rheumatism of other specified site -666411000000104,"Arthritis associated with other disease, subtalar joint" -666421000000105,"Arthritis associated with other disease, interphalangeal joint of toe" -666431000000107,"Osteoarthritis NOS, of unspecified site" -666441000000103,"Osteoarthritis NOS, of shoulder region" -666451000000100,"Osteoarthritis NOS, other specified site" -666611000000101,Spondylosis NOS -666681000000108,"Rotator cuff syndrome, unspecified" -666691000000105,Rotator cuff syndrome NOS -667071000000103,Synovitis or tenosynovitis NOS -667141000000105,"Osteoarthritis NOS, of talonavicular joint" -667511000000103,"Osteoarthritis NOS, of sacroiliac joint" -667531000000106,"Osteoarthritis NOS, of knee" -667541000000102,"Osteoarthritis NOS, of tibiofibular joint" -667551000000104,"Osteoarthritis NOS, of subtalar joint" -667611000000104,Myalgia and myositis unspecified -667631000000107,Myalgia or myositis NOS -667651000000100,"Neuralgia, neuritis and radiculitis unspecified" -667681000000106,Neuralgia unspecified -667691000000108,Radiculitis unspecified -66822008,Subacute arthropathy -669081000000109,Other specified nonarticular rheumatism -671901000000107,Other thigh sprain -671911000000109,Hip sprain NOS -671921000000103,Thigh sprain NOS -671931000000101,Other specified knee sprain -671941000000105,Other specified leg sprain -671951000000108,Knee sprain NOS -671961000000106,Leg sprain NOS -671971000000104,"Ankle sprain, unspecified" -671981000000102,Ankle sprain NOS -671991000000100,"Foot sprain, unspecified" -672001000000102,Foot sprain NOS -67315001,Degenerative joint disease of shoulder region -674051000119103,Chronic neck pain for greater than 3 months -674241000000100,Rheumatism elbow NOS -674251000000102,Rheumatism wrist NOS -674261000000104,Rheumatism hand NOS -6744007,Painful bladder spasm -674731000000102,Trigeminal neuralgia [no drugs here] -67536000,Arthropathy associated with a neurological disorder -675541000000101,Myalgia unspecified -67577001,Degenerative joint disease of thigh -675861000000102,Rheumatism knee NOS -675871000000109,Rheumatism ankle/foot NOS -675881000000106,Pain in limb NOS -676871000000104,Rheumatism hip NOS -677991000000108,Other synovitis and tenosynovitis -678001000000104,Bursitis NOS -67801009,Tenosynovitis -678131000000109,Rheumatism and fibrositis unspecified -67849003,Excruciating pain -679341000000108,"Osteoarthritis NOS, of the forearm" -680151000000109,Unspecified polyarthropathy of the upper arm -680161000000107,Unspecified polyarthropathy of the forearm -680171000000100,Unspecified polyarthropathy of the hand -680181000000103,Unspecified polyarthropathy of the pelvic region and thigh -680231000000105,Unspecified monoarthritis of the ankle and foot -680241000000101,Unspecified monoarthritis of other specified site -680271000000107,Other specified arthropathy of the upper arm -68172002,Disorder of tendon -682021000000102,"Arthritis associated with other disease, shoulder" -682031000000100,"Arthritis associated with other disease, acromioclavicular joint" -682041000000109,"Arthritis associated with other disease, elbow" -682051000000107,"Oligoarticular osteoarthritis, unspecified, of upper arm" -682061000000105,"Oligoarticular osteoarthritis, unspecified, of forearm" -682071000000103,Unspecified polyarthropathy of other specified site -682081000000101,Unspecified polyarthropathy of multiple sites -682091000000104,"Oligoarticular osteoarthritis, unspecified, of the pelvic region and thigh" -683441000000109,Nonarticular rheumatism NOS -684471000000101,Sprain of other parts of back -68449006,Coxitis -684511000000105,Other specified sacroiliac sprains -684521000000104,Sacroiliac sprain NOS -684531000000102,Neck sprain NOS -684541000000106,"Sacral sprain, unspecified" -684551000000109,Sacrum sprain NOS -684561000000107,Back sprain NOS -685061000000104,Other tenosynovitis of hand or wrist -685331000000106,Rheumatism or fibrositis NOS -685371000000108,Rheumatism unspecified -6858004,Capsulitis -68693003,Degenerative joint disease involving multiple joints -687001000000108,Arthralgia of other tarsal joint -687011000000105,Arthralgia NOS -68718000,Cervical spondylarthritis -68744000,"Other enthesopathy of elbow, NEC" -688471000000105,"Oligoarticular osteoarthritis, unspecified, of other specified sites" -688481000000107,"Oligoarticular osteoarthritis, unspecified, of multiple sites" -688501000000103,"Osteoarthritis NOS, of shoulder" -688511000000101,Other specified arthropathy -688521000000107,Unspecified monoarthritis NOS -688561000000104,Other specified arthropathy of the hand -688571000000106,Other specified arthropathy of the pelvic region and thigh -688581000000108,Other specified arthropathy of the lower leg -68859000,Spondylosis without myelopathy -688601000000104,Other specified arthropathy of multiple sites -688611000000102,Other specified arthropathy NOS -688631000000105,"Arthropathy NOS, of unspecified site" -688641000000101,"Arthropathy NOS, of the shoulder region" -688661000000100,"Arthropathy NOS, of the hand" -688671000000107,"Arthropathy NOS, of other specified site" -689531000000101,"Arthritis associated with other disease, other tarsal joint" -689541000000105,"Arthritis associated with other disease, 1st metatarsophalangeal joint" -689551000000108,"Arthritis associated with other disease, lesser metatarsophalangeal joint" -68962001,Muscle pain -689661000000105,Other juvenile arthritis -691671000000103,Unspecified polyarthropathy or polyarthritis -693081000000105,Wrist sprain NOS -694141000000104,Otalgia NOS -695071000000107,"Arthritis associated with other disease, tibiofibular joint" -695081000000109,"Arthritis associated with other disease, ankle" -69521007,Chronic crepitant synovitis of wrist -696271000000106,Unspecified polyarthropathy of unspecified site -696281000000108,Unspecified polyarthropathy of the shoulder region -697681000000109,"Arthritis associated with other disease, talonavicular joint" -697691000000106,"Oligoarticular osteoarthritis, unspecified, of ankle and foot" -697701000000106,"Osteoarthritis of more than one site, unspecified, NOS" -697711000000108,Unspecified monoarthritis of the lower leg -697721000000102,Other specified arthropathy of unspecified site -698006004,Pulpalgia -698014005,Mentalis strain -698121000000102,Rheumatism multiple NOS -698474005,Monoarthritis of knee -698475006,Monoarthritis of hand -698476007,Monoarthritis of wrist -698477003,Monoarthritis of joint of shoulder region -698478008,Monoarthritis of elbow -698479000,Monoarthritis of ankle and/or foot -69896004,Rheumatoid arthritis -699046000,Craniofacial pain -699190008,Paroxysmal extreme pain disorder -699207005,Arthritis of pelvis -699261008,Post infectious osteoarthritis -699302001,Lumbar arthritis -699462004,Monoarthritis -699682009,Localized masticatory muscle soreness -699911000000101,Foot arthritis NOS -699921000000107,Ankle arthritis NOS -699931000000109,Knee arthritis NOS -699941000000100,Hip arthritis NOS -699951000000102,Wrist arthritis NOS -699961000000104,Elbow arthritis NOS -699971000000106,Toe osteoarthritis NOS -699981000000108,Foot osteoarthritis NOS -699991000000105,Ankle osteoarthritis NOS -700001000000101,Thumb osteoarthritis NOS -700011000000104,Finger osteoarthritis NOS -700021000000105,Muscle sprain NOS -700031000000107,Tendon sprain NOS -700051000000100,Joint sprain NOS -700061000000102,Ligament sprain NOS -700111000000103,Other specified arthropathy of the shoulder region -700121000000109,"Osteoarthritis NOS, of acromioclavicular joint" -700293006,Primary osteoarthritis of ankle -700304006,Primary osteoarthritis of calcaneocuboid joint -700305007,Osteoarthritis of calcaneocuboid joint -700313008,Primary osteoarthritis of subtalar joint -700324005,Osteoarthritis of talonavicular joint -700325006,Primary osteoarthritis of talonavicular joint -700333007,Primary osteoarthritis of first metatarsophalangeal joint -700354000,Disorder of peroneal tendon -700380004,Insertional Achilles tendinopathy -700381000,Non-insertional Achilles tendinopathy -700469003,Frequency of pain symptom -700503001,Extracorporeal shockwave lithotripsy for calcific tendinitis of shoulder -700669005,Arthritis transcutaneous electrical nerve stimulation system -702191000000108,Osteoarthritis - other joint -702549002,Centrally mediated myalgia -702567009,Disorder of posterior tibial muscle tendon -702605005,Disorder of Achilles tendon -702812003,Acute pain clinic -702976005,Retrodiscitis of temporomandibular joint -703051004,Osteoarthritis of midfoot -703052006,Primary osteoarthritis of midfoot -703619001,Pelvic girdle pain -704174008,Chronic synovitis -704571000000108,Shoulder arthritis NOS -704631000000107,Myalgia/myositis of neck -704675005,Inadequate pain control -704677002,Tarsalgia -704871000000105,Hand arthritis NOS -705641000000102,Other tenosynovitis of the wrist -706955002,Pain relieved by analgesic -70704007,Sprain of wrist -708020008,Pain in lower limb on elevation -709591000000108,Pain in wrist -710110008,Phantom pain -710134003,Acute muscle stiffness of neck -710230000,Painful os peroneum syndrome -710302002,Radionuclide scan of joint of lower limb -711331000000102,Leg pain on elevation -711511000000102,Pain relieved by lowering leg -712482006,Bursitis of lower limb -712483001,Bursitis of upper limb -712484007,Bursitis of elbow -712537009,Complex regional pain syndrome of upper limb -712752004,Myalgia of pelvic floor -712885003,Strain of biceps brachii muscle and/or tendon -71303008,Atypical facial pain -71315007,Dyspareunia -713413001,Joint pain of pelvic region -713482002,Osteoarthritis of facet joint of thoracic spine -713777005,Non-radiographic axial spondyloarthritis -713826008,Osteoarthritis of lumbar spinal facet joint -713829001,Postinfective intercostal neuralgia -713831005,Postinfective peripheral neuralgia -713837009,Postinfective segmental peripheral neuralgia -713858003,Peroneal tenosynovitis -71393004,Soreness -71508003,Nodular tenosynovitis -715835003,Periodontal ligament strain -716102003,Strain of muscle of hand -716189005,Osteoporosis and macrocephaly with blindness and joint hypermobility syndrome -71644003,Degenerative joint disease of forearm -717253001,Drilling quality pain -71760005,Cervico-occipital neuralgia -717717002,Non-cyclic pelvic pain -718519003,Entrapment of superficial branch of radial nerve -71884009,Precordial pain -719061006,Diurnal variation of pain -720363008,Arthritis of lumbosacral spine -720753002,Cranioosteoarthropathy -721148005,Hip dysplasia Beukes type -721156008,Cyclic pelvic pain -721908003,Strain of muscle of anterior chest wall -72274001,Nerve root disorder -722812008,Strain of muscle of wrist -722813003,Strain of tendon of wrist -722829006,Acute pain of scrotum -723070002,Variation of pain -723116002,Axial spondyloarthritis -723300005,Freezing pain -723316007,Electric shock type pain -723322003,Somatic dysfunction of scapulothoracic joint -724606001,Peripheral spondyloarthritis -724883005,Strain of muscle at thorax level -724884004,Strain of fascia at thorax level -724885003,Strain of tendon at thorax level -724891001,Strain of fascia of lower back -724892008,Strain of tendon of lower back -724893003,Strain of muscle of pelvis -724894009,Strain of fascia of pelvis -724895005,Strain of tendon of pelvis -724916006,Strain of muscle of long head of biceps brachii -724917002,Strain of fascia of long head of biceps brachii -724924001,Strain of biceps brachii muscle -724925000,Strain of fascia of biceps brachii -724926004,Strain of tendon of biceps brachii -724933004,Strain of fascia of triceps brachii -724934005,Strain of tendon of triceps brachii -724956008,Strain of flexor muscle of finger at forearm level -724957004,Strain of fascia of flexor muscle of finger at forearm level -724958009,Strain of flexor tendon of finger at forearm level -724965001,Strain of flexor muscle at forearm level -724966000,Strain of fascia of flexor muscle at forearm level -724967009,Strain of flexor tendon at forearm level -724974004,Strain of extensor muscle of finger at forearm level -724975003,Strain of fascia of extensor muscle of finger at forearm level -724976002,Strain of tendon of extensor muscle of finger at forearm level -724983009,Strain of extensor muscle at forearm level -724984003,Strain of fascia of extensor muscle at forearm level -724985002,Strain of tendon of extensor muscle at forearm level -725006009,Strain of muscle of head -725007000,Strain of fascia of head -725008005,Strain of tendon of head -725016001,Strain of fascia of neck -726193003,Strain of intrinsic muscle of thumb -726194009,Strain of fascia of intrinsic muscle of thumb -726195005,Strain of tendon of intrinsic muscle of thumb -726202009,Strain of intrinsic muscle of finger -726203004,Strain of fascia of intrinsic muscle of finger -726204005,Strain of tendon of intrinsic muscle of finger -726219006,Strain of muscle of hip -726220000,Strain of fascia of muscle of hip -726221001,Strain of tendon of muscle of hip -726228007,Strain of adductor muscle of thigh -726229004,Strain of fascia of adductor muscle of thigh -726230009,Strain of tendon of adductor muscle of thigh -726325008,Strain of intrinsic muscle of foot -726326009,Strain of fascia of intrinsic muscle of foot -726327000,Strain of tendon of intrinsic muscle of foot -72634002,Sprain of ligament of tarsometatarsal joint -726531007,Myofascial pain syndrome -72702002,Bucked shins -73063007,Colicky pain -73096009,Sprain of other specified site of hip and thigh -73105000,Pes anserinus bursitis -73180008,Sprain of ligament of cricoarytenoid joint -733259007,Strain of carpal joint -733260002,Strain of carpometacarpal joint -733261003,Strain of finger -734947007,Complex regional pain syndrome type I -734986006,Complex regional pain syndrome of lower limb -734987002,Complex regional pain syndrome of foot -734988007,Complex regional pain syndrome of knee -734989004,Complex regional pain syndrome of hand -735598004,Oligoosteoarthritis -735644008,Chronic nociceptive pain -735766007,Sprain of sternocostal ligament -73583000,Epicondylitis -735830000,Strain of thumb -735839004,Strain of quadriceps muscle -735888004,Sprain of interphalangeal joint of lesser toe -735889007,Strain of lesser toe -735890003,Strain of great toe -735891004,Sprain of metatarsophalangeal joint of great toe -735892006,Sprain of collateral ligament of interphalangeal joint of great toe -735893001,Sprain of metatarsophalangeal joint of lesser toe -735903009,Sprain of ligament of trunk -735936005,Chronic neuropathic pain -735937001,Acute pain in face -735940001,Pain of intercostal space -736428003,Chronic arthralgia of temporomandibular joint -736447000,Infrequent episodic arthralgia of temporomandibular joint -73645008,Visceral pain -736464002,Chronic idiopathic pain syndrome -737057000,Osteoarthritis of joint of left ankle and/or foot -737214003,Enthesopathy of upper limb -737305006,Primary chronic pain -737306007,Chronic visceral pain -737607009,Infrapatellar bursitis of left knee -737608004,Infrapatellar bursitis of right knee -738068003,Pain relief by lowering leg -74050005,Orf virus disease -74123003,Otogenic otalgia -74323005,Pain in elbow -74383007,Sprain of distal tibiofibular ligament -74391003,Pauciarticular juvenile rheumatoid arthritis -7441009,Juvenile chronic polyarthritis -74779009,Strain of rotator cuff capsule -74885006,Interphalangeal osteoarthritis -74991000000108,Anterior knee pain -75111000,Painful ophthalmoplegia -75483001,Breathing painful -75572007,Polyradiculopathy -75680005,Psoas tendinitis -75851004,Scalp tenderness -75983009,Vidian neuralgia -761957004,Scapulothoracic bursitis -762239006,Myofascial pain with referral -762452003,Chronic musculoskeletal pain -762454002,Chronic orofacial pain -762589002,Chronic primary visceral pain -762590006,Chronic primary generalized pain -762591005,Chronic primary musculoskeletal pain -762593008,Chronic primary orofacial pain -762596000,Chronic pain following radiotherapy -762599007,Chronic mechanical visceral pain -762602002,Chronic central neuropathic pain -762603007,Chronic peripheral neuropathic pain -762607008,Orofacial neuropathic pain -76660003,Chronic articular rheumatism -76691009,Brachial plexus neuralgia -767051000000100,Arthritis of foot -767061000000102,Arthritis of hand -767071000000109,Arthritis of hip -767189000,Synovial cyst of multiple joints -7674000,Greater trochanteric pain syndrome -76807004,Cervicobrachialgia -76948002,Severe pain -770639006,Magnetic resonance arthrography of carpometacarpal joint -771083005,Pain in upper arm -771545003,Painful and cold lower limb -771546002,Painful and cold upper limb -77299006,Olecranon bursitis -77323000,Inflammation of subtendinous bursa of biceps femoris inferior muscle -773968006,Bursitis of right hip -773969003,Bursitis of left hip -774129008,Arthropathy of left knee joint -774130003,Arthropathy of right knee joint -774131004,Arthropathy of joint of right hand -774132006,Arthropathy of joint of left hand -774133001,Pain of right forearm -774134007,Pain of right shoulder blade -774135008,Pain of left shoulder blade -774136009,Pain of right acromioclavicular joint -774137000,Pain of left acromioclavicular joint -77538000,Superficial pain -77602000,Charcot's arthropathy -77841000119108,Thoracolumbar radiculopathy -77880009,Rectal pain -77888002,Climacteric arthritis -77994009,Primary localized osteoarthrosis of pelvic region -781021000000103,Chronic idiopathic pain syndrome -781239004,Tendinitis of left pes anserinus tendon -781240002,Tendinitis of right pes anserinus tendon -781241003,Tendinitis of long head of biceps brachii of right shoulder -781242005,Tendinitis of long head of biceps brachii of left shoulder -781387006,Strain of thumb tendon -781439002,Strain of finger tendon -781440000,Strain of plantaris tendon -781442008,Strain of extensor digitorum tendon -781444009,Strain of extensor pollicis longus tendon -781445005,Strain of flexor digitorum profundus tendon -781446006,Strain of flexor digitorum superficialis tendon -781447002,Strain of foot flexor tendon -781448007,Strain of foot extensor tendon -781449004,Strain of flexor pollicis longus tendon -781455009,Strain of wrist extensor tendon -781456005,Strain of wrist flexor tendon -78162001,Sprain of radiocarpal joint AND/OR ligament -782538005,Tendinitis of ankle -782661001,Chronic sacroiliac joint pain -784332006,Spondyloarthritis -784545009,Synovitis of ankle joint -784546005,Synovitis of joint of foot -78514002,Thigh pain -785723001,Persistent idiopathic facial pain -78631000000108,De Quervain's tenosynovitis -786837007,Tingling pain -786961001,Strain of tendon of hand -78715003,Subdeltoid bursitis -789021004,Radiculopathy due to spondylosis -789394007,Tendinitis of shoulder region -789754007,Tendinitis of rotator cuff tendon -789758005,Strain of rotator cuff of shoulder -7921000119104,Anterior pleuritic pain -79231000000101,Anterior knee pain -792886009,Pain in pinna -7942009,Sprain of coracoclavicular ligament -804671000000107,Patellofemoral osteoarthritis -804701000000106,Tenosynovitis of thumb -80780008,Subcoracoid bursitis -80843008,Degenerative joint disease -80852004,"Tenosynovitis of foot and ankle, NEC" -81077008,Acute rheumatic fever with acute arthritis -81455003,Primary localized osteoarthrosis of forearm -81498004,Bursitis of hip -8161000119106,Arthritis co-occurrent and due to Crohn's disease -816641000000106,Constant pain -81680005,Neck pain -81712001,Pain in female genitalia on intercourse -81902001,Sprain of medial collateral ligament of knee -8191000119104,Arthropathy of wrist due to neurological disorder -81953000,Chest pain on exertion -82116008,Hallucinatory neuralgia -82300000,Degenerative joint disease of ankle AND/OR foot -82304009,Kissing spine -82423001,Chronic pain -82473003,Radiculitis -82695005,Sprain of xiphoid cartilage -82991003,Generalized aches and pains -830068003,Sphenobasilar synchondrosis vertical strain -830292003,Pain in left lumbar region -830293008,Pain in right lumbar region -8316001,Arthropathy -833289001,Tenderness of anatomical snuffbox -83576001,Sprain of metatarsophalangeal joint -83644001,Dull pain -838412000,Pain in lumbar region on palpation -838491000000108,Rheumatism -83921000119106,"Complex regional pain syndrome, Type I, of head and/or trunk" -84017003,Bursitis -84172003,Spondylitis -846645002,Tenosynovitis of elbow -847561000000101,Low back pain clinical pathway -847571000000108,Following low back pain clinical pathway protocol -84801008,Jaccoud's syndrome -85007004,Meralgia paresthetica -85011000119101,Pain in male pelvis -850791000000102,Osteoarthritis of sternoclavicular joint -850811000000101,Osteoarthritis of talonavicular joint -855871000000104,Complex regional pain syndrome -85611000119105,Undifferentiated spondyloarthropathy -85651000000102,Mechanical low back pain -85878006,Sprain of leg -86260003,Pain around eye -86278008,Sprain of coccyx -86319008,Strain of subscapularis muscle -86345004,Bertolotti's syndrome -866043000,Neuralgia of twelfth thoracic nerve -870393001,Strain of tendon of foot -870394007,Strain of tendon of ankle -870767005,Sprain of palmar radiocarpal ligament -870768000,Sprain of ulnar carpal complex ligament -8708008,Sharp pain -871492003,Sprain of sacrospinous ligament -87381000119101,Vertebral joint pain -874561000000109,Osteoarthritis of spinal facet joint -87494005,Achilles bursitis -8753005,Adhesive capsulitis of shoulder -87548005,Dyspepsia -876351000000106,Pelvic girdle pain -87778004,Sprain of hand -879181000000107,Primary osteoarthritis of ankle -879221000000102,Primary osteoarthritis of talonavicular joint -879261000000105,Primary osteoarthritis of subtalar joint -879301000000100,Osteoarthritis of calcaneocuboid joint -879311000000103,Primary osteoarthritis of calcaneocuboid joint -879351000000104,Osteoarthritis of midfoot -879371000000108,Primary osteoarthritis of midfoot -879411000000107,Primary osteoarthritis of first metatarsophalangeal joint -879611000000105,Achilles tendinopathy -879621000000104,Insertional Achilles tendinopathy -879631000000102,Non-insertional Achilles tendinopathy -879651000000109,Tendinopathy of tibialis posterior tendon -8799007,Posterior heel pain -879931000000105,Tendinopathy of peroneal tendon -879969009,Breakthrough pain -880087005,Strain of muscle of lower leg -880088000,Strain of tendon of lower leg -880089008,Strain of muscle and tendon of lower leg -881461000000104,Extracorporeal shockwave lithotripsy for calcific tendinopathy of shoulder -88201009,Sprain of other specified site of elbow and forearm -88220006,Pachydermoperiostosis syndrome -88230002,Disorder of skeletal system -88269008,Thalamic syndrome -88305002,Disorder of the vertebral column -8847002,Spondylosis -885251000000103,Private referral to pain management service -885261000000100,Private referral to pain management service -88638003,Sprain of ischiocapsular ligament -88906006,Sprain of deltoid ligament of ankle -890351008,Distal symphalangism of bilateral distal interphalangeal joints -8971008,Psychalgia -89813001,"Other peripheral enthesopathy, NEC" -89874002,Xiphoidalgia syndrome -905331000000109,Calcific bursitis -905501000000107,Nonspecific polyarthritis -90631008,Sprain of sacrococcygeal ligament -90654004,Sprain of iliofemoral ligament -90682006,Sprain of sternoclavicular joint AND/OR ligament -90834002,Pain in limb -91866004,Adhesions of temporomandibular joint -91943004,Arthralgia of temporomandibular joint -91944005,Arthritis of temporomandibular joint -91945006,Articular disc disorder of temporomandibular joint -919541000000106,Axial spondyloarthritis -919551000000109,Axial spondyloarthritis -921261000000101,Shoulder joint painful on external rotation -921271000000108,Shoulder joint painful on external rotation -9267009,Chest pain at rest -92823009,Articular crepitus of temporomandibular joint -934571000000105,Pain assessment tool completed -936361000000103,Sprain or strain of joint of head -936371000000105,Sprain or strain of joint of thorax -937141000000103,Splitting pain -937151000000100,Heavy pain -937161000000102,Gnawing pain -937171000000109,Cramping pain -937181000000106,Throbbing pain -937191000000108,Sore pain -937201000000105,Intermittent pain -937211000000107,Shoulder joint painful on movement -937221000000101,Observation of pattern of pain -937231000000104,Constant pain -937241000000108,Observation of affective dimension of pain -937251000000106,Punishing with pain -937261000000109,Fearful with pain -937271000000102,Sickening with pain -937281000000100,Tiring with pain -941000119103,Strain of knee -943471000000108,Intervertebral disc disorder with radiculopathy -95412009,Pigmented villonodular synovitis -95414005,Calcific tendinitis -95415006,Polymyalgia -95417003,Primary fibromyalgia syndrome -95419000,Acute muscle stiffness of neck -95421005,Intercostal myalgia -95523006,Pain of jaw -95668009,Pain in face -95669001,Superior laryngeal neuralgia -95670000,Nervus intermedius neuralgia -957321000000107,Flexor digitorum tenosynovitis of foot -957391000000105,Gluteal bursitis -957401000000108,Cubital bursitis -957411000000105,Subcutaneous calcaneal bursitis -957911000000100,Enthesitis of lower limb -957921000000106,Enthesitis of upper limb -957931000000108,Enthesitis of elbow -957941000000104,Enthesitis of triceps tendon -957951000000101,Enthesitis of knee -957961000000103,Enthesitis of patellar tendon -957971000000105,Enthesitis of medial collateral ligament of knee -957981000000107,Enthesitis of lateral collateral ligament of knee -957991000000109,Enthesitis of proximal end of patellar tendon -958001000000100,Enthesitis of distal end of patellar tendon -958011000000103,Enthesitis of quadriceps tendon -958021000000109,Enthesitis of Achilles tendon -958031000000106,Enthesitis of foot and ankle -961000119104,Sprain of shoulder rotator cuff -9626006,Mechanical pain -97001000119106,Localized chest pain -975221000000105,Chronic pain -98071000119100,Arthropathy of shoulder due to neurological disorder -990471000000108,Chronic pain -9972008,Radiating pain -999001581000000106,Pain finding simple reference set -999002471000000100,Pain aggravating factors simple reference set -999002521000000103,Pain easing factors simple reference set diff --git a/tests/acceptance/external_studies/waiting-list/codelists/primis-covid19-vacc-uptake-chd_cov.csv b/tests/acceptance/external_studies/waiting-list/codelists/primis-covid19-vacc-uptake-chd_cov.csv new file mode 100644 index 000000000..f0a3f461a --- /dev/null +++ b/tests/acceptance/external_studies/waiting-list/codelists/primis-covid19-vacc-uptake-chd_cov.csv @@ -0,0 +1,4114 @@ +code,term +1003678001,Heart disease due to thyrotoxicosis +1003848008,Recoarctation of aorta following procedure +1003863006,Stenosis of truncal valve following procedure +1003874002,Dilatation of neo-ascending aorta following procedure +1003919001,Acquired stenosis of common atrioventricular valve following procedure +100751000119101,Venous thrombosis due to central venous access device +10091002,High output heart failure +1010291002,Anastomosis of left internal thoracic artery to left anterior descending coronary artery +1010405004,Paroxysmal atrial fibrillation with rapid ventricular response +1010570006,Sequential anastomosis of left internal thoracic artery from second obtuse marginal branch of circumflex coronary artery to left anterior descending coronary artery +1010571005,Sequential anastomosis of left internal thoracic artery from first obtuse marginal branch of circumflex coronary artery to left anterior descending coronary artery +1010572003,Sequential anastomosis of left internal thoracic artery from ramus intermedius branch of left coronary artery to left anterior descending coronary artery +1010627004,Pulmonary hypertension due to developmental abnormality +1010688007,Anastomosis of left internal thoracic artery to diagonal branch of anterior descending branch of left coronary artery +1010729007,Thromboembolus of artery of upper limb +1010730002,Thromboembolus of artery of lower limb +101281000119107,Congestive heart failure due to cardiomyopathy +1017203005,Anastomosis of left internal thoracic artery to intermediate artery +1017205003,Anastomosis of left internal thoracic artery to obtuse marginal branch of circumflex branch of left coronary artery +1017227007,Sequential anastomosis of left internal thoracic artery from second diagonal branch of anterior descending branch of left coronary artery to left anterior descending artery +1017228002,Sequential anastomosis of left internal thoracic artery from first diagonal branch of anterior descending branch of left coronary artery to left anterior descending artery +1017229005,Sequential anastomosis of left internal thoracic artery from proximal portion of anterior descending branch of left coronary artery to mid portion of anterior descending branch of left coronary artery +1017232008,Sequential anastomosis of left internal thoracic artery from proximal portion of anterior descending branch of left coronary artery to distal portion of anterior descending branch of left coronary artery +1017233003,Sequential anastomosis of left internal thoracic artery from mid portion of anterior descending branch of left coronary artery to distal portion of anterior descending branch of left coronary artery +10190003,Aortocoronary bypass of four or more coronary arteries +10273003,Acute infarction of papillary muscle +103011000119106,Coronary arteriosclerosis in patient with history of previous myocardial infarction +10326007,"Coronary artery bypass with autogenous graft, three grafts" +10335000,Chronic right-sided heart failure +10365005,Right main coronary artery thrombosis +104346171000119109,Thrombophlebitis of right peroneal vein +10451007,Double aortic arch +1051801000000108,Replacement of single chamber intravenous cardiac pacemaker system +1051811000000105,Replacement of dual chamber intravenous cardiac pacemaker system +1051821000000104,Replacement of biventricular intravenous cardiac pacemaker system +1051831000000102,Replacement of single chamber cardiac pacemaker system +1051841000000106,Replacement of biventricular cardiac pacemaker +1051851000000109,Replacement of dual chamber cardiac pacemaker system +105981003,Disorder of cardiac function +10633002,Acute congestive heart failure +10743121000119108,Aortic valve disorder in mother complicating childbirth +10743741000119103,Cardiac arrhythmia in mother complicating childbirth +10745231000119102,Cardiac arrest due to administration of anesthesia for obstetric procedure in pregnancy +10749961000119104,Occlusion of aortoiliac artery +10750641000119101,Cardiac arrest due to failed attempted abortion +10753101000119102,Heart disease in mother complicating childbirth +10757401000119104,Pre-existing hypertensive heart and chronic kidney disease in mother complicating childbirth +10757441000119102,Pre-existing hypertensive heart disease in mother complicating childbirth +10757481000119107,Pre-existing hypertensive heart and chronic kidney disease in mother complicating pregnancy +10759031000119106,Pre-existing hypertensive heart disease in mother complicating pregnancy +10759191000119106,Septic thrombophlebitis in puerperium +10759311000119104,Pulmonary embolism in childbirth +10760181000119109,Cardiac arrest due to miscarriage +1078223005,Thrombosis of cerebral venous sinus due to and following surgical procedure +10805641000119102,Congenital cardiovascular anomaly in mother complicating childbirth +10809641000119100,Mitral valve disorder in mother complicating childbirth +10811961000119109,Cardiac arrest due to incomplete miscarriage +10818008,Congenital malposition of heart +108411000119109,Mural thrombus of left atrium +108421000119102,Mural thrombus of left ventricle +1086051000119107,Cardiomyopathy due to diphtheria +108701000119102,Cardiomyopathy due to hypertension +1089431000000107,Postoperative nontransmural myocardial infarction +1089441000000103,Postoperative transmural myocardial infarction +1089451000000100,Acute nontransmural myocardial infarction +1089471000000109,Acute transmural myocardial infarction +10930001,Congenital atresia of pulmonary artery +109379000,Traumatic interventricular septal defect +109425008,Single right ventricle +109426009,Single left ventricle +109427000,Supracristal ventricular septal defect +109428005,Perimembranous ventricular septal defect +109429002,Single muscular ventricular septum defect +109430007,Multiple muscular ventricular septum defect +109431006,Ebstein-like malformation of mitral valve +109432004,Anomalous cardiac muscle bands +10964002,Progressive pulmonary hypertension +10971000087107,Myocardial ischemia during surgery +11018701000119109,Coronary arteriosclerosis after percutaneous coronary angioplasty +11029002,Pulmonary apoplexy +111000119104,Nonischemic congestive cardiomyopathy +11101003,Percutaneous transluminal coronary angioplasty +111027004,Interventricular cardiac septal hypertrophy +11104006,Dilated cardiomyopathy due to phytanic acid storage disease +111283005,Chronic left-sided heart failure +111285003,Dilated cardiomyopathy due to metabolic disorder +111287006,Tricuspid valve regurgitation +111289009,Arteriovenous fistula of pulmonary vessels +111293003,Venous thrombosis +111296006,Basilar artery embolism +111319002,"Truncus arteriosus, Edwards' type IV" +111321007,Right aortic arch +111322000,Congenital anomaly of pulmonary veins +111323005,Total anomalous pulmonary venous return +111458008,Venous thrombosis in puerperium +111497000,Arterial thrombosis of spinal cord +1119298000,Acquired abnormality of mitral subvalvular apparatus +1119299008,Mitral regurgitation due to congenital abnormality of mitral subvalvular apparatus +1119300000,Mitral regurgitation due to acquired abnormality of mitral subvalvular apparatus +1131009,Congenital valvular insufficiency +1137377003,Cardiomyopathy due to thyrotoxicosis +1137687006,Regurgitation of left atrioventricular (not morphologically mitral) valve +11399002,Pulmonary hypertensive arterial disease +1141742009,Regurgitation of right atrioventricular (not morphologically tricuspid) valve +1141882007,Congenital endocardial fibroelastosis +1142043006,Regurgitation of pulmonary valve due to late syphilis +1142095003,Late congenital syphilis of cardiovascular system +1142308000,Mitral valve regurgitation due to acute myocardial infarction +11433004,Congenital coronary artery fistula +1144420008,Sclerosis of cusp of aortic valve +1144644003,Anastomosis of right internal thoracic artery to anterior descending branch of left coronary artery +1144645002,Anastomosis of right internal thoracic artery to obtuse marginal branch of circumflex branch of coronary artery +1144646001,Anastomosis of right internal thoracic artery to marginal branch of right coronary artery +1144647005,Anastomosis of right internal thoracic artery to diagonal branch of anterior descending branch of left coronary artery +1144889004,Anastomosis of right internal thoracic artery to intermediate artery +1144890008,Anastomosis of right internal thoracic artery to posterior descending artery +1144912000,Chronic thrombotic microangiopathy +1144964006,Acute intravascular thrombotic microangiopathy +1145183007,Thrombosis of pampiniform plexus +1145198009,Coronary artery bypass grafting using free right internal thoracic artery graft from aorta to diagonal branch of anterior descending branch of left coronary artery +1145199001,Coronary artery bypass grafting using free right internal thoracic artery graft from aorta to anterior descending branch of left coronary artery +1145200003,Coronary artery bypass grafting using free right internal thoracic artery graft from aorta to obtuse marginal branch of circumflex branch of coronary artery +1148584007,Venous thrombosis in pregnancy +1148587000,Phlegmasia alba dolens in pregnancy +1148690000,Coronary artery bypass grafting using free right internal thoracic artery graft from aorta to intermediate artery +1148691001,Coronary artery bypass grafting using free right internal thoracic artery graft from aorta to posterior descending artery +1148765006,Chronic carditis due to rheumatic heart disease +1148894007,Venous thrombosis following assisted fertilization +1149059007,Coronary artery bypass grafting using free right internal thoracic artery graft from aorta to marginal branch of right coronary artery +1149060002,Coronary artery bypass grafting using free right internal thoracic artery graft from aorta to posterior lateral branch of circumflex branch of left coronary artery +1149066008,Chronic pancarditis due to rheumatic heart disease +1149109001,Dilated cardiomyopathy due to electrolyte imbalance +1149361009,Cardiac arrest due to procedure +1149362002,Cardiac arrest during procedure +1149472000,Thrombophlebitis of bilateral lower limbs in pregnancy +1149473005,Thrombophlebitis of bilateral lower limbs in puerperium +1153452008,Dilated cardiomyopathy due to parasitic myocarditis +1153611009,Embolism of left anterior cerebral artery +1153612002,Embolism of right anterior cerebral artery +1153630009,Embolism of left carotid artery +1153631008,Embolism of right carotid artery +1153632001,Embolism of bilateral middle cerebral arteries +1153633006,Embolism of bilateral posterior cerebral arteries +1153634000,Embolism of bilateral anterior cerebral arteries +1155686006,Coronary artery bypass grafting using free right internal thoracic artery graft from left internal thoracic artery to intermediate artery +1155687002,Coronary artery bypass grafting using free right internal thoracic artery graft from left internal thoracic artery to obtuse marginal branch of circumflex branch of left coronary artery +1155688007,Embolism of bilateral carotid arteries +1155689004,Embolism of bilateral cerebellar arteries +1155697006,Embolism of left vertebral artery +1155698001,Embolism of right vertebral artery +1155699009,Embolism of bilateral vertebral arteries +1155719000,Rheumatic mitral valve obstruction +1155721005,Rheumatic aortic valve obstruction +1155919006,Acute rheumatic fever with aortitis +1156016006,Thrombosis of left posterior cerebral artery +1156017002,Thrombosis of right posterior cerebral artery +1156018007,Thrombosis of left cerebellar artery +1156019004,Thrombosis of right cerebellar artery +1156027008,Thrombus of dural sinus in pregnancy +1156029006,Thrombus of dural sinus in puerperium +1156983007,Coronary artery bypass grafting using free right internal thoracic artery graft from left internal thoracic artery to diagonal branch of anterior descending branch of left coronary artery +1156984001,Coronary artery bypass grafting using free right internal thoracic artery graft from left internal thoracic artery to anterior descending branch of left coronary artery +11614003,Congenital stenosis of pulmonary veins +116291000119103,Occlusion of renal artery due to embolism +1162915007,Congenital accessory tissue of tricuspid valve +1163244009,Pulmonary thromboembolism following operative procedure +1163259003,Non syndromic dextrocardia +1163420005,Pericardial effusion following myocardial infarction +1163438008,Idiopathic fascicular ventricular tachycardia +1163440003,Postoperative acute myocardial infarction +117051000119103,Chronic total occlusion of coronary artery +1172565007,Postoperative stenosis of pulmonary vein +1172698005,"Recurrent metabolic encephalomyopathic crises, rhabdomyolysis, cardiac arrhythmia, intellectual disability syndrome" +1172839002,"Lethal left ventricular non-compaction, seizures, hypotonia, cataract, developmental delay syndrome" +1173036000,Combined oxidative phosphorylation defect type 23 +1177176009,Intermediate epidermolysis bullosa simplex with cardiomyopathy +1179293006,Erythrokeratodermia cardiomyopathy syndrome +1179295004,Blood vessel epicardial substance related limb girdle muscular dystrophy +1179298002,Familial patent arterial duct +11851006,Mitral valve disorder +1186709006,Filamin A-related X-linked myxomatous valvular dysplasia +1186711002,"G protein subunit beta 5-related intellectual disability, cardiac arrhythmia syndrome" +1186718008,"Neonatal encephalomyopathy, cardiomyopathy, respiratory distress syndrome" +1186866009,Cardiomyopathy due to acromegaly +1187113001,Mucopolysaccharidosis-like plus disease +1187212004,"Severe hypotonia, psychomotor developmental delay, strabismus, cardiac septal defect syndrome" +1187508009,Immunoglobulin G4 related aortitis +1187642008,"Macrocephaly, intellectual disability, left ventricular non compaction syndrome" +119564002,Internal mammary-coronary artery bypass graft +119565001,"Coronary artery bypass graft, anastomosis of artery of thorax to coronary artery" +119731000146105,Cardiomyopathy due to disease caused by severe acute respiratory syndrome coronavirus 2 +1197418004,"Familial atrial tachyarrhythmia, infra-Hisian cardiac conduction disease" +1197430005,Glutaminyl-transfer ribonucleic acid amidotransferase subunit-related combined oxidative phosphorylation defect +119772003,Coronary artery closure +119773008,Coronary artery reconstruction +120041000119109,Atrial fibrillation with rapid ventricular response +1201858000,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to second obtuse marginal branch of circumflex coronary artery and left anterior descending coronary artery +12023003,Rheumatic disease of aortic valve +1204126008,Cholesterol atheromatous embolism of digital artery +1204127004,Chronic dissection of coronary artery +1204128009,Cholesterol atheromatous embolism of cerebrum +1204130006,Central basal perimembranous ventricular septal defect +1204141008,Thrombosis of deep vein of calf +1204144000,Atherosclerosis of axillary artery +1204145004,Atherosclerosis of brachial artery +1204151009,Acute inferior non-ST segment elevation myocardial infarction of right ventricle +1204152002,Acute inferior non-ST segment elevation myocardial infarction +1204154001,Acute anterior non-ST segment elevation myocardial infarction with right ventricular involvement +1204155000,Acute anterior non-ST segment elevation myocardial infarction +1204172007,Atherosclerosis of superficial femoral artery +1204173002,Atherosclerosis of popliteal artery +1204174008,Atherosclerosis of subclavian artery +1204175009,Atherosclerosis of crural artery +1204176005,Atherosclerosis of iliac artery +1204177001,Acute occlusion of subclavian artery due to thromboembolus +1204178006,Acute occlusion of subclavian artery due to thrombosis +1204179003,Acute occlusion of renal artery due to thromboembolus +1204180000,Acute occlusion of renal artery due to thrombosis +1204181001,Acute occlusion of popliteal artery due to thrombosis +1204182008,Acute occlusion of iliac artery due to thrombosis +1204183003,Acute occlusion of popliteal artery due to thromboembolus +1204184009,Acute occlusion of crural artery due to thrombosis +1204185005,Acute occlusion of iliac artery due to thromboembolus +1204186006,Acute occlusion of common femoral artery due to thrombosis +1204187002,Acute occlusion of crural artery due to thromboembolus +1204192000,Aneurysm of apex of heart due to apical hypertrophic cardiomyopathy +1204193005,Aneurysm of aorta due to congenital heart disease +1204194004,Hypertrophic cardiomyopathy of apex of heart +1204195003,Acute occlusion of visceral artery due to thromboembolus +1204196002,Acute occlusion of visceral artery due to thrombosis +1204197006,Acute occlusion of superficial femoral artery due to thromboembolus +1204198001,Acute occlusion of superficial femoral artery due to thrombosis +1204200007,Left ventricular failure with normal ejection fraction due to valvular heart disease +1204203009,Left ventricular failure with normal ejection fraction due to coronary arteriosclerosis +1204204003,Left ventricular failure with normal ejection fraction due to myocarditis +1204206001,Left ventricular failure with normal ejection fraction due to cardiomyopathy +1204210003,Inflammation of aortic valve +1204212006,Acute occlusion of brachial artery due to thrombosis +1204213001,Acute occlusion of common femoral artery due to thromboembolus +1204214007,Acute occlusion of brachial artery due to thromboembolus +1204215008,Acute occlusion of axillary artery due to thromboembolus +1204216009,Acute occlusion of axillary artery due to thrombosis +1204217000,Acute occlusion of artery due to thromboembolus +1204218005,Acute occlusion of artery due to thrombosis +1204219002,Acute occlusion of aortic bifurcation due to thromboembolus +1204220008,Acute occlusion of aortic bifurcation due to thrombosis +1204222000,Acute non-ST segment elevation myocardial infarction of right ventricle +1204285000,Removal of leadless implantable cardiac pacemaker +1204377006,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to proximal portion of anterior descending branch of left coronary artery and distal portion of anterior descending branch of left coronary artery +1204378001,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to proximal portion of anterior descending branch of left coronary artery and mid portion of anterior descending branch of left coronary artery +1204460007,Myocardial dysfunction with sepsis +1204462004,Left ventricular failure with sepsis +1204468000,Right ventricular failure with sepsis +12075007,Congenital hypoplasia of ascending aorta +1208430005,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to mid and distal portion of anterior descending branch of left coronary artery +120851000119104,Systolic heart failure stage D +120861000119102,Systolic heart failure stage C +1208673009,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to intermediate artery and second obtuse marginal branch of circumflex branch of left coronary artery +1208675002,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to first obtuse marginal branch of circumflex branch of left coronary artery and anterior descending branch of left coronary artery +1208676001,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to intermediate artery to anterior descending branch of left coronary artery +120871000119108,Systolic heart failure stage B +1208760004,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to first diagonal branch of left anterior descending coronary artery to left anterior descending coronary artery +1208761000,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to second diagonal branch of left anterior descending coronary artery to left anterior descending coronary artery +1208768006,Persistent flow of blood into aneurysm sac following endovascular insertion of stent graft into aorta +120881000119106,Diastolic heart failure stage D +1208816008,Arterial obstruction due to thrombotic embolism from aneurysm of popliteal artery +1208818009,Arterial obstruction due to thrombotic embolism from aneurysm of thoracic aorta +1208819001,Arterial obstruction due to paradoxical embolism +1208822004,Arterial obstruction due to thrombotic embolism from aneurysm of abdominal aorta +1208842008,Thromboembolism of vein due to thrombosis of vein of upper limb +1208843003,Right ventricular failure due to heart valve disorder +1208844009,Arterial obstruction due to thrombotic embolism from aneurysm of ventricle +1208846006,Right ventricular failure due to disorder of lung +1208847002,Thromboembolism of vein due to thrombosis of vein of lower limb +1208848007,Right ventricular failure due to disorder of pulmonary circulation +1208850004,Right ventricular failure due to right ventricular infarction +1208856005,Arterial obstruction due to thrombotic embolism from mural thrombus of atrium of heart +1208857001,Periprosthetic aortic valve regurgitation +1208858006,Arterial obstruction due to thrombotic embolism from mural thrombus of ventricle of heart +1208861007,Long QT syndrome type 4 +1208863005,Long QT syndrome type 5 +1208864004,Long QT syndrome type 2 +1208865003,Embolism of vein from thrombosis of vena cava +1208866002,Long QT syndrome type 3 +1208867006,Ventricular thrombus following acute myocardial infarction +1208868001,Long QT syndrome type 12 +1208870005,Long QT syndrome type 13 +1208872002,Subsequent anterior non-ST segment elevation myocardial infarction +1208873007,Subsequent inferior non-ST segment elevation myocardial infarction +1208875000,Stenosis of renal artery due to fibromuscular dysplasia +1208881008,Long QT syndrome type 11 +1208884000,Long QT syndrome type 10 +1208909006,Long QT syndrome type 6 +120891000119109,Diastolic heart failure stage C +1208911002,Long QT syndrome type 9 +1208916007,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to intermediate artery and first obtuse marginal branch of circumflex branch of left coronary artery +1208917003,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to intermediate artery and third diagonal branch of anterior descending branch of left coronary artery +1208919000,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to intermediate artery and second diagonal branch of anterior descending branch of left coronary artery +1208940004,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to intermediate artery and first diagonal branch of anterior descending branch of left coronary artery +1208942007,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to first diagonal branch of anterior descending branch of left coronary artery and third marginal circumflex coronary artery +1208943002,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to first diagonal branch of anterior descending branch of left coronary artery and first marginal circumflex coronary artery +1208976003,Mural thrombus of atrium of heart +1208977007,Mural thrombus of ventricle of heart +1208998007,"Tumor necrosis factor receptor associated factor 7-associated heart defect, digital anomalies, facial dysmorphism, motor and speech delay syndrome" +120901000119108,Diastolic heart failure stage B +1209060000,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to first and third diagonal branches of anterior descending branch of left coronary artery +1209061001,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to first and second diagonal branches of anterior descending branch of left coronary artery +1209062008,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to second and third diagonal branches of anterior descending branch of left coronary artery +1209115004,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to first and third obtuse marginal branches of circumflex branch of left coronary artery +1209117007,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to first and second obtuse marginal branches of circumflex branch of left coronary artery +1209119005,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to intermediate artery and third obtuse marginal branch of circumflex branch of left coronary artery +1209120004,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to first obtuse marginal branch of circumflex branch of left coronary artery and posterior descending coronary artery +1209172009,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to left posterior lateral branch of circumflex branch of left coronary artery and posterior descending coronary artery +1209174005,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to third obtuse marginal branch of circumflex branch of left coronary artery and posterior descending coronary artery +1209180002,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to third obtuse marginal branch and left posterior lateral branch of circumflex branch of left coronary artery +1209203006,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to second obtuse marginal branch and left posterior lateral branch of circumflex branch of left coronary artery +1209204000,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to second and third obtuse marginal branch of circumflex branch of left coronary artery +1209205004,Sequential anastomosis of free right internal thoracic artery from left internal thoracic artery to second obtuse marginal branch of circumflex branch of left coronary artery and posterior descending coronary artery +1217153005,Anastomosis of left internal thoracic artery to third diagonal branch of anterior descending branch of left coronary artery +1217155003,Anastomosis of left internal thoracic artery to second obtuse marginal branch of circumflex branch of left coronary artery +1217157006,Anastomosis of left internal thoracic artery to second diagonal branch of anterior descending branch of left coronary artery +1217158001,Anastomosis of left internal thoracic artery to proximal portion of anterior descending branch of left coronary artery +1217161000,Anastomosis of left internal thoracic artery to mid portion of anterior descending branch of left coronary artery +1217162007,Anastomosis of left internal thoracic artery to first obtuse marginal branch of circumflex branch of left coronary artery +1217165009,Anastomosis of left internal thoracic artery to first diagonal branch of anterior descending branch of left coronary artery +1217166005,Anastomosis of left internal thoracic artery to distal portion of anterior descending branch of left coronary artery +1217168006,Anastomosis of left internal thoracic artery to third obtuse marginal branch of circumflex branch of left coronary artery +1217277007,Percutaneous coronary intervention of ramus intermedius branch of left main coronary artery +1217309008,Percutaneous coronary intervention on ostium of left main coronary artery +12224461000119108,Infection of transplanted heart +1222571004,Percutaneous transluminal insertion of bare metal stent into coronary artery using fluoroscopic guidance with contrast +1222673007,Percutaneous transluminal insertion of drug eluting stent into left main coronary artery using fluoroscopic guidance with contrast +1222674001,Percutaneous transluminal balloon angioplasty of left main coronary artery +1222708006,"Transmembrane protein 94-associated congenital heart defect, facial dysmorphism, developmental delay syndrome" +1222710008,"Neurodevelopmental disorder, craniofacial dysmorphism, cardiac defect, skeletal anomalies syndrome" +12232008,Syphilitic aneurysm of aorta +12236991000119103,Pain at rest of bilateral lower limbs co-occurrent and due to atherosclerosis +12237111000119107,Pain at rest of left lower limb co-occurrent and due to atherosclerosis +12237231000119107,Pain at rest of right lower limb co-occurrent and due to atherosclerosis +12237791000119102,Acute thrombosis of superficial vein of bilateral upper limbs +12237831000119108,Acute thrombosis of superficial vein of left upper limb +12237871000119106,Acute thrombosis of superficial vein of right upper limb +12238111000119106,Acute ST segment elevation myocardial infarction of inferolateral wall +12238151000119107,Acute ST segment elevation myocardial infarction of inferoposterior wall +1229876001,Lethal brain and heart developmental defects syndrome +1230062001,Congenital atresia of inferior vena cava without azygos continuation +1230096008,Timothy syndrome +1230097004,Atypical Timothy syndrome +1230182004,Acute lower limb ischemia +1230303001,Fatal congenital hypertrophic cardiomyopathy due to glycogen storage disease +1230344000,"Microphthalmia, microtia, fetal akinesia syndrome" +1230407004,Cardiac tamponade following operative procedure +1231779006,Implantation of leadless cardiac pacemaker +1234750000,Dilated cardiomyopathy caused by ethanol +1234785000,Replacement of cardiac resynchronization therapy defibrillator pulse generator +1234788003,Replacement of leadless cardiac pacemaker +1234905008,Implantation of subcutaneous cardioverter defibrillator lead +1234908005,Congenital azygos continuation of inferior vena cava +1234910007,Congenital straddling and overriding tricuspid valve +1235006003,Implantation of cardiac resynchronization defibrillator lead +123641001,Left coronary artery occlusion +123642008,Right coronary artery occlusion +123643003,Acquired atresia of pulmonary valve +123656005,Congenital atresia of cardiac valve +123657001,Congenital stenosis of cardiac valve +123658006,Congenital cleft of cardiac valve +123659003,Congenital malrotation of heart +123660008,Dextrorotation of heart +12367281000119109,Mural thrombus of right ventricle +12367321000119104,Mural thrombus of right atrium +1236755008,Implantation of cardiac resynchronization defibrillator system +1237074000,Congenital atrioventricular septal defect +1237076003,Acquired atrioventricular septal defect +1237129009,Atherosclerosis of artery of left lower limb +1237130004,Atherosclerosis of artery of right lower limb +1237512003,"Short stature, developmental delay, congenital heart defect syndrome" +123801008,Heart valve stenosis and regurgitation +1254657004,Stenosis of proximal portion of right coronary artery +1254658009,Stenosis of mid portion of right coronary artery +1254659001,Stenosis of distal portion of right coronary artery +1254660006,Stenosis of marginal branch of right coronary artery +1254661005,Stenosis of posterior lateral branch of right coronary artery +1254662003,Stenosis of posterior descending branch of right coronary artery +1254663008,Stenosis of distal portion of anterior descending branch of left coronary artery +1254664002,Stenosis of diagonal branch of anterior descending branch of left coronary artery +1254665001,Stenosis of septal branch of anterior descending branch of left coronary artery +1254666000,Stenosis of ostium of right coronary artery +1255187002,Stenosis of obtuse marginal branch of circumflex branch of left coronary artery +1255188007,Stenosis of left posterior lateral branch of circumflex branch of left coronary artery +1255189004,Stenosis of left posterior descending circumflex coronary artery +1255256006,Stenosis of proximal portion of circumflex branch of left coronary artery +1255257002,Stenosis of mid portion of circumflex branch of left coronary artery +1255258007,Stenosis of distal portion of circumflex branch of left coronary artery +1255264000,Stenosis of coronary intermediate artery +1255265004,Stenosis of proximal portion of anterior descending branch of left coronary artery +1255266003,Stenosis of mid portion of anterior descending branch of left coronary artery +1255319004,"Autosomal dominant intellectual disability, craniofacial anomalies, cardiac defects syndrome" +1255569006,Stenosis of ostium of left main coronary artery +1255621004,Stenosis of distal segment of left coronary artery main stem +1255622006,Stenosis of mid segment of left coronary artery main stem +1255623001,Stenosis of ostium of anterior descending branch of left coronary artery +1255624007,Stenosis of ostium of circumflex branch of left coronary artery +12563008,Dilated cardiomyopathy caused by radiation +1258883002,Thromboembolus of vein following surgical procedure +1258884008,Tumor thrombus of inferior vena cava +1258930006,Percutaneous coronary intervention on mid-segment of left main coronary artery +1258931005,Percutaneous coronary intervention on distal segment of left main coronary artery +1258934002,Atherosclerosis of femoral artery +125963005,Patent ductus arteriosus with left-to-right shunt +125964004,Patent ductus arteriosus with right-to-left shunt +1260142000,"Congenital vertebral, cardiac, renal anomalies syndrome" +126037009,Traumatic rupture of aorta +126729006,Thrombotic microangiopathy +127014009,Peripheral angiopathy due to diabetes mellitus +12770006,Cyanotic congenital heart disease +1279006,Repair of cardiac pacemaker pocket in skin AND/OR subcutaneous tissue +128053003,Deep venous thrombosis +128054009,Deep venous thrombosis of upper extremity +128055005,Deep venous thrombosis of pelvic vein +128238001,Chronic heart disease +128404006,Right heart failure +128551005,Aortic fistula +128555001,Congenital coronary artery fistula to left atrium +128556000,Congenital coronary artery fistula to left ventricle +128557009,Congenital coronary artery fistula to right atrium +128558004,Congenital coronary artery fistula to right ventricle +128563000,Juxtaposed atrial appendage +128566008,Congenital pulmonary vein confluence +128567004,Congenital pulmonary venous atrium +128568009,Congenital systemic venous atrium +128584005,Congenital pulmonary artery conduit +12951009,"Implantation of electrode into cardiac atrium, replacement" +129574000,Postoperative myocardial infarction +129582000,Congenital coronary artery fistula to pulmonary artery +132091000119104,Chronic deep venous thrombosis of lower limb due to and following coronary artery bypass grafting +132111000119107,Acute deep venous thrombosis of lower limb due to and following coronary artery bypass grafting +13213009,Congenital heart disease +132131000119102,Chronic deep venous thrombosis of calf +132141000119106,Chronic deep venous thrombosis of lower extremity +132151000119108,Chronic deep venous thrombosis of popliteal vein +132161000119105,Chronic deep venous thrombosis of tibial vein +132171000119104,Chronic deep venous thrombosis of thigh +132191000119103,Chronic deep venous thrombosis of femoral vein +132201000119100,Chronic deep venous thrombosis of iliofemoral vein +132221000119109,Chronic deep venous thrombosis of upper extremity +132241000119103,Acute deep venous thrombosis of calf +132251000119101,Acute deep venous thrombosis of popliteal vein +132261000119104,Acute deep venous thrombosis of tibial vein +132271000119105,Acute deep venous thrombosis of thigh +132281000119108,Acute deep venous thrombosis +132291000119106,Acute deep venous thrombosis of femoral vein +132301000119107,Acute deep venous thrombosis of iliofemoral vein +132321000119103,Acute deep venous thrombosis of upper extremity +132531000119105,Chronic thrombosis of superficial vein of upper extremity +132551000119104,Chronic thrombosis of subclavian vein +132591000119109,Acute thrombosis of superficial vein of upper extremity +132601000119102,Acute deep venous thrombosis of pelvic vein +132611000119104,Acute thrombosis of subclavian vein +133411000119108,Chronic thrombosis of mesenteric vein +133421000119101,Acute thrombosis of mesenteric vein +133971000119108,Chronic pulmonary embolism +134399007,Deep vein thrombosis of leg related to air travel +134401001,Left ventricular systolic dysfunction +13453009,Anomalous muscle bands of left ventricle +134961000119104,Acute deep venous thrombosis of axillary vein +135001000119100,Acute deep venous thrombosis of internal jugular vein +135011000119102,Chronic deep venous thrombosis of internal jugular vein +135061000119104,Chronic thrombosis of superior vena cava +135071000119105,Acute thrombosis of superior vena cava +136751000119108,Chronic deep venous thrombosis of upper extremity as complication of procedure +136771000119104,Acute deep venous thrombosis of upper extremity as complication of procedure +136781000119101,Acute deep venous thrombosis of lower extremity as complication of procedure +13689005,Congenital anomaly of aortic valve +13730001000004107,Thrombosis of vein of upper limb +13756000,Check artificial pacemaker for electrode impedance +13839000,Bernheim's syndrome +13867009,Preductal coarctation of aorta +139011000119104,Coronary arteriosclerosis following coronary artery bypass graft +13957003,Aortocaval fistula +13963007,Repair of coronary arteriovenous chamber fistula +14201006,Coronary angioplasty by open chest approach +142111000119108,Ectasia of thoracic aorta +142121000119101,Abdominal aortic ectasia +14323007,Aortocoronary bypass of three coronary arteries +14336007,Ruptured abdominal aortic aneurysm +143551000119106,Chronic thrombosis of splenic vein +143561000119108,Acute thrombosis of splenic vein +14534009,Splenic vein thrombosis +1474004,Hypertensive heart AND renal disease complicating AND/OR reason for care during childbirth +14886009,Abdominal heart +14977000,Multiple AND bilateral precerebral artery thrombosis +15096009,Congenital insufficiency of pulmonary valve +15191001,Origin of innominate artery from left side of aortic arch +15386007,Stricture of pulmonary vessel +153911000119104,Peripheral arterial insufficiency +153931000119109,Acute combined systolic and diastolic heart failure +153941000119100,Chronic combined systolic and diastolic heart failure +153951000119103,Acute on chronic combined systolic and diastolic heart failure +15459006,Endocardial cushion defect +15544002,Restrictive cardiomyopathy secondary to infiltrations +15629541000119106,Congestive heart failure stage C due to ischemic cardiomyopathy +15629591000119103,Congestive heart failure stage B due to ischemic cardiomyopathy +15629641000119107,Systolic heart failure stage B due to ischemic cardiomyopathy +15629741000119102,Systolic heart failure stage C due to ischemic cardiomyopathy +15648601000119102,Atherosclerosis of artery of right upper limb +15648691000119108,Atherosclerosis of artery of left upper limb +15648731000119101,Atherosclerosis of right renal artery +15648771000119103,Atherosclerosis of bilateral renal arteries +15648821000119105,Atherosclerosis of left renal artery +15649941000119102,Gangrene of bilateral lower limbs co-occurrent and due to atherosclerosis +15708201000119101,Acute deep vein thrombosis of right upper limb following procedure +15708241000119104,Acute deep vein thrombosis of right lower limb following coronary artery bypass graft +15708361000119109,Acute deep vein thrombosis of left lower limb following coronary artery bypass graft +15708401000119100,Acute deep vein thrombosis of left upper limb following procedure +15710281000119108,Atherosclerosis of autologous bypass graft of right lower limb +15710321000119103,Atherosclerosis of nonautologous biological bypass graft of bilateral lower limbs +15710521000119107,Atherosclerosis of autologous bypass graft of left lower limb +15711241000119106,Acute deep vein thrombosis of right lower limb following procedure +15711401000119105,Acute deep vein thrombosis of left lower limb following procedure +15712161000119106,Acute thrombosis of inferior vena cava +15712441000119103,Chronic thrombosis of inferior vena cava +15712641000119101,Ischemia of right upper limb +15712841000119100,Acute ST segment elevation myocardial infarction of posterolateral wall +15712881000119105,Acute ST segment elevation myocardial infarction of anterolateral wall +15712921000119103,Acute ST segment elevation myocardial infarction of lateral wall +15712961000119108,Acute ST segment elevation myocardial infarction of anteroseptal wall +15713041000119103,Acute ST segment elevation myocardial infarction of posterior wall +15713081000119108,Acute ST segment elevation myocardial infarction due to left coronary artery occlusion +15713121000119105,Acute ST segment elevation myocardial infarction due to right coronary artery occlusion +15713161000119100,Acute ST segment elevation myocardial infarction of septum +15713201000119105,Acute ST segment elevation myocardial infarction of posterobasal wall +15723004,Electronic analysis of internal pacemaker system +15742000,Thrombosis of inferior sagittal sinus +15760351000119105,Chronic deep venous thrombosis +15781000119107,Hypertensive heart AND chronic kidney disease with congestive heart failure +15842009,Thrombosis of renal vein +15952021000119101,Thrombophlebitis of right axillary vein +15952061000119106,Thrombophlebitis of left axillary vein +15960021000119107,Dilatation of aortic root due to Marfan's syndrome +15960061000119102,Unstable angina co-occurrent and due to coronary arteriosclerosis +15960141000119102,Angina co-occurrent and due to coronary arteriosclerosis +15960341000119104,Unstable angina due to arteriosclerosis of coronary artery bypass graft of transplanted heart +15960381000119109,Angina co-occurrent and due to arteriosclerosis of coronary artery bypass graft +15960461000119105,Unstable angina due to arteriosclerosis of autologous arterial coronary artery bypass graft +15960541000119107,Unstable angina due to arteriosclerosis of autologous vein coronary artery bypass graft +15960581000119102,Angina co-occurrent and due to arteriosclerosis of autologous vein coronary artery bypass graft +15960661000119107,Unstable angina co-occurrent and due to arteriosclerosis of coronary artery bypass graft +15960981000119105,Mural thrombus of left ventricle following acute myocardial infarction +15964661000119102,Acute cor pulmonale due to septic pulmonary embolism +15964701000119109,Acute cor pulmonale co-occurrent and due to saddle embolus of pulmonary artery +15964901000119107,Atypical atrial flutter +15964981000119104,Congenital anomaly of cardiac chamber +15967301000119102,Stenosis of bilateral subclavian arteries +15967341000119100,Stenosis of right subclavian artery +15968821000119100,Thrombophlebitis of right iliac vein +15968861000119105,Thrombophlebitis of left iliac vein +15968901000119104,Thrombophlebitis of bilateral iliac veins +15972461000119101,Thrombosis of left iliac artery +15972501000119101,Thrombosis of right iliac artery +15972541000119104,Thrombosis of bilateral iliac arteries +15972701000119106,Thrombosis of splenic artery +15978431000119106,Thrombosis of right vertebral artery +15978471000119109,Thrombosis of left vertebral artery +15990001,Acute myocardial infarction of posterolateral wall +16002551000119103,Pain of left upper limb co-occurrent and due to ischemia +16002711000119105,Pain of right upper limb co-occurrent and due to ischemia +16005391000119108,Occlusion of distal artery of right upper limb +16005471000119100,Occlusion of distal artery of left upper limb +16006031000119103,Thrombophlebitis of vein of right upper limb +16006071000119100,Thrombophlebitis of vein of left upper limb +16006351000119106,Thrombophlebitis of vein of bilateral upper limbs +16007751000119109,Thrombosis of artery of right upper extremity +16007871000119108,Thrombosis of artery of left upper extremity +16009271000119101,Embolism of artery of right upper limb +16009431000119100,Embolism of artery of left upper limb +16011391000119108,Stenosis of artery of left lower limb +16011431000119103,Stenosis of artery of right lower limb +16011911000119100,Thrombophlebitis of left popliteal vein +16011951000119104,Thrombophlebitis of right popliteal vein +16012031000119104,Thrombophlebitis of bilateral femoral veins +16012191000119104,Thrombophlebitis of bilateral deep femoral veins +16012231000119108,Thrombophlebitis of right tibial vein +16012271000119106,Thrombophlebitis of left tibial vein +16012311000119106,Thrombophlebitis of bilateral tibial veins +16012511000119101,Embolism of artery of left lower limb +16012551000119100,Embolism of artery of right lower limb +16012591000119105,Embolism of left popliteal artery +16012671000119108,Embolism of right popliteal artery +16012711000119107,Atheroembolism of bilateral lower limbs +16012791000119103,Thrombosis of artery of right lower extremity +16012831000119109,Thrombosis of artery of left lower extremity +16012911000119105,Thrombosis of left popliteal artery +16012951000119106,Thrombosis of right popliteal artery +16012991000119101,Thrombosis of left femoral artery +16013031000119107,Thrombosis of right femoral artery +16013071000119105,Thrombosis of bilateral common femoral arteries +16013111000119103,Thrombosis of right common femoral artery +16013151000119102,Thrombosis of left common femoral artery +16013191000119107,Thrombosis of bilateral femoral arteries +16014311000119102,Thrombophlebitis of vein of bilateral lower limbs +16014471000119103,Thrombophlebitis of vein of right lower limb +16014631000119103,Thrombophlebitis of vein of left lower limb +16014671000119100,Occlusion of left femoral artery +16014711000119101,Occlusion of right popliteal artery +16014791000119105,Occlusion of left popliteal artery +16014871000119101,Occlusion of right femoral artery +16018831000119106,Atherosclerosis of bilateral iliac arteries +16018911000119107,Atherosclerosis of non-biological bypass graft of bilateral lower limbs +16018991000119103,Atherosclerosis of autologous vein bypass graft of left upper limb +16019031000119105,Atherosclerosis of autologous vein bypass graft of right upper limb +16019311000119103,Atherosclerosis of nonbiological bypass graft of left lower limb +16019351000119102,Atherosclerosis of bypass graft of left upper limb +16019391000119107,Atherosclerosis of nonbiological bypass graft of right lower limb +16019431000119102,Atherosclerosis of bypass graft of right upper limb +16019471000119104,Atherosclerosis of left iliac artery +16019511000119108,Atherosclerosis of right iliac artery +16024311000119107,Thrombophlebitis of left subclavian vein +16024351000119108,Thrombophlebitis of right subclavian vein +16025471000119107,Aneurysm of coronary artery due to and following acute febrile mucocutaneous lymph node syndrome +16025511000119103,Thrombophlebitis of bilateral jugular veins +16025551000119102,Thrombophlebitis of left jugular vein +16025591000119107,Thrombophlebitis of right jugular vein +16026391000119106,Thrombosis of aorta +16026431000119101,Chronic venous thrombosis +16063004,Rheumatic disease of heart valve +161502000,History of myocardial infarct at age less than sixty +161503005,History of myocardial infarct at age greater than sixty +161666008,History of heart recipient +16228931000119102,Cardiomyopathy caused by drug +16253001,Dilated peripartum cardiomyopathy +16440002,Rheumatic disease of mitral AND aortic valves +16528621000119102,Rupture of interventricular septum following acute myocardial infarction +16567006,Mesocardia +16573007,Senile cardiac amyloidosis +16574001,Cardiac arrest after obstetrical surgery AND/OR other procedure including delivery +16624001000119104,Intramural hematoma of aorta +16624051000119100,Intramural hematoma of thoracic aorta +16624151000119101,Intramural hematoma of abdominal aorta +16750002,Deep thrombophlebitis +16754391000119100,Stable angina due to coronary arteriosclerosis +16780001000004106,Abscess of aorta +16781006,Removal of cardiac pacemaker from epicardium with replacement of atrial and/or ventricular leads +16837681000119104,Myocardial infarction due to demand ischemia +16838951000119100,Acute on chronic right-sided congestive heart failure +16855001,Rheumatic tricuspid valve failure +16891151000119103,Coronary artery disease due to type 2 diabetes mellitus +16891191000119108,Coronary artery disease due to type 1 diabetes mellitus +16899261000119106,Atherosclerosis of superior mesenteric artery +16972009,Congenital aneurysm of aorta +17024001,Aortopulmonary window +17073005,Aortocoronary artery bypass graft with vein graft +17355002,Aorto-esophageal fistula +17394001,Ebstein's anomaly with atrial septal defect +1748006,Thrombophlebitis of deep femoral vein +174802006,Allotransplant of heart and lung +174803001,Revision of transplantation of heart and lung +174808005,Xenotransplant of heart +174809002,Heterotopic allotransplant of heart +174810007,Revision of implantation of prosthetic heart +175021005,Allograft bypass of coronary artery +175029007,Prosthetic bypass of coronary artery +175045009,Connection of mammary artery to coronary artery +175047001,Double implantation of mammary arteries into coronary arteries +175048006,Single anastomosis of mammary artery to left anterior descending coronary artery +175050003,Single implantation of mammary artery into coronary artery +175066001,Percutaneous transluminal balloon angioplasty of bypass graft of coronary artery +175135009,Introduction of cardiac pacemaker system via vein +175138006,Maintenance of battery of intravenous cardiac pacemaker system +175140001,Complete removal of implanted cardiac pacemaker system +175142009,Implantation of permanent intravenous cardiac pacemaker +175143004,Implantation of intravenous fixed-rate cardiac pacemaker +175144005,Implantation of intravenous triggered cardiac pacemaker +175145006,Implantation of intravenous atrial overdrive pacemaker +175146007,Implantation of intravenous pacemaker for atrial fibrillation +175221003,Construction of central aortopulmonary interposition shunt +175223000,Creation of shunt from ascending aorta to right pulmonary artery using interposition tube prosthesis +175224006,Creation of shunt from ascending aorta to left pulmonary artery using interposition tube prosthesis +175228009,Construction of aortopulmonary window +17531000119105,Acute myocardial infarction due to left coronary artery occlusion +1755008,Old myocardial infarction +17718000,Ostium primum defect +17759006,Rheumatic aortic stenosis with regurgitation +17920008,Portal vein thrombosis +17954009,Replacement of transvenous atrial pacemaker electrode leads +179924009,Cardiac arrest in fetus OR newborn +17993000,Pulmonary arteritis +18000001000004101,Stenosis of left subclavian artery +180906006,Neonatal cardiac arrest +181869007,Neonatal cardiorespiratory arrest +18322005,Thrombosis of torcular Herophili +18546004,Congenital stenosis of aortic valve +18590009,Cardiac pacing +186813004,Acute Chagas' disease with heart involvement +18687009,Rheumatic disease of pulmonary valve +186875004,Syphilitic endocarditis of mitral valve +186877007,Syphilitic endocarditis of tricuspid valve +186878002,Syphilitic endocarditis of pulmonary valve +186893003,Rupture of syphilitic cerebral aneurysm +1871002,Repair of aneurysm of coronary artery +18723003,Demand pacing +18919000,Transplantation of coronary artery +19036004,Rheumatic heart valve stenosis +19057007,Status anginosus +19092004,Holt-Oram syndrome +19242006,Pulmonary edema +19249002,Premature closure of foramen ovale +192759008,Cerebral venous sinus thrombosis +192760003,Thrombosis of superior longitudinal sinus +192761004,Thrombosis transverse sinus +192770001,Thrombophlebitis of cavernous sinus +192771002,Thrombophlebitis of superior longitudinal venous sinus +192772009,Thrombophlebitis lateral venous sinus +194726006,Mitral stenosis with insufficiency +194727002,Non-rheumatic mitral valve stenosis +194732001,Diseases of mitral and aortic valves +194733006,Mitral and aortic stenosis +194734000,Mitral stenosis and aortic insufficiency +194735004,Mitral insufficiency and aortic stenosis +194736003,Mitral and aortic incompetence +194741006,Rheumatic tricuspid stenosis and insufficiency +194750008,Rheumatic myocarditis +194779001,Hypertensive heart and renal disease with (congestive) heart failure +194780003,Hypertensive heart and renal disease with renal failure +194781004,Hypertensive heart and renal disease with both (congestive) heart failure and renal failure +194802003,True posterior myocardial infarction +194809007,Acute atrial infarction +194821006,Coronary thrombosis not resulting in myocardial infarction +194823009,Acute coronary insufficiency +194828000,Angina +194842008,Single coronary vessel disease +194843003,Double coronary vessel disease +194845005,Acquired atrioventricular fistula of heart +194849004,Generalized ischemic myocardial dysfunction +194856005,Subsequent myocardial infarction +194857001,Subsequent myocardial infarction of anterior wall +194858006,Subsequent myocardial infarction of inferior wall +194862000,Hemopericardium due to and following acute myocardial infarction +194863005,Atrial septal defect due to and following acute myocardial infarction +194865003,Rupture of cardiac wall without hemopericardium as current complication following acute myocardial infarction +194866002,Rupture of chordae tendinae due to and following acute myocardial infarction +194867006,Rupture of papillary muscle as current complication following acute myocardial infarction +194868001,"Thrombosis of atrium, auricular appendage, and ventricle due to and following acute myocardial infarction" +194883006,Postoperative pulmonary embolus +194892009,Pulmonary artery aneurysm +194947001,Acute myocarditis caused by Treponema pallidum +194949003,Acute myocarditis - tuberculous +194978002,Non-rheumatic mitral regurgitation +194983005,"Aortic incompetence, non-rheumatic" +194984004,"Aortic stenosis, non-rheumatic" +194987006,Aortic valve stenosis with insufficiency +194989009,"Tricuspid valve disorder, non-rheumatic" +194990000,"Tricuspid incompetence, non-rheumatic" +194991001,"Tricuspid stenosis, non-rheumatic" +194992008,Non-rheumatic tricuspid valve stenosis with insufficiency +194995005,"Pulmonary incompetence, non-rheumatic" +194997002,"Pulmonary stenosis, non-rheumatic" +195000004,Pulmonary valve stenosis with insufficiency +195002007,Multiple valve disease +195003002,Disorders of both aortic and tricuspid valves +195004008,Disorders of both mitral and tricuspid valves +195005009,"Combined disorders of mitral, aortic and tricuspid valves" +195020003,Hypertrophic cardiomyopathy without obstruction +195021004,Primary dilated cardiomyopathy +195023001,Nutritional and metabolic cardiomyopathies +195025008,Cardiac glycogenosis +195027000,Cardiomyopathy due to mucopolysaccharidosis +195029002,Cardiomyopathy associated with another disorder +195030007,Cardiomyopathy in Friedreich's ataxia +195031006,Cardiomyopathy in myotonic dystrophy +195032004,Dystrophic cardiomyopathy +195033009,Sarcoid heart muscle disease +195080001,Atrial fibrillation and flutter +195083004,Ventricular fibrillation and flutter +195111005,Decompensated cardiac failure +195112003,Compensated cardiac failure +195114002,Acute left ventricular failure +195126007,Atrial hypertrophy +195137008,Acquired cardiac septal defect +195141007,Papillary muscle atrophy +195142000,Papillary muscle degeneration +195147006,Thrombus of atrium +195229008,Non-pyogenic venous sinus thrombosis +195258006,Thoracic aortic aneurysm which has ruptured +195265003,"Thoracoabdominal aortic aneurysm, ruptured" +195268001,Leaking abdominal aortic aneurysm +195317001,Embolism and thrombosis of the thoracic aorta +195318006,Embolism and thrombosis of an arm or leg artery +195319003,Embolism and thrombosis of the brachial artery +195320009,Embolism and thrombosis of the radial artery +195321008,Embolism and thrombosis of the ulnar artery +195323006,Embolism and thrombosis of the femoral artery +195324000,Embolism and thrombosis of the popliteal artery +195325004,Embolism and thrombosis of the anterior tibial artery +195326003,Embolism and thrombosis of the dorsalis pedis artery +195327007,Embolism and thrombosis of the posterior tibial artery +195335005,Embolism and/or thrombosis of the common iliac artery +195339004,Embolism and thrombosis of the subclavian artery +195340002,Embolism and thrombosis of the splenic artery +195341003,Embolism and thrombosis of the axillary artery +195342005,Embolism and thrombosis of the celiac artery +195343000,Embolism and thrombosis of hepatic artery +195410000,Thrombophlebitis of the femoral vein +195411001,Thrombophlebitis of the popliteal vein +195412008,Thrombophlebitis of the anterior tibial vein +195414009,Thrombophlebitis of the posterior tibial vein +195425000,Thrombophlebitis of the common iliac vein +195426004,Thrombophlebitis of the internal iliac vein +195427008,Thrombophlebitis of the external iliac vein +195437003,Embolism and thrombosis of the vena cava +195438008,Embolism and thrombosis of the renal vein +196999001,Superior mesenteric artery embolus +197000003,Superior mesenteric artery thrombosis +197001004,Superior mesenteric vein thrombosis +199006004,"Pre-existing hypertensive heart disease complicating pregnancy, childbirth and the puerperium" +199007008,"Pre-existing hypertensive heart and renal disease complicating pregnancy, childbirth and the puerperium" +20005002,Recurrent rheumatic heart disease +200233001,Antenatal deep vein thrombosis with antenatal complication +200237000,Postnatal deep vein thrombosis - delivered with postnatal complication +200238005,Postnatal deep vein thrombosis with postnatal complication +200259003,Cerebral venous thrombosis in pregnancy +200260008,Cerebral venous thrombosis in puerperium +200284000,Obstetric pulmonary embolism +200299000,Obstetric blood-clot pulmonary embolism +200303005,Obstetric blood-clot pulmonary embolism with antenatal complication +200304004,Obstetric blood-clot pulmonary embolism with postnatal complication +200310004,Obstetric pyemic and septic pulmonary embolism with antenatal complication +200311000,Obstetric pyemic and septic pulmonary embolism with postnatal complication +204296002,Discordant ventriculoarterial connection +204297006,Total great vessel transposition +204299009,Dextrotransposition of aorta +204300001,Incomplete great vessel transposition +204306007,Pentalogy of Fallot +204311009,Eisenmenger's complex +204312002,Ventricular septal defect between left ventricle and right atrium +204315000,Atrial septal defect within oval fossa +204317008,Patent foramen ovale +204318003,Persistent ostium secundum +204319006,Lutembacher's syndrome +204330009,Common atrioventricular-type ventricular septal defect +204339005,Congenital pulmonary valve abnormality +204342004,Congenital atresia of the pulmonary valve +204343009,Hypoplasia of pulmonary valve +204345002,Congenital fusion of pulmonic cusps +204346001,Congenital fusion of pulmonary valve segment +204351007,Fallot's trilogy +204352000,Supernumerary pulmonary valve cusps +204354004,Congenital tricuspid atresia and stenosis +204357006,Ebstein's anomaly of tricuspid valve +204362007,Parachute malformation of mitral valve +204363002,Supernumerary cusps of the mitral valve +204368006,Subaortic stenosis +204370002,Stenosis of infundibulum of right ventricle +204378009,Congenital coronary aneurysm +204379001,Congenital stricture of coronary artery +204394002,Congenital anomaly of myocardium +204395001,Congenital aneurysm of heart +204397009,Cor triloculare +204398004,Congenital epicardial cyst +204399007,Hemicardia +204402008,Fusion of mitral valve cusps +204409004,Anomalous ventricular bands +204423002,Anomalous origin of the aortic arch +204427001,Persistent aortic arch convolutions +204431007,Atresia and stenosis of aorta +204433005,Aplasia of aorta +204443008,Pulmonary artery atresia +204448004,Atresia of pulmonary artery with septal defect +204451006,Anomalies of great veins +204456001,Subdiaphragmatic total anomalous pulmonary venous return +204457005,Supradiaphragmatic total anomalous pulmonary venous return +204463001,Absence of inferior vena cava +204464007,Absence of superior vena cava +204467000,Pulmonary vein atresia +20453006,Relocation of cardiac pacemaker pocket to new site in subcutaneous tissue +204981000119101,Cardiomyopathy due to viral infection +20529002,Secondary dilated cardiomyopathy +205768003,Complete situs inversus with dextrocardia +206586007,Congenital cardiac failure +20721001,Tricuspid valve disorder +20735004,Syphilitic aortitis +20753005,Hypertensive heart disease complicating AND/OR reason for care during pregnancy +20852007,Romano-Ward syndrome +21234008,Congenital stenosis of aorta +21258007,Thrombosis of lateral venous sinus +213036006,Mechanical complication of heart valve prosthesis +213037002,Mechanical complication of coronary bypass +213046008,Mechanical complication of intra-aortic balloon +213151004,Heart transplant failure and rejection +213152006,Heart-lung transplant failure and rejection +213213007,Cardiac arrest as a complication of care +213215000,Cardiorespiratory failure as a complication of care +213220000,Postoperative deep vein thrombosis +21379009,Ruptured sinus of Valsalva +21430002,Dilated cardiomyopathy due to rheumatoid arthritis +21470009,Syncope anginosa +21631000119105,Limb ischemia +218728005,Interrupted aortic arch +21981000,Single coronary artery +2213002,Congenital anomaly of vena cava +22298006,Myocardial infarction +22462001,Chronic bacterial endocarditis +2250001,Resection of ascending aorta with anastomosis +225566008,Ischemic chest pain +22750001,Anomalous pulmonary venous drainage to abdominal portion of inferior vena cava +228630004,Repositioning of permanent transvenous electrodes +22870004,Repair of sinus of Valsalva fistula with cardiopulmonary bypass +229577006,Replacement of permanent transvenous electrodes +22966008,Hypertensive heart AND renal disease complicating AND/OR reason for care during pregnancy +230221005,Intracranial arterial septic embolism +230222003,Septic thrombophlebitis of straight sinus +230223008,Septic thrombophlebitis of sigmoid sinus +230224002,Septic thrombophlebitis of cortical vein +230225001,Septic thrombophlebitis of great cerebral vein +230361000000100,Pacemaker testing +230588002,Reposition of cardiac pacemaker pocket +23063005,Congenital atresia of mitral valve +230720005,Cerebral venous thrombosis of straight sinus +230721009,Cerebral venous thrombosis of sigmoid sinus +230722002,Cerebral venous thrombosis of cortical vein +230723007,Cerebral venous thrombosis of great cerebral vein +230735006,Syphilitic cerebral arteritis +230740003,Anterior spinal artery thrombosis +231847000,Orbital thrombophlebitis +232038007,Central retinal vein occlusion with neovascularization +232039004,Central retinal vein occlusion with macular edema +232040002,Central retinal vein occlusion - juvenile +232041003,Neovascularization of eye due to juvenile central retinal vein occlusion +232042005,Macular edema due to juvenile central retinal vein occlusion +232046008,Branch retinal vein occlusion with neovascularization +232048009,Branch retinal vein occlusion with macular edema +232334003,Replacement of battery of intravenous cardiac pacemaker system +232717009,Coronary artery bypass grafting +232719007,Coronary artery bypass graft x 1 +232720001,Coronary artery bypass grafts x 2 +232721002,Coronary artery bypass grafts x 3 +232722009,Coronary artery bypass grafts x 4 +232723004,Coronary artery bypass grafts x 5 +232724005,Coronary artery bypass grafts greater than 5 +232849000,Aortic valve replacement and plication of ascending aorta +232973007,Allotransplant of heart +232974001,Orthotopic allotransplant of heart +232981000000109,Implantation of single chamber cardiac pacemaker system +232991000000106,Implantation of dual chamber cardiac pacemaker system +233096003,Construction of conduit - left ventricle to ascending aorta +23311000119105,Acute myocardial infarction due to right coronary artery occlusion +233124005,Construction of intraventricular left ventricle to aorta tunnel +233125006,Construction of intraventricular left ventricle to aorta spiral tunnel +233174007,Cardiac pacemaker procedure +233175008,Temporary cardiac pacemaker procedure +233176009,Direct temporary cardiac pacemaker procedure +233177000,Insertion of epicardial electrode for temporary cardiac pacing +233178005,Insertion of endocardial electrode for temporary cardiac pacing +233179002,Indirect temporary cardiac pacemaker procedure +233180004,Transesophageal cardiac pacing procedure +233181000,Transthoracic cardiac pacing procedure +233182007,Permanent cardiac pacemaker procedure +233183002,Insertion of permanent epicardial cardiac pacemaker system +233184008,Maintenance procedure for cardiac pacemaker system +233185009,Reprogramming of cardiac pacemaker +233187001,Removal of implanted cardiac pacemaker system or components +233188006,Removal of cardiac pacing electrode +233224003,Central aortopulmonary shunt operation +233225002,Disconnection of pulmonary trunk and reanastomosis of distal end to ascending aorta +23325006,Repair of cardiac pacemaker +23341000119109,Congestive heart failure with right heart failure +233815004,Persistent pulmonary hypertension of the newborn +233817007,Triple vessel disease of the heart +233819005,Stable angina +233821000,New onset angina +233823002,Silent myocardial ischemia +233825009,Acute Q wave infarction - anteroseptal +233826005,Acute non-Q wave infarction - anteroseptal +233827001,Acute Q wave infarction - anterolateral +233828006,Acute non-Q wave infarction - anterolateral +233829003,Acute Q wave infarction - inferior +233830008,Acute non-Q wave infarction - inferior +233831007,Acute Q wave infarction - inferolateral +233832000,Acute non-Q wave infarction - inferolateral +233833005,Acute Q wave infarction - lateral +233834004,Acute non-Q wave infarction - lateral +233835003,Acute widespread myocardial infarction +233836002,Acute Q wave infarction - widespread +233837006,Acute non-Q wave infarction - widespread +233838001,Acute posterior myocardial infarction +233839009,Old anterior myocardial infarction +233840006,Old inferior myocardial infarction +233841005,Old lateral myocardial infarction +233842003,Old posterior myocardial infarction +233843008,Silent myocardial infarction +233844002,Accelerated coronary artery disease in transplanted heart +233846000,Post-infarction ventricular septal defect +233847009,Cardiac rupture due to and following acute myocardial infarction +233848004,Disorder of endocardium and heart valve +233849007,Syphilitic valve disease +233853009,Prosthetic valve endocarditis +233856001,Mitral restenosis +233858000,Familial mitral valve prolapse +233859008,Mitral regurgitation due to dysfunct subvalvular apparatus +233860003,Post-infarction mitral papillary muscle rupture +233861004,Functional mitral regurgitation +233862006,Calcific aortic stenosis - bicuspid valve +233863001,Senile aortic stenosis +233864007,Aortic regurgitation due to cystic medial necrosis of aorta +233865008,Functional tricuspid regurgitation +233866009,Functional pulmonary regurgitation +233871002,Congestive obstructive cardiomyopathy +233873004,Hypertrophic cardiomyopathy +233875006,Post-myocarditic cardiomyopathy +233877003,Restrictive cardiomyopathy without endomyocardial fibrosis +233878008,Familial restrictive cardiomyopathy +233880002,Chronic myocardial disorder caused by chemical or external agent +233885007,Post-infarction pericarditis +233886008,Chronic infective pericarditis +233887004,Chronic pericardial effusion caused by cholesterol +233889001,Post-infarction hemopericardium +233910005,Lone atrial fibrillation +233911009,Non-rheumatic atrial fibrillation +233915000,Paroxysmal familial ventricular fibrillation +233924009,Heart failure as a complication of care +233927002,Cardiac arrest with successful resuscitation +233928007,Myocardial dysfunction +233929004,Post-infarction mural thrombus +233930009,Intracardiac thrombosis in low output state +233932001,Cardiac transplant disorder +233933006,Cardiac transplant rejection +233934000,Cardiac transplant failure +233935004,Pulmonary thromboembolism +233936003,Acute massive pulmonary embolism +233937007,Subacute massive pulmonary embolism +233940007,Pulmonary tumor embolism +233941006,Solitary pulmonary hypertension +233942004,Small vessel pulmonary hypertension +233943009,Sporadic primary pulmonary hypertension +233944003,Familial primary pulmonary hypertension +233945002,Pulmonary hypertension caused by drug +233946001,Large vessel pulmonary hypertension +233947005,Thromboembolic pulmonary hypertension +233948000,Post-arteritic pulmonary hypertension +233950008,Pulmonary hypertension associated with chronic underventilation +233954004,High altitude pulmonary hypertension +233955003,Abdominal aortic atherosclerosis +233958001,Peripheral ischemia +233959009,Upper limb ischemia +233960004,Critical upper limb ischemia +233961000,Lower limb ischemia +233962007,Critical lower limb ischemia +233965009,Stenosis of thoracic aorta +233966005,Stenosis of abdominal aorta +233967001,Common iliac artery stenosis +233968006,External iliac artery stenosis +233969003,Superficial femoral artery stenosis +233970002,Coronary artery stenosis +233972005,Aortic bifurcation embolus +233973000,Femoral artery embolus +233974006,Brachial artery embolus +233976008,Aortic bifurcation thrombosis +233984007,Thoracoabdominal aortic aneurysm +233985008,Abdominal aortic aneurysm +233994002,Dissection of thoracic aorta +233995001,Type I dissection of thoracic aorta +233996000,Type II dissection of thoracic aorta +233997009,Dissection of distal aorta +234041004,Inferior mesenteric vein thrombosis +234043001,Thrombosis of vein of lower leg +234044007,Iliofemoral deep vein thrombosis +234045008,Thrombosis of transplanted vein +234046009,Transplant renal vein thrombosis +234047000,Radiation thrombophlebitis +234048005,Recurrent idiopathic thrombophlebitis +234062003,Pulmonary vein stenosis +234065001,Superior vena cava stenosis +234132006,Congenital abnormality of great veins and coronary sinus +234172002,Electromechanical dissociation +234181008,Prosthetic cardiac valve dehiscence +234182001,Prosthetic cardiac valve component embolism +234183006,Prosthetic cardiac valve regurgitation +234184000,Prosthetic cardiac paravalvular leak +234185004,Prosthetic cardiac valve thrombosis +234186003,Prosthetic cardiac valve obstruction +234187007,Prosthetic cardiac valve vegetation +234188002,Prosthetic cardiac valve calcification +234189005,Prosthetic cardiac valve displacement +234240008,Intra-aortic balloon rupture +234241007,Intra-aortic balloon infection +234242000,Intra-aortic balloon thrombosis +234243005,Inadequate aortic balloon augmentation +235842000,Occlusive mesenteric ischemia +23627006,Chronic pericarditis +236488005,Renal artery occlusion +236489002,Cholesterol embolus syndrome +236529001,"Prune belly syndrome with pulmonic stenosis, intellectual disability and deafness" +236530006,Pulmonic stenosis and congenital nephrosis +236721000000106,Implantation of intravenous dual chamber cardiac pacemaker system +23685000,Rheumatic heart disease +237227006,Congenital heart disease in pregnancy +237771000000107,Distant pacemaker test +239206006,Venous thrombosis of flap +239297008,Lymphomatoid granulomatosis of lung +239937004,Idiopathic aortitis +239948006,Secondary aortitis +23999003,Implantation of rate-responsive cardiac single-chamber device +240077004,Severe scapuloperoneal muscular dystrophy with cardiomyopathy +240567009,Syphilitic coronary artery disease +241041000000108,Temporary transvenous pacing +241051000000106,Transvenous pacemaker sensitivity measurement +243286001,Acute mesenteric arterial occlusion +243410003,Thrombosis of mesenteric artery +24395005,Check artificial pacemaker for waveform artifact +24584003,Restrictive cardiomyopathy secondary to malignancy +24596005,Venous retinal branch occlusion +24805007,Portal thrombophlebitis +24841007,Cardiorespiratory failure during AND/OR resulting from a procedure +250941001,Right ventricular fibromuscular infundibular stenosis +250942008,Right ventricular muscular infundibular stenosis +250973007,Aortic stenosis with doming +250974001,Prosthetic aortic valve regurgitation +250975000,Paraprosthetic aortic regurgitation +250976004,Aortic cusp regurgitation +250979006,Aortic valve fibrosis +250984000,Torn aortic cusp +250985004,Perforated aortic cusp +250987007,Prosthetic mitral valve regurgitation +250988002,Paraprosthetic mitral regurgitation +250989005,Mitral cusp prolapse +250990001,Ischemic mitral valve dysfunction +250996007,Complex mitral valve orifice +250999000,Rheumatic mitral valve leaflet changes +251000001,Mitral sub-valve apparatus fibrosis +251003004,Torn mitral leaflet +251004005,Masses on mitral apparatus +251006007,Pulmonary valve stenosis with doming +251007003,Pulmonary valve stenosis with narrow jet +251024009,Coronary graft stenosis +251036003,Aortic root dilatation +251038002,Aortic root congenital abnormality +251042004,Peripheral pulmonary artery disease +251045002,Peripheral pulmonary artery A/V aneurysm +251046001,Multiple peripheral pulmonary artery stenoses +251047005,Dilatation of pulmonary artery +25106000,Impending infarction +251114004,Intermittent second degree atrioventricular block +25263003,Grafting of heart for revascularization +25267002,Insertion of intracardiac pacemaker +253264007,"Congenital heart disease, septal and bulbar anomalies" +253267000,Congenital abnormality of relationship of cardiac component +253268005,Abnormal relationship of right ventricle to left ventricle +253269002,Criss-cross heart +253270001,Abnormal relationship of aortic orifice to pulmonary orifice +253271002,Mirror-imaged heart +253272009,Congenital abnormality of cardiac connection +253273004,Cardiac septal defects +253274005,Abnormal atrioventricular connection +253275006,Abnormal atrioventricular connection - biventricular +253276007,Cor triloculare biventriculare +253277003,Discordant atrioventricular connection +253278008,Ambiguous atrioventricular connection +253279000,Absent atrioventricular connection with straddling valve +253280002,Abnormal atrioventricular connection - univentricular +253281003,Double inlet ventricle +253282005,Double inlet right ventricle +253283000,Double inlet left ventricle +253284006,Double inlet to ventricle of indeterminate morphology +253285007,Absent right sided atrioventricular connection +253287004,Left sided atrium connecting to right ventricle +253288009,Left sided atrium connecting to both ventricles +253289001,Left sided atrium connecting to ventricle of indeterminate morphology +253290005,Absent left sided atrioventricular connection +253293007,Right sided atrium connecting to both ventricles +253294001,Right sided atrium connecting to ventricle of indeterminate morphology +253295000,Abnormal ventriculoarterial connection +253297008,Transposition of aorta +253298003,Double outlet right ventricle with subaortic ventricular septal defect +253299006,Double outlet right ventricle with noncommitted ventricular septal defect +253300003,Double outlet right ventricle with doubly committed ventricular septal defect +253301004,Double outlet from ventricle of indeterminate morphology +253302006,Single outlet ventriculoarterial connection +253303001,Solitary aortic trunk with pulmonary atresia +253304007,Solitary pulmonary trunk with aortic atresia +253305008,Solitary arterial trunk +253306009,Abnormality of right superior vena cava +253307000,Atretic right superior vena cava +253308005,Absent right superior vena cava +253309002,Saccular dilatation of right superior vena cava +253310007,Anomalous insertion of right superior vena cava to left atrium +253311006,Bilateral superior vena cava +253312004,Absent bridging vein +253313009,Inferior vena cava interruption with left sided hemiazygos continuation +253314003,Inferior vena cava interruption with right sided azygos continuation +253315002,Inferior vena cava interruption with bilateral azygos continuation +253316001,Abnormal inferior vena caval connection +253317005,Inferior vena cava connecting to morphological left atrium +253318000,Inferior vena cava connecting to coronary sinus +253319008,Inferior vena cava to left of spine +253320002,Inferior cava to left of spine with right descending aorta +253321003,Anomalous termination of right pulmonary vein +253322005,Obstructed pulmonary venous connection +253324006,Coronary sinus defect in left atrium +253326008,Coronary sinus orifice atresia +253327004,Congenital coronary sinus stenosis +253328009,Coronary sinus to left ventricle fistula +253333008,Abnormal connection of hepatic vein to atrium +253334002,Congenital abnormality of atria and atrial septum +253335001,Isomerism of atrial appendages +253336000,Isomerism of right atrial appendage +253337009,Isomerism of left atrial appendage +253338004,Mirror imaged atria +253339007,Right atrial abnormality +253340009,Prominent valve of inferior vena cava +253341008,Obstructive Eustachian valve +253342001,Prolapse of Eustachian valve +253343006,Anomalous valve of coronary sinus +253344000,Abnormality of right atrial appendage +253345004,Right atrial appendage absent +253346003,Right atrial appendage - left - juxtaposition +253347007,Right atrial appendage aneurysm +253348002,Endocardial fibroelastosis of right atrium +253349005,Right atrial hypoplasia +253350005,Right atrial dilatation +253351009,Giant right atrium +253352002,Left atrial abnormality +253353007,Divided left atrium +253354001,Supramitral left atrial ring +253355000,Abnormality of left atrial appendage +253356004,Left atrial appendage absent +253357008,Left atrial appendage - right - juxtaposition +253358003,Left atrial appendage aneurysm +253359006,Endocardial fibroelastosis of left atrium +253360001,Left atrial hypoplasia +253361002,Left atrial dilatation +253362009,Giant left atrium +253364005,Foramen ovale valvar aneurysm +253366007,Interauricular septal defect +253369000,Sinus venosus defect with overriding superior vena cava +253370004,Sinus venosus defect with overriding inferior vena cava +253371000,Atrial septal defect through coronary sinus orifice +253373002,Atrioventricular septal defect - isolated atrial component +253374008,Congenital abnormality of atrioventricular valves in atrioventricular septal defect +253375009,Tricuspid leaflet dysplasia +253376005,Tricuspid annulus hypoplasia +253377001,Dilatation of tricuspid annulus +253378006,Overriding tricuspid valve +253379003,Straddling tricuspid valve +253380000,Tricuspid leaflet abnormality +253381001,Absent tricuspid leaflet +253382008,Double orifice of tricuspid valve +253383003,Tricuspid valve prolapse +253385005,Abnormality of tricuspid chordae tendinae +253386006,Arcade abnormality of tricuspid chordae tendinae +253387002,Tricuspid chordae tendinae too short +253388007,Tricuspid chordae tendinae too long +253389004,Tricuspid chordae tendinae to outlet septum +253390008,Tricuspid papillary muscle abnormality +253391007,Parachute malformation of tricuspid valve +253392000,Absent tricuspid papillary muscle +253393005,Fused tricuspid papillary muscle +253394004,Hypoplastic tricuspid papillary muscle +253395003,Mitral valve dysplasia +253396002,Mitral leaflet dysplasia +253397006,Overriding mitral valve +253398001,Dilatation of mitral annulus +253399009,Straddling mitral valve +253400002,Mitral leaflet abnormality +2534005,Congenital absence of vena cava +253401003,Absent mitral leaflets +253402005,Double orifice of mitral valve +253403000,Ebstein-like downward displacement of mitral valve +253404006,Anterior leaflet of mitral valve attached to septum +253406008,Abnormality of mitral chordae tendinae +253407004,Arcade abnormality of mitral chordae tendinae +253408009,Mitral chordae tendinae too short +253409001,Mitral chordae tendinae too long +253410006,Mitral papillary muscle abnormality +253411005,Absent mitral papillary muscle +253412003,Fused mitral papillary muscles +253413008,Hypoplastic mitral papillary muscle +253414002,Atrioventricular septal defect and common atrioventricular junction +253415001,Atrioventricular septal defect - isolated ventricular component +253416000,Atrioventricular septal defect: atrial and ventricular components +253417009,Atrioventricular septal defect - ventricular component +253418004,Atrioventricular septal defect - ventricular component under superior bridging leaflet +253419007,Atrioventricular septal defect with ventricular component under superior bridging leaflet with chords at crest ventricular septum +253420001,Atrioventricular septal defect with ventricular component under superior bridging leaflet with chords to papillary muscle on right ventricular side septum +253421002,Atrioventricular septal defect with ventricular component under free floating superior bridging leaflet and chords to papillary muscle at right ventricular free wall +253422009,Atrioventricular septal defect - ventricular component under inferior bridging leaflet +253423004,Malaligned atrial septum +253425006,Double outlet right atrium +253426007,Double outlet left atrium +253428008,Abnormality of common atrioventricular valve in atrioventricular septal defect +253429000,Atresia of common atrioventricular valve +253430005,Imperforate common atrioventricular valve +253431009,Hypoplasia of common atrioventricular valve +253432002,Dysplasia of common atrioventricular valve +253433007,Regurgitation of common atrioventricular valve +253434001,Common atrioventricular valve limited to one ventricle +253436004,Common atrioventricular valve stenosis +253437008,Common atrioventricular valve leaflet abnormality +253438003,Common atrioventricular valve prolapse +253439006,True cleft of common atrioventricular valve leaflet +253440008,Accessory tissue on common atrioventricular valve leaflet +253441007,Double orifice of common atrioventricular valve +253442000,Triple orifice of left ventricular component of common atrioventricular valve +253443005,Ebstein's anomaly of common atrioventricular valve +253444004,Abnormality of common atrioventricular valve chordae tendinae +253445003,Common atrioventricular valve chordae too short +253446002,Common atrioventricular valve chordae too long +253447006,Common atrioventricular valve chordae to outlet septum +253448001,Arcade abnormality of common atrioventricular valve chordae +253449009,Abnormality of common atrioventricular valve papillary muscle +253450009,Parachute malformation of common atrioventricular valve +253451008,Absent common atrioventricular valve papillary muscle +253452001,Fused common atrioventricular valve papillary muscle +253453006,Hypoplastic common atrioventricular valve papillary muscle +253458002,Right atrioventricular valve hypoplasia +253459005,Right atrioventricular valve regurgitation +253462008,Right atrioventricular valve stenosis +253465005,Absent right atrioventricular valve leaflets +253468007,Ebstein's anomaly of right atrioventricular valve +253478005,Congenital abnormality of right atrioventricular valve papillary muscle +253479002,Congenital parachute malformation of right atrioventricular valve +253480004,Congenital absence of right atrioventricular valve papillary muscle +253481000,Congenital fusion of right atrioventricular valve papillary muscles +253482007,Congenital hypoplastic right atrioventricular valve papillary muscle +253483002,Abnormality of left atrioventricular valve in double inlet ventricle +253484008,Left atrioventricular valve atresia +253485009,Imperforate left atrioventricular valve +253486005,Left atrioventricular valve dysplasia +253487001,Left atrioventricular valve hypoplasia +253488006,Left atrioventricular valve regurgitation +253489003,Overriding left atrioventricular valve +253491006,Left atrioventricular valve stenosis +253492004,Straddling left atrioventricular valve +253493009,Left atrioventricular valve leaflet abnormality +253494003,Absent left atrioventricular valve leaflets +253495002,Double orifice of left atrioventricular valve +253496001,Ebstein's anomaly of left atrioventricular valve +253497005,Left atrioventricular valve prolapse +253498000,True cleft of left atrioventricular valve leaflet +253500004,Left atrioventricular valve leaflet dysplasia +253501000,Abnormality of left atrioventricular valve chordae tendinae +253502007,Left atrioventricular valve chordae too short +253503002,Left atrioventricular valve chordae too long +253504008,Left atrioventricular valve chordae to outlet septum +253505009,Arcade abnormality of left atrioventricular valve chordae +253506005,Congenital abnormality of left atrioventricular valve papillary muscle +253507001,Congenital parachute malformation of left atrioventricular valve +253508006,Congenital absence of left atrioventricular valve papillary muscle +253509003,Congenital fusion of left atrioventricular valve papillary muscles +253510008,Congenital hypoplastic left atrioventricular valve papillary muscle +253511007,Congenital abnormality of ventricles and ventricular septum +253512000,Tetralogy of Fallot with pulmonary stenosis +253513005,Tetralogy of Fallot with pulmonary atresia +253514004,Dextraposition of aorta in Fallot's tetralogy +253515003,Ventricular septal defect in Fallot's tetralogy +253516002,Right ventricular abnormality +253518001,Diffuse hypoplasia of right ventricle +253519009,Hypoplasia of right ventricular inflow tract +253520003,Hypoplasia of right ventricular outflow tract +253521004,Hypoplasia of right ventricular outflow tract and trabecular area +253522006,Dilatation of right cardiac ventricle +253523001,Primary endocardial fibroelastosis of right ventricle +253524007,Two chambered right ventricle +253525008,Congenital right ventricular diverticulum +253527000,Congenital right ventricular aneurysm +253528005,Arrhythmogenic right ventricular dysplasia +253529002,Right ventricular outflow tract abnormality +253530007,Right ventricular outflow tract obstruction +253531006,Right ventricular outflow obstruction - localized +253532004,Right ventricular outflow obstruction - tubular +253533009,Right ventricular outflow tract atresia +253534003,Right ventricular outflow tract absent +253535002,Left ventricular abnormality +253536001,Left ventricular hypoplasia +253537005,Diffuse hypoplasia of left ventricle +253538000,Hypoplasia of left ventricular inflow tract +253539008,Hypoplasia of left ventricular outflow tract +253540005,Hypoplasia of left ventricular outflow tract and trabecular area +253541009,Dilatation of left cardiac ventricle +253542002,Abnormal left ventricular muscle band +253543007,Primary endocardial fibroelastosis of left ventricle +253544001,Congenital left ventricular aneurysm +253545000,Left ventricular outflow tract abnormality +253546004,Left ventricular outflow tract obstruction +253547008,Left ventricular outflow tract atresia +253548003,Indeterminate ventricular outflow tract obstruction +253549006,Ventricular septal abnormality +253550006,Multiple ventricular septal defects +253551005,Restrictive ventricular septal defect +253552003,Perimembranous ventricular septal defect with extension to right ventricular inlet +253553008,Perimembranous ventricular septal defect with extension to right ventricular trabecular component +253554002,Perimembranous ventricular septal defect with extension to right ventricular outlet +253555001,Perimembranous ventricular septal defect with extension to all right ventricular components +253556000,Ventricular septal defect with malaligned outlet septum to right +253559007,Ventricular septal defect with malaligned outlet septum to left +253562005,Ventricular septal defect with absent outlet septum and overriding truncal valve +253563000,Muscular ventricular septal defect in inlet septum +253564006,Muscular ventricular septal defect in central trabecular septum +253565007,Muscular ventricular septal defect in apical trabecular septum +253566008,Muscular ventricular septal defect in marginal septum +253567004,Muscular ventricular septal defect in outlet septum +253568009,Doubly committed subarterial ventricular septal defect +253569001,Doubly committed subarterial ventricular septal defect with membranous septum extension +253570000,Doubly committed subarterial ventricular septal defect with muscular posterior inferior rim +253571001,Giant ventricular septal defect +253573003,Subpulmonary infundibulum +253574009,Subaortic infundibulum +253575005,Bilateral muscular infundibula +253576006,Bilateral deficient infundibula +253577002,Ventricular septal aneurysm +253578007,Congenital abnormality of arterial valves +253579004,Truncal valve abnormality +253580001,Truncal valve dysplasia +253581002,Truncal valve stenosis +253582009,Truncal valve regurgitation +253583004,Truncal valve prolapse +253584005,Accessory tissue on truncal valve cusp +253585006,Pulmonary valve cusp hypoplasia +253586007,Pulmonary valve ring hypoplasia +253587003,Commissural fusion of pulmonary valve +253588008,Pulmonary valve dysplasia +253590009,Pulmonary atresia with intact ventricular septum +253591008,Pulmonary atresia with ventricular septal defect +253592001,Pulmonary valve atresia without ventricular outflow tract +253593006,Imperforate pulmonary valve +253594000,Muscular pulmonary atresia +253595004,Pulmonary valve prolapse +253596003,Absent pulmonary valve syndrome +253598002,Unicuspid pulmonary valve +253599005,Bicuspid pulmonary valve +253600008,Quadricuspid pulmonary valve +253603005,Eccentric opening of aortic valve +253604004,Aortic valve dysplasia +253606002,Aortic valve cusp abnormality +253609009,Abnormal number of aortic valve cusps +253610004,Unicuspid aortic valve +253611000,Quadricuspid aortic valve +253614008,Tubular hypoplasia of aorta +253615009,Anomalies of the aorta excluding coarction +253620009,Pulmonary trunk abnormality +253621008,Pulmonary trunk stenosis +253622001,Pulmonary trunk hypoplasia +253623006,Pulmonary trunk atresia +253624000,Pulmonary atresia with confluent pulmonary arteries +253625004,Pulmonary atresia with absent pulmonary artery +253627007,Pulmonary trunk absent with confluent pulmonary arteries +253628002,Pulmonary trunk absent with non-confluent pulmonary arteries +253629005,Pulmonary trunk absent with absent pulmonary artery +253630000,Pulmonary trunk dilatation +253631001,Peripheral pulmonary artery stenosis +253632008,Abnormal origin of right pulmonary artery +253633003,Anomalous origin of right pulmonary artery from ductus arteriosus +253634009,Anomalous origin of right pulmonary artery from ascending aorta +253635005,Abnormal origin of left pulmonary artery +253636006,Anomalous origin of left pulmonary artery from ductus arteriosus +253637002,Anomalous origin of left pulmonary artery from ascending aorta +253638007,Anomalous origin of left pulmonary artery from right pulmonary artery +253640002,Ascending aorta abnormality +253641003,Localized supravalvar aortic stenosis +253642005,Diffuse supravalvar aortic stenosis +253643000,Ascending aortic atresia +253644006,Ascending aorta absent +253645007,Ascending aorta dilatation +253646008,Congenital aneurysm of ascending aorta +253647004,Sinus of Valsalva abnormality +253648009,Sinus of Valsalva aneurysm with rupture +253649001,Aortic tunnel +253650001,Aorta to right ventricle tunnel +253651002,Aortic arch and descending aorta abnormality +253652009,Right descending aorta +253653004,Left aortic arch and right descending aorta +253654005,Right aortic arch and right descending aorta +253655006,Right aortic arch and left descending aorta +253656007,Aortic arch centrally descending +253657003,Cervical aortic arch +253660005,Double aortic arch with both patent +253663007,Vascular ring with left aortic arch +253664001,Vascular ring with right aortic arch +253672004,Preductal aortic stenosis +253673009,Preductal interruption of aorta +253674003,Preductal hypoplasia of aorta +253675002,Juxtaductal aortic coarctation +253676001,Postductal aortic stenosis +253677005,Postductal interruption of aorta +253678000,Thoracic aortic coarctation +253679008,Abdominal aortic coarctation +253680006,Postductal hypoplasia of aorta +253681005,Interrupted aortic arch distal to left subclavian artery +253682003,Interrupted aortic arch between left subclavian and left common carotid artery +253683008,Interrupted aortic arch between left common carotid and brachiocephalic artery +253698005,Isolation of brachiocephalic trunk +253700001,Variant coronary origin from aortic sinus +253703004,Anomalous origin of coronary artery from non-facing sinus +253704005,Anomalous origin of left anterior descending from right coronary artery +253706007,Anomalous origin of coronary artery from pulmonary arterial tree +253707003,Anomalous origin of coronary artery from right pulmonary artery +253708008,Anomalous origin of coronary artery from left pulmonary artery +253710005,Coronary orifice abnormally high +253711009,Coronary orifice asymmetrical +253712002,Dual coronary orifice +253714001,Abnormal coronary artery course +253715000,Intramural coronary artery course +253716004,Aberrant course of left anterior descending coronary artery from right coronary artery crossing right ventricular outflow tract +253717008,Coronary artery runs between aorta and pulmonary trunk +253718003,Circumflex runs posterior to pulmonary trunk +253719006,Circumflex runs posterior to aorta +253720000,Congenital coronary arteriovenous fistula +253723003,Coronary fistulae from right ventricle +253724009,Coronary fistulae from left ventricle +253725005,Congenital coronary artery calcification +253729004,Left dominant coronary system +253730009,Balanced coronary system +253732001,Totally absent pericardium +25544003,Low output heart failure +25559009,Congenital absence of left pulmonary artery +257812009,Chronic peri-aortitis +2583009,Chiari's network +261195002,Circulatory arrest +26146002,Complete transposition of great vessels +261538006,Open intracoronary repair of coronary artery fistula +261756009,Coronary interposition technique +26201005,Aortic left ventricular tunnel +26214006,Thrombosis of retinal artery +263944006,Anterolateral muscle band +263961009,Bilateral isomeric atria +264086008,Malaligned outlet septum +264162009,Posteromedial muscle band +264503005,Aneurysm of membranous septum +264571006,Septoparietal trabeculations +265481001,Double anastomosis of mammary arteries to coronary arteries +265482008,Implantation of emergency intravenous cardiac pacemaker +266237004,Acute and subacute bacterial endocarditis +266249003,Ventricular hypertrophy +266250003,Mitral papillary muscle rupture +266252006,Mitral papillary muscle dysfunction +266262004,Arterial embolus and thrombosis +266263009,Embolism and thrombosis of the abdominal aorta +26660001,Dilatation of aorta +266810008,Replacement of IV endocardial electrode +267207004,"Congenital cardiovascular disorders during pregnancy, childbirth and the puerperium" +267284008,Obstetric pyemic and septic pulmonary embolism +26780008,Coarctation of pulmonary artery +268174004,Bulbus cordis and cardiac septal closure anomalies +268180007,Right hypoplastic heart syndrome +268184003,Hypoplasia of aorta +268185002,Supravalvar aortic stenosis +268187005,Congenital pulmonary artery aneurysm +26865008,Congenital absence of superior vena cava +26900001,Coronary ostium stenosis +269299003,Cardiac insufficiency as a complication of care +26950008,Chronic ectopic atrial tachycardia +26954004,Thrombophlebitis of superior sagittal sinus +27007008,Scarring of papillary muscle +27012009,Hyperkinetic heart disease +27017003,Chronic effusive pericarditis +270510008,Anomalous coronary artery communication +270512000,Pulmonary arteriovenous aneurysm +270906004,Mitral chordae rupture +27097002,Danish type familial amyloid cardiomyopathy +271432005,Congenital renal artery stenosis +271573009,Congenital abnormality of thoracic aorta and pulmonary arteries +271984008,Disorder of prosthetic cardiac valve +271985009,Disorder of intra-aortic pulsation balloon +27277001,Tophus of heart co-occurrent and due to gout +274096000,Pulmonary heart disease +274097009,Non-rheumatic heart valve disorder +274098004,Rupture of chordae tendineae +274101000,Aortic thromboembolism +27443008,Removal of transvenous electrodes +274947007,Divided right atrium +275215001,Left internal mammary artery single anastomosis +275216000,Right internal mammary artery single anastomosis +275217009,Ligation of sinus of Valsalva fistula +275252001,Left internal mammary artery sequential anastomosis +275253006,Right internal mammary artery sequential anastomosis +275514001,Impaired left ventricular function +275516004,Cardiomegaly due to hypertension +275517008,Superficial vein thrombosis +275905002,History of myocardial problem +276308001,General maintenance of cardiac pacemaker +27631000146108,Dissection of aortic arch +27637000,Dextrocardia +276500007,Mesenteric embolus +27651000146102,Dissection of descending aorta +276516009,Myocardial ischemia of newborn +276517000,Transient myocardial ischemia of newborn +276518005,Transient tricuspid regurgitation of newborn +276637009,Hemorrhagic pulmonary edema +276790000,Isolated aortic stenosis +276792008,Pulmonary hypertension with extreme obesity +276793003,Pulmonary hypertension with occult mitral stenosis +276794009,Facultative pulmonary hypertension with shunt at atrial level +276795005,Mitral valve anterior leaflet prolapse +277192005,Coronary artery graft placement +277638005,Sepsis-associated left ventricular failure +278480000,Syphilitic endocarditis of aortic valve +27944006,Removal of electronic heart device pulse generator +27986000,Congenital pulmonary arteriovenous aneurysm +280966008,Phlegmasia alba dolens - obstetric +281091000,Ischemic myocardial dysfunction +281092007,Stunned myocardium +281093002,Hibernating myocardium +281170005,Arrhythmogenic right ventricular cardiomyopathy +281556002,Insertion of temporary cardiac pacemaker +281595001,Thrombosis of inferior vena cava +281596000,Thrombosis of superior vena cava +281597009,Brachiocephalic vein thrombosis +2816000,Dilated cardiomyopathy due to myotonic dystrophy +282006,Acute myocardial infarction of basal-lateral wall +28248000,Left anterior descending coronary artery thrombosis +28256002,"Electronic wave or pacemaker analysis, remote" +282664001,Renal artery stenosis of unknown cause +282825002,Paroxysmal atrial fibrillation +28284007,Rheumatic heart valve stenosis with insufficiency +2829000,Uhl's disease +2831000119107,Aneurysm of descending thoracic aorta +28381002,Rheumatic pericarditis +285141000119106,Arteriosclerosis of autologous arterial coronary artery bypass graft +285151000119108,Arteriosclerosis of autologous coronary artery bypass graft +285251000119101,Dextrotransposition of the great arteries +285381000119104,Acute deep vein thrombosis of bilateral femoral veins +285721000119104,History of acute ST segment elevation myocardial infarction +28574005,Congenital anomaly of coronary artery +285781000119100,Infection of cardiac graft +285961000119107,Mechanical breakdown of prosthetic heart valve +285981000119103,Acute ST segment elevation myocardial infarction involving left anterior descending coronary artery +286031000119106,Rheumatic mitral valve prolapse +286071000119109,Congenital peripheral pulmonary artery stenosis +286331000119109,Total anomalous pulmonary venous connection to coronary sinus +286341000119100,Total anomalous pulmonary venous connection to hepatic vein +286351000119103,Total anomalous pulmonary venous connection to right atrium +286361000119101,Total anomalous pulmonary venous connection to superior vena cava +28656008,Congenital insufficiency of aortic valve +286947004,Chronic mitral valvulitis due to rheumatic heart disease +286950001,Chronic rheumatic aortic valve disease +286959000,Peripheral arterial embolism +28714002,Debridement of skin or subcutaneous tissue of pacemaker pocket +287696002,Atrial overdrive pacing +287698001,Fixed-rate cardiac pacemaker +287699009,Emergency cardiac pacemaker +288183004,Insertion of intravenous endocardial electrode +288184005,Removal of IV endocardial electrode +28869005,Dilated cardiomyopathy due to muscular dystrophy +289566561000119108,Acute ischemia of small intestine due to thrombosis of mesenteric vein +289923007,Acquired renal artery stenosis +293451000119102,Chronic deep vein thrombosis of right iliac vein +293461000119100,Chronic deep vein thrombosis of left iliac vein +293481000119109,Acute deep vein thrombosis of right iliac vein +293491000119107,Acute deep vein thrombosis of left iliac vein +29375001,Abnormal number of cusps +297135003,Subclavian artery embolus +297136002,Axillary artery embolus +297137006,Celiac artery embolus +297138001,Embolus of circle of Willis +297140006,Inferior mesenteric artery embolus +297141005,Popliteal artery embolus +297143008,Suprarenal artery embolus +297146000,Brachial artery thrombosis +297148004,Celiac artery thrombosis +297149007,Common femoral artery thrombosis +297150007,Common iliac artery thrombosis +297151006,External iliac artery thrombosis +297152004,Internal iliac artery thrombosis +297153009,Profunda femoris artery thrombosis +297154003,Subclavian artery thrombosis +297155002,Superficial femoral artery thrombosis +297156001,Axillary vein thrombosis +297157005,Thrombus of intracranial vein +297160003,Left ventricular aneurysm +297162006,Crural artery thrombosis +297197008,Ruptured tricuspid chordae +297218007,Congenital abnormality of ductus arteriosus +297285002,Paraprosthetic pulmonary regurgitation +297286001,Paraprosthetic tricuspid regurgitation +297911000000108,Electrical capture by temporary transvenous pacing +297921000000102,Mechanical capture by temporary transvenous pacing +29819009,Aortocoronary bypass of one coronary artery +29899005,Coronary artery embolism +29928006,Congenital insufficiency of mitral valve +29934004,Anomalous pulmonary venous drainage to coronary sinus +300917007,Ischemia of feet +300919005,Digital arterial thrombosis +300921000,Subclavian artery stenosis +300995000,Exercise-induced angina +300996004,Controlled atrial fibrillation +301106001,Pulmonary valve vegetations +301109008,Tricuspid valve lesion +301185000,Mitral valve vegetations +301755001,Ischemic foot +301899003,Dissection of proximal aorta +302131003,Tuberculosis of heart +302233006,Renal artery stenosis +302300004,Femoral popliteal occlusion +30277009,Rupture of ventricle due to acute myocardial infarction +302878004,Intracranial septic thrombophlebitis +302879007,Septic thrombophlebitis of cavernous sinus +302880005,Septic thrombophlebitis of sagittal sinus +30288003,Ventricular septal defect +302881009,Septic thrombophlebitis of lateral sinus +302910002,Atherosclerotic renal artery stenosis +302943003,Abnormal number of pulmonary valve cusps +303070000,Pulmonary arteriovenous malformation +304914007,Acute Q wave myocardial infarction +30496006,Dilated cardiomyopathy due to viral myocarditis +30670000,"Anastomosis of thoracic artery to coronary artery, double" +306848006,Occlusion of femoropopliteal bypass graft +306849003,Occlusion of femorofemoral crossover bypass graft +306851004,Occlusion of aortic bifurcation bypass graft +306852006,Occlusion of renal artery bypass graft +306856009,Thrombosis of aortic bifurcation bypass graft +307140009,Acute non-Q wave infarction +307280005,Implantation of cardiac pacemaker +307403007,Aortojejunal fistula +307404001,Aortocolonic fistula +307406004,Trash foot +307407008,Ischemic hand +307408003,Ischemic toe +307409006,Ischemic finger +307816004,Leriche's syndrome +308065005,History of myocardial infarction in last year +308546005,Dissection of aorta +308805008,Reimplantation of cardiac pacemaker electrode +30884007,Restrictive cardiomyopathy secondary to familial storage disease +309405007,Implantation of simple one wire intravenous cardiac pacemaker +309407004,Implantation of complex one wire intravenous cardiac pacemaker +309408009,Implantation of complex two wire intravenous cardiac pacemaker +309471004,Implantation of temporary intravenous cardiac pacemaker +309518001,Right ventricular thrombus +309519009,Left ventricular thrombus +309735004,Thrombosis of vein of lower limb +3098007,Rupture of interventricular septum +309809007,Electromechanical dissociation with successful resuscitation +309814006,Aortocoronary bypass grafting +31019002,Implantation of artificial heart +310415002,Suturing of sinus of Valsalva fistula +310416001,Patching of sinus of Valsalva fistula +310582005,Implantation of intravenous dual chamber permanent cardiac pacemaker +31080005,Pericarditis secondary to Mulibrey nanism +31085000,Rheumatic mitral regurgitation +311792005,Postoperative transmural myocardial infarction of anterior wall +311793000,Postoperative transmural myocardial infarction of inferior wall +311796008,Postoperative subendocardial myocardial infarction +31211000119101,Peripheral angiopathy due to type 1 diabetes mellitus +312302004,Plication of ascending aorta +312375001,Upper limb arterial embolus +312377009,Post-radiological embolism of upper limb artery +312378004,Lower limb arterial embolus +312380005,Post-radiological embolism of lower limb artery +312383007,Infective aortitis +312496009,Iliac artery stenosis +312584000,Thrombosis of vein of trunk +312586003,Intracranial thrombophlebitis +312592009,Head and neck arterial embolus +312593004,Trunk arterial embolus +312594005,Head and neck arterial thrombosis +312601003,Thoracic aorta abnormality +31268005,Thrombophlebitis migrans +312822006,Critical ischemia of foot +312825008,Common iliac artery occlusion +312826009,External iliac artery occlusion +312827000,Superficial femoral artery occlusion +312828005,Common femoral artery occlusion +312829002,Common femoral artery stenosis +312997008,Central retinal vein occlusion - ischemic +312998003,Central retinal vein occlusion - non-ischemic +314000002,Branch retinal vein occlusion with no neovascularization +314116003,Post infarct angina +314184006,Ruptured suprarenal aortic aneurysm +314185007,Juxtarenal aortic aneurysm +314186008,Inflammatory abdominal aortic aneurysm +314187004,Iliac artery occlusion +314188009,Femoral artery occlusion +314189001,Popliteal artery occlusion +314206003,Refractory heart failure +314207007,Non-Q wave myocardial infarction +314208002,Rapid atrial fibrillation +314902007,Peripheral angiopathy due to type 2 diabetes mellitus +315025001,Refractory angina +315026000,Transient myocardial ischemia +31529002,Thrombosis of arteries of upper extremity +315295003,Recurrent abdominal aortic aneurysm +315348000,Asymptomatic coronary heart disease +315608004,Cardiomyopathy in Duchenne muscular dystrophy +315615007,Non-rheumatic aortic sclerosis +3168002,Thrombophlebitis of intracranial venous sinus +31778009,Replacement of transvenous ventricular pacemaker electrode leads +31881008,Cardiovascular renal disease +32194006,Anomalous pulmonary venous drainage to hepatic veins +32413006,Transplantation of heart +32477003,Heart-lung transplant with recipient cardiectomy-pneumonectomy +32574007,"Past myocardial infarction diagnosed on electrocardiogram AND/OR other special investigation, but currently presenting no symptoms" +328511000119109,Saddle embolus of pulmonary artery +33006007,Restrictive cardiomyopathy secondary to endocardial fibroelastosis +33258008,Primary eosinophilic endomyocardial restrictive cardiomyopathy +33284002,Check artificial pacemaker for amperage threshold +33331003,Insertion of permanent atrial pacemaker with transvenous electrodes +33591000,Thrombosis of arteries of the extremities +33644002,Postvalvulotomy syndrome +33700007,Ruptured sinus of Valsalva into right atrium +33776000,"Insertion of permanent pacemaker with transvenous electrodes, atrio-ventricular sequential" +34126003,Rheumatic pulmonary valve insufficiency +341751000000103,Congenital dextroposition of heart +34273003,Hypertensive heart disease complicating AND/OR reason for care during puerperium +343977001,Bundle of His pacing +344015141000119100,Acute ischemia of colon due to thrombosis of mesenteric vein +344994008,Intraventricular pacing +34564005,Creation of shunt of ascending aorta to pulmonary artery +34881000119105,Peripheral vascular disease associated with another disorder +3515001,"Replacement of electronic heart device, pulse generator" +35162007,Ruptured sinus of Valsalva into right ventricle +35304003,Cardiac tamponade +35386004,Cavernous sinus syndrome +35401000087106,Old infarct of myocardium of apex of heart +35411000087108,Old infarct of myocardium of anterolateral region +35421000087100,Old infarct of myocardium of inferolateral region +35431000087103,Old infarct of high lateral wall of myocardium +35441000087109,Old infarct of myocardium of posterolateral region +3545003,Diastolic dysfunction +35451000087107,Old infarct of myocardium of ventricular septum +3546002,Aortocoronary artery bypass graft with saphenous vein graft +35461000087105,Ischemia of anterior myocardium +35471000087101,Ischemia of apical anterior segment of left cardiac ventricle +35481000087104,Ischemia of myocardium of ventricular septum +35491000087102,Ischemia of lateral myocardium +35501000087105,Ischemia of myocardium of anterolateral region +35511000087107,Ischemia of myocardium of anteroseptal region +35521000087104,Ischemia of myocardium of apex of heart +35541000087108,Ischemia of myocardium of inferior surface of left ventricle +35551000087106,Ischemia of myocardium of inferolateral region +35561000087109,Ischemia of myocardium of inferolateral region of myocardium with extension to posterior myocardium +35571000087100,Ischemia of myocardium of posterolateral region +35581000087103,Ischemia of posterior myocardium +35719004,Dilated cardiomyopathy due to systemic sclerosis +35728003,Familial cardiomyopathy +3589003,Syphilitic pericarditis +35928006,Nocturnal angina +359597003,Single internal mammary-coronary artery bypass +359601003,"Coronary artery bypass with autogenous graft of internal mammary artery, single graft" +359617009,Acute right-sided heart failure +359789008,Takayasu's disease +360473004,Congenital muscular subaortic stenosis +360481003,Common atrioventricular canal +360573001,Post-capillary pulmonary hypertension +360578005,Pulmonary hypertension secondary to raised pulmonary vascular resistance +36079008,Double cardiac valve orifice +36110001,Congenital anomaly of pulmonary artery +361278002,Mondor's phlebitis of the penis +36133000,Abnormal position of cardiac valve +36222008,Carcinoid heart disease +36233006,Congenital stenosis of tricuspid valve +36315003,Malignant hypertensive heart disease without congestive heart failure +363436001,Malignant tumor of endocardium +363437005,Malignant tumor of myocardium +364006,Acute left-sided heart failure +36422005,Transposition of pulmonary veins +36471000,Dilated cardiomyopathy due to systemic lupus erythematosus +36665001,Atrial aneurysm +367363000,Right ventricular failure +368009,Heart valve disorder +3681008,Thrombophlebitis of torcular Herophili +370141003,Rheumatic mitral AND aortic valve obstruction +37034001,Ligation of arteriovenous fistula of coronary artery +370513009,Fibrosis of cardiac pacemaker electrode +370551009,Dynamic right ventricular outflow tract obstruction +370552002,Dynamic aortic outflow tract obstruction +371037005,Systolic dysfunction +371038000,Terminal aortic occlusion +371039008,Thromboembolic disorder +37104009,Congenital enlargement of coronary sinus +371051005,Traumatic thrombosis of axillary vein +371067004,Hepatopulmonary syndrome +371068009,Myocardial infarction with complication +371803003,Multi vessel coronary artery disease +371804009,Left main coronary artery disease +371805005,Significant coronary bypass graft disease +371806006,Progressive angina +371807002,Atypical angina +371808007,Recurrent angina status post percutaneous transluminal coronary angioplasty +371809004,Recurrent angina following placement of coronary artery stent +371810009,Recurrent angina status post coronary artery bypass graft +371811008,Recurrent angina status post rotational atherectomy +371812001,Recurrent angina status post directional coronary atherectomy +371813006,Acute mitral regurgitation from chordal rupture +371814000,Acute mitral regurgitation from chordal dysfunction +371815004,Acute mitral regurgitation from papillary muscle dysfunction +371816003,Acute mitral regurgitation from papillary muscle rupture +371817007,Acute ventricular septal rupture +371862006,Depression of left ventricular systolic function +371909000,Magnet induced pacing +371910005,Atrioventricular sequential pacing +373092008,Coronary artery fistula to left atrium +373094009,Coronary artery fistula to left ventricle +373095005,Coronary artery fistula to right atrium +373096006,Coronary artery fistula to right ventricle +373116009,Acute mitral regurgitation +373131000,Non-restrictive ventricular septal defect +373135009,Annular abscess of aortic root +373420004,Upshaw-Schulman syndrome +373905003,Jervell and Lange-Nielsen syndrome +37639005,Anomalous pulmonary venous drainage to right atrium +37943007,Embolism of multiple and bilateral precerebral arteries +38208004,Removal of cardiac pacemaker and replacement with single-chamber cardiac device +38230003,Ruptured sinus of Valsalva into left ventricle +38315009,Repair of pacemaker with replacement of pulse generator +38340002,Temporary insertion of pacemaker into atrium by transvenous route +384681005,Patch repair of coronary artery +384683008,Replacement of cardiac pacemaker device with dual-chamber device +384684002,"Removal of cardiac pacemaker with replacement by single-chamber device, rate-responsive" +386815009,Repair of aneurysm of sinus of Valsalva +38739001,Hepatic vein thrombosis +387732009,Becker muscular dystrophy +387785661000119105,History of myocardial infarction due to atherothrombotic coronary artery disease +39041004,Restrictive cardiomyopathy secondary to sarcoidosis +39202005,"Coronary artery bypass with autogenous graft, four grafts" +39244004,Pericarditis due to myxedema +394659003,Acute coronary syndrome +394710008,First myocardial infarction +395704004,Left ventricular diastolic dysfunction +39589002,Hypoplasia of right heart +39693003,Dilated cardiomyopathy due to granuloma +397193006,Percutaneous transluminal coronary angioplasty by rotoablation +39724006,"Anastomosis of internal mammary artery to coronary artery, double vessel" +397431004,"Percutaneous transluminal coronary angioplasty with rotoablation, single vessel" +397829000,Asystole +39785005,Disorder of pulmonary circulation +398220006,Ventricular pacing lead positioned +398274000,Coronary artery thrombosis +398716006,Endomyocardial fibrosis +398754006,Restrictive cardiomyopathy with endomyocardial fibrosis +399020009,Congestive cardiomyopathy +399046008,L - transposition of the great vessels +39905002,Scimitar syndrome +399211009,History of myocardial infarction +399216004,D - transposition of the great vessels +399228007,Tetralogy of Fallot with absent pulmonary valve +39987008,Congenital absence of right pulmonary artery +399957001,Peripheral arterial occlusive disease +400047006,Peripheral vascular disease +40023000,Rheumatic mitral valve failure +400972008,Renewal of intravenous cardiac pacemaker system +401303003,Acute ST segment elevation myocardial infarction +401314000,Acute non-ST segment elevation myocardial infarction +40198004,Thrombophlebitis of deep veins of lower extremity +40272001,Congenital absence of coronary sinus +40276003,Embolism of precerebral artery +402861007,Ischemic gangrene +404223003,Deep venous thrombosis of lower extremity +40445007,Heart valve regurgitation +404667009,Retinal embolus +404668004,Calcific retinal embolus +404669007,Platelet-fibrin retinal embolus +404670008,Cholesterol retinal embolus +40532006,Dilated cardiomyopathy due to protozoan myocarditis +405545007,Mesenteric artery stenosis +405554005,Abscess of aortic root +405556007,Stenosis of lower limb artery +405557003,Occlusion of lower limb artery +405577005,Nontraumatic dissection of thoracic aorta +405580006,Traumatic aortocaval fistula +405585001,Traumatic aorto-enteric fistula +405588004,Upper limb artery stenosis +405598005,Aortocoronary artery bypass graft with two vein grafts +405599002,Aortocoronary artery bypass graft with three vein grafts +405752007,Congenital atrial septal defect +405768001,Autotransplantation of heart +40593004,Fibrillation +406428006,Hypertrophy of septomarginal trabeculation +4082005,Myocarditis caused by Treponema pallidum +408546009,Coronary artery bypass graft occlusion +408665008,Pontine artery thrombosis +408666009,Dissection of abdominal aorta +4090005,Replacement of transvenous atrial and ventricular pacemaker electrode leads +40964007,Chronic cardiac valvulitis +409712001,Mitral valve prolapse +410065004,Congenital anomaly of aortic arch AND/OR descending aorta +410429000,Cardiac arrest +410430005,Cardiorespiratory arrest +410431009,Cardiorespiratory failure +412787009,"Intellectual disability, congenital heart disease, blepharophimosis, blepharoptosis and hypoplastic teeth" +41334000,"Angina, class II" +41339005,Coronary angioplasty +413439005,Acute ischemic heart disease +413444003,Acute myocardial ischemia +41371000119100,Shone complex +413838009,Chronic ischemic heart disease +413844008,Chronic myocardial ischemia +413905004,Congenital absence of heart structure +413994008,Dilated cardiomyopathy with connective tissue disorder +413995009,Dilated cardiomyopathy due to taurine deficiency +414024009,Disorder of coronary artery +414088005,Emergency coronary artery bypass graft +414089002,Emergency percutaneous coronary intervention +414545008,Ischemic heart disease +414795007,Myocardial ischemia +415070008,Percutaneous coronary intervention +41514002,Congenital supravalvular mitral stenosis +415295002,Restrictive cardiomyopathy +415509000,Secondary restrictive cardiomyopathy +415991003,Disorder of cardiac ventricle +415992005,Disorder of right cardiac ventricle +415993000,Disorder of left cardiac ventricle +416158002,Right ventricular systolic dysfunction +416610007,Right ventricular diastolic dysfunction +417081007,Systolic anterior movement of mitral valve +417191003,Mitral valve sclerosis +417996009,Systolic heart failure +418044006,Myocardial infarction in recovery phase +418304008,Diastolic heart failure +418461002,Angioplasty of coronary artery using fluoroscopic guidance with contrast +418551006,Laparoscopic coronary artery bypass using robotic assistance +418818005,Brugada syndrome +418824004,Off-pump coronary artery bypass +418872003,Fascicular ventricular tachycardia +41893002,Left ventricular-right atrial communication +419097006,Danon disease +419132001,Minimally invasive direct coronary artery bypass +420006002,Obliterative coronary artery disease +420300004,New York Heart Association Classification - Class I +42069006,Myxoid transformation of mitral valve +420913000,New York Heart Association Classification - Class III +42099002,Primary endomyocardial fibrosis restrictive cardiomyopathy +421327009,Coronary artery stent thrombosis +421365002,Peripheral circulatory disorder due to type 1 diabetes mellitus +421704003,New York Heart Association Classification - Class II +421895002,Peripheral vascular disorder due to diabetes mellitus +422166005,Peripheral circulatory disorder due to type 2 diabetes mellitus +422293003,New York Heart Association Classification - Class IV +422348008,Andersen Tawil syndrome +422967000,Maintenance of permanent cardiac pacemaker settings +422970001,Cardiac arrest due to trauma +423001006,Maintenance of temporary epicardial cardiac pacemaker settings +423168004,Cardiac arrest due to respiratory disorder +423191000,Cardiac arrest due to cardiac disorder +42343007,Congestive heart failure +4240001,Rupture of aorta +42402006,Kartagener syndrome +424045003,Myocardial bridge of coronary artery +424265001,Maintenance of temporary cardiac pacemaker system +424404003,Decompensated chronic heart failure +424571008,Cardiac arrest due to drowning +424727007,Maintenance of temporary cardiac pacemaker settings +42531007,Microinfarct of heart +425366005,Maintenance of temporary epicardial cardiac pacemaker system +425414000,Bilateral renal artery stenosis +425420004,Thrombosis of internal carotid artery +425453009,Chronic nontraumatic dissection of thoracic aorta +425527003,Atheromatous embolus of lower limb +425615007,Chronic atrial flutter +425771001,Enlarging abdominal aortic aneurysm +425932008,Thrombosis of posterior communicating artery +425963007,Aneurysm of ascending aorta +426104007,Repair of rupture of coronary artery +426263006,Congestive heart failure due to left ventricular systolic dysfunction +426270006,Aneurysm of suprarenal aorta +426300009,Tachycardia-induced cardiomyopathy +426611007,Congestive heart failure due to valvular disease +426749004,Chronic atrial fibrillation +426856002,Ischemic congestive cardiomyopathy +426948001,Aneurysm of descending aorta +427109009,Repair of arteriovenous malformation of coronary artery +427184002,Thrombosis of ulnar artery +427490006,Aneurysm of supraceliac aorta +427515002,Critical stenosis of aortic valve +427567003,Atheromatous embolus of upper limb +427592000,Occlusion of superior mesenteric artery +427665004,Paroxysmal atrial flutter +42770003,Syphilis of tricuspid valve +427775006,Deep venous thrombosis of profunda femoris vein +427776007,Thrombosis of the popliteal vein +427919004,Coronary arteriosclerosis caused by radiation +427927008,Disorder related to cardiac transplantation +428163005,Hypertensive left ventricular hypertrophy +428164004,Mitral valve disorder in pregnancy +428171009,Pain at rest due to peripheral vascular disease +428196007,Mixed myocardial ischemia and infarction +42861008,Thrombophlebitis of iliac vein +42866003,Congenital coronary artery sclerosis +428752002,Recent myocardial infarction +42878004,Thrombosis of thoracic aorta +428781001,Deep venous thrombosis associated with coronary artery bypass graft +429064006,Implantation of biventricular cardiac pacemaker system +429098002,Thromboembolism of vein +429243003,Sustained ventricular fibrillation +429245005,Recurrent coronary arteriosclerosis after percutaneous transluminal coronary angioplasty +429257001,Disorder of transplanted heart +429347004,Rheumatic aortic valve sclerosis +429434005,Thrombosis of superficial vein of lower limb +429528001,Implantation of intravenous single chamber cardiac pacemaker system +429542009,Implantation of intravenous biventricular cardiac pacemaker system +429559004,Typical angina +429575001,Construction of left ventricle to aorta tunnel with right ventricle to pulmonary trunk direct anastomosis +429589006,Left ventricular cardiac dysfunction +429620002,Construction of left ventricle to aorta tunnel with right ventricle to pulmonary artery valved conduit +429639007,Percutaneous transluminal balloon angioplasty with insertion of stent into coronary artery +429673002,Arteriosclerosis of coronary artery bypass graft +42970005,Nonpyogenic thrombosis of intracranial venous sinus +429710001,Transient ischemic dilatation of left cardiac ventricular cavity +429809004,Percutaneous transluminal angioplasty of coronary artery using fluoroscopic guidance with contrast +42999000,Chronic adhesive pericarditis +430294007,Reposition of permanent cardiac pacemaker using fluoroscopic guidance +430396006,Chronic systolic dysfunction of left ventricle +431186002,Accelerated rejection of cardiac transplant +43121002,Rheumatic heart valve regurgitation +431306005,Fluoroscopy of heart for checking of permanent cardiac pacemaker position +431702005,Removal of cardiac pacemaker lead using fluoroscopic guidance +431706008,Occlusion of artery of upper extremity +43176009,Congenital hypoplasia of tricuspid valve +431846007,Replacement of permanent cardiac pacemaker using fluoroscopic guidance +431896008,Chronic rejection of cardiac transplant +432084000,Management of permanent pacemaker +432113002,Insertion of temporary cardiac pacemaker using fluoroscopic guidance +432773004,Hyperacute rejection of cardiac transplant +432843002,Acute rejection of cardiac transplant +432953000,Fluoroscopy of heart for checking of cardiac pacemaker electrode position +433068007,Aneurysm of thoracic aorta +433714008,Removal of temporary cardiac pacemaker lead using fluoroscopic guidance +43736008,Rheumatic left ventricular failure +4374004,Congenital anomaly of tricuspid valve +438476003,Autoimmune thrombotic thrombocytopenic purpura +438483005,Thrombophlebitis of subclavian vein +438646004,Thrombophlebitis of axillary vein +438647008,Thrombosis of subclavian vein +438773007,Recurrent pulmonary embolism +438785004,Deep venous thrombosis of tibial vein +439007008,Acquired thrombotic thrombocytopenic purpura +43910005,Congenital hypoplasia of aorta +439731006,Septic thrombophlebitis +440028005,Permanent atrial fibrillation +440059007,Persistent atrial fibrillation +44088000,Low cardiac output syndrome +441322009,Drug induced thrombotic thrombocytopenic purpura +441481004,Chronic systolic heart failure +441530006,Chronic diastolic heart failure +441541008,Takotsubo cardiomyopathy +441557008,Septic pulmonary embolism +442105001,Septic embolus of artery +442224005,Arteriosclerosis of autologous vein coronary artery bypass graft +442240008,Arteriosclerosis of nonautologous coronary artery bypass graft +442298000,Fracture of stent of coronary artery +442304009,Combined systolic and diastolic dysfunction +44241007,Heart valve stenosis +442421004,Arteriosclerosis of arterial coronary artery bypass graft +442439008,Atherosclerosis of bypass graft of limb +442559009,Bundle branch reentrant ventricular tachycardia +442693003,Atherosclerosis of autologous vein bypass graft of limb +442701004,Atherosclerosis of nonautologous biological bypass graft of limb +442735001,Atherosclerosis of nonautologous bypass graft of limb +442907005,Surgical removal of single chamber pacing cardioverter defibrillator electrode by transthoracic approach +442917000,Congenital long QT syndrome +44313006,Right heart failure secondary to left heart failure +443210003,Deep venous thrombosis of peroneal vein +443253003,Acute on chronic systolic heart failure +443254009,Acute systolic heart failure +443343001,Acute diastolic heart failure +443344007,Acute on chronic diastolic heart failure +443355007,Insertion of dual chamber pulse generator and repositioning of cardioverter defibrillation pulse generator lead +443358009,Surgical removal of transvenous electrode of dual chamber pacing cardioverter defibrillator pulse generator by transthoracic approach +443379009,Functional single ventricle +443414005,Cor bovinum +443434006,Replacement of dual chamber pulse generator +443477007,Surgical removal of transvenous electrode of dual chamber pacing cardioverter defibrillator pulse generator by transvenous approach +443502000,Atherosclerosis of coronary artery +443523006,Insertion of permanent transvenous electrode of dual chamber pulse generator +443622006,Insertion of temporary transvenous electrode of dual chamber cardiac pulse generator +443676006,Surgical removal of transvenous electrode of single chamber pacing cardioverter defibrillator pulse generator by transthoracic approach +443742008,Insertion of transvenous electrode of single chamber pacing cardioverter defibrillator pulse generator +443753002,Insertion of single chamber cardiac pacemaker pulse generator +443762000,Hypertrophic cardiomegaly +443816004,Insertion of temporary transvenous electrode of single chamber pacing pulse generator +443852000,Replacement of temporary transvenous electrode of dual chamber pulse generator +443958002,Surgical removal of transvenous electrode of single chamber pacing cardioverter defibrillator pulse generator by transvenous approach +443971004,Arteriosclerosis of artery of extremity +444179007,Insertion of dual chamber cardiac pacemaker pulse generator +444325005,Deep vein thrombosis of bilateral lower extremities +444401001,Insertion of single chamber pacing cardioverter defibrillator pulse generator +444437006,Insertion of transvenous electrode of dual chamber pacing cardioverter defibrillator pulse generator +444542000,Insertion of single chamber pacing cardioverter defibrillator pulse generator and transvenous electrode +444566006,Replacement of cardiac pacemaker +444569004,Aneurysm of infrarenal abdominal aorta +444718001,Bilateral enlargement of atria +444851003,Bifid apex of heart +444855007,Arteriosclerosis of coronary artery bypass graft of transplanted heart +444856008,Arteriosclerosis of internal mammary artery coronary artery bypass graft +444961009,Atrioventricular septal defect with common atrioventricular orifice +445001003,Left ventricular outflow tract obstruction due to malaligned outlet septum +445002005,Atrioventricular septal defect with separate atrioventricular orifices +445003000,Left ventricular outflow tract obstruction due to subpulmonary fibromuscular shelf +445027003,Left superior caval vein persisting to coronary sinus +445106006,Congenital dilation of left pulmonary artery +445131007,Left ventricular outflow tract obstruction due to fibromuscular tunnel +445167000,Congenital dilation of right pulmonary artery +445176007,Congenital dilation of ascending aorta +445208002,Congenital hypoplasia of right pulmonary artery +445209005,Congenital hypoplasia of left pulmonary artery +445235006,Left ventricular outflow tract obstruction due to anterolateral muscle band +445236007,Cardiorenal syndrome +445237003,Portopulmonary hypertension +445264002,Atrioventricular septal defect with ventricular imbalance consisting of dominant left ventricle and hypoplastic right ventricle +445268004,Apex of heart anterior to cardiac base +445270008,Aortic orifice left side by side with respect to pulmonary orifice +445284003,Aortic sinus of Valsalva aneurysm from noncoronary sinus +445285002,Aortic sinus of Valsalva aneurysm from left coronary sinus +445286001,Aortic sinus of Valsalva aneurysm from right coronary sinus +445294008,Common atrioventricular orifice in double inlet ventricle +445296005,Infracardiac location of anomalous pulmonary venous connections to portal system +445298006,Aortic orifice anterior with respect to pulmonary orifice +445299003,Atrioventricular septal defect with ventricular imbalance consisting of dominant right ventricle and hypoplastic left ventricle +445310002,Left ventricular outflow tract obstruction due to diaphragm +445330003,Right atrioventricular valve leaflets absent in double inlet ventricle (unguarded orifice) +445334007,Atrioventricular septal defect with additional muscular ventricular septal defect +445371009,Infracardiac location of anomalous pulmonary venous connections to inferior caval vein +445373007,Aortic orifice posterior with respect to pulmonary orifice +445435009,Apex of heart posterior to cardiac base +445436005,Left superior caval vein persisting to left sided atrium +445440001,Right ventricular aneurysm +445453003,Left ventricular outflow tract obstruction due to aneurysm of membranous septum +445454009,Left ventricular outflow tract obstruction due to atrioventricular valve +445539001,Right ventricular diverticulum +445540004,Left ventricular diverticulum +445543002,Intracardiac location of anomalous pulmonary venous connections to bilateral isomeric atriums +445607003,Aortic orifice posterior left with respect to pulmonary orifice +445636003,Aortic orifice anterior right with respect to pulmonary orifice +445650008,Aortic orifice anterior left with respect to pulmonary orifice +445898001,Abnormal atrial arrangement +445928005,Eisenmenger's syndrome +446221000,Heart failure with normal ejection fraction +44630002,Dilated cardiomyopathy due to fungal myocarditis +446326008,Premature restriction of foramen ovale +446358003,Right atrial hypertrophy +446432002,Pulmonary venous hypoplasia +446628002,Tricuspid leaflet gelatinous +446630000,Tricuspid leaflet noncoapting +446633003,Tricuspid leaflet thickened +446657003,Criss-cross heart with rightward rotation +446659000,Ventricular imbalance with dominant left ventricle and hypoplastic right ventricle +446667008,Two atrioventricular valves in double inlet ventricle +446668003,Obstructed pulmonary venous connection due to extrinsic compression +446670007,Aortic orifice right side by side with respect to pulmonary orifice +446699002,Tricuspid leaflet deficiency +446712002,Thromboembolus of precerebral artery +446781004,Tricuspid leaflet flail +446786009,Tricuspid leaflet fenestration +446813000,Left atrial hypertrophy +446890001,Obstructed pulmonary venous connection at coronary sinus orifice +446909006,Midline apex of heart +446916007,Functionally univentricular heart +447269006,Persistent common pulmonary vein +447274003,Obstructed pulmonary venous connection due to intrinsic narrowing +447275002,Alveolar capillary dysplasia with pulmonary venous misalignment +447283008,Solitary ventricle of indeterminate morphology +447284002,Double outlet right ventricle with intact ventricular septum +447285001,Ventricular imbalance +447286000,Ventricular imbalance with dominant right ventricle and hypoplastic left ventricle +447289007,Criss-cross heart with leftward rotation +447318008,Obstructed pulmonary venous connection at interatrial communication +447498008,Obstructed pulmonary venous connection due to extrinsic compression between right pulmonary artery and trachea +447528003,Obstructed pulmonary venous connection due to extrinsic compression at diaphragm +447571007,Obstructed pulmonary venous connection due to extrinsic compression between left pulmonary artery and bronchus +447661004,Diverticulum of coronary sinus +447663001,Pulmonary venous confluence remote from left atrium +447664007,Partial anomalous pulmonary venous connection of part of left lung +447665008,Interatrial communication through coronary sinus orifice +447666009,Divided left atrium with all pulmonary veins to proximal chamber and then to left atrium +447667000,Divided left atrium with all pulmonary veins to proximal chamber without communication to left atrium +447668005,Discontinuous pulmonary arteries +447669002,Hypoplasia of left heart without intrinsic valve stenosis and without atresia +447670001,Ventricular septal defect with anterior malaligned outlet septum with overriding pulmonary valve +447671002,Ventricular septal defect with posterior malaligned outlet septum with overriding aortic valve +447672009,Ventricular septal defect with posterior malaligned outlet septum with overriding pulmonary valve +447673004,Right ventricle to left of left ventricle +447681003,Continuity between mitral valve and pulmonary valve +447682005,Discontinuity between mitral valve and aortic valve +447683000,Discontinuity between mitral valve and pulmonary valve +447689001,Prolapse of Eustachian valve through atrial septum +447690005,Prolapse of Eustachian valve through tricuspid valve +447691009,Pulmonary venous confluence in direct proximity to left atrium +447695000,Tricuspid truncal valve +447696004,Unicommissural unicuspid aortic valve +447697008,Unicommissural unicuspid pulmonary valve +447698003,Ventricular septal defect with anterior malaligned outlet septum with overriding aortic valve +447700007,Distal aortopulmonary window with minimal superior rim +447701006,Intermediate aortopulmonary window with adequate superior and inferior rim +447702004,Confluent aortopulmonary window with minimal superior and inferior rim +447703009,Double aortic arch with left arch dominant and coarctation of right arch +447772003,Persisting fifth aortic arch with double barrell arch +447773008,Proximal aortopulmonary window with minimal inferior rim +447774002,Congenital midvalvar ring of mitral leaflet +447779007,Trifoliate left atrioventricular valve +447780005,Restrictive interatrial communication with obligatory shunt +447786004,Creation of anastomosis from ascending aorta to main pulmonary artery +447812003,Left superior vena cava persisting to right atrium and left atrium +447813008,Pulmonary venous confluence in horizontal orientation +447814002,Pulmonary venous confluence in vertical orientation +447817009,Obstruction of aortic arch +447822009,Congenital prolapse of aortic valve +447824005,Congenital abnormality of left atrium +447825006,Congenital abnormality of middle cardiac vein +447827003,Partial anomalous pulmonary venous connection of entire right lung +447829000,Congenital abnormality of tricuspid chordae tendinae +447830005,Congenital abnormality of tricuspid leaflet +447832002,Total anomalous pulmonary venous connection of supracardiac type +447838003,Pulmonary atresia and ventricular septal defect with aorta from left ventricle +447839006,Pulmonary atresia and ventricular septal defect with aorta from right ventricle +447840008,Stenosis of right pulmonary artery +447845003,Right ventricle posterior to left ventricle +447846002,Obstruction of ascending aorta +447849009,Double aortic arch with right arch dominant and atresia of left arch +447850009,Double aortic arch with right arch dominant and coarctation of left arch +447852001,Ventricular septal defect of inlet of right aspect of ventricular septum +447860000,Partial anomalous pulmonary venous connection of part of right lung +447861001,Partial anomalous pulmonary venous connection with anomalous veins connecting first to pulmonary venous confluence +447874007,Congenital abnormality of atrial septum +447875008,Congenital mass of mitral leaflet +447876009,Congenital aneurysm of subaortic left ventricle +447879002,Creation of anastomosis from ascending aorta to right pulmonary artery +447901004,Aortopulmonary window with tubular connection +447902006,Atresia of left superior vena cava +447903001,Coarctation of right pulmonary artery +447913009,Completely unroofed coronary sinus defect in left atrium +447914003,Total anomalous pulmonary venous connection of intracardiac type +447915002,Ebstein's anomaly of left sided tricuspid valve with discordant atrioventricular connections +447919008,Univentricular atrioventricular connection with absent right sided atrioventricular connection +447923000,Thin cardiac ventricular septum +447925007,Hypoperfusion of left pulmonary artery due to preferential flow to right pulmonary artery +447926008,Hypoperfusion of right pulmonary artery due to preferential flow to left pulmonary artery +447928009,Double aortic arch with balanced arches +447929001,Double aortic arch with left arch dominant +447930006,Double aortic arch with right arch dominant +447932003,Double outlet ventriculoarterial connections +447933008,Nonfenestrated interatrial communication within oval fossa +447934002,Right ventricular myocardial noncompaction cardiomyopathy +447935001,Left ventricular myocardial noncompaction cardiomyopathy +447937009,Congenital abnormality of aortic valve cusp +447938004,Congenital abnormality of cardiac vein +447939007,Partial anomalous pulmonary venous connection of entire left lung +447941008,Residual ventricular septal defect +447943006,Tripartite right ventricle +447950005,Creation of anastomosis from ascending aorta to left pulmonary artery +447962009,Divided left atrium with restrictive outlet of proximal chamber to left atrium +447968008,Descending aorta anterior and same side as azygos vein with azygos continuity of inferior vena cava +447970004,Double aortic arch with left arch dominant and atresia of right arch +447976005,Removal of cardiac biventricular permanent pacemaker using fluoroscopic guidance +447988007,Common arterial trunk with pulmonary arteries arising from trunk and unobstructed aortic arch +447997006,Vascular ring with retrotracheal right pulmonary artery from ascending aorta +447998001,Single ventricular outlet above right ventricle +447999009,Single ventricular outlet above left ventricle +448000003,Right superior vena cava connecting to left atrium and right atrium +448001004,Right ventricular outflow tract obstruction due to aneurysm of membranous septum +448004007,Acommissural unicuspid pulmonary valve +448007000,Atrioventricular septal defect associated with tetralogy of Fallot +448026008,Left atrioventricular valve bifoliate with fused left sided superior and inferior bridging leaflet +448027004,Supravalvar pulmonary trunk stenosis +448028009,Congenital left ventricular submitral valve aneurysm +448059006,Pulmonary trunk absent with absent left pulmonary artery +448060001,Pulmonary trunk absent with absent right pulmonary artery +448061002,Shelf-like supravalvar aortic stenosis +448062009,Ventricular septal defect with malaligned outlet septum +448063004,Congenital abnormality of posterior cardiac vein of left ventricle +448064005,Congenital abnormality of right atrium +448066007,Divided left atrium with nonrestrictive outlet of proximal chamber to left atrium +448067003,Recoarctation of aorta +448072007,Single inlet ventricle with absent atrioventricular connection +448073002,Congenital abnormality of tricuspid papillary muscle +448074008,Ebstein's anomaly with functional tricuspid stenosis +448075009,Uniatrial biventricular connection with absent right sided atrioventricular connection with straddling valve +448078006,Vascular ring with right aortic arch and right arterial ligament with absent left pulmonary artery +448079003,Vascular ring with right aortic arch and right patent arterial duct with absent left pulmonary artery +448080000,Single ventricular outlet above ventricle of indeterminate morphology +448081001,Hepatic vein to coronary sinus +448082008,Right ventricular outflow tract obstruction due to prolapse of Eustachian valve +448083003,Right ventricular outflow tract obstruction due to prolapsed arterial valve +448084009,Absent pulmonary trunk +448085005,Acommissural unicuspid aortic valve +448086006,Atresia of pulmonary trunk with absent left pulmonary artery +448087002,Atresia of pulmonary trunk with absent right pulmonary artery +448092000,Vascular ring due to aberrant subclavian artery and bilateral arterial ducts +448095003,Aortic left ventricular tunnel with right coronary artery from tunnel +448097006,Abnormal course of aortic arch +448098001,Aneurysm of aortic sinus of Valsalva with protrusion into pulmonary artery +448099009,Aneurysm of aortic sinus of Valsalva with protrusion into right atrium +448100001,Aneurysm of aortic sinus of Valsalva with protrusion into right ventricle +448102009,Quadricuspid truncal valve +448103004,Right ventricle inferior to left ventricle +448104005,Localized supravalvar aortic stenosis at sinutubular junction +448105006,Anomalous origin of pulmonary artery from patent arterial duct +448113007,Right superior vena cava connecting to coronary sinus +448115000,Aneurysm of aortic sinus of Valsalva with protrusion into left atrium +448116004,Aneurysm of aortic sinus of Valsalva with protrusion into left ventricle +448117008,Aneurysm of aortic sinus of Valsalva with protrusion into pericardial cavity +448118003,Atrioventricular septal defect with atrial and ventricular components and separate atrioventricular valves +448119006,Atrioventricular septal defect with atrioventricular valve regurgitation +448120000,Common arterial trunk with crossed over pulmonary arteries +448150008,Interrogation of cardiac pacemaker +448153005,Vascular ring with left aortic arch and right arterial duct arising from aberrant retroesophageal right subclavian artery +448154004,Vascular ring with left aortic arch and right arterial duct arising from retroesophageal aortic diverticulum +448155003,Pulmonary atresia with ventricular septal defect of Fallot type +448158001,Abnormality of thoracoabdominal aorta +448159009,Abnormality of tricuspid subvalvar apparatus +448161000,Aortic valve overriding ventricular septum +448162007,Bipartite right ventricle +448181004,Anomalous coronary venous return +448182006,Atrioventricular septal defect with ventricular component and interchordal shunting under inferior bridging leaflet +448183001,Atrioventricular septal defect with ventricular component and interchordal shunting under superior bridging leaflet +448184007,Atrioventricular septal defect with ventricular component and shunting under connecting tongue with separate orifices +448208003,Nonrestrictive interatrial communication +448242007,Repositioning of cardiac pacemaker lead using fluoroscopic guidance +448277007,Midline posterior apex of heart +448278002,Coronary sinus drainage cephalad to left superior vena cava +448280008,Malalignment of aortic sinus in relation to pulmonary sinus +448303009,Vascular ring with left aortic arch to right descending aorta and right arterial ligament +448304003,Vascular ring with left aortic arch to right descending aorta and right patent arterial duct +448305002,Vascular ring with malrotation and dextroversion of heart and hypoplasia of right lung and left arterial duct +448308000,Right ventricular outflow tract obstruction due to common atrioventricular valve +448309008,Right ventricular outflow tract obstruction due to fibromuscular shelf +448310003,Right ventricular outflow tract obstruction due to malaligned outlet septum +448320008,Divided left atrium with some pulmonary veins to proximal chamber +448326002,Right inferior vena cava connecting to left atrium and right atrium +448328001,Aneurysm of aortic sinus of Valsalva without rupture +448330004,Aneurysm of muscular septum +448331000,Atrioventricular septal defect with restrictive ventricular component +448332007,Left superior vena cava persisting to right sided atrium +448356006,Coronary sinus drainage cephalad to right superior vena cava +448357002,Midline anterior apex of heart +448413002,Pulmonary valve overriding ventricular septum +448414008,Restrictive interatrial communication +448415009,Subaortic stenosis due to common atrioventricular valve +448471006,Congenital abnormality of ascending aorta +448472004,Congenital abnormality of pulmonary trunk +448475002,Absent pulmonary valve syndrome with ventricular septal defect of non Fallot type +448476001,Subpulmonary stenosis +448477005,Superior to inferior ventricular relationship +448486000,Anomalous pulmonary to systemic collateral vein +448487009,Anomalous pulmonary venous connection of mixed type +448497000,Congenital deformity of mitral valve annulus +448499002,Infracardiac location of anomalous pulmonary venous connection +448500006,Intracardiac location of anomalous pulmonary venous connection +448501005,Interrupted left inferior vena cava +448510002,Stenosis of left pulmonary artery +448516008,Double outlet right ventricle with doubly committed ventricular septal defect and pulmonary stenosis +448517004,Vascular ring with left aortic arch and retroesophageal right descending aorta and right arterial duct arising from aortic diverticulum and aberrant right subclavian artery +448528000,Aneurysm of aortic sinus of Valsalva with rupture to pericardial cavity +448574001,Unipartite right ventricle +448575000,Fenestrated interatrial communication within oval fossa +448576004,Fenestration of aortic valve cusp +448577008,Muscular subvalvar atresia of aorta +448590001,Maintenance of intravenous cardiac pacemaker system +448595006,Scimitar syndrome with additional anomalous pulmonary venous connection +448599000,Total anomalous pulmonary venous connection of infracardiac type +448604006,Congenital abnormality of pulmonary valve cusp +448611005,Vascular ring with left aortic arch and retrotracheal right patent arterial duct +448612003,Single ventricular outlet above both ventricles +448614002,Inferior vena cava anterior and same side as descending aorta +448618004,Abnormality of mitral valve annulus +448619007,Anterior deviation of infundibular septum of Fallot type +448620001,Azygos continuation of inferior vena cava to right superior vena cava +448624005,Uniatrial biventricular connection with absent left sided atrioventricular connection with straddling valve +448625006,Univentricular atrioventricular connection with absent left sided atrioventricular connection +448626007,Gelatinous atrioventricular valve leaflet in atrioventricular septal defect +448627003,Vascular ring with left aortic arch and right arterial duct arising from aberrant retroesophageal brachiocephalic artery +448628008,Vascular ring with left aortic arch and right arterial duct arising from retroesophageal aortic diverticulum and aberrant right subclavian artery +448629000,Vascular ring with left aortic arch and right arterial ligament +448630005,Vascular ring with left aortic arch and right patent arterial duct +448631009,Right inferior vena cava connecting to left sided atrium +448632002,Left inferior vena cava connecting to left atrium and right atrium +448633007,Right ventricular outflow tract obstruction due to atrioventricular valve +448634001,Absent aortic valve cusp +448637008,Coarctation of left pulmonary artery +448643005,Abnormality of pulmonary valve +448645003,Aortic arch hypoplasia between subclavian and common carotid arteries +448646002,Aortic arch hypoplasia distal to subclavian artery +448681000,Indeterminate atrial arrangement +448699008,Thoracotomy and removal of cardiac pacemaker electrodes +448721009,Abnormal course of aortic arch and descending aorta +448722002,Abnormality of abdominal aorta +448723007,Aneurysm of aortic sinus of Valsalva with rupture to left atrium +448724001,Aneurysm of aortic sinus of Valsalva with rupture to left ventricle +448725000,Continuity between aortic valve and mitral valve +448727008,Total anomalous pulmonary venous connections of mixed type +448728003,Supracardiac location of anomalous pulmonary venous connection +448729006,Common atrioventricular valve in functionally univentricular heart +448742006,Abnormality of aortic arch +448743001,Abnormality of aortic valve +448744007,Aneurysm of aortic sinus of Valsalva with rupture to pulmonary artery +448745008,Aneurysm of aortic sinus of Valsalva with rupture to right atrium +448746009,Aneurysm of aortic sinus of Valsalva with rupture to right ventricle +448747000,Common arterial trunk with pulmonary origin from truncal valve sinus +448777006,Noncoapting atrioventricular valve leaflet in atrioventricular septal defect +448778001,Obstruction of right ventricular outflow tract due to aortico-left ventricular tunnel +448780007,Ventricular septal defect with absent outlet septum and overriding truncal valve with extension of membranous septum +448782004,Interrupted right inferior vena cava +448783009,Pulmonary vein dilatation +448786001,Posterior deviation of infundibular septum of obstructive aortic arch type +448793002,Bicuspid truncal valve +448794008,Double outlet right ventricle with subpulmonary ventricular septal defect +448809003,Common arterial trunk with obstruction of aortic arch +448820003,Thickened mitral leaflet +448821004,Abnormality of truncal valve cusp +448822006,Deficiency of atrioventricular valve leaflet in atrioventricular septal defect +448823001,Left ventricular outflow tract obstruction due to prolapse of Eustachian valve +448827000,Ventricular septal defect with absent outlet septum and overriding truncal valve with inferior muscular rim +448828005,Deficiency of mitral leaflet +448836001,Thickened atrioventricular valve leaflet in atrioventricular septal defect +448840005,Repair of supravalvar aorta using patch +448842002,Aortico-left ventricular tunnel of simple type +448843007,Aortico-left ventricular tunnel with aneurysm of intracardiac septal wall and aneurysm of extracardiac aortic wall +448844001,Multiple mitral papillary muscles with hammock valve +448869001,Replacement of cardiac biventricular permanent pacemaker using fluoroscopic guidance +448871001,Subaortic stenosis due to restrictive ventricular septal defect in functionally univentricular heart +448876006,Subarterial ventricular septal defect +448887003,Common arterial trunk with isolated pulmonary artery +448898002,Outflow tract abnormality in solitary indeterminate ventricle +448903003,Dilatation of annulus of aortic valve +448905005,Dilatation of aortic sinus of Valsalva +448919005,Atrioventricular septal defect with ventricular component under superior bridging leaflet without chordal attachment to ventricular septal crest +448920004,Congenital abnormality of mitral subvalvular apparatus +448923002,Hypoplasia of infundibular septum +448946000,Anterior-posterior orientation of bicuspid pulmonary valve +448947009,Congenital abnormality of left atrioventricular valve in double inlet ventricle +448965008,Inferior vena cava connecting to right atrium and left atrium +448966009,Hypoplasia of trabecular portion of right ventricle +448975006,Aortico-left ventricular tunnel with extracardiac aneurysm of aortic wall +449005003,Absence of mitral chordae tendinae +449008001,Flail atrioventricular valve leaflet in atrioventricular septal defect +449009009,Left inferior vena cava connecting to left sided atrium +449010004,Left inferior vena cava connecting to right sided atrium +449011000,Fenestration of atrioventricular valve leaflet in atrioventricular septal defect +449014008,Hepatic vein to left sided atrium +449015009,Hepatic vein to right sided atrium +449016005,Hepatic vein to left atrium and right atrium +44902004,Thrombosis of penis +449025004,Vascular ring with left aortic arch and right arterial duct ligament arising from retroesophageal aortic diverticulum with aberrant right subclavian artery +449031001,Congenital abnormality of right atrioventricular valve leaflet in double inlet ventricle +449032008,Congenital abnormality of right atrioventricular valve papillary muscle in double inlet ventricle +449037002,Truncal valve overriding ventricular septum +449040002,Hypoplasia of right atrioventricular valve annulus in double inlet ventricle +449085001,Pulmonary artery connecting to coronary artery via collateral artery +449086000,Ebstein's anomaly of left atrioventricular valve in functionally univentricular heart +449087009,Ebstein's anomaly of right atrioventricular valve in functionally univentricular heart +449098005,Congenital abnormality of left atrioventricular valve chordae tendinae in double inlet ventricle +449099002,Left atrioventricular valve stenosis in double inlet ventricle +449118008,Left ventricular outflow tract obstruction due to prolapsed arterial valve +449119000,Obstruction of aortic outflow +449120006,Obstruction of pulmonary outflow tract +449123008,Eccentric opening of tricuspid aortic valve +449124002,Eccentric opening of tricuspid pulmonary valve +449125001,Congenital stenosis of pulmonary artery +449133000,Absence of pulmonary valve cusp +449135007,Congenital stenosis of mitral subvalvular apparatus +449136008,Fenestration of mitral leaflet +449138009,Right ventricular outflow tract obstruction due to septal hypertrophy +449139001,Commissural fusion of truncal valve +449140004,Right-left orientation of bicuspid pulmonary valve +449149003,Deficiency of aortic valve cusp +449158005,Ebstein's anomaly of tricuspid valve with atrialization of right ventricular chamber +449178002,Doubly committed ventricular septal defect in double outlet ventriculoarterial connection +449184004,Dilatation of descending aorta +449185003,Dilatation of aortic sinutubular junction +449186002,Dilatation of pulmonary valve annulus +449188001,Left superior vena cava persisting to coronary sinus and then to right sided atrium +449189009,Mass associated with atrioventricular valve leaflet in atrioventricular septal defect +449190000,Muscular ventricular septal defect in trabecular septum +449228007,Hypoplasia of left atrioventricular valve annulus in double inlet ventricle +449232001,Aortic arch hypoplasia between carotid arteries +449270002,Hypoplasia of mitral valve annulus +449271003,Residual coarctation of aorta +449315003,Congenital abnormality of right atrioventricular valve chordae tendinae in double inlet ventricle +449316002,Congenital abnormality of right atrioventricular valve in double inlet ventricle +449350006,Pulmonary artery with absent proximal arterial connection +449351005,Residual interatrial communication +449352003,Right ventricular outflow tract obstruction due to abnormal cardiac muscle bands +449353008,Hypoplasia of trabecular portion of left ventricle +449354002,Hypoplasia of pulmonary cusps of absent pulmonary valve type +449379004,Atrioventricular septal defect with ventricular component under inferior bridging leaflet with chords to crest ventricular septum +449382009,Congenital abnormality of atrioventricular valve leaflet in atrioventricular septal defect +449383004,Congenital abnormality of atrioventricular valve papillary muscle in atrioventricular septal defect +449385006,Confluent muscular ventricular septal defect +449388008,Abnormality of atrioventricular valve leaflet in atrioventricular septal defect +449397007,Insertion of permanent cardiac pacemaker pulse generator and electrode +449398002,Aortico-left ventricular tunnel with intracardiac aneurysm of septal portion +449425007,Intracardiac location of anomalous pulmonary venous connection to coronary sinus +449426008,Left sided azygos continuation of inferior vena cava to left superior vena cava +449427004,Double aortic arch with right arch dominant and left arch patent +449428009,Divided left atrium with all pulmonary veins to proximal chamber and then to left atrium with additional pulmonary venous chamber communication +449429001,Divided left atrium with some pulmonary veins to proximal chamber draining to right atrium +449430006,Double aortic arch with left arch dominant and right arch patent +449433008,Diffuse stenosis of left pulmonary artery +449434002,Supracardiac location of anomalous pulmonary venous connection to left superior vena cava +449435001,Infracardiac location of anomalous pulmonary venous connection with two descending veins +449436000,Divided left atrium with some pulmonary veins to proximal chamber draining to left atrium +449440009,Divided left atrium with all pulmonary veins to proximal chamber without communication to left atrium with extracardiac pulmonary venous chamber communication +449441008,Divided left atrium with all pulmonary veins to proximal chamber without communication to left atrium with pulmonary venous chamber communication to right atrium +449442001,Congenital abnormality of great cardiac vein +449443006,Supracardiac location of anomalous pulmonary venous connection to left sided vertical vein +449444000,Infracardiac location of anomalous pulmonary venous connection to hepatic vein +449451009,Supracardiac location of anomalous pulmonary venous connection to hemiazygos vein +449452002,Intracardiac location of anomalous pulmonary venous connection to right atrium +449455000,Abnormal attachment of tricuspid chordae tendinae +449456004,Atrioventricular septal defect with atrioventricular valve regurgitation through left septal commissure +449457008,Atrioventricular septal defect with atrioventricular valve regurgitation through left superior bridging leaflet lateral mural commissure +449458003,Right superior vena cava connecting to coronary sinus and then to left sided atrium +449459006,Atrioventricular septal defect with atrioventricular valve regurgitation through left inferior bridging leaflet lateral mural commissure +449467003,Diffuse stenosis of right pulmonary artery +449479003,Malattachment of atrial septum +449490008,Atrioventricular septal defect with atrioventricular valve regurgitation through right septal commissure +449492000,Divided left atrium with all pulmonary veins to proximal chamber and then to left atrium with additional pulmonary venous chamber communication to right atrium +449493005,Supracardiac location of anomalous pulmonary venous connection to right sided vertical vein +449494004,Supracardiac location of anomalous pulmonary venous connection to right superior vena cava +449495003,Infracardiac location of anomalous pulmonary venous connection to patent ductus venosus +449513006,Anomalous pulmonary venous connection of mixed type with one pulmonary venous confluence +449514000,Intracardiac location of anomalous pulmonary venous connection to midline with isomeric atria +449520004,Right ventricular outflow tract obstruction due to septoparietal trabeculation +449521000,Anomalous pulmonary venous connection of mixed type with two pulmonary venous confluences +449523002,Right superior vena cava persisting to coronary sinus and then to right sided atrium +449529003,Abnormality of pulmonary valve cusp +449532000,Congenital abnormality of anterior cardiac vein +449533005,Supracardiac location of anomalous pulmonary venous connection to azygos vein +449534004,Obstructed interchordal space of tricuspid chordae tendinae +449536002,Double aortic arch with right arch dominant and atresia of left arch and left ligament to diverticulum +449537006,Atrioventricular septal defect with atrioventricular valve regurgitation through right anterosuperior inferior mural commissure +449538001,Atrioventricular septal defect with atrioventricular valve regurgitation through right anterosuperior superior bridging leaflet commissure +449539009,Atrioventricular septal defect with atrioventricular valve regurgitation through right inferior bridging leaflet inferior mural commissure +449542003,Outflow tract obstruction in solitary indeterminate ventricle +449544002,Deficiency of truncal valve cusp +449547009,Right pulmonary artery with absent proximal arterial connection +449551006,Single stenosis of left pulmonary artery +449559008,Multiple stenoses of left pulmonary artery +449560003,Multiple stenoses of right pulmonary artery +449563001,Absence of primary mitral chordae tendinae +449564007,Fenestration of truncal valve cusp +449576007,Left pulmonary artery with absent proximal arterial connection +449587004,Divided left atrium with all pulmonary veins to proximal chamber and then to left atrium with additional pulmonary venous chamber extracardiac communication +449589001,Single stenosis of right pulmonary artery +449593007,Divided left atrium with some pulmonary veins to proximal chamber draining to left atrium and others connecting directly to left atrium +449594001,Divided left atrium with some pulmonary veins to proximal chamber draining to left atrium and others connecting anomalously +449595000,Divided left atrium with some pulmonary veins to proximal chamber draining to right atrium and others connecting anomalously +449596004,Divided left atrium with some pulmonary veins to proximal chamber draining to right atrium and others connecting directly to left atrium +449599006,Malattachment of atrial septum with posterior aspect of septum primum to left +449600009,Malattachment of atrial septum with superior aspect of septum primum to left and posterior +449601008,Fenestration of pulmonary valve cusp +449602001,Subaortic outflow tract obstruction in solitary indeterminate ventricle +449604000,Subpulmonary outflow tract obstruction in solitary indeterminate ventricle +449605004,Deficiency of pulmonary valve cusp +449863006,Insertion of pacemaker for control of atrial fibrillation +449873008,Atherosclerotic plaque disruption with thrombosis of artery +44993000,Rheumatic mitral valve and aortic valve stenosis +450300002,Anomalous origin of right coronary artery from pulmonary artery +450301003,Anomalous origin of left coronary artery from pulmonary artery +450302005,Anomalous origin of left anterior descending coronary artery from pulmonary artery +450304006,Coarctation of suprarenal abdominal aorta +450305007,Coarctation of infrarenal abdominal aorta +450312003,Coarctation of aorta between subclavian artery and common carotid artery +450313008,Coarctation of aorta between left common carotid artery and right common carotid artery +450314002,Vascular ring with right aortic arch and left patent ductus arteriosus +450315001,Vascular ring with right aortic arch and left ligamentum arteriosum +45058001,Syphilis of pulmonary valve +450811002,Maintenance of battery of cardiac pacemaker system +450816007,Revision of transplantation of heart +450820006,Replacement of pulse generator of permanent cardiac pacemaker using fluoroscopic guidance +450821005,Replacement of pulse generator of implantable cardioverter defibrillator using fluoroscopic guidance +45093008,Chronic interstitial myocarditis +45227007,Hypertrophic obstructive cardiomyopathy +45237002,Congenital dilatation of aorta +45281005,Atherosclerosis of renal artery +45492009,Congenital stenosis of superior vena cava +45503006,Common ventricle +4557003,Preinfarction syndrome +45650007,Kyphoscoliotic heart disease +45669002,Cardio-omentopexy +45720008,"Implantation of electrode into cardiac ventricle, replacement" +457607008,Obstruction of tricuspid valve due to neoplasm +457612009,Thrombosis of tricuspid valve +457617003,Perforation of tricuspid valve leaflet +457622003,Rupture of tricuspid valve papillary muscle +457632005,Obstruction of mitral valve due to neoplasm +457637004,Thrombosis of mitral valve +457642007,Obstruction of pulmonary valve due to neoplasm +457647001,Thrombosis of pulmonary valve +457657000,Perforation of pulmonary valve cusp +457662004,Rupture of pulmonary valve cusp +457667005,Disruption of pulmonary valve annulus +457677007,Dehiscence of pulmonary valve annulus as complication of procedure +457682000,Obstruction of aortic valve due to neoplasm +457687006,Thrombosis of aortic valve +457692008,Disruption of aortic valve annulus +457697002,Dehiscence of aortic valve annulus as complication of procedure +457702006,Disorder of aortic valve prosthesis +457707000,Thrombosis of truncal valve +457712004,Calcification of truncal valve +457717005,Perforation of truncal valve cusp +457722005,Rupture of truncal valve cusp +457747007,Rupture of right atrioventricular (not morphologically tricuspid) valve chordae tendinae +457752002,Rupture of right atrioventricular (not morphologically tricuspid) valve papillary muscle +457777001,Rupture of left atrioventricular (not morphologically mitral) valve chordae tendinae +457782008,Rupture of left atrioventricular (not morphologically mitral) valve papillary muscle +458038006,Abscess of truncal valve +458039003,Anomalous origin of left circumflex coronary artery from pulmonary artery +458084001,Interventricular dyssynchrony +45894003,Medionecrosis of aorta +459062008,Fatal congenital nonlysosomal heart glycogenosis +459065005,Congenital atresia of left main stem coronary artery +459066006,Anomalous origin of accessory coronary artery from pulmonary artery +459068007,Infective endocarditis of aortic valve +459151006,Infective endocarditis of tricuspid valve +459152004,Infective endocarditis of mitral valve +459153009,Infective endocarditis of pulmonary valve +459154003,Infective endocarditis of truncal valve +459160003,Abscess at site of aortic coarctation +459161004,Abscess at site of ventricular septal defect +459163001,Infective endarteritis at site of aortic coarctation +459172009,Infective endocarditis at site of ventricular septal defect +459173004,Infective endarteritis at site of aortopulmonary window +459180002,Aneurysm of patch of atrioventricular septal defect +459181003,Aneurysm of patch of ventricular septal defect +459182005,Aneurysm of patch of left ventricular outflow tract +459183000,Aneurysm of patch of right ventricular outflow tract +45921003,Removal of cardiac pacemaker electrodes with replacement +460358000,Infective endocarditis at site of patch of ventricular septal defect +460437005,Anomalous origin of dual left anterior descending coronary arteries from right coronary artery and left coronary artery +460438000,Anomalous origin of large conus artery from right coronary artery +460471001,Anomalous origin of conus artery from separate aortic sinus orifice +460500001,Histiocytoid mitochondrial cardiomyopathy due to cytochrome aa3 deficiency +460510005,Anomalous origin of coronary arteries from anterior aortic sinus +460517008,Anomalous origin of coronary arteries from both aortic sinuses of bicuspid valve +460524009,Anomalous origin of right coronary artery from left anterior descending coronary artery +460531008,Anomalous origin of right coronary artery from left circumflex coronary artery +460538002,Anomalous origin of left coronary artery from right coronary artery +460545002,Congenital atresia of right coronary artery orifice +460581004,Anomalous origin of accessory coronary artery from aortic sinus +460582006,Anomalous origin of left coronary artery and right coronary artery from pulmonary artery +460583001,Anomalous origin of sinus node coronary artery from separate aortic sinus orifice +460584007,Anomalous course of coronary artery posterior to pulmonary trunk +460585008,Anomalous course of coronary artery posterior to aorta +460586009,Anomalous origin of right coronary artery from left coronary artery +460587000,Anomalous origin of single coronary artery from left coronary artery aortic sinus +460588005,Anomalous origin of left circumflex coronary artery from right coronary aortic sinus +460589002,Vascular ring with right aortic arch and left ligamentum arteriosum between left subclavian artery and left common carotid artery +460590006,Vascular ring with right aortic arch and left ligamentum arteriosum with anomalous retroesophageal left subclavian artery +460591005,Vascular ring with right aortic arch and left ductus arteriosus from anomalous retroesophageal left subclavian artery +460592003,Vascular ring with right aortic arch and left ductus arteriosus from retroesophageal diverticulum of aorta and anomalous left subclavian artery +460593008,Vascular ring with right aortic arch and left ductus arteriosus from anomalous retroesophageal brachiocephalic artery +460594002,Vascular ring with right aortic arch and left ductus arteriosus from retroesophageal diverticulum of aorta +460598004,Acquired stenosis of superior vena cava +460599007,Dysfunction of tricuspid valve papillary muscle +460600005,Dysfunction of left atrioventricular (not morphologically mitral) valve papillary muscle +460601009,Dysfunction of right atrioventricular (not morphologically tricuspid) valve papillary muscle +460609006,Anomalous insertion of ductus arteriosus +460610001,Anomalous insertion of ductus arteriosus into pulmonary trunk +460611002,Anomalous insertion of ductus arteriosus into right pulmonary artery +460612009,Ductus arteriosus dependent pulmonary circulation +460614005,Dilatation of left atrioventricular (not morphologically mitral) valve in double inlet ventricle +46085004,Thrombosis of retinal vein +460906001,Vascular ring with mirror image branching of right aortic arch and left ligamentum arteriosum +460913001,Systemic to coronary collateral artery +460923005,Anomalous origin of right coronary artery from left coronary artery aortic sinus +460930004,Anomalous origin of left coronary artery from right coronary aortic sinus +460937001,Anomalous origin of single coronary artery from right coronary artery aortic sinus +460944005,Anomalous origin of right coronary artery from left coronary artery aortic sinus and anomalous origin of left coronary artery from right coronary artery aortic sinus +461000119108,History of myocardial infarction in last eight weeks +461089003,Cardiac abnormality due to heart abscess +461090007,Right ductus arteriosus +46109009,Subendocardial ischemia +461091006,Patent right ductus arteriosus +461102008,Anomalous insertion of ductus arteriosus into distal left pulmonary artery +461104009,Interruption of coronary artery +461105005,Anomalous origin of coronary artery from aorta +461107002,Single coronary artery dividing into right coronary artery and left coronary artery +461108007,Disorder of left atrioventricular (not morphologically mitral) valve prosthesis +461109004,Anomalous course of coronary artery anterior to pulmonary trunk and aorta +461110009,Anomalous course of coronary artery posterior to pulmonary trunk and aorta +461111008,Anomalous course of coronary artery anterior to aorta +461112001,Anomalous course of coronary artery anterior to pulmonary trunk +46113002,Hypertensive heart failure +461321006,Right ventricular hypertension +461331004,Malposition of coronary artery orifice +461345005,Coronary artery orifice abnormally low +461359003,Common coronary artery orifice +461366002,Congenital hypoplasia of descending aorta +461371009,Congenital hypoplasia of abdominal aorta +461376004,Congenital hypoplasia of thoracoabdominal aorta +461381008,Anomalous intramural course of proximal portion of coronary artery within aortic sinus +461382001,Anomalous intramural course of proximal portion of coronary artery across commissure of aortic valve +461383006,Anomalous intramural course of proximal portion of coronary artery above aortic sinus +461384000,Anomalous course of coronary artery across right ventricular outflow tract +461385004,Anomalous course of coronary artery through infundibular septum +461390001,Anomalous insertion of ductus arteriosus into unknown site +461407005,Acquired stenosis of pulmonary venous structure +461408000,Acquired abnormality of pulmonary venous structure +461413001,Acquired submitral aneurysm of left ventricle +461414007,Acquired subaortic aneurysm of left ventricle +461420008,Anomalous coronary artery with acute angulation of less than 45 degrees relative to aorta +461421007,Anomalous coronary artery without acute angulation of less than 45 degrees relative to aorta +461431000,Failure of cardiac valve prosthesis +461432007,Abscess at site of cardiac valve prosthesis +461435009,Anomalous origin of left anterior descending coronary artery from right coronary artery aortic sinus +461436005,Anomalous origin of dual left anterior descending coronary arteries +461438006,Double barrel dual coronary artery orifices within aortic sinus +461439003,Widely spaced right coronary artery and left coronary artery orifices within single aortic sinus +461557000,Congenital atresia of aortic arch +461562004,Atresia of aortic arch with fibrous cord +461567005,Atresia of aortic arch with fibrous cord distal to subclavian artery +461572001,Atresia of aortic arch with fibrous cord between subclavian artery and common carotid artery +461577007,Atresia of aortic arch with fibrous cord between left common carotid artery and right common carotid artery +461587006,Congenital luminal atresia of aortic arch distal to subclavian artery +461592008,Congenital luminal atresia of aortic arch between subclavian artery and common carotid artery +461597002,Congenital luminal atresia of aortic arch between left common carotid artery and right common carotid artery +461602009,Acquired complete obstruction of aortic arch +461609000,Acquired luminal obstruction of aortic arch +461614001,Acquired luminal obstruction of aortic arch distal to subclavian artery +461619006,Acquired luminal obstruction of aortic arch between subclavian artery and common carotid artery +461624009,Acquired luminal obstruction of aortic arch between left common carotid artery and right common carotid artery +461629004,Right aortic arch branching pattern +46165000,Chronic endocarditis due to rheumatic heart disease +462171004,Fetal cardiomegaly +46253008,Thrombophlebitis of lower extremities +4641009,Myxedema heart disease +46557031000119105,Acute deep venous thrombosis of left peroneal vein +46696008,Dilated cardiomyopathy due to dermatomyositis +46847001,Chronic pulmonary edema +46935006,Stokes-Adams syndrome +46939000,Keshan disease +47040006,Disorder of aorta +47058000,Heart transplant with recipient cardiectomy +470750006,Failure of growth of fetal right cardiac ventricle +471268000,Middle aortic syndrome +471276003,Single left coronary artery supplying all of heart with usual distribution of right coronary artery derived from distal left coronary artery +471277007,Single right coronary artery supplying all of heart with usual distribution of left coronary artery derived from distal right coronary artery +471278002,Recurrent interatrial communication after prior cardiovascular surgical procedure +471279005,Recurrent atrial component of atrioventricular septal defect after prior cardiovascular surgical procedure +471280008,Recurrent ventricular component of atrioventricular septal defect after prior cardiovascular surgical procedure +471285003,Anomalous origin of coronary artery from aortic sinus to left of nonfacing aortic sinus +471286002,Anomalous origin of coronary artery from aortic sinus to right of nonfacing aortic sinus +471287006,Anomalous origin of left coronary artery and right coronary artery with dual orifices from aortic sinus to left of nonfacing aortic sinus +471288001,Anomalous origin of left coronary artery and right coronary artery with dual orifices from aortic sinus to right of nonfacing aortic sinus +471289009,Anomalous origin of circumflex artery from aortic sinus to right of nonfacing aortic sinus and anomalous origin of left anterior descending coronary artery and right coronary artery from aortic sinus to left of nonfacing aortic sinus +471290000,Anomalous origin of left anterior descending artery from aortic sinus to right of nonfacing aortic sinus and anomalous origin of circumflex artery and right coronary artery from aortic sinus to left of nonfacing aortic sinus +471291001,Anomalous origin of right coronary artery from aortic sinus to right of nonfacing aortic sinus and anomalous origin of left coronary artery from aortic sinus to left of nonfacing aortic sinus +471292008,Anomalous origin of right coronary artery and circumflex artery from aortic sinus to right of nonfacing aortic sinus and anomalous origin of left anterior descending artery from aortic sinus to left on nonfacing aortic sinus +471293003,Anomalous origin of left anterior descending artery and right coronary artery from aortic sinus to right of nonfacing aortic sinus and anomalous origin of circumflex artery from aortic sinus to left of nonfacing aortic sinus +471297002,Anomalous origin of single coronary artery from nonfacing aortic sinus +471298007,Anomalous origin of single coronary artery from aortic sinus to left of nonfacing aortic sinus +471299004,Anomalous origin of single coronary artery from aortic sinus to right of nonfacing aortic sinus +471301006,Acquired excessive restriction of interatrial communication +471841009,Inflammatory cardiomyopathy +471846004,Cardiomyopathy due to neuromuscular disorder +471851005,Disorder of myocardium associated with rejection of cardiac transplant +471858004,Valvular cardiomyopathy +471863000,Disorder of myocardium due to sickle cell hemoglobinopathy +471870000,Pacing-induced cardiomyopathy +471875005,Ventricular myocardial noncompaction cardiomyopathy +471880001,Heart failure due to end stage congenital heart disease +471885006,Hypertrophic cardiomyopathy with genetic marker +471890009,Dilated cardiomyopathy with genetic marker +472100003,Ischemic dilated cardiomyopathy due to coronary artery disease +472101004,Interruption of aortic arch distal to subclavian artery +472102006,Interruption of aortic arch between subclavian artery and common carotid artery +472103001,Interruption of aortic arch between left common carotid artery and right common carotid artery +472315005,Mitochondrial cardiomyopathy +472316006,Hypertrophic mitochondrial cardiomyopathy +472317002,Histiocytoid mitochondrial cardiomyopathy +472318007,Hypertrophic mitochondrial cardiomyopathy associated with cataracts and lactic acidosis +472319004,Fatal infantile mitochondrial cardiomyopathy +472320005,Maternally inherited mitochondrial cardiomyopathy and myopathy +472323007,Fetal cardiomyopathy +472324001,Fetal hypertrophic cardiomyopathy +472325000,Fetal hypertrophic cardiomyopathy due to twin to twin transfusion syndrome +472326004,Fetal hypertrophic cardiomyopathy associated with renal disease +472327008,Fetal dilated cardiomyopathy +472702003,Fetal pulmonary outflow tract obstruction due to twin to twin transfusion syndrome +472703008,Pseudoacardia +472750004,Stenosis of superior vena cava as complication of procedure +472756005,Stenosis of anastomosis between pulmonary venous confluence and left atrium after prior repair of anomalous pulmonary venous connection +472757001,Pulmonary venous hypertension as complication of procedure +472758006,Pulmonary venous hypertension due to compression of pulmonary great vein +472759003,Pulmonary venous hypertension due to compression of pulmonary great vein by sclerosing mediastinitis +472760008,Pulmonary venous hypertension due to compression of pulmonary great vein by lymphadenopathy +472761007,Pulmonary venous hypertension due to compression of pulmonary great vein by neoplasm +472762000,Disorder of right atrium +472763005,Disorder of left atrium +472764004,Disorder of right atrium as complication of procedure +472765003,Thrombus of physiologic right atrium as complication of procedure +472766002,Disorder of left atrium as complication of procedure +472767006,Thrombus of physiologic left atrium as complication of procedure +472768001,Obstruction of pulmonary great vein due to compression by right atrial dilatation +472769009,Excessive restriction of interatrial communication as complication of procedure +472782001,Stenosis of subvalvular region of neopulmonary valve +472783006,Stenosis of subvalvular region of neoaortic valve +472784000,Right ventricular dysfunction due to disorder of left ventricle +472785004,Right ventricular outflow tract obstruction due to neoplasm +472786003,Right ventricular outflow tract obstruction due to foreign body +472787007,Left ventricular outflow tract obstruction due to neoplasm +472789005,Obstruction of surgically constructed pulmonary venous pathway as complication of procedure +472790001,Pulmonary venous hypertension due to disorder of left heart +472791002,Stenosis of pulmonary great vein as complication of procedure +472793004,Subaortic stenosis as complication of procedure +472794005,Acquired subaortic stenosis associated with functionally univentricular heart +472795006,Acquired subaortic stenosis due to restrictive ventricular septal defect associated with functionally univentricular heart +472796007,Congenital subaortic stenosis due to restrictive ventricular septal defect associated with functionally univentricular heart +472797003,Subaortic stenosis associated with functionally univentricular heart as complication of procedure +472798008,Subpulmonary stenosis as complication of procedure +472799000,Acquired subpulmonary stenosis associated with functionally univentricular heart +472800001,Acquired subpulmonary stenosis due to restrictive ventricular defect associated with functionally univentricular heart +472801002,Congenital subpulmonary stenosis due to restrictive ventricular defect associated with functionally univentricular heart +472802009,Subpulmonary stenosis associated with functionally univentricular heart as complication of procedure +472807003,Ventricular septal defect due to and following infective endocarditis +472820000,Abnormal ventriculoarterial connection with usual origin of left coronary artery from aortic sinus to right of nonfacing aortic sinus and usual origin of right coronary artery from aortic sinus to left of nonfacing aortic sinus +472829004,Disorder of atrioventricular (not morphologically mitral or tricuspid) valve prosthesis +472830009,Disorder of right atrioventricular (not morphologically tricuspid) valve prosthesis +472831008,Disorder of tricuspid valve prosthesis +472832001,Disorder of mitral valve prosthesis +472833006,Disorder of pulmonary valve prosthesis +472834000,Disorder of truncal valve prosthesis +472840007,Regurgitation of fetal tricuspid valve +472841006,Stenosis of fetal tricuspid valve +472842004,Regurgitation of fetal mitral valve +472844003,Regurgitation of fetal pulmonary valve +472845002,Stenosis of fetal pulmonary valve +472848000,Regurgitation of fetal right atrioventricular (not morphologically tricuspid) valve +472849008,Stenosis of fetal right atrioventricular (not morphologically tricuspid) valve +472850008,Regurgitation of fetal left atrioventricular (not morphologically mitral) valve +472851007,Stenosis of fetal left atrioventricular (not morphologically mitral) valve +472852000,Regurgitation of fetal common atrioventricular valve +472853005,Stenosis of fetal common atrioventricular valve +472854004,Regurgitation of fetal truncal valve +472855003,Stenosis of fetal truncal valve +47292005,Tuberculosis of myocardium +473359008,Thrombus of right atrium +473360003,Thrombus of left atrium +473362006,Congenital stenosis of distal coronary artery +473365008,Dysfunction of right cardiac ventricle +473374005,Perforation of mitral valve leaflet +473375006,Rupture of tricuspid valve leaflet +473393007,Congenital occlusion of coronary sinus +473443007,Anomalous origin of right coronary artery +473444001,Anomalous origin of left coronary artery +473458004,Regurgitation of atrioventricular (not morphologically mitral or tricuspid) valve +47800001,Repair of coronary arteriocardiac chamber fistula +48121000,Congenital cardiomegaly +48248005,Thrombophlebitis of inferior sagittal sinus +48431000,"Anastomosis of thoracic artery to coronary artery, single" +48447003,Chronic heart failure +4851007,Chronic endocarditis +48520006,Congenital atresia of cardiac vein +48601002,Thrombosis of precerebral artery +48724000,Mitral valve regurgitation +48872007,Rheumatic endocarditis +49102001,Hypertensive heart AND renal disease in obstetric context +49436004,Atrial fibrillation +49584005,Acute cor pulmonale +49699002,Rheumatic disease of tricuspid valve +49778009,Idiopathic pulmonary arteriosclerosis +49915006,Tricuspid valve stenosis +49956009,Antepartum deep phlebothrombosis +50270004,Dilated cardiomyopathy due to Friedreich's ataxia +50275009,Cobalt cardiomyopathy +50511005,Electronic analysis of dual chamber internal cardiac pacemaker system with reprogramming +5053004,Cardiac insufficiency due to prosthesis +50570003,Aneurysm of coronary vessels +50608004,Incompetence of papillary muscle +50799005,Atrioventricular dissociation +51274000,Atherosclerosis of arteries of the extremities +51310003,Electronic analysis of dual chamber internal cardiac pacemaker system without reprogramming +51442005,Congenital atresia of aortic valve +5148006,Hypertensive heart disease with congestive heart failure +51677000,Atheroembolism of renal arteries +51789008,Congenital malposition of cardiac apex +52029003,Primary familial dilated cardiomyopathy +52035003,Acute anteroapical myocardial infarction +52048004,Rheumatic pulmonary valve failure +52156004,Femoral artery thrombosis +5230009,Congenital absence of coronary artery +52496006,Thrombophlebitis of femoropopliteal vein +52535005,Chronic constrictive pericarditis +52757001,Congenital supravalvular pulmonary stenosis +52987001,Tuberculosis of endocardium +53043001,Primary idiopathic dilated cardiomyopathy +5370000,Atrial flutter +53703001,Primary eosinophilic endomyocardial cardiomyopathy +53741008,Coronary arteriosclerosis +5375005,Chronic left-sided congestive heart failure +54073003,Monocuspid cardiac valve +54160000,Congenital aneurysm of sinus of Valsalva +54225002,Malignant hypertensive heart disease +54329005,Acute myocardial infarction of anterior wall +54636000,Cardiomyopexy +54682008,Congenital hypoplasia of pulmonary artery +54687002,Arterial embolism +54830008,Dilated cardiomyopathy due to bacterial myocarditis +54866009,Initial implantation of cardiac single-chamber device +54974006,"Insertion of permanent pacemaker with transvenous electrodes, ventricular" +5499009,Pulmonary hypertensive venous disease +55455004,Revision of pacemaker electrode leads +55510008,Cor triatriatum +55546004,Anomalous origin of left circumflex artery from right coronary artery +55827005,Left ventricular hypertrophy +55836009,Incoordination of papillary muscle +56265001,Heart disease +56272000,Deep venous thrombosis in puerperium +56276002,Left main coronary artery thrombosis +56309007,Congenital subaortic stenosis of tunnel type +56675007,Acute heart failure +56786000,Pulmonic valve stenosis +56941009,Restrictive cardiomyopathy secondary to hemochromatosis +56970000,Central shunt with prosthetic graft +57054005,Acute myocardial infarction +5726007,Removal of epicardial electrodes +57297009,"Implantation of electrode into cardiac atrium and ventricle, replacement" +57803009,Rheumatic chorea with heart involvement +57809008,Myocardial disease +57834008,Pulmonary artery thrombosis +58056005,Syphilis of mitral valve +58123006,Failed attempted abortion with pulmonary embolism +58211007,Removal of electronic heart device battery +58612006,Acute myocardial infarction of lateral wall +58629009,Dilated cardiomyopathy due to amyloidosis +58632007,Repair of cardiac pulse generator +58863009,Initial implantation of cardiac dual-chamber device +58911001,Dilated cardiomyopathy due to glycogen storage disease +59021001,Angina decubitus +59047005,Aortointestinal fistula +59062007,Coronary stricture +59063002,Acute myocardial infarction of apical-lateral wall +5919001,Rupture of papillary muscle +59218006,Temporary transcutaneous pacing +59282003,Pulmonary embolism +59464004,Rheumatic mitral AND aortic valve regurgitation +59494005,Congenital septal defect of heart +59631007,Anomalous pulmonary venous drainage +59733002,Hypertensive heart disease complicating AND/OR reason for care during childbirth +59877000,Congenital anomaly of aorta +60106004,Common arterial trunk and separate origin of pulmonary arteries +6022005,Dilated cardiomyopathy due to sarcoidosis +60232001,Cleft leaflet of tricuspid valve +60234000,Aortic valve regurgitation +60446003,Thyrotoxic heart disease +60514000,Dilated cardiomyopathy due to familial storage disease +60573004,Aortic valve stenosis +60732002,"Atrial septal defect with endocardial cushion defect, partial type" +60787001,Congenital hypoplasia of aortic arch +60856006,Cardiac insufficiency following cardiac surgery +60899001,Hypertensive heart disease without congestive heart failure +609153008,Percutaneous insertion of drug eluting stent into coronary artery using fluoroscopic guidance with contrast +609154002,Percutaneous transluminal insertion of metal stent into coronary artery using fluoroscopic guidance with contrast +609480009,Induced termination of pregnancy complicated by pulmonary embolism +609506003,Induced termination of pregnancy complicated by cardiac arrest +60985004,"Implantation of cardiac dual-chamber device, replacement" +60989005,Thromboembolism of renal arteries +61012002,Chronic myocarditis due to rheumatic heart disease +61179004,Cardiac beriberi +61490001,"Angina, class I" +61612001,Syphilitic aortic incompetence +61959006,Common truncus arteriosus +62067003,Hypoplastic left heart syndrome +6210001,Dilatation of cardiac ventricle +62207008,Syphilitic ostial coronary disease +62335009,Congenital stenosis of inferior vena cava +62377009,Postpartum cardiomyopathy +62583006,Phlegmasia alba dolens in puerperium +62657007,Cardiac arrest AND/OR failure following anesthesia AND/OR sedation in labor AND/OR delivery +62695002,Acute anteroseptal myocardial infarction +62881002,Removal of cardiac pacemaker +63042009,Congenital atresia of tricuspid valve +63183009,Primary idiopathic hypertrophic cardiomyopathy +63247009,Williams syndrome +63739005,Coronary occlusion +63934006,Overriding aorta +64041007,Primary idiopathic restrictive cardiomyopathy +64077000,Myocardial degeneration +64156001,Thrombophlebitis +64615000,Restrictive cardiomyopathy secondary to glycogen storage disease +64627002,Acute myocardial infarction of high lateral wall +64715009,Hypertensive heart disease +64749001,Dilated cardiomyopathy due to infiltration +64775002,Vertebral artery thrombosis +65084004,Vertebral artery embolism +651000119108,Acute deep vein thrombosis of lower limb +65198009,Arterial thrombosis +65219008,Subcutaneous implantation of cardiac pacemaker +65340007,Aneurysm of heart +65457005,Endocardial fibroelastosis +65547006,Acute myocardial infarction of inferolateral wall +65861005,Excision of aneurysm of coronary artery +65936006,Repositioning of cardioverter/defibrillator pulse generator +66189004,Postmyocardial infarction syndrome +66403007,Vascular ring of aorta +66595008,Drug-related myocardial necrosis syndrome +66610008,Malignant hypertensive heart AND renal disease +66718009,Check artificial pacemaker by slew rate check +66816004,Implantation of cardiac temporary transvenous pacemaker system during and immediately following cardiac surgery +66858001,Anomalous pulmonary venous drainage to superior vena cava +66877004,Phlegmasia cerulea dolens +66923004,Phlegmasia alba dolens +66989003,Chronic right-sided congestive heart failure +67166004,Aortocoronary artery bypass graft +67278007,Congenital stenosis of pulmonary valve +67362008,Aortic aneurysm +67391006,Syphilitic endocarditis +67431000119105,Congestive heart failure stage D +67441000119101,Congestive heart failure stage C +67486009,Pelvic thrombophlebitis in puerperium +67682002,Coronary artery atheroma +67696008,Rheumatic tricuspid valve regurgitation +67741000119109,Left atrial enlargement +67751000119106,Right atrial enlargement +67754003,Aortic valve sclerosis +677801000119100,Cholesterol retinal embolus of left eye +677811000119102,Cholesterol retinal embolus of right eye +680841000119109,Cholesterol embolus of retinal artery of bilateral eyes +68092007,Anomalous origin of pulmonary artery +68237008,Partial anomalous pulmonary venous connection +68478007,Central retinal vein occlusion +68602002,Primary endomyocardial fibrosis cardiomyopathy +68667005,Insertion of permanent transvenous electrodes +690491000119104,History of cardiomyopathy +690791000119107,Penetrating ulcer of aorta +69158002,Intra-atrial pacing +69357003,Pulmonary thrombosis +69609002,Nonobstructive cardiomyopathy +697896007,Precapillary pulmonary hypertension +697897003,Heritable pulmonary arterial hypertension +697898008,Idiopathic pulmonary arterial hypertension +697899000,Heritable pulmonary arterial hypertension due to bone morphogenetic protein receptor type II mutation +697900005,Heritable pulmonary arterial hypertension due to activin A receptor type II-like kinase 1 or endoglin mutation +697901009,Pulmonary arterial hypertension caused by toxin +697902002,Associated pulmonary arterial hypertension +697903007,Pulmonary arterial hypertension associated with connective tissue disease +697904001,Pulmonary arterial hypertension associated with human immunodeficiency virus infection +697905000,Pulmonary arterial hypertension associated with congenital heart disease +697906004,Pulmonary arterial hypertension associated with congenital systemic-to-pulmonary shunt +697907008,Pulmonary arterial hypertension associated with schistosomiasis +697908003,Pulmonary arterial hypertension associated with chronic hemolytic anemia +697910001,Pulmonary hypertension due to lung disease and/or hypoxia +697911002,Pulmonary hypertension due to chronic obstructive pulmonary disease +697912009,Pulmonary hypertension due to interstitial lung disease +697913004,Pulmonary hypertension due to pulmonary disease with mixed restrictive and obstructive pattern +697914005,Pulmonary hypertension due to sleep-disordered breathing +697915006,Pulmonary hypertension due to alveolar hypoventilation disorder +697916007,Pulmonary hypertension due to developmental abnormality of the lung +697917003,Pulmonary hypertension due to hematological disorder +697918008,Pulmonary hypertension due to myeloproliferative disorder +697919000,Pulmonary hypertension due to post-splenectomy hematological disorder +697920006,Pulmonary hypertension in systemic disorder +697921005,Pulmonary hypertension in sarcoidosis +697922003,Pulmonary hypertension in Langerhans cell histiocytosis +697923008,Pulmonary hypertension in lymphangioleiomyomatosis +697924002,Pulmonary hypertension in neurofibromatosis +697925001,Pulmonary hypertension due to systolic systemic ventricular dysfunction +697926000,Pulmonary hypertension due to diastolic systemic ventricular dysfunction +697927009,Pulmonary hypertension due to left-sided valvular heart disease +697928004,Pulmonary venous hypertension due to congenital stenosis of pulmonary vein +697976003,Microvascular ischemia of myocardium +698270004,Cardiac arrhythmia associated with genetic disorder +698272007,Short QT syndrome +698296002,Acute exacerbation of chronic congestive heart failure +698363002,Postoperative thromboembolus of precerebral artery +698504006,Postoperative cardiopulmonary failure +698592004,Asymptomatic left ventricular systolic dysfunction +698593009,History of non-ST segment elevation myocardial infarction +698594003,Symptomatic congestive heart failure +698816006,Chronic occlusion of artery of extremity +698971006,Congenital subaortic diverticulum +699123000,Removal of single-chamber cardiac pacemaker with replacement by dual-chamber cardiac pacemaker +699125007,Insertion of programmable cardiac pacemaker +699135001,Implantation of cardiac defibrillator lead +699136000,Insertion of pulse generator of implantable cardioverter defibrillator +699256006,Timothy syndrome type 1 +699280005,Repair of aortic root +699297004,Blepharophimosis-intellectual disability syndrome Maat-Kievit-Brunner type +699298009,"Blepharophimosis, intellectual disability syndrome, Say-Barber-Biesecker-Young-Simpson type" +699300009,Oculofaciocardiodental syndrome +699352005,Repair of ascending aorta +6996004,Congenital absence of pulmonary valve +699668009,Secondary nonischemic congestive cardiomyopathy +699706000,Embolism of middle cerebral artery +699748007,Cardiorespiratory arrest with successful resuscitation +700065003,Primary hypertrophic cardiomyopathy +70142008,Atrial septal defect +70195006,Congenital anomaly of superior vena cava +70211005,Acute myocardial infarction of anterolateral wall +702374000,Neonatal noninfectious cerebral venous sinus thrombosis +702424003,Dilated cardiomyopathy 3B +703073006,Cardiac pacemaker procedure using fluoroscopic guidance +703157002,Prosthetic mitral valve failure +703158007,Embolism of internal auditory artery +703159004,Prosthetic mitral valve failure requiring replacement +703160009,Prosthetic mitral valve failure requiring revision +703162001,Bradycardic cardiac arrest +703164000,Acute ST segment elevation myocardial infarction of anterior wall +703165004,Acute ST segment elevation myocardial infarction of anterior wall involving right ventricle +703167007,Prosthetic mitral valve stenosis +703168002,Prosthetic mitral valve stenosis and regurgitation +703170006,Prosthetic aortic valve stenosis +703171005,Prosthetic aortic valve failure +703172003,Prosthetic aortic valve failure requiring revision +703173008,Prosthetic aortic valve failure requiring replacement +703175001,Acute prosthetic mitral valve regurgitation +703178004,Non-rheumatic pulmonary valve stenosis with regurgitation +703179007,Endocarditis of prosthetic mitral valve +703181009,Postprocedural pulmonary valve regurgitation +703185000,Neopulmonary valve regurgitation +703186004,Neopulmonary valve stenosis +703187008,Prosthetic pulmonary valve failure +703188003,Prosthetic pulmonary valve failure requiring replacement +703189006,Endocarditis of prosthetic aortic valve +703190002,Endocarditis of prosthetic tricuspid valve +703191003,Endocarditis of prosthetic pulmonary valve +703192005,Postprocedural pulmonary valve stenosis +703194006,Postprocedural regurgitation of tricuspid valve +703196008,Postprocedural stenosis of tricuspid valve +703200003,Prosthetic tricuspid valve stenosis +70320004,Congenital anomaly of heart valve +703209002,Subsequent ST segment elevation myocardial infarction of inferior wall +703210007,Subsequent ST segment elevation myocardial infarction of anterior wall +703211006,Subsequent ST segment elevation myocardial infarction +703212004,Acute myocardial infarction during procedure +703213009,Acute ST segment elevation myocardial infarction of inferior wall +703214003,Silent coronary vasospastic disease +703222005,Postprocedural aortic valve regurgitation +703223000,Postprocedural aortic valve stenosis +703224006,Postprocedural mitral valve regurgitation +703225007,Postprocedural mitral valve stenosis +703236000,Non-rheumatic aortic valve stenosis with regurgitation +703243006,Acquired aneurysm of pulmonary artery +703244000,Acquired stenosis of left pulmonary artery +703245004,Acquired stenosis of right pulmonary artery +703246003,Acquired pulmonary venous obstruction +703251009,Acute myocardial infarction of inferior wall involving right ventricle +703252002,Acute myocardial infarction of anterior wall involving right ventricle +703253007,Acute ST segment elevation myocardial infarction of inferior wall involving right ventricle +703255000,Tricuspid valve stenosis due to carcinoid tumor +703258003,Acquired pulmonary trunk stenosis +703259006,Mitral valve regurgitation due to cardiomyopathy +703272007,Heart failure with reduced ejection fraction +703273002,Heart failure with reduced ejection fraction due to coronary artery disease +703274008,Heart failure with reduced ejection fraction due to myocarditis +703275009,Heart failure with reduced ejection fraction due to cardiomyopathy +703276005,Heart failure with reduced ejection fraction due to heart valve disease +703277001,Deep venous thrombosis of femoropopliteal vein +703287002,Prosthetic tricuspid valve failure +703288007,Prosthetic tricuspid valve failure requiring revision +703289004,Prosthetic tricuspid valve failure requiring replacement +703290008,Prosthetic pulmonary valve failure requiring revision +703291007,Prosthetic pulmonary valve stenosis +703292000,Prosthetic tricuspid valve regurgitation +703293005,Prosthetic pulmonary valve regurgitation +703296002,Acute prosthetic tricuspid valve regurgitation +703297006,Prosthetic aortic valve stenosis and regurgitation +703307003,Acquired abnormality of pulmonary arterial tree +703308008,Acquired dissection of pulmonary artery +703318003,Neoaortic valve stenosis +703319006,Tricuspid valve stenosis with insufficiency +703320000,Non-rheumatic mitral valve stenosis with regurgitation +703321001,Tricuspid valve stenosis with regurgitation due to carcinoid tumor +703322008,Tricuspid valve regurgitation due to carcinoid tumor +703323003,Aortic valve regurgitation due to aortic dilation +703324009,Aortic valve regurgitation due to trauma +703325005,Aortic valve regurgitation due to aortic dissection +703327002,Mitral valve regurgitation due to infiltrative disease +703328007,Mitral valve regurgitation due to acute myocardial infarction without papillary muscle and chordal rupture +703330009,Mitral valve regurgitation due to acute myocardial infarction with papillary muscle and chordal rupture +703355003,Pulmonary hypertension due to vasculitis +703356002,Coronary artery occlusion due to neoplastic disease +703357006,Acquired discontinuity of pulmonary arteries +703358001,Postprocedural mitral valve regurgitation due to papillary muscle and chordal rupture +703359009,Degenerative mitral valve prolapse +703360004,Subsequent non-ST segment elevation myocardial infarction +703385008,Anomalous origin of pulmonary artery from ascending aorta +703636009,Pulmonary oil microembolism +704115002,Revision of cardiac pacemaker electrode using fluoroscopic guidance +70422006,Acute subendocardial infarction +704241002,Fetal hypertrophic cardiomyopathy due to maternal diabetes mellitus +705129007,Thrombosis of middle cerebral artery +70573000,Insertion of pacemaker pulse generator +70589002,Removal of epicardial electrodes with replacement of epicardial lead +70602002,Pseudocoarctation of aorta +70607008,Thrombosis of superior sagittal sinus +706870000,Acute pulmonary embolism +706923002,Longstanding persistent atrial fibrillation +707200002,Descending aorta anterior and same side as azygos vein with absent inferior vena cava +707371002,Congenital stenosis of left pulmonary artery +707372009,Congenital stenosis of right pulmonary artery +707412000,Chronic pulmonary thromboembolism +707413005,Chronic pulmonary thromboembolism without pulmonary hypertension +707414004,Acute pulmonary thromboembolism +707437005,Pulmonary capillaritis +707476006,Stenosis of right pulmonary artery as complication of procedure +707477002,Stenosis of left pulmonary artery as complication of procedure +707478007,Pulmonary trunk stenosis as complication of procedure +707665002,Pulmonary arterial tree abnormality as complication of procedure +707667005,Obstruction of pulmonary vein as complication of procedure +707668000,Pulmonary vein abnormality as complication of procedure +707828002,Percutaneous transluminal cutting balloon angioplasty of coronary artery +708121009,Non-rheumatic mitral valve disease +708966001,Percutaneous removal of cardiac pacemaker electrode +70933002,Aortitis +709584004,Atherosclerosis of bypass graft of lower limb +709585003,Atherosclerosis of nonautologous biological bypass graft of lower limb +709587006,Atherosclerosis of autologous bypass graft of lower limb +709597002,Acute thrombosis of superficial vein of lower limb +709602009,Chronic thrombosis of superficial vein of lower limb +709687000,Chronic deep vein thrombosis of pelvic vein +70995007,Pulmonary hypertension +70998009,Acute myocardial infarction of basal inferior segment of left ventricle +710167004,Recurrent deep vein thrombosis +711166001,Removal of implantable cardiac pacemaker +712578006,Aneurysm of aortic arch +712866001,Resting ischemia co-occurrent and due to ischemic heart disease +713029000,Dissection of thoracoabdominal aorta +713030005,Chronic dissection of thoracic aorta +713044004,Removal of cardiac pacemaker using fluoroscopic guidance +713078005,Pulmonary embolism on long-term anticoagulation therapy +713405002,Subacute ischemic heart disease +713412006,Ischemic foot with rest pain +713419002,Intraoperative cardiorespiratory arrest +713523008,Cardiomyopathy co-occurrent with human immunodeficiency virus infection +713689002,Repair of coronary artery +713825007,Renal artery stenosis of transplanted kidney +714181006,Abnormal ostium of coronary sinus +71444005,Cerebral arterial thrombosis +715364001,Familial abdominal aortic aneurysm +715395008,Familial atrial fibrillation +715535009,Keratosis palmoplantaris and arrhythmogenic cardiomyopathy syndrome +715626008,Tropical endomyocardial fibrosis +715655000,Transthyretin related familial amyloid cardiomyopathy +715765002,Resection of ascending thoracic aorta using prosthetic graft with cardiopulmonary bypass +715865008,Familial isolated arrhythmogenic right ventricular dysplasia +715987000,Congenital heart defect with round face and developmental delay syndrome +716050002,Cardiac arrest during surgery +716193004,Short stature with valvular heart disease and characteristic facies syndrome +716740009,Potter sequence cleft lip and palate cardiopathy syndrome +716773002,Familial idiopathic dilatation of right atrium +7169009,Congenital supravalvular aortic stenosis +71719003,Thrombophlebitis of retinal vein +717812000,"Congenital cataract, hypertrophic cardiomyopathy, mitochondrial myopathy syndrome" +717840005,Congestive heart failure stage B +717859007,"Hydrocephalus, cardiac malformation, dense bone syndrome" +717943008,"Brain malformation, congenital heart disease, postaxial polydactyly syndrome" +71799002,Rheumatic mitral valve stenosis AND aortic valve insufficiency +718128009,Congenital dysplasia of cardiac valve +718135001,Isolated right ventricular hypoplasia +718181001,Congenital cardiac diverticulum +718212006,Mitochondrial encephalocardiomyopathy due to transmembrane protein 70 mutation +718216009,Partial defect of atrioventricular canal +718556007,Cranio-cerebello-cardiac dysplasia syndrome +718681002,Oro-facial digital syndrome type 11 +718713000,Hypertrophic cardiomyopathy with hypotonia and lactic acidosis syndrome +71892000,Cardiac asthma +71908006,Ventricular fibrillation +719272007,Progressive sensorineural hearing loss and hypertrophic cardiomyopathy syndrome +71932004,Cardiac dilatation +719379001,Microcephalus with cardiac defect and lung malsegmentation syndrome +719380003,Microcephalus cardiomyopathy syndrome +719395001,Microcephalus facio-cardio-skeletal syndrome Hadziselimovic type +719400000,Lethal faciocardiomelic dysplasia +719451006,Dilated cardiomyopathy with hypergonadotropic hypogonadism syndrome +719456001,Cleft lip and cleft palate with intestinal malrotation and cardiopathy syndrome +719678003,Non-obstructive atherosclerosis of coronary artery +719824001,Vici syndrome +719835006,Wooly hair and palmoplantar keratoderma with dilated cardiomyopathy syndrome +719839000,Tubular renal disease with cardiomyopathy syndrome +719907006,Timothy syndrome type 2 +719955006,Atresia of pulmonary valve +72011007,Rheumatic aortic stenosis +720448006,Typical atrial flutter +720507006,Chronic atrial and intestinal dysrhythmia +720567008,Bosley Salih Alorainy syndrome +720575002,Braddock syndrome +720605009,Cardiac anomaly and heterotaxy syndrome +720606005,Cardiocranial syndrome Pfeiffer type +720609003,Cardiomyopathy with cataract and hip spine disease syndrome +720610008,Cardiomyopathy and renal anomaly syndrome +720612000,Cardiospondylocarpofacial syndrome +720639008,"Coloboma, congenital heart disease, ichthyosiform dermatosis, intellectual disability ear anomaly syndrome" +720748007,Aural atresia with multiple congenital anomalies and intellectual disability syndrome +720858001,Ehlers-Danlos syndrome cardiac valvular type +721009008,Heart defect and limb shortening syndrome +721010003,Heart-hand syndrome type 2 +721013001,Heart-hand syndrome type 3 +721014007,Heart-hand syndrome Slovenian type +721015008,Hydrocephalus with endocardial fibroelastosis and cataract syndrome +721073008,Short stature with webbed neck and congenital heart disease syndrome +721238001,Acquired anomaly of pulmonary artery +721841001,Hypogonadism with mitral valve prolapse and intellectual disability syndrome +721976003,Lung agenesis with heart defect and thumb anomaly syndrome +721978002,"Lymphedema, atrial septal defect, facial changes syndrome" +722006004,Isotretinoin embryopathy-like syndrome +722027009,Kallman syndrome with heart disease +722051004,"Obesity, colitis, hypothyroidism, cardiac hypertrophy, developmental delay syndrome" +722206009,"Pancreatic hypoplasia, diabetes mellitus, congenital heart disease syndrome" +72242008,Postductal coarctation of aorta +722461004,Meacham syndrome +72252007,Congenital hypoplasia of cardiac vein +722890004,Heart disease co-occurrent and due to chronic Chagas disease +722919003,Neonatal cardiac failure due to decreased left ventricular output +722930000,Neonatal thrombosis of cerebral venous sinus +723089002,Acquired atrial septal defect +723304001,"Microcephaly, seizure, intellectual disability, heart disease syndrome" +723333000,Faciocardiorenal syndrome +723336008,Fallot complex with intellectual disability and growth delay syndrome +723448007,Polyvalvular heart disease syndrome +723858002,Ventricular aneurysm due to and following acute myocardial infarction +723859005,Pulmonary embolism due to and following acute myocardial infarction +723860000,Arrhythmia due to and following acute myocardial infarction +723862008,Atherosclerosis of non-autologous coronary artery bypass graft +723866006,Idiopathic ventricular fibrillation not Brugada type +723867002,Coarctation of aortic arch +723869004,Acute occlusion of aortoiliac artery co-occurrent and due to thromboembolus +723870003,Acute occlusion of artery of lower limb co-occurrent and due to thromboembolus +723871004,Acute occlusion of aortoiliac artery due to thrombosis +723872006,Acute occlusion of artery of lower limb due to thrombosis +723873001,Arterial obstruction due to thrombotic embolism from mural thrombus of heart +723874007,Arterial obstruction due to nonthrombotic embolism from heart +723875008,Arterial obstruction due to thrombotic embolism from aneurysm of artery +723993005,Sensorineural deafness with dilated cardiomyopathy syndrome +724066002,Polysyndactyly and cardiac malformation syndrome +724173009,Maternally inherited cardiomyopathy and hearing loss syndrome +724208006,Keutel syndrome +724431008,Atherosclerosis of autologous coronary artery bypass graft +724435004,Congenital anomaly of descending thoracic aorta +724436003,Congenital anomaly of abdominal aorta +724437007,Compression of trachea and esophagus co-occurrent and due to congenital anomaly of aortic arch +724440007,Atherosclerosis of artery of lower limb +724441006,Non-atherosclerotic chronic arterial occlusive disease +724442004,Dissection of ascending aorta and aortic arch +724550005,Neonatal cardiac failure due to pulmonary overperfusion +72481000119103,Congestive heart failure as early postoperative complication +725027004,Muscle and heart glycogen synthase deficiency +725145002,"Atrial septal defect, atrioventricular conduction defect syndrome" +725416005,Cardiomyopathy due to cirrhosis of liver +726011000,Placement of stent in coronary artery bypass graft +726083008,Congenital sacral meningocele with conotruncal heart defect syndrome +726335002,Common atrioventricular junction +726499301000119105,Myocardial infarction due to atherothrombotic coronary artery disease +726571000000105,Absent right sided atrioventricular connection with straddling valve +726581000000107,Absent left sided atrioventricular connection with straddling valve +726704006,"Cataract, congenital heart disease, neural tube defect syndrome" +726901000000107,Mitral valve atresia +727021000000102,Tricuspid valve atresia +727071000000103,Malaligned atrial septum with flap valve to muscular rim of oval fossa +727151000000108,Right superior vena cava connecting to coronary sinus and right sided atrium +727161000000106,Right superior vena cava connecting to coronary sinus and left sided atrium +727221000000107,Left superior vena cava persisting to coronary sinus and right atrium +727801000000102,Congenital pulmonary venous confluence in vertical orientation +727811000000100,Congenital pulmonary venous confluence in horizontal orientation +727821000000106,Congenital pulmonary venous confluence in direct proximity to left atrium +727831000000108,Congenital pulmonary venous confluence remote from left atrium +728371000000102,Divided left atrium with all pulmonary veins to proximal chamber draining to left atrium +728381000000100,Divided left atrium with all pulmonary veins to proximal chamber draining to left atrium with pulmonary venous chamber communication +728391000000103,Divided left atrium with all pulmonary veins to proximal chamber draining to left atrium with pulmonary venous chamber communication to right atrium +728401000000100,Divided left atrium with all pulmonary veins to proximal chamber draining to left atrium with pulmonary venous chamber extracardiac communication +728461000000101,Non-fenestrated atrial septal defect within oval fossa +728471000000108,Fenestrated atrial septal defect within oval fossa +728481000000105,Non-restrictive interatrial communication septal defect +728491000000107,Restrictive interatrial communication septal defect +728851000000102,Retro-aortic brachiocephalic vein +728911000000108,Azygos continuation of inferior vena cava to left superior vena cava +72972005,Dilated cardiomyopathy caused by drug +7305005,Coarctation of aorta +73067008,Ruptured aortic aneurysm +732230001,Dissection of coronary artery +733126003,Acute occlusion of artery of upper limb caused by thromboembolus +733127007,Acute occlusion of artery of upper limb caused by thrombus +733325006,Combined occlusion by thrombus of retinal artery and retinal vein +733454004,Long thumb brachydactyly syndrome +734298005,Thromboembolus of internal iliac artery +734299002,Thromboembolus of external iliac artery +734374000,Thrombosis of left carotid artery +734382000,Thrombosis of right carotid artery +734383005,Thrombosis of left middle cerebral artery +734384004,Thrombosis of right middle cerebral artery +734959006,Embolus of left cerebellar artery +734960001,Embolus of right cerebellar artery +734961002,Embolus of left posterior cerebral artery +734963004,Embolus of right posterior cerebral artery +734964005,Embolus of left middle cerebral artery +734965006,Embolus of right middle cerebral artery +735565009,Perforation of coronary artery co-occurrent and due to aneurysm of coronary artery +735566005,Rupture of coronary artery co-occurrent and due to aneurysm of coronary artery +735570002,Acquired abnormality of cardiac ventricle +735571003,Acquired ventricular septal defect +735572005,Acute occlusion of artery of upper limb +735573000,Acute aortoiliac occlusion +735574006,Acute occlusion of artery of lower limb +735579001,Residual interatrial communication following procedure +735580003,Recurrent interatrial communication following procedure +735581004,Ventricular septal defect following procedure +735582006,Disorder of cardiac ventricle following procedure +73660006,Congenital subaortic stenosis +736700005,Revision of internal cardiac defibrillator lead using fluoroscopic guidance +736702002,Revision of biventricular permanent pacemaker lead using fluoroscopic guidance +7368005,Double outlet left ventricle +736962007,Bypass of four or more coronary arteries with prosthesis +736963002,Bypass of one coronary artery with prosthesis +736964008,Bypass of three coronary arteries with prosthesis +736965009,Bypass of two coronary arteries with prosthesis +736966005,Aortocoronary artery bypass of four or more coronary arteries with saphenous vein graft +736967001,Aortocoronary artery bypass of one coronary artery with saphenous vein graft +736968006,Aortocoronary artery bypass of three coronary arteries with saphenous vein graft +736969003,Aortocoronary artery bypass of two coronary arteries with saphenous vein graft +736970002,Allograft bypass of four or more coronary arteries +736971003,Allograft bypass of one coronary artery +736972005,Allograft bypass of three coronary arteries +736973000,Allograft bypass of two coronary arteries +736978009,Mural thrombus of right ventricle following acute myocardial infarction +73699003,Common arterial trunk and common origin of pulmonary arteries +737011002,Revision of cardiac biventricular implantable cardioverter defibrillator lead using fluoroscopic guidance +737155005,Congenital anomaly of atrioventricular valve +737156006,Congenital anomaly of atrioventricular septum +737157002,False aneurysm of aorta due to and following procedure +737158007,Aneurysm of aorta due to and following procedure +73774007,Subacute bacterial endocarditis +73795002,Acute myocardial infarction of inferior wall +7387004,Thrombophlebitis of tibial vein +739024006,Transplanted heart present +739025007,Transplanted heart-lung present +74218008,Coronary artery arising from main pulmonary artery +74249003,Dilated cardiomyopathy due to malignancy +74315008,Pulmonary microemboli +74371005,"Coronary artery bypass with autogenous graft, two grafts" +7438000,Congenital atresia of aorta +74561007,Kommerell's diverticulum +7484005,Double outlet right ventricle +74883004,Thoracic aortic aneurysm without rupture +74908007,Congenital absence of inferior vena cava +74960003,Acute left-sided congestive heart failure +75145007,Stricture of aorta +75270000,Congenital diverticulum of left ventricle +75372006,Congenital anomaly of mitral valve +75398000,Anomalous origin of coronary artery +75403004,Cardiac sarcoidosis +75543006,Cerebral embolism +756003,Chronic myopericarditis due to rheumatic heart disease +75761004,Infusion of intra-arterial thrombolytic agent with percutaneous transluminal coronary angioplasty +75878002,Abdominal aortic aneurysm without rupture +759461000000109,Congenital abnormality of leaflet of mitral valve +759521000000100,Congenital abnormality of mitral papillary muscle +759541000000107,Shortened mitral papillary muscle +759611000000105,Associated mass of left atrioventricular valve leaflet +759621000000104,Gelatinous left atrioventricular valve leaflet +759631000000102,Noncoapting left atrioventricular valve leaflet +759641000000106,Flail of left atrioventricular valve leaflet +759731000000107,Anomalous anterolateral muscle bands of left ventricle +759741000000103,Anomalous false tendon of muscle bands of left ventricle +759751000000100,Anomalous posteromedial muscle bands of left ventricle +759761000000102,Left ventricular outflow tract obstruction due to septal hypertrophy +759771000000109,Subaortic left ventricular outflow tract obstruction +759781000000106,Subpulmonary left ventricular outflow tract obstruction +759821000000103,Generalised left ventricular dysfunction +759831000000101,Regional left ventricular dysfunction +759841000000105,Left ventricular dysfunction due to right ventricular interaction +759851000000108,Subpulmonary right ventricular outflow tract obstruction +759861000000106,Subaortic right ventricular outflow tract obstruction +759871000000104,Two chambered right ventricle with ventricular septal defect above obstruction +759881000000102,Two chambered right ventricle with ventricular septal defect below obstruction +759891000000100,Two chambered right ventricle with ventricular septal defect above and below obstruction +759911000000102,Generalised right ventricular dysfunction +759921000000108,Regional right ventricular dysfunction +759941000000101,Congenital subvalvar mitral stenosis +759951000000103,Obstruction of left ventricular inflow tract due to left superior vena cava connecting to coronary sinus +759961000000100,Obstruction of left ventricular inflow tract due to leftward displacement of interatrial septum +760021000000106,Gelatinous mitral leaflet +760031000000108,Noncoapting mitral leaflet +760041000000104,Flail of mitral leaflet +760051000000101,Congenital abnormality of mitral chordae tendinae +762247006,Preexcited atrial fibrillation +762250009,Congenital anomaly of great vessel +762251008,Double outlet right ventricle with subaortic or doubly committed ventricular septal defect without pulmonary stenosis - ventricular septal defect type +762252001,Common arterial trunk with aortic dominance +762253006,Common arterial trunk with pulmonary dominance co-occurrent with interrupted aortic arch +762254000,Congenital dysplasia of tricuspid valve +762255004,Thrombus of chamber of heart +762256003,Thrombosis of iliac vein +762433009,Tetralogy of Fallot with pulmonary atresia co-occurrent with systemic-to-pulmonary collateral artery +762460002,Hemodynamically insignificant ventricular septal defect +762519006,Perforation of right atrium due to and following procedure +762520000,Erosion of right atrium due to and following implantation of device +762539005,Endocarditis of neoaortic valve +762540007,Endocarditis of neopulmonary valve +762541006,Perforation of left atrium due to and following procedure +762542004,Erosion of left atrium due to and following implantation of device +76257003,Bicuspid cardiac valve +762629007,Occlusion of right middle cerebral artery by embolus +762630002,Occlusion of left middle cerebral artery by embolus +762632005,Occlusion of left cerebellar artery by embolus +762633000,Occlusion of right cerebellar artery by embolus +762651004,Occlusion of right posterior cerebral artery by embolus +762652006,Occlusion of left posterior cerebral artery by embolus +76267008,Pulmonary valve disorder +763066009,"Atrioventricular septal defect, blepharophimosis, radial and anal defect syndrome" +763279007,"Facial dysmorphism, conductive hearing loss, heart defect syndrome" +763280005,"Encephalopathy, hypertrophic cardiomyopathy, renal tubular disease syndrome" +763316006,Congenital patent ductus arteriosus aneurysm +763343001,Intraoperative insertion of cardiac pacemaker +763615003,"Aortic arch anomaly, facial dysmorphism, intellectual disability syndrome" +763725002,Percutaneous transluminal angioplasty of coronary artery using drug eluting balloon catheter +763747002,Congenital aneurysm of membranous portion of interventricular septum +763778003,"Larsen-like syndrome beta-1,3-glucuronyltransferase 3 type" +763834000,Oro-facial digital syndrome type 12 +763835004,Oro-facial digital syndrome type 13 +764452004,Retinal arterial macroaneurysm with supravalvular pulmonic stenosis +764457005,Cardiac arrhythmia ankyrin-B related +764521002,Encircling double aortic arch +764697003,Verloove Vanhorick Brubakk syndrome +764955006,Laubry Pezzi syndrome +764965000,Familial thoracic aortic aneurysm and aortic dissection +76593002,Acute myocardial infarction of inferoposterior wall +76598006,Thrombosis of penile vein +766751007,Neuhauser anomaly +766883006,Familial dilated cardiomyopathy with conduction defect due to lamin A/C mutation +766976003,"Pulmonary valve agenesis, tetralogy of Fallot, absence of ductus arteriosus syndrome" +767309006,Double aortic arch with dominant left arch and hypoplasia of right arch +767311002,Double aortic arch with dominant right arch and hypoplasia of left arch +76846002,Pulmonary endarteritis +768552007,Congenital ventricular septal defect +76931005,Restrictive cardiomyopathy secondary to granulomas +770432008,Ectasia of left atrial appendage +770433003,Ectasia of right atrial appendage +771075004,Macrothrombocytopenia with mitral valve insufficiency +771348000,Repair of supravalvar aortic stenosis +771478008,Mitochondrial hypertrophic cardiomyopathy with lactic acidosis due to mitochondrial transfer ribonucleic acid translation optimization 1 deficiency +771509001,Hypertrophic cardiomyopathy and renal tubular disease due to mitochondrial deoxyribonucleic acid mutation +771513008,Infantile hypertrophic cardiomyopathy due to mitochondrial ribosomal protein L44 deficiency +773139006,Congenital abnormality of cardiac ventricle +77326008,Removal of pacemaker electrode leads without replacement +773587008,"X-linked intellectual disability, cardiomegaly, congestive heart failure syndrome" +773749003,Genitopalatocardiac syndrome +774148007,Polyglucosan body myopathy type 1 +77453006,Revision of permanent cardiac pacemaker device +775908005,Combined oxidative phosphorylation defect type 17 +776219771000119107,History of myocardial infarction due to demand ischemia +776416004,"Hyperuricemia, pulmonary hypertension, renal failure, alkalosis syndrome" +77696009,Double aortic valve +77788005,Vasomotor acroparesthesia +77892009,Pulmonary venous thrombosis +77978002,Persistent left superior vena cava +77996006,Induction of arrhythmia by electrical pacing +78031003,Rheumatic aortic regurgitation +78069008,Chronic pericarditis due to rheumatic heart disease +780842009,Aortopulmonary coronary arterial course +781065009,Transposition of inferior vena cava +781159007,Congenital levorotation of heart +78129009,Thrombotic thrombocytopenic purpura +78196008,Double mitral valve +78240009,Cardiac arrest due to pacemaker failure +78250005,Ectopia cordis +782698000,Congenital atresia of ostium of coronary artery +782699008,Congenital stenosis of ostium of coronary artery +782724001,Multisystemic smooth muscle dysfunction syndrome +783011004,Persistent Eustachian valve +783096008,Subaortic stenosis and short stature syndrome +783161005,Familial dementia British type +78320000,Quadricuspid cardiac valve +783738002,"Heart defect, tongue hamartoma, polysyndactyly syndrome" +783773000,Congenital abnormal number of ostium of coronary artery +78381004,"Heart disease in mother complicating pregnancy, childbirth AND/OR puerperium" +784162006,Implantation of permanent cardiac pacemaker using fluoroscopic guidance +784163001,Implantation of cardiac biventricular permanent pacemaker using fluoroscopic guidance +784266000,History of heart-lung transplant recipient +784353002,"Pulmonary valve agenesis, intact ventricular septum, persistent ductus arteriosus syndrome" +78485007,Acyanotic congenital heart disease +78495000,Cleft leaflet of mitral valve +785847000,Arrhythmogenic bileaflet mitral prolapse +786040006,Mitral valve posterior leaflet prolapse +787001,Rheumatic mitral stenosis with regurgitation +78741000119103,Acute coronary artery occlusion not resulting in myocardial infarction +788533006,Congenital abnormality of atrium +78862003,Ayerza's syndrome +788878000,Cardiomyopathy due to diabetes mellitus +788887009,Chronic infection of heart caused by virus +788950000,Heart failure with mid range ejection fraction +789037005,Rheumatic cardiomyopathy +789690008,Malignant lymphomatoid granulomatosis of lung +789703007,Arteriosclerosis of artery of lower extremity +789704001,Arteriosclerosis of artery of upper extremity +79009004,Acute myocardial infarction of septum +791000119109,Angina due to type 2 diabetes mellitus +79152002,Dilated cardiomyopathy due to neuromuscular disorder +792842004,Coronary arteriosclerosis in artery of transplanted heart +792844003,Limb pain at rest due to atherosclerosis of artery of lower limb +7931000119101,Anterior choroidal artery thrombosis +79355007,Hypertensive heart disease in obstetric context +79439001,Congenital anomaly of aortic arch +79619009,Mitral valve stenosis +79754008,Restrictive cardiomyopathy secondary to amyloidosis +7991000119102,Congenital dilatation of aortic root +79955004,Chronic cor pulmonale +8001000119106,Atherosclerosis of aortoiliac bypass graft +80235008,Hepatic artery embolism +80383008,Embolism of iliac artery +80387009,Roger's disease +80479009,Acute right-sided congestive heart failure +80606009,Carotid artery embolism +8072003,Replacement of cardiac pacemaker with single chamber pacemaker not specified as rate responsive +8074002,Mitral valve prolapse syndrome +80762004,"Infusion of intra-arterial thrombolytic agent with percutaneous transluminal coronary angioplasty, multiple vessels" +810681000000101,Coronary microvascular disease +81121301000119109,Acute deep venous thrombosis of bilateral peroneal veins +81220003,Artificial pacemaker rate check +81552002,Rheumatic mitral valve insufficiency and aortic valve stenosis +81577001,Congenital anomaly of inferior vena cava +8166000,Thrombophlebitis of basilar sinus +81817003,Atherosclerosis of aorta +8186001,Cardiomegaly +81990004,Cor biloculare +8209004,Dilated cardiomyopathy due to hemochromatosis +82153002,Miscarriage with pulmonary embolism +82247006,"Coronary artery bypass with autogenous graft, five grafts" +822501000000101,Endoscopic robot assisted coronary artery bypass +82355002,Syphilitic aortic stenosis +82367000,Aneurysmectomy of ascending aorta with anastomosis +82385007,Budd-Chiari syndrome +8239009,Primary endocardial fibroelastosis +824031000000109,Leaking thoracic aortic aneurysm +82453008,Thrombosis of iliac artery +82458004,Congenital stenosis of mitral valve +82522008,Ischemic contracture of left ventricle syndrome +82523003,Congestive rheumatic heart failure +8254003,Endomyocardial disease +82608003,Atrial dilatation +827078006,Eisenmenger ventricular septal defect +827163002,Early postmyocardial infarction pericarditis +827164008,Delayed postmyocardial infarction pericarditis +83014000,MacCallum's patch +83105008,Malignant hypertensive heart disease with congestive heart failure +83119008,Congenital insufficiency of tricuspid valve +83291003,Cor pulmonale +83333004,Creation of cardiac pacemaker pocket new site in subcutaneous tissue +83393002,Relocation of automatic implantable cardioverter/defibrillator +83521008,Dilated cardiomyopathy caused by alcohol +836293000,Acute myocardial infarction of right ventricle +836294006,Acute myocardial infarction of apex of heart +836295007,Acute myocardial infarction of inferolateral wall with posterior extension +836480008,Mild stenosis of aortic valve +836481007,Moderate stenosis of aortic valve +836482000,Severe stenosis of aortic valve +83799000,Corrected transposition of great vessels +838333005,Atresia of mitral valve with absent atrioventricular connection +838364007,Aortic aneurysm due to Loeys-Dietz syndrome +838449006,Moderate mitral valve stenosis +838450006,Severe mitral valve stenosis +838452003,Moderate mitral valve regurgitation +838453008,Severe mitral valve regurgitation +838454002,Mild tricuspid valve regurgitation +838455001,Moderate tricuspid valve regurgitation +838456000,Severe tricuspid valve regurgitation +838535004,Mild tricuspid valve stenosis +838536003,Moderate tricuspid valve stenosis +838537007,Severe tricuspid valve stenosis +838538002,Mild pulmonary valve stenosis +838539005,Moderate pulmonary valve stenosis +838540007,Severe pulmonary valve stenosis +838541006,Mild pulmonary valve regurgitation +838542004,Moderate pulmonary valve regurgitation +838543009,Severe pulmonary valve regurgitation +838545002,Moderate aortic valve regurgitation +838546001,Severe aortic valve regurgitation +83883001,Cardiovascular syphilis +83898004,Rheumatic disease of mitral valve +83916000,Thrombophlebitis in puerperium +83938003,Thrombosis of vena cava +83940008,Hepatic artery thrombosis +83978005,Primary familial hypertrophic cardiomyopathy +840304005,Moderate left ventricular hypertrophy +840305006,Severe left ventricular hypertrophy +840306007,Mild pulmonary hypertension +840307003,Moderate pulmonary hypertension +840308008,Severe pulmonary hypertension +840309000,Acute ST segment elevation myocardial infarction due to occlusion of proximal portion of anterior descending branch of left coronary artery +840310005,Occlusion of proximal portion of anterior descending branch of left coronary artery +840312002,Acute ST segment elevation myocardial infarction due to occlusion of mid portion of anterior descending branch of left coronary artery +840313007,Occlusion of mid portion of anterior descending branch of left coronary artery +840315000,Occlusion of distal portion of anterior descending branch of left coronary artery +840316004,Acute ST segment elevation myocardial infarction due to occlusion of distal portion of anterior descending branch of left coronary artery +840469002,Deficient mural leaflet of left ventricular component of common atrioventricular valve +840488009,Congenital regurgitation of truncal valve +840495000,Common atrioventricular junction with spontaneous fibrous closure of atrioventricular septal defect +840497008,"Atrioventricular septal defect, atrial and ventricular components with common atrioventricular valve with unbalanced commitment of valve to left ventricle" +840507004,Double outlet right ventricle with subaortic ventricular septal defect without pulmonary stenosis +840517009,"Atrioventricular septal defect, atrial and ventricular components with common atrioventricular valve with unbalanced commitment of valve to right ventricle" +840580004,Peripheral arterial disease +840608004,Occlusion of anterior descending branch of left coronary artery +840609007,Acute ST segment elevation myocardial infarction due to occlusion of anterior descending branch of left coronary artery +840679006,Occlusion of septal branch of anterior descending branch of left coronary artery +840680009,Acute ST segment elevation myocardial infarction due to occlusion of septal branch of anterior descending branch of left coronary artery +840961000000108,Thrombosis of stent of renal artery +84114007,Heart failure +84183007,"Electronic analysis of internal pacemaker system, complete" +842041000000107,Occlusion of radial artery +842061000000108,Occlusion of brachial artery +842081000000104,Occlusion of ulnar artery +842141000000108,Occlusion of dorsalis pedis artery +84272007,Thrombosis of abdominal aorta +842721000000102,Occlusion of anterior tibial artery +842741000000109,Occlusion of posterior tibial artery +843433951000119102,Acute deep venous thrombosis of right peroneal vein +846667001,Occlusion of diagonal branch of anterior descending branch of left coronary artery +846668006,Acute ST segment elevation myocardial infarction due to occlusion of diagonal branch of anterior descending branch of left coronary artery +846683001,Acute ST segment elevation myocardial infarction due to occlusion of intermediate artery +846684007,Occlusion of intermediate artery +847041000000109,Amyloid cardiomyopathy +84725008,Restrictive cardiomyopathy due to mucopolysaccharidosis +84733009,Dilated cardiomyopathy due to nutritional deficiency +8501000119104,Hypertensive heart and chronic kidney disease +85053006,"Percutaneous transluminal coronary angioplasty, multiple vessels" +85081000,Common arterial trunk and widely separate origin of pulmonary arteries +85232009,Left heart failure +85284003,"Angina, class III" +853611000000106,Laser sheath removal of cardiac pacemaker lead using fluoroscopic guidance +854941000000100,Insertion of permanent biventricular pacemaker lead using fluoroscopic guidance +854951000000102,Insertion of biventricular implantable cardioverter defibrillator lead using fluoroscopic guidance +85503007,Grafting of omentum to myocardium +856856651000119109,Chronic deep venous thrombosis of left peroneal vein +85898001,Cardiomyopathy +85971001,Rheumatic pulmonary valve stenosis with insufficiency +86003009,Carotid artery thrombosis +860680001,Pulmonary embolism due to and following ectopic pregnancy +860681002,Pulmonary embolism due to and following molar pregnancy +860699005,Deep vein thrombosis of lower extremity due to intravenous drug use +860837007,Cardiomyopathy due to connective tissue disease +860839005,Cardiomyopathy due to storage disease +86194008,Dilated cardiomyopathy due to infectious disease +86234004,Hypertensive heart AND renal disease +86252004,Agenesis of pulmonary artery +86299006,Tetralogy of Fallot +864191000000104,Thrombosis of internal jugular vein +864211000000100,Thrombosis of external jugular vein +86466006,Rheumatic mitral stenosis +866118008,Left hand pattern ventricular topology +868214006,Acute ST segment elevation myocardial infarction due to occlusion of proximal portion of right coronary artery +868215007,Occlusion of proximal portion of right coronary artery +868216008,Occlusion of distal portion of right coronary artery +868217004,Acute ST segment elevation myocardial infarction due to occlusion of distal portion of right coronary artery +868219001,Occlusion of mid portion of right coronary artery +868220007,Acute ST segment elevation myocardial infarction due to occlusion of mid portion of right coronary artery +868221006,Occlusion of marginal branch of right coronary artery +868222004,Occlusion of posterior descending branch of right coronary artery +868223009,Occlusion of posterior lateral branch of right coronary artery +868224003,Acute ST segment elevation myocardial infarction due to occlusion of marginal branch of right coronary artery +868225002,Acute ST segment elevation myocardial infarction due to occlusion of posterior descending branch of right coronary artery +868226001,Acute ST segment elevation myocardial infarction due to occlusion of posterior lateral branch of right coronary artery +868227005,Coronary artery bypass grafting using radial artery graft +868228000,Coronary artery bypass grafting using gastroepiploic artery graft +868230003,Coronary artery bypass grafting using free right internal thoracic artery graft +868231004,Coronary artery bypass grafting using free left internal thoracic artery graft +868245005,Percutaneous coronary intervention of left coronary artery +868246006,Percutaneous coronary intervention of anterior descending branch of left coronary artery +868247002,Percutaneous coronary intervention of circumflex branch of left coronary artery +868248007,Percutaneous coronary intervention of right coronary artery +86856005,Dysfunction of papillary muscle +86885004,Repair of pacemaker electrodes +86995005,Dilated cardiomyopathy due to mucopolysaccharidosis +870255009,Cardiac resynchronization therapy +870323006,Obstructed anomalous pulmonary venous pathway +870574002,Adaptive-rate cardiac pacing +870743002,Anastomosis of right internal thoracic artery to coronary artery +870744008,Anastomosis of left internal thoracic artery to coronary artery +8712002,Congenital subaortic stenosis due to fibromuscular shelf +871496000,Sequential anastomosis of left internal thoracic artery to coronary artery +871497009,Sequential anastomosis of right internal thoracic artery to coronary artery +871498004,Sequential anastomosis of free right internal thoracic artery to coronary artery +871536000,Aneurysm of pararenal aorta +871578006,Arteriovenous fistula of pulmonary vessels following superior cavopulmonary anastomosis +871579003,Perimembranous inlet ventricular septal defect with atrioventricular septal malalignment +871580000,Arteriovenous malformation of pulmonary vessels following cavopulmonary anastomosis +871581001,Inferior muscular trabecular ventricular septal defect +871583003,Congenital anomaly of left-sided atrioventricular valve in double inlet ventricle +871585005,Congenital anomaly of right-sided atrioventricular valve in double inlet ventricle +871587002,Myocarditis due to Chaga disease +871594004,Congenital stenosis of truncal valve +871596002,Residual patency of arterial duct following patent ductus arteriosus repair +871597006,Congenital dysplasia of aortic valve +871599009,Double outlet right ventricle with subaortic or doubly committed ventricular septal defect and pulmonary stenosis Fallot type +871600007,Outlet ventricular septal defect with posteriorly malaligned outlet septum +871601006,Double outlet right ventricle with subaortic ventricular septal defect and pulmonary stenosis Fallot type +871602004,Perimembranous outlet ventricular septal defect with anteriorly malaligned outlet septum +871603009,Transposition of great arteries with concordant atrioventricular connections and ventricular septal defect +871604003,Doubly committed juxta-arterial outlet ventricular septal defect with perimembranous extension and posteriorly malaligned outlet septum +871605002,Transposition of great arteries with concordant atrioventricular connections and ventricular septal defect and left ventricular outflow tract obstruction +871606001,Outlet ventricular septal defect with anteriorly malaligned outlet septum +871607005,Doubly committed juxta-arterial outlet ventricular septal defect with perimembranous extension and anteriorly malaligned outlet septum +871609008,Doubly committed juxta-arterial outlet ventricular septal defect with anteriorly malaligned outlet septum +871610003,Doubly committed juxta-arterial outlet ventricular septal defect with perimembranous extension +871611004,Doubly committed juxta-arterial outlet ventricular septal defect with posteriorly malaligned outlet septum +871612006,Anterior muscular trabecular ventricular septal defect +871613001,Right hand pattern ventricular topology +871614007,Abnormal intrapericardial course of great arteries +871615008,Acquired narrowing of constructed cardiac intraventricular tunnel +871616009,Atrial situs inversus +871617000,Low output heart failure due to and following Fontan operation +871618005,Congenital dysplasia of truncal valve +871620008,Perimembranous inlet ventricular septal defect +871621007,Acquired stenosis of subpulmonary area +871622000,Common atrioventricular valve with unbalanced commitment of valve to ventricle +871623005,Acquired subaortic stenosis +871624004,Common atrioventricular valve with unbalanced commitment of valve to right ventricle +871625003,Intermediate atrioventricular septal defect with atrial and ventricular components and separate atrioventricular valves +871627006,Common atrium with common atrioventricular junction +871630004,Atrioventricular septal defect with ventricular imbalance +871636005,Doubly committed juxta-arterial ventricular septal defect with anteriorly malaligned fibrous outlet septum and muscular postero-inferior rim +871637001,Thrombosis of multiple cerebral veins +871638006,Hypertrophic cardiomyopathy due to glycogen storage disease +871639003,Dilated cardiomyopathy due to mitochondrial disease +871643004,Atrioventricular septal defect with balanced ventricles +871645006,Common atrium with separate arterioventricular junctions +871646007,Infiltrative cardiomyopathy +871647003,Common arterial trunk with pulmonary dominance +871648008,Perimembranous outlet ventricular septal defect with posteriorly malaligned outlet septum +871649000,Hypertrophic cardiomyopathy due to lysosomal disease +871650000,Common arterial trunk with pulmonary dominance and aortic coarctation +871652008,Mitral atresia with imperforate mitral valve +871654009,Congenital hypoplasia of annulus fibrosus of aorta +871655005,Tricuspid atresia with absent right atrioventricular connection +871658007,Muscular ventricular septal defect opening to right ventricular inlet +871659004,Double inlet to solitary ventricle of indeterminate morphology +871660009,Congenital anomaly of left ventricle +871661008,Aneurysm of aorta at coarctation site following procedure +871662001,Dissection of aorta at coarctation site following procedure +871663006,Disorder of aorta due to and following correction of congenital heart anomaly +871664000,Stenosis of aortic arch following procedure +871665004,Acquired dilatation of ascending aorta and aortic root +871666003,Atypical left ventricular component of common atrioventricular valve +871667007,Disorder of ascending aorta due to conotruncal malformation +871668002,Congenital right ventricular anomaly +871669005,Acquired abnormality of aorta due to congenital heart anomaly +871671005,Acquired stenosis of supravalvar area +871672003,Atypical right ventricular component of common atrioventricular valve +8722008,Aortic valve disorder +87239004,Popliteal artery thrombosis +87343002,Prinzmetal angina +87394009,Episodic pulmonary hypertension +87648004,Chronic rheumatic heart disease +876846006,Congenital absence of chordae tendineae of tricuspid valve +876856005,Stenosis of right coronary artery +876857001,Stenosis of left coronary artery main stem +876858006,Stenosis of circumflex branch of left coronary artery +876859003,Stenosis of anterior descending branch of left coronary artery +87837008,Chronic pulmonary heart disease +878858004,Malignant lymphomatoid granulomatosis grade 3 of lung +879814007,Pulmonary hypertension due to pulmonary capillary hemangiomatosis +879815008,Pulmonary hypertension due to pulmonary veno-occlusive disease +879816009,Pulmonary hypertension due to familial pulmonary capillary hemangiomatosis +879955009,Myocardial infarction with non-obstructive coronary artery +880000009,Acquired aneurysm of right cardiac ventricle +880002001,Acquired dilatation of left cardiac ventricle +880003006,Residual ventricular septal defect following procedure +880004000,Perforation of left ventricle due to procedure +880005004,Perforation of right ventricle following procedure +880006003,Acquired abnormality of right atrium +880007007,Acquired abnormality of right atrioventricular valve following repair of double inlet ventricle +880008002,Acquired abnormality of left cardiac ventricle +880009005,Acquired abnormality of left atrioventricular valve following repair of double inlet ventricle +880011001,Obstruction of outflow tract of right ventricle following procedure +880013003,Obstruction of outflow tract of left ventricle following procedure +880014009,Dilated cardiomyopathy due to carnitine deficiency +880037003,Acquired aneurysm of left cardiac ventricle +880038008,Dilated cardiomyopathy due to lysosomal storage disease +880040003,Arrhythmogenic left ventricular cardiomyopathy +880041004,Acquired abnormality of right cardiac ventricle +880042006,Dilated cardiomyopathy caused by anthracycline +880043001,Aneurysm of left ventricle following procedure +880044007,Aneurysm of right ventricle following procedure +880045008,Acquired stenosis of right ventricular component of common atrioventricular valve following repair of biventricular connection +880046009,Acquired stenosis of common atrioventricular valve following repair of biventricular connection +880047000,Acquired stenosis of left ventricular component of common atrioventricular valve following repair of biventricular connection +880048005,Acquired regurgitation of left ventricular component of common atrioventricular valve following repair of biventricular connection +880049002,Acquired regurgitation of right ventricular component of common atrioventricular valve following repair of biventricular connection +880050002,Acquired obstruction of outflow tract of right ventricle +880051003,Acquired regurgitation of common atrioventricular valve following repair of biventricular connection +880052005,Acquired hypertrophy of left cardiac ventricle +880054006,Acquired obstruction of outflow tract of left ventricle +880062003,Recurrent ventricular septal defect following procedure +88174006,Basilar artery thrombosis +88223008,Secondary pulmonary hypertension +88244008,Congenital stenosis of vena cava +88318005,Rheumatic tricuspid valve stenosis +88445007,Anomalous muscle bands of right ventricle +88553002,Removal of cardioverter/defibrillator pulse generator without replacement +8876004,Aortocoronary artery bypass graft with prosthesis +88805009,Chronic congestive heart failure +88922007,Thrombosis of basilar sinus +890119003,Hypertrophic cardiomyopathy due to Friedreich ataxia +890120009,Hypertrophic cardiomyopathy due to neuromuscular disorder +890121008,Hypertrophic cardiomyopathy due to hyperthyroidism +890122001,Hypertrophic cardiomyopathy due to disorder +890204008,Acquired abnormality of congenital malformed heart valve following repair +890207001,Acquired common atrioventricular valve regurgitation following procedure +890220003,Bicuspid aortic valve-associated aortopathy +890393009,Congenital prolapse of mitral valve +890402009,Congenital abnormality of truncal valve +89135007,Thromboarteritis +89222008,Pericarditis co-occurrent with atrial septal defect +89297009,Replacement of temporary transvenous pacemaker system +89323001,"Angina, class IV" +89420002,Pulmonary veno-occlusive disease +89456004,Chronic valvulitis due to rheumatic heart disease +89461002,Primary cardiomyopathy +89511008,Check artificial pacemaker for voltage threshold +896689003,Acute myocardial infarction due to occlusion of circumflex branch of left coronary artery +896690007,Occlusion of circumflex branch of left coronary artery +896691006,Acute ST segment elevation myocardial infarction due to occlusion of circumflex branch of left coronary artery +896696001,Acute ST segment elevation myocardial infarction of apex of heart +896697005,Acute ST segment elevation myocardial infarction of right ventricle +897555003,Dilatation of ascending aorta following procedure +89792004,Right ventricular hypertrophy +89819002,Cardiac insufficiency during AND/OR resulting from a procedure +898208007,Heart failure due to thyrotoxicosis +89980009,Thrombosis of cavernous venous sinus +90154003,Papillary muscle disorder +90205004,Cardiac revascularization with bypass anastomosis +90383006,Congenital absence of aorta +90453003,Chronic mediastinopericarditis due to rheumatic heart disease +90487008,Aortocoronary bypass of two coronary arteries +90539001,Ventricular aneurysm +90543002,"Replacement of electronic heart device, transvenous electrode" +9058002,Duodenoaortic fistula +906071000000100,Insertion of cardiac single chamber permanent pacemaker using fluoroscopic guidance +9061001,Check artificial pacemaker +90828009,Primary restrictive cardiomyopathy +90958004,Thrombosis of arteries of lower extremity +9106006,Intraoperative cardiac pacing and mapping +91335003,Mural thrombus of heart +91338001,"Infusion of intra-arterial thrombolytic agent with percutaneous transluminal coronary angioplasty, single vessel" +914231000000100,Primary percutaneous coronary intervention using fluoroscopic guidance +91434003,Pulmonic valve regurgitation +91442002,Rheumatic pulmonary valve stenosis +91529004,Rheumatic heart valve failure +91592003,Closure of fistula of sinus of Valsalva +91604001,Dilated cardiomyopathy due to polyarteritis nodosa +91634006,Fused commissures of mitral valve +92506005,Biventricular congestive heart failure +92517006,Calcific coronary arteriosclerosis +92808004,Chronic degenerative aortic valve disease +92830003,Combined valvular-subvalvular pulmonic stenosis +92888002,Congenital abnormal shape of aortic valve +92923008,Congenital abnormal shape of mitral valve +92941000,Congenital abnormal shape of pulmonary valve +92944008,Congenital abnormal shape of tricuspid valve +92960007,Congenital absence of aortic valve +92963009,Congenital absence of chordae tendineae +92969008,Congenital absence of mitral valve +92974000,Congenital absence of papillary muscle +92976003,Congenital absence of tricuspid valve +93031005,Congenital atresia of inferior vena cava +93033008,Congenital atresia of superior vena cava +93050005,Congenital dilatation of aortic arch +93051009,Congenital dilatation of atrium +93053007,Congenital dilatation of cardiac ventricle +93055000,Congenital dilatation of ductus arteriosus +93056004,Congenital dilatation of inferior vena cava +93059006,Congenital dilatation of pulmonary artery +93062009,Congenital dilatation of superior vena cava +93064005,Congenital duplication of aorta +93069000,Congenital hypertrophy of aortic valve +93075009,Congenital hypertrophy of pulmonary valve +93076005,Congenital hypertrophy of tricuspid valve +93078006,Congenital hypertrophy of cardiac ventricle +93234006,Congenital hypertrophy of mitral valve +93237004,Congenital hypoplasia of aortic valve +93247001,Congenital hypoplasia of cardiac ventricle +93262004,Congenital hypoplasia of heart +93271008,Congenital hypoplasia of mitral valve +93287006,Congenital hypoplasia of pulmonary valve +93305002,Congenital malposition of aorta +93318005,Congenital malposition of ductus arteriosus +93328001,Congenital malposition of inferior vena cava +93347003,Congenital malposition of pulmonary artery +93354009,Congenital malposition of superior vena cava +93384001,Congenital stenosis of aortic arch +93388003,Congenital stenosis of subclavian artery +93445007,Dynamic subaortic stenosis +936451000000108,Percutaneous transluminal balloon angioplasty and insertion of drug eluting stent into coronary artery +93778001,Primary malignant neoplasm of endocardium +93914000,Primary malignant neoplasm of myocardium +94150003,Membranous ventricular septum defect +94278009,Metastatic malignant neoplasm to endocardium +94433008,Metastatic malignant neoplasm to myocardium +94702005,Multiple congenital cardiac defects +94703000,Multiple intracardiac shunts +94706008,Muscular ventricular septum defect +94720001,Myxoid transformation of tricuspid valve +94851000119107,Syphilitic valvular endocarditis +95234008,Retroesophageal aortic arch +95236005,Retroesophageal pulmonary artery +95242009,Right-sided pulmonary arterial trunk +95268002,Sinus venosus atrial septal defect +95437004,Non-cardiogenic pulmonary edema +95440004,Atrial septal aneurysm +95441000,Pulmonary artery stenosis +95445009,Thrombophlebitis of vena cava +95446005,Thrombosis of mesenteric vein +95447001,Thrombophlebitis of mesenteric vein +95448006,Thrombosis of pelvic vein +95449003,Thrombophlebitis of pelvic vein +95450003,Thrombophlebitis of upper extremities +95452006,Thrombophlebitis of deep veins of upper extremities +95455008,Thrombosis of cerebral veins +95459002,Cerebellar artery thrombosis +95461006,Thrombophlebitis of cerebral vein +95579008,Thrombosis of renal artery +95580006,Renal artery embolism +95620003,Thrombophlebitis of the newborn +95838002,Pulmonary cyanosis +961792901000119102,Thrombophlebitis of left peroneal vein +96311000119109,Exacerbation of congestive heart failure +96701000119107,Hypertensive heart AND chronic kidney disease on dialysis +96711000119105,Hypertensive heart AND chronic kidney disease stage 5 +96721000119103,Hypertensive heart AND chronic kidney disease stage 4 +96731000119100,Hypertensive heart AND chronic kidney disease stage 3 +96741000119109,Hypertensive heart AND chronic kidney disease stage 2 +96751000119106,Hypertensive heart AND chronic kidney disease stage 1 +978421000000101,Unprovoked deep vein thrombosis +978441000000108,Provoked deep vein thrombosis +98067641000119101,Chronic deep venous thrombosis of right peroneal vein +985961000000104,Isolated aortitis +9909003,Fatty degeneration of heart +998008,Chagas' disease with heart involvement diff --git a/tests/acceptance/external_studies/waiting-list/codelists/primis-covid19-vacc-uptake-ckd15.csv b/tests/acceptance/external_studies/waiting-list/codelists/primis-covid19-vacc-uptake-ckd15.csv new file mode 100644 index 000000000..9489fb555 --- /dev/null +++ b/tests/acceptance/external_studies/waiting-list/codelists/primis-covid19-vacc-uptake-ckd15.csv @@ -0,0 +1,82 @@ +code,term +117681000119102,Chronic kidney disease stage 1 due to hypertension +129151000119102,Chronic kidney disease stage 4 due to hypertension +129161000119100,Chronic kidney disease stage 5 due to hypertension +129171000119106,Chronic kidney disease stage 3 due to hypertension +129181000119109,Chronic kidney disease stage 2 due to hypertension +140101000119109,Hypertension in chronic kidney disease stage 5 due to type 2 diabetes mellitus +140111000119107,Hypertension in chronic kidney disease stage 4 due to type 2 diabetes mellitus +140121000119100,Hypertension in chronic kidney disease stage 3 due to type 2 diabetes mellitus +140131000119102,Hypertension in chronic kidney disease stage 2 due to type 2 diabetes mellitus +153851000119106,Malignant hypertensive chronic kidney disease stage 5 +284971000119100,Chronic kidney disease stage 1 due to benign hypertension +284981000119102,Chronic kidney disease stage 2 due to benign hypertension +284991000119104,Chronic kidney disease stage 3 due to benign hypertension +285001000119105,Chronic kidney disease stage 4 due to benign hypertension +285011000119108,Chronic kidney disease stage 5 due to benign hypertension +285851000119102,Malignant hypertensive chronic kidney disease stage 1 +285861000119100,Malignant hypertensive chronic kidney disease stage 2 +285871000119106,Malignant hypertensive chronic kidney disease stage 3 +285881000119109,Malignant hypertensive chronic kidney disease stage 4 +324121000000109,Chronic kidney disease stage 1 with proteinuria +324151000000104,Chronic kidney disease stage 1 without proteinuria +324181000000105,Chronic kidney disease stage 2 with proteinuria +324211000000106,Chronic kidney disease stage 2 without proteinuria +324251000000105,Chronic kidney disease stage 3 with proteinuria +324281000000104,Chronic kidney disease stage 3 without proteinuria +324311000000101,Chronic kidney disease stage 3A with proteinuria +324341000000100,Chronic kidney disease stage 3A without proteinuria +324371000000106,Chronic kidney disease stage 3B with proteinuria +324411000000105,Chronic kidney disease stage 3B without proteinuria +324441000000106,Chronic kidney disease stage 4 with proteinuria +324471000000100,Chronic kidney disease stage 4 without proteinuria +324501000000107,Chronic kidney disease stage 5 with proteinuria +324541000000105,Chronic kidney disease stage 5 without proteinuria +368421000119108,Chronic kidney disease stage 1 due to drug induced diabetes mellitus +368431000119106,Chronic kidney disease stage 2 due to drug induced diabetes mellitus +368441000119102,Chronic kidney disease stage 3 due to drug induced diabetes mellitus +368451000119100,Chronic kidney disease stage 4 due to drug induced diabetes mellitus +368461000119103,Chronic kidney disease stage 5 due to drug induced diabetes mellitus +431855005,Chronic kidney disease stage 1 +431856006,Chronic kidney disease stage 2 +431857002,Chronic kidney disease stage 4 +433144002,Chronic kidney disease stage 3 +433146000,Chronic kidney disease stage 5 +691421000119108,Anemia co-occurrent and due to chronic kidney disease stage 3 +700378005,Chronic kidney disease stage 3A +700379002,Chronic kidney disease stage 3B +711000119100,Chronic kidney disease stage 5 due to type 2 diabetes mellitus +714152005,Chronic kidney disease stage 5 on dialysis +714153000,Chronic kidney disease stage 5 with transplant +721000119107,Chronic kidney disease stage 4 due to type 2 diabetes mellitus +731000119105,Chronic kidney disease stage 3 due to type 2 diabetes mellitus +741000119101,Chronic kidney disease stage 2 due to type 2 diabetes mellitus +751000119104,Chronic kidney disease stage 1 due to type 2 diabetes mellitus +90721000119101,Chronic kidney disease stage 1 due to type 1 diabetes mellitus +90731000119103,Chronic kidney disease stage 2 due to type 1 diabetes mellitus +90741000119107,Chronic kidney disease stage 3 due to type 1 diabetes mellitus +90751000119109,Chronic kidney disease stage 4 due to type 1 diabetes mellitus +90761000119106,Chronic kidney disease stage 5 due to type 1 diabetes mellitus +949401000000103,Chronic kidney disease with glomerular filtration rate category G1 and albuminuria category A1 +949421000000107,Chronic kidney disease with glomerular filtration rate category G1 and albuminuria category A2 +949481000000108,Chronic kidney disease with glomerular filtration rate category G1 and albuminuria category A3 +949521000000108,Chronic kidney disease with glomerular filtration rate category G2 and albuminuria category A1 +949561000000100,Chronic kidney disease with glomerular filtration rate category G2 and albuminuria category A2 +949621000000109,Chronic kidney disease with glomerular filtration rate category G2 and albuminuria category A3 +949881000000106,Chronic kidney disease with glomerular filtration rate category G3a and albuminuria category A1 +949901000000109,Chronic kidney disease with glomerular filtration rate category G3a and albuminuria category A2 +949921000000100,Chronic kidney disease with glomerular filtration rate category G3a and albuminuria category A3 +950061000000103,Chronic kidney disease with glomerular filtration rate category G3b and albuminuria category A1 +950081000000107,Chronic kidney disease with glomerular filtration rate category G3b and albuminuria category A2 +950101000000101,Chronic kidney disease with glomerular filtration rate category G3b and albuminuria category A3 +950181000000106,Chronic kidney disease with glomerular filtration rate category G4 and albuminuria category A1 +950211000000107,Chronic kidney disease with glomerular filtration rate category G4 and albuminuria category A2 +950231000000104,Chronic kidney disease with glomerular filtration rate category G4 and albuminuria category A3 +950251000000106,Chronic kidney disease with glomerular filtration rate category G5 and albuminuria category A1 +950291000000103,Chronic kidney disease with glomerular filtration rate category G5 and albuminuria category A2 +950311000000102,Chronic kidney disease with glomerular filtration rate category G5 and albuminuria category A3 +96711000119105,Hypertensive heart AND chronic kidney disease stage 5 +96721000119103,Hypertensive heart AND chronic kidney disease stage 4 +96731000119100,Hypertensive heart AND chronic kidney disease stage 3 +96741000119109,Hypertensive heart AND chronic kidney disease stage 2 +96751000119106,Hypertensive heart AND chronic kidney disease stage 1 diff --git a/tests/acceptance/external_studies/waiting-list/codelists/primis-covid19-vacc-uptake-cld.csv b/tests/acceptance/external_studies/waiting-list/codelists/primis-covid19-vacc-uptake-cld.csv new file mode 100644 index 000000000..0b4937166 --- /dev/null +++ b/tests/acceptance/external_studies/waiting-list/codelists/primis-covid19-vacc-uptake-cld.csv @@ -0,0 +1,379 @@ +code,term +1003567000,Agenesis of bile duct +1010616001,Cirrhosis of liver due to classical cystic fibrosis +10295004,Chronic viral hepatitis +103611000119102,Cirrhosis of liver due to hepatitis B +10690671000119109,Stage 3 hepatic fibrosis +1092801000119102,Hepatic ascites co-occurrent with chronic active hepatitis due to toxic liver disease +109819003,Obstructive biliary cirrhosis +1116000,Chronic aggressive type B viral hepatitis +11179002,"Glycogen storage disease, type IV" +111891008,Viral hepatitis B without hepatic coma +1137357005,Hepatic coma due to viral hepatitis D +1148573000,Hepatic failure following surgical procedure +1155841005,Progressive familial intrahepatic cholestasis type 2 +1155913007,Progressive familial intrahepatic cholestasis type 1 +1162916008,Glycogen storage disease due to muscle beta-enolase deficiency +1186809004,Glycogen storage disease due to lactate dehydrogenase deficiency +1186865008,Progressive familial intrahepatic cholestasis type 3 +1187461004,Glycogen storage disease due to aldolase A deficiency +1187462006,Glycogen storage disease due to phosphoglycerate kinase 1 deficiency +1197150002,Recurrent hepatitis C virus induced liver disease following liver transplant +1197664001,Secondary portal hypertension +1197704005,Autoantibody negative autoimmune hepatitis +1197736003,Chronic hepatic failure due to portosystemic shunt +1197739005,Hepatic fibrosis due to non-alcoholic fatty liver disease +1220580006,Isolated neonatal sclerosing cholangitis +12224501000119108,Infection of transplanted liver +1228849007,Polyglucosan body myopathy type 2 +1230291009,Primary biliary cholangitis and/or primary sclerosing cholangitis and autoimmune hepatitis overlap syndrome +1230303001,Fatal congenital hypertrophic cardiomyopathy due to glycogen storage disease +1230342001,Hepatitis B reinfection following transplantation of liver +1234778004,Steatohepatitis caused by ethanol +1234822009,Idiopathic ductopenia +123604002,Toxic cirrhosis +123605001,Nutritional cirrhosis +123606000,Cholangiolitic cirrhosis +123607009,Septal fibrosis of liver +12368000,Secondary biliary cirrhosis +123716002,Latent cirrhosis +123717006,Advanced cirrhosis +1237346001,Caroli syndrome +125921000119106,Hepatic coma due to acute hepatitis C +1260140008,"Congenital cataract, severe neonatal hepatopathy, global developmental delay syndrome" +128241005,Inflammatory disease of liver +128302006,Chronic hepatitis C +1287007,Congenital absence of bile duct +146371000119104,Hepatic coma due to chronic hepatitis C +1512006,Congenital stricture of bile duct +153091000119109,Hepatic coma due to chronic hepatitis B with delta agent +154211000119108,Chronic pancreatitis due to chronic alcoholism +15978003,"Glycogen storage disease, muscular form" +15999000,Mixed micro and macronodular cirrhosis +16060001,Hepatic coma due to viral hepatitis A +16070004,Syphilitic cirrhosis +16098491000119109,Chronic autoimmune hepatitis +174425003,Orthotopic liver transplant +174426002,Heterotopic liver transplant +174427006,Replacement of previous liver transplant +1761006,Biliary cirrhosis +18027006,Transplantation of liver +186273003,Tuberculosis of liver +186624004,Hepatic coma due to acute hepatitis B with delta agent +186626002,Acute hepatitis B with delta-agent (coinfection) without hepatic coma +186628001,Hepatic coma due to viral hepatitis C +186639003,Chronic viral hepatitis B without delta-agent +190823004,Westphal-Strumpell syndrome +190944000,Alpha-1-antitrypsin hepatitis +192008,Congenital syphilitic hepatomegaly +195025008,Cardiac glycogenosis +19682006,Lupus hepatitis +197279005,Cirrhosis and chronic liver disease +197284004,Chronic active hepatitis +197286002,Recurrent hepatitis +197291001,Unilobular portal cirrhosis +197293003,Diffuse nodular cirrhosis +197294009,Fatty portal cirrhosis +197296006,Capsular portal cirrhosis +197299004,Pigmentary portal cirrhosis +197300007,Pipestem portal cirrhosis +197301006,Toxic portal cirrhosis +197303009,Bacterial portal cirrhosis +197305002,Syphilitic portal cirrhosis +197310003,Biliary cirrhosis of children +197316009,Portal fibrosis without cirrhosis +197321007,Steatosis of liver +197324004,Liver abscess and sequelae of chronic liver disease +197347003,Hepatitis in late syphilis +197348008,Hepatitis in secondary syphilis +197355005,Toxic liver disease with cholestasis +197356006,Toxic liver disease with hepatic necrosis +197359004,Toxic liver disease with chronic persistent hepatitis +197360009,Toxic liver disease with chronic lobular hepatitis +197361008,Toxic liver disease with chronic active hepatitis +197362001,Toxic liver disease with fibrosis and cirrhosis of liver +197367007,Hepatic granulomas in berylliosis +197368002,Hepatic granulomas in sarcoidosis +197441003,Primary sclerosing cholangitis +197442005,Secondary sclerosing cholangitis +19943007,Cirrhosis of liver +204781002,Congenital absence of hepatic ducts +204782009,Atresia of hepatic ducts +204787003,Congenital absence of liver and/or gallbladder +213153001,Liver transplant failure and rejection +213230009,Hepatic failure as a complication of care +213231008,Hepatorenal syndrome as a complication of care +21861000,Micronodular cirrhosis +22508003,Hepatic failure due to a procedure +22846003,Hepatorenal syndrome following delivery +234689009,Relapsing pancreatitis +235458006,Exploration of liver transplant +235494005,Chronic pancreatitis +235865005,Hepatitis D superinfection of hepatitis B carrier +235869004,Chronic viral hepatitis B with hepatitis D +235870003,Chronic non-A non-B hepatitis +235875008,Alcoholic hepatitis +235877000,Ischemic hepatitis +235880004,Alcoholic fibrosis and sclerosis of liver +235881000,Alcoholic hepatic failure +235884008,Fulminant hepatic failure +235885009,Subfulminant hepatic failure +235886005,Chronic hepatic failure +235889003,Drug-induced chronic hepatitis +235890007,Autoimmune liver disease +235895002,"Laennec's cirrhosis, non-alcoholic" +235896001,Infectious cirrhosis +235897005,Hypoxia-associated cirrhosis +235898000,Pericellular fibrosis of congenital syphilis +235899008,Hepatic sclerosis +235900003,Portal and splenic vein sclerosis +235901004,Hepatic fibrosis with hepatic sclerosis +235902006,Intrahepatic phlebosclerosis and fibrosis +235903001,Metabolic and genetic disorder affecting the liver +235908005,Glycogen storage disease type IX +235909002,Antichymotrypsin deficiency-alpha-1 +235910007,Liver transplant disorder +235911006,Liver transplant rejection +235912004,Liver transplant failure +235915002,Synthetic defect of bile acids +235916001,Ichthyosis congenita with biliary atresia +235917005,Sclerosing cholangitis +235951009,Gallstone chronic pancreatitis +235952002,Alcohol-induced chronic pancreatitis +235953007,Idiopathic chronic pancreatitis +235954001,Obstructive chronic pancreatitis +235955000,Drug-induced chronic pancreatitis +235956004,Familial chronic pancreatitis +237964009,Glycogen synthase deficiency +237965005,Phosphate transport defect +237966006,Glucose transport defect +238033007,3-Beta-hydroxy-delta-5-C27-steroid dehydrogenase deficiency +238035000,Delta-4-3-oxosteroid-5-beta-reductase deficiency +240792005,Symmer's pipe-stem fibrosis +253807009,Intrahepatic biliary atresia +253808004,Congenital kink of cystic duct +26206000,Hepatic coma due to viral hepatitis B +266468003,Cirrhosis - non-alcoholic +266469006,Multilobular portal cirrhosis +266470007,Cardiac portal cirrhosis +266471006,Juvenile portal cirrhosis +267424007,Generalized glycogenosis +271440004,Cirrhosis secondary to cholestasis +27156006,Posthepatitic cirrhosis +27280000,Liver transplant with recipient hepatectomy +274864009,"Glycogen storage disease, type II" +276668008,Congenital non-A non-B hepatitis infection +276723008,Intrahepatic biliary hypoplasia +278929008,Congenital hepatitis C infection +28009009,Liver transplant without recipient hepatectomy +281095009,Congenital stricture of common bile duct +281388009,Human immunodeficiency virus-related sclerosing cholangitis +29291001,"Glycogen storage disease, type VI" +29633007,Glycogen storage disease +297251003,"Glycogen phosphorylase kinase deficiency, X-linked" +297252005,"Glycogen phosphorylase kinase deficiency, autosomal recessive" +297253000,Cardiac glycogen phosphorylase kinase deficiency +297254006,Hepatic and muscle glycogen phosphorylase kinase deficiency +297255007,Hepatic glycogen phosphorylase kinase deficiency +301009006,Calcific chronic pancreatitis +30102006,Glucose-6-phosphate transport defect +30188007,Alpha-1-antitrypsin deficiency +307757001,Chronic alcoholic hepatitis +308129003,Esophageal varices in cirrhosis of the liver +309783001,Esophageal varices in alcoholic cirrhosis of the liver +31005002,Hepatorenal syndrome due to a procedure +314963000,Local recurrence of malignant tumor of liver +31712002,Primary biliary cholangitis +31742004,Arteriohepatic dysplasia +328383001,Chronic liver disease +33144001,Parasitic cirrhosis +33167004,Complication of transplanted liver +34736002,Chronic passive congestion of liver +34742003,Portal hypertension +347891000119103,Chronic hepatitis C with stage 3 fibrosis +3650004,Congenital absence of liver +367406009,"Deficiency of alpha-dextrin endo-1,6-alpha-glucosidase" +36760000,Hepatosplenomegaly +370492003,Copper storage associated hepatitis +371139006,Early cirrhosis +37666005,Glycogen storage disease type X +37688005,Clonorchiasis with biliary cirrhosis +38662009,Chronic persistent type B viral hepatitis +397575003,"Viral hepatitis, type G" +406584008,"Non-A, non-B, non-C hepatitis" +407000,Congenital hepatomegaly +408335007,Autoimmune hepatitis +40946000,Hepatic coma due to viral hepatitis +41309000,Alcoholic liver damage +41527003,Glycogen storage disease type VIII +41889008,Chronic persistent hepatitis +419097006,Danon disease +419728003,Portal cirrhosis +420054005,Alcoholic cirrhosis +424099008,Hepatic coma due to acute hepatitis B +424340000,Hepatic coma due to chronic hepatitis B +425413006,Drug-induced cirrhosis of liver +426356008,Orthotopic transplantation of whole liver +427022004,Liver disease due to cystic fibrosis +427044009,Fulminant hepatitis +428198008,Transplantation of hepatocytes +431222008,Acute rejection of liver transplant +432772009,Hyperacute rejection of liver transplant +432777003,Accelerated rejection of liver transplant +432908002,Chronic rejection of liver transplant +43904005,Macronodular cirrhosis +44047000,Zieve's syndrome +442134007,Hepatitis B associated with Human immunodeficiency virus infection +442191002,Steatohepatitis +442374005,Hepatitis B and hepatitis C +442685003,Nonalcoholic steatohepatitis +444707001,Glycogen storage disease type Ia +444918006,Sequela of chronic liver disease +446698005,Reactivation of hepatitis B viral hepatitis +450880008,Chronic hepatitis E +45256007,Cruveilhier-Baumgarten syndrome +459062008,Fatal congenital nonlysosomal heart glycogenosis +50167007,Chronic active type B viral hepatitis +50325005,Alcoholic fatty liver +50711007,Viral hepatitis type C +51038004,Congenital obstruction of bile duct +51292008,Hepatorenal syndrome +53425008,Anicteric type B viral hepatitis +536002,Glissonian cirrhosis +55912009,"Glycogen storage disease, type V" +5667009,"Hunter's syndrome, mild form" +57339008,Chronic lobular hepatitis +58282009,Relapsing viral hepatitis +59927004,Hepatic failure +60037002,Chronic persistent viral hepatitis +60498001,Congenital viral hepatitis B infection +6075009,"Glycogen storage disease, hepatic form" +61598006,Glycogenosis with glucoaminophosphaturia +6183001,Indian childhood cirrhosis +61977001,Chronic type B viral hepatitis +62216007,Familial arthrogryposis-cholestatic hepatorenal syndrome +62484002,Hepatic fibrosis +63246000,Cholestanol storage disease +66071002,Viral hepatitis type B +66870002,Chronic active viral hepatitis +66937008,"Glycogen storage disease, type III" +68094008,Congenital hypoplasia of bile duct +698305006,Awaiting transplantation of liver +699189004,North American Indian childhood cirrhosis +700463002,Alpha-methylacyl-CoA racemase deficiency disorder +702777009,Liver transplant recipient +702969000,Reactivation of hepatitis C viral hepatitis +703866000,Chronic hepatitis C with stage 2 fibrosis +704201006,Liver transplant planned +707341005,Viral hepatitis type D +70737009,Mucopolysaccharidosis type II +707420003,Portal hypertension due to cystic fibrosis +707551007,Pulmonary interstitial glycogenosis +708198006,Chronic active hepatitis C +708248004,End stage liver disease +7111000119109,Viral hepatitis type E +713181003,Chronic alcoholic liver disease +713370005,Acute on chronic alcoholic liver disease +713529007,Steatosis of liver caused by retroviral protease inhibitor +713542007,Portal hypertension caused by antiretroviral drug +713965007,Sclerosis of portal vein and splenic vein caused by antiretroviral drug +713966008,Occult chronic type B viral hepatitis +715401008,Primary biliary cirrhosis co-occurrent with systemic scleroderma +715864007,Non-Wilsonian hepatic copper toxicosis of infancy and childhood +716203000,Decompensated cirrhosis of liver +717047007,Bile acid coenzyme A ligase deficiency and defective amidation +717156002,Biliary atresia with splenic malformation syndrome +717187000,Nephronophthisis hepatic fibrosis syndrome +717821004,Glycogen storage disease with severe cardiomyopathy due to glycogenin deficiency +719452004,Congenital bronchobiliary fistula +719454003,Congenital bile acid synthesis defect type 3 +720394008,Congenital tracheobiliary fistula +721099001,Adult polyglucosan body disease +721710005,Fibrosis of liver caused by alcohol +721711009,Autoimmune hepatitis type 1 +721712002,Autoimmune hepatitis type 2 +721713007,Autoimmune hepatitis type 3 +721847002,Joubert syndrome with congenital hepatic fibrosis +722302009,Glycogen storage disease type II infantile onset +722343009,Glycogen storage disease type II late onset +722867009,Idiopathic portal hypertension +722870008,Immunoglobulin G4-related sclerosing cholangitis +722871007,Groove pancreatitis +723360007,Familial hypercholanemia +723583009,Steroid dehydrogenase deficiency and dental anomaly syndrome +723829000,"Pulmonary fibrosis, hepatic hyperplasia, bone marrow hypoplasia syndrome" +724278007,"Neonatal sclerosing cholangitis, ichthyosis, hypotrichosis syndrome" +724540009,Tropical calcific chronic pancreatitis +724766009,Chorea co-occurrent and due to Wilson disease +725026008,Hepatic glycogen synthase deficiency +725027004,Muscle and heart glycogen synthase deficiency +725416005,Cardiomyopathy due to cirrhosis of liver +725938001,Cirrhosis of liver caused by methotrexate +725939009,Cirrhosis of liver caused by amiodarone +725940006,Cirrhosis of liver caused by methyldopa +7265005,"Glycogen storage disease, type I" +72925005,Congenital cystic disease of liver +73146005,"Hunter's syndrome, severe form" +735451005,Chronic infection caused by Hepatitis D virus +735733008,Cirrhosis of liver co-occurrent and due to primary sclerosing cholangitis +737202006,Fibropolycystic disease of liver +737297006,Transplanted liver present +74162007,Progressive intrahepatic cholestasis +74669004,Cardiac cirrhosis +74973004,Chronic fibrosing pancreatitis +76301009,Florid cirrhosis +764962002,Hepatoencephalopathy due to combined oxidative phosphorylation defect type 1 +767291004,Chronic pancreatitis due to acute alcohol intoxication +767809001,Chronic hepatitis C caused by hepatitis C virus genotype 6 +767810006,Chronic hepatitis C caused by hepatitis C virus genotype 5 +76783007,Chronic hepatitis +768006009,Chronic hepatitis C caused by Hepatitis C virus genotype 3 +768125005,Chronic hepatitis C caused by Hepatitis C virus genotype 2 +768126006,Chronic hepatitis C caused by Hepatitis C virus genotype 4 +768127002,Chronic hepatitis C caused by Hepatitis C virus genotype 1 +768288001,Chronic hepatitis C caused by Hepatitis C virus genotype 1b +768289009,Chronic hepatitis C caused by Hepatitis C virus genotype 1a +771149000,"Hepatic fibrosis, renal cyst, intellectual disability syndrome" +773415005,Contiguous ABCD1 DXS1357E deletion syndrome +773584001,"Muscular hypertrophy, hepatomegaly, polyhydramnios syndrome" +773737004,Nephrocystin 3-related Meckel-like syndrome +774148007,Polyglucosan body myopathy type 1 +774151000,Ferro-cerebro-cutaneous syndrome +774204006,"Growth retardation, mild developmental delay, chronic hepatitis syndrome" +77480004,Congenital biliary atresia +776981000000103,Cirrhosis associated with cystic fibrosis +78208005,Pigment cirrhosis +782771007,Mitochondrial deoxyribonucleic acid depletion syndrome hepatocerebrorenal form +783734000,"Mitochondrial deoxyribonucleic acid depletion syndrome, hepatocerebral form due to deoxyguanosine kinase deficiency" +784346006,Navajo neurohepatopathy +79607001,Congenital hepatic fibrosis +79720007,Chronic nonalcoholic liver disease +80378000,Neonatal hepatosplenomegaly +80770009,Secondary syphilis of liver +819953000,Glycogen storage disease due to muscle phosphorylase kinase deficiency +824841000000105,Hepatitis C genotype 1 +824851000000108,Hepatitis C genotype 2 +824871000000104,Hepatitis C genotype 3 +824881000000102,Hepatitis C genotype 4 +824891000000100,Hepatitis C genotype 5 +824901000000104,Hepatitis C genotype 6 +82821008,Congenital atresia of extrahepatic bile duct +831000119103,Cirrhosis of liver due to chronic hepatitis C +838375006,Chronic infectious pancreatitis +838377003,Chronic hepatitis C co-occurrent with human immunodeficiency virus infection +838380002,Chronic hepatitis B co-occurrent with hepatitis C and hepatitis D +853761000000103,Living donor liver transplantation +86028001,Syphilis of liver +860858001,Glycogen storage disease due to muscle pyruvate kinase deficiency +860860004,Glycogen storage disease type IXB +863957008,Chronic necrosis of liver +86454000,Postnecrotic cirrhosis +870517000,Periportal fibrosis +871619002,Cirrhosis of liver due to and following cardiac procedure +88518009,Wilson's disease +890201000,Congenital absence of cystic duct +89580002,Cryptogenic cirrhosis +89597008,"Glycogen storage disease, type VII" +89789003,Chronic aggressive viral hepatitis +96601000119101,Aftercare for liver transplant done +9843006,Chronic lymphocytic cholangitis-cholangiohepatitis diff --git a/tests/acceptance/external_studies/waiting-list/codelists/primis-covid19-vacc-uptake-diab.csv b/tests/acceptance/external_studies/waiting-list/codelists/primis-covid19-vacc-uptake-diab.csv new file mode 100644 index 000000000..eec0ac6d7 --- /dev/null +++ b/tests/acceptance/external_studies/waiting-list/codelists/primis-covid19-vacc-uptake-diab.csv @@ -0,0 +1,560 @@ +code,term +1003605004,Glaucoma suspect due to diabetes mellitus type 2 +102621000119101,Ulcer of skin due to type 2 diabetes mellitus +102781000119107,Sensory neuropathy due to type 1 diabetes mellitus +103981000119101,Proliferative retinopathy following surgery due to diabetes mellitus +104941000119109,Ischemia of retina due to type 1 diabetes mellitus +104951000119106,Vitreous hemorrhage due to type 1 diabetes mellitus +104961000119108,Ischemia of retina due to type 2 diabetes mellitus +105401000119101,Diabetes mellitus due to pancreatic injury +106281000119103,Pre-existing diabetes mellitus in mother complicating childbirth +10656231000119100,Ulcer of skin of toe due to type 1 diabetes mellitus +10656271000119102,Ulcer of skin of toe due to type 2 diabetes mellitus +10660471000119109,Ulcer of left foot due to type 2 diabetes mellitus +10661671000119102,Ulcer of right foot due to type 2 diabetes mellitus +10754881000119104,Diabetes mellitus in mother complicating childbirth +109171000119104,Retinal edema due to type 1 diabetes mellitus +110141000119100,Ulcer of lower limb due to type 1 diabetes mellitus +110171000119107,Ulcer of lower limb due to type 2 diabetes mellitus +110181000119105,Peripheral sensory neuropathy due to type 2 diabetes mellitus +111231000119109,Dyslipidemia with high density lipoprotein below reference range and triglyceride above reference range due to type 2 diabetes mellitus +111307005,Leprechaunism syndrome +111552007,Diabetes mellitus without complication +111556005,Ketoacidosis without coma due to diabetes mellitus +112991000000101,Lipoatrophic diabetes mellitus without complication +1142044000,Pre-existing malnutrition-related diabetes mellitus in pregnancy +1144894004,Peripheral autonomic neuropathy due to diabetes mellitus +11530004,Brittle diabetes mellitus +1172389004,Disorder due to malnutrition related diabetes mellitus +1196922005,Neovascular glaucoma due to diabetes mellitus type 2 +1196923000,Neovascular glaucoma due to diabetes mellitus type 1 +1197592001,"Intrauterine growth restriction, short stature, early adult-onset diabetes syndrome" +119831000119106,Hypoglycemia unawareness due to type 2 diabetes mellitus +120711000119108,Hypoglycemic unawareness due to type 1 diabetes mellitus +120731000119103,Hypoglycemia due to type 2 diabetes mellitus +1217044000,Ketosis-resistant diabetes mellitus +1217068008,Fulminant type 1 diabetes mellitus +1217674007,Neurotrophic keratitis due to diabetes mellitus +123763000,Houssay's syndrome +1251386008,Disorder of skin due to diabetes mellitus +1255271005,"Juvenile-onset diabetes mellitus, central and peripheral neurodegeneration syndrome" +1259048007,Lesion of brachial plexus due to diabetes mellitus +126534007,Mixed sensorimotor polyneuropathy due to diabetes mellitus +126535008,Motor polyneuropathy due to diabetes mellitus +127011001,Sensory neuropathy due to diabetes mellitus +127012008,Lipoatrophic diabetes +127013003,Disorder of kidney due to diabetes mellitus +127014009,Peripheral angiopathy due to diabetes mellitus +127991000119101,Hypertension concurrent and due to end stage renal disease on dialysis due to type 2 diabetes mellitus +128001000119105,Hypertension concurrent and due to end stage renal disease on dialysis due to type 1 diabetes mellitus +137931000119102,Hyperlipidemia due to type 2 diabetes mellitus +137941000119106,Hyperlipidemia due to type 1 diabetes mellitus +138881000119106,Mild nonproliferative retinopathy due to type 1 diabetes mellitus +138891000119109,Moderate nonproliferative retinopathy due to type 1 diabetes mellitus +138911000119106,Mild nonproliferative retinopathy due to type 2 diabetes mellitus +138921000119104,Moderate nonproliferative retinopathy due to type 2 diabetes mellitus +140101000119109,Hypertension in chronic kidney disease stage 5 due to type 2 diabetes mellitus +140111000119107,Hypertension in chronic kidney disease stage 4 due to type 2 diabetes mellitus +140121000119100,Hypertension in chronic kidney disease stage 3 due to type 2 diabetes mellitus +140131000119102,Hypertension in chronic kidney disease stage 2 due to type 2 diabetes mellitus +140381000119104,Neuropathic ulcer of toe due to type 2 diabetes mellitus +140391000119101,Ulcer of toe due to type 2 diabetes mellitus +140521000119107,Ischemic ulcer of foot due to type 2 diabetes mellitus +140531000119105,Neuropathic ulcer of foot due to type 2 diabetes mellitus +1481000119100,Diabetes mellitus type 2 without retinopathy +1491000119102,Vitreous hemorrhage due to type 2 diabetes mellitus +1501000119109,Proliferative retinopathy due to type 2 diabetes mellitus +1511000119107,Peripheral neuropathy due to type 2 diabetes mellitus +1521000119100,Ulcer of foot due to type 2 diabetes mellitus +1531000119102,Dermopathy due to type 2 diabetes mellitus +1551000119108,Nonproliferative retinopathy due to type 2 diabetes mellitus +1571000119104,Mixed hyperlipidemia due to type 1 diabetes mellitus +157141000119108,Proteinuria due to type 2 diabetes mellitus +15936501000119100,Inflammatory dermatosis due to type 2 diabetes mellitus +164881000119109,Ulcer of foot due to type 1 diabetes mellitus +164971000119101,Type 2 diabetes mellitus controlled by diet +16697421000119103,Moderate nonproliferative retinopathy of left eye due to diabetes mellitus type 1 +16697471000119102,Moderate nonproliferative retinopathy of right eye due to diabetes mellitus type 1 +16697521000119104,Moderate nonproliferative retinopathy of bilateral eyes due to diabetes mellitus type 1 +16745051000119107,Nonproliferative retinopathy of right eye due to diabetes mellitus type 2 +16745131000119100,Nonproliferative retinopathy of left eye due to diabetes mellitus type 2 +16745211000119100,Nonproliferative retinopathy of left eye due to diabetes mellitus type 1 +16745411000119104,Mild nonproliferative retinopathy of bilateral eyes due to diabetes mellitus type 1 +16745531000119108,Mild nonproliferative retinopathy of left eye due to diabetes mellitus type 2 +16745611000119102,Mild nonproliferative retinopathy of right eye due to diabetes mellitus type 1 +16745651000119101,Mild nonproliferative retinopathy of right eye due to diabetes mellitus type 2 +16745891000119105,Mild nonproliferative retinopathy of left eye due to diabetes mellitus type 1 +16745931000119102,Mild nonproliferative retinopathy of bilateral eyes due to diabetes mellitus type 2 +16746131000119105,Moderate nonproliferative retinopathy of left eye due to diabetes mellitus type 2 +16746261000119108,Moderate nonproliferative retinopathy of right eye due to diabetes mellitus type 2 +16746341000119103,Moderate nonproliferative retinopathy of bilateral eyes due to diabetes mellitus type 2 +16746661000119106,Nonproliferative retinopathy of bilateral eyes due to diabetes mellitus type 1 +16746741000119102,Nonproliferative retinopathy of right eye due to diabetes mellitus type 1 +16746901000119101,Severe nonproliferative retinopathy of left eye due to diabetes mellitus type 2 +16746941000119104,Severe nonproliferative retinopathy of left eye due to diabetes mellitus type 1 +16747021000119109,Severe nonproliferative retinopathy of bilateral eyes due to diabetes mellitus type 2 +16747101000119101,Severe nonproliferative retinopathy of bilateral eyes due to diabetes mellitus type 1 +16747141000119104,Severe nonproliferative retinopathy of right eye due to diabetes mellitus type 2 +16747341000119101,Severe nonproliferative retinopathy of right eye due to diabetes mellitus type 1 +16747661000119109,Nonproliferative retinopathy of bilateral eyes due to diabetes mellitus type 2 +16747741000119100,Proliferative retinopathy of left eye due to diabetes mellitus type 1 +16747901000119104,Proliferative retinopathy of left eye due to diabetes mellitus type 2 +16748141000119100,Proliferative retinopathy of bilateral eyes due to diabetes mellitus type 2 +16748741000119101,Proliferative retinopathy of right eye due to diabetes mellitus type 1 +16749661000119102,Proliferative retinopathy of right eye due to diabetes mellitus type 2 +16749781000119101,Proliferative retinopathy of bilateral eyes due to diabetes mellitus type 1 +16891151000119103,Coronary artery disease due to type 2 diabetes mellitus +16891191000119108,Coronary artery disease due to type 1 diabetes mellitus +170745003,Diabetic on diet only +170746002,Diabetic on oral treatment +170747006,Diabetic on insulin +170766006,Loss of hypoglycemic warning due to diabetes mellitus +18521000119106,Microalbuminuria due to type 1 diabetes mellitus +190330002,Hyperosmolar coma due to type 1 diabetes mellitus +190331003,Hyperosmolar coma due to type 2 diabetes mellitus +190368000,Type I diabetes mellitus with ulcer +190372001,Type I diabetes mellitus maturity onset +190388001,Multiple complications due to type 2 diabetes mellitus +190389009,Type II diabetes mellitus with ulcer +190406000,Ketoacidosis due to malnutrition related diabetes mellitus +190407009,Malnutrition-related diabetes mellitus with renal complications +190410002,Malnutrition-related diabetes mellitus with peripheral circulatory complications +190411003,Multiple complications due to malnutrition related diabetes +190412005,Malnutrition-related diabetes mellitus without complications +190416008,Steroid-induced diabetes mellitus without complication +190447002,Steroid-induced diabetes +193141005,Mononeuritis multiplex due to diabetes mellitus +193183000,Acute painful neuropathy due to diabetes mellitus +193184006,Chronic painful neuropathy due to diabetes mellitus +193185007,Asymptomatic neuropathy due to diabetes mellitus +193349004,Preproliferative retinopathy due to diabetes mellitus +193350004,Advanced maculopathy due to diabetes mellitus +193489006,Iritis due to diabetes mellitus +19378003,Pseudotabes due to diabetes mellitus +197605007,Nephrotic syndrome due to diabetes mellitus +198121000000103,Hypoglycaemic warning impaired +198131000000101,Hypoglycaemic warning good +199229001,Pre-existing type 1 diabetes mellitus +199230006,Pre-existing type 2 diabetes mellitus +199231005,Pre-existing malnutrition-related diabetes mellitus +200687002,Cellulitis of foot due to diabetes mellitus +201000119106,Disorder due to well controlled type 2 diabetes mellitus +201250006,Ischemic ulcer of foot due to diabetes mellitus +201251005,Neuropathic ulcer of foot due to diabetes mellitus +201252003,Mixed diabetic ulcer - foot +201723002,Cheiroarthropathy due to diabetes mellitus +201724008,Neuropathic arthropathy due to diabetes mellitus +23045005,Insulin dependent diabetes mellitus type IA +230572002,Neuropathy due to diabetes mellitus +230574001,Acute painful polyneuropathy due to diabetes mellitus +230575000,Chronic painful polyneuropathy due to diabetes mellitus +230576004,Asymmetric polyneuropathy due to diabetes mellitus +230577008,Mononeuropathy due to diabetes mellitus +230579006,Thoracic radiculopathy due to diabetes mellitus +232020009,Disorder of macula due to diabetes mellitus +232021008,Proliferative retinopathy with optic disc neovascularization due to diabetes mellitus +232022001,Proliferative retinopathy with neovascularization elsewhere than the optic disc due to diabetes mellitus +232023006,Traction detachment of retina due to diabetes mellitus +236499007,Microalbuminuric nephropathy due to diabetes mellitus +236500003,Proteinuric nephropathy due to diabetes mellitus +237599002,Insulin treated type 2 diabetes mellitus +237600004,Malnutrition-related diabetes mellitus - fibrocalculous +237601000,Secondary endocrine diabetes mellitus +237604008,"Maturity onset diabetes of the young, type 2" +237610008,"Acrorenal field defect, ectodermal dysplasia, and lipoatrophic diabetes" +237611007,"Muscular atrophy, ataxia, retinitis pigmentosa, and diabetes mellitus" +237612000,"Photomyoclonus, diabetes mellitus, deafness, nephropathy and cerebral dysfunction" +237614004,"Bird-headed dwarfism with progressive ataxia, insulin-resistant diabetes, goiter, and primary gonadal insufficiency" +237617006,"Megaloblastic anemia, thiamine-responsive, with diabetes mellitus and sensorineural deafness" +237618001,Insulin-dependent diabetes mellitus secretory diarrhea syndrome +237619009,Diabetes-deafness syndrome maternally transmitted +237620003,Abnormal metabolic state due to diabetes mellitus +237621004,Severe hyperglycemia due to diabetes mellitus +237627000,Pregnancy and type 2 diabetes mellitus +237632004,Hypoglycemic event due to diabetes +237633009,Hypoglycemia due to diabetes mellitus +237635002,Nocturnal hypoglycemia due to diabetes mellitus +237652003,Insulin resistance - type B +238981002,Disorder of soft tissue due to diabetes mellitus +238982009,Dermopathy due to diabetes mellitus +238983004,Thick skin syndrome due to diabetes mellitus +238984005,Rubeosis faciei due to diabetes mellitus +24203005,"Extreme insulin resistance with acanthosis nigricans, hirsutism AND abnormal insulin receptors" +243421000119104,Proteinuria due to type 1 diabetes mellitus +24471000000103,Type 2 diabetic on insulin +24481000000101,Type 2 diabetic on diet only +25093002,Disorder of eye due to diabetes mellitus +254066006,Wolcott-Rallison dysplasia +25412000,Microaneurysm of retinal artery due to diabetes mellitus +26298008,Ketoacidotic coma due to diabetes mellitus +267604001,Myasthenic syndrome due to diabetic mellitus +2751001,Fibrocalculous pancreatic diabetes +276560009,Diabetes mellitus in neonate small for gestational age +280137006,Diabetic foot +28032008,Insulin dependent diabetes mellitus type IB +28331000119107,Retinal edema due to type 2 diabetes mellitus +290002008,Brittle type I diabetes mellitus +309426007,Glomerulopathy due to diabetes mellitus +310387003,Intracapillary glomerulosclerosis of kidney due to diabetes mellitus +310505005,Hyperosmolar non-ketotic state due to diabetes mellitus +311366001,Kimmelstiel-Wilson syndrome +311782002,Advanced retinal disease due to diabetes mellitus +31211000119101,Peripheral angiopathy due to type 1 diabetes mellitus +312903003,Mild nonproliferative retinopathy due to diabetes mellitus +312904009,Moderate nonproliferative retinopathy due to diabetes mellitus +312905005,Severe nonproliferative retinopathy due to diabetes mellitus +312906006,Non-high-risk proliferative retinopathy due to diabetes mellitus +312907002,High risk proliferative retinopathy due to diabetes mellitus +312908007,Quiescent proliferative retinopathy due to diabetes mellitus +312909004,Proliferative retinopathy with iris neovascularization due to diabetes mellitus +312910009,Vitreous hemorrhage due to diabetes mellitus +312912001,Macular edema due to diabetes mellitus +31321000119102,Diabetes mellitus type 1 without retinopathy +313435000,Type I diabetes mellitus without complication +313436004,Type II diabetes mellitus without complication +314010006,Diffuse exudative maculopathy due to diabetes mellitus +314011005,Focal exudative maculopathy due to diabetes mellitus +314014002,Ischemic maculopathy due to diabetes mellitus +314015001,Mixed maculopathy due to diabetes mellitus +314194001,Diabetic on insulin and oral treatment +314537004,Optic papillopathy due to diabetes mellitus +314771006,Type I diabetes mellitus with hypoglycemic coma +314893005,Arthropathy due to type 1 diabetes mellitus +314902007,Peripheral angiopathy due to type 2 diabetes mellitus +314903002,Arthropathy due to type 2 diabetes mellitus +314904008,Type II diabetes mellitus with neuropathic arthropathy +33559001,Pineal hyperplasia AND diabetes mellitus syndrome +335621000000101,Maternally inherited diabetes mellitus +34041001,Achard-Thiers syndrome +35777006,Mononeuropathy multiplex due to diabetes mellitus +359611005,Neuropathy with neurologic complication due to diabetes mellitus +359642000,Diabetes mellitus type 2 in nonobese +361216007,Femoral mononeuropathy due to diabetes mellitus +367211000119103,Inflammatory dermatosis due to type 1 diabetes mellitus +367241000119104,Hyperosmolar coma due to drug induced diabetes mellitus +367261000119100,Hyperosmolarity due to drug induced diabetes mellitus +367991000119101,Hyperglycemia due to type 1 diabetes mellitus +368051000119109,Hyperglycemia due to type 2 diabetes mellitus +368141000119106,Autonomic neuropathy due to drug induced diabetes mellitus +368151000119108,Cataract due to drug induced diabetes mellitus +368171000119104,Dermatitis due to drug induced diabetes mellitus +368181000119101,Ulcer of foot due to drug induced diabetes mellitus +368201000119100,Disorder of kidney due to drug induced diabetes mellitus +368251000119101,Polyneuropathy due to drug induced diabetes mellitus +368421000119108,Chronic kidney disease stage 1 due to drug induced diabetes mellitus +368431000119106,Chronic kidney disease stage 2 due to drug induced diabetes mellitus +368441000119102,Chronic kidney disease stage 3 due to drug induced diabetes mellitus +368451000119100,Chronic kidney disease stage 4 due to drug induced diabetes mellitus +368461000119103,Chronic kidney disease stage 5 due to drug induced diabetes mellitus +368471000119109,End stage renal disease on dialysis due to drug induced diabetes mellitus +368521000119107,Disorder of nerve co-occurrent and due to type 1 diabetes mellitus +368541000119101,Cheiroarthropathy due to diabetes mellitus type 1 +368551000119104,Dyslipidemia due to type 1 diabetes mellitus +368561000119102,Hyperosmolarity due to type 1 diabetes mellitus +368581000119106,Neuropathy due to type 2 diabetes mellitus +368591000119109,Cheiroarthropathy due to diabetes mellitus type 2 +368601000119102,Hyperosmolar coma due to secondary diabetes mellitus +368711000119106,Mild nonproliferative retinopathy due to secondary diabetes mellitus +368721000119104,Non-proliferative retinopathy due to secondary diabetes mellitus +368741000119105,Moderate non-proliferative retinopathy due to secondary diabetes mellitus +371087003,Ulcer of foot due to diabetes mellitus +38046004,Diffuse glomerulosclerosis of kidney due to diabetes mellitus +38205001,Diarrhea due to diabetes mellitus +385041000000108,Diabetes mellitus with multiple complications +385051000000106,Pre-existing diabetes mellitus +39058009,Lumbosacral radiculoplexus neuropathy due to diabetes mellitus +390834004,Nonproliferative retinopathy due to diabetes mellitus +39127005,Symmetric proximal motor neuropathy due to diabetes mellitus +39181008,Radiculoplexus neuropathy due to diabetes mellitus +395204000,Hyperosmolar non-ketotic state due to type 2 diabetes mellitus +398140007,Post hypoglycemic hyperglycemia due to diabetes mellitus +399862001,High risk proliferative retinopathy without macular edema due to diabetes mellitus +399863006,Very severe nonproliferative retinopathy without macular edema due to diabetes mellitus +399864000,Macular edema not clinically significant due to diabetes mellitus +399865004,Very severe proliferative retinopathy due to diabetes mellitus +399866003,Venous beading of retina due to diabetes mellitus +399868002,Intraretinal microvascular anomaly due to diabetes mellitus +399869005,High risk proliferative retinopathy not amenable to photocoagulation due to diabetes mellitus +399870006,Non-high-risk proliferative retinopathy with no macular edema due to diabetes mellitus +399871005,Visually threatening retinopathy due to diabetes mellitus +399872003,Severe nonproliferative retinopathy with clinically significant macular edema due to diabetes mellitus +399873008,Severe nonproliferative retinopathy without macular edema due to diabetes mellitus +399874002,High risk proliferative retinopathy with clinically significant macula edema due to diabetes mellitus +399875001,Non-high-risk proliferative retinopathy with clinically significant macular edema due to diabetes mellitus +399876000,Very severe nonproliferative retinopathy due to diabetes mellitus +399877009,Very severe nonproliferative retinopathy with clinically significant macular edema due to diabetes mellitus +401110002,Type 1 diabetes mellitus with persistent microalbuminuria +402864004,Wet gangrene of foot due to diabetes mellitus +408540003,Diabetes mellitus caused by non-steroid drugs +413183008,Diabetes mellitus caused by non-steroid drugs without complication +419100001,Infection of foot due to diabetes mellitus +41911000119107,Glaucoma due to type 2 diabetes mellitus +420270002,Ketoacidosis due to type 1 diabetes mellitus +420279001,Renal disorder due to type 2 diabetes mellitus +420422005,Ketoacidosis due to diabetes mellitus +420436000,Mononeuropathy due to type 2 diabetes mellitus +420486006,Exudative maculopathy due to type 1 diabetes mellitus +420514000,Persistent proteinuria due to type 1 diabetes mellitus +420662003,Coma due to diabetes mellitus +420683009,Disorder of nervous system due to malnutrition related diabetes mellitus +420715001,Persistent microalbuminuria due to type 2 diabetes mellitus +420756003,Cataract of eye due to diabetes mellitus type 2 +420789003,Retinopathy due to type 1 diabetes mellitus +420825003,Gangrene due to type 1 diabetes mellitus +420868002,Disorder due to type 1 diabetes mellitus +420918009,Mononeuropathy due to type 1 diabetes mellitus +420996007,Coma due to malnutrition-related diabetes mellitus +421075007,Ketoacidotic coma due to type 1 diabetes mellitus +421256007,Disorder of eye due to malnutrition related diabetes mellitus +421305000,Persistent microalbuminuria due to type 1 diabetes mellitus +421326000,Disorder of nervous system due to type 2 diabetes mellitus +421365002,Peripheral circulatory disorder due to type 1 diabetes mellitus +421437000,Hypoglycemic coma due to type 1 diabetes mellitus +421468001,Disorder of nervous system due to type 1 diabetes mellitus +421631007,Gangrene due to type 2 diabetes mellitus +421725003,Hypoglycemic coma due to diabetes mellitus +421750000,Ketoacidosis due to type 2 diabetes mellitus +421779007,Exudative maculopathy due to type 2 diabetes mellitus +421847006,Ketoacidotic coma due to type 2 diabetes mellitus +421893009,Renal disorder due to type 1 diabetes mellitus +421895002,Peripheral vascular disorder due to diabetes mellitus +421920002,Cataract of eye due to diabetes mellitus type 1 +421966007,Non-ketotic non-hyperosmolar coma due to diabetes mellitus +421986006,Persistent proteinuria due to type 2 diabetes mellitus +422014003,Disorder due to type 2 diabetes mellitus +422034002,Retinopathy due to type 2 diabetes mellitus +422088007,Disorder of nervous system due to diabetes mellitus +422099009,Disorder of eye due to type 2 diabetes mellitus +422126006,Hyperosmolar coma due to diabetes mellitus +422166005,Peripheral circulatory disorder due to type 2 diabetes mellitus +422183001,Skin ulcer due to diabetes mellitus +422228004,Multiple complications due to type 1 diabetes mellitus +422275004,Gangrene due to diabetes mellitus +424736006,Peripheral neuropathy due to diabetes mellitus +425455002,Glomerulonephritis due to diabetes mellitus +426705001,Diabetes mellitus co-occurrent and due to cystic fibrosis +426875007,Latent autoimmune diabetes mellitus in adult +426907004,Small vessel disease due to type 1 diabetes mellitus +427027005,Lumbosacral radiculoplexus neuropathy due to type 2 diabetes mellitus +427089005,Diabetes mellitus due to cystic fibrosis +427134009,Small vessel disease due to type 2 diabetes mellitus +427571000,Lumbosacral radiculoplexus neuropathy due to type 1 diabetes mellitus +427943001,Ophthalmoplegia due to diabetes mellitus +428007007,Erectile dysfunction due to type 2 diabetes mellitus +428896009,Hyperosmolality due to uncontrolled type 1 diabetes mellitus +42954008,Diabetes mellitus associated with receptor abnormality +43959009,Cataract of eye due to diabetes mellitus +44054006,Diabetes mellitus type 2 +441656006,Hyperglycemic crisis due to diabetes mellitus +445170001,Macroalbuminuric nephropathy due to diabetes mellitus +445260006,Posttransplant diabetes mellitus +445353002,Brittle type II diabetes mellitus +46635009,Diabetes mellitus type 1 +4783006,Maternal diabetes mellitus with hypoglycemia affecting fetus OR newborn +4855003,Retinopathy due to diabetes mellitus +48951005,Bullous disease due to diabetes mellitus +49455004,Polyneuropathy due to diabetes mellitus +49817004,Neonatal diabetes mellitus +50620007,Autonomic neuropathy due to diabetes mellitus +51002006,Diabetes mellitus associated with pancreatic disease +530558861000132104,Atypical diabetes mellitus +5368009,Drug-induced diabetes mellitus +57886004,Protein-deficient diabetes mellitus +59079001,Diabetes mellitus associated with hormonal etiology +59276001,Proliferative retinopathy due to diabetes mellitus +5969009,Diabetes mellitus associated with genetic syndrome +60951000119105,Blindness due to type 2 diabetes mellitus +609561005,Maturity-onset diabetes of the young +609562003,"Maturity onset diabetes of the young, type 1" +609563008,Pre-existing diabetes mellitus in pregnancy +609564002,Pre-existing type 1 diabetes mellitus in pregnancy +609565001,Permanent neonatal diabetes mellitus +609566000,Pregnancy and type 1 diabetes mellitus +609567009,Pre-existing type 2 diabetes mellitus in pregnancy +609568004,Diabetes mellitus due to genetic defect in beta cell function +609569007,Diabetes mellitus due to genetic defect in insulin action +609570008,"Maturity-onset diabetes of the young, type 3" +609571007,"Maturity-onset diabetes of the young, type 4" +609572000,"Maturity-onset diabetes of the young, type 5" +609573005,"Maturity-onset diabetes of the young, type 6" +609574004,"Maturity-onset diabetes of the young, type 7" +609575003,"Maturity-onset diabetes of the young, type 8" +609576002,"Maturity-onset diabetes of the young, type 9" +609577006,"Maturity-onset diabetes of the young, type 10" +609578001,"Maturity-onset diabetes of the young, type 11" +60961000119107,Nonproliferative diabetic retinopathy due to type 1 diabetes mellitus +60971000119101,Proliferative retinopathy due to type 1 diabetes mellitus +60991000119100,Blindness due to type 1 diabetes mellitus +62260007,Pretibial pigmental patches due to diabetes mellitus +63510008,Nodular glomerulosclerosis of kidney due to diabetes mellitus +691000119103,Erectile dysfunction due to type 1 diabetes mellitus +701000119103,Mixed hyperlipidemia due to type 2 diabetes mellitus +704241002,Fetal hypertrophic cardiomyopathy due to maternal diabetes mellitus +706894000,Retinopathy due to unstable diabetes mellitus type 1 +70694009,Diabetes mellitus AND insipidus with optic atrophy AND deafness +707221002,Glomerulosclerosis of kidney due to diabetes mellitus +709147009,Gingivitis co-occurrent with diabetes mellitus +711000119100,Chronic kidney disease stage 5 due to type 2 diabetes mellitus +712882000,Autonomic neuropathy due to type 1 diabetes mellitus +712883005,Autonomic neuropathy due to type 2 diabetes mellitus +713457002,Neovascular glaucoma due to diabetes mellitus +713702000,Gastroparesis due to type 1 diabetes mellitus +713703005,Gastroparesis due to type 2 diabetes mellitus +713704004,Gastroparesis due to diabetes mellitus +713705003,Polyneuropathy due to type 1 diabetes mellitus +713706002,Polyneuropathy due to type 2 diabetes mellitus +71421000119105,Hypertension in chronic kidney disease due to type 2 diabetes mellitus +71441000119104,Nephrotic syndrome due to type 2 diabetes mellitus +716020005,Diabetic embryopathy +716362006,Gingival disease co-occurrent with diabetes mellitus +71701000119105,Hypertension in chronic kidney disease due to type 1 diabetes mellitus +71721000119101,Nephrotic syndrome due to type 1 diabetes mellitus +71771000119100,Neuropathic arthropathy due to type 1 diabetes mellitus +71791000119104,Peripheral neuropathy due to type 1 diabetes mellitus +719216001,Hypoglycemic coma due to type 2 diabetes mellitus +719566006,Diabetic on non-insulin injectable medication +72021000119109,Dermopathy due to type 1 diabetes mellitus +72031000119107,Severe malnutrition due to type 1 diabetes mellitus +72041000119103,Osteomyelitis due to type 1 diabetes mellitus +72051000119101,Severe malnutrition due to type 2 diabetes mellitus +720519003,"Atherosclerosis, deafness, diabetes, epilepsy, nephropathy syndrome" +72061000119104,Osteomyelitis due to type 2 diabetes mellitus +721000119107,Chronic kidney disease stage 4 due to type 2 diabetes mellitus +721088003,"Developmental delay, epilepsy, neonatal diabetes syndrome" +721283000,Acidosis due to type 1 diabetes mellitus +721284006,Acidosis due to type 2 diabetes mellitus +72141000119104,Chronic ulcer of skin due to type 1 diabetes mellitus +722206009,"Pancreatic hypoplasia, diabetes mellitus, congenital heart disease syndrome" +722454003,"Intellectual disability, craniofacial dysmorphism, hypogonadism, diabetes mellitus syndrome" +723074006,Renal papillary necrosis due to diabetes mellitus +724067006,Permanent neonatal diabetes mellitus with cerebellar agenesis syndrome +724136006,Mastopathy due to diabetes mellitus +724876003,Lesion of skin due to diabetes mellitus +731000119105,Chronic kidney disease stage 3 due to type 2 diabetes mellitus +73211009,Diabetes mellitus +733072002,"Alaninuria, microcephaly, dwarfism, enamel hypoplasia, diabetes mellitus syndrome" +734022008,Wolfram-like syndrome +735200002,Absence of lower limb due to diabetes mellitus +735537007,Hyperosmolar hyperglycemic coma due to diabetes mellitus without ketoacidosis +735538002,Lactic acidosis due to diabetes mellitus +735539005,Metabolic acidosis due to diabetes mellitus +737212004,Diabetes mellitus caused by chemical +739681000,Disorder of eye due to type 1 diabetes mellitus +741000119101,Chronic kidney disease stage 2 due to type 2 diabetes mellitus +74627003,Complication due to diabetes mellitus +751000119104,Chronic kidney disease stage 1 due to type 2 diabetes mellitus +75524006,Malnutrition related diabetes mellitus +75682002,Diabetes mellitus caused by insulin receptor antibodies +761000119102,Dyslipidemia due to type 2 diabetes mellitus +762489000,Acute complication due to diabetes mellitus +768792007,Cataract of right eye due to diabetes mellitus +768793002,Cataract of left eye due to diabetes mellitus +768794008,Cataract of bilateral eyes due to diabetes mellitus +768797001,Iritis of right eye due to diabetes mellitus +768798006,Iritis of left eye due to diabetes mellitus +768799003,Iritis of bilateral eyes due to diabetes mellitus +769181007,Preproliferative retinopathy of right eye due to diabetes mellitus +769182000,Preproliferative retinopathy of left eye due to diabetes mellitus +769183005,Mild nonproliferative retinopathy of right eye due to diabetes mellitus +769184004,Mild nonproliferative retinopathy of left eye due to diabetes mellitus +769185003,Moderate nonproliferative retinopathy of right eye due to diabetes mellitus +769186002,Moderate nonproliferative retinopathy of left eye due to diabetes mellitus +769187006,Severe nonproliferative retinopathy of right eye due to diabetes mellitus +769188001,Severe nonproliferative retinopathy of left eye due to diabetes mellitus +769190000,Very severe nonproliferative retinopathy of right eye due to diabetes mellitus +769191001,Very severe nonproliferative retinopathy of left eye due to diabetes mellitus +769217008,Macular edema of right eye due to diabetes mellitus +769218003,Macular edema of left eye due to diabetes mellitus +769219006,Macular edema due to type 1 diabetes mellitus +769220000,Macular edema due to type 2 diabetes mellitus +769221001,Clinically significant macular edema of right eye due to diabetes mellitus +769222008,Clinically significant macular edema of left eye due to diabetes mellitus +769244003,Disorder of right macula due to diabetes mellitus +769245002,Disorder of left macula due to diabetes mellitus +770094004,Cervical radiculoplexus neuropathy due to diabetes mellitus +770095003,Cranial nerve palsy due to diabetes mellitus +770096002,Erectile dysfunction due to diabetes mellitus +770097006,Clinically significant macular edema due to diabetes mellitus +770098001,Cranial nerve palsy due to type 1 diabetes mellitus +770323005,Retinal edema due to diabetes mellitus +770324004,Ischemia of retina due to diabetes mellitus +770361008,Vitreous hemorrhage of right eye due to diabetes mellitus +770362001,Vitreous hemorrhage of left eye due to diabetes mellitus +770581008,Microaneurysm of right retinal artery due to diabetes mellitus +770582001,Microaneurysm of left retinal artery due to diabetes mellitus +770599000,Venous beading of right retina due to diabetes mellitus +770600002,Venous beading of left retina due to diabetes mellitus +770765001,Proliferative retinopathy of right eye due to diabetes mellitus +770766000,Proliferative retinopathy of left eye due to diabetes mellitus +771000119108,Chronic kidney disease due to type 2 diabetes mellitus +773001000000103,Symptomatic diabetic peripheral neuropathy +775841000000109,Diabetic retinopathy detected by national screening programme +781000119106,Neuropathic arthropathy due to type 2 diabetes mellitus +782755007,"Primary microcephaly, mild intellectual disability, young-onset diabetes syndrome" +782825008,"Primary microcephaly, epilepsy, permanent neonatal diabetes syndrome" +783722008,Myopathy and diabetes mellitus +788878000,Cardiomyopathy due to diabetes mellitus +789542009,Neuropathy due to type 1 diabetes mellitus +789562001,Ulcer of heel due to diabetes mellitus +789567007,Ulcer of heel due to type 2 diabetes mellitus +789568002,Ulcer of midfoot due to diabetes mellitus +789569005,Neuropathic ulcer of heel due to type 2 diabetes mellitus +789570006,Neuropathic ulcer of midfoot due to type 2 diabetes mellitus +789571005,Ulcer of heel due to type 1 diabetes mellitus +789572003,Ulcer of midfoot due to type 1 diabetes mellitus +789585000,Sensory polyneuropathy due to diabetes mellitus +791000119109,Angina due to type 2 diabetes mellitus +792926007,Armanni-Ebstein kidney due to diabetes mellitus +79554005,Asymmetric proximal motor neuropathy due to diabetes mellitus +80660001,Mauriac's syndrome +81531005,Diabetes mellitus type 2 in obese +816067005,"Diabetes, hypogonadism, deafness, intellectual disability syndrome" +816177009,Nonproliferative retinopathy of left eye due to diabetes mellitus +816178004,Nonproliferative retinopathy of right eye due to diabetes mellitus +816961009,Stable treated proliferative retinopathy of right eye due to diabetes mellitus +816962002,Stable treated proliferative retinopathy of left eye due to diabetes mellitus +81830002,Mononeuropathy simplex due to diabetes mellitus +822995009,Hyperglycemia due to diabetes mellitus +82541000119100,Traction detachment of retina due to type 2 diabetes mellitus +82551000119103,Rubeosis iridis due to type 2 diabetes mellitus +82571000119107,Traction detachment of retina due to type 1 diabetes mellitus +82581000119105,Rubeosis iridis due to type 1 diabetes mellitus +82980005,Anemia due to diabetes mellitus +84361000119102,Insulin reactive hypoglycemia due to type 2 diabetes mellitus +84371000119108,Hypoglycemia due to type 1 diabetes mellitus +860721006,Disorder of macula of bilateral eyes due to diabetes mellitus +860798008,Glaucoma due to diabetes mellitus +860883001,Generalized autonomic neuropathy due to diabetes mellitus +860977000,Ulcer of right foot due to diabetes mellitus +860978005,Ulcer of left foot due to diabetes mellitus +860979002,Chronic ulcer of right foot due to diabetes mellitus +860980004,Chronic ulcer of left foot due to diabetes mellitus +870420005,Severe nonproliferative retinopathy with venous beading of retina due to diabetes mellitus +870421009,Cystoid macular edema due to diabetes mellitus +870529009,Persistent macular edema due to diabetes mellitus +871778008,Centrally involved macular edema due to diabetes mellitus +871781003,Non centrally involved macular edema due to diabetes mellitus +87441000119104,Ulcer of ankle due to type 2 diabetes mellitus +87461000119100,Ulcer of forefoot due to type 2 diabetes mellitus +87471000119106,Ulcer of ankle due to type 1 diabetes mellitus +87491000119107,Ulcer of forefoot due to type 1 diabetes mellitus +87921000119104,Cranial nerve palsy due to type 2 diabetes mellitus +8801005,Secondary diabetes mellitus +890171006,Ketosis-prone diabetes mellitus +894741000000107,Hypoglycaemic warning absent +90721000119101,Chronic kidney disease stage 1 due to type 1 diabetes mellitus +90731000119103,Chronic kidney disease stage 2 due to type 1 diabetes mellitus +90741000119107,Chronic kidney disease stage 3 due to type 1 diabetes mellitus +90751000119109,Chronic kidney disease stage 4 due to type 1 diabetes mellitus +90761000119106,Chronic kidney disease stage 5 due to type 1 diabetes mellitus +90771000119100,End stage renal disease on dialysis due to type 1 diabetes mellitus +90781000119102,Microalbuminuria due to type 2 diabetes mellitus +90791000119104,End stage renal disease on dialysis due to type 2 diabetes mellitus +91352004,Diabetes mellitus due to structurally abnormal insulin +96441000119101,Chronic kidney disease due to type 1 diabetes mellitus +97331000119101,Macular edema and retinopathy due to type 2 diabetes mellitus +97341000119105,Proliferative retinopathy with retinal edema due to type 2 diabetes mellitus +97621000119107,Stasis ulcer due to type 2 diabetes mellitus +976341000000101,Diabetic on oral treatment and glucagon-like peptide 1 receptor agonist +976361000000100,Diabetic on insulin and glucagon-like peptide 1 receptor agonist +9859006,Acanthosis nigricans due to type 2 diabetes mellitus diff --git a/tests/acceptance/external_studies/waiting-list/codelists/primis-covid19-vacc-uptake-resp_cov.csv b/tests/acceptance/external_studies/waiting-list/codelists/primis-covid19-vacc-uptake-resp_cov.csv new file mode 100644 index 000000000..b99de68b7 --- /dev/null +++ b/tests/acceptance/external_studies/waiting-list/codelists/primis-covid19-vacc-uptake-resp_cov.csv @@ -0,0 +1,1280 @@ +code,term +10041001,Tracheal stenosis following tracheostomy +1010333003,Emphysema of left lung +1010334009,Emphysema of right lung +1010603001,Primary mucoepidermoid carcinoma of nasopharynx +1010607000,Primary lymphoepithelial carcinoma of nasopharynx +1010623000,Disorder of lung due to immunoglobulin A vasculitis +1010624006,Primary salivary gland type neoplasm of nasopharynx +1010631005,Primary malignant melanoma of overlapping sites of accessory sinuses +1010633008,Primary papillary adenocarcinoma of nasopharynx +1010656004,Adenoid squamous cell carcinoma of nasopharynx +1010657008,Secondary hypoplasia of bilateral lungs +1010669000,Primary squamous cell carcinoma of superior wall of nasopharynx +1010670004,Chronic endogenous lipoid pneumonia +1010674008,Basaloid squamous cell carcinoma of nasopharynx +1010675009,Squamous cell carcinoma of posterior wall of nasopharynx +1010677001,Primary squamous cell carcinomas of anterior wall of nasopharynx +1010679003,Primary squamous cell carcinoma of lateral wall of nasopharynx +1010681001,Primary squamous cell carcinoma of overlapping sites of nasopharynx +1017196003,Interstitial pulmonary fibrosis due to inhalation of substance +1017197007,Interstitial pulmonary fibrosis due to inhalation of drug +102361000119104,Chronic pneumonia +103781000119103,Allergic bronchopulmonary mycosis +103851000119100,Restrictive lung disease due to amyotrophic lateral sclerosis +103871000119109,Restrictive lung disease due to Parkinson disease +10501004,Pulmonary alveolar proteinosis +105041000119109,Metastatic squamous cell carcinoma to lung +105051000119106,Metastatic undifferentiated large cell carcinoma to lung +106001000119101,Chronic obstructive lung disease co-occurrent with acute bronchitis +10625871000119105,Pneumoconiosis caused by organic dust +10672271000119100,Acute-on-chronic hypoxemic respiratory failure +10692761000119107,Asthma-chronic obstructive pulmonary disease overlap syndrome +10713006,Diffuse interstitial rheumatoid disease of lung +10785007,Vinyard sprayers' lung +1078881000119102,Primary adenocarcinoma of lower lobe of left lung +1078891000119104,Primary adenocarcinoma of left main bronchus +1078901000119100,Primary adenocarcinoma of upper lobe of left lung +1078931000119107,Primary adenocarcinoma of lower lobe of right lung +1078941000119103,Primary adenocarcinoma of right main bronchus +1078951000119101,Primary adenocarcinoma of middle lobe of right lung +1078961000119104,Primary adenocarcinoma of upper lobe of right lung +1080451000119101,Primary large cell carcinoma of lower lobe of left lung +1080471000119105,Primary large cell carcinoma of upper lobe of left lung +1080501000119104,Primary large cell carcinoma of lower lobe of right lung +1080531000119106,Primary large cell carcinoma of upper lobe of right lung +1081841000119106,Primary small cell carcinoma of lower lobe of left lung +1081851000119108,Primary small cell carcinoma of left main bronchus +1081861000119105,Primary small cell carcinoma of upper lobe of left lung +1081891000119103,Primary small cell carcinoma of lower lobe of right lung +1081901000119104,Primary small cell carcinoma of right main bronchus +1081911000119101,Primary small cell carcinoma of middle lobe of right lung +1081921000119108,Primary small cell carcinoma of upper lobe of right lung +1082111000119109,Primary squamous cell carcinoma of lower lobe of left lung +1082121000119102,Primary squamous cell carcinoma of left main bronchus +1082141000119108,Primary squamous cell carcinoma of upper lobe of left lung +1082231000119109,Primary squamous cell carcinoma of lower lobe of right lung +1082241000119100,Primary squamous cell carcinoma of right main bronchus +1082251000119103,Primary squamous cell carcinoma of middle lobe of right lung +1082271000119107,Primary squamous cell carcinoma of upper lobe of right lung +1090231000000103,Malignant neoplasm of respiratory tract +1090881000000100,Malignant neoplasm of bronchus or lung +109366009,Overlapping malignant neoplasm of accessory sinuses +109367000,Overlapping malignant neoplasm of nasopharynx +109368005,Overlapping malignant neoplasm of hypopharynx +109369002,Overlapping malignant neoplasm of larynx +109370001,Primary malignant neoplasm of laryngeal cartilage +109371002,Overlapping malignant neoplasm of bronchus and lung +109374005,Overlapping malignant neoplasm of mediastinum and pleura +109384006,"Overlapping malignant neoplasm of heart, mediastinum and pleura" +109390005,Kaposi's sarcoma of lung +109832008,Overlapping malignant neoplasm of oropharynx +110013004,Overlapping malignant neoplasm of tonsil +111292008,Necrotizing sarcoid granulomatosis +111901001,Bronchocentric granulomatosis +11296007,Stenosis of trachea +1141621000,Malignant epithelial neoplasm of pyriform fossa +1141627001,Non-small cell lung carcinoma with neuregulin 1 gene fusion +115666004,Animal handlers' lung +1162677006,Rheumatoid arthritis with rheumatoid lung disease +1163147006,Chronic fibrosis of lung caused by Aspergillus +1163150009,Chronic cavitation of lung caused by Aspergillus +1172606002,Idiopathic pleuroparenchymal fibroelastosis +1177007001,Fibrosis of lung due to pulmonary paracoccidioidomycosis +1177120001,Bronchiolitis obliterans syndrome due to and following allogeneic stem cell transplant +1179762006,Malignant neoplasm of middle lobe of right lung +11944003,Feather-pickers' disease +1196841007,Primary desmoplastic mesothelioma of pleura +1196856003,Primary biphasic malignant mesothelioma of pleura +1196883002,Primary epithelioid malignant mesothelioma of pleura +1197259008,Primary sarcomatoid malignant mesothelioma of pleura +1197276007,Primary squamous cell carcinoma of pharyngeal lymphoid ring +1197296004,Primary malignant germ cell neoplasm of pleura +1197476009,"Infantile-onset pulmonary alveolar proteinosis, hypogammaglobulinemia" +12070002,Congenital stenosis of larynx +12088005,Budgerigar-fanciers' disease +12181002,Tropical pulmonary alveolitis +12200321000119107,Failure of lung transplant +1222677008,Interstitial lung disease due to surfactant protein C deficiency +1222678003,Interstitial lung disease due to ATP-binding cassette subfamily A member 3 deficiency +1222679006,"Autoimmune interstitial lung disease, arthritis syndrome" +12240951000119107,Squamous cell carcinoma of left lung +12240991000119102,Squamous cell carcinoma of right lung +1228876007,Severe early-onset pulmonary alveolar proteinosis due to methionyl-transfer ribonucleic acid synthetase 1 deficiency +12295008,Bronchiectasis +1229871006,Primary squamous cell carcinoma of nasal cavity and paranasal sinus +12310001,Childhood bronchiectasis +1236947005,Metastatic carcinoma to dorsal surface of base of tongue +1236960004,Metastatic carcinoma to lingual tonsil +1237048006,Metastatic squamous cell carcinoma to bronchus +123713005,Chronic atelectasis +1237466009,Metastatic squamous cell carcinoma to bronchus of left upper lobe +1237467000,Metastatic squamous cell carcinoma to bronchus of right upper lobe +1237469002,Metastatic squamous cell carcinoma to bronchus of left lower lobe +1237471002,Metastatic squamous cell carcinoma to bronchus of right lower lobe +1237472009,Metastatic squamous cell carcinoma to bronchus of right middle lobe +1237487004,Metastatic carcinoma to base of tongue +1237489001,Metastatic carcinoma to tonsil +1237495000,Metastatic carcinoma to glottis +1237496004,Metastatic carcinoma to subglottis +1237497008,Metastatic carcinoma to supraglottis +1237516000,Metastatic carcinoma to lower lobe of lung +1237518004,Metastatic carcinoma to main bronchus +1237523004,Metastatic carcinoma to vocal cord +1251491008,Metastatic carcinoma to larynx +1254724005,Metastatic adenoid cystic carcinoma to oropharynx +1254728008,Metastatic adenoid cystic carcinoma to trachea +1254732002,Metastatic large cell carcinoma to lung +1254733007,Metastatic large cell carcinoma to right lung +1254734001,Metastatic large cell carcinoma to left lung +1254735000,Metastatic large cell carcinoma to bilateral lungs +1254740008,Metastatic giant cell carcinoma to lung +1254745003,Metastatic giant cell carcinoma to left lung +1254746002,Metastatic giant cell carcinoma to right lung +1254747006,Metastatic giant cell carcinoma to bilateral lungs +1254783002,Verrucous carcinoma of trachea +1254785009,Squamous cell adenoid carcinoma of trachea +1254786005,Spindle cell carcinoma of trachea +1254787001,Papillary squamous cell carcinoma of trachea +1254788006,Lymphoepithelial carcinoma of trachea +1254789003,Clear cell squamous cell carcinoma of trachea +1254790007,Basaloid squamous cell carcinoma of trachea +1254800007,Squamous cell carcinoma of lateral wall of oropharynx +1254801006,Basaloid squamous cell carcinoma of oropharynx +1254803009,Papillary squamous cell carcinoma of oropharynx +1254805002,Squamous cell carcinoma of posterior wall of oropharynx +1254806001,Spindle cell squamous cell carcinoma of oropharynx +1254852008,Squamous cell carcinoma of laryngeal cartilage +1255074005,Adenocarcinoma of frontal sinus +1255084006,Adenocarcinoma of sphenoidal sinus +1255085007,Adenocarcinoma of trachea +1255092002,Adenocarcinoma of accessory sinus +1255096004,Adenocarcinoma of ethmoidal sinus +1255110007,Adenocarcinoma of maxillary sinus +1255112004,Adenocarcinoma of oropharynx +1255392007,Undifferentiated carcinoma of trachea +1255393002,Undifferentiated carcinoma of lung +1255395009,Spindle cell carcinoma of lung +1255629002,Signet ring cell carcinoma of lung +1255630007,Signet ring cell carcinoma of trachea +1255631006,Spindle cell squamous cell carcinoma of hypopharynx +1255632004,Spindle cell squamous cell carcinoma of larynx +1255641009,Pleomorphic carcinoma of lung +1255642002,Polymorphous low grade adenocarcinoma of oropharynx +1255643007,Acinar cell carcinoma of trachea +1255644001,Acinar cell carcinoma of lung +1255645000,Acinar cell carcinoma of oropharynx +1255646004,Basaloid squamous cell carcinoma of hypopharynx +1255647008,Basaloid squamous cell carcinoma of larynx +1255648003,Basaloid carcinoma of hypopharynx +1255649006,Basaloid carcinoma of oropharynx +1255650006,Basaloid carcinoma of larynx +1255651005,Basaloid squamous cell carcinoma of lung +1255652003,Carcinoma ex pleomorphic adenoma of oropharynx +1255654002,Giant cell carcinoma of larynx +1255655001,Giant cell carcinoma of trachea +1255656000,Giant cell carcinoma of hypopharynx +1255657009,Carcinoma of sphenoidal sinus +1255658004,Carcinosarcoma of lung +1255659007,Epithelial-myoepithelial carcinoma of oropharynx +1255660002,Squamous cell carcinoma of sphenoidal sinus +1255661003,Myoepithelial carcinoma of oropharynx +1255662005,Myoepithelial carcinoma of lung +1255663000,Myoepithelial carcinoma of trachea +1255725002,Non-small cell adenocarcinoma of lung +1259003,Schistosis +1259318004,Primary carcinoma of tongue base - dorsal surface +1259321002,Primary carcinoma of larynx +1259330005,Primary carcinoma of lingual tonsil +1259366006,Primary adenoid cystic carcinoma of trachea +1259367002,Primary squamous cell carcinoma of bronchus +1259368007,Primary large cell carcinoma of lung +1259369004,Primary giant cell carcinoma of lung +1259370003,Primary oat cell carcinoma of lung +1259371004,Primary squamous cell carcinoma of lung +1259409000,Primary squamous cell carcinoma of bronchus in left lower lobe +1259410005,Primary squamous cell carcinoma of bronchus in left upper lobe +1259411009,Primary squamous cell carcinoma of bronchus in right lower lobe +1259412002,Primary squamous cell carcinoma of bronchus in right middle lobe +1259413007,Primary squamous cell carcinoma of bronchus in right upper lobe +1259438002,Primary carcinoma of base of tongue +1259440007,Primary tonsil carcinoma +1259444003,Primary undifferentiated carcinoma of nasal sinus +1259445002,Primary keratinizing squamous cell carcinoma of nasopharynx +1259446001,Primary undifferentiated nonkeratinizing squamous cell carcinoma of nasopharynx +1259461000,Primary squamous cell carcinoma of right lung +1259463002,Primary squamous cell carcinoma of left lung +1259470002,Primary nonkeratinizing carcinoma of the nasopharynx +1259507000,Primary adenoid cystic carcinoma of oropharynx +1259509002,Primary undifferentiated carcinoma of nasopharynx +1259520002,Primary carcinoma of glottis +1259521003,Primary carcinoma of subglottis +1259523000,Primary carcinoma of supraglottis +1259528009,Primary carcinoma of main bronchus +1259537009,Primary carcinoma of vocal cord +1259620008,Primary papillary squamous cell carcinoma of nasopharynx +1259668002,Primary acinar cell cystadenocarcinoma of lung +1259686004,Primary non-small cell lung carcinoma with neuregulin 1 gene fusion +1259702008,Primary adenoid squamous cell carcinoma of nasopharynx +1259704009,Primary basaloid squamous cell carcinoma of nasopharynx +1259715004,Primary overlapping malignant neoplasm of nasopharynx +1259726005,Primary epithelioid hemangioendothelioma of lung +1259727001,Primary non-small cell lung cancer +1259754003,Primary squamous non-small cell lung cancer +1259757005,Primary nonsquamous nonsmall cell neoplasm of lung +1259758000,Primary reactive oxygen species 1 positive non-small cell lung cancer +1259760003,Primary non-small cell lung cancer with mutation in epidermal growth factor receptor +1259761004,Primary non-small cell lung cancer without mutation in epidermal growth factor receptor +1259768005,Primary non-small cell lung cancer negative for epidermal growth factor receptor expression +1259776007,"Primary non-small cell lung cancer, positive for epidermal growth factor receptor expression" +1259794001,Primary Pancoast tumor +1259820006,Primary reactive oxygen species 1 negative non-small cell lung cancer +1259821005,Primary anaplastic lymphoma kinase fusion oncogene positive non-small cell lung cancer +1259822003,Primary anaplastic lymphoma kinase fusion oncogene negative non-small cell lung cancer +1260018001,Adenoid cystic carcinoma of hypopharynx +1260019009,Adenoid cystic carcinoma of lung +1260021004,Adenoid squamous cell carcinoma of hypopharynx +1260024007,Adenoid squamous cell carcinoma of larynx +1260031006,Clear cell adenocarcinoma of oropharynx +1260032004,Clear cell adenocarcinoma of lung +1260033009,Clear cell adenocarcinoma of trachea +1260034003,Basal cell adenocarcinoma of oropharynx +1260035002,Carcinoma of ethmoidal sinus +1260036001,Carcinoma of frontal sinus +1260037005,Adenosquamous carcinoma of larynx +1260038000,Adenosquamous carcinoma of trachea +1260039008,Adenosquamous carcinoma of oropharynx +1260040005,Adenosquamous carcinoma of hypopharynx +1260042002,Adenosquamous carcinoma of lung +1260045000,Cystadenocarcinoma of oropharynx +1260046004,Squamous cell carcinoma of ethmoidal sinus +1260048003,Squamous cell carcinoma of frontal sinus +1260056000,Clear cell squamous cell carcinoma of lung +1260057009,Mucinous adenocarcinoma of lung +1260058004,Mucinous adenocarcinoma of oropharynx +1260059007,Mucinous bronchiolo-alveolar carcinoma of lung +1260060002,Mucinous adenocarcinoma of trachea +1260061003,Mucoepidermoid carcinoma of oropharynx +1260062005,Mucoepidermoid carcinoma of lung +1260063000,Mucoepidermoid carcinoma of hypopharynx +1260064006,Mucinous cystadenocarcinoma of trachea +1260065007,Mucinous cystadenocarcinoma of lung +1260066008,Papillary adenocarcinoma of trachea +1260067004,Papillary adenocarcinoma of oropharynx +1260068009,Papillary adenocarcinoma of lung +1260069001,Oncocytic carcinoma of oropharynx +1260070000,Non-mucinous bronchiolo-alveolar carcinoma of lung +1260071001,Papillary squamous cell carcinoma of lung +1260072008,Pseudosarcomatous carcinoma of lung +1260073003,Papillary squamous cell carcinoma of larynx +1260074009,Papillary squamous cell carcinoma of hypopharynx +1260075005,Solid carcinoma of trachea +1260076006,Small cell non-keratinizing squamous cell carcinoma of lung +1260077002,Solid carcinoma of lung +1260079004,Squamous cell carcinoma of hypopharyngeal aspect of aryepiglottic fold +1260080001,Squamous cell carcinoma of maxillary sinus +1260081002,Squamous cell carcinoma of postcricoid region +1260082009,Squamous cell carcinoma of posterior wall of hypopharynx +1260083004,Squamous cell carcinoma of piriform sinus +1260084005,Squamous cell carcinoma of vallecula +1260085006,Undifferentiated carcinoma of hypopharynx +1260087003,Fetal adenocarcinoma of lung +1260088008,Infiltrating duct carcinoma of oropharynx +1260089000,Lymphoepithelial carcinoma of hypopharynx +1260090009,Lymphoepithelial carcinoma of larynx +1260091008,Lymphoepithelial carcinoma of oropharynx +1260092001,Mixed mucinous and non-mucinous bronchiolo-alveolar carcinoma of lung +1260093006,Mixed subtype adenocarcinoma of lung +1260094000,Verrucous carcinoma of hypopharynx +1260100002,Salivary gland type carcinoma of hypopharynx +1260110006,Salivary gland type carcinoma of oropharynx +1260115001,Salivary gland type carcinoma of lung +129451001,Respiratory bronchiolitis associated interstitial lung disease +129452008,Nonspecific interstitial pneumonia +13151001,Flax-dressers' disease +13217005,Fusiform bronchiectasis +13274008,Atrophic fibrosis of lung +13394002,Suberosis +133971000119108,Chronic pulmonary embolism +135836000,End stage chronic obstructive airways disease +13645005,Chronic obstructive lung disease +145298771000119104,Malignant carcinoid tumor of left lung +146081000119104,Lung disease due to connective tissue disorder +14700006,Bauxite fibrosis of lung +152921000119101,Dependence on respiratory device +154283005,Pulmonary tuberculosis +15955901000119104,Primary small cell carcinoma of right lung +15955941000119102,Primary small cell carcinoma of left lung +15956181000119102,Metastatic adenocarcinoma to bilateral lungs +15956221000119105,Metastatic adenocarcinoma to right lung +15956261000119100,Metastatic adenocarcinoma to left lung +15956341000119105,Adenocarcinoma of left lung +15956381000119100,Adenocarcinoma of right lung +15956661000119102,Metastatic small cell carcinoma to right lung +15956701000119109,Metastatic small cell carcinoma to left lung +15956741000119106,Metastatic small cell carcinoma to bilateral lungs +15957141000119109,Metastatic squamous cell carcinoma to bilateral lungs +15957181000119104,Metastatic squamous cell carcinoma to right lung +15957221000119107,Metastatic squamous cell carcinoma to left lung +15957261000119102,Kaposi sarcoma of bilateral lungs +16003001,Giant bullous emphysema +161672008,History of being lung transplant recipient +16419651000119103,Dependence on biphasic positive airway pressure ventilation due to central sleep apnea syndrome +16527441000119105,Primary non-small cell carcinoma of lower lobe of left lung +16527481000119100,Primary non-small cell carcinoma of middle lobe of right lung +16527521000119100,Primary non-small cell carcinoma of upper lobe of left lung +16527561000119105,Primary non-small cell carcinoma of lower lobe of right lung +16527601000119105,Primary non-small cell carcinoma of right lung +16527641000119107,Primary non-small cell carcinoma of left lung +16527721000119108,Primary non-small cell carcinoma of upper lobe of right lung +1661000119106,Metastasis to lung from adenocarcinoma +16623004,Coffee-workers' lung +16846004,Obstructive emphysema +17097001,Chronic disease of respiratory system +17385007,Graphite fibrosis of lung +174802006,Allotransplant of heart and lung +1751000119100,Acute exacerbation of chronic obstructive airways disease with asthma +17996008,Pneumoconiosis caused by inorganic dust +18121000119104,Primary squamous cell carcinoma of palatine tonsil +18121009,Chronic berylliosis +18354001,Chronic induration of lung +185086009,Chronic obstructive bronchitis +186175002,Infiltrative lung tuberculosis +186177005,Tuberculosis of lung with cavitation +186193001,"Tuberculosis of lung, confirmed by sputum microscopy with or without culture" +186194007,"Tuberculosis of lung, confirmed by culture only" +186195008,"Tuberculosis of lung, confirmed histologically" +186203002,"Tuberculosis of lung, bacteriologically and histologically negative" +186204008,"Tuberculosis of lung, bacteriological and histological examination not done" +18690003,Farmers' lung +187233002,Sarcoidosis of lung with sarcoidosis of lymph nodes +187631006,Malignant neoplasm of base of tongue dorsal surface +187644001,Malignant tumor of junctional zone of tongue +187675005,Malignant tumor of tonsillar pillar +187681002,Malignant neoplasm of anterior epiglottis +187682009,"Malignant neoplasm of epiglottis, free border" +187683004,Malignant neoplasm of glossoepiglottic fold +187685006,Malignant neoplasm of junctional region of epiglottis +187688008,Malignant tumor of posterior wall of oropharynx +187692001,Malignant tumor of nasopharynx +187693006,Malignant tumor of posterior wall of nasopharynx +187694000,Malignant tumor of adenoid +187697007,Malignant tumor of pharyngeal recess +187700006,Malignant tumor of anterior wall of nasopharynx +187701005,Malignant neoplasm of floor of nasopharynx +187708004,Malignant tumor aryepiglottic fold - hypopharyngeal aspect +187709007,Malignant neoplasm of posterior pharynx +187716008,Malignant tumor of Waldeyer's ring +187828007,"Malignant neoplasm of nasal cavities, middle ear and accessory sinuses" +187830009,Malignant neoplasm of nasal conchae +187831008,Malignant tumor of nasal vestibule +187841006,Malignant tumor of glottis +187842004,Malignant tumor of supraglottis +187843009,Malignant neoplasm of arytenoid cartilage +187844003,Malignant neoplasm of cricoid cartilage +187845002,Malignant neoplasm of cuneiform cartilage +187846001,Malignant neoplasm of thyroid cartilage +187853005,Malignant neoplasm of cartilage of trachea +187854004,Malignant neoplasm of mucosa of trachea +187857006,Malignant neoplasm of carina of bronchus +187861000,Malignant neoplasm of upper lobe bronchus +187862007,Malignant neoplasm of upper lobe of lung +187864008,"Malignant neoplasm of middle lobe, bronchus or lung" +187865009,Malignant neoplasm of middle lobe bronchus +187866005,Malignant neoplasm of middle lobe of lung +187869003,Malignant neoplasm of lower lobe bronchus +187870002,Malignant neoplasm of lower lobe of lung +189262006,Carcinoma in situ of bronchus and lung +189265008,Carcinoma in situ of upper lobe bronchus and lung +189266009,Carcinoma in situ of middle lobe bronchus and lung +189267000,Carcinoma in situ of lower lobe bronchus and lung +189815007,Pulmonary blastoma +19076009,Sick building syndrome +190905008,Cystic fibrosis +190966007,Extreme obesity with alveolar hypoventilation +192658007,Giant cell interstitial pneumonitis +19274004,Grain-handlers' disease +19325002,Traction bronchiectasis +195949008,Chronic asthmatic bronchitis +195951007,Acute exacerbation of chronic obstructive airways disease +195953005,Mixed simple and mucopurulent chronic bronchitis +195957006,Chronic bullous emphysema +195958001,Segmental bullous emphysema +195959009,Zonal bullous emphysema +195984007,Recurrent bronchiectasis +195985008,Post-infective bronchiectasis +195989002,Pituitary snuff-takers' disease +196001008,Chronic obstructive pulmonary disease with acute lower respiratory infection +196017002,Pneumoconiosis associated with tuberculosis +196026004,Chronic emphysema caused by chemical fumes +196028003,Chronic pulmonary fibrosis caused by chemical fumes +196049002,Chronic pulmonary radiation disease +196051003,Drug-induced interstitial lung disorder +196053000,Chronic drug-induced interstitial lung disorders +196115007,Pulmonary congestion and hypostasis +196116008,Pulmonary hypostasis +196124003,Alveolar capillary block +196125002,Diffuse interstitial pulmonary fibrosis +196190001,Chronic pulmonary insufficiency following surgery +196191002,Postprocedural subglottic stenosis +197367007,Hepatic granulomas in berylliosis +20091000175107,Acute on chronic hypoxemic and hypercapnic respiratory failure +204550009,"Congenital stenosis of larynx, trachea and bronchus" +204551008,Congenital bronchial stenosis +204552001,Congenital subglottic stenosis +204553006,Congenital supraglottic stenosis +213152006,Heart-lung transplant failure and rejection +22607003,Asbestosis +226521000119108,Primary malignant neoplasm of nasopharynx +22668006,Subglottic stenosis +23022004,Tuberculous bronchiectasis +230494007,Alveolar sleep apnea +232440009,Acquired laryngeal stenosis +232657004,Single lung transplant +232658009,Double lung transplant +232659001,Double lung transplant as a block +232660006,Bilateral sequential single lung transplant +23315001,Sequoiosis +233615002,Chronic pulmonary coccidioidomycosis +233623000,Mononuclear interstitial pneumonia +233625007,Giant cell pneumonia +233627004,Congenital cystic bronchiectasis +233628009,Acquired bronchiectasis +233629001,Idiopathic bronchiectasis +233630006,Obstructive bronchiectasis +233631005,Toxin-induced bronchiectasis +233632003,Bronchiectasis caused by toxic aspiration +233633008,Bronchiectasis caused by toxic inhalation +233634002,Post-lung transplantation bronchiectasis +233659006,Asbestos-induced pleural plaque +233672007,Byssinosis grade 3 +233674008,Pulmonary emphysema in alpha-1 primary immunodeficiency deficiency +233675009,Toxic emphysema +233677001,Scar emphysema +233694004,Dog house disease +233695003,Dry rot lung +233696002,Lycoperdonosis +233697006,New Guinea lung +233698001,Paprika splitters' lung +233699009,Pyrethrum alveolitis +233700005,Rodent handlers' lung +233701009,Sewage workers' lung +233702002,Summer-type hypersensitivity pneumonitis +233703007,Interstitial lung disease +233713004,Seasonal cryptogenic organizing pneumonia with biochemical cholestasis +233716007,Micronodular pulmonary ossification +233717003,Diffuse pulmonary neurofibromatosis +233718008,Pulmonary tuberous sclerosis +233724002,Toxic diffuse interstitial pulmonary fibrosis +233725001,Drug-induced diffuse interstitial pulmonary fibrosis +233726000,Localized pulmonary fibrosis +233744008,Hilar lymph node sarcoidosis +233748006,Simple pneumoconiosis +233749003,Complicated pneumoconiosis +233750003,Erionite pneumoconiosis +233751004,Metal pneumoconiosis +233753001,Subacute berylliosis +233754007,Cerium pneumoconiosis +233755008,Nickel pneumoconiosis +233756009,Thorium pneumoconiosis +233757000,Zirconium pneumoconiosis +233758005,Mica pneumoconiosis +233759002,Mixed mineral dust pneumoconiosis +233760007,Acute silicosis +233761006,Subacute silicosis +233762004,Chronic silicosis +233763009,Silicotuberculosis +233764003,Wollastonite pneumoconiosis +233767005,Stage 1 pulmonary sarcoidosis +233768000,Stage 2 pulmonary sarcoidosis +233769008,Stage 3 pulmonary sarcoidosis +233770009,Stage 4 pulmonary sarcoidosis +233771008,Endobronchial sarcoidosis +233772001,Sarcoid pulmonary calcification +233774000,Humidifier fever +233786002,Acquired tracheal stenosis +233787006,Acquired subglottic stenosis +233796006,Acquired bronchial stenosis +233805005,Bronchial anastomotic stricture +233940007,Pulmonary tumor embolism +235978006,Cystic fibrosis of pancreas +236302005,Acute interstitial pneumonia +236432001,Pulmonary renal syndrome +238676008,Lofgrens syndrome +23958009,Vanishing lung +240163000,Malignant neoplasm of nasopharyngeal wall +240702004,Chronic necrotizing pulmonary aspergillosis +240742009,Chronic pulmonary African histoplasmosis +240747003,Chronic pulmonary blastomycosis +241861008,Metastatic malignant neoplasm to nasopharynx +242862004,Metastatic malignant neoplasm to nasopharyngeal wall +24369008,Pulmonary sarcoidosis +249460003,Supraglottic stenosis +25050002,"Alpha heavy chain disease, respiratory form" +253003009,Carcinoid bronchial adenoma +254423005,Carcinoma of lingual tonsil +254459004,Malignant tumor of anterior pillar of fauces +254478004,Malignant tumor of inferior turbinate +254481009,Malignant tumor of middle turbinate +254484001,Malignant tumor of posterior margin of nasal septum and choanae +254503007,Malignant tumor of inferior surface of soft palate +254509006,Malignant tumor of anterior commissure +254513004,Malignant tumor of posterior commissure +254517003,Malignant tumor of suprahyoid epiglottis +254520006,Malignant tumor of infrahyoid epiglottis +254526000,Malignant tumor of laryngeal ventricle +254619006,Adenoid cystic carcinoma of trachea +254620000,Squamous cell carcinoma of trachea +254622008,Squamous cell carcinoma of bronchus +254625005,Malignant tumor of lung parenchyma +254626006,Adenocarcinoma of lung +254628007,Carcinoma of lung parenchyma +254629004,Large cell carcinoma of lung +254631008,Giant cell carcinoma of lung +254632001,Small cell carcinoma of lung +254633006,Oat cell carcinoma of lung +254634000,Squamous cell carcinoma of lung +254635004,Epithelioid hemangioendothelioma of lung +254637007,Non-small cell lung cancer +254638002,Pancoast tumor +254639005,Carcinoma in situ of lung parenchyma +254645002,Malignant mesothelioma of pleura +255074000,Malignant tumor of nasal cavity and nasopharynx +255075004,Malignant tumor of lateral nasal wall +25897000,Malt-workers' lung +26427008,Chronic pulmonary histoplasmosis +266355005,Bullous emphysema with collapse +266356006,Atrophic (senile) emphysema +266368002,Post-inflammatory pulmonary fibrosis +266404004,Chronic chemical respiratory disease +269464000,"Malignant neoplasm of upper lobe, bronchus or lung" +271943005,Carcinoma of base of tongue +274085008,Tonsil carcinoma +275490009,Carcinoma of tongue base - dorsal surface +276537001,Chronic pulmonary insufficiency of prematurity +276635001,Acquired subglottic stenosis in newborn +276636000,Post-intubation subglottic stenosis +276975007,Carcinoma of larynx +277485007,Secondary pulmonary hypoplasia +277486008,Pulmonary hypoplasia associated with short gestation +277656005,Primary pulmonary hypoplasia +277844007,Pulmonary lymphangioleiomyomatosis +28295001,Middle lobe syndrome +285381006,Acute infective exacerbation of chronic obstructive airways disease +285598005,Metastasis to trachea of unknown primary +285603002,Metastasis to bronchus of unknown primary +285604008,Metastasis to lung of unknown primary +285605009,Metastasis to pleura of unknown primary +28791000119105,Chronic coccidioidomycotic pneumonia +2912004,Cystic-bullous disease of the lung +293241000119100,Acute exacerbation of chronic obstructive bronchitis +293991000000106,Very severe chronic obstructive pulmonary disease +29422001,Coal workers' pneumoconiosis +30042003,Confluent fibrosis of lung +30188007,Alpha-1-antitrypsin deficiency +302913000,Diffuse pulmonary calcinosis +303012000,Malignant tumor of posterior wall of hypopharynx +312603000,Lung transplant rejection +313296004,Mild chronic obstructive pulmonary disease +313297008,Moderate chronic obstructive pulmonary disease +313299006,Severe chronic obstructive pulmonary disease +313353007,Squamous cell carcinoma of bronchus in left lower lobe +313354001,Squamous cell carcinoma of bronchus in left upper lobe +313355000,Squamous cell carcinoma of bronchus in right lower lobe +313356004,Squamous cell carcinoma of bronchus in right middle lobe +313357008,Squamous cell carcinoma of bronchus in right upper lobe +314954002,Local recurrence of malignant tumor of lung +317931000119101,Pulmonary disease due to allergic granulomatosis angiitis +31898008,Paraseptal emphysema +32139003,Mixed dust pneumoconiosis +32477003,Heart-lung transplant with recipient cardiectomy-pneumonectomy +328641000119109,Genetic disorder of surfactant dysfunction +328661000119108,Interstitial lung disease of childhood +33325001,Compensatory emphysema +33548005,Anthracosilicosis +34004002,Siderosilicosis +35037009,Primary atypical interstitial pneumonia +350586651000119105,Chronic respiratory failure due to neuromuscular disease +3514002,Peribronchial fibrosis of lung +353561000119103,Metastatic malignant neoplasm to right lung +353741000119106,Metastatic malignant neoplasm to left lung +354391000119100,Kaposi sarcoma of left lung +354461000119102,Kaposi sarcoma of right lung +354721000119103,Primary malignant neoplasm of left main bronchus +354731000119100,Primary malignant neoplasm of right main bronchus +35491000119107,Restrictive lung mechanics due to neuromuscular disease +36042005,Parietoalveolar pneumopathy +361194002,Perinatal pulmonary fibroplasia +361195001,Pulmonary fibroplasia +361196000,Idiopathic hilar fibrosis +363358000,Malignant tumor of lung +363376007,Malignant tumor of base of tongue +363377003,Malignant tumor of lingual tonsil +363392002,Malignant tumor of oropharynx +363393007,Malignant tumor of tonsil +363394001,Malignant tumor of tonsillar fossa +363395000,Malignant tumor of vallecula +363398003,Malignant tumor of lateral wall of nasopharynx +363399006,Malignant tumor of hypopharynx +363400004,Malignant tumor of postcricoid region +363401000,Malignant tumor of pyriform fossa +363422006,Malignant tumor of nasal cavity +363423001,Malignant tumor of nasal septum +363425008,Malignant tumor of maxillary sinus +363426009,Malignant tumor of ethmoid sinus +363427000,Malignant tumor of frontal sinus +363428005,Malignant tumor of sphenoid sinus +363429002,Malignant tumor of larynx +363430007,Malignant tumor of subglottis +363431006,Malignant tumor of laryngeal cartilage +363432004,Malignant tumor of trachea +363433009,Malignant tumor of pleura +363486007,Malignant tumor of vocal cord +363487003,Malignant tumor of aryepiglottic fold - laryngeal aspect +363488008,Malignant tumor of false cord +363493006,Malignant tumor of bronchus +363506007,Malignant tumor of nasal sinuses +363507003,Malignant neoplasm of pharynx +36485005,Restrictive lung disease +36599006,Chronic fibrosis of lung +36696005,Kaolinosis +371067004,Hepatopulmonary syndrome +37180002,Chronic nonspecific lung disease +371988005,Primary malignant neoplasm of false vocal cord +371994002,Primary malignant neoplasm of laryngeal aspect of aryepiglottic fold +371995001,Primary malignant neoplasm of larynx +372020000,Primary malignant neoplasm of tonsil +372030009,Primary malignant neoplasm of vocal cord +372065009,Malignant neoplasm of main bronchus +372103002,Carcinoma of glottis +372104008,Carcinoma of subglottis +372105009,Carcinoma of supraglottis +372110008,"Primary malignant neoplasm of lower lobe, bronchus or lung" +372111007,Carcinoma of lower lobe of lung +372113005,"Carcinoma of middle lobe, bronchus or lung" +372120003,Carcinoma of main bronchus +372136001,"Carcinoma of upper lobe, bronchus or lung" +372141009,Carcinoma of vocal cord +37471005,Extrinsic allergic alveolitis +37711000,Cadmium pneumonitis +37981002,Allergic bronchopulmonary aspergillosis +38729007,Wheat weevil disease +398640008,Rheumatoid arthritis with pneumoconiosis +39871006,Chronic respiratory failure +398726004,Rheumatoid lung disease +39905002,Scimitar syndrome +40122008,Pneumoconiosis +40218008,Carbon electrode makers' pneumoconiosis +402503002,Basal cell carcinoma of nasal columella +404807005,Cheese-washers' lung +40527005,Idiopathic pulmonary hemosiderosis +405570007,Pulmonary fibrosis due to and following radiotherapy +405822008,Squamous cell carcinoma of larynx +40640008,Massive fibrosis of lung co-occurrent and due to silicosis +408648004,Squamous cell carcinoma of epiglottis +408649007,Squamous cell carcinoma of pharynx +413839001,Chronic lung disease +417688002,Chronic progressive coccidioidal pneumonia +41997000,Asthmatic pulmonary alveolitis +422541001,Undifferentiated carcinoma of nasopharynx +422691006,Squamous cell carcinoma of nasopharynx +422758009,Carcinoma of nasal meatus +422886007,Olfactory neuroblastoma +422968005,"Non-small cell carcinoma of lung, TNM stage 3" +423050000,"Large cell carcinoma of lung, TNM stage 2" +423106003,Adenocarcinoma of nasopharynx +423121009,"Non-small cell carcinoma of lung, TNM stage 4" +423295000,"Squamous cell carcinoma of lung, TNM stage 1" +423318000,Adenoid cystic carcinoma of oropharynx +423464009,Squamous cell carcinoma of oropharynx +423468007,"Squamous cell carcinoma of lung, TNM stage 2" +423600008,"Large cell carcinoma of lung, TNM stage 4" +42402006,Kartagener syndrome +424078005,"Adenocarcinoma of lung, stage I" +424132000,"Non-small cell carcinoma of lung, TNM stage 1" +424454009,"Adenocarcinoma of lung, stage III" +424632001,"Adenocarcinoma of lung, stage II" +424938000,"Large cell carcinoma of lung, TNM stage 1" +424970000,"Large cell carcinoma of lung, TNM stage 3" +424993006,"Adenocarcinoma of lung, stage IV" +425048006,"Non-small cell carcinoma of lung, TNM stage 2" +425230006,"Squamous cell carcinoma of lung, TNM stage 3" +425376008,"Squamous cell carcinoma of lung, TNM stage 4" +425748003,Acute exacerbation of chronic bronchitis +425951002,Shrinking lung syndrome +426437004,Familial idiopathic pulmonary fibrosis +426705001,Diabetes mellitus co-occurrent and due to cystic fibrosis +426853005,Pneumoconiosis caused by silicate +426896000,Chronic hypercapnic respiratory failure +426964009,"Non-small cell lung cancer, positive for epidermal growth factor receptor expression" +427038005,"Non-small cell lung cancer, negative for epidermal growth factor receptor expression" +427123006,Interstitial lung disease due to collagen vascular disease +427777003,Restrictive lung disease due to muscular dystrophy +427896006,Chronic respiratory insufficiency +427908002,Restrictive lung disease due to kyphoscoliosis +427928003,Disorder related to lung transplantation +428173007,Chronic hypoxemic respiratory failure +428697002,Inactive tuberculosis of lung +429091008,Dependence on biphasic positive airway pressure ventilation +429332008,Transplantation of single lobe of lung +429487005,Dependence on continuous positive airway pressure ventilation +430476004,Diffuse panbronchiolitis +430621000,Malignant neoplasm of lower respiratory tract +430969000,Recurrent aspiration pneumonia +431223003,Acute rejection of lung transplant +431507002,Accelerated rejection of lung transplant +432066002,Lung disorder due to autoimmune disorder +432774005,Hyperacute rejection of lung transplant +432958009,Chronic rejection of lung transplant +438773007,Recurrent pulmonary embolism +440173001,Nonsquamous nonsmall cell neoplasm of lung +440527006,Primary squamous cell carcinoma of naris +44165003,Complication of transplanted lung +442025000,Acute exacerbation of chronic asthmatic bronchitis +44274007,Lymphoid interstitial pneumonia +444932008,Dependence on ventilator +445378003,Acute exacerbation of bronchiectasis +44547005,Chalicosis +446946005,Reinfection pulmonary tuberculosis +447006007,Relapse pulmonary tuberculosis +447810006,Congenital stenosis of trachea due to complete rings +447811005,Congenital stenosis of trachea due to tracheal web +448214005,Malignant epithelial neoplasm of oropharynx +448305002,Vascular ring with malrotation and dextroversion of heart and hypoplasia of right lung and left arterial duct +448319002,Diffuse non-Hodgkin's lymphoma of nasopharynx +448371005,Non-Hodgkin's lymphoma of nasopharynx +448372003,Non-Hodgkin's lymphoma of lung +448509007,Transglottic malignant neoplasm of larynx +448595006,Scimitar syndrome with additional anomalous pulmonary venous connection +448665005,Malignant epithelial neoplasm of hypopharynx +448672006,Follicular non-Hodgkin's lymphoma of lung +448867004,Diffuse non-Hodgkin's lymphoma of lung +448868009,Malignant neoplasm of lateral wall of oropharynx +448990005,Malignant epithelial neoplasm of nasal cavity +448993007,Malignant epithelial neoplasm of lung +449058008,Follicular non-Hodgkin's lymphoma of tonsil +449066004,Malignant neoplasm of upper respiratory tract +449067008,Malignant neoplasm of parietal pleura +449096009,Malignant neoplasm of respiratory system +449173006,Diffuse non-Hodgkin's lymphoma of tonsil +449219006,Follicular non-Hodgkin's lymphoma of nasopharynx +449248000,Nasopharyngeal carcinoma +449254004,Malignant epithelial neoplasm of pharynx +449292003,Non-Hodgkin's lymphoma of tonsil +449308006,Malignant neoplasm of visceral pleura +449417005,Malignant epithelial neoplasm of nasal septum +46847001,Chronic pulmonary edema +470101491000119107,Interstitial lung disease due to dabbing +47515009,Simple silicosis +47895001,Congenital emphysema +47938003,Chronic obliterative bronchiolitis +48347002,Humidifier lung +49691004,Occupational bronchitis +4981000,Panacinar emphysema +49840000,Complicated silicosis +50076003,Baritosis +50196008,Perialveolar fibrosis of lung +50581000,Goodpasture's syndrome +50589003,Silver polishers' lung disease +51068008,Adult bronchiectasis +51277007,Stannosis +51615001,Fibrosis of lung +52333004,Mushroom workers' lung +52500008,Saccular bronchiectasis +52571006,Chronic tracheobronchitis +526071000000104,Arthropathy in cystic fibrosis +54867000,Rheumatoid arthritis with fibrosing alveolitis +556179491000119104,Interstitial lung disease due to vaping +56440001,Segmental tracheal stenosis +56841008,Massive fibrosis of lung +58691003,Antimony pneumoconiosis +59128005,Congenital honeycomb lung +59773008,Simple pulmonary alveolitis +599006,Chronic pneumothorax +59940009,Hypersensitivity alveolitis in lungworm infection +60631000119109,Dependence on home ventilator +60651000119103,Dependence on continuous supplemental oxygen +60805002,Hemolytic anemia with emphysema AND cutis laxa +61471000119100,Basal cell carcinoma of naris +61937009,Simple chronic bronchitis +62371005,Pulmonary siderosis +62511003,Autotransplant of lung +63480004,Chronic bronchitis +63841001,Chronic pulmonary congestion +64631008,Fullers' earth disease +64667001,Interstitial pneumonia +66987001,Congenital lobar emphysema +67242002,Bagassosis +67569000,Bronchopulmonary dysplasia of newborn +67811000119102,"Primary small cell malignant neoplasm of lung, TNM stage 1" +67821000119109,"Primary small cell malignant neoplasm of lung, TNM stage 2" +67831000119107,"Primary small cell malignant neoplasm of lung, TNM stage 3" +67841000119103,"Primary small cell malignant neoplasm of lung, TNM stage 4" +67905004,Acute-on-chronic respiratory failure +68328006,Centriacinar emphysema +68333005,Furriers' lung +683991000119103,Extensive stage primary small cell carcinoma of lung +684633371000119107,Diffuse pulmonary meningotheliomatosis +688711000119104,Primary squamous cell carcinoma of aryepiglottic fold +689251000119101,Primary squamous cell carcinoma of posterior wall of nasopharynx +689361000119108,Primary squamous cell carcinoma of tonsillar fossa +689371000119102,Primary squamous cell carcinoma of tonsillar pillar +69339004,Bird-fanciers' lung +69454006,Chronic respiratory condition caused by fumes AND/OR vapors +697921005,Pulmonary hypertension in sarcoidosis +697923008,Pulmonary hypertension in lymphangioleiomyomatosis +697993003,Undifferentiated carcinoma of nasal sinus +698011002,Keratinizing squamous cell carcinoma of nasopharynx +698040004,Malignant melanoma of nasal cavity +698044008,Malignant melanoma of palatine arch +698048006,Undifferentiated nonkeratinizing squamous cell carcinoma of nasopharynx +698285005,Malignant melanoma of ethmoid sinus +698288007,Malignant melanoma of maxillary sinus +699014000,Recurrent pneumonia +700249006,Idiopathic interstitial pneumonia +700250006,Idiopathic pulmonary fibrosis +702432006,"Diaphragmatic hernia, abnormal face and distal limb anomalies" +703228009,Non-small cell lung cancer with mutation in epidermal growth factor receptor +703230006,Non-small cell lung cancer without mutation in epidermal growth factor receptor +704345008,Chronic interstitial pneumonia +707337006,Primary adenocarcinoma of accessory sinus +707339009,Primary adenocarcinoma of maxillary sinus +707342003,Primary adenocarcinoma of ethmoidal sinus +707343008,Primary adenocarcinoma of frontal sinus +707344002,Primary adenocarcinoma of sphenoidal sinus +707345001,Primary carcinoma of accessory sinus +707346000,Primary carcinoma of ethmoidal sinus +707347009,Primary carcinoma of maxillary sinus +707348004,Primary carcinoma of sphenoidal sinus +707349007,Primary carcinoma of frontal sinus +707350007,Malignant melanoma of accessory sinus +707353009,Primary squamous cell carcinoma of accessory sinus +707354003,Primary squamous cell carcinoma of maxillary sinus +707355002,Primary squamous cell carcinoma of sphenoidal sinus +707356001,Primary squamous cell carcinoma of frontal sinus +707357005,Primary squamous cell carcinoma of laryngeal cartilage +707358000,Primary squamous cell carcinoma of larynx +707359008,Primary squamous cell carcinoma of ethmoidal sinus +707360003,Primary lymphoepithelial carcinoma of larynx +707361004,Malignant melanoma of frontal sinus +707362006,Malignant melanoma of sphenoidal sinus +707377003,Primary signet ring cell carcinoma of trachea +707378008,Primary myoepithelial carcinoma of trachea +707379000,Primary mucoepidermoid carcinoma of trachea +707380002,Primary salivary gland type carcinoma of trachea +707383000,Primary mucinous cystadenocarcinoma of trachea +707384006,Primary solid carcinoma of trachea +707385007,Primary undifferentiated carcinoma of trachea +707386008,Primary acinar cell carcinoma of trachea +707388009,Primary squamous cell carcinoma of trachea +707389001,Primary clear cell squamous cell carcinoma of trachea +707390005,Primary basaloid squamous cell carcinoma of trachea +707391009,Primary papillary squamous cell carcinoma of trachea +707392002,Primary giant cell carcinoma of trachea +707393007,Primary adenosquamous carcinoma of trachea +707394001,Primary spindle cell carcinoma of trachea +707395000,Primary adenocarcinoma of hypopharynx +707396004,Primary oxyphilic adenocarcinoma of oropharynx +707398003,Primary polymorphous low grade adenocarcinoma of oropharynx +707399006,Primary papillary adenocarcinoma of oropharynx +707400004,Primary mucinous adenocarcinoma of oropharynx +707401000,Primary clear cell adenocarcinoma of oropharynx +707402007,Primary adenocarcinoma of oropharynx +707403002,Primary fetal adenocarcinoma of lung +707404008,Primary mixed subtype adenocarcinoma of lung +707405009,Primary adenosquamous carcinoma of lung +707406005,Primary mucoepidermoid carcinoma of hypopharynx +707407001,Primary signet ring cell carcinoma of lung +707408006,Primary small cell non-keratinizing squamous cell carcinoma of lung +707409003,Primary acinar cell carcinoma of lung +707410008,Primary solid carcinoma of lung +707411007,Primary papillary adenocarcinoma of lung +707412000,Chronic pulmonary thromboembolism +707413005,Chronic pulmonary thromboembolism without pulmonary hypertension +707421004,Primary undifferentiated carcinoma of larynx +707422006,Primary spindle cell squamous cell carcinoma of larynx +707423001,Primary basaloid carcinoma of larynx +707424007,Primary adenosquamous cell carcinoma of larynx +707425008,Primary adenoid squamous cell carcinoma of larynx +707426009,Primary papillary squamous cell carcinoma of larynx +707427000,Primary verrucous carcinoma of larynx +707429002,Overlapping squamous cell carcinoma of larynx +707430007,Overlapping squamous cell carcinoma of laryngeal cartilage +707433009,Lymphangioleiomyomatosis due to tuberous sclerosis syndrome +707434003,Pulmonary fibrosis due to Hermansky-Pudlak syndrome +707442002,Congenital pulmonary alveolar proteinosis +707443007,Autoimmune pulmonary alveolar proteinosis +707451005,Primary adenocarcinoma of lung +707452003,Primary mucinous adenocarcinoma of lung +707453008,Primary clear cell squamous cell carcinoma of lung +707454002,Primary basaloid squamous cell carcinoma of lung +707455001,Primary papillary squamous cell carcinoma of lung +707456000,Primary undifferentiated carcinoma of lung +707457009,Primary spindle cell carcinoma of lung +707458004,Primary pleomorphic carcinoma of lung +707460002,Primary pseudosarcomatous carcinoma of lung +707464006,Primary myoepithelial carcinoma of lung +707465007,Primary mucoepidermoid carcinoma of lung +707466008,Primary adenoid cystic carcinoma of lung +707467004,Primary salivary gland type carcinoma of lung +707468009,Primary mixed mucinous and non-mucinous bronchiolo-alveolar carcinoma of lung +707469001,Primary non-mucinous bronchiolo-alveolar carcinoma of lung +707470000,Primary mucinous bronchiolo-alveolar carcinoma of lung +707471001,Primary clear cell adenocarcinoma of trachea +707472008,Primary papillary adenocarcinoma of trachea +707473003,Primary mucinous adenocarcinoma of trachea +707475005,Primary adenocarcinoma of trachea +707479004,Primary adenocarcinoma of subglottis +707481002,Primary basaloid squamous cell carcinoma of hypopharynx +707482009,Primary papillary squamous cell carcinoma of hypopharynx +707483004,Primary undifferentiated carcinoma of hypopharynx +707484005,Primary adenoid squamous cell carcinoma of hypopharynx +707485006,Primary adenosquamous carcinoma of hypopharynx +707486007,Primary basaloid carcinoma of hypopharynx +707487003,Primary giant cell carcinoma of hypopharynx +707489000,Primary spindle cell squamous cell carcinoma of hypopharynx +707490009,Primary verrucous carcinoma of hypopharynx +707491008,Primary lymphoepithelial carcinoma of hypopharynx +707492001,Primary squamous cell carcinoma of hypopharynx +707493006,Primary lymphoepithelial carcinoma of trachea +707494000,Primary verrucous carcinoma of trachea +707495004,Primary squamous cell adenoid carcinoma of trachea +707510005,Secondary pulmonary alveolar proteinosis +707528007,Primary squamous cell carcinoma of nasopharynx +707529004,Overlapping squamous cell carcinoma of oropharynx +707532001,Primary squamous cell carcinoma of posterior wall of oropharynx +707534000,Chronic lung disease due to surfactant disorder +707535004,Primary squamous cell carcinoma of lateral wall of oropharynx +707537007,Primary squamous cell carcinoma of anterior surface of epiglottis +707538002,Primary squamous cell carcinoma of vallecula +707539005,Primary adenoid cystic carcinoma of hypopharynx +707553005,Chronic exogenous lipoid pneumonia +70756004,Bronchial atresia with segmental pulmonary emphysema +707575007,Primary squamous cell carcinoma of supraglottis +707576008,Primary squamous cell carcinoma of subglottis +707579001,Primary basaloid squamous cell carcinoma of oropharynx +707580003,Primary basaloid carcinoma of oropharynx +707581004,Primary papillary squamous cell carcinoma of oropharynx +707582006,Primary spindle cell squamous cell carcinoma of oropharynx +707583001,Primary adenosquamous carcinoma of oropharynx +707584007,Primary lymphoepithelial carcinoma of oropharynx +707585008,Primary squamous cell carcinoma of oropharynx +707586009,Primary myoepithelial carcinoma of oropharynx +707587000,Primary carcinoma ex pleomorphic adenoma of oropharynx +707588005,Primary epithelial-myoepithelial carcinoma of oropharynx +707589002,Primary cystadenocarcinoma of oropharynx +707590006,Primary acinar cell carcinoma of oropharynx +707591005,Primary mucoepidermoid carcinoma of oropharynx +707592003,Primary infiltrating duct carcinoma of oropharynx +707593008,Primary salivary gland-type tumor of oropharynx +707595001,Primary mucinous cystadenocarcinoma of lung +707596000,Primary carcinosarcoma of lung +707627009,Primary salivary gland type carcinoma of hypopharynx +707628004,Overlapping squamous cell carcinoma of hypopharynx +707660007,Primary giant cell carcinoma of larynx +707662004,Primary basaloid squamous cell carcinoma of larynx +707664003,Primary squamous cell carcinoma of glottis +707670009,Pleuropulmonary blastoma +707671008,Pleuropulmonary blastoma type I +707672001,Pleuropulmonary blastoma type II +707673006,Pleuropulmonary blastoma type III +707674000,Primary malignant epithelial neoplasm of trachea +707686002,Primary squamous cell carcinoma of posterior wall of hypopharynx +707697002,Primary squamous cell carcinoma of hypopharyngeal aspect of aryepiglottic fold +707703001,Primary squamous cell carcinoma of postcricoid region +707704007,Primary squamous cell carcinoma of pyriform sinus +707705008,Nonkeratinizing carcinoma of the nasopharynx +707766007,Exocrine pancreatic manifestation co-occurrent and due to cystic fibrosis +708026002,Chronic pneumonitis of infancy +708030004,Pulmonary emphysema co-occurrent with fibrosis of lung +709031009,Malignant neoplasm of superior wall of nasopharynx +711379004,Interstitial lung disease due to connective tissue disease +711414003,Primary clear cell adenocarcinoma of lung +71193007,Fibrosis of lung caused by radiation +713244007,Drug induced pulmonary fibrosis +713525001,Recurrent bacterial pneumonia +713526000,Recurrent bacterial pneumonia co-occurrent with human immunodeficiency virus infection +714203003,Acute bronchitis co-occurrent with bronchiectasis +716088000,Follicular hamartoma with alopecia and cystic fibrosis syndrome +716198008,Growth delay with hydrocephalus and lung hypoplasia syndrome +718200007,Primary pulmonary lymphoma +719218000,Cryptogenic organizing pneumonia +720401009,Cystic fibrosis with gastritis and megaloblastic anemia syndrome +721076000,Siegler Brewer Carey syndrome +721095007,"Diaphragmatic defect, limb deficiency, skull defect syndrome" +721560002,Primary adenocarcinoma of nasal cavity +721605003,Primary squamous cell carcinoma of overlapping sites of accessory sinuses +721606002,Primary adenocarcinoma of overlapping sites of accessory sinuses +721607006,Primary undifferentiated carcinoma of oropharynx +721977007,"Lung fibrosis, immunodeficiency, 46,XX gonadal dysgenesis syndrome" +722425009,Reactive oxygen species 1 positive non-small cell lung cancer +722510006,Primary rhabdomyosarcoma of pharynx +722511005,Primary rhabdomyosarcoma of respiratory organ +722527003,Primary malignant neuroendocrine neoplasm of bronchus +722528008,Primary malignant neuroendocrine neoplasm of lung +722529000,Primary malignant epithelial neoplasm of nasopharynx +722530005,Primary squamous cell carcinoma of pharyngeal tonsil +722672002,Primary squamous cell carcinoma of base of tongue +722673007,Primary squamous cell carcinoma of lingual tonsil +72270005,Collagenous pneumoconiosis +722827008,Primary synovial sarcoma of respiratory organ +722912007,Congenital pulmonary hypoplasia due to prolonged premature rupture of membranes +722913002,Congenital pulmonary hypoplasia due to lung space occupying lesion +723182009,Primary squamous cell carcinoma of nasal cavity +723301009,Squamous non-small cell lung cancer +723829000,"Pulmonary fibrosis, hepatic hyperplasia, bone marrow hypoplasia syndrome" +724056005,Malignant neoplasm of lower lobe of right lung +724058006,Malignant neoplasm of upper lobe of left lung +724059003,Malignant neoplasm of lower lobe of left lung +724060008,Malignant neoplasm of right upper lobe of lung +724500003,Idiopathic chronic eosinophilic pneumonia +725052002,Fetal cystic fibrosis +725415009,House allergic alveolitis +726653000,Malignant carcinoid tumor of bronchus +73144008,Pneumoconiosis caused by talc +733144006,Malignant epithelial neoplasm of bronchus +733171006,Chronic pulmonary aspergillosis +733345003,Primary squamous cell carcinoma of pharynx +733358002,Primary squamous cell carcinoma of respiratory system +733453005,"Congenital nephrotic syndrome, interstitial lung disease, epidermolysis bullosa syndrome" +733497009,Chronic suppuration of bronchus +7343008,Liparitosis +73448002,Fish-meal workers' lung +735450006,Primary malignant neuroepitheliomatous neoplasm of nasal cavity +7361000175106,Acute-on-chronic hypercapnic respiratory failure +737180005,Chronic bronchiolitis +737181009,Interstitial lung disease due to systemic disease +737182002,Interstitial lung disease due to granulomatous disease +737183007,Interstitial lung disease due to metabolic disease +737184001,Interstitial lung disease co-occurrent and due to systemic vasculitis +737281001,Artificial larynx in situ +7391000119103,Primary adenoid cystic carcinoma of nasopharynx +7436001,Alveolar pneumopathy +74387008,Tuberculosis of hilar lymph nodes +74417001,Mucopurulent chronic bronchitis +7548000,Rheumatic pneumonia +75547007,Stenosis of larynx +76157009,Bituminosis +762269004,Classical cystic fibrosis +762270003,Atypical cystic fibrosis +762271004,Subclinical cystic fibrosis +762618008,Bronchiolitis obliterans syndrome due to and after lung transplantation +770674007,Tubercular lesion of lung +770760006,16q24.1 microdeletion syndrome +771306007,"Hereditary fibrosing poikiloderma, tendon contractures, myopathy, pulmonary fibrosis syndrome" +77593006,Congenital bronchiectasis +77690003,Interstitial emphysema of lung +783182004,Chronic respiratory distress with surfactant metabolism deficiency +784266000,History of heart-lung transplant recipient +785345002,Pneumoconiosis caused by sisal dust +785736001,Chronic bronchitis co-occurrent with wheeze +78723001,Cannabinosis +789574002,Acute exacerbation of idiopathic pulmonary fibrosis +79031000119101,Dependence on respirator +793197981000119106,Malignant carcinoid tumor of right lung +79877004,Stenosis of bronchus +805002,Pneumoconiosis caused by silica +805261000000101,Bronchiolitis obliterans syndrome after lung transplantation +80602006,Nodular tuberculosis of lung +80614003,Prolonged pulmonary alveolitis +80825009,Congenital hypoplasia of lung +81423003,Cystic fibrosis without meconium ileus +81554001,Tuberculosis of lung with involvement of bronchus +820361000000105,Allotransplantation of lobe of lung from live donor +822969007,Acinar cell cystadenocarcinoma of lung +8247009,Berylliosis +829972004,Diffuse hemorrhage of pulmonary alveolar +830055006,Anaplastic lymphoma kinase fusion oncogene negative non-small cell lung cancer +830060005,Reactive oxygen species 1 negative non-small cell lung cancer +830151004,Anaplastic lymphoma kinase fusion oncogene positive non-small cell lung cancer +83457000,Cylindrical bronchiectasis +836477007,Chronic emphysema caused by vapor +840350008,Chronic obliterative bronchiolitis caused by chemical fumes +840351007,Chronic obliterative bronchiolitis caused by vapor +84409004,Fetid chronic bronchitis +846634000,Chronic respiratory condition caused by fumes +846635004,Chronic respiratory condition caused by vapors +846636003,Chronic respiratory condition caused by chemical fumes +846637007,Chronic pulmonary fibrosis caused by chemical vapors +847091000000104,Acute non-infective exacerbation of chronic obstructive pulmonary disease +85438006,Diatomaceous earth disease +8549006,Desquamative interstitial pneumonia +85761009,Byssinosis +859041000000103,Exacerbation of cystic fibrosis +860890006,Fetal interstitial neoplasm of lung +86092005,Cystic fibrosis with meconium ileus +86263001,Cobaltosis +86555001,Cystic fibrosis of the lung +866103007,Interstitial lung disease due to juvenile polymyositis +86638007,Maple-bark strippers' lung +870327007,Papillary squamous cell carcinoma of nasopharynx +870573008,Interstitial pneumonia with autoimmune features +87119009,Congenital cystic lung +87153008,Pulmonary alveolar microlithiasis +87433001,Pulmonary emphysema +87909002,Hard metal pneumoconiosis +879963005,Exacerbation of bronchiectasis caused by infection +88039007,Transplant of lung +88687001,Manganese pneumonitis +890354000,Congenital subglottic stenosis Cotton-Myer grade 3 +890355004,Congenital subglottic stenosis Cotton-Myer grade 4 +890386005,Congenital subglottic stenosis Cotton-Myer grade 1 +890387001,Congenital subglottic stenosis Cotton-Myer grade 2 +890428007,Primary congenital hypoplasia of bilateral lungs +890528009,Primary malignant neoplasm of left lung +890529001,Primary malignant neoplasm of right lung +890534002,Primary malignant neoplasm of bilateral lungs +89099002,Chronic allergic bronchitis +89201000119106,Dependence on supplemental oxygen when ambulating +89241000119108,Dependence on nocturnal oxygen therapy +90117007,Tuberculous fibrosis of lung +90610005,Interstitial pulmonary fibrosis of prematurity +90623003,Aluminosis of lung +91191000119108,Metastatic adenocarcinoma to pleura +91211000119109,Metastatic small cell carcinoma to pleura +91221000119102,Metastatic malignant melanoma to pleura +92552003,Carcinoma in situ of bronchus of left lower lobe +92553008,Carcinoma in situ of bronchus of left upper lobe +92554002,Carcinoma in situ of bronchus of right lower lobe +92555001,Carcinoma in situ of bronchus of right middle lobe +92556000,Carcinoma in situ of bronchus of right upper lobe +92609009,Carcinoma in situ of hilus of lung +92639004,Carcinoma in situ of left lower lobe of lung +92640002,Carcinoma in situ of left upper lobe of lung +92649001,Carcinoma in situ of lung +92701002,Carcinoma in situ of right lower lobe of lung +92702009,Carcinoma in situ of right middle lobe of lung +92703004,Carcinoma in situ of right upper lobe of lung +931000119107,Dependence on supplemental oxygen +93659005,Primary malignant neoplasm of accessory sinus +93662008,Primary malignant neoplasm of adenoid +93670003,Primary malignant neoplasm of anterior aspect of epiglottis +93674007,Primary malignant neoplasm of anterior wall of nasopharynx +93687001,Primary malignant neoplasm of base of tongue +93729006,Primary malignant neoplasm of bronchus of left lower lobe +93730001,Primary malignant neoplasm of bronchus of left upper lobe +93731002,Primary malignant neoplasm of bronchus of right lower lobe +93732009,Primary malignant neoplasm of bronchus of right middle lobe +93733004,Primary malignant neoplasm of bronchus of right upper lobe +93734005,Primary malignant neoplasm of bronchus +93739000,Primary malignant neoplasm of carina +93772000,Primary malignant neoplasm of diaphragm +93784003,Primary malignant neoplasm of epiglottis +93787005,Primary malignant neoplasm of ethmoidal sinus +93808006,Primary malignant neoplasm of frontal sinus +93816002,Primary malignant neoplasm of glottis +93827000,Primary malignant neoplasm of hilus of lung +93829002,Primary malignant neoplasm of hypopharyngeal aspect of aryepiglottic fold +93830007,Primary malignant neoplasm of hypopharyngeal aspect of interarytenoid fold +93831006,Primary malignant neoplasm of hypopharynx +93848003,Primary malignant neoplasm of junctional zone of tongue +93857009,Primary malignant neoplasm of laryngeal commissure +93858004,Primary malignant neoplasm of laryngeal surface of epiglottis +93861003,Primary malignant neoplasm of lateral wall of nasopharynx +93862005,Primary malignant neoplasm of lateral wall of oropharynx +93864006,Primary malignant neoplasm of lower lobe of left lung +93865007,Primary malignant neoplasm of upper lobe of left lung +93868009,Primary malignant neoplasm of lingual tonsil +93880001,Primary malignant neoplasm of lung +93882009,Primary malignant neoplasm of main bronchus +93889000,Primary malignant neoplasm of maxillary sinus +93917007,Primary malignant neoplasm of nasal cavity +93918002,Primary malignant neoplasm of nasal concha +93933005,Primary malignant neoplasm of oropharynx +93948004,Primary malignant neoplasm of parietal pleura +93961004,Primary malignant neoplasm of pharynx +93966009,Primary malignant neoplasm of pleura +93967000,Primary malignant neoplasm of postcricoid region +93968005,Primary malignant neoplasm of posterior hypopharyngeal wall +93970001,Primary malignant neoplasm of posterior wall of nasopharynx +93971002,Primary malignant neoplasm of posterior wall of oropharynx +93978008,Primary malignant neoplasm of pyriform sinus +93986008,Primary malignant neoplasm of respiratory tract +93991009,Primary malignant neoplasm of right lower lobe of lung +93992002,Primary malignant neoplasm of right middle lobe of lung +93993007,Primary malignant neoplasm of upper lobe of right lung +94002000,Primary malignant neoplasm of septum of nose +94067008,Primary malignant neoplasm of sphenoidal sinus +94075002,Primary malignant neoplasm of subglottis +94078000,Primary malignant neoplasm of superior wall of nasopharynx +94080006,Primary malignant neoplasm of supraglottis +94102002,Primary malignant neoplasm of tonsillar fossa +94103007,Primary malignant neoplasm of tonsillar pillar +94104001,Primary malignant neoplasm of trachea +94118008,Primary malignant neoplasm of upper respiratory tract +94132005,Primary malignant neoplasm of vallecula +94139001,Primary malignant neoplasm of vestibule of nose +94140004,Primary malignant neoplasm of visceral pleura +94142007,Primary malignant neoplasm of vomer +94144008,Primary malignant neoplasm of Waldeyer's ring +94155008,Metastatic malignant neoplasm to accessory sinus +94158005,Metastatic malignant neoplasm to adenoid +94166001,Metastatic malignant neoplasm to anterior aspect of epiglottis +94170009,Metastatic malignant neoplasm to anterior wall of nasopharynx +94184004,Metastatic malignant neoplasm to base of tongue +94227002,Metastatic malignant neoplasm to bronchopulmonary lymph nodes +94228007,Metastatic malignant neoplasm to bronchus of left lower lobe +94229004,Metastatic malignant neoplasm to bronchus of left upper lobe +94230009,Metastatic malignant neoplasm to bronchus of right lower lobe +94231008,Metastatic malignant neoplasm to bronchus of right middle lobe +94232001,Metastatic malignant neoplasm to bronchus of right upper lobe +94233006,Metastatic malignant neoplasm to bronchus +94238002,Metastatic malignant neoplasm to carina +94272005,Metastatic malignant neoplasm to diaphragm +94284007,Metastatic malignant neoplasm to epiglottis +94288005,Metastatic malignant neoplasm to ethmoidal sinus +94296000,Metastatic malignant neoplasm to false vocal cord +94310008,Metastatic malignant neoplasm to frontal sinus +94318001,Metastatic malignant neoplasm to glottis +94329002,Metastatic malignant neoplasm to hilus of lung +94332004,Metastatic malignant neoplasm to hypopharyngeal aspect of aryepiglottic fold +94333009,Metastatic malignant neoplasm to hypopharyngeal aspect of interarytenoid fold +94334003,Metastatic malignant neoplasm to hypopharynx +94358004,Metastatic malignant neoplasm to junctional region of epiglottis +94359007,Metastatic malignant neoplasm to junctional zone of tongue +94366008,Metastatic malignant neoplasm to laryngeal aspect of aryepiglottic fold +94367004,Metastatic malignant neoplasm to laryngeal aspect of interarytenoid fold +94368009,Metastatic malignant neoplasm to laryngeal commissure +94369001,Metastatic malignant neoplasm to laryngeal surface of epiglottis +94370000,Metastatic malignant neoplasm to larynx +94372008,Metastatic malignant neoplasm to lateral wall of nasopharynx +94373003,Metastatic malignant neoplasm to lateral wall of oropharynx +94375005,Metastatic malignant neoplasm to left lower lobe of lung +94376006,Metastatic malignant neoplasm to left upper lobe of lung +94379004,Metastatic malignant neoplasm to lingual tonsil +94391008,Metastatic malignant neoplasm to lung +94399005,Metastatic malignant neoplasm to main bronchus +94406009,Metastatic malignant neoplasm to maxillary sinus +94436000,Metastatic malignant neoplasm to nasal cavity +94437009,Metastatic malignant neoplasm to nasal concha +94454001,Metastatic malignant neoplasm to oropharynx +94458003,Metastatic malignant neoplasm to tonsil +94473002,Metastatic malignant neoplasm to parietal pleura +94488007,Metastatic malignant neoplasm to pharynx +94493005,Metastatic malignant neoplasm to pleura +94495003,Metastatic malignant neoplasm to postcricoid region +94496002,Metastatic malignant neoplasm to posterior hypopharyngeal wall +94498001,Metastatic malignant neoplasm to posterior wall of nasopharynx +94499009,Metastatic malignant neoplasm to posterior wall of oropharynx +94507002,Metastatic malignant neoplasm to pyriform sinus +94515004,Metastatic malignant neoplasm to respiratory tract +94522007,Metastatic malignant neoplasm to right lower lobe of lung +94523002,Metastatic malignant neoplasm to right middle lobe of lung +94524008,Metastatic malignant neoplasm to right upper lobe of lung +94534004,Metastatic malignant neoplasm to septum of nose +94599006,Metastatic malignant neoplasm to sphenoidal sinus +94607007,Metastatic malignant neoplasm to subglottis +94613003,Metastatic malignant neoplasm to superior wall of nasopharynx +94616006,Metastatic malignant neoplasm to supraglottis +94639000,Metastatic malignant neoplasm to tonsillar fossa +94640003,Metastatic malignant neoplasm to tonsillar pillar +94641004,Metastatic malignant neoplasm to trachea +94656008,Metastatic malignant neoplasm to upper respiratory tract +94670008,Metastatic malignant neoplasm to vallecula +94677006,Metastatic malignant neoplasm to vestibule of nose +94678001,Metastatic malignant neoplasm to visceral pleura +94679009,Metastatic malignant neoplasm to vocal cord +94680007,Metastatic malignant neoplasm to vomer +94682004,Metastatic malignant neoplasm to Waldeyer's ring +9660004,Congenital stenosis of trachea +971918681000119107,Chronic respiratory failure due to obstructive sleep apnea diff --git a/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-codeine-for-pain-dmd.csv b/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-codeine-for-pain-dmd.csv deleted file mode 100644 index 33e3050cf..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-codeine-for-pain-dmd.csv +++ /dev/null @@ -1,350 +0,0 @@ -code,term,dmd_id,dmd_type,bnf_code -42010211000001106,Co-codamol 8mg/500mg tablets,42010211000001106,VMP,0407010F0AAAAAA -35671811000001104,Co-codamol 8mg/500mg caplets,35671811000001104,AMP,0407010F0AAAAAA -30772511000001106,Co-codamol 8mg/500mg caplets,30772511000001106,AMP,0407010F0AAAAAA -22633511000001104,Co-codamol 8mg/500mg caplets,22633511000001104,AMP,0407010F0AAAAAA -32399311000001108,Co-codamol 8mg/500mg caplets,32399311000001108,AMP,0407010F0AAAAAA -11579211000001107,Co-codamol 8mg/500mg caplets,11579211000001107,AMP,0407010F0AAAAAA -31920011000001102,Co-codamol 8mg/500mg caplets,31920011000001102,AMP,0407010F0AAAAAA -660011000001106,Co-codamol 8mg/500mg tablets,660011000001106,AMP,0407010F0AAAAAA -35689011000001101,Co-codamol 8mg/500mg tablets,35689011000001101,AMP,0407010F0AAAAAA -165011000001101,Co-codamol 8mg/500mg tablets,165011000001101,AMP,0407010F0AAAAAA -585411000001100,Co-codamol 8mg/500mg tablets,585411000001100,AMP,0407010F0AAAAAA -15162411000001100,Co-codamol 8mg/500mg tablets,15162411000001100,AMP,0407010F0AAAAAA -10398111000001105,Co-codamol 8mg/500mg tablets,10398111000001105,AMP,0407010F0AAAAAA -264411000001106,Co-codamol 8mg/500mg tablets,264411000001106,AMP,0407010F0AAAAAA -14802711000001106,Co-codamol 8mg/500mg tablets,14802711000001106,AMP,0407010F0AAAAAA -15990111000001107,Co-codamol 8mg/500mg tablets,15990111000001107,AMP,0407010F0AAAAAA -28984411000001104,Co-codamol 8mg/500mg tablets,28984411000001104,AMP,0407010F0AAAAAA -22637011000001101,Co-codamol 8mg/500mg tablets,22637011000001101,AMP,0407010F0AAAAAA -809211000001101,Co-codamol 8mg/500mg tablets,809211000001101,AMP,0407010F0AAAAAA -244711000001106,Co-codamol 8mg/500mg tablets,244711000001106,AMP,0407010F0AAAAAA -7929711000001108,Co-codamol 8mg/500mg tablets,7929711000001108,AMP,0407010F0AAAAAA -24033811000001100,Co-codamol 8mg/500mg tablets,24033811000001100,AMP,0407010F0AAAAAA -30016911000001107,Co-codamol 8mg/500mg tablets,30016911000001107,AMP,0407010F0AAAAAA -38855311000001108,Co-codamol 8mg/500mg tablets,38855311000001108,AMP,0407010F0AAAAAA -15367411000001108,Co-codamol 8mg/500mg tablets,15367411000001108,AMP,0407010F0AAAAAA -11211000001100,Co-codamol 8mg/500mg tablets,11211000001100,AMP,0407010F0AAAAAA -17886211000001106,Co-codamol 8mg/500mg tablets,17886211000001106,AMP,0407010F0AAAAAA -15215311000001102,Co-codamol 8mg/500mg tablets,15215311000001102,AMP,0407010F0AAAAAA -517411000001109,Co-codamol 8mg/500mg tablets,517411000001109,AMP,0407010F0AAAAAA -816111000001101,Co-codamol 8mg/500mg tablets,816111000001101,AMP,0407010F0AAAAAA -13746611000001106,Co-codamol 8mg/500mg tablets,13746611000001106,AMP,0407010F0AAAAAA -5020311000001105,Co-codamol 8mg/500mg tablets,5020311000001105,AMP,0407010F0AAAAAA -330611000001103,Co-codamol 8mg/500mg tablets,330611000001103,AMP,0407010F0AAAAAA -22388511000001105,Co-codamol 8mg/500mg tablets,22388511000001105,AMP,0407010F0AAAAAA -18145611000001105,Co-codamol 8mg/500mg tablets,18145611000001105,AMP,0407010F0AAAAAA -929711000001105,Co-codamol 8mg/500mg tablets,929711000001105,AMP,0407010F0AAAAAA -42010011000001101,Co-codamol 8mg/500mg capsules,42010011000001101,VMP,0407010F0AAABAB -13367311000001107,Co-codamol 8mg/500mg capsules,13367311000001107,AMP,0407010F0AAABAB -12872711000001106,Co-codamol 8mg/500mg capsules,12872711000001106,AMP,0407010F0AAABAB -14286711000001102,Co-codamol 8mg/500mg capsules,14286711000001102,AMP,0407010F0AAABAB -15611011000001104,Co-codamol 8mg/500mg capsules,15611011000001104,AMP,0407010F0AAABAB -22633911000001106,Co-codamol 8mg/500mg capsules,22633911000001106,AMP,0407010F0AAABAB -32401911000001104,Co-codamol 8mg/500mg capsules,32401911000001104,AMP,0407010F0AAABAB -38854911000001105,Co-codamol 8mg/500mg capsules,38854911000001105,AMP,0407010F0AAABAB -17886511000001109,Co-codamol 8mg/500mg capsules,17886511000001109,AMP,0407010F0AAABAB -40508211000001101,Co-codamol 8mg/500mg capsules,40508211000001101,AMP,0407010F0AAABAB -29795811000001108,Co-codamol 8mg/500mg capsules,29795811000001108,AMP,0407010F0AAABAB -22010911000001104,Co-codamol 8mg/500mg capsules,22010911000001104,AMP,0407010F0AAABAB -40033711000001109,Co-codamol 8mg/500mg capsules,40033711000001109,AMP,0407010F0AAABAB -42010111000001100,Co-codamol 8mg/500mg effervescent tablets,42010111000001100,VMP,0407010F0AAACAC -5911000001108,Co-codamol 8mg/500mg effervescent tablets,5911000001108,AMP,0407010F0AAACAC -15737811000001102,Co-codamol 8mg/500mg effervescent tablets,15737811000001102,AMP,0407010F0AAACAC -242111000001102,Co-codamol 8mg/500mg effervescent tablets,242111000001102,AMP,0407010F0AAACAC -9788211000001101,Co-codamol 8mg/500mg effervescent tablets,9788211000001101,AMP,0407010F0AAACAC -10900011000001100,Co-codamol 8mg/500mg effervescent tablets,10900011000001100,AMP,0407010F0AAACAC -41143311000001109,Co-codamol 8mg/500mg effervescent tablets,41143311000001109,AMP,0407010F0AAACAC -22634411000001100,Co-codamol 8mg/500mg effervescent tablets,22634411000001100,AMP,0407010F0AAACAC -18067711000001109,Co-codamol 8mg/500mg effervescent tablets,18067711000001109,AMP,0407010F0AAACAC -709211000001103,Co-codamol 8mg/500mg effervescent tablets,709211000001103,AMP,0407010F0AAACAC -17055111000001102,Co-codamol 8mg/500mg effervescent tablets,17055111000001102,AMP,0407010F0AAACAC -30017511000001103,Co-codamol 8mg/500mg effervescent tablets,30017511000001103,AMP,0407010F0AAACAC -38854711000001108,Co-codamol 8mg/500mg effervescent tablets,38854711000001108,AMP,0407010F0AAACAC -15123111000001106,Co-codamol 8mg/500mg effervescent tablets,15123111000001106,AMP,0407010F0AAACAC -23652311000001109,Co-codamol 8mg/500mg effervescent tablets,23652311000001109,AMP,0407010F0AAACAC -928611000001105,Co-codamol 8mg/500mg effervescent tablets,928611000001105,AMP,0407010F0AAACAC -15214611000001106,Co-codamol 8mg/500mg effervescent tablets,15214611000001106,AMP,0407010F0AAACAC -8990311000001104,Co-codamol 8mg/500mg effervescent tablets,8990311000001104,AMP,0407010F0AAACAC -358311000001106,Co-codamol 8mg/500mg effervescent tablets,358311000001106,AMP,0407010F0AAACAC -18870211000001109,Co-codamol 8mg/500mg effervescent tablets,18870211000001109,AMP,0407010F0AAACAC -566311000001104,Co-codamol 8mg/500mg effervescent tablets,566311000001104,AMP,0407010F0AAACAC -22032011000001109,Co-codamol 8mg/500mg effervescent tablets,22032011000001109,AMP,0407010F0AAACAC -394411000001102,Co-codamol 8mg/500mg effervescent tablets,394411000001102,AMP,0407010F0AAACAC -42009511000001104,Co-codamol 30mg/500mg capsules,42009511000001104,VMP,0407010F0AAADAD -727611000001100,Co-codamol 30mg/500mg capsules,727611000001100,AMP,0407010F0AAADAD -11005911000001106,Co-codamol 30mg/500mg capsules,11005911000001106,AMP,0407010F0AAADAD -16425811000001104,Co-codamol 30mg/500mg capsules,16425811000001104,AMP,0407010F0AAADAD -8825111000001108,Co-codamol 30mg/500mg capsules,8825111000001108,AMP,0407010F0AAADAD -14116311000001101,Co-codamol 30mg/500mg capsules,14116311000001101,AMP,0407010F0AAADAD -22633711000001109,Co-codamol 30mg/500mg capsules,22633711000001109,AMP,0407010F0AAADAD -9480411000001107,Co-codamol 30mg/500mg capsules,9480411000001107,AMP,0407010F0AAADAD -4006711000001107,Co-codamol 30mg/500mg capsules,4006711000001107,AMP,0407010F0AAADAD -38859811000001101,Co-codamol 30mg/500mg capsules,38859811000001101,AMP,0407010F0AAADAD -17886711000001104,Co-codamol 30mg/500mg capsules,17886711000001104,AMP,0407010F0AAADAD -15080211000001109,Co-codamol 30mg/500mg capsules,15080211000001109,AMP,0407010F0AAADAD -9626911000001109,Co-codamol 30mg/500mg capsules,9626911000001109,AMP,0407010F0AAADAD -9479611000001105,Co-codamol 30mg/500mg capsules,9479611000001105,AMP,0407010F0AAADAD -22011311000001105,Co-codamol 30mg/500mg capsules,22011311000001105,AMP,0407010F0AAADAD -10822611000001105,Co-codamol 30mg/500mg capsules,10822611000001105,AMP,0407010F0AAADAD -42009711000001109,Co-codamol 30mg/500mg effervescent tablets,42009711000001109,VMP,0407010F0AAAFAF -7382511000001107,Co-codamol 30mg/500mg effervescent tablets,7382511000001107,AMP,0407010F0AAAFAF -40562211000001102,Co-codamol 30mg/500mg effervescent tablets,40562211000001102,AMP,0407010F0AAAFAF -15447311000001100,Co-codamol 30mg/500mg effervescent tablets,15447311000001100,AMP,0407010F0AAAFAF -20352211000001105,Co-codamol 30mg/500mg effervescent tablets,20352211000001105,AMP,0407010F0AAAFAF -5468911000001108,Co-codamol 30mg/500mg effervescent tablets,5468911000001108,AMP,0407010F0AAAFAF -11403111000001102,Co-codamol 30mg/500mg effervescent tablets,11403111000001102,AMP,0407010F0AAAFAF -41145311000001105,Co-codamol 30mg/500mg effervescent tablets,41145311000001105,AMP,0407010F0AAAFAF -22634611000001102,Co-codamol 30mg/500mg effervescent tablets,22634611000001102,AMP,0407010F0AAAFAF -18068111000001109,Co-codamol 30mg/500mg effervescent tablets,18068111000001109,AMP,0407010F0AAAFAF -5628211000001108,Co-codamol 30mg/500mg effervescent tablets,5628211000001108,AMP,0407010F0AAAFAF -30017711000001108,Co-codamol 30mg/500mg effervescent tablets,30017711000001108,AMP,0407010F0AAAFAF -38858911000001103,Co-codamol 30mg/500mg effervescent tablets,38858911000001103,AMP,0407010F0AAAFAF -17886911000001102,Co-codamol 30mg/500mg effervescent tablets,17886911000001102,AMP,0407010F0AAAFAF -15093111000001109,Co-codamol 30mg/500mg effervescent tablets,15093111000001109,AMP,0407010F0AAAFAF -14167611000001107,Co-codamol 30mg/500mg effervescent tablets,14167611000001107,AMP,0407010F0AAAFAF -31008611000001109,Co-codamol 30mg/500mg effervescent tablets,31008611000001109,AMP,0407010F0AAAFAF -9554511000001103,Co-codamol 30mg/500mg effervescent tablets,9554511000001103,AMP,0407010F0AAAFAF -22032611000001102,Co-codamol 30mg/500mg effervescent tablets,22032611000001102,AMP,0407010F0AAAFAF -15969011000001100,Co-codamol 30mg/500mg effervescent tablets,15969011000001100,AMP,0407010F0AAAFAF -5468611000001102,Co-codamol 30mg/500mg effervescent tablets,5468611000001102,AMP,0407010F0AAAFAF -42009811000001101,Co-codamol 30mg/500mg tablets,42009811000001101,VMP,0407010F0AAAHAH -22785311000001107,Co-codamol 30mg/500mg caplets,22785311000001107,AMP,0407010F0AAAHAH -23260511000001108,Co-codamol 30mg/500mg caplets,23260511000001108,AMP,0407010F0AAAHAH -22786711000001103,Co-codamol 30mg/500mg caplets,22786711000001103,AMP,0407010F0AAAHAH -20545311000001107,Co-codamol 30mg/500mg caplets,20545311000001107,AMP,0407010F0AAAHAH -22633311000001105,Co-codamol 30mg/500mg caplets,22633311000001105,AMP,0407010F0AAAHAH -22393711000001105,Co-codamol 30mg/500mg caplets,22393711000001105,AMP,0407010F0AAAHAH -8095111000001103,Co-codamol 30mg/500mg caplets,8095111000001103,AMP,0407010F0AAAHAH -30029611000001102,Co-codamol 30mg/500mg caplets,30029611000001102,AMP,0407010F0AAAHAH -38858011000001102,Co-codamol 30mg/500mg caplets,38858011000001102,AMP,0407010F0AAAHAH -23651811000001109,Co-codamol 30mg/500mg caplets,23651811000001109,AMP,0407010F0AAAHAH -22010711000001101,Co-codamol 30mg/500mg caplets,22010711000001101,AMP,0407010F0AAAHAH -32474211000001102,Co-codamol 30mg/500mg caplets,32474211000001102,AMP,0407010F0AAAHAH -549811000001105,Co-codamol 30mg/500mg tablets,549811000001105,AMP,0407010F0AAAHAH -9604211000001103,Co-codamol 30mg/500mg tablets,9604211000001103,AMP,0407010F0AAAHAH -292811000001100,Co-codamol 30mg/500mg tablets,292811000001100,AMP,0407010F0AAAHAH -9788511000001103,Co-codamol 30mg/500mg tablets,9788511000001103,AMP,0407010F0AAAHAH -10398311000001107,Co-codamol 30mg/500mg tablets,10398311000001107,AMP,0407010F0AAAHAH -21032311000001106,Co-codamol 30mg/500mg tablets,21032311000001106,AMP,0407010F0AAAHAH -22636411000001108,Co-codamol 30mg/500mg tablets,22636411000001108,AMP,0407010F0AAAHAH -4868911000001106,Co-codamol 30mg/500mg tablets,4868911000001106,AMP,0407010F0AAAHAH -188911000001105,Co-codamol 30mg/500mg tablets,188911000001105,AMP,0407010F0AAAHAH -24033511000001103,Co-codamol 30mg/500mg tablets,24033511000001103,AMP,0407010F0AAAHAH -30017211000001101,Co-codamol 30mg/500mg tablets,30017211000001101,AMP,0407010F0AAAHAH -38857311000001100,Co-codamol 30mg/500mg tablets,38857311000001100,AMP,0407010F0AAAHAH -17887211000001108,Co-codamol 30mg/500mg tablets,17887211000001108,AMP,0407010F0AAAHAH -7259811000001100,Co-codamol 30mg/500mg tablets,7259811000001100,AMP,0407010F0AAAHAH -29795511000001105,Co-codamol 30mg/500mg tablets,29795511000001105,AMP,0407010F0AAAHAH -9627111000001109,Co-codamol 30mg/500mg tablets,9627111000001109,AMP,0407010F0AAAHAH -36860511000001106,Co-codamol 30mg/500mg tablets,36860511000001106,AMP,0407010F0AAAHAH -9326411000001107,Co-codamol 30mg/500mg tablets,9326411000001107,AMP,0407010F0AAAHAH -22034211000001108,Co-codamol 30mg/500mg tablets,22034211000001108,AMP,0407010F0AAAHAH -352411000001101,Co-codamol 30mg/500mg tablets,352411000001101,AMP,0407010F0AAAHAH -855111000001101,Co-codamol 30mg/500mg tablets,855111000001101,AMP,0407010F0AAAHAH -3805611000001109,Co-codamol 15mg/500mg tablets,3805611000001109,VMP,0407010F0AAAKAK -17879911000001100,Co-codamol 15mg/500mg tablets,17879911000001100,AMP,0407010F0AAAKAK -34035211000001101,Co-codamol 15mg/500mg tablets,34035211000001101,AMP,0407010F0AAAKAK -19794111000001101,Co-codamol 15mg/500mg tablets,19794111000001101,AMP,0407010F0AAAKAK -22636211000001109,Co-codamol 15mg/500mg tablets,22636211000001109,AMP,0407010F0AAAKAK -29988011000001102,Co-codamol 15mg/500mg tablets,29988011000001102,AMP,0407010F0AAAKAK -32402911000001105,Co-codamol 15mg/500mg tablets,32402911000001105,AMP,0407010F0AAAKAK -42315711000001108,Co-codamol 15mg/500mg tablets,42315711000001108,AMP,0407010F0AAAKAK -38854411000001102,Co-codamol 15mg/500mg tablets,38854411000001102,AMP,0407010F0AAAKAK -36042211000001103,Co-codamol 15mg/500mg tablets,36042211000001103,AMP,0407010F0AAAKAK -22033611000001107,Co-codamol 15mg/500mg tablets,22033611000001107,AMP,0407010F0AAAKAK -20913611000001104,Co-codamol 15mg/500mg tablets,20913611000001104,AMP,0407010F0AAAKAK -42009411000001103,Co-codamol 12.8mg/500mg tablets,42009411000001103,VMP,0407010F0AAAPAP -42009611000001100,Co-codamol 30mg/500mg effervescent powder sachets sugar free,42009611000001100,VMP,0407010F0AAAQAQ -42009911000001106,Co-codamol 60mg/1000mg effervescent powder sachets sugar free,42009911000001106,VMP,0407010F0AAARAR -13892811000001102,Co-codamol 8mg/500mg/5ml oral solution,13892811000001102,VMP,0407010F0AAASAS -13892911000001107,Co-codamol 8mg/500mg/5ml oral suspension,13892911000001107,VMP,0407010F0AAASAS -13886911000001105,Co-codamol 8mg/500mg/5ml oral solution,13886911000001105,AMP,0407010F0AAASAS -13883111000001102,Co-codamol 8mg/500mg/5ml oral suspension,13883111000001102,AMP,0407010F0AAASAS -19200211000001107,Co-codamol 15mg/500mg capsules,19200211000001107,VMP,0407010F0AAAVAV -34626511000001100,Co-codamol 15mg/500mg capsules,34626511000001100,AMP,0407010F0AAAVAV -34710111000001105,Co-codamol 15mg/500mg capsules,34710111000001105,AMP,0407010F0AAAVAV -37229711000001109,Co-codamol 15mg/500mg capsules,37229711000001109,AMP,0407010F0AAAVAV -34611011000001105,Co-codamol 15mg/500mg capsules,34611011000001105,AMP,0407010F0AAAVAV -38858411000001106,Co-codamol 15mg/500mg capsules,38858411000001106,AMP,0407010F0AAAVAV -19230711000001108,Co-codamol 15mg/500mg effervescent tablets sugar free,19230711000001108,VMP,0407010F0AAAWAW -40439211000001105,Co-codamol 15mg/500mg effervescent tablets sugar free,40439211000001105,AMP,0407010F0AAAWAW -40246711000001106,Co-codamol 15mg/500mg effervescent tablets sugar free,40246711000001106,AMP,0407010F0AAAWAW -34625311000001101,Co-codamol 60mg/1000mg tablets,34625311000001101,VMP,0407010F0AAAYAY -34782811000001100,Co-codamol 60mg/1000mg tablets,34782811000001100,AMP,0407010F0AAAYAY -34617911000001101,Co-codamol 60mg/1000mg tablets,34617911000001101,AMP,0407010F0AAAYAY -36861011000001107,Co-codamol 60mg/1000mg tablets,36861011000001107,AMP,0407010F0AAAYAY -38063911000001100,Co-codamol 30mg/500mg/5ml oral solution sugar free,38063911000001100,VMP,0407010F0AAAZAZ -38561311000001100,Co-codamol 30mg/500mg/5ml oral solution sugar free,38561311000001100,AMP,0407010F0AAAZAZ -38848711000001102,Co-codamol 30mg/500mg/5ml oral solution sugar free,38848711000001102,AMP,0407010F0AAAZAZ -37929611000001101,Co-codamol 30mg/500mg/5ml oral solution sugar free,37929611000001101,AMP,0407010F0AAAZAZ -38555211000001104,Co-codamol 8mg/500mg effervescent tablets sugar free,38555211000001104,VMP,0407010F0AABABA -38741511000001100,Co-codamol 8mg/500mg effervescent tablets sugar free,38741511000001100,AMP,0407010F0AABABA -38525011000001108,Co-codamol 8mg/500mg effervescent tablets sugar free,38525011000001108,AMP,0407010F0AABABA -772811000001100,Paracodol 8mg/500mg capsules,772811000001100,AMP,0407010F0BBAAAB -655311000001106,Paracodol 8mg/500mg effervescent tablets,655311000001106,AMP,0407010F0BBABAC -9475011000001100,Migraine Relief 8mg/500mg capsules,9475011000001100,AMP,0407010F0BCABAB -360311000001104,Tylex 30mg/500mg capsules,360311000001104,AMP,0407010F0BEAAAD -68111000001102,Tylex 30mg/500mg effervescent tablets,68111000001102,AMP,0407010F0BEABAF -10411000001105,Solpadol 30mg/500mg effervescent tablets,10411000001105,AMP,0407010F0BGAAAF -341211000001105,Solpadol 30mg/500mg caplets,341211000001105,AMP,0407010F0BGABAH -247311000001103,Solpadol 30mg/500mg capsules,247311000001103,AMP,0407010F0BGACAD -232711000001100,Kapake 30mg/500mg tablets,232711000001100,AMP,0407010F0BHAAAH -3253711000001104,Kapake Insts 30mg/500mg effervescent powder sachets,3253711000001104,AMP,0407010F0BHABAQ -3251511000001105,Kapake Insts 60mg/1000mg effervescent powder sachets,3251511000001105,AMP,0407010F0BHACAR -737111000001106,Kapake 30mg/500mg capsules,737111000001106,AMP,0407010F0BHADAD -7336011000001106,Kapake 30mg/500mg effervescent tablets,7336011000001106,AMP,0407010F0BHAEAF -17572011000001107,Kapake 15mg/500mg tablets,17572011000001107,AMP,0407010F0BHAFAK -841911000001103,Panadol Ultra 12.8mg/500mg tablets,841911000001103,AMP,0407010F0BIAAAP -604311000001102,Solpadeine Max 12.8mg/500mg tablets,604311000001102,AMP,0407010F0BPAAAP -98711000001103,Medocodene 30mg/500mg capsules,98711000001103,AMP,0407010F0BRAAAD -9529311000001109,Medocodene 30mg/500mg effervescent tablets,9529311000001109,AMP,0407010F0BRABAF -75011000001100,Zapain 30mg/500mg tablets,75011000001100,AMP,0407010F0BSAAAH -314111000001106,Zapain 30mg/500mg capsules,314111000001106,AMP,0407010F0BSABAD -3803111000001102,Codipar 15mg/500mg tablets,3803111000001102,AMP,0407010F0BVAAAK -19191911000001105,Codipar 15mg/500mg capsules,19191911000001105,AMP,0407010F0BVABAV -19207211000001106,Codipar 15mg/500mg effervescent tablets,19207211000001106,AMP,0407010F0BVACAW -10898611000001100,Feminax Period Pain capsules,10898611000001100,AMP,0407010F0BWAAAB -3359711000001105,Migraleve Yellow tablets,3359711000001105,AMP,0407010F0BXAAAA -35579011000001104,Emcozin 30mg/500mg tablets,35579011000001104,AMP,0407010F0BYAAAH -40248011000001108,Zipamol Plus 8mg/500mg effervescent tablets,40248011000001108,AMP,0407010F0BZAABA -11762111000001100,Co-codaprin 8mg/400mg tablets,11762111000001100,VMP,0407010M0AAAAAA -11748611000001102,Co-codaprin 8mg/400mg tablets,11748611000001102,AMP,0407010M0AAAAAA -39695111000001108,Co-codaprin 8mg/400mg dispersible tablets,39695111000001108,VMP,0407010M0AAABAB -3679811000001109,Co-codaprin 8mg/400mg dispersible tablets,3679811000001109,AMP,0407010M0AAABAB -3680211000001108,Co-codaprin 8mg/400mg dispersible tablets,3680211000001108,AMP,0407010M0AAABAB -3680611000001105,Co-codaprin 8mg/400mg dispersible tablets,3680611000001105,AMP,0407010M0AAABAB -29797311000001107,Co-codaprin 8mg/400mg dispersible tablets,29797311000001107,AMP,0407010M0AAABAB -20549911000001105,Boots Aspirin and Codeine tablets,20549911000001105,AMP,0407010M0BCAAAA -4956111000001107,Aspirin 500mg / Codeine 8mg dispersible tablets sugar free,4956111000001107,VMP,0407010W0AAADAD -17849211000001105,Boots Paracetamol and Codeine Extra capsules,17849211000001105,AMP,0407010X0CDAMA0 -36090011000001104,Codeine 60mg/1ml solution for injection ampoules,36090011000001104,VMP,0407020C0AAAAAA -558511000001103,Codeine 60mg/1ml solution for injection ampoules,558511000001103,AMP,0407020C0AAAAAA -754411000001107,Codeine 60mg/1ml solution for injection ampoules,754411000001107,AMP,0407020C0AAAAAA -447811000001106,Codeine 60mg/1ml solution for injection ampoules,447811000001106,AMP,0407020C0AAAAAA -32755411000001106,Codeine 60mg/1ml solution for injection ampoules,32755411000001106,AMP,0407020C0AAAAAA -36566111000001100,Codeine 25mg/5ml oral solution,36566111000001100,VMP,0407020C0AAABAB -641111000001109,Codeine 25mg/5ml oral solution,641111000001109,AMP,0407020C0AAABAB -106811000001100,Codeine 25mg/5ml oral solution,106811000001100,AMP,0407020C0AAABAB -30046011000001101,Codeine 25mg/5ml oral solution,30046011000001101,AMP,0407020C0AAABAB -39847111000001102,Codeine 25mg/5ml oral solution,39847111000001102,AMP,0407020C0AAABAB -27811000001100,Codeine 25mg/5ml oral solution,27811000001100,AMP,0407020C0AAABAB -42010311000001103,Codeine 15mg tablets,42010311000001103,VMP,0407020C0AAADAD -631411000001103,Codeine 15mg tablets,631411000001103,AMP,0407020C0AAADAD -3811000001102,Codeine 15mg tablets,3811000001102,AMP,0407020C0AAADAD -616411000001104,Codeine 15mg tablets,616411000001104,AMP,0407020C0AAADAD -17967711000001105,Codeine 15mg tablets,17967711000001105,AMP,0407020C0AAADAD -10399111000001103,Codeine 15mg tablets,10399111000001103,AMP,0407020C0AAADAD -15990511000001103,Codeine 15mg tablets,15990511000001103,AMP,0407020C0AAADAD -29003611000001106,Codeine 15mg tablets,29003611000001106,AMP,0407020C0AAADAD -23854211000001103,Codeine 15mg tablets,23854211000001103,AMP,0407020C0AAADAD -114211000001109,Codeine 15mg tablets,114211000001109,AMP,0407020C0AAADAD -30018511000001104,Codeine 15mg tablets,30018511000001104,AMP,0407020C0AAADAD -39206611000001109,Codeine 15mg tablets,39206611000001109,AMP,0407020C0AAADAD -41927111000001104,Codeine 15mg tablets,41927111000001104,AMP,0407020C0AAADAD -17887711000001101,Codeine 15mg tablets,17887711000001101,AMP,0407020C0AAADAD -123811000001101,Codeine 15mg tablets,123811000001101,AMP,0407020C0AAADAD -11531411000001107,Codeine 15mg tablets,11531411000001107,AMP,0407020C0AAADAD -15205411000001106,Codeine 15mg tablets,15205411000001106,AMP,0407020C0AAADAD -34760811000001104,Codeine 15mg tablets,34760811000001104,AMP,0407020C0AAADAD -613111000001104,Codeine 15mg tablets,613111000001104,AMP,0407020C0AAADAD -21946111000001102,Codeine 15mg tablets,21946111000001102,AMP,0407020C0AAADAD -277611000001109,Codeine 15mg tablets,277611000001109,AMP,0407020C0AAADAD -42010411000001105,Codeine 30mg tablets,42010411000001105,VMP,0407020C0AAAEAE -260411000001100,Codeine 30mg tablets,260411000001100,AMP,0407020C0AAAEAE -129811000001104,Codeine 30mg tablets,129811000001104,AMP,0407020C0AAAEAE -708311000001100,Codeine 30mg tablets,708311000001100,AMP,0407020C0AAAEAE -11426011000001104,Codeine 30mg tablets,11426011000001104,AMP,0407020C0AAAEAE -10399311000001101,Codeine 30mg tablets,10399311000001101,AMP,0407020C0AAAEAE -16048111000001109,Codeine 30mg tablets,16048111000001109,AMP,0407020C0AAAEAE -29003811000001105,Codeine 30mg tablets,29003811000001105,AMP,0407020C0AAAEAE -23854511000001100,Codeine 30mg tablets,23854511000001100,AMP,0407020C0AAAEAE -875511000001107,Codeine 30mg tablets,875511000001107,AMP,0407020C0AAAEAE -908211000001103,Codeine 30mg tablets,908211000001103,AMP,0407020C0AAAEAE -30018711000001109,Codeine 30mg tablets,30018711000001109,AMP,0407020C0AAAEAE -38862111000001108,Codeine 30mg tablets,38862111000001108,AMP,0407020C0AAAEAE -41927511000001108,Codeine 30mg tablets,41927511000001108,AMP,0407020C0AAAEAE -17888011000001102,Codeine 30mg tablets,17888011000001102,AMP,0407020C0AAAEAE -380611000001107,Codeine 30mg tablets,380611000001107,AMP,0407020C0AAAEAE -11531611000001105,Codeine 30mg tablets,11531611000001105,AMP,0407020C0AAAEAE -29797511000001101,Codeine 30mg tablets,29797511000001101,AMP,0407020C0AAAEAE -34761111000001100,Codeine 30mg tablets,34761111000001100,AMP,0407020C0AAAEAE -297411000001104,Codeine 30mg tablets,297411000001104,AMP,0407020C0AAAEAE -21946811000001109,Codeine 30mg tablets,21946811000001109,AMP,0407020C0AAAEAE -438511000001106,Codeine 30mg tablets,438511000001106,AMP,0407020C0AAAEAE -42010511000001109,Codeine 60mg tablets,42010511000001109,VMP,0407020C0AAAFAF -271511000001104,Codeine 60mg tablets,271511000001104,AMP,0407020C0AAAFAF -302811000001108,Codeine 60mg tablets,302811000001108,AMP,0407020C0AAAFAF -646511000001109,Codeine 60mg tablets,646511000001109,AMP,0407020C0AAAFAF -34680011000001103,Codeine 60mg tablets,34680011000001103,AMP,0407020C0AAAFAF -10399511000001107,Codeine 60mg tablets,10399511000001107,AMP,0407020C0AAAFAF -29004011000001102,Codeine 60mg tablets,29004011000001102,AMP,0407020C0AAAFAF -23854811000001102,Codeine 60mg tablets,23854811000001102,AMP,0407020C0AAAFAF -367411000001105,Codeine 60mg tablets,367411000001105,AMP,0407020C0AAAFAF -39320911000001104,Codeine 60mg tablets,39320911000001104,AMP,0407020C0AAAFAF -41926811000001109,Codeine 60mg tablets,41926811000001109,AMP,0407020C0AAAFAF -357011000001107,Codeine 60mg tablets,357011000001107,AMP,0407020C0AAAFAF -11531811000001109,Codeine 60mg tablets,11531811000001109,AMP,0407020C0AAAFAF -29798011000001105,Codeine 60mg tablets,29798011000001105,AMP,0407020C0AAAFAF -273211000001103,Codeine 60mg tablets,273211000001103,AMP,0407020C0AAAFAF -21948511000001107,Codeine 60mg tablets,21948511000001107,AMP,0407020C0AAAFAF -628311000001101,Codeine 60mg tablets,628311000001101,AMP,0407020C0AAAFAF -36090211000001109,Codeine phosphate powder,36090211000001109,VMP,0407020C0AAAGAG -5147011000001103,Codeine phosphate powder,5147011000001103,AMP,0407020C0AAAGAG -15247511000001107,Codeine phosphate powder,15247511000001107,AMP,0407020C0AAAGAG -5147211000001108,Codeine phosphate powder,5147211000001108,AMP,0407020C0AAAGAG -5147411000001107,Codeine phosphate powder,5147411000001107,AMP,0407020C0AAAGAG -12388811000001109,Codeine 30mg/1ml solution for injection ampoules,12388811000001109,VMP,0407020C0AAAHAH -12315611000001102,Codeine 30mg/1ml solution for injection ampoules,12315611000001102,AMP,0407020C0AAAHAH -21148211000001106,Codeine 5mg suppositories,21148211000001106,VMP,0407020C0AAAKAK -21130211000001107,Codeine 5mg suppositories,21130211000001107,AMP,0407020C0AAAKAK -18519311000001102,Codeine 10mg suppositories,18519311000001102,VMP,0407020C0AAALAL -18511211000001109,Codeine 10mg suppositories,18511211000001109,AMP,0407020C0AAALAL -21148311000001103,Codeine 6mg suppositories,21148311000001103,VMP,0407020C0AAAMAM -21130411000001106,Codeine 6mg suppositories,21130411000001106,AMP,0407020C0AAAMAM -11815511000001102,Codeine 50mg/5ml oral solution,11815511000001102,VMP,0407020C0AAANAN -11803611000001100,Codeine 50mg/5ml oral solution,11803611000001100,AMP,0407020C0AAANAN -11815411000001101,Codeine 30mg/5ml oral solution,11815411000001101,VMP,0407020C0AAAPAP -11803311000001105,Codeine 30mg/5ml oral solution,11803311000001105,AMP,0407020C0AAAPAP -21290211000001100,Codeine 15mg suppositories,21290211000001100,VMP,0407020C0AAAQAQ -21269811000001105,Codeine 15mg suppositories,21269811000001105,AMP,0407020C0AAAQAQ -20454511000001107,Codeine 30mg suppositories,20454511000001107,VMP,0407020C0AAASAS -20421811000001109,Codeine 30mg suppositories,20421811000001109,AMP,0407020C0AAASAS -11815611000001103,Codeine 60mg/5ml oral solution,11815611000001103,VMP,0407020C0AAAVAV -11803911000001106,Codeine 60mg/5ml oral solution,11803911000001106,AMP,0407020C0AAAVAV -8428111000001105,Codeine 5mg/5ml oral solution,8428111000001105,VMP,0407020C0AAAXAX -8428211000001104,Codeine 5mg/5ml oral suspension,8428211000001104,VMP,0407020C0AAAXAX -8405711000001109,Codeine 5mg/5ml oral solution,8405711000001109,AMP,0407020C0AAAXAX -8406311000001100,Codeine 5mg/5ml oral suspension,8406311000001100,AMP,0407020C0AAAXAX -8427911000001107,Codeine 10mg/5ml oral solution,8427911000001107,VMP,0407020C0AAAYAY -8428011000001109,Codeine 10mg/5ml oral suspension,8428011000001109,VMP,0407020C0AAAYAY -8405411000001103,Codeine 10mg/5ml oral solution,8405411000001103,AMP,0407020C0AAAYAY -8406011000001103,Codeine 10mg/5ml oral suspension,8406011000001103,AMP,0407020C0AAAYAY -8087411000001101,Codeine 6.75mg/5ml oral solution,8087411000001101,VMP,0407020C0AABABA -20122011000001107,Codeine 20mg suppositories,20122011000001107,VMP,0407020C0AABBBB -20116511000001109,Codeine 20mg suppositories,20116511000001109,AMP,0407020C0AABBBB -21148111000001100,Codeine 1mg suppositories,21148111000001100,VMP,0407020C0AABCBC -21130811000001108,Codeine 1mg suppositories,21130811000001108,AMP,0407020C0AABCBC -8086211000001102,Bepro 6.75mg/5ml syrup,8086211000001102,AMP,0407020C0BBAABA -36045211000001108,Ibuprofen 300mg modified-release / Codeine 20mg tablets,36045211000001108,VMP,1001010J0AAARAR -42104611000001105,Ibuprofen 200mg / Codeine 12.8mg tablets,42104611000001105,VMP,1001010J0AAAYAY -31004511000001103,Boots Ibuprofen and Codeine 200mg/12.8mg tablets,31004511000001103,AMP,1001010J0CFADAY -10194911000001107,Solpadeine Migraine Ibuprofen & Codeine tablets,10194911000001107,AMP,1001010J0DGAAAY -322307006,VMP previous to 42010211000001106,322307006,VMP,0407010F0AAAAAA -322310004,VMP previous to 39695111000001108,322310004,VMP,0407010M0AAABAB -322323006,VMP previous to 42009611000001100,322323006,VMP,0407010F0AAAQAQ -322325004,VMP previous to 42009911000001106,322325004,VMP,0407010F0AAARAR -322341003,VMP previous to 42009811000001101,322341003,VMP,0407010F0AAAHAH -322343000,VMP previous to 42010111000001100,322343000,VMP,0407010F0AAACAC -322344006,VMP previous to 42010011000001101,322344006,VMP,0407010F0AAABAB -322365000,VMP previous to 42009711000001109,322365000,VMP,0407010F0AAAFAF -322366004,VMP previous to 42009511000001104,322366004,VMP,0407010F0AAADAD -322379008,VMP previous to 42009411000001103,322379008,VMP,0407010F0AAAPAP -322502004,VMP previous to 42010311000001103,322502004,VMP,0407020C0AAADAD -322503009,VMP previous to 42010411000001105,322503009,VMP,0407020C0AAAEAE -322504003,VMP previous to 42010511000001109,322504003,VMP,0407020C0AAAFAF -322505002,VMP previous to 36566111000001100,322505002,VMP,0407020C0AAABAB -322506001,VMP previous to 36090011000001104,322506001,VMP,0407020C0AAAAAA -322507005,VMP previous to 36090211000001109,322507005,VMP,0407020C0AAAGAG -329683004,VMP previous to 42104611000001105,329683004,VMP,1001010J0AAAYAY -329713000,VMP previous to 36045211000001108,329713000,VMP,1001010J0AAARAR diff --git a/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-long-acting-opioids-dmd.csv b/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-long-acting-opioids-dmd.csv index d3984467f..327904cdf 100644 --- a/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-long-acting-opioids-dmd.csv +++ b/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-long-acting-opioids-dmd.csv @@ -1,7 +1,9 @@ code,term,dmd_id,dmd_type,bnf_code 35920311000001103,Tramadol 100mg modified-release tablets,35920311000001103,VMP,040702040AAACAC 35920611000001108,Tramadol 150mg modified-release tablets,35920611000001108,VMP,040702040AAADAD +42490811000001102,Tramadol 150mg modified-release tablets,42490811000001102,AMP,040702040AAADAD 35920811000001107,Tramadol 200mg modified-release tablets,35920811000001107,VMP,040702040AAAEAE +42491611000001106,Tramadol 200mg modified-release tablets,42491611000001106,AMP,040702040AAAEAE 35940111000001103,Tramadol 50mg modified-release capsules,35940111000001103,VMP,040702040AAAGAG 28838511000001107,Tramadol 50mg modified-release capsules,28838511000001107,AMP,040702040AAAGAG 40589011000001102,Tramadol 50mg modified-release capsules,40589011000001102,AMP,040702040AAAGAG @@ -228,11 +230,11 @@ code,term,dmd_id,dmd_type,bnf_code 29838411000001106,Longtec 15mg modified-release tablets,29838411000001106,AMP,0407020ADBEAGAS 29838611000001109,Longtec 30mg modified-release tablets,29838611000001109,AMP,0407020ADBEAHAR 29838811000001108,Longtec 60mg modified-release tablets,29838811000001108,AMP,0407020ADBEAIAQ -20968611000001105,Oxylan 5mg modified-release tablets,20968611000001105,AMP,0407020ADBFAAAK -20968811000001109,Oxylan 10mg modified-release tablets,20968811000001109,AMP,0407020ADBFABAF -20969011000001108,Oxylan 20mg modified-release tablets,20969011000001108,AMP,0407020ADBFACAG -20969211000001103,Oxylan 40mg modified-release tablets,20969211000001103,AMP,0407020ADBFADAH -20969411000001104,Oxylan 80mg modified-release tablets,20969411000001104,AMP,0407020ADBFAEAI +20968611000001105,Oxylan 5mg prolonged-release tablets,20968611000001105,AMP,0407020ADBFAAAK +20968811000001109,Oxylan 10mg prolonged-release tablets,20968811000001109,AMP,0407020ADBFABAF +20969011000001108,Oxylan 20mg prolonged-release tablets,20969011000001108,AMP,0407020ADBFACAG +20969211000001103,Oxylan 40mg prolonged-release tablets,20969211000001103,AMP,0407020ADBFADAH +20969411000001104,Oxylan 80mg prolonged-release tablets,20969411000001104,AMP,0407020ADBFAEAI 22416411000001100,Oxylan 5mg modified-release tablets,22416411000001100,AMP,0407020ADBFAFAK 22417611000001100,Oxylan 10mg modified-release tablets,22417611000001100,AMP,0407020ADBFAGAF 22417811000001101,Oxylan 20mg modified-release tablets,22417811000001101,AMP,0407020ADBFAHAG @@ -327,9 +329,13 @@ code,term,dmd_id,dmd_type,bnf_code 38802411000001104,Oxyargin 20mg/10mg modified-release tablets,38802411000001104,AMP,0407020AFBDACAB 38802811000001102,Oxyargin 40mg/20mg modified-release tablets,38802811000001102,AMP,0407020AFBDADAD 18672211000001103,Tapentadol 50mg modified-release tablets,18672211000001103,VMP,0407020AGAAACAC +42540411000001100,Tapentadol 50mg modified-release tablets,42540411000001100,AMP,0407020AGAAACAC 18671811000001106,Tapentadol 100mg modified-release tablets,18671811000001106,VMP,0407020AGAAADAD +42540711000001106,Tapentadol 100mg modified-release tablets,42540711000001106,AMP,0407020AGAAADAD 18671911000001101,Tapentadol 150mg modified-release tablets,18671911000001101,VMP,0407020AGAAAEAE +42540911000001108,Tapentadol 150mg modified-release tablets,42540911000001108,AMP,0407020AGAAAEAE 18672011000001108,Tapentadol 200mg modified-release tablets,18672011000001108,VMP,0407020AGAAAFAF +42541111000001104,Tapentadol 200mg modified-release tablets,42541111000001104,AMP,0407020AGAAAFAF 18672111000001109,Tapentadol 250mg modified-release tablets,18672111000001109,VMP,0407020AGAAAGAG 39819711000001100,Tapentadol 25mg modified-release tablets,39819711000001100,VMP,0407020AGAAAIAI 18663511000001100,Palexia SR 50mg tablets,18663511000001100,AMP,0407020AGBBACAC diff --git a/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-opioids-for-analgesia-dmd.csv b/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-opioids-for-analgesia-dmd.csv index bf6986b4a..0af280e67 100644 --- a/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-opioids-for-analgesia-dmd.csv +++ b/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-opioids-for-analgesia-dmd.csv @@ -181,6 +181,7 @@ code,term,dmd_id,dmd_type,bnf_code 38555211000001104,Co-codamol 8mg/500mg effervescent tablets sugar free,38555211000001104,VMP,0407010F0AABABA 38741511000001100,Co-codamol 8mg/500mg effervescent tablets sugar free,38741511000001100,AMP,0407010F0AABABA 38525011000001108,Co-codamol 8mg/500mg effervescent tablets sugar free,38525011000001108,AMP,0407010F0AABABA +42596811000001107,Co-codamol 8mg/500mg effervescent tablets sugar free,42596811000001107,AMP,0407010F0AABABA 772811000001100,Paracodol 8mg/500mg capsules,772811000001100,AMP,0407010F0BBAAAB 655311000001106,Paracodol 8mg/500mg effervescent tablets,655311000001106,AMP,0407010F0BBABAC 9475011000001100,Migraine Relief 8mg/500mg capsules,9475011000001100,AMP,0407010F0BCABAB @@ -231,8 +232,8 @@ code,term,dmd_id,dmd_type,bnf_code 30018111000001108,Co-dydramol 10mg/500mg tablets,30018111000001108,AMP,0407010N0AAAAAA 38856111000001100,Co-dydramol 10mg/500mg tablets,38856111000001100,AMP,0407010N0AAAAAA 17888211000001107,Co-dydramol 10mg/500mg tablets,17888211000001107,AMP,0407010N0AAAAAA -834011000001100,Co-dydramol 10mg/500mg tablets,834011000001100,AMP,0407010N0AAAAAA 15093811000001102,Co-dydramol 10mg/500mg tablets,15093811000001102,AMP,0407010N0AAAAAA +834011000001100,Co-dydramol 10mg/500mg tablets,834011000001100,AMP,0407010N0AAAAAA 783711000001106,Co-dydramol 10mg/500mg tablets,783711000001106,AMP,0407010N0AAAAAA 818811000001109,Co-dydramol 10mg/500mg tablets,818811000001109,AMP,0407010N0AAAAAA 831711000001101,Co-dydramol 10mg/500mg tablets,831711000001101,AMP,0407010N0AAAAAA @@ -283,9 +284,9 @@ code,term,dmd_id,dmd_type,bnf_code 12884111000001105,Co-proxamol 32.5mg/325mg tablets,12884111000001105,AMP,0407010Q0AAAAAA 31552211000001100,Co-proxamol 32.5mg/325mg tablets,31552211000001100,AMP,0407010Q0AAAAAA 18106711000001101,Co-proxamol 32.5mg/325mg tablets,18106711000001101,AMP,0407010Q0AAAAAA -269611000001108,Co-proxamol 32.5mg/325mg tablets,269611000001108,AMP,0407010Q0AAAAAA 194811000001109,Co-proxamol 32.5mg/325mg tablets,194811000001109,AMP,0407010Q0AAAAAA 29799511000001108,Co-proxamol 32.5mg/325mg tablets,29799511000001108,AMP,0407010Q0AAAAAA +269611000001108,Co-proxamol 32.5mg/325mg tablets,269611000001108,AMP,0407010Q0AAAAAA 769511000001101,Co-proxamol 32.5mg/325mg tablets,769511000001101,AMP,0407010Q0AAAAAA 776411000001101,Co-proxamol 32.5mg/325mg tablets,776411000001101,AMP,0407010Q0AAAAAA 8427811000001102,Co-proxamol 32.5mg/325mg/5ml oral suspension,8427811000001102,VMP,0407010Q0AAADAD @@ -330,10 +331,10 @@ code,term,dmd_id,dmd_type,bnf_code 11415411000001109,Tramadol 50mg capsules,11415411000001109,AMP,040702040AAAAAA 17860911000001102,Tramadol 50mg capsules,17860911000001102,AMP,040702040AAAAAA 40703011000001103,Tramadol 50mg capsules,40703011000001103,AMP,040702040AAAAAA -849011000001103,Tramadol 50mg capsules,849011000001103,AMP,040702040AAAAAA 36925411000001101,Tramadol 50mg capsules,36925411000001101,AMP,040702040AAAAAA 24622911000001109,Tramadol 50mg capsules,24622911000001109,AMP,040702040AAAAAA 15195711000001100,Tramadol 50mg capsules,15195711000001100,AMP,040702040AAAAAA +849011000001103,Tramadol 50mg capsules,849011000001103,AMP,040702040AAAAAA 796411000001109,Tramadol 50mg capsules,796411000001109,AMP,040702040AAAAAA 26787711000001101,Tramadol 50mg capsules,26787711000001101,AMP,040702040AAAAAA 812811000001107,Tramadol 50mg capsules,812811000001107,AMP,040702040AAAAAA @@ -348,7 +349,9 @@ code,term,dmd_id,dmd_type,bnf_code 28798511000001104,Tramadol 100mg/2ml solution for injection ampoules,28798511000001104,AMP,040702040AAABAB 35920311000001103,Tramadol 100mg modified-release tablets,35920311000001103,VMP,040702040AAACAC 35920611000001108,Tramadol 150mg modified-release tablets,35920611000001108,VMP,040702040AAADAD +42490811000001102,Tramadol 150mg modified-release tablets,42490811000001102,AMP,040702040AAADAD 35920811000001107,Tramadol 200mg modified-release tablets,35920811000001107,VMP,040702040AAAEAE +42491611000001106,Tramadol 200mg modified-release tablets,42491611000001106,AMP,040702040AAAEAE 39714911000001102,Tramadol 50mg soluble tablets sugar free,39714911000001102,VMP,040702040AAAFAF 35940111000001103,Tramadol 50mg modified-release capsules,35940111000001103,VMP,040702040AAAGAG 28838511000001107,Tramadol 50mg modified-release capsules,28838511000001107,AMP,040702040AAAGAG @@ -681,12 +684,12 @@ code,term,dmd_id,dmd_type,bnf_code 40630111000001106,Fenhuma 400microgram sublingual tablets,40630111000001106,AMP,0407020A0BXADAZ 40630611000001103,Fenhuma 300microgram sublingual tablets,40630611000001103,AMP,0407020A0BXAEAY 40631111000001100,Fenhuma 200microgram sublingual tablets,40631111000001100,AMP,0407020A0BXAFAX -42283711000001101,Iremia 67microgram sublingual tablets,42283711000001101,AMP,0407020A0BYAACA -42282511000001104,Iremia 133microgram sublingual tablets,42282511000001104,AMP,0407020A0BYABBX -42282811000001101,Iremia 267microgram sublingual tablets,42282811000001101,AMP,0407020A0BYACBZ -42283111000001102,Iremia 400microgram sublingual tablets,42283111000001102,AMP,0407020A0BYADAZ -42283411000001107,Iremia 533microgram sublingual tablets,42283411000001107,AMP,0407020A0BYAEBY -42284011000001101,Iremia 800microgram sublingual tablets,42284011000001101,AMP,0407020A0BYAFBB +42282511000001104,Iremia 133microgram sublingual tablets,42282511000001104,AMP,0407020A0BYAGCB +42282811000001101,Iremia 267microgram sublingual tablets,42282811000001101,AMP,0407020A0BYAHCC +42283111000001102,Iremia 400microgram sublingual tablets,42283111000001102,AMP,0407020A0BYAICD +42283411000001107,Iremia 533microgram sublingual tablets,42283411000001107,AMP,0407020A0BYAJCE +42283711000001101,Iremia 67microgram sublingual tablets,42283711000001101,AMP,0407020A0BYAKCF +42284011000001101,Iremia 800microgram sublingual tablets,42284011000001101,AMP,0407020A0BYALCG 14615911000001108,Papaveretum 7.7mg/1ml solution for injection ampoules,14615911000001108,VMP,0407020ABAAAAAA 10055711000001107,Papaveretum 7.7mg/1ml solution for injection ampoules,10055711000001107,AMP,0407020ABAAAAAA 9768811000001103,Papaveretum 7.7mg/1ml solution for injection ampoules,9768811000001103,AMP,0407020ABAAAAAA @@ -708,7 +711,9 @@ code,term,dmd_id,dmd_type,bnf_code 36468311000001107,Oxycodone 5mg/5ml oral solution sugar free,36468311000001107,AMP,0407020ADAAAAAA 30824811000001101,Oxycodone 5mg/5ml oral solution sugar free,30824811000001101,AMP,0407020ADAAAAAA 36854211000001105,Oxycodone 5mg/5ml oral solution sugar free,36854211000001105,AMP,0407020ADAAAAAA +42527211000001103,Oxycodone 5mg/5ml oral solution sugar free,42527211000001103,AMP,0407020ADAAAAAA 39073511000001103,Oxycodone 5mg/5ml oral solution sugar free,39073511000001103,AMP,0407020ADAAAAAA +42510211000001108,Oxycodone 5mg/5ml oral solution sugar free,42510211000001108,AMP,0407020ADAAAAAA 19661411000001101,Oxycodone 5mg/5ml oral solution sugar free,19661411000001101,AMP,0407020ADAAAAAA 36130011000001103,Oxycodone 10mg/ml oral solution sugar free,36130011000001103,VMP,0407020ADAAABAB 19670811000001101,Oxycodone 10mg/ml oral solution sugar free,19670811000001101,AMP,0407020ADAAABAB @@ -717,6 +722,7 @@ code,term,dmd_id,dmd_type,bnf_code 36854411000001109,Oxycodone 10mg/ml oral solution sugar free,36854411000001109,AMP,0407020ADAAABAB 40538911000001104,Oxycodone 10mg/ml oral solution sugar free,40538911000001104,AMP,0407020ADAAABAB 39073311000001109,Oxycodone 10mg/ml oral solution sugar free,39073311000001109,AMP,0407020ADAAABAB +42493811000001109,Oxycodone 10mg/ml oral solution sugar free,42493811000001109,AMP,0407020ADAAABAB 19662111000001101,Oxycodone 10mg/ml oral solution sugar free,19662111000001101,AMP,0407020ADAAABAB 42016011000001103,Oxycodone 5mg capsules,42016011000001103,VMP,0407020ADAAACAC 42015811000001101,Oxycodone 10mg capsules,42015811000001101,VMP,0407020ADAAADAD @@ -795,11 +801,11 @@ code,term,dmd_id,dmd_type,bnf_code 29838411000001106,Longtec 15mg modified-release tablets,29838411000001106,AMP,0407020ADBEAGAS 29838611000001109,Longtec 30mg modified-release tablets,29838611000001109,AMP,0407020ADBEAHAR 29838811000001108,Longtec 60mg modified-release tablets,29838811000001108,AMP,0407020ADBEAIAQ -20968611000001105,Oxylan 5mg modified-release tablets,20968611000001105,AMP,0407020ADBFAAAK -20968811000001109,Oxylan 10mg modified-release tablets,20968811000001109,AMP,0407020ADBFABAF -20969011000001108,Oxylan 20mg modified-release tablets,20969011000001108,AMP,0407020ADBFACAG -20969211000001103,Oxylan 40mg modified-release tablets,20969211000001103,AMP,0407020ADBFADAH -20969411000001104,Oxylan 80mg modified-release tablets,20969411000001104,AMP,0407020ADBFAEAI +20968611000001105,Oxylan 5mg prolonged-release tablets,20968611000001105,AMP,0407020ADBFAAAK +20968811000001109,Oxylan 10mg prolonged-release tablets,20968811000001109,AMP,0407020ADBFABAF +20969011000001108,Oxylan 20mg prolonged-release tablets,20969011000001108,AMP,0407020ADBFACAG +20969211000001103,Oxylan 40mg prolonged-release tablets,20969211000001103,AMP,0407020ADBFADAH +20969411000001104,Oxylan 80mg prolonged-release tablets,20969411000001104,AMP,0407020ADBFAEAI 22416411000001100,Oxylan 5mg modified-release tablets,22416411000001100,AMP,0407020ADBFAFAK 22417611000001100,Oxylan 10mg modified-release tablets,22417611000001100,AMP,0407020ADBFAGAF 22417811000001101,Oxylan 20mg modified-release tablets,22417811000001101,AMP,0407020ADBFAHAG @@ -912,9 +918,13 @@ code,term,dmd_id,dmd_type,bnf_code 42017511000001108,Tapentadol 50mg tablets,42017511000001108,VMP,0407020AGAAAAAA 42017611000001107,Tapentadol 75mg tablets,42017611000001107,VMP,0407020AGAAABAB 18672211000001103,Tapentadol 50mg modified-release tablets,18672211000001103,VMP,0407020AGAAACAC +42540411000001100,Tapentadol 50mg modified-release tablets,42540411000001100,AMP,0407020AGAAACAC 18671811000001106,Tapentadol 100mg modified-release tablets,18671811000001106,VMP,0407020AGAAADAD +42540711000001106,Tapentadol 100mg modified-release tablets,42540711000001106,AMP,0407020AGAAADAD 18671911000001101,Tapentadol 150mg modified-release tablets,18671911000001101,VMP,0407020AGAAAEAE +42540911000001108,Tapentadol 150mg modified-release tablets,42540911000001108,AMP,0407020AGAAAEAE 18672011000001108,Tapentadol 200mg modified-release tablets,18672011000001108,VMP,0407020AGAAAFAF +42541111000001104,Tapentadol 200mg modified-release tablets,42541111000001104,AMP,0407020AGAAAFAF 18672111000001109,Tapentadol 250mg modified-release tablets,18672111000001109,VMP,0407020AGAAAGAG 24408811000001107,Tapentadol 20mg/ml oral solution sugar free,24408811000001107,VMP,0407020AGAAAHAH 39819711000001100,Tapentadol 25mg modified-release tablets,39819711000001100,VMP,0407020AGAAAIAI @@ -1051,9 +1061,9 @@ code,term,dmd_id,dmd_type,bnf_code 39206611000001109,Codeine 15mg tablets,39206611000001109,AMP,0407020C0AAADAD 41927111000001104,Codeine 15mg tablets,41927111000001104,AMP,0407020C0AAADAD 17887711000001101,Codeine 15mg tablets,17887711000001101,AMP,0407020C0AAADAD -123811000001101,Codeine 15mg tablets,123811000001101,AMP,0407020C0AAADAD 11531411000001107,Codeine 15mg tablets,11531411000001107,AMP,0407020C0AAADAD 15205411000001106,Codeine 15mg tablets,15205411000001106,AMP,0407020C0AAADAD +123811000001101,Codeine 15mg tablets,123811000001101,AMP,0407020C0AAADAD 34760811000001104,Codeine 15mg tablets,34760811000001104,AMP,0407020C0AAADAD 613111000001104,Codeine 15mg tablets,613111000001104,AMP,0407020C0AAADAD 21946111000001102,Codeine 15mg tablets,21946111000001102,AMP,0407020C0AAADAD @@ -1073,10 +1083,10 @@ code,term,dmd_id,dmd_type,bnf_code 38862111000001108,Codeine 30mg tablets,38862111000001108,AMP,0407020C0AAAEAE 41927511000001108,Codeine 30mg tablets,41927511000001108,AMP,0407020C0AAAEAE 17888011000001102,Codeine 30mg tablets,17888011000001102,AMP,0407020C0AAAEAE -380611000001107,Codeine 30mg tablets,380611000001107,AMP,0407020C0AAAEAE 11531611000001105,Codeine 30mg tablets,11531611000001105,AMP,0407020C0AAAEAE 29797511000001101,Codeine 30mg tablets,29797511000001101,AMP,0407020C0AAAEAE 34761111000001100,Codeine 30mg tablets,34761111000001100,AMP,0407020C0AAAEAE +380611000001107,Codeine 30mg tablets,380611000001107,AMP,0407020C0AAAEAE 297411000001104,Codeine 30mg tablets,297411000001104,AMP,0407020C0AAAEAE 21946811000001109,Codeine 30mg tablets,21946811000001109,AMP,0407020C0AAAEAE 438511000001106,Codeine 30mg tablets,438511000001106,AMP,0407020C0AAAEAE @@ -1091,9 +1101,9 @@ code,term,dmd_id,dmd_type,bnf_code 367411000001105,Codeine 60mg tablets,367411000001105,AMP,0407020C0AAAFAF 39320911000001104,Codeine 60mg tablets,39320911000001104,AMP,0407020C0AAAFAF 41926811000001109,Codeine 60mg tablets,41926811000001109,AMP,0407020C0AAAFAF -357011000001107,Codeine 60mg tablets,357011000001107,AMP,0407020C0AAAFAF 11531811000001109,Codeine 60mg tablets,11531811000001109,AMP,0407020C0AAAFAF 29798011000001105,Codeine 60mg tablets,29798011000001105,AMP,0407020C0AAAFAF +357011000001107,Codeine 60mg tablets,357011000001107,AMP,0407020C0AAAFAF 273211000001103,Codeine 60mg tablets,273211000001103,AMP,0407020C0AAAFAF 21948511000001107,Codeine 60mg tablets,21948511000001107,AMP,0407020C0AAAFAF 628311000001101,Codeine 60mg tablets,628311000001101,AMP,0407020C0AAAFAF @@ -1169,8 +1179,8 @@ code,term,dmd_id,dmd_type,bnf_code 37058011000001109,Dihydrocodeine 30mg tablets,37058011000001109,AMP,0407020G0AAACAC 38872711000001101,Dihydrocodeine 30mg tablets,38872711000001101,AMP,0407020G0AAACAC 17892511000001107,Dihydrocodeine 30mg tablets,17892511000001107,AMP,0407020G0AAACAC -548711000001106,Dihydrocodeine 30mg tablets,548711000001106,AMP,0407020G0AAACAC 15082011000001100,Dihydrocodeine 30mg tablets,15082011000001100,AMP,0407020G0AAACAC +548711000001106,Dihydrocodeine 30mg tablets,548711000001106,AMP,0407020G0AAACAC 29611000001109,Dihydrocodeine 30mg tablets,29611000001109,AMP,0407020G0AAACAC 194911000001104,Dihydrocodeine 30mg tablets,194911000001104,AMP,0407020G0AAACAC 21944811000001102,Dihydrocodeine 30mg tablets,21944811000001102,AMP,0407020G0AAACAC @@ -1358,6 +1368,8 @@ code,term,dmd_id,dmd_type,bnf_code 15105811000001106,Diamorphine hydrochloride powder,15105811000001106,AMP,0407020K0AAFPFP 37514111000001109,Diamorphine hydrochloride powder,37514111000001109,AMP,0407020K0AAFPFP 4306811000001100,Diamorphine hydrochloride powder,4306811000001100,AMP,0407020K0AAFPFP +42477011000001103,Diamorphine 500mg oral powder sachets,42477011000001103,VMP,0407020K0AAFQFQ +42447811000001108,Diamorphine 500mg oral powder sachets,42447811000001108,AMP,0407020K0AAFQFQ 39718711000001107,Meptazinol 100mg/1ml solution for injection ampoules,39718711000001107,VMP,0407020L0AAAAAA 39700411000001101,Meptazinol 200mg tablets,39700411000001101,VMP,0407020L0AAABAB 234611000001101,Meptid 200mg tablets,234611000001101,AMP,0407020L0BBAAAB diff --git a/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-strong-opioids-exc-tramadol-and-tapentadol-dmd.csv b/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-strong-opioids-exc-tramadol-and-tapentadol-dmd.csv new file mode 100644 index 000000000..fc4106769 --- /dev/null +++ b/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-strong-opioids-exc-tramadol-and-tapentadol-dmd.csv @@ -0,0 +1,1318 @@ +code,term,dmd_id,dmd_type,bnf_code +3897311000001109,Morphine tartrate 10mg/1ml / Cyclizine tartrate 50mg/1ml solution for injection ampoules,3897311000001109,VMP,040702020AAAAAA +7888211000001108,Morphine tartrate 10mg/1ml / Cyclizine tartrate 50mg/1ml solution for injection ampoules,7888211000001108,AMP,040702020AAAAAA +9762011000001106,Morphine tartrate 10mg/1ml / Cyclizine tartrate 50mg/1ml solution for injection ampoules,9762011000001106,AMP,040702020AAAAAA +8441511000001108,Morphine tartrate 10mg/1ml / Cyclizine tartrate 50mg/1ml solution for injection ampoules,8441511000001108,AMP,040702020AAAAAA +3897411000001102,Morphine tartrate 15mg/1ml / Cyclizine tartrate 50mg/1ml solution for injection ampoules,3897411000001102,VMP,040702020AAABAB +7887911000001100,Morphine tartrate 15mg/1ml / Cyclizine tartrate 50mg/1ml solution for injection ampoules,7887911000001100,AMP,040702020AAABAB +9762211000001101,Morphine tartrate 15mg/1ml / Cyclizine tartrate 50mg/1ml solution for injection ampoules,9762211000001101,AMP,040702020AAABAB +8442211000001103,Morphine tartrate 15mg/1ml / Cyclizine tartrate 50mg/1ml solution for injection ampoules,8442211000001103,AMP,040702020AAABAB +3885111000001102,Cyclimorph 10 solution for injection 1ml ampoules,3885111000001102,AMP,040702020BBAAAA +3884611000001109,Cyclimorph 15 solution for injection 1ml ampoules,3884611000001109,AMP,040702020BBABAB +36057211000001102,Hydromorphone 16mg modified-release capsules,36057211000001102,VMP,040702050AAAAAA +36057311000001105,Hydromorphone 24mg modified-release capsules,36057311000001105,VMP,040702050AAABAB +36057711000001109,Hydromorphone 8mg modified-release capsules,36057711000001109,VMP,040702050AAACAC +42012911000001103,Hydromorphone 2.6mg capsules,42012911000001103,VMP,040702050AAADAD +42012811000001108,Hydromorphone 1.3mg capsules,42012811000001108,VMP,040702050AAAEAE +36057411000001103,Hydromorphone 2mg modified-release capsules,36057411000001103,VMP,040702050AAAFAF +36057611000001100,Hydromorphone 4mg modified-release capsules,36057611000001100,VMP,040702050AAAGAG +26453211000001104,Hydromorphone 5mg/5ml oral solution,26453211000001104,VMP,040702050AAAKAK +26241811000001100,Hydromorphone 5mg/5ml oral solution,26241811000001100,AMP,040702050AAAKAK +36057511000001104,Hydromorphone 2mg/1ml solution for injection ampoules,36057511000001104,VMP,040702050AAALAL +19822311000001101,Hydromorphone 20mg/1ml solution for injection ampoules,19822311000001101,VMP,040702050AAAMAM +19809811000001107,Hydromorphone 20mg/1ml solution for injection ampoules,19809811000001107,AMP,040702050AAAMAM +36057111000001108,Hydromorphone 10mg/1ml solution for injection ampoules,36057111000001108,VMP,040702050AAANAN +19809511000001109,Hydromorphone 10mg/1ml solution for injection ampoules,19809511000001109,AMP,040702050AAANAN +15774711000001101,Hydromorphone 50mg/1ml solution for injection ampoules,15774711000001101,VMP,040702050AAAPAP +15699111000001103,Hydromorphone 50mg/1ml solution for injection ampoules,15699111000001103,AMP,040702050AAAPAP +3836411000001105,Palladone 1.3mg capsules,3836411000001105,AMP,040702050BBAAAE +3837511000001106,Palladone 2.6mg capsules,3837511000001106,AMP,040702050BBABAD +3869411000001108,Palladone SR 2mg capsules,3869411000001108,AMP,040702050BBACAF +3838511000001105,Palladone SR 4mg capsules,3838511000001105,AMP,040702050BBADAG +3870411000001105,Palladone SR 8mg capsules,3870411000001105,AMP,040702050BBAEAC +4001411000001107,Palladone SR 16mg capsules,4001411000001107,AMP,040702050BBAFAA +4004111000001104,Palladone SR 24mg capsules,4004111000001104,AMP,040702050BBAGAB +33367011000001107,Palladone 2mg/1ml solution for injection ampoules,33367011000001107,AMP,040702050BBAHAL +33360511000001103,Palladone 20mg/1ml solution for injection ampoules,33360511000001103,AMP,040702050BBAIAM +33367711000001109,Palladone 10mg/1ml solution for injection ampoules,33367711000001109,AMP,040702050BBAJAN +33362711000001107,Palladone 50mg/1ml solution for injection ampoules,33362711000001107,AMP,040702050BBAKAP +36120011000001101,Fentanyl 25micrograms/hour transdermal patches,36120011000001101,VMP,0407020A0AAAEAE +15023811000001107,Fentanyl 25micrograms/hour transdermal patches,15023811000001107,AMP,0407020A0AAAEAE +10724711000001109,Fentanyl 25micrograms/hour transdermal patches,10724711000001109,AMP,0407020A0AAAEAE +13440611000001102,Fentanyl 25micrograms/hour transdermal patches,13440611000001102,AMP,0407020A0AAAEAE +36120211000001106,Fentanyl 50micrograms/hour transdermal patches,36120211000001106,VMP,0407020A0AAAFAF +15024011000001104,Fentanyl 50micrograms/hour transdermal patches,15024011000001104,AMP,0407020A0AAAFAF +10724911000001106,Fentanyl 50micrograms/hour transdermal patches,10724911000001106,AMP,0407020A0AAAFAF +13440811000001103,Fentanyl 50micrograms/hour transdermal patches,13440811000001103,AMP,0407020A0AAAFAF +36120311000001103,Fentanyl 75micrograms/hour transdermal patches,36120311000001103,VMP,0407020A0AAAGAG +15024211000001109,Fentanyl 75micrograms/hour transdermal patches,15024211000001109,AMP,0407020A0AAAGAG +10725111000001107,Fentanyl 75micrograms/hour transdermal patches,10725111000001107,AMP,0407020A0AAAGAG +13441011000001100,Fentanyl 75micrograms/hour transdermal patches,13441011000001100,AMP,0407020A0AAAGAG +36119911000001103,Fentanyl 100micrograms/hour transdermal patches,36119911000001103,VMP,0407020A0AAAHAH +15024411000001108,Fentanyl 100micrograms/hour transdermal patches,15024411000001108,AMP,0407020A0AAAHAH +10725311000001109,Fentanyl 100micrograms/hour transdermal patches,10725311000001109,AMP,0407020A0AAAHAH +13441211000001105,Fentanyl 100micrograms/hour transdermal patches,13441211000001105,AMP,0407020A0AAAHAH +42011911000001109,Fentanyl 200microgram lozenges,42011911000001109,VMP,0407020A0AAAIAI +42012011000001102,Fentanyl 400microgram lozenges,42012011000001102,VMP,0407020A0AAAJAJ +42012111000001101,Fentanyl 600microgram lozenges,42012111000001101,VMP,0407020A0AAAKAK +42012211000001107,Fentanyl 800microgram lozenges,42012211000001107,VMP,0407020A0AAALAL +42011711000001107,Fentanyl 1.2mg lozenges,42011711000001107,VMP,0407020A0AAANAN +42011811000001104,Fentanyl 1.6mg lozenges,42011811000001104,VMP,0407020A0AAAPAP +9752311000001101,Fentanyl 12micrograms/hour transdermal patches,9752311000001101,VMP,0407020A0AAAUAU +14951911000001104,Fentanyl 100microgram sublingual tablets sugar free,14951911000001104,VMP,0407020A0AAAWAW +14952011000001106,Fentanyl 200microgram sublingual tablets sugar free,14952011000001106,VMP,0407020A0AAAXAX +14952111000001107,Fentanyl 300microgram sublingual tablets sugar free,14952111000001107,VMP,0407020A0AAAYAY +14952211000001101,Fentanyl 400microgram sublingual tablets sugar free,14952211000001101,VMP,0407020A0AAAZAZ +14952311000001109,Fentanyl 600microgram sublingual tablets sugar free,14952311000001109,VMP,0407020A0AABABA +14952411000001102,Fentanyl 800microgram sublingual tablets sugar free,14952411000001102,VMP,0407020A0AABBBB +14973311000001101,Fentanyl 100microgram buccal tablets sugar free,14973311000001101,VMP,0407020A0AABCBC +14973411000001108,Fentanyl 200microgram buccal tablets sugar free,14973411000001108,VMP,0407020A0AABDBD +14973511000001107,Fentanyl 400microgram buccal tablets sugar free,14973511000001107,VMP,0407020A0AABEBE +14973611000001106,Fentanyl 600microgram buccal tablets sugar free,14973611000001106,VMP,0407020A0AABFBF +14973711000001102,Fentanyl 800microgram buccal tablets sugar free,14973711000001102,VMP,0407020A0AABGBG +16037811000001102,Fentanyl 50micrograms/dose nasal spray,16037811000001102,VMP,0407020A0AABHBH +16037611000001101,Fentanyl 100micrograms/dose nasal spray,16037611000001101,VMP,0407020A0AABJBJ +16037711000001105,Fentanyl 200micrograms/dose nasal spray,16037711000001105,VMP,0407020A0AABLBL +17674111000001105,Fentanyl 400micrograms/dose nasal spray,17674111000001105,VMP,0407020A0AABPBP +23560111000001105,Fentanyl 200microgram buccal films sugar free,23560111000001105,VMP,0407020A0AABTBT +23560211000001104,Fentanyl 400microgram buccal films sugar free,23560211000001104,VMP,0407020A0AABUBU +23560311000001107,Fentanyl 800microgram buccal films sugar free,23560311000001107,VMP,0407020A0AABVBV +23707711000001107,Fentanyl 37.5microgram/hour transdermal patches,23707711000001107,VMP,0407020A0AABWBW +24446611000001102,Fentanyl 133microgram sublingual tablets sugar free,24446611000001102,VMP,0407020A0AABXBX +24446811000001103,Fentanyl 533microgram sublingual tablets sugar free,24446811000001103,VMP,0407020A0AABYBY +24446711000001106,Fentanyl 267microgram sublingual tablets sugar free,24446711000001106,VMP,0407020A0AABZBZ +42288411000001101,Fentanyl 133microgram sublingual tablets,42288411000001101,VMP,0407020A0AACBCB +42288311000001108,Fentanyl 267microgram sublingual tablets,42288311000001108,VMP,0407020A0AACCCC +42288211000001100,Fentanyl 400microgram sublingual tablets,42288211000001100,VMP,0407020A0AACDCD +42288111000001106,Fentanyl 533microgram sublingual tablets,42288111000001106,VMP,0407020A0AACECE +42288011000001105,Fentanyl 67microgram sublingual tablets,42288011000001105,VMP,0407020A0AACFCF +42287911000001108,Fentanyl 800microgram sublingual tablets,42287911000001108,VMP,0407020A0AACGCG +2837011000001109,Durogesic 25micrograms transdermal patches,2837011000001109,AMP,0407020A0BBAAAE +2836411000001102,Durogesic 50micrograms transdermal patches,2836411000001102,AMP,0407020A0BBABAF +2836711000001108,Durogesic 75micrograms transdermal patches,2836711000001108,AMP,0407020A0BBACAG +2838111000001106,Durogesic 100micrograms transdermal patches,2838111000001106,AMP,0407020A0BBADAH +9089711000001102,Durogesic DTrans 25micrograms/hour transdermal patches,9089711000001102,AMP,0407020A0BBAIAE +9089911000001100,Durogesic DTrans 50micrograms/hour transdermal patches,9089911000001100,AMP,0407020A0BBAJAF +9090111000001109,Durogesic DTrans 75micrograms/hour transdermal patches,9090111000001109,AMP,0407020A0BBAKAG +9090311000001106,Durogesic DTrans 100micrograms/hour transdermal patches,9090311000001106,AMP,0407020A0BBALAH +9751111000001108,Durogesic DTrans 12micrograms/hour transdermal patches,9751111000001108,AMP,0407020A0BBAMAU +152911000001100,Actiq 200microgram lozenges with integral oromucosal applicator,152911000001100,AMP,0407020A0BCAAAI +437011000001104,Actiq 400microgram lozenges with integral oromucosal applicator,437011000001104,AMP,0407020A0BCABAJ +906611000001102,Actiq 600microgram lozenges with integral oromucosal applicator,906611000001102,AMP,0407020A0BCACAK +732011000001108,Actiq 800microgram lozenges with integral oromucosal applicator,732011000001108,AMP,0407020A0BCADAL +305111000001108,Actiq 1.2mg lozenges with integral oromucosal applicator,305111000001108,AMP,0407020A0BCAEAN +745311000001104,Actiq 1.6mg lozenges with integral oromucosal applicator,745311000001104,AMP,0407020A0BCAFAP +9508011000001106,Tilofyl 25micrograms/hour transdermal patches,9508011000001106,AMP,0407020A0BDAAAE +9508211000001101,Tilofyl 50micrograms/hour transdermal patches,9508211000001101,AMP,0407020A0BDABAF +9508511000001103,Tilofyl 75micrograms/hour transdermal patches,9508511000001103,AMP,0407020A0BDACAG +9508911000001105,Tilofyl 100micrograms/hour transdermal patches,9508911000001105,AMP,0407020A0BDADAH +11084511000001104,Matrifen 12micrograms/hour transdermal patches,11084511000001104,AMP,0407020A0BEAAAU +11084911000001106,Matrifen 25micrograms/hour transdermal patches,11084911000001106,AMP,0407020A0BEABAE +11085311000001109,Matrifen 50micrograms/hour transdermal patches,11085311000001109,AMP,0407020A0BEACAF +11085711000001108,Matrifen 75micrograms/hour transdermal patches,11085711000001108,AMP,0407020A0BEADAG +11085911000001105,Matrifen 100micrograms/hour transdermal patches,11085911000001105,AMP,0407020A0BEAEAH +12881511000001103,Mezolar Matrix 12micrograms/hour transdermal patches,12881511000001103,AMP,0407020A0BFAAAU +12881711000001108,Mezolar Matrix 25micrograms/hour transdermal patches,12881711000001108,AMP,0407020A0BFABAE +12882011000001103,Mezolar Matrix 50micrograms/hour transdermal patches,12882011000001103,AMP,0407020A0BFACAF +12882411000001107,Mezolar Matrix 75micrograms/hour transdermal patches,12882411000001107,AMP,0407020A0BFADAG +12882611000001105,Mezolar Matrix 100micrograms/hour transdermal patches,12882611000001105,AMP,0407020A0BFAEAH +23682311000001104,Mezolar Matrix 37.5microgram/hour transdermal patches,23682311000001104,AMP,0407020A0BFAFBW +12874811000001109,Fentalis Reservoir 25micrograms/hour transdermal patches,12874811000001109,AMP,0407020A0BGAAAE +12874911000001104,Fentalis Reservoir 50micrograms/hour transdermal patches,12874911000001104,AMP,0407020A0BGABAF +12875011000001104,Fentalis Reservoir 75micrograms/hour transdermal patches,12875011000001104,AMP,0407020A0BGACAG +12875111000001103,Fentalis Reservoir 100micrograms/hour transdermal patches,12875111000001103,AMP,0407020A0BGADAH +13567511000001103,Osmach 25micrograms/hour transdermal patches,13567511000001103,AMP,0407020A0BHAAAE +13567711000001108,Osmach 50micrograms/hour transdermal patches,13567711000001108,AMP,0407020A0BHABAF +13567911000001105,Osmach 75micrograms/hour transdermal patches,13567911000001105,AMP,0407020A0BHACAG +13568111000001108,Osmach 100micrograms/hour transdermal patches,13568111000001108,AMP,0407020A0BHADAH +14948311000001105,Abstral 100microgram sublingual tablets,14948311000001105,AMP,0407020A0BJAAAW +14950411000001103,Abstral 200microgram sublingual tablets,14950411000001103,AMP,0407020A0BJABAX +14949911000001103,Abstral 300microgram sublingual tablets,14949911000001103,AMP,0407020A0BJACAY +14949411000001106,Abstral 400microgram sublingual tablets,14949411000001106,AMP,0407020A0BJADAZ +14949011000001102,Abstral 600microgram sublingual tablets,14949011000001102,AMP,0407020A0BJAEBA +14948711000001109,Abstral 800microgram sublingual tablets,14948711000001109,AMP,0407020A0BJAFBB +14971111000001104,Effentora 100microgram buccal tablets,14971111000001104,AMP,0407020A0BKAABC +14971411000001109,Effentora 200microgram buccal tablets,14971411000001109,AMP,0407020A0BKABBD +14971711000001103,Effentora 400microgram buccal tablets,14971711000001103,AMP,0407020A0BKACBE +14972811000001102,Effentora 600microgram buccal tablets,14972811000001102,AMP,0407020A0BKADBF +14972311000001106,Effentora 800microgram buccal tablets,14972311000001106,AMP,0407020A0BKAEBG +15302411000001109,Osmanil 25micrograms/hour transdermal patches,15302411000001109,AMP,0407020A0BLAAAE +15302611000001107,Osmanil 50micrograms/hour transdermal patches,15302611000001107,AMP,0407020A0BLABAF +15302811000001106,Osmanil 75micrograms/hour transdermal patches,15302811000001106,AMP,0407020A0BLACAG +15303011000001109,Osmanil 100micrograms/hour transdermal patches,15303011000001109,AMP,0407020A0BLADAH +16088911000001101,Osmanil 12micrograms/hour transdermal patches,16088911000001101,AMP,0407020A0BLAEAU +15363211000001100,Victanyl 25micrograms/hour transdermal patches,15363211000001100,AMP,0407020A0BMAAAE +15363411000001101,Victanyl 50micrograms/hour transdermal patches,15363411000001101,AMP,0407020A0BMABAF +15363611000001103,Victanyl 75micrograms/hour transdermal patches,15363611000001103,AMP,0407020A0BMACAG +15363811000001104,Victanyl 100micrograms/hour transdermal patches,15363811000001104,AMP,0407020A0BMADAH +32520211000001103,Victanyl 12micrograms/hour transdermal patches,32520211000001103,AMP,0407020A0BMAEAU +16035311000001103,Instanyl 200micrograms/dose nasal spray,16035311000001103,AMP,0407020A0BNAGBL +16034711000001103,Instanyl 100micrograms/dose nasal spray,16034711000001103,AMP,0407020A0BNAHBJ +16034111000001104,Instanyl 50micrograms/dose nasal spray,16034111000001104,AMP,0407020A0BNAIBH +17668011000001105,PecFent 100micrograms/dose nasal spray,17668011000001105,AMP,0407020A0BPAABJ +17668511000001102,PecFent 400micrograms/dose nasal spray,17668511000001102,AMP,0407020A0BPABBP +19486711000001102,Fencino 12micrograms/hour transdermal patches,19486711000001102,AMP,0407020A0BQAAAU +19486911000001100,Fencino 25micrograms/hour transdermal patches,19486911000001100,AMP,0407020A0BQABAE +19487111000001100,Fencino 50micrograms/hour transdermal patches,19487111000001100,AMP,0407020A0BQACAF +19487311000001103,Fencino 75micrograms/hour transdermal patches,19487311000001103,AMP,0407020A0BQADAG +19487511000001109,Fencino 100micrograms/hour transdermal patches,19487511000001109,AMP,0407020A0BQAEAH +23449411000001109,Opiodur 12micrograms/hour transdermal patches,23449411000001109,AMP,0407020A0BRAAAU +23449611000001107,Opiodur 25micrograms/hour transdermal patches,23449611000001107,AMP,0407020A0BRABAE +23449811000001106,Opiodur 75micrograms/hour transdermal patches,23449811000001106,AMP,0407020A0BRACAG +23450011000001105,Opiodur 100micrograms/hour transdermal patches,23450011000001105,AMP,0407020A0BRADAH +23450311000001108,Opiodur 50micrograms/hour transdermal patches,23450311000001108,AMP,0407020A0BRAEAF +35358711000001106,Opiodur 12micrograms/hour transdermal patches,35358711000001106,AMP,0407020A0BRAFAU +35359311000001101,Opiodur 25micrograms/hour transdermal patches,35359311000001101,AMP,0407020A0BRAGAE +35359511000001107,Opiodur 50micrograms/hour transdermal patches,35359511000001107,AMP,0407020A0BRAHAF +35359711000001102,Opiodur 75micrograms/hour transdermal patches,35359711000001102,AMP,0407020A0BRAIAG +35359911000001100,Opiodur 100micrograms/hour transdermal patches,35359911000001100,AMP,0407020A0BRAJAH +37972611000001107,Opiodur 12micrograms/hour transdermal patches,37972611000001107,AMP,0407020A0BRAKAU +37973911000001108,Opiodur 25micrograms/hour transdermal patches,37973911000001108,AMP,0407020A0BRALAE +37974911000001105,Opiodur 50micrograms/hour transdermal patches,37974911000001105,AMP,0407020A0BRAMAF +37975411000001101,Opiodur 75micrograms/hour transdermal patches,37975411000001101,AMP,0407020A0BRANAG +37975711000001107,Opiodur 100micrograms/hour transdermal patches,37975711000001107,AMP,0407020A0BRAPAH +23523811000001103,Breakyl 200microgram buccal films,23523811000001103,AMP,0407020A0BSAABT +23524511000001103,Breakyl 400microgram buccal films,23524511000001103,AMP,0407020A0BSABBU +23524811000001100,Breakyl 800microgram buccal films,23524811000001100,AMP,0407020A0BSACBV +24406811000001106,Recivit 133microgram sublingual tablets,24406811000001106,AMP,0407020A0BTAABX +24406311000001102,Recivit 400microgram sublingual tablets,24406311000001102,AMP,0407020A0BTABAZ +24407411000001106,Recivit 533microgram sublingual tablets,24407411000001106,AMP,0407020A0BTACBY +24407111000001101,Recivit 267microgram sublingual tablets,24407111000001101,AMP,0407020A0BTADBZ +24406511000001108,Recivit 800microgram sublingual tablets,24406511000001108,AMP,0407020A0BTAEBB +24560211000001102,Mylafent 12micrograms/hour transdermal patches,24560211000001102,AMP,0407020A0BUAAAU +24560411000001103,Mylafent 25micrograms/hour transdermal patches,24560411000001103,AMP,0407020A0BUABAE +24560611000001100,Mylafent 50micrograms/hour transdermal patches,24560611000001100,AMP,0407020A0BUACAF +24560811000001101,Mylafent 75micrograms/hour transdermal patches,24560811000001101,AMP,0407020A0BUADAG +24561011000001103,Mylafent 100micrograms/hour transdermal patches,24561011000001103,AMP,0407020A0BUAEAH +30001711000001101,Yemex 12micrograms/hour transdermal patches,30001711000001101,AMP,0407020A0BVAAAU +30002011000001106,Yemex 25micrograms/hour transdermal patches,30002011000001106,AMP,0407020A0BVABAE +30002211000001101,Yemex 50micrograms/hour transdermal patches,30002211000001101,AMP,0407020A0BVACAF +30002711000001108,Yemex 75micrograms/hour transdermal patches,30002711000001108,AMP,0407020A0BVADAG +30003011000001102,Yemex 100micrograms/hour transdermal patches,30003011000001102,AMP,0407020A0BVAEAH +37039311000001100,Cynril 200microgram lozenges with integral oromucosal applicator,37039311000001100,AMP,0407020A0BWAAAI +37039711000001101,Cynril 400microgram lozenges with integral oromucosal applicator,37039711000001101,AMP,0407020A0BWABAJ +37040211000001100,Cynril 600microgram lozenges with integral oromucosal applicator,37040211000001100,AMP,0407020A0BWACAK +37040511000001102,Cynril 800microgram lozenges with integral oromucosal applicator,37040511000001102,AMP,0407020A0BWADAL +37042311000001107,Cynril 1.2mg lozenges with integral oromucosal applicator,37042311000001107,AMP,0407020A0BWAEAN +37046711000001105,Cynril 1.6mg lozenges with integral oromucosal applicator,37046711000001105,AMP,0407020A0BWAFAP +40612311000001101,Fenhuma 100microgram sublingual tablets,40612311000001101,AMP,0407020A0BXAAAW +40629711000001102,Fenhuma 800microgram sublingual tablets,40629711000001102,AMP,0407020A0BXABBB +40629911000001100,Fenhuma 600microgram sublingual tablets,40629911000001100,AMP,0407020A0BXACBA +40630111000001106,Fenhuma 400microgram sublingual tablets,40630111000001106,AMP,0407020A0BXADAZ +40630611000001103,Fenhuma 300microgram sublingual tablets,40630611000001103,AMP,0407020A0BXAEAY +40631111000001100,Fenhuma 200microgram sublingual tablets,40631111000001100,AMP,0407020A0BXAFAX +42282511000001104,Iremia 133microgram sublingual tablets,42282511000001104,AMP,0407020A0BYAGCB +42282811000001101,Iremia 267microgram sublingual tablets,42282811000001101,AMP,0407020A0BYAHCC +42283111000001102,Iremia 400microgram sublingual tablets,42283111000001102,AMP,0407020A0BYAICD +42283411000001107,Iremia 533microgram sublingual tablets,42283411000001107,AMP,0407020A0BYAJCE +42283711000001101,Iremia 67microgram sublingual tablets,42283711000001101,AMP,0407020A0BYAKCF +42284011000001101,Iremia 800microgram sublingual tablets,42284011000001101,AMP,0407020A0BYALCG +14615911000001108,Papaveretum 7.7mg/1ml solution for injection ampoules,14615911000001108,VMP,0407020ABAAAAAA +10055711000001107,Papaveretum 7.7mg/1ml solution for injection ampoules,10055711000001107,AMP,0407020ABAAAAAA +9768811000001103,Papaveretum 7.7mg/1ml solution for injection ampoules,9768811000001103,AMP,0407020ABAAAAAA +9779411000001100,Papaveretum 7.7mg/1ml solution for injection ampoules,9779411000001100,AMP,0407020ABAAAAAA +14612711000001102,Papaveretum 15.4mg/1ml solution for injection ampoules,14612711000001102,VMP,0407020ABAAABAB +4076511000001105,Papaveretum 15.4mg/1ml solution for injection ampoules,4076511000001105,AMP,0407020ABAAABAB +4076911000001103,Papaveretum 15.4mg/1ml solution for injection ampoules,4076911000001103,AMP,0407020ABAAABAB +4076711000001100,Papaveretum 15.4mg/1ml solution for injection ampoules,4076711000001100,AMP,0407020ABAAABAB +36025411000001105,Papaveretum 15.4mg/1ml / Hyoscine hydrobromide 400micrograms/1ml solution for injection ampoules,36025411000001105,VMP,0407020ABAAAIAI +10054511000001103,Papaveretum 15.4mg/1ml / Hyoscine hydrobromide 400micrograms/1ml solution for injection ampoules,10054511000001103,AMP,0407020ABAAAIAI +10056411000001105,Papaveretum 15.4mg/1ml / Hyoscine hydrobromide 400micrograms/1ml solution for injection ampoules,10056411000001105,AMP,0407020ABAAAIAI +9142711000001109,Papaveretum 15.4mg/1ml / Hyoscine hydrobromide 400micrograms/1ml solution for injection ampoules,9142711000001109,AMP,0407020ABAAAIAI +12392211000001105,Papaveretum 40mg/1ml solution for injection ampoules,12392211000001105,VMP,0407020ABAAAKAK +12352211000001100,Papaveretum 40mg/1ml solution for injection ampoules,12352211000001100,AMP,0407020ABAAAKAK +16110411000001103,Papaveretum 30mg/1ml solution for injection ampoules,16110411000001103,VMP,0407020ABAAAPAP +16107611000001103,Papaveretum 30mg/1ml solution for injection ampoules,16107611000001103,AMP,0407020ABAAAPAP +36131211000001102,Oxycodone 5mg/5ml oral solution sugar free,36131211000001102,VMP,0407020ADAAAAAA +19670611000001100,Oxycodone 5mg/5ml oral solution sugar free,19670611000001100,AMP,0407020ADAAAAAA +36468311000001107,Oxycodone 5mg/5ml oral solution sugar free,36468311000001107,AMP,0407020ADAAAAAA +30824811000001101,Oxycodone 5mg/5ml oral solution sugar free,30824811000001101,AMP,0407020ADAAAAAA +36854211000001105,Oxycodone 5mg/5ml oral solution sugar free,36854211000001105,AMP,0407020ADAAAAAA +42527211000001103,Oxycodone 5mg/5ml oral solution sugar free,42527211000001103,AMP,0407020ADAAAAAA +39073511000001103,Oxycodone 5mg/5ml oral solution sugar free,39073511000001103,AMP,0407020ADAAAAAA +42510211000001108,Oxycodone 5mg/5ml oral solution sugar free,42510211000001108,AMP,0407020ADAAAAAA +19661411000001101,Oxycodone 5mg/5ml oral solution sugar free,19661411000001101,AMP,0407020ADAAAAAA +36130011000001103,Oxycodone 10mg/ml oral solution sugar free,36130011000001103,VMP,0407020ADAAABAB +19670811000001101,Oxycodone 10mg/ml oral solution sugar free,19670811000001101,AMP,0407020ADAAABAB +36468111000001105,Oxycodone 10mg/ml oral solution sugar free,36468111000001105,AMP,0407020ADAAABAB +30825011000001106,Oxycodone 10mg/ml oral solution sugar free,30825011000001106,AMP,0407020ADAAABAB +36854411000001109,Oxycodone 10mg/ml oral solution sugar free,36854411000001109,AMP,0407020ADAAABAB +40538911000001104,Oxycodone 10mg/ml oral solution sugar free,40538911000001104,AMP,0407020ADAAABAB +39073311000001109,Oxycodone 10mg/ml oral solution sugar free,39073311000001109,AMP,0407020ADAAABAB +42493811000001109,Oxycodone 10mg/ml oral solution sugar free,42493811000001109,AMP,0407020ADAAABAB +19662111000001101,Oxycodone 10mg/ml oral solution sugar free,19662111000001101,AMP,0407020ADAAABAB +42016011000001103,Oxycodone 5mg capsules,42016011000001103,VMP,0407020ADAAACAC +42015811000001101,Oxycodone 10mg capsules,42015811000001101,VMP,0407020ADAAADAD +42015911000001106,Oxycodone 20mg capsules,42015911000001106,VMP,0407020ADAAAEAE +36129511000001101,Oxycodone 10mg modified-release tablets,36129511000001101,VMP,0407020ADAAAFAF +36130411000001107,Oxycodone 20mg modified-release tablets,36130411000001107,VMP,0407020ADAAAGAG +36130911000001104,Oxycodone 40mg modified-release tablets,36130911000001104,VMP,0407020ADAAAHAH +36131511000001104,Oxycodone 80mg modified-release tablets,36131511000001104,VMP,0407020ADAAAIAI +12142111000001100,Oxycodone 5mg/5ml oral solution,12142111000001100,VMP,0407020ADAAAJAJ +12130611000001106,Oxycodone 5mg/5ml oral solution,12130611000001106,AMP,0407020ADAAAJAJ +36131011000001107,Oxycodone 5mg modified-release tablets,36131011000001107,VMP,0407020ADAAAKAK +36129811000001103,Oxycodone 10mg/1ml solution for injection ampoules,36129811000001103,VMP,0407020ADAAALAL +19671011000001103,Oxycodone 10mg/1ml solution for injection ampoules,19671011000001103,AMP,0407020ADAAALAL +37995711000001100,Oxycodone 10mg/1ml solution for injection ampoules,37995711000001100,AMP,0407020ADAAALAL +41938511000001109,Oxycodone 10mg/1ml solution for injection ampoules,41938511000001109,AMP,0407020ADAAALAL +37761311000001108,Oxycodone 10mg/1ml solution for injection ampoules,37761311000001108,AMP,0407020ADAAALAL +36640411000001107,Oxycodone 10mg/1ml solution for injection ampoules,36640411000001107,AMP,0407020ADAAALAL +35537411000001101,Oxycodone 10mg/1ml solution for injection ampoules,35537411000001101,AMP,0407020ADAAALAL +39072711000001100,Oxycodone 10mg/1ml solution for injection ampoules,39072711000001100,AMP,0407020ADAAALAL +17474211000001101,Oxycodone 10mg/1ml solution for injection ampoules,17474211000001101,AMP,0407020ADAAALAL +35576611000001103,Oxycodone 10mg/1ml solution for injection ampoules,35576611000001103,AMP,0407020ADAAALAL +36130611000001105,Oxycodone 20mg/2ml solution for injection ampoules,36130611000001105,VMP,0407020ADAAAMAM +19671211000001108,Oxycodone 20mg/2ml solution for injection ampoules,19671211000001108,AMP,0407020ADAAAMAM +37995911000001103,Oxycodone 20mg/2ml solution for injection ampoules,37995911000001103,AMP,0407020ADAAAMAM +41938911000001102,Oxycodone 20mg/2ml solution for injection ampoules,41938911000001102,AMP,0407020ADAAAMAM +37760911000001102,Oxycodone 20mg/2ml solution for injection ampoules,37760911000001102,AMP,0407020ADAAAMAM +36641311000001105,Oxycodone 20mg/2ml solution for injection ampoules,36641311000001105,AMP,0407020ADAAAMAM +35537611000001103,Oxycodone 20mg/2ml solution for injection ampoules,35537611000001103,AMP,0407020ADAAAMAM +39072911000001103,Oxycodone 20mg/2ml solution for injection ampoules,39072911000001103,AMP,0407020ADAAAMAM +17474611000001104,Oxycodone 20mg/2ml solution for injection ampoules,17474611000001104,AMP,0407020ADAAAMAM +35576911000001109,Oxycodone 20mg/2ml solution for injection ampoules,35576911000001109,AMP,0407020ADAAAMAM +15613611000001105,Oxycodone 50mg/1ml solution for injection ampoules,15613611000001105,VMP,0407020ADAAANAN +22827711000001106,Oxycodone 50mg/1ml solution for injection ampoules,22827711000001106,AMP,0407020ADAAANAN +37996111000001107,Oxycodone 50mg/1ml solution for injection ampoules,37996111000001107,AMP,0407020ADAAANAN +37761111000001106,Oxycodone 50mg/1ml solution for injection ampoules,37761111000001106,AMP,0407020ADAAANAN +35537811000001104,Oxycodone 50mg/1ml solution for injection ampoules,35537811000001104,AMP,0407020ADAAANAN +41577011000001108,Oxycodone 50mg/1ml solution for injection ampoules,41577011000001108,AMP,0407020ADAAANAN +39073111000001107,Oxycodone 50mg/1ml solution for injection ampoules,39073111000001107,AMP,0407020ADAAANAN +23607911000001102,Oxycodone 50mg/1ml solution for injection ampoules,23607911000001102,AMP,0407020ADAAANAN +35584011000001106,Oxycodone 50mg/1ml solution for injection ampoules,35584011000001106,AMP,0407020ADAAANAN +18645511000001107,Oxycodone 120mg modified-release tablets,18645511000001107,VMP,0407020ADAAAPAP +36131311000001105,Oxycodone 60mg modified-release tablets,36131311000001105,VMP,0407020ADAAAQAQ +36130711000001101,Oxycodone 30mg modified-release tablets,36130711000001101,VMP,0407020ADAAARAR +36130211000001108,Oxycodone 15mg modified-release tablets,36130211000001108,VMP,0407020ADAAASAS +38752411000001107,Oxycodone 5mg tablets,38752411000001107,VMP,0407020ADAAATAT +38752211000001108,Oxycodone 10mg tablets,38752211000001108,VMP,0407020ADAAAUAU +38752311000001100,Oxycodone 20mg tablets,38752311000001100,VMP,0407020ADAAAVAV +2898211000001105,OxyNorm liquid 1mg/ml oral solution,2898211000001105,AMP,0407020ADBBAAAA +2897511000001109,OxyNorm 10mg/ml concentrate oral solution,2897511000001109,AMP,0407020ADBBABAB +2895711000001105,OxyNorm 5mg capsules,2895711000001105,AMP,0407020ADBBACAC +2896011000001104,OxyNorm 10mg capsules,2896011000001104,AMP,0407020ADBBADAD +2896311000001101,OxyNorm 20mg capsules,2896311000001101,AMP,0407020ADBBAEAE +4635211000001105,OxyNorm 10mg/1ml solution for injection ampoules,4635211000001105,AMP,0407020ADBBAFAL +4636011000001109,OxyNorm 20mg/2ml solution for injection ampoules,4636011000001109,AMP,0407020ADBBAGAM +15545411000001108,OxyNorm 50mg/1ml solution for injection ampoules,15545411000001108,AMP,0407020ADBBAHAN +2891711000001108,OxyContin 10mg modified-release tablets,2891711000001108,AMP,0407020ADBCAAAF +2896611000001106,OxyContin 20mg modified-release tablets,2896611000001106,AMP,0407020ADBCABAG +2897211000001106,OxyContin 40mg modified-release tablets,2897211000001106,AMP,0407020ADBCACAH +2898111000001104,OxyContin 80mg modified-release tablets,2898111000001104,AMP,0407020ADBCADAI +4074911000001106,OxyContin 5mg modified-release tablets,4074911000001106,AMP,0407020ADBCAEAK +18641711000001104,OxyContin 120mg modified-release tablets,18641711000001104,AMP,0407020ADBCAFAP +18643311000001102,OxyContin 60mg modified-release tablets,18643311000001102,AMP,0407020ADBCAGAQ +18644611000001105,OxyContin 30mg modified-release tablets,18644611000001105,AMP,0407020ADBCAHAR +18645111000001103,OxyContin 15mg modified-release tablets,18645111000001103,AMP,0407020ADBCAIAS +31322211000001103,Carexil 5mg modified-release tablets,31322211000001103,AMP,0407020ADBDAAAK +31323511000001107,Carexil 10mg modified-release tablets,31323511000001107,AMP,0407020ADBDABAF +31324011000001102,Carexil 20mg modified-release tablets,31324011000001102,AMP,0407020ADBDACAG +32196811000001100,Carexil 40mg modified-release tablets,32196811000001100,AMP,0407020ADBDADAH +32197311000001107,Carexil 80mg modified-release tablets,32197311000001107,AMP,0407020ADBDAEAI +20937511000001101,Longtec 5mg modified-release tablets,20937511000001101,AMP,0407020ADBEAAAK +20937711000001106,Longtec 10mg modified-release tablets,20937711000001106,AMP,0407020ADBEABAF +20937911000001108,Longtec 20mg modified-release tablets,20937911000001108,AMP,0407020ADBEACAG +20938111000001106,Longtec 40mg modified-release tablets,20938111000001106,AMP,0407020ADBEADAH +20938311000001108,Longtec 80mg modified-release tablets,20938311000001108,AMP,0407020ADBEAEAI +29838211000001107,Longtec 120mg modified-release tablets,29838211000001107,AMP,0407020ADBEAFAP +29838411000001106,Longtec 15mg modified-release tablets,29838411000001106,AMP,0407020ADBEAGAS +29838611000001109,Longtec 30mg modified-release tablets,29838611000001109,AMP,0407020ADBEAHAR +29838811000001108,Longtec 60mg modified-release tablets,29838811000001108,AMP,0407020ADBEAIAQ +20968611000001105,Oxylan 5mg prolonged-release tablets,20968611000001105,AMP,0407020ADBFAAAK +20968811000001109,Oxylan 10mg prolonged-release tablets,20968811000001109,AMP,0407020ADBFABAF +20969011000001108,Oxylan 20mg prolonged-release tablets,20969011000001108,AMP,0407020ADBFACAG +20969211000001103,Oxylan 40mg prolonged-release tablets,20969211000001103,AMP,0407020ADBFADAH +20969411000001104,Oxylan 80mg prolonged-release tablets,20969411000001104,AMP,0407020ADBFAEAI +22416411000001100,Oxylan 5mg modified-release tablets,22416411000001100,AMP,0407020ADBFAFAK +22417611000001100,Oxylan 10mg modified-release tablets,22417611000001100,AMP,0407020ADBFAGAF +22417811000001101,Oxylan 20mg modified-release tablets,22417811000001101,AMP,0407020ADBFAHAG +22420411000001106,Oxylan 40mg modified-release tablets,22420411000001106,AMP,0407020ADBFAIAH +22420911000001103,Oxylan 80mg modified-release tablets,22420911000001103,AMP,0407020ADBFAJAI +21515211000001100,Candox 10mg modified-release tablets,21515211000001100,AMP,0407020ADBGAAAF +21516111000001100,Candox 20mg modified-release tablets,21516111000001100,AMP,0407020ADBGABAG +21515911000001109,Candox 5mg modified-release tablets,21515911000001109,AMP,0407020ADBGACAK +21516811000001107,Candox 40mg modified-release tablets,21516811000001107,AMP,0407020ADBGADAH +21516511000001109,Candox 80mg modified-release tablets,21516511000001109,AMP,0407020ADBGAEAI +22686511000001102,Lynlor 5mg capsules,22686511000001102,AMP,0407020ADBHAAAC +22686711000001107,Lynlor 10mg capsules,22686711000001107,AMP,0407020ADBHABAD +22686911000001109,Lynlor 20mg capsules,22686911000001109,AMP,0407020ADBHACAE +23020611000001108,Dolocodon PR 20mg tablets,23020611000001108,AMP,0407020ADBIAAAG +23020811000001107,Dolocodon PR 40mg tablets,23020811000001107,AMP,0407020ADBIABAH +23047311000001100,Dolocodon PR 5mg tablets,23047311000001100,AMP,0407020ADBIACAK +23366811000001104,Dolocodon PR 10mg tablets,23366811000001104,AMP,0407020ADBIADAF +23657811000001102,Shortec 5mg capsules,23657811000001102,AMP,0407020ADBJAAAC +23658011000001109,Shortec 10mg capsules,23658011000001109,AMP,0407020ADBJABAD +23658211000001104,Shortec 20mg capsules,23658211000001104,AMP,0407020ADBJACAE +34025611000001102,Shortec 10mg/1ml solution for injection ampoules,34025611000001102,AMP,0407020ADBJADAL +34025811000001103,Shortec 20mg/2ml solution for injection ampoules,34025811000001103,AMP,0407020ADBJAEAM +34026211000001105,Shortec 50mg/1ml solution for injection ampoules,34026211000001105,AMP,0407020ADBJAFAN +34027611000001109,Shortec liquid 1mg/ml oral solution,34027611000001109,AMP,0407020ADBJAGAA +34027811000001108,Shortec 10mg/ml concentrate oral solution,34027811000001108,AMP,0407020ADBJAHAB +24466911000001102,Reltebon 5mg modified-release tablets,24466911000001102,AMP,0407020ADBKAAAK +24467111000001102,Reltebon 10mg modified-release tablets,24467111000001102,AMP,0407020ADBKABAF +24467411000001107,Reltebon 20mg modified-release tablets,24467411000001107,AMP,0407020ADBKACAG +24467711000001101,Reltebon 40mg modified-release tablets,24467711000001101,AMP,0407020ADBKADAH +24467911000001104,Reltebon 80mg modified-release tablets,24467911000001104,AMP,0407020ADBKAEAI +27992811000001102,Reltebon 15mg modified-release tablets,27992811000001102,AMP,0407020ADBKAFAS +27993011000001104,Reltebon 30mg modified-release tablets,27993011000001104,AMP,0407020ADBKAGAR +27993311000001101,Reltebon 60mg modified-release tablets,27993311000001101,AMP,0407020ADBKAHAQ +29650311000001107,Oxeltra 5mg modified-release tablets,29650311000001107,AMP,0407020ADBLAAAK +29676711000001106,Oxeltra 80mg modified-release tablets,29676711000001106,AMP,0407020ADBLABAI +29677211000001102,Oxeltra 30mg modified-release tablets,29677211000001102,AMP,0407020ADBLACAR +29677411000001103,Oxeltra 60mg modified-release tablets,29677411000001103,AMP,0407020ADBLADAQ +29677611000001100,Oxeltra 40mg modified-release tablets,29677611000001100,AMP,0407020ADBLAEAH +29677811000001101,Oxeltra 10mg modified-release tablets,29677811000001101,AMP,0407020ADBLAFAF +29678111000001109,Oxeltra 15mg modified-release tablets,29678111000001109,AMP,0407020ADBLAGAS +29678311000001106,Oxeltra 20mg modified-release tablets,29678311000001106,AMP,0407020ADBLAHAG +30719311000001101,Abtard 5mg modified-release tablets,30719311000001101,AMP,0407020ADBMAAAK +30719811000001105,Abtard 10mg modified-release tablets,30719811000001105,AMP,0407020ADBMABAF +30720111000001102,Abtard 15mg modified-release tablets,30720111000001102,AMP,0407020ADBMACAS +30720511000001106,Abtard 20mg modified-release tablets,30720511000001106,AMP,0407020ADBMADAG +30720811000001109,Abtard 40mg modified-release tablets,30720811000001109,AMP,0407020ADBMAEAH +30721111000001108,Abtard 30mg modified-release tablets,30721111000001108,AMP,0407020ADBMAFAR +30721411000001103,Abtard 60mg modified-release tablets,30721411000001103,AMP,0407020ADBMAGAQ +30721711000001109,Abtard 80mg modified-release tablets,30721711000001109,AMP,0407020ADBMAHAI +32133511000001104,Zomestine 80mg modified-release tablets,32133511000001104,AMP,0407020ADBNAAAI +32136711000001102,Zomestine 40mg modified-release tablets,32136711000001102,AMP,0407020ADBNABAH +32138511000001108,Zomestine 5mg modified-release tablets,32138511000001108,AMP,0407020ADBNACAK +32135311000001106,Zomestine 10mg modified-release tablets,32135311000001106,AMP,0407020ADBNADAF +32140211000001108,Zomestine 20mg modified-release tablets,32140211000001108,AMP,0407020ADBNAEAG +33629011000001104,Leveraxo 5mg modified-release tablets,33629011000001104,AMP,0407020ADBPAAAK +33629211000001109,Leveraxo 10mg modified-release tablets,33629211000001109,AMP,0407020ADBPABAF +33629411000001108,Leveraxo 20mg modified-release tablets,33629411000001108,AMP,0407020ADBPACAG +33629611000001106,Leveraxo 30mg modified-release tablets,33629611000001106,AMP,0407020ADBPADAR +33629811000001105,Leveraxo 40mg modified-release tablets,33629811000001105,AMP,0407020ADBPAEAH +33630011000001105,Leveraxo 60mg modified-release tablets,33630011000001105,AMP,0407020ADBPAFAQ +33630211000001100,Leveraxo 80mg modified-release tablets,33630211000001100,AMP,0407020ADBPAGAI +34051611000001101,Onexila XL 10mg tablets,34051611000001101,AMP,0407020ADBQAAAF +34051911000001107,Onexila XL 20mg tablets,34051911000001107,AMP,0407020ADBQABAG +34051311000001106,Onexila XL 40mg tablets,34051311000001106,AMP,0407020ADBQACAH +34052211000001105,Onexila XL 80mg tablets,34052211000001105,AMP,0407020ADBQADAI +35541911000001100,Renocontin 5mg modified-release tablets,35541911000001100,AMP,0407020ADBRAAAK +35542111000001108,Renocontin 10mg modified-release tablets,35542111000001108,AMP,0407020ADBRABAF +35542311000001105,Renocontin 15mg modified-release tablets,35542311000001105,AMP,0407020ADBRACAS +35542511000001104,Renocontin 20mg modified-release tablets,35542511000001104,AMP,0407020ADBRADAG +35542711000001109,Renocontin 30mg modified-release tablets,35542711000001109,AMP,0407020ADBRAEAR +35542911000001106,Renocontin 40mg modified-release tablets,35542911000001106,AMP,0407020ADBRAFAH +35543311000001100,Renocontin 60mg modified-release tablets,35543311000001100,AMP,0407020ADBRAGAQ +35846011000001105,Oxypro 5mg modified-release tablets,35846011000001105,AMP,0407020ADBSAAAK +35846211000001100,Oxypro 10mg modified-release tablets,35846211000001100,AMP,0407020ADBSABAF +35846411000001101,Oxypro 15mg modified-release tablets,35846411000001101,AMP,0407020ADBSACAS +35846611000001103,Oxypro 20mg modified-release tablets,35846611000001103,AMP,0407020ADBSADAG +35846811000001104,Oxypro 30mg modified-release tablets,35846811000001104,AMP,0407020ADBSAEAR +35847011000001108,Oxypro 40mg modified-release tablets,35847011000001108,AMP,0407020ADBSAFAH +35847211000001103,Oxypro 60mg modified-release tablets,35847211000001103,AMP,0407020ADBSAGAQ +35847411000001104,Oxypro 80mg modified-release tablets,35847411000001104,AMP,0407020ADBSAHAI +35853511000001107,Ixyldone 5mg modified-release tablets,35853511000001107,AMP,0407020ADBTAAAK +35857611000001103,Ixyldone 10mg modified-release tablets,35857611000001103,AMP,0407020ADBTABAF +35857811000001104,Ixyldone 15mg modified-release tablets,35857811000001104,AMP,0407020ADBTACAS +35858311000001109,Ixyldone 20mg modified-release tablets,35858311000001109,AMP,0407020ADBTADAG +35857411000001101,Ixyldone 30mg modified-release tablets,35857411000001101,AMP,0407020ADBTAEAR +35857911000001109,Ixyldone 40mg modified-release tablets,35857911000001109,AMP,0407020ADBTAFAH +35858711000001108,Ixyldone 60mg modified-release tablets,35858711000001108,AMP,0407020ADBTAGAQ +35859011000001101,Ixyldone 80mg modified-release tablets,35859011000001101,AMP,0407020ADBTAHAI +38453311000001100,Oxyact 10mg tablets,38453311000001100,AMP,0407020ADBUAAAU +38455911000001103,Oxyact 20mg tablets,38455911000001103,AMP,0407020ADBUABAV +38456711000001108,Oxyact 5mg tablets,38456711000001108,AMP,0407020ADBUACAT +14985811000001101,Oxycodone 10mg / Naloxone 5mg modified-release tablets,14985811000001101,VMP,0407020AFAAAAAA +14985911000001106,Oxycodone 20mg / Naloxone 10mg modified-release tablets,14985911000001106,VMP,0407020AFAAABAB +15852911000001109,Oxycodone 5mg / Naloxone 2.5mg modified-release tablets,15852911000001109,VMP,0407020AFAAACAC +15852811000001104,Oxycodone 40mg / Naloxone 20mg modified-release tablets,15852811000001104,VMP,0407020AFAAADAD +29670411000001102,Oxycodone 40mg/5ml / Naloxone 20mg/5ml oral suspension,29670411000001102,VMP,0407020AFAAAEAE +29667211000001109,Oxycodone 40mg/5ml / Naloxone 20mg/5ml oral suspension,29667211000001109,AMP,0407020AFAAAEAE +14975711000001101,Targinact 10mg/5mg modified-release tablets,14975711000001101,AMP,0407020AFBBAAAA +14976011000001107,Targinact 20mg/10mg modified-release tablets,14976011000001107,AMP,0407020AFBBABAB +15850911000001105,Targinact 5mg/2.5mg modified-release tablets,15850911000001105,AMP,0407020AFBBACAC +15851311000001104,Targinact 40mg/20mg modified-release tablets,15851311000001104,AMP,0407020AFBBADAD +38419711000001105,Myloxifin 10mg/5mg modified-release tablets,38419711000001105,AMP,0407020AFBCAAAA +38419911000001107,Myloxifin 20mg/10mg modified-release tablets,38419911000001107,AMP,0407020AFBCABAB +38420311000001107,Myloxifin 40mg/20mg modified-release tablets,38420311000001107,AMP,0407020AFBCACAD +38420111000001105,Myloxifin 5mg/2.5mg modified-release tablets,38420111000001105,AMP,0407020AFBCADAC +38803111000001103,Oxyargin 5mg/2.5mg modified-release tablets,38803111000001103,AMP,0407020AFBDAAAC +38801811000001106,Oxyargin 10mg/5mg modified-release tablets,38801811000001106,AMP,0407020AFBDABAA +38802411000001104,Oxyargin 20mg/10mg modified-release tablets,38802411000001104,AMP,0407020AFBDACAB +38802811000001102,Oxyargin 40mg/20mg modified-release tablets,38802811000001102,AMP,0407020AFBDADAD +35913611000001107,Buprenorphine 300micrograms/1ml solution for injection ampoules,35913611000001107,VMP,0407020B0AAAAAA +42009011000001107,Buprenorphine 200microgram sublingual tablets sugar free,42009011000001107,VMP,0407020B0AAABAB +42009211000001102,Buprenorphine 400microgram sublingual tablets sugar free,42009211000001102,VMP,0407020B0AAADAD +14968811000001107,Buprenorphine 400microgram sublingual tablets sugar free,14968811000001107,AMP,0407020B0AAADAD +21218511000001100,Buprenorphine 400microgram sublingual tablets sugar free,21218511000001100,AMP,0407020B0AAADAD +14962311000001101,Buprenorphine 400microgram sublingual tablets sugar free,14962311000001101,AMP,0407020B0AAADAD +28092811000001101,Buprenorphine 400microgram sublingual tablets sugar free,28092811000001101,AMP,0407020B0AAADAD +14947711000001108,Buprenorphine 400microgram sublingual tablets sugar free,14947711000001108,AMP,0407020B0AAADAD +22623211000001100,Buprenorphine 400microgram sublingual tablets sugar free,22623211000001100,AMP,0407020B0AAADAD +14961211000001102,Buprenorphine 400microgram sublingual tablets sugar free,14961211000001102,AMP,0407020B0AAADAD +38813511000001105,Buprenorphine 400microgram sublingual tablets sugar free,38813511000001105,AMP,0407020B0AAADAD +38424811000001108,Buprenorphine 400microgram sublingual tablets sugar free,38424811000001108,AMP,0407020B0AAADAD +18085111000001101,Buprenorphine 400microgram sublingual tablets sugar free,18085111000001101,AMP,0407020B0AAADAD +15061411000001101,Buprenorphine 400microgram sublingual tablets sugar free,15061411000001101,AMP,0407020B0AAADAD +14719611000001105,Buprenorphine 400microgram sublingual tablets sugar free,14719611000001105,AMP,0407020B0AAADAD +36885711000001109,Buprenorphine 400microgram sublingual tablets sugar free,36885711000001109,AMP,0407020B0AAADAD +21805211000001102,Buprenorphine 400microgram sublingual tablets sugar free,21805211000001102,AMP,0407020B0AAADAD +35913711000001103,Buprenorphine 35micrograms/hour transdermal patches,35913711000001103,VMP,0407020B0AAAEAE +35913811000001106,Buprenorphine 52.5micrograms/hour transdermal patches,35913811000001106,VMP,0407020B0AAAFAF +35913911000001101,Buprenorphine 70micrograms/hour transdermal patches,35913911000001101,VMP,0407020B0AAAGAG +9567211000001104,Buprenorphine 5micrograms/hour transdermal patches,9567211000001104,VMP,0407020B0AAAHAH +9567411000001100,Buprenorphine 10micrograms/hour transdermal patches,9567411000001100,VMP,0407020B0AAAIAI +9567311000001107,Buprenorphine 20micrograms/hour transdermal patches,9567311000001107,VMP,0407020B0AAAJAJ +32038411000001102,Buprenorphine 15micrograms/hour transdermal patches,32038411000001102,VMP,0407020B0AAAKAK +867611000001105,Temgesic 200microgram sublingual tablets,867611000001105,AMP,0407020B0BBAAAB +3611411000001101,Temgesic 300micrograms/1ml solution for injection ampoules,3611411000001101,AMP,0407020B0BBABAA +762111000001101,Temgesic 400microgram sublingual tablets,762111000001101,AMP,0407020B0BBADAD +3446611000001101,Transtec 35micrograms/hour transdermal patches,3446611000001101,AMP,0407020B0BDAAAE +3448811000001101,Transtec 52.5micrograms/hour transdermal patches,3448811000001101,AMP,0407020B0BDABAF +3449311000001104,Transtec 70micrograms/hour transdermal patches,3449311000001104,AMP,0407020B0BDACAG +9565311000001104,BuTrans 5micrograms/hour transdermal patches,9565311000001104,AMP,0407020B0BEAAAH +9565611000001109,BuTrans 10micrograms/hour transdermal patches,9565611000001109,AMP,0407020B0BEABAI +9565911000001103,BuTrans 20micrograms/hour transdermal patches,9565911000001103,AMP,0407020B0BEACAJ +31877211000001103,BuTrans 15micrograms/hour transdermal patches,31877211000001103,AMP,0407020B0BEADAK +19957211000001102,Tephine 200microgram sublingual tablets,19957211000001102,AMP,0407020B0BFAAAB +19957411000001103,Tephine 400microgram sublingual tablets,19957411000001103,AMP,0407020B0BFABAD +23446211000001101,Hapoctasin 35micrograms/hour transdermal patches,23446211000001101,AMP,0407020B0BGAAAE +23446411000001102,Hapoctasin 52.5micrograms/hour transdermal patches,23446411000001102,AMP,0407020B0BGABAF +23446611000001104,Hapoctasin 70micrograms/hour transdermal patches,23446611000001104,AMP,0407020B0BGACAG +31279211000001103,Butec 5micrograms/hour transdermal patches,31279211000001103,AMP,0407020B0BHAAAH +31278911000001104,Butec 10micrograms/hour transdermal patches,31278911000001104,AMP,0407020B0BHABAI +31278611000001105,Butec 20micrograms/hour transdermal patches,31278611000001105,AMP,0407020B0BHACAJ +34027411000001106,Butec 15micrograms/hour transdermal patches,34027411000001106,AMP,0407020B0BHADAK +32484211000001106,Bupeaze 35micrograms/hour transdermal patches,32484211000001106,AMP,0407020B0BIAAAE +32484411000001105,Bupeaze 52.5micrograms/hour transdermal patches,32484411000001105,AMP,0407020B0BIABAF +32484611000001108,Bupeaze 70micrograms/hour transdermal patches,32484611000001108,AMP,0407020B0BIACAG +32576211000001102,Prenotrix 35micrograms/hour transdermal patches,32576211000001102,AMP,0407020B0BJAAAE +32643211000001102,Prenotrix 52.5micrograms/hour transdermal patches,32643211000001102,AMP,0407020B0BJABAF +32643711000001109,Prenotrix 70micrograms/hour transdermal patches,32643711000001109,AMP,0407020B0BJACAG +33038711000001103,Reletrans 5micrograms/hour transdermal patches,33038711000001103,AMP,0407020B0BKAAAH +33038911000001101,Reletrans 10micrograms/hour transdermal patches,33038911000001101,AMP,0407020B0BKABAI +33039111000001106,Reletrans 15micrograms/hour transdermal patches,33039111000001106,AMP,0407020B0BKACAK +33039311000001108,Reletrans 20micrograms/hour transdermal patches,33039311000001108,AMP,0407020B0BKADAJ +33054211000001103,Panitaz 5micrograms/hour transdermal patches,33054211000001103,AMP,0407020B0BLAAAH +33054411000001104,Panitaz 10micrograms/hour transdermal patches,33054411000001104,AMP,0407020B0BLABAI +33054611000001101,Panitaz 20micrograms/hour transdermal patches,33054611000001101,AMP,0407020B0BLACAJ +33480711000001101,Sevodyne 5micrograms/hour transdermal patches,33480711000001101,AMP,0407020B0BMAAAH +33480911000001104,Sevodyne 10micrograms/hour transdermal patches,33480911000001104,AMP,0407020B0BMABAI +33481111000001108,Sevodyne 20micrograms/hour transdermal patches,33481111000001108,AMP,0407020B0BMACAJ +38910911000001104,Sevodyne 15micrograms/hour transdermal patches,38910911000001104,AMP,0407020B0BMADAK +33546611000001105,Buplast 35micrograms/hour transdermal patches,33546611000001105,AMP,0407020B0BNAAAE +33546411000001107,Buplast 52.5micrograms/hour transdermal patches,33546411000001107,AMP,0407020B0BNABAF +33548111000001103,Buplast 70micrograms/hour transdermal patches,33548111000001103,AMP,0407020B0BNACAG +34172511000001101,Relevtec 35micrograms/hour transdermal patches,34172511000001101,AMP,0407020B0BPAAAE +34172311000001107,Relevtec 52.5micrograms/hour transdermal patches,34172311000001107,AMP,0407020B0BPABAF +34172111000001105,Relevtec 70micrograms/hour transdermal patches,34172111000001105,AMP,0407020B0BPACAG +34551811000001100,Bupramyl 5micrograms/hour transdermal patches,34551811000001100,AMP,0407020B0BQAAAH +34552011000001103,Bupramyl 10micrograms/hour transdermal patches,34552011000001103,AMP,0407020B0BQABAI +34552211000001108,Bupramyl 20micrograms/hour transdermal patches,34552211000001108,AMP,0407020B0BQACAJ +34838811000001108,Busiete 5micrograms/hour transdermal patches,34838811000001108,AMP,0407020B0BRAAAH +34839011000001107,Busiete 10micrograms/hour transdermal patches,34839011000001107,AMP,0407020B0BRABAI +34839211000001102,Busiete 20micrograms/hour transdermal patches,34839211000001102,AMP,0407020B0BRACAJ +34911711000001108,Turgeon 35micrograms/hour transdermal patches,34911711000001108,AMP,0407020B0BSAAAE +34911911000001105,Turgeon 52.5micrograms/hour transdermal patches,34911911000001105,AMP,0407020B0BSABAF +34912111000001102,Turgeon 70micrograms/hour transdermal patches,34912111000001102,AMP,0407020B0BSACAG +35543711000001101,Carlosafine 35micrograms/hour transdermal patches,35543711000001101,AMP,0407020B0BTAAAE +35543911000001104,Carlosafine 52.5micrograms/hour transdermal patches,35543911000001104,AMP,0407020B0BTABAF +35544111000001100,Carlosafine 70micrograms/hour transdermal patches,35544111000001100,AMP,0407020B0BTACAG +35544311000001103,Bunov 5micrograms/hour transdermal patches,35544311000001103,AMP,0407020B0BUAAAH +35544511000001109,Bunov 10micrograms/hour transdermal patches,35544511000001109,AMP,0407020B0BUABAI +35545111000001101,Bunov 20micrograms/hour transdermal patches,35545111000001101,AMP,0407020B0BUACAJ +38728711000001102,Rebrikel 5micrograms/hour transdermal patches,38728711000001102,AMP,0407020B0BVAAAH +38745611000001103,Rebrikel 10micrograms/hour transdermal patches,38745611000001103,AMP,0407020B0BVABAI +38746011000001101,Rebrikel 20micrograms/hour transdermal patches,38746011000001101,AMP,0407020B0BVACAJ +42011011000001105,Dextromoramide 5mg tablets,42011011000001105,VMP,0407020D0AAADAD +14970711000001106,Dextromoramide 5mg tablets,14970711000001106,AMP,0407020D0AAADAD +42010911000001102,Dextromoramide 10mg tablets,42010911000001102,VMP,0407020D0AAAEAE +3760311000001108,Palfium 5mg tablets,3760311000001108,AMP,0407020D0BBAAAD +3759511000001101,Palfium 10mg tablets,3759511000001101,AMP,0407020D0BBABAE +39689711000001107,Dipipanone 10mg / Cyclizine 30mg tablets,39689711000001107,VMP,0407020H0AAABAB +19237311000001105,Dipipanone 10mg / Cyclizine 30mg tablets,19237311000001105,AMP,0407020H0AAABAB +19180811000001109,Dipipanone 10mg / Cyclizine 30mg tablets,19180811000001109,AMP,0407020H0AAABAB +19356611000001105,Dipipanone 10mg / Cyclizine 30mg tablets,19356611000001105,AMP,0407020H0AAABAB +23834411000001100,Dipipanone 10mg / Cyclizine 30mg tablets,23834411000001100,AMP,0407020H0AAABAB +429811000001100,Diconal tablets,429811000001100,AMP,0407020H0BBAAAB +34819611000001105,Diamorphine 5mg powder for solution for injection ampoules,34819611000001105,VMP,0407020K0AAAAAA +22411000001100,Diamorphine 5mg powder for solution for injection ampoules,22411000001100,AMP,0407020K0AAAAAA +15422211000001107,Diamorphine 5mg powder for solution for injection ampoules,15422211000001107,AMP,0407020K0AAAAAA +243011000001107,Diamorphine 5mg powder for solution for injection ampoules,243011000001107,AMP,0407020K0AAAAAA +37237411000001109,Diamorphine 5mg powder for solution for injection ampoules,37237411000001109,AMP,0407020K0AAAAAA +853711000001101,Diamorphine 5mg powder for solution for injection ampoules,853711000001101,AMP,0407020K0AAAAAA +15404411000001109,Diamorphine 5mg powder for solution for injection ampoules,15404411000001109,AMP,0407020K0AAAAAA +250111000001104,Diamorphine 5mg powder for solution for injection ampoules,250111000001104,AMP,0407020K0AAAAAA +42011311000001108,Diamorphine 10mg powder for solution for injection ampoules,42011311000001108,VMP,0407020K0AAABAB +684411000001105,Diamorphine 10mg powder for solution for injection ampoules,684411000001105,AMP,0407020K0AAABAB +15422411000001106,Diamorphine 10mg powder for solution for injection ampoules,15422411000001106,AMP,0407020K0AAABAB +712711000001101,Diamorphine 10mg powder for solution for injection ampoules,712711000001101,AMP,0407020K0AAABAB +37237711000001103,Diamorphine 10mg powder for solution for injection ampoules,37237711000001103,AMP,0407020K0AAABAB +11590911000001102,Diamorphine 10mg powder for solution for injection ampoules,11590911000001102,AMP,0407020K0AAABAB +918811000001100,Diamorphine 10mg powder for solution for injection ampoules,918811000001100,AMP,0407020K0AAABAB +15405411000001105,Diamorphine 10mg powder for solution for injection ampoules,15405411000001105,AMP,0407020K0AAABAB +25211000001109,Diamorphine 10mg powder for solution for injection ampoules,25211000001109,AMP,0407020K0AAABAB +12389011000001108,Diamorphine 15mg powder for solution for injection ampoules,12389011000001108,VMP,0407020K0AAACAC +12316211000001105,Diamorphine 15mg powder for solution for injection ampoules,12316211000001105,AMP,0407020K0AAACAC +42011511000001102,Diamorphine 30mg powder for solution for injection ampoules,42011511000001102,VMP,0407020K0AAAEAE +769411000001100,Diamorphine 30mg powder for solution for injection ampoules,769411000001100,AMP,0407020K0AAAEAE +15422611000001109,Diamorphine 30mg powder for solution for injection ampoules,15422611000001109,AMP,0407020K0AAAEAE +922811000001107,Diamorphine 30mg powder for solution for injection ampoules,922811000001107,AMP,0407020K0AAAEAE +37237911000001101,Diamorphine 30mg powder for solution for injection ampoules,37237911000001101,AMP,0407020K0AAAEAE +11591111000001106,Diamorphine 30mg powder for solution for injection ampoules,11591111000001106,AMP,0407020K0AAAEAE +583111000001109,Diamorphine 30mg powder for solution for injection ampoules,583111000001109,AMP,0407020K0AAAEAE +908611000001101,Diamorphine 30mg powder for solution for injection ampoules,908611000001101,AMP,0407020K0AAAEAE +15405511000001109,Diamorphine 30mg powder for solution for injection ampoules,15405511000001109,AMP,0407020K0AAAEAE +277811000001108,Diamorphine 30mg powder for solution for injection ampoules,277811000001108,AMP,0407020K0AAAEAE +42011211000001100,Diamorphine 100mg powder for solution for injection ampoules,42011211000001100,VMP,0407020K0AAAFAF +725011000001100,Diamorphine 100mg powder for solution for injection ampoules,725011000001100,AMP,0407020K0AAAFAF +13886511000001103,Diamorphine 100mg powder for solution for injection ampoules,13886511000001103,AMP,0407020K0AAAFAF +397811000001109,Diamorphine 100mg powder for solution for injection ampoules,397811000001109,AMP,0407020K0AAAFAF +37238111000001103,Diamorphine 100mg powder for solution for injection ampoules,37238111000001103,AMP,0407020K0AAAFAF +172311000001104,Diamorphine 100mg powder for solution for injection ampoules,172311000001104,AMP,0407020K0AAAFAF +15405611000001108,Diamorphine 100mg powder for solution for injection ampoules,15405611000001108,AMP,0407020K0AAAFAF +212411000001103,Diamorphine 100mg powder for solution for injection ampoules,212411000001103,AMP,0407020K0AAAFAF +42011611000001103,Diamorphine 500mg powder for solution for injection ampoules,42011611000001103,VMP,0407020K0AAAGAG +284911000001100,Diamorphine 500mg powder for solution for injection ampoules,284911000001100,AMP,0407020K0AAAGAG +13887111000001105,Diamorphine 500mg powder for solution for injection ampoules,13887111000001105,AMP,0407020K0AAAGAG +518611000001106,Diamorphine 500mg powder for solution for injection ampoules,518611000001106,AMP,0407020K0AAAGAG +37238311000001101,Diamorphine 500mg powder for solution for injection ampoules,37238311000001101,AMP,0407020K0AAAGAG +343211000001109,Diamorphine 500mg powder for solution for injection ampoules,343211000001109,AMP,0407020K0AAAGAG +15405711000001104,Diamorphine 500mg powder for solution for injection ampoules,15405711000001104,AMP,0407020K0AAAGAG +435111000001107,Diamorphine 500mg powder for solution for injection ampoules,435111000001107,AMP,0407020K0AAAGAG +12291811000001109,Diamorphine 100mg impregnated cigarettes,12291811000001109,VMP,0407020K0AABCBC +12237411000001109,Diamorphine 100mg impregnated cigarettes,12237411000001109,AMP,0407020K0AABCBC +12292111000001107,Diamorphine 30mg impregnated cigarettes,12292111000001107,VMP,0407020K0AABFBF +12238011000001104,Diamorphine 30mg impregnated cigarettes,12238011000001104,AMP,0407020K0AABFBF +42011411000001101,Diamorphine 10mg tablets,42011411000001101,VMP,0407020K0AACBCB +857211000001104,Diamorphine 10mg tablets,857211000001104,AMP,0407020K0AACBCB +396511000001109,Diamorphine 10mg tablets,396511000001109,AMP,0407020K0AACBCB +295311000001103,Diamorphine 10mg tablets,295311000001103,AMP,0407020K0AACBCB +356111000001105,Diamorphine 10mg tablets,356111000001105,AMP,0407020K0AACBCB +12292511000001103,Diamorphine 60mg impregnated cigarettes,12292511000001103,VMP,0407020K0AACGCG +12236211000001108,Diamorphine 60mg impregnated cigarettes,12236211000001108,AMP,0407020K0AACGCG +12389111000001109,Diamorphine 5mg suppositories,12389111000001109,VMP,0407020K0AACUCU +12316511000001108,Diamorphine 5mg suppositories,12316511000001108,AMP,0407020K0AACUCU +12388911000001104,Diamorphine 100mg capsules,12388911000001104,VMP,0407020K0AACZCZ +12315911000001108,Diamorphine 100mg capsules,12315911000001108,AMP,0407020K0AACZCZ +12292211000001101,Diamorphine 40mg impregnated cigarettes,12292211000001101,VMP,0407020K0AADCDC +12235611000001100,Diamorphine 40mg impregnated cigarettes,12235611000001100,AMP,0407020K0AADCDC +11719611000001102,Diamorphine 20mg/5ml oral solution,11719611000001102,VMP,0407020K0AADFDF +11664111000001102,Diamorphine 20mg/5ml oral solution,11664111000001102,AMP,0407020K0AADFDF +11720411000001101,Diamorphine 50mg/5ml oral solution,11720411000001101,VMP,0407020K0AADGDG +11668511000001104,Diamorphine 50mg/5ml oral solution,11668511000001104,AMP,0407020K0AADGDG +12291711000001101,Diamorphine 10mg/5ml oral solution,12291711000001101,VMP,0407020K0AADIDI +12242411000001107,Diamorphine 10mg/5ml oral solution,12242411000001107,AMP,0407020K0AADIDI +11719811000001103,Diamorphine 25mg/5ml oral solution,11719811000001103,VMP,0407020K0AADJDJ +11664911000001104,Diamorphine 25mg/5ml oral solution,11664911000001104,AMP,0407020K0AADJDJ +12292411000001102,Diamorphine 5mg/5ml oral solution,12292411000001102,VMP,0407020K0AADKDK +12242011000001103,Diamorphine 5mg/5ml oral solution,12242011000001103,AMP,0407020K0AADKDK +12292311000001109,Diamorphine 50mg impregnated cigarettes,12292311000001109,VMP,0407020K0AADLDL +12238611000001106,Diamorphine 50mg impregnated cigarettes,12238611000001106,AMP,0407020K0AADLDL +11720511000001102,Diamorphine 6mg/5ml oral solution,11720511000001102,VMP,0407020K0AADQDQ +11668811000001101,Diamorphine 6mg/5ml oral solution,11668811000001101,AMP,0407020K0AADQDQ +11720311000001108,Diamorphine 45mg/5ml oral solution,11720311000001108,VMP,0407020K0AADRDR +11667911000001105,Diamorphine 45mg/5ml oral solution,11667911000001105,AMP,0407020K0AADRDR +11720211000001100,Diamorphine 40mg/5ml oral solution,11720211000001100,VMP,0407020K0AADSDS +11667311000001109,Diamorphine 40mg/5ml oral solution,11667311000001109,AMP,0407020K0AADSDS +11719211000001104,Diamorphine 15mg/5ml oral solution,11719211000001104,VMP,0407020K0AADTDT +11661011000001101,Diamorphine 15mg/5ml oral solution,11661011000001101,AMP,0407020K0AADTDT +11719311000001107,Diamorphine 180mg/5ml oral solution,11719311000001107,VMP,0407020K0AADVDV +11662211000001104,Diamorphine 180mg/5ml oral solution,11662211000001104,AMP,0407020K0AADVDV +11719711000001106,Diamorphine 240mg/5ml oral solution,11719711000001106,VMP,0407020K0AADWDW +11664611000001105,Diamorphine 240mg/5ml oral solution,11664611000001105,AMP,0407020K0AADWDW +11719111000001105,Diamorphine 100mg/5ml oral solution,11719111000001105,VMP,0407020K0AADXDX +11660311000001108,Diamorphine 100mg/5ml oral solution,11660311000001108,AMP,0407020K0AADXDX +11720011000001105,Diamorphine 30mg/5ml oral solution,11720011000001105,VMP,0407020K0AAEAEA +11665911000001100,Diamorphine 30mg/5ml oral solution,11665911000001100,AMP,0407020K0AAEAEA +16073811000001106,Diamorphine 5mg powder for solution for injection vials,16073811000001106,VMP,0407020K0AAEFEF +16442411000001107,Diamorphine 5mg powder for solution for injection vials,16442411000001107,AMP,0407020K0AAEFEF +16057511000001101,Diamorphine 5mg powder for solution for injection vials,16057511000001101,AMP,0407020K0AAEFEF +16073511000001108,Diamorphine 10mg powder for solution for injection vials,16073511000001108,VMP,0407020K0AAEGEG +16442611000001105,Diamorphine 10mg powder for solution for injection vials,16442611000001105,AMP,0407020K0AAEGEG +16057911000001108,Diamorphine 10mg powder for solution for injection vials,16057911000001108,AMP,0407020K0AAEGEG +16073411000001109,Diamorphine 100mg powder for solution for injection vials,16073411000001109,VMP,0407020K0AAEHEH +16443011000001107,Diamorphine 100mg powder for solution for injection vials,16443011000001107,AMP,0407020K0AAEHEH +16058811000001104,Diamorphine 100mg powder for solution for injection vials,16058811000001104,AMP,0407020K0AAEHEH +16073711000001103,Diamorphine 500mg powder for solution for injection vials,16073711000001103,VMP,0407020K0AAEIEI +16443411000001103,Diamorphine 500mg powder for solution for injection vials,16443411000001103,AMP,0407020K0AAEIEI +16059511000001108,Diamorphine 500mg powder for solution for injection vials,16059511000001108,AMP,0407020K0AAEIEI +16073611000001107,Diamorphine 30mg powder for solution for injection vials,16073611000001107,VMP,0407020K0AAEMEM +16442811000001109,Diamorphine 30mg powder for solution for injection vials,16442811000001109,AMP,0407020K0AAEMEM +16058311000001108,Diamorphine 30mg powder for solution for injection vials,16058311000001108,AMP,0407020K0AAEMEM +11719511000001101,Diamorphine 200mg/5ml oral solution,11719511000001101,VMP,0407020K0AAEQEQ +11663511000001108,Diamorphine 200mg/5ml oral solution,11663511000001108,AMP,0407020K0AAEQEQ +12292011000001106,Diamorphine 20mg impregnated cigarettes,12292011000001106,VMP,0407020K0AAEUEU +12235911000001106,Diamorphine 20mg impregnated cigarettes,12235911000001106,AMP,0407020K0AAEUEU +12291911000001104,Diamorphine 120mg impregnated cigarettes,12291911000001104,VMP,0407020K0AAEVEV +12236811000001109,Diamorphine 120mg impregnated cigarettes,12236811000001109,AMP,0407020K0AAEVEV +13384011000001103,Diamorphine 340mg/5ml oral solution,13384011000001103,VMP,0407020K0AAEWEW +13378411000001109,Diamorphine 340mg/5ml oral solution,13378411000001109,AMP,0407020K0AAEWEW +13384111000001102,Diamorphine 350mg/5ml oral solution,13384111000001102,VMP,0407020K0AAEXEX +13378011000001100,Diamorphine 350mg/5ml oral solution,13378011000001100,AMP,0407020K0AAEXEX +13384211000001108,Diamorphine 360mg/5ml oral solution,13384211000001108,VMP,0407020K0AAEYEY +13377711000001104,Diamorphine 360mg/5ml oral solution,13377711000001104,AMP,0407020K0AAEYEY +13384311000001100,Diamorphine 370mg/5ml oral solution,13384311000001100,VMP,0407020K0AAEZEZ +13377211000001106,Diamorphine 370mg/5ml oral solution,13377211000001106,AMP,0407020K0AAEZEZ +13384411000001107,Diamorphine 380mg/5ml oral solution,13384411000001107,VMP,0407020K0AAFAFA +13376911000001100,Diamorphine 380mg/5ml oral solution,13376911000001100,AMP,0407020K0AAFAFA +13384511000001106,Diamorphine 390mg/5ml oral solution,13384511000001106,VMP,0407020K0AAFBFB +13376611000001106,Diamorphine 390mg/5ml oral solution,13376611000001106,AMP,0407020K0AAFBFB +13372111000001102,Diamorphine 400mg/5ml oral solution,13372111000001102,VMP,0407020K0AAFCFC +13371911000001105,Diamorphine 400mg/5ml oral solution,13371911000001105,AMP,0407020K0AAFCFC +13384611000001105,Diamorphine 410mg/5ml oral solution,13384611000001105,VMP,0407020K0AAFDFD +13378711000001103,Diamorphine 410mg/5ml oral solution,13378711000001103,AMP,0407020K0AAFDFD +15436511000001108,Diamorphine 320mg/5ml oral solution,15436511000001108,VMP,0407020K0AAFEFE +15428311000001101,Diamorphine 320mg/5ml oral solution,15428311000001101,AMP,0407020K0AAFEFE +15631511000001102,Diamorphine 250mg/5ml oral solution,15631511000001102,VMP,0407020K0AAFFFF +15617011000001109,Diamorphine 250mg/5ml oral solution,15617011000001109,AMP,0407020K0AAFFFF +15631611000001103,Diamorphine 260mg/5ml oral solution,15631611000001103,VMP,0407020K0AAFGFG +15617311000001107,Diamorphine 260mg/5ml oral solution,15617311000001107,AMP,0407020K0AAFGFG +15631711000001107,Diamorphine 270mg/5ml oral solution,15631711000001107,VMP,0407020K0AAFHFH +15617611000001102,Diamorphine 270mg/5ml oral solution,15617611000001102,AMP,0407020K0AAFHFH +15631811000001104,Diamorphine 280mg/5ml oral solution,15631811000001104,VMP,0407020K0AAFIFI +15617911000001108,Diamorphine 280mg/5ml oral solution,15617911000001108,AMP,0407020K0AAFIFI +15631911000001109,Diamorphine 290mg/5ml oral solution,15631911000001109,VMP,0407020K0AAFJFJ +15618211000001100,Diamorphine 290mg/5ml oral solution,15618211000001100,AMP,0407020K0AAFJFJ +15632011000001102,Diamorphine 300mg/5ml oral solution,15632011000001102,VMP,0407020K0AAFKFK +15618511000001102,Diamorphine 300mg/5ml oral solution,15618511000001102,AMP,0407020K0AAFKFK +15632111000001101,Diamorphine 310mg/5ml oral solution,15632111000001101,VMP,0407020K0AAFLFL +15618811000001104,Diamorphine 310mg/5ml oral solution,15618811000001104,AMP,0407020K0AAFLFL +15632211000001107,Diamorphine 330mg/5ml oral solution,15632211000001107,VMP,0407020K0AAFMFM +15619111000001104,Diamorphine 330mg/5ml oral solution,15619111000001104,AMP,0407020K0AAFMFM +19946711000001109,Diamorphine 130mg/5ml oral solution,19946711000001109,VMP,0407020K0AAFNFN +19909311000001107,Diamorphine 130mg/5ml oral solution,19909311000001107,AMP,0407020K0AAFNFN +39709111000001101,Diamorphine hydrochloride powder,39709111000001101,VMP,0407020K0AAFPFP +4304511000001109,Diamorphine hydrochloride powder,4304511000001109,AMP,0407020K0AAFPFP +10834311000001109,Diamorphine hydrochloride powder,10834311000001109,AMP,0407020K0AAFPFP +4307011000001109,Diamorphine hydrochloride powder,4307011000001109,AMP,0407020K0AAFPFP +19740511000001107,Diamorphine hydrochloride powder,19740511000001107,AMP,0407020K0AAFPFP +4306111000001107,Diamorphine hydrochloride powder,4306111000001107,AMP,0407020K0AAFPFP +15105811000001106,Diamorphine hydrochloride powder,15105811000001106,AMP,0407020K0AAFPFP +37514111000001109,Diamorphine hydrochloride powder,37514111000001109,AMP,0407020K0AAFPFP +4306811000001100,Diamorphine hydrochloride powder,4306811000001100,AMP,0407020K0AAFPFP +42477011000001103,Diamorphine 500mg oral powder sachets,42477011000001103,VMP,0407020K0AAFQFQ +42447811000001108,Diamorphine 500mg oral powder sachets,42447811000001108,AMP,0407020K0AAFQFQ +12299211000001109,Methadone 100mg impregnated cigarettes,12299211000001109,VMP,0407020M0AAA2A2 +12240411000001106,Methadone 100mg impregnated cigarettes,12240411000001106,AMP,0407020M0AAA2A2 +36121011000001105,Methadone 20mg/2ml solution for injection ampoules,36121011000001105,VMP,0407020M0AAA3A3 +491111000001101,Methadone 20mg/2ml solution for injection ampoules,491111000001101,AMP,0407020M0AAA3A3 +928511000001106,Methadone 20mg/2ml solution for injection ampoules,928511000001106,AMP,0407020M0AAA3A3 +54711000001100,Methadone 20mg/2ml solution for injection ampoules,54711000001100,AMP,0407020M0AAA3A3 +4831911000001105,Methadone 20mg/2ml solution for injection ampoules,4831911000001105,AMP,0407020M0AAA3A3 +331911000001102,Methadone 20mg/2ml solution for injection ampoules,331911000001102,AMP,0407020M0AAA3A3 +170111000001100,Methadone 20mg/2ml solution for injection ampoules,170111000001100,AMP,0407020M0AAA3A3 +5709011000001107,Methadone 50mg/2ml solution for injection ampoules,5709011000001107,VMP,0407020M0AAA6A6 +12389611000001101,Methadone 20mg/1ml solution for injection ampoules,12389611000001101,VMP,0407020M0AAA8A8 +12317611000001109,Methadone 20mg/1ml solution for injection ampoules,12317611000001109,AMP,0407020M0AAA8A8 +12389711000001105,Methadone 30mg suppositories,12389711000001105,VMP,0407020M0AAA9A9 +12319911000001105,Methadone 30mg suppositories,12319911000001105,AMP,0407020M0AAA9A9 +5709211000001102,Methadone 50mg/1ml solution for injection ampoules,5709211000001102,VMP,0407020M0AAACAC +5866211000001105,Methadone 50mg/1ml solution for injection ampoules,5866211000001105,AMP,0407020M0AAACAC +5643311000001106,Methadone 50mg/1ml solution for injection ampoules,5643311000001106,AMP,0407020M0AAACAC +22605411000001109,Methadone 50mg/1ml solution for injection ampoules,22605411000001109,AMP,0407020M0AAACAC +24119211000001104,Methadone 50mg/1ml solution for injection ampoules,24119211000001104,AMP,0407020M0AAACAC +19739811000001100,Methadone 50mg/1ml solution for injection ampoules,19739811000001100,AMP,0407020M0AAACAC +42412711000001105,Methadone 50mg/1ml solution for injection ampoules,42412711000001105,AMP,0407020M0AAACAC +24570811000001107,Methadone 50mg/1ml solution for injection ampoules,24570811000001107,AMP,0407020M0AAACAC +22158111000001104,Methadone 50mg/1ml solution for injection ampoules,22158111000001104,AMP,0407020M0AAACAC +14204211000001100,Methadone 100mg suppositories,14204211000001100,VMP,0407020M0AAADAD +14189911000001106,Methadone 100mg suppositories,14189911000001106,AMP,0407020M0AAADAD +42385311000001106,Methadone 5mg tablets,42385311000001106,VMP,0407020M0AAAEAE +39815511000001107,Methadone 5mg tablets,39815511000001107,AMP,0407020M0AAAEAE +39611611000001102,Methadone 5mg tablets,39611611000001102,AMP,0407020M0AAAEAE +39574111000001107,Methadone 5mg tablets,39574111000001107,AMP,0407020M0AAAEAE +4317311000001105,Methadone hydrochloride powder,4317311000001105,VMP,0407020M0AAAFAF +4298611000001107,Methadone hydrochloride powder,4298611000001107,AMP,0407020M0AAAFAF +4300311000001106,Methadone hydrochloride powder,4300311000001106,AMP,0407020M0AAAFAF +4299411000001101,Methadone hydrochloride powder,4299411000001101,AMP,0407020M0AAAFAF +4299111000001106,Methadone hydrochloride powder,4299111000001106,AMP,0407020M0AAAFAF +4299811000001104,Methadone hydrochloride powder,4299811000001104,AMP,0407020M0AAAFAF +12390011000001104,Methadone 40mg impregnated cigarettes,12390011000001104,VMP,0407020M0AAAGAG +12319311000001109,Methadone 40mg impregnated cigarettes,12319311000001109,AMP,0407020M0AAAGAG +12299911000001100,Methadone 30mg impregnated cigarettes,12299911000001100,VMP,0407020M0AAAJAJ +12239611000001102,Methadone 30mg impregnated cigarettes,12239611000001102,AMP,0407020M0AAAJAJ +12389411000001104,Methadone 10mg capsules,12389411000001104,VMP,0407020M0AAAKAK +12316811000001106,Methadone 10mg capsules,12316811000001106,AMP,0407020M0AAAKAK +36032811000001103,Methadone 50mg/5ml solution for injection ampoules,36032811000001103,VMP,0407020M0AAANAN +889811000001104,Methadone 50mg/5ml solution for injection ampoules,889811000001104,AMP,0407020M0AAANAN +844611000001106,Methadone 50mg/5ml solution for injection ampoules,844611000001106,AMP,0407020M0AAANAN +448311000001101,Methadone 50mg/5ml solution for injection ampoules,448311000001101,AMP,0407020M0AAANAN +4832411000001107,Methadone 50mg/5ml solution for injection ampoules,4832411000001107,AMP,0407020M0AAANAN +600111000001108,Methadone 50mg/5ml solution for injection ampoules,600111000001108,AMP,0407020M0AAANAN +426311000001102,Methadone 50mg/5ml solution for injection ampoules,426311000001102,AMP,0407020M0AAANAN +36123211000001101,Methadone 35mg/3.5ml solution for injection ampoules,36123211000001101,VMP,0407020M0AAATAT +467511000001101,Methadone 35mg/3.5ml solution for injection ampoules,467511000001101,AMP,0407020M0AAATAT +699611000001108,Methadone 35mg/3.5ml solution for injection ampoules,699611000001108,AMP,0407020M0AAATAT +643211000001104,Methadone 35mg/3.5ml solution for injection ampoules,643211000001104,AMP,0407020M0AAATAT +4832211000001108,Methadone 35mg/3.5ml solution for injection ampoules,4832211000001108,AMP,0407020M0AAATAT +679311000001106,Methadone 35mg/3.5ml solution for injection ampoules,679311000001106,AMP,0407020M0AAATAT +537511000001101,Methadone 35mg/3.5ml solution for injection ampoules,537511000001101,AMP,0407020M0AAATAT +36120511000001109,Methadone 10mg/1ml solution for injection ampoules,36120511000001109,VMP,0407020M0AAAVAV +87611000001109,Methadone 10mg/1ml solution for injection ampoules,87611000001109,AMP,0407020M0AAAVAV +325411000001105,Methadone 10mg/1ml solution for injection ampoules,325411000001105,AMP,0407020M0AAAVAV +879011000001102,Methadone 10mg/1ml solution for injection ampoules,879011000001102,AMP,0407020M0AAAVAV +4831411000001102,Methadone 10mg/1ml solution for injection ampoules,4831411000001102,AMP,0407020M0AAAVAV +852411000001103,Methadone 10mg/1ml solution for injection ampoules,852411000001103,AMP,0407020M0AAAVAV +12300011000001101,Methadone 35mg/1ml solution for injection ampoules,12300011000001101,VMP,0407020M0AAAWAW +12243511000001104,Methadone 35mg/1ml solution for injection ampoules,12243511000001104,AMP,0407020M0AAAWAW +12300311000001103,Methadone 60mg impregnated cigarettes,12300311000001103,VMP,0407020M0AAAXAX +12239211000001104,Methadone 60mg impregnated cigarettes,12239211000001104,AMP,0407020M0AAAXAX +12300111000001100,Methadone 35mg/2ml solution for injection ampoules,12300111000001100,VMP,0407020M0AABHBH +12243111000001108,Methadone 35mg/2ml solution for injection ampoules,12243111000001108,AMP,0407020M0AABHBH +12299811000001105,Methadone 30mg capsules,12299811000001105,VMP,0407020M0AABIBI +12245011000001108,Methadone 30mg capsules,12245011000001108,AMP,0407020M0AABIBI +12389811000001102,Methadone 30mg tablets,12389811000001102,VMP,0407020M0AABJBJ +12320211000001102,Methadone 30mg tablets,12320211000001102,AMP,0407020M0AABJBJ +12390111000001103,Methadone 40mg/1ml solution for injection ampoules,12390111000001103,VMP,0407020M0AABKBK +12318811000001107,Methadone 40mg/1ml solution for injection ampoules,12318811000001107,AMP,0407020M0AABKBK +12300211000001106,Methadone 50mg capsules,12300211000001106,VMP,0407020M0AABLBL +12246111000001103,Methadone 50mg capsules,12246111000001103,AMP,0407020M0AABLBL +12299111000001103,Methadone 100mg capsules,12299111000001103,VMP,0407020M0AABMBM +12245711000001105,Methadone 100mg capsules,12245711000001105,AMP,0407020M0AABMBM +12389511000001100,Methadone 15mg suppositories,12389511000001100,VMP,0407020M0AABSBS +12319611000001104,Methadone 15mg suppositories,12319611000001104,AMP,0407020M0AABSBS +12389911000001107,Methadone 40mg capsules,12389911000001107,VMP,0407020M0AABTBT +12317111000001101,Methadone 40mg capsules,12317111000001101,AMP,0407020M0AABTBT +19722711000001100,Methadone 5mg capsules,19722711000001100,VMP,0407020M0AABUBU +19710311000001108,Methadone 5mg capsules,19710311000001108,AMP,0407020M0AABUBU +29732211000001108,Methadone 50mg tablets,29732211000001108,VMP,0407020M0AABVBV +29729511000001100,Methadone 50mg tablets,29729511000001100,AMP,0407020M0AABVBV +462111000001108,Physeptone 5mg tablets,462111000001108,AMP,0407020M0BBAAAE +754611000001105,Physeptone 10mg/1ml solution for injection ampoules,754611000001105,AMP,0407020M0BBABAV +541911000001104,Physeptone 20mg/2ml solution for injection ampoules,541911000001104,AMP,0407020M0BBACA3 +642511000001108,Physeptone 35mg/3.5ml solution for injection ampoules,642511000001108,AMP,0407020M0BBADAT +444411000001104,Physeptone 50mg/5ml solution for injection ampoules,444411000001104,AMP,0407020M0BBAEAN +8449111000001100,Physeptone 50mg/2ml solution for injection ampoules,8449111000001100,AMP,0407020M0BBAHA6 +8450011000001106,Physeptone 50mg/1ml solution for injection ampoules,8450011000001106,AMP,0407020M0BBAIAC +7664111000001101,Synastone 10mg/1ml solution for injection ampoules,7664111000001101,AMP,0407020M0BCAAAV +5643711000001105,Synastone 50mg/1ml solution for injection ampoules,5643711000001105,AMP,0407020M0BCABAC +5645711000001106,Synastone 50mg/2ml solution for injection ampoules,5645711000001106,AMP,0407020M0BCACA6 +20093911000001101,Synastone 50mg/5ml solution for injection ampoules,20093911000001101,AMP,0407020M0BCADAN +42015111000001108,Morphine hydrochloride 15mg suppositories,42015111000001108,VMP,0407020P0AAABAB +4958711000001107,Morphine hydrochloride 15mg suppositories,4958711000001107,AMP,0407020P0AAABAB +42015211000001102,Morphine hydrochloride 30mg suppositories,42015211000001102,VMP,0407020P0AAACAC +12321611000001105,Morphine hydrochloride 30mg suppositories,12321611000001105,AMP,0407020P0AAACAC +36128011000001104,Morphine hydrochloride powder,36128011000001104,VMP,0407020P0AAADAD +4301011000001104,Morphine hydrochloride powder,4301011000001104,AMP,0407020P0AAADAD +4302111000001108,Morphine hydrochloride powder,4302111000001108,AMP,0407020P0AAADAD +4301411000001108,Morphine hydrochloride powder,4301411000001108,AMP,0407020P0AAADAD +15233911000001108,Morphine hydrochloride powder,15233911000001108,AMP,0407020P0AAADAD +4301711000001102,Morphine hydrochloride powder,4301711000001102,AMP,0407020P0AAADAD +36127911000001101,Morphine and Cocaine elixir,36127911000001101,VMP,0407020P0AAAIAI +8183911000001105,Morphine and Cocaine elixir,8183911000001105,AMP,0407020P0AAAIAI +11420211000001107,Morphine and Cocaine elixir,11420211000001107,AMP,0407020P0AAAIAI +12141011000001109,Morphine hydrochloride 50mg/5ml oral solution,12141011000001109,VMP,0407020P0AAANAN +12132111000001104,Morphine hydrochloride 50mg/5ml oral solution,12132111000001104,AMP,0407020P0AAANAN +12140611000001107,Morphine hydrochloride 100mg/5ml oral solution,12140611000001107,VMP,0407020P0AAAPAP +12130711000001102,Morphine hydrochloride 100mg/5ml oral solution,12130711000001102,AMP,0407020P0AAAPAP +12390511000001107,Morphine hydrochloride 10mg suppositories,12390511000001107,VMP,0407020P0AAAQAQ +12321111000001102,Morphine hydrochloride 10mg suppositories,12321111000001102,AMP,0407020P0AAAQAQ +12141111000001105,Morphine hydrochloride 5mg/5ml oral solution,12141111000001105,VMP,0407020P0AAARAR +12132411000001109,Morphine hydrochloride 5mg/5ml oral solution,12132411000001109,AMP,0407020P0AAARAR +12140711000001103,Morphine hydrochloride 10mg/5ml oral solution,12140711000001103,VMP,0407020P0AAASAS +12131111000001109,Morphine hydrochloride 10mg/5ml oral solution,12131111000001109,AMP,0407020P0AAASAS +12140911000001101,Morphine hydrochloride 25mg/5ml oral solution,12140911000001101,VMP,0407020P0AAATAT +12131711000001105,Morphine hydrochloride 25mg/5ml oral solution,12131711000001105,AMP,0407020P0AAATAT +12140511000001108,Morphine hydrochloride 1.5mg/5ml oral solution,12140511000001108,VMP,0407020P0AAAWAW +12130311000001101,Morphine hydrochloride 1.5mg/5ml oral solution,12130311000001101,AMP,0407020P0AAAWAW +12140811000001106,Morphine hydrochloride 15mg/5ml oral solution,12140811000001106,VMP,0407020P0AAAXAX +12131411000001104,Morphine hydrochloride 15mg/5ml oral solution,12131411000001104,AMP,0407020P0AAAXAX +20146311000001106,Morphine hydrochloride 20mg/5ml oral solution,20146311000001106,VMP,0407020P0AAAYAY +20135111000001104,Morphine hydrochloride 20mg/5ml oral solution,20135111000001104,AMP,0407020P0AAAYAY +21579211000001106,Morphine hydrochloride 10mg/10ml solution for injection pre-filled syringes,21579211000001106,VMP,0407020P0AAAZAZ +21542411000001100,Morphine hydrochloride 10mg/10ml solution for injection pre-filled syringes,21542411000001100,AMP,0407020P0AAAZAZ +21579511000001109,Morphine hydrochloride 50mg/50ml solution for infusion pre-filled syringes,21579511000001109,VMP,0407020P0AABABA +21543011000001100,Morphine hydrochloride 50mg/50ml solution for infusion pre-filled syringes,21543011000001100,AMP,0407020P0AABABA +21579411000001105,Morphine hydrochloride 1mg/1ml solution for injection ampoules,21579411000001105,VMP,0407020P0AABBBB +21559111000001103,Morphine hydrochloride 1mg/1ml solution for injection ampoules,21559111000001103,AMP,0407020P0AABBBB +21579711000001104,Morphine hydrochloride 5mg/5ml solution for injection ampoules,21579711000001104,VMP,0407020P0AABCBC +21559911000001100,Morphine hydrochloride 5mg/5ml solution for injection ampoules,21559911000001100,AMP,0407020P0AABCBC +12391711000001105,Morphine sulfate 5mg/1ml solution for injection ampoules,12391711000001105,VMP,0407020Q0AAA2A2 +12335511000001107,Morphine sulfate 5mg/1ml solution for injection ampoules,12335511000001107,AMP,0407020Q0AAA2A2 +12391311000001106,Morphine sulfate 2mg/5ml solution for injection ampoules,12391311000001106,VMP,0407020Q0AAA3A3 +12333211000001105,Morphine sulfate 2mg/5ml solution for injection ampoules,12333211000001105,AMP,0407020Q0AAA3A3 +22401911000001100,Morphine sulfate 1mg/1ml solution for injection ampoules,22401911000001100,VMP,0407020Q0AAA4A4 +22402211000001102,Morphine sulfate 1mg/1ml solution for injection ampoules,22402211000001102,AMP,0407020Q0AAA4A4 +30947711000001109,Morphine sulfate 1mg/1ml solution for injection ampoules,30947711000001109,AMP,0407020Q0AAA4A4 +12391411000001104,Morphine sulfate 4mg/10ml solution for injection ampoules,12391411000001104,VMP,0407020Q0AAA5A5 +12333611000001107,Morphine sulfate 4mg/10ml solution for injection ampoules,12333611000001107,AMP,0407020Q0AAA5A5 +36128611000001106,Morphine sulfate 20mg/ml oral solution sugar free,36128611000001106,VMP,0407020Q0AAA6A6 +12391611000001101,Morphine sulfate 5mg/10ml solution for injection ampoules,12391611000001101,VMP,0407020Q0AAA8A8 +12334711000001101,Morphine sulfate 5mg/10ml solution for injection ampoules,12334711000001101,AMP,0407020Q0AAA8A8 +12391211000001103,Morphine sulfate 2mg/10ml solution for injection ampoules,12391211000001103,VMP,0407020Q0AAAAAA +12332111000001105,Morphine sulfate 2mg/10ml solution for injection ampoules,12332111000001105,AMP,0407020Q0AAAAAA +36128211000001109,Morphine sulfate 10mg/1ml solution for injection ampoules,36128211000001109,VMP,0407020Q0AAABAB +4382711000001105,Morphine sulfate 10mg/1ml solution for injection ampoules,4382711000001105,AMP,0407020Q0AAABAB +39146711000001105,Morphine sulfate 10mg/1ml solution for injection ampoules,39146711000001105,AMP,0407020Q0AAABAB +4383611000001106,Morphine sulfate 10mg/1ml solution for injection ampoules,4383611000001106,AMP,0407020Q0AAABAB +24403511000001100,Morphine sulfate 10mg/1ml solution for injection ampoules,24403511000001100,AMP,0407020Q0AAABAB +40838611000001106,Morphine sulfate 10mg/1ml solution for injection ampoules,40838611000001106,AMP,0407020Q0AAABAB +4383411000001108,Morphine sulfate 10mg/1ml solution for injection ampoules,4383411000001108,AMP,0407020Q0AAABAB +4383011000001104,Morphine sulfate 10mg/1ml solution for injection ampoules,4383011000001104,AMP,0407020Q0AAABAB +4383211000001109,Morphine sulfate 10mg/1ml solution for injection ampoules,4383211000001109,AMP,0407020Q0AAABAB +10678011000001108,Morphine sulfate 10mg/1ml solution for injection ampoules,10678011000001108,AMP,0407020Q0AAABAB +38895511000001108,Morphine sulfate 15mg/1ml solution for injection ampoules,38895511000001108,VMP,0407020Q0AAACAC +4045011000001105,Morphine sulfate 15mg/1ml solution for injection ampoules,4045011000001105,AMP,0407020Q0AAACAC +39146511000001100,Morphine sulfate 15mg/1ml solution for injection ampoules,39146511000001100,AMP,0407020Q0AAACAC +4047511000001106,Morphine sulfate 15mg/1ml solution for injection ampoules,4047511000001106,AMP,0407020Q0AAACAC +40839011000001109,Morphine sulfate 15mg/1ml solution for injection ampoules,40839011000001109,AMP,0407020Q0AAACAC +4047011000001103,Morphine sulfate 15mg/1ml solution for injection ampoules,4047011000001103,AMP,0407020Q0AAACAC +4046311000001103,Morphine sulfate 15mg/1ml solution for injection ampoules,4046311000001103,AMP,0407020Q0AAACAC +4046711000001104,Morphine sulfate 15mg/1ml solution for injection ampoules,4046711000001104,AMP,0407020Q0AAACAC +36128711000001102,Morphine sulfate 30mg/1ml solution for injection ampoules,36128711000001102,VMP,0407020Q0AAADAD +4048411000001106,Morphine sulfate 30mg/1ml solution for injection ampoules,4048411000001106,AMP,0407020Q0AAADAD +39146811000001102,Morphine sulfate 30mg/1ml solution for injection ampoules,39146811000001102,AMP,0407020Q0AAADAD +4049611000001100,Morphine sulfate 30mg/1ml solution for injection ampoules,4049611000001100,AMP,0407020Q0AAADAD +24403711000001105,Morphine sulfate 30mg/1ml solution for injection ampoules,24403711000001105,AMP,0407020Q0AAADAD +40839211000001104,Morphine sulfate 30mg/1ml solution for injection ampoules,40839211000001104,AMP,0407020Q0AAADAD +4049411000001103,Morphine sulfate 30mg/1ml solution for injection ampoules,4049411000001103,AMP,0407020Q0AAADAD +4048911000001103,Morphine sulfate 30mg/1ml solution for injection ampoules,4048911000001103,AMP,0407020Q0AAADAD +4049211000001102,Morphine sulfate 30mg/1ml solution for injection ampoules,4049211000001102,AMP,0407020Q0AAADAD +12391011000001108,Morphine sulfate 2.5mg/5ml solution for injection ampoules,12391011000001108,VMP,0407020Q0AAAEAE +12329811000001105,Morphine sulfate 2.5mg/5ml solution for injection ampoules,12329811000001105,AMP,0407020Q0AAAEAE +36128511000001107,Morphine sulfate 20mg/1ml solution for injection ampoules,36128511000001107,VMP,0407020Q0AAAFAF +4478411000001100,Morphine sulfate 20mg/1ml solution for injection ampoules,4478411000001100,AMP,0407020Q0AAAFAF +8436411000001104,Morphine sulfate 20mg/1ml solution for injection ampoules,8436411000001104,AMP,0407020Q0AAAFAF +4478911000001108,Morphine sulfate 20mg/1ml solution for injection ampoules,4478911000001108,AMP,0407020Q0AAAFAF +36127011000001100,Morphine 200mg modified-release tablets,36127011000001100,VMP,0407020Q0AAAGAG +16653411000001104,Morphine 200mg modified-release tablets,16653411000001104,AMP,0407020Q0AAAGAG +36126211000001108,Morphine 100mg modified-release tablets,36126211000001108,VMP,0407020Q0AAAHAH +36127711000001103,Morphine 60mg modified-release tablets,36127711000001103,VMP,0407020Q0AAAIAI +36126511000001106,Morphine 10mg modified-release tablets,36126511000001106,VMP,0407020Q0AAAKAK +36127311000001102,Morphine 30mg modified-release tablets,36127311000001102,VMP,0407020Q0AAALAL +36128911000001100,Morphine sulfate 60mg/2ml solution for injection ampoules,36128911000001100,VMP,0407020Q0AAAMAM +4476211000001100,Morphine sulfate 60mg/2ml solution for injection ampoules,4476211000001100,AMP,0407020Q0AAAMAM +21507711000001104,Morphine sulfate 60mg/2ml solution for injection ampoules,21507711000001104,AMP,0407020Q0AAAMAM +4477511000001100,Morphine sulfate 60mg/2ml solution for injection ampoules,4477511000001100,AMP,0407020Q0AAAMAM +4476511000001102,Morphine sulfate 60mg/2ml solution for injection ampoules,4476511000001102,AMP,0407020Q0AAAMAM +4477011000001108,Morphine sulfate 60mg/2ml solution for injection ampoules,4477011000001108,AMP,0407020Q0AAAMAM +36129111000001105,Morphine sulfate powder,36129111000001105,VMP,0407020Q0AAANAN +4294711000001106,Morphine sulfate powder,4294711000001106,AMP,0407020Q0AAANAN +4297211000001106,Morphine sulfate powder,4297211000001106,AMP,0407020Q0AAANAN +4295911000001107,Morphine sulfate powder,4295911000001107,AMP,0407020Q0AAANAN +15235111000001106,Morphine sulfate powder,15235111000001106,AMP,0407020Q0AAANAN +4296511000001107,Morphine sulfate powder,4296511000001107,AMP,0407020Q0AAANAN +12390811000001105,Morphine sulfate 10mg/2ml solution for injection ampoules,12390811000001105,VMP,0407020Q0AABCBC +12329211000001109,Morphine sulfate 10mg/2ml solution for injection ampoules,12329211000001109,AMP,0407020Q0AABCBC +42015711000001109,Morphine sulfate 5mg suppositories,42015711000001109,VMP,0407020Q0AABJBJ +12338511000001104,Morphine sulfate 5mg suppositories,12338511000001104,AMP,0407020Q0AABJBJ +12391911000001107,Morphine sulfate 60mg suppositories,12391911000001107,VMP,0407020Q0AABNBN +12338811000001101,Morphine sulfate 60mg suppositories,12338811000001101,AMP,0407020Q0AABNBN +12390611000001106,Morphine sulfate 100mg suppositories,12390611000001106,VMP,0407020Q0AABPBP +12337011000001106,Morphine sulfate 100mg suppositories,12337011000001106,AMP,0407020Q0AABPBP +12391511000001100,Morphine sulfate 50mg suppositories,12391511000001100,VMP,0407020Q0AABVBV +12338111000001108,Morphine sulfate 50mg suppositories,12338111000001108,AMP,0407020Q0AABVBV +42014811000001102,Morphine 10mg tablets,42014811000001102,VMP,0407020Q0AACDCD +42014911000001107,Morphine 20mg tablets,42014911000001107,VMP,0407020Q0AACECE +36126811000001109,Morphine 15mg modified-release tablets,36126811000001109,VMP,0407020Q0AACFCF +36127511000001108,Morphine 5mg modified-release tablets,36127511000001108,VMP,0407020Q0AACGCG +36128311000001101,Morphine sulfate 10mg/5ml oral solution,36128311000001101,VMP,0407020Q0AACNCN +3163111000001105,Morphine sulfate 10mg/5ml oral solution,3163111000001105,AMP,0407020Q0AACNCN +21665611000001105,Morphine sulfate 10mg/5ml oral solution,21665611000001105,AMP,0407020Q0AACNCN +9762411000001102,Morphine sulfate 10mg/5ml oral solution,9762411000001102,AMP,0407020Q0AACNCN +24404111000001106,Morphine sulfate 10mg/5ml oral solution,24404111000001106,AMP,0407020Q0AACNCN +32424011000001108,Morphine sulfate 10mg/5ml oral solution,32424011000001108,AMP,0407020Q0AACNCN +3164911000001105,Morphine sulfate 10mg/5ml oral solution,3164911000001105,AMP,0407020Q0AACNCN +18046511000001109,Morphine sulfate 10mg/5ml oral solution,18046511000001109,AMP,0407020Q0AACNCN +39051211000001102,Morphine sulfate 10mg/5ml oral solution,39051211000001102,AMP,0407020Q0AACNCN +29927111000001108,Morphine sulfate 10mg/5ml oral solution,29927111000001108,AMP,0407020Q0AACNCN +33054811000001102,Morphine sulfate 10mg/5ml oral solution,33054811000001102,AMP,0407020Q0AACNCN +4389511000001109,Morphine 30mg modified-release granules sachets sugar free,4389511000001109,VMP,0407020Q0AACPCP +42015311000001105,Morphine sulfate 10mg suppositories,42015311000001105,VMP,0407020Q0AACQCQ +4036011000001100,Morphine sulfate 10mg suppositories,4036011000001100,AMP,0407020Q0AACQCQ +4036711000001103,Morphine sulfate 10mg suppositories,4036711000001103,AMP,0407020Q0AACQCQ +4036211000001105,Morphine sulfate 10mg suppositories,4036211000001105,AMP,0407020Q0AACQCQ +42015511000001104,Morphine sulfate 20mg suppositories,42015511000001104,VMP,0407020Q0AACRCR +4526211000001106,Morphine sulfate 20mg suppositories,4526211000001106,AMP,0407020Q0AACRCR +9762811000001100,Morphine sulfate 20mg suppositories,9762811000001100,AMP,0407020Q0AACRCR +4526611000001108,Morphine sulfate 20mg suppositories,4526611000001108,AMP,0407020Q0AACRCR +19947711000001107,Morphine sulfate 20mg suppositories,19947711000001107,AMP,0407020Q0AACRCR +3631511000001107,Morphine sulfate 30mg/5ml oral solution unit dose vials sugar free,3631511000001107,VMP,0407020Q0AACTCT +3631411000001108,Morphine sulfate 100mg/5ml oral solution unit dose vials sugar free,3631411000001108,VMP,0407020Q0AACUCU +4389411000001105,Morphine 20mg modified-release granules sachets sugar free,4389411000001105,VMP,0407020Q0AACVCV +4110911000001104,Morphine 60mg modified-release granules sachets sugar free,4110911000001104,VMP,0407020Q0AADCDC +4110711000001101,Morphine 100mg modified-release granules sachets sugar free,4110711000001101,VMP,0407020Q0AADDDD +4110811000001109,Morphine 200mg modified-release granules sachets sugar free,4110811000001109,VMP,0407020Q0AADEDE +12391111000001109,Morphine sulfate 20mg/2ml solution for injection ampoules,12391111000001109,VMP,0407020Q0AADIDI +12332811000001103,Morphine sulfate 20mg/2ml solution for injection ampoules,12332811000001103,AMP,0407020Q0AADIDI +12144511000001104,Morphine sulfate 50mg/5ml oral solution,12144511000001104,VMP,0407020Q0AADKDK +12144311000001105,Morphine sulfate 50mg/5ml oral solution,12144311000001105,AMP,0407020Q0AADKDK +12143711000001107,Morphine sulfate 5mg/5ml oral solution,12143711000001107,VMP,0407020Q0AADNDN +12143511000001102,Morphine sulfate 5mg/5ml oral solution,12143511000001102,AMP,0407020Q0AADNDN +42015011000001107,Morphine 50mg tablets,42015011000001107,VMP,0407020Q0AADRDR +12390311000001101,Morphine 30mg capsules,12390311000001101,VMP,0407020Q0AADSDS +12323311000001104,Morphine 30mg capsules,12323311000001104,AMP,0407020Q0AADSDS +12390411000001108,Morphine 60mg capsules,12390411000001108,VMP,0407020Q0AADTDT +12324111000001104,Morphine 60mg capsules,12324111000001104,AMP,0407020Q0AADTDT +36127811000001106,Morphine 90mg modified-release capsules,36127811000001106,VMP,0407020Q0AADUDU +36126611000001105,Morphine 120mg modified-release capsules,36126611000001105,VMP,0407020Q0AADVDV +36126711000001101,Morphine 150mg modified-release capsules,36126711000001101,VMP,0407020Q0AADWDW +12390211000001109,Morphine 200mg capsules,12390211000001109,VMP,0407020Q0AADXDX +12322711000001108,Morphine 200mg capsules,12322711000001108,AMP,0407020Q0AADXDX +12212211000001102,Morphine sulfate 20mg/5ml oral solution,12212211000001102,VMP,0407020Q0AADYDY +12201611000001108,Morphine sulfate 20mg/5ml oral solution,12201611000001108,AMP,0407020Q0AADYDY +36127111000001104,Morphine 20mg modified-release capsules,36127111000001104,VMP,0407020Q0AADZDZ +36127411000001109,Morphine 50mg modified-release capsules,36127411000001109,VMP,0407020Q0AAEAEA +36125811000001101,Morphine 100mg modified-release capsules,36125811000001101,VMP,0407020Q0AAEBEB +12143911000001109,Morphine sulfate 75mg/5ml oral solution,12143911000001109,VMP,0407020Q0AAECEC +12142911000001102,Morphine sulfate 75mg/5ml oral solution,12142911000001102,AMP,0407020Q0AAECEC +12390911000001100,Morphine sulfate 2.5mg suppositories,12390911000001100,VMP,0407020Q0AAEEEE +12337811000001100,Morphine sulfate 2.5mg suppositories,12337811000001100,AMP,0407020Q0AAEEEE +36126411000001107,Morphine 10mg modified-release capsules,36126411000001107,VMP,0407020Q0AAEFEF +36127211000001105,Morphine 30mg modified-release capsules,36127211000001105,VMP,0407020Q0AAEGEG +36127611000001107,Morphine 60mg modified-release capsules,36127611000001107,VMP,0407020Q0AAEHEH +36126911000001104,Morphine 200mg modified-release capsules,36126911000001104,VMP,0407020Q0AAEIEI +10189611000001103,Morphine sulfate 100mg/50ml solution for infusion vials,10189611000001103,VMP,0407020Q0AAELEL +20192011000001101,Morphine sulfate 100mg/50ml solution for infusion vials,20192011000001101,AMP,0407020Q0AAELEL +15248711000001101,Morphine sulfate 100mg/50ml solution for infusion vials,15248711000001101,AMP,0407020Q0AAELEL +10069311000001102,Morphine sulfate 100mg/50ml solution for infusion vials,10069311000001102,AMP,0407020Q0AAELEL +30823711000001107,Morphine sulfate 100mg/50ml solution for infusion vials,30823711000001107,AMP,0407020Q0AAELEL +10189711000001107,Morphine sulfate 50mg/50ml solution for infusion vials,10189711000001107,VMP,0407020Q0AAENEN +20191811000001103,Morphine sulfate 50mg/50ml solution for infusion vials,20191811000001103,AMP,0407020Q0AAENEN +10069811000001106,Morphine sulfate 50mg/50ml solution for infusion vials,10069811000001106,AMP,0407020Q0AAENEN +10069611000001107,Morphine sulfate 50mg/50ml solution for infusion vials,10069611000001107,AMP,0407020Q0AAENEN +17300411000001107,Morphine sulfate 50mg/50ml solution for infusion vials,17300411000001107,AMP,0407020Q0AAENEN +12392011000001100,Morphine sulfate 750mg suppositories,12392011000001100,VMP,0407020Q0AAEPEP +12339211000001107,Morphine sulfate 750mg suppositories,12339211000001107,AMP,0407020Q0AAEPEP +12185911000001104,Morphine sulfate 1g/5ml oral solution,12185911000001104,VMP,0407020Q0AAERER +12153411000001104,Morphine sulfate 1g/5ml oral solution,12153411000001104,AMP,0407020Q0AAERER +12143811000001104,Morphine sulfate 60mg/5ml oral solution,12143811000001104,VMP,0407020Q0AAESES +12143211000001100,Morphine sulfate 60mg/5ml oral solution,12143211000001100,AMP,0407020Q0AAESES +12186311000001105,Morphine sulfate 30mg/5ml oral solution,12186311000001105,VMP,0407020Q0AAETET +12149011000001108,Morphine sulfate 30mg/5ml oral solution,12149011000001108,AMP,0407020Q0AAETET +12144011000001107,Morphine sulfate 80mg/5ml oral solution,12144011000001107,VMP,0407020Q0AAFAFA +12142611000001108,Morphine sulfate 80mg/5ml oral solution,12142611000001108,AMP,0407020Q0AAFAFA +12186211000001102,Morphine sulfate 3.35mg/5ml oral solution,12186211000001102,VMP,0407020Q0AAFBFB +12151111000001108,Morphine sulfate 3.35mg/5ml oral solution,12151111000001108,AMP,0407020Q0AAFBFB +10075511000001100,Morphine sulfate 10mg/1ml solution for injection pre-filled syringes,10075511000001100,VMP,0407020Q0AAFCFC +10065911000001103,Morphine sulfate 10mg/1ml solution for injection pre-filled syringes,10065911000001103,AMP,0407020Q0AAFCFC +10066311000001109,Morphine sulfate 10mg/1ml solution for injection pre-filled syringes,10066311000001109,AMP,0407020Q0AAFCFC +12300511000001109,Morphine sulfate 500micrograms/5ml oral solution,12300511000001109,VMP,0407020Q0AAFDFD +12247011000001101,Morphine sulfate 500micrograms/5ml oral solution,12247011000001101,AMP,0407020Q0AAFDFD +12186511000001104,Morphine sulfate 40mg/5ml oral solution,12186511000001104,VMP,0407020Q0AAFEFE +12148011000001103,Morphine sulfate 40mg/5ml oral solution,12148011000001103,AMP,0407020Q0AAFEFE +12186111000001108,Morphine sulfate 2mg/5ml oral solution,12186111000001108,VMP,0407020Q0AAFFFF +12151411000001103,Morphine sulfate 2mg/5ml oral solution,12151411000001103,AMP,0407020Q0AAFFFF +12185811000001109,Morphine sulfate 1.5mg/5ml oral solution,12185811000001109,VMP,0407020Q0AAFGFG +12156211000001105,Morphine sulfate 1.5mg/5ml oral solution,12156211000001105,AMP,0407020Q0AAFGFG +12186011000001107,Morphine sulfate 1mg/5ml oral solution,12186011000001107,VMP,0407020Q0AAFHFH +12152411000001108,Morphine sulfate 1mg/5ml oral solution,12152411000001108,AMP,0407020Q0AAFHFH +12186411000001103,Morphine sulfate 3mg/5ml oral solution,12186411000001103,VMP,0407020Q0AAFIFI +12148311000001100,Morphine sulfate 3mg/5ml oral solution,12148311000001100,AMP,0407020Q0AAFIFI +9750511000001106,Morphine sulfate 10mg/10ml solution for injection pre-filled syringes,9750511000001106,VMP,0407020Q0AAFJFJ +19723011000001106,Morphine sulfate 300mg/10ml solution for injection ampoules,19723011000001106,VMP,0407020Q0AAFKFK +19710611000001103,Morphine sulfate 300mg/10ml solution for injection ampoules,19710611000001103,AMP,0407020Q0AAFKFK +17236211000001105,Morphine sulfate 30mg/30ml solution for infusion vials,17236211000001105,VMP,0407020Q0AAFPFP +17219611000001109,Morphine sulfate 30mg/30ml solution for infusion vials,17219611000001109,AMP,0407020Q0AAFPFP +17651911000001107,Morphine 2% gel,17651911000001107,VMP,0407020Q0AAFQFQ +17648211000001109,Morphine 2% gel,17648211000001109,AMP,0407020Q0AAFQFQ +18153811000001107,Morphine sulfate 100mg/100ml infusion bags,18153811000001107,VMP,0407020Q0AAFRFR +18147811000001104,Morphine sulfate 100mg/100ml infusion bags,18147811000001104,AMP,0407020Q0AAFRFR +19976311000001109,Morphine 0.1% gel,19976311000001109,VMP,0407020Q0AAFSFS +19948111000001107,Morphine 0.1% gel,19948111000001107,AMP,0407020Q0AAFSFS +20419411000001102,Morphine sulfate 100mg/50ml solution for infusion pre-filled syringes,20419411000001102,VMP,0407020Q0AAFTFT +20418211000001106,Morphine sulfate 100mg/50ml solution for infusion pre-filled syringes,20418211000001106,AMP,0407020Q0AAFTFT +21245211000001101,Morphine 0.2% gel,21245211000001101,VMP,0407020Q0AAFUFU +21223511000001104,Morphine 0.2% gel,21223511000001104,AMP,0407020Q0AAFUFU +21579811000001107,Morphine sulfate 100mg/10ml solution for injection ampoules,21579811000001107,VMP,0407020Q0AAFVFV +21555311000001103,Morphine sulfate 100mg/10ml solution for injection ampoules,21555311000001103,AMP,0407020Q0AAFVFV +21636011000001103,Morphine sulfate 50mg/5ml solution for injection ampoules,21636011000001103,VMP,0407020Q0AAFWFW +21627711000001101,Morphine sulfate 50mg/5ml solution for injection ampoules,21627711000001101,AMP,0407020Q0AAFWFW +23400911000001101,Morphine 0.1% in Intrasite gel,23400911000001101,VMP,0407020Q0AAFXFX +23374011000001108,Morphine 0.1% in Intrasite gel,23374011000001108,AMP,0407020Q0AAFXFX +24216811000001107,Morphine 0.2% in Intrasite gel,24216811000001107,VMP,0407020Q0AAFYFY +24129811000001108,Morphine 0.2% in Intrasite gel,24129811000001108,AMP,0407020Q0AAFYFY +12391811000001102,Morphine sulfate 5mg/5ml solution for injection ampoules,12391811000001102,VMP,0407020Q0AAFZFZ +12336111000001109,Morphine sulfate 5mg/5ml solution for injection ampoules,12336111000001109,AMP,0407020Q0AAFZFZ +30823211000001100,Morphine sulfate 5mg/5ml solution for injection ampoules,30823211000001100,AMP,0407020Q0AAFZFZ +21579911000001102,Morphine sulfate 10mg/10ml solution for injection ampoules,21579911000001102,VMP,0407020Q0AAGAGA +38953411000001105,Morphine sulfate 10mg/10ml solution for injection ampoules,38953411000001105,AMP,0407020Q0AAGAGA +21540711000001107,Morphine sulfate 10mg/10ml solution for injection ampoules,21540711000001107,AMP,0407020Q0AAGAGA +30823411000001101,Morphine sulfate 10mg/10ml solution for injection ampoules,30823411000001101,AMP,0407020Q0AAGAGA +30996711000001101,Morphine sulfate 10mg/10ml solution for injection ampoules,30996711000001101,AMP,0407020Q0AAGAGA +3521311000001108,Morphine sulfate 10mg/5ml oral solution unit dose vials sugar free,3521311000001108,VMP,0407020Q0AAGBGB +19796111000001108,Morphine sulfate 10mg/5ml oral solution unit dose vials sugar free,19796111000001108,AMP,0407020Q0AAGBGB +42015611000001100,Morphine sulfate 30mg suppositories,42015611000001100,VMP,0407020Q0AAGCGC +4273611000001108,Morphine sulfate 30mg suppositories,4273611000001108,AMP,0407020Q0AAGCGC +4039811000001100,Morphine sulfate 30mg suppositories,4039811000001100,AMP,0407020Q0AAGCGC +4038911000001102,Morphine sulfate 30mg suppositories,4038911000001102,AMP,0407020Q0AAGCGC +4039411000001102,Morphine sulfate 30mg suppositories,4039411000001102,AMP,0407020Q0AAGCGC +35535611000001105,Morphine sulfate 30mg suppositories,35535611000001105,AMP,0407020Q0AAGCGC +42015411000001103,Morphine sulfate 15mg suppositories,42015411000001103,VMP,0407020Q0AAGDGD +4037411000001106,Morphine sulfate 15mg suppositories,4037411000001106,AMP,0407020Q0AAGDGD +4038111000001100,Morphine sulfate 15mg suppositories,4038111000001100,AMP,0407020Q0AAGDGD +4037811000001108,Morphine sulfate 15mg suppositories,4037811000001108,AMP,0407020Q0AAGDGD +35535311000001100,Morphine sulfate 15mg suppositories,35535311000001100,AMP,0407020Q0AAGDGD +40491811000001100,Morphine 2.5mg orodispersible tablets sugar free,40491811000001100,VMP,0407020Q0AAGEGE +40491611000001104,Morphine 10mg orodispersible tablets sugar free,40491611000001104,VMP,0407020Q0AAGFGF +40491711000001108,Morphine 1mg orodispersible tablets sugar free,40491711000001108,VMP,0407020Q0AAGGGG +40491911000001105,Morphine 20mg orodispersible tablets sugar free,40491911000001105,VMP,0407020Q0AAGHGH +40492011000001103,Morphine 30mg orodispersible tablets sugar free,40492011000001103,VMP,0407020Q0AAGIGI +40492111000001102,Morphine 5mg orodispersible tablets sugar free,40492111000001102,VMP,0407020Q0AAGJGJ +3077711000001104,MST Continus 10mg tablets,3077711000001104,AMP,0407020Q0BBAAAK +3078711000001103,MST Continus 30mg tablets,3078711000001103,AMP,0407020Q0BBABAL +2883211000001103,MST Continus 60mg tablets,2883211000001103,AMP,0407020Q0BBACAI +2883611000001101,MST Continus 100mg tablets,2883611000001101,AMP,0407020Q0BBADAH +394011000001106,MST Continus 200mg tablets,394011000001106,AMP,0407020Q0BBAEAG +4379311000001107,MST Continus suspension 20mg granules sachets,4379311000001107,AMP,0407020Q0BBAFCV +4380011000001109,MST Continus suspension 30mg granules sachets,4380011000001109,AMP,0407020Q0BBAGCP +4088311000001108,MST Continus suspension 60mg granules sachets,4088311000001108,AMP,0407020Q0BBAHDC +4088611000001103,MST Continus suspension 100mg granules sachets,4088611000001103,AMP,0407020Q0BBAIDD +4089211000001105,MST Continus suspension 200mg granules sachets,4089211000001105,AMP,0407020Q0BBAJDE +922411000001105,MST Continus 5mg tablets,922411000001105,AMP,0407020Q0BBAKCG +272811000001105,MST Continus 15mg tablets,272811000001105,AMP,0407020Q0BBALCF +3453511000001105,Oramorph 20mg/ml concentrated oral solution,3453511000001105,AMP,0407020Q0BCABA6 +3164311000001109,Oramorph 10mg/5ml oral solution,3164311000001109,AMP,0407020Q0BCAGCN +3331611000001103,Oramorph 10mg/5ml oral solution unit dose vials,3331611000001103,AMP,0407020Q0BCAHGB +3609711000001109,Oramorph 30mg/5ml oral solution unit dose vials,3609711000001109,AMP,0407020Q0BCAICT +3608411000001106,Oramorph 100mg/5ml oral solution unit dose vials,3608411000001106,AMP,0407020Q0BCAJCU +9748311000001100,Morphine sulfate 10mg/10ml solution for injection Minijet pre-filled syringes,9748311000001100,AMP,0407020Q0BEABFJ +2898611000001107,Sevredol 10mg tablets,2898611000001107,AMP,0407020Q0BHACCD +3077311000001103,Sevredol 20mg tablets,3077311000001103,AMP,0407020Q0BHADCE +3079311000001108,Sevredol 50mg tablets,3079311000001108,AMP,0407020Q0BHAFDR +3164111000001107,Sevredol 10mg/5ml oral solution,3164111000001107,AMP,0407020Q0BHAGCN +3451411000001107,Sevredol 20mg/ml concentrated oral solution,3451411000001107,AMP,0407020Q0BHAHA6 +3651811000001106,MXL 30mg capsules,3651811000001106,AMP,0407020Q0BIAAEG +3778211000001107,MXL 60mg capsules,3778211000001107,AMP,0407020Q0BIABEH +3882611000001101,MXL 90mg capsules,3882611000001101,AMP,0407020Q0BIACDU +3883211000001109,MXL 120mg capsules,3883211000001109,AMP,0407020Q0BIADDV +3882911000001107,MXL 150mg capsules,3882911000001107,AMP,0407020Q0BIAEDW +4388011000001106,MXL 200mg capsules,4388011000001106,AMP,0407020Q0BIAFEI +3881711000001103,Morcap SR 20mg capsules,3881711000001103,AMP,0407020Q0BJAADZ +4035011000001109,Morcap SR 50mg capsules,4035011000001109,AMP,0407020Q0BJABEA +3882211000001103,Morcap SR 100mg capsules,3882211000001103,AMP,0407020Q0BJACEB +3652111000001109,Zomorph 10mg modified-release capsules,3652111000001109,AMP,0407020Q0BKAAEF +3651611000001107,Zomorph 30mg modified-release capsules,3651611000001107,AMP,0407020Q0BKABEG +3778011000001102,Zomorph 60mg modified-release capsules,3778011000001102,AMP,0407020Q0BKACEH +3881611000001107,Zomorph 100mg modified-release capsules,3881611000001107,AMP,0407020Q0BKADEB +4035511000001101,Zomorph 200mg modified-release capsules,4035511000001101,AMP,0407020Q0BKAEEI +3075211000001103,Filnarine SR 10mg tablets,3075211000001103,AMP,0407020Q0BMAAAK +3078911000001101,Filnarine SR 30mg tablets,3078911000001101,AMP,0407020Q0BMABAL +93411000001103,Filnarine SR 60mg tablets,93411000001103,AMP,0407020Q0BMACAI +219511000001108,Filnarine SR 100mg tablets,219511000001108,AMP,0407020Q0BMADAH +14930611000001104,Filnarine SR 200mg tablets,14930611000001104,AMP,0407020Q0BMAEAG +4525911000001109,Morphgesic SR 10mg tablets,4525911000001109,AMP,0407020Q0BNAAAK +4526811000001107,Morphgesic SR 30mg tablets,4526811000001107,AMP,0407020Q0BNABAL +4527211000001108,Morphgesic SR 60mg tablets,4527211000001108,AMP,0407020Q0BNACAI +4527911000001104,Morphgesic SR 100mg tablets,4527911000001104,AMP,0407020Q0BNADAH +4526311000001103,Rhotard Morphine SR 10mg tablets,4526311000001103,AMP,0407020Q0BPAAAK +4527011000001103,Rhotard Morphine SR 30mg tablets,4527011000001103,AMP,0407020Q0BPABAL +4527411000001107,Rhotard Morphine SR 60mg tablets,4527411000001107,AMP,0407020Q0BPACAI +4528311000001104,Rhotard Morphine SR 100mg tablets,4528311000001104,AMP,0407020Q0BPADAH +40471711000001100,Actimorph 2.5mg orodispersible tablets,40471711000001100,AMP,0407020Q0BQAAGE +40476111000001105,Actimorph 10mg orodispersible tablets,40476111000001105,AMP,0407020Q0BQABGF +40467911000001100,Actimorph 1mg orodispersible tablets,40467911000001100,AMP,0407020Q0BQACGG +40477011000001107,Actimorph 20mg orodispersible tablets,40477011000001107,AMP,0407020Q0BQADGH +40469911000001107,Actimorph 30mg orodispersible tablets,40469911000001107,AMP,0407020Q0BQAEGI +40479711000001101,Actimorph 5mg orodispersible tablets,40479711000001101,AMP,0407020Q0BQAFGJ +42016311000001100,Pentazocine 50mg capsules,42016311000001100,VMP,0407020T0AAAAAA +3794211000001106,Pentazocine 50mg capsules,3794211000001106,AMP,0407020T0AAAAAA +3794711000001104,Pentazocine 50mg capsules,3794711000001104,AMP,0407020T0AAAAAA +3796011000001106,Pentazocine 50mg capsules,3796011000001106,AMP,0407020T0AAAAAA +24625311000001102,Pentazocine 50mg capsules,24625311000001102,AMP,0407020T0AAAAAA +37773211000001107,Pentazocine 50mg capsules,37773211000001107,AMP,0407020T0AAAAAA +26855211000001107,Pentazocine 50mg capsules,26855211000001107,AMP,0407020T0AAAAAA +3795311000001104,Pentazocine 50mg capsules,3795311000001104,AMP,0407020T0AAAAAA +39887711000001106,Pentazocine 50mg capsules,39887711000001106,AMP,0407020T0AAAAAA +15155311000001105,Pentazocine 50mg capsules,15155311000001105,AMP,0407020T0AAAAAA +3795711000001100,Pentazocine 50mg capsules,3795711000001100,AMP,0407020T0AAAAAA +3795111000001101,Pentazocine 50mg capsules,3795111000001101,AMP,0407020T0AAAAAA +42016211000001108,Pentazocine 25mg tablets,42016211000001108,VMP,0407020T0AAABAB +3790811000001102,Pentazocine 25mg tablets,3790811000001102,AMP,0407020T0AAABAB +3791311000001101,Pentazocine 25mg tablets,3791311000001101,AMP,0407020T0AAABAB +3792211000001102,Pentazocine 25mg tablets,3792211000001102,AMP,0407020T0AAABAB +37773411000001106,Pentazocine 25mg tablets,37773411000001106,AMP,0407020T0AAABAB +4743711000001108,Pentazocine 25mg tablets,4743711000001108,AMP,0407020T0AAABAB +39178011000001106,Pentazocine 25mg tablets,39178011000001106,AMP,0407020T0AAABAB +18167711000001104,Pentazocine 25mg tablets,18167711000001104,AMP,0407020T0AAABAB +15155111000001108,Pentazocine 25mg tablets,15155111000001108,AMP,0407020T0AAABAB +3791611000001106,Pentazocine 25mg tablets,3791611000001106,AMP,0407020T0AAABAB +21844911000001103,Pentazocine 25mg tablets,21844911000001103,AMP,0407020T0AAABAB +3791911000001100,Pentazocine 25mg tablets,3791911000001100,AMP,0407020T0AAABAB +3792511000001104,Fortral 25mg tablets,3792511000001104,AMP,0407020T0BBABAB +36027611000001101,Pentazocine 30mg/1ml solution for injection ampoules,36027611000001101,VMP,0407020U0AAAAAA +4079511000001100,Pentazocine 30mg/1ml solution for injection ampoules,4079511000001100,AMP,0407020U0AAAAAA +4079311000001106,Pentazocine 30mg/1ml solution for injection ampoules,4079311000001106,AMP,0407020U0AAAAAA +42016411000001107,Pentazocine 50mg suppositories,42016411000001107,VMP,0407020U0AAABAB +4084711000001104,Pentazocine 50mg suppositories,4084711000001104,AMP,0407020U0AAABAB +4084211000001106,Pentazocine 50mg suppositories,4084211000001106,AMP,0407020U0AAABAB +36027711000001105,Pentazocine 60mg/2ml solution for injection ampoules,36027711000001105,VMP,0407020U0AAACAC +4080011000001108,Pentazocine 60mg/2ml solution for injection ampoules,4080011000001108,AMP,0407020U0AAACAC +4079111000001109,Fortral 30mg/1ml solution for injection ampoules,4079111000001109,AMP,0407020U0BBAAAA +4079811000001102,Fortral 60mg/2ml solution for injection ampoules,4079811000001102,AMP,0407020U0BBABAC +4084011000001101,Fortral 50mg suppositories,4084011000001101,AMP,0407020U0BBACAB +36028311000001107,Pethidine 50mg/1ml solution for injection ampoules,36028311000001107,VMP,0407020V0AAAAAA +240611000001109,Pethidine 50mg/1ml solution for injection ampoules,240611000001109,AMP,0407020V0AAAAAA +15629011000001107,Pethidine 50mg/1ml solution for injection ampoules,15629011000001107,AMP,0407020V0AAAAAA +10679211000001108,Pethidine 50mg/1ml solution for injection ampoules,10679211000001108,AMP,0407020V0AAAAAA +79611000001105,Pethidine 50mg/1ml solution for injection ampoules,79611000001105,AMP,0407020V0AAAAAA +23711000001103,Pethidine 50mg/1ml solution for injection ampoules,23711000001103,AMP,0407020V0AAAAAA +764311000001106,Pethidine 50mg/1ml solution for injection ampoules,764311000001106,AMP,0407020V0AAAAAA +39702511000001101,Pethidine 50mg tablets,39702511000001101,VMP,0407020V0AAACAC +269811000001107,Pethidine 50mg tablets,269811000001107,AMP,0407020V0AAACAC +313711000001105,Pethidine 50mg tablets,313711000001105,AMP,0407020V0AAACAC +27996011000001107,Pethidine 50mg tablets,27996011000001107,AMP,0407020V0AAACAC +30076111000001101,Pethidine 50mg tablets,30076111000001101,AMP,0407020V0AAACAC +42161611000001107,Pethidine 50mg tablets,42161611000001107,AMP,0407020V0AAACAC +38956411000001100,Pethidine 50mg tablets,38956411000001100,AMP,0407020V0AAACAC +257811000001105,Pethidine 50mg tablets,257811000001105,AMP,0407020V0AAACAC +39186011000001103,Pethidine 50mg tablets,39186011000001103,AMP,0407020V0AAACAC +21666011000001107,Pethidine 50mg tablets,21666011000001107,AMP,0407020V0AAACAC +36028211000001104,Pethidine 100mg/2ml solution for injection ampoules,36028211000001104,VMP,0407020V0AAAEAE +676311000001104,Pethidine 100mg/2ml solution for injection ampoules,676311000001104,AMP,0407020V0AAAEAE +15628611000001109,Pethidine 100mg/2ml solution for injection ampoules,15628611000001109,AMP,0407020V0AAAEAE +10679411000001107,Pethidine 100mg/2ml solution for injection ampoules,10679411000001107,AMP,0407020V0AAAEAE +805311000001107,Pethidine 100mg/2ml solution for injection ampoules,805311000001107,AMP,0407020V0AAAEAE +748611000001103,Pethidine 100mg/2ml solution for injection ampoules,748611000001103,AMP,0407020V0AAAEAE +496611000001102,Pethidine 100mg/2ml solution for injection ampoules,496611000001102,AMP,0407020V0AAAEAE +4026811000001109,Pethidine 100mg/2ml / Promethazine 50mg/2ml solution for injection ampoules,4026811000001109,VMP,0407020V0AAAIAI +36028111000001105,Pethidine 100mg/10ml solution for injection ampoules,36028111000001105,VMP,0407020V0AAALAL +881511000001103,Pethidine 100mg/10ml solution for injection ampoules,881511000001103,AMP,0407020V0AAALAL +446111000001102,Pethidine 100mg/10ml solution for injection ampoules,446111000001102,AMP,0407020V0AAALAL +46711000001107,Pethidine 100mg/10ml solution for injection ampoules,46711000001107,AMP,0407020V0AAALAL +36028411000001100,Pethidine 50mg/5ml solution for injection ampoules,36028411000001100,VMP,0407020V0AAAPAP +183111000001103,Pethidine 50mg/5ml solution for injection ampoules,183111000001103,AMP,0407020V0AAAPAP +505311000001108,Pethidine 50mg/5ml solution for injection ampoules,505311000001108,AMP,0407020V0AAAPAP +513211000001101,Pethidine 50mg/5ml solution for injection ampoules,513211000001101,AMP,0407020V0AAAPAP +12212611000001100,Pethidine 25mg/5ml oral solution,12212611000001100,VMP,0407020V0AAARAR +12202111000001105,Pethidine 25mg/5ml oral solution,12202111000001105,AMP,0407020V0AAARAR +12106611000001104,Pethidine 50mg/5ml oral solution,12106611000001104,VMP,0407020V0AAATAT +12104411000001105,Pethidine 50mg/5ml oral solution,12104411000001105,AMP,0407020V0AAATAT +12392311000001102,Pethidine 100mg suppositories,12392311000001102,VMP,0407020V0AAAUAU +12360411000001106,Pethidine 100mg suppositories,12360411000001106,AMP,0407020V0AAAUAU +12392411000001109,Pethidine 100mg/1ml solution for injection ampoules,12392411000001109,VMP,0407020V0AAAXAX +12358211000001103,Pethidine 100mg/1ml solution for injection ampoules,12358211000001103,AMP,0407020V0AAAXAX +12392511000001108,Pethidine 10mg/1ml solution for injection ampoules,12392511000001108,VMP,0407020V0AAAZAZ +12358911000001107,Pethidine 10mg/1ml solution for injection ampoules,12358911000001107,AMP,0407020V0AAAZAZ +12104711000001104,Pethidine 10mg/5ml oral solution,12104711000001104,VMP,0407020V0AABABA +12102911000001106,Pethidine 10mg/5ml oral solution,12102911000001106,AMP,0407020V0AABABA +12106411000001102,Pethidine 40mg/5ml oral solution,12106411000001102,VMP,0407020V0AABBBB +12103811000001109,Pethidine 40mg/5ml oral solution,12103811000001109,AMP,0407020V0AABBBB +12106211000001101,Pethidine 30mg/5ml oral solution,12106211000001101,VMP,0407020V0AABCBC +12103211000001108,Pethidine 30mg/5ml oral solution,12103211000001108,AMP,0407020V0AABCBC +12106511000001103,Pethidine 45mg/5ml oral solution,12106511000001103,VMP,0407020V0AABDBD +12104111000001100,Pethidine 45mg/5ml oral solution,12104111000001100,AMP,0407020V0AABDBD +12106311000001109,Pethidine 35mg/5ml oral solution,12106311000001109,VMP,0407020V0AABEBE +12103511000001106,Pethidine 35mg/5ml oral solution,12103511000001106,AMP,0407020V0AABEBE +12303411000001102,Pethidine 50mg capsules,12303411000001102,VMP,0407020V0AABFBF +12247311000001103,Pethidine 50mg capsules,12247311000001103,AMP,0407020V0AABFBF +3986711000001104,Pamergan P100 solution for injection 2ml ampoules,3986711000001104,AMP,0407020V0BCAAAI +36022611000001104,Morphine (Opium tincture) 10mg/ml oral drops sugar free,36022611000001104,VMP,0407020W0AAAAAA +4980711000001100,Opium tincture,4980711000001100,AMP,0407020W0AAAAAA +37122911000001104,Dropizol 10mg/ml oral drops,37122911000001104,AMP,0407020W0BBAAAA +36028711000001106,Nalbuphine 10mg/1ml solution for injection ampoules,36028711000001106,VMP,0407020Y0AAAAAA +36028811000001103,Nalbuphine 20mg/2ml solution for injection ampoules,36028811000001103,VMP,0407020Y0AAADAD +33666311000001101,Nalbuphine 20mg/2ml solution for injection ampoules,33666311000001101,AMP,0407020Y0AAADAD +34806911000001105,Nalbuphine 20mg/2ml solution for injection ampoules,34806911000001105,AMP,0407020Y0AAADAD +4056411000001108,Nubain 10mg/1ml solution for injection ampoules,4056411000001108,AMP,0407020Y0BBAAAA +4057111000001100,Nubain 20mg/2ml solution for injection ampoules,4057111000001100,AMP,0407020Y0BBABAD +12392111000001104,Oxycodone hydrochloride 30mg suppositories,12392111000001104,VMP,0407020Z0AAAAAA +17632111000001100,Oxycodone pectinate 30mg suppositories,17632111000001100,VMP,0407020Z0AAAAAA +12350511000001103,Oxycodone hydrochloride 30mg suppositories,12350511000001103,AMP,0407020Z0AAAAAA +12424911000001109,Oxycodone hydrochloride 60mg suppositories,12424911000001109,VMP,0407020Z0AAABAB +12350811000001100,Oxycodone hydrochloride 60mg suppositories,12350811000001100,AMP,0407020Z0AAABAB +17589011000001108,Proladone 30mg suppositories,17589011000001108,AMP,0407020Z0BBAAAA +134806003,VMP previous to 42011811000001104,134806003,VMP,0407020A0AAAPAP +134807007,VMP previous to 42011711000001107,134807007,VMP,0407020A0AAANAN +134808002,VMP previous to 42012211000001107,134808002,VMP,0407020A0AAALAL +134809005,VMP previous to 42012111000001101,134809005,VMP,0407020A0AAAKAK +134810000,VMP previous to 42012011000001102,134810000,VMP,0407020A0AAAJAJ +134812008,VMP previous to 42011911000001109,134812008,VMP,0407020A0AAAIAI +322428003,VMP previous to 42015411000001103,322428003,VMP,0407020Q0AAGDGD +322432009,VMP previous to 42015311000001105,322432009,VMP,0407020Q0AACQCQ +322433004,VMP previous to 42015511000001104,322433004,VMP,0407020Q0AACRCR +322440003,VMP previous to 36128311000001101,322440003,VMP,0407020Q0AACNCN +322446009,VMP previous to 42015111000001108,322446009,VMP,0407020P0AAABAB +322447000,VMP previous to 42015211000001102,322447000,VMP,0407020P0AAACAC +322448005,VMP previous to 36128011000001104,322448005,VMP,0407020P0AAADAD +322450002,VMP previous to 36129111000001105,322450002,VMP,0407020Q0AAANAN +322455007,VMP previous to 42015611000001100,322455007,VMP,0407020Q0AAGCGC +322456008,VMP previous to 36022611000001104,322456008,VMP,0407020W0AAAAAA +322486001,VMP previous to 36127911000001101,322486001,VMP,0407020P0AAAIAI +322492007,VMP previous to 42009211000001102,322492007,VMP,0407020B0AAADAD +322498006,VMP previous to 42009011000001107,322498006,VMP,0407020B0AAABAB +322499003,VMP previous to 35913611000001107,322499003,VMP,0407020B0AAAAAA +322514007,VMP previous to 42011011000001105,322514007,VMP,0407020D0AAADAD +322515008,VMP previous to 42010911000001102,322515008,VMP,0407020D0AAAEAE +322522000,VMP previous to 42011411000001101,322522000,VMP,0407020K0AACBCB +322523005,VMP previous to 34819611000001105,322523005,VMP,0407020K0AAAAAA +322524004,VMP previous to 42011311000001108,322524004,VMP,0407020K0AAABAB +322525003,VMP previous to 42011511000001102,322525003,VMP,0407020K0AAAEAE +322526002,VMP previous to 42011211000001100,322526002,VMP,0407020K0AAAFAF +322527006,VMP previous to 42011611000001103,322527006,VMP,0407020K0AAAGAG +322556006,VMP previous to 39689711000001107,322556006,VMP,0407020H0AAABAB +322588003,VMP previous to 36121011000001105,322588003,VMP,0407020M0AAA3A3 +322589006,VMP previous to 36123211000001101,322589006,VMP,0407020M0AAATAT +322590002,VMP previous to 36032811000001103,322590002,VMP,0407020M0AAANAN +322591003,VMP previous to 42385311000001106,322591003,VMP,0407020M0AAAEAE +322592005,VMP previous to 36120511000001109,322592005,VMP,0407020M0AAAVAV +322596008,VMP previous to 36028711000001106,322596008,VMP,0407020Y0AAAAAA +322597004,VMP previous to 36028811000001103,322597004,VMP,0407020Y0AAADAD +322600003,VMP previous to 42016311000001100,322600003,VMP,0407020T0AAAAAA +322601004,VMP previous to 42016211000001108,322601004,VMP,0407020T0AAABAB +322602006,VMP previous to 36027611000001101,322602006,VMP,0407020U0AAAAAA +322603001,VMP previous to 36027711000001105,322603001,VMP,0407020U0AAACAC +322604007,VMP previous to 42016411000001107,322604007,VMP,0407020U0AAABAB +322612004,VMP previous to 39702511000001101,322612004,VMP,0407020V0AAACAC +322665006,VMP previous to 42012811000001108,322665006,VMP,040702050AAAEAE +322667003,VMP previous to 42012911000001103,322667003,VMP,040702050AAADAD +322669000,VMP previous to 36057411000001103,322669000,VMP,040702050AAAFAF +322670004,VMP previous to 36057611000001100,322670004,VMP,040702050AAAGAG +322671000,VMP previous to 36057711000001109,322671000,VMP,040702050AAACAC +322672007,VMP previous to 36057211000001102,322672007,VMP,040702050AAAAAA +322673002,VMP previous to 36057311000001105,322673002,VMP,040702050AAABAB +322689004,VMP previous to 36131211000001102,322689004,VMP,0407020ADAAAAAA +322690008,VMP previous to 36130011000001103,322690008,VMP,0407020ADAAABAB +322691007,VMP previous to 42016011000001103,322691007,VMP,0407020ADAAACAC +322692000,VMP previous to 42015811000001101,322692000,VMP,0407020ADAAADAD +322693005,VMP previous to 42015911000001106,322693005,VMP,0407020ADAAAEAE +322694004,VMP previous to 36129511000001101,322694004,VMP,0407020ADAAAFAF +322695003,VMP previous to 36130411000001107,322695003,VMP,0407020ADAAAGAG +322696002,VMP previous to 36130911000001104,322696002,VMP,0407020ADAAAHAH +322697006,VMP previous to 36131511000001104,322697006,VMP,0407020ADAAAIAI +322708003,VMP previous to 42014811000001102,322708003,VMP,0407020Q0AACDCD +322709006,VMP previous to 42014911000001107,322709006,VMP,0407020Q0AACECE +322710001,VMP previous to 36127511000001108,322710001,VMP,0407020Q0AACGCG +322711002,VMP previous to 36126511000001106,322711002,VMP,0407020Q0AAAKAK +322712009,VMP previous to 36126811000001109,322712009,VMP,0407020Q0AACFCF +322713004,VMP previous to 36127311000001102,322713004,VMP,0407020Q0AAALAL +322714005,VMP previous to 36127711000001103,322714005,VMP,0407020Q0AAAIAI +322715006,VMP previous to 36126211000001108,322715006,VMP,0407020Q0AAAHAH +322716007,VMP previous to 36127011000001100,322716007,VMP,0407020Q0AAAGAG +322720006,VMP previous to 36126411000001107,322720006,VMP,0407020Q0AAEFEF +322721005,VMP previous to 36127211000001105,322721005,VMP,0407020Q0AAEGEG +322722003,VMP previous to 36127611000001107,322722003,VMP,0407020Q0AAEHEH +322723008,VMP previous to 36125811000001101,322723008,VMP,0407020Q0AAEBEB +322728004,VMP previous to 42015011000001107,322728004,VMP,0407020Q0AADRDR +322730002,VMP previous to 36127811000001106,322730002,VMP,0407020Q0AADUDU +322731003,VMP previous to 36126611000001105,322731003,VMP,0407020Q0AADVDV +322732005,VMP previous to 36126711000001101,322732005,VMP,0407020Q0AADWDW +322733000,VMP previous to 36126911000001104,322733000,VMP,0407020Q0AAEIEI +322741000,VMP previous to 36127111000001104,322741000,VMP,0407020Q0AADZDZ +322742007,VMP previous to 36127411000001109,322742007,VMP,0407020Q0AAEAEA +322750003,VMP previous to 10189711000001107,322750003,VMP,0407020Q0AAENEN +322751004,VMP previous to 10189611000001103,322751004,VMP,0407020Q0AAELEL +322761006,VMP previous to 36128611000001106,322761006,VMP,0407020Q0AAA6A6 +333919005,VMP previous to 36120011000001101,333919005,VMP,0407020A0AAAEAE +333920004,VMP previous to 36120211000001106,333920004,VMP,0407020A0AAAFAF +333921000,VMP previous to 36120311000001103,333921000,VMP,0407020A0AAAGAG +333922007,VMP previous to 36119911000001103,333922007,VMP,0407020A0AAAHAH +333941005,VMP previous to 36128511000001107,333941005,VMP,0407020Q0AAAFAF +333942003,VMP previous to 36128711000001102,333942003,VMP,0407020Q0AAADAD +333955002,VMP previous to 36025411000001105,333955002,VMP,0407020ABAAAIAI +333960003,VMP previous to 14612711000001102,333960003,VMP,0407020ABAAABAB +333962006,VMP previous to 14615911000001108,333962006,VMP,0407020ABAAAAAA +333967000,VMP previous to 36028411000001100,333967000,VMP,0407020V0AAAPAP +333968005,VMP previous to 36028111000001105,333968005,VMP,0407020V0AAALAL +333969002,VMP previous to 36028311000001107,333969002,VMP,0407020V0AAAAAA +333970001,VMP previous to 36028211000001104,333970001,VMP,0407020V0AAAEAE +348125006,VMP previous to 39709111000001101,348125006,VMP,0407020K0AAFPFP +354043009,VMP previous to 36128211000001109,354043009,VMP,0407020Q0AAABAB +354044003,VMP previous to 38895511000001108,354044003,VMP,0407020Q0AAACAC +354046001,VMP previous to 36128911000001100,354046001,VMP,0407020Q0AAAMAM +370261003,VMP previous to 42015711000001109,370261003,VMP,0407020Q0AABJBJ +374811009,VMP previous to 36057511000001104,374811009,VMP,040702050AAALAL +374815000,VMP previous to 36057111000001108,374815000,VMP,040702050AAANAN +407895000,VMP previous to 35913711000001103,407895000,VMP,0407020B0AAAEAE +407896004,VMP previous to 35913811000001106,407896004,VMP,0407020B0AAAFAF +407897008,VMP previous to 35913911000001101,407897008,VMP,0407020B0AAAGAG +407919006,VMP previous to 36131011000001107,407919006,VMP,0407020ADAAAKAK +408078009,VMP previous to 36130611000001105,408078009,VMP,0407020ADAAAMAM +408079001,VMP previous to 36129811000001103,408079001,VMP,0407020ADAAALAL +4316911000001108,VMP previous to 39709111000001101,4316911000001108,VMP,0407020K0AAFPFP +444885002,VMP previous to 36130711000001101,444885002,VMP,0407020ADAAARAR +444958008,VMP previous to 36130211000001108,444958008,VMP,0407020ADAAASAS +445146000,VMP previous to 36131311000001105,445146000,VMP,0407020ADAAAQAQ diff --git a/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-tramadol-and-tapentadol-dmd.csv b/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-tramadol-and-tapentadol-dmd.csv new file mode 100644 index 000000000..52216c71e --- /dev/null +++ b/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-tramadol-and-tapentadol-dmd.csv @@ -0,0 +1,244 @@ +code,term,dmd_id,dmd_type,bnf_code +42017811000001106,Tramadol 50mg capsules,42017811000001106,VMP,040702040AAAAAA +246311000001101,Tramadol 50mg capsules,246311000001101,AMP,040702040AAAAAA +20170311000001107,Tramadol 50mg capsules,20170311000001107,AMP,040702040AAAAAA +886411000001108,Tramadol 50mg capsules,886411000001108,AMP,040702040AAAAAA +939711000001107,Tramadol 50mg capsules,939711000001107,AMP,040702040AAAAAA +9800611000001103,Tramadol 50mg capsules,9800611000001103,AMP,040702040AAAAAA +42362511000001108,Tramadol 50mg capsules,42362511000001108,AMP,040702040AAAAAA +10414511000001103,Tramadol 50mg capsules,10414511000001103,AMP,040702040AAAAAA +16069711000001109,Tramadol 50mg capsules,16069711000001109,AMP,040702040AAAAAA +38620211000001101,Tramadol 50mg capsules,38620211000001101,AMP,040702040AAAAAA +28803911000001101,Tramadol 50mg capsules,28803911000001101,AMP,040702040AAAAAA +10290811000001105,Tramadol 50mg capsules,10290811000001105,AMP,040702040AAAAAA +41847311000001106,Tramadol 50mg capsules,41847311000001106,AMP,040702040AAAAAA +4821211000001104,Tramadol 50mg capsules,4821211000001104,AMP,040702040AAAAAA +746011000001106,Tramadol 50mg capsules,746011000001106,AMP,040702040AAAAAA +905911000001101,Tramadol 50mg capsules,905911000001101,AMP,040702040AAAAAA +30924411000001106,Tramadol 50mg capsules,30924411000001106,AMP,040702040AAAAAA +39915011000001107,Tramadol 50mg capsules,39915011000001107,AMP,040702040AAAAAA +36238411000001107,Tramadol 50mg capsules,36238411000001107,AMP,040702040AAAAAA +35187411000001102,Tramadol 50mg capsules,35187411000001102,AMP,040702040AAAAAA +24136911000001105,Tramadol 50mg capsules,24136911000001105,AMP,040702040AAAAAA +10444611000001105,Tramadol 50mg capsules,10444611000001105,AMP,040702040AAAAAA +37507411000001107,Tramadol 50mg capsules,37507411000001107,AMP,040702040AAAAAA +36732111000001108,Tramadol 50mg capsules,36732111000001108,AMP,040702040AAAAAA +11415411000001109,Tramadol 50mg capsules,11415411000001109,AMP,040702040AAAAAA +17860911000001102,Tramadol 50mg capsules,17860911000001102,AMP,040702040AAAAAA +40703011000001103,Tramadol 50mg capsules,40703011000001103,AMP,040702040AAAAAA +36925411000001101,Tramadol 50mg capsules,36925411000001101,AMP,040702040AAAAAA +24622911000001109,Tramadol 50mg capsules,24622911000001109,AMP,040702040AAAAAA +15195711000001100,Tramadol 50mg capsules,15195711000001100,AMP,040702040AAAAAA +849011000001103,Tramadol 50mg capsules,849011000001103,AMP,040702040AAAAAA +796411000001109,Tramadol 50mg capsules,796411000001109,AMP,040702040AAAAAA +26787711000001101,Tramadol 50mg capsules,26787711000001101,AMP,040702040AAAAAA +812811000001107,Tramadol 50mg capsules,812811000001107,AMP,040702040AAAAAA +21892011000001100,Tramadol 50mg capsules,21892011000001100,AMP,040702040AAAAAA +736011000001107,Tramadol 50mg capsules,736011000001107,AMP,040702040AAAAAA +35920411000001105,Tramadol 100mg/2ml solution for injection ampoules,35920411000001105,VMP,040702040AAABAB +10059911000001106,Tramadol 100mg/2ml solution for injection ampoules,10059911000001106,AMP,040702040AAABAB +39145611000001106,Tramadol 100mg/2ml solution for injection ampoules,39145611000001106,AMP,040702040AAABAB +14978511000001103,Tramadol 100mg/2ml solution for injection ampoules,14978511000001103,AMP,040702040AAABAB +10072711000001101,Tramadol 100mg/2ml solution for injection ampoules,10072711000001101,AMP,040702040AAABAB +41209311000001100,Tramadol 100mg/2ml solution for injection ampoules,41209311000001100,AMP,040702040AAABAB +28798511000001104,Tramadol 100mg/2ml solution for injection ampoules,28798511000001104,AMP,040702040AAABAB +35920311000001103,Tramadol 100mg modified-release tablets,35920311000001103,VMP,040702040AAACAC +35920611000001108,Tramadol 150mg modified-release tablets,35920611000001108,VMP,040702040AAADAD +42490811000001102,Tramadol 150mg modified-release tablets,42490811000001102,AMP,040702040AAADAD +35920811000001107,Tramadol 200mg modified-release tablets,35920811000001107,VMP,040702040AAAEAE +42491611000001106,Tramadol 200mg modified-release tablets,42491611000001106,AMP,040702040AAAEAE +39714911000001102,Tramadol 50mg soluble tablets sugar free,39714911000001102,VMP,040702040AAAFAF +35940111000001103,Tramadol 50mg modified-release capsules,35940111000001103,VMP,040702040AAAGAG +28838511000001107,Tramadol 50mg modified-release capsules,28838511000001107,AMP,040702040AAAGAG +40589011000001102,Tramadol 50mg modified-release capsules,40589011000001102,AMP,040702040AAAGAG +35920211000001106,Tramadol 100mg modified-release capsules,35920211000001106,VMP,040702040AAAHAH +28839311000001107,Tramadol 100mg modified-release capsules,28839311000001107,AMP,040702040AAAHAH +40589411000001106,Tramadol 100mg modified-release capsules,40589411000001106,AMP,040702040AAAHAH +35920511000001109,Tramadol 150mg modified-release capsules,35920511000001109,VMP,040702040AAAIAI +28840111000001101,Tramadol 150mg modified-release capsules,28840111000001101,AMP,040702040AAAIAI +40589611000001109,Tramadol 150mg modified-release capsules,40589611000001109,AMP,040702040AAAIAI +35920711000001104,Tramadol 200mg modified-release capsules,35920711000001104,VMP,040702040AAAJAJ +28844211000001104,Tramadol 200mg modified-release capsules,28844211000001104,AMP,040702040AAAJAJ +40589811000001108,Tramadol 200mg modified-release capsules,40589811000001108,AMP,040702040AAAJAJ +42017911000001101,Tramadol 50mg effervescent powder sachets sugar free,42017911000001101,VMP,040702040AAAKAK +42017711000001103,Tramadol 100mg effervescent powder sachets sugar free,42017711000001103,VMP,040702040AAALAL +35920911000001102,Tramadol 300mg modified-release tablets,35920911000001102,VMP,040702040AAAMAM +35921011000001105,Tramadol 400mg modified-release tablets,35921011000001105,VMP,040702040AAANAN +35921211000001100,Tramadol 75mg modified-release tablets,35921211000001100,VMP,040702040AAAPAP +5212811000001100,Tramadol 50mg orodispersible tablets sugar free,5212811000001100,VMP,040702040AAATAT +7386811000001106,Tramadol 37.5mg / Paracetamol 325mg tablets,7386811000001106,VMP,040702040AAAUAU +21376311000001107,Tramadol 37.5mg / Paracetamol 325mg tablets,21376311000001107,AMP,040702040AAAUAU +35866511000001105,Tramadol 37.5mg / Paracetamol 325mg tablets,35866511000001105,AMP,040702040AAAUAU +21349911000001100,Tramadol 37.5mg / Paracetamol 325mg tablets,21349911000001100,AMP,040702040AAAUAU +33496511000001107,Tramadol 37.5mg / Paracetamol 325mg tablets,33496511000001107,AMP,040702040AAAUAU +42250011000001102,Tramadol 37.5mg / Paracetamol 325mg tablets,42250011000001102,AMP,040702040AAAUAU +37827811000001104,Tramadol 37.5mg / Paracetamol 325mg tablets,37827811000001104,AMP,040702040AAAUAU +34745411000001100,Tramadol 37.5mg / Paracetamol 325mg tablets,34745411000001100,AMP,040702040AAAUAU +21222211000001108,Tramadol 37.5mg / Paracetamol 325mg tablets,21222211000001108,AMP,040702040AAAUAU +30940411000001102,Tramadol 37.5mg / Paracetamol 325mg tablets,30940411000001102,AMP,040702040AAAUAU +39914711000001105,Tramadol 37.5mg / Paracetamol 325mg tablets,39914711000001105,AMP,040702040AAAUAU +41209111000001102,Tramadol 37.5mg / Paracetamol 325mg tablets,41209111000001102,AMP,040702040AAAUAU +37861211000001103,Tramadol 37.5mg / Paracetamol 325mg tablets,37861211000001103,AMP,040702040AAAUAU +21714811000001101,Tramadol 37.5mg / Paracetamol 325mg tablets,21714811000001101,AMP,040702040AAAUAU +12037411000001103,Tramadol 50mg modified-release tablets,12037411000001103,VMP,040702040AAAYAY +28790611000001103,Tramadol 50mg/5ml oral suspension,28790611000001103,VMP,040702040AAAZAZ +28782011000001108,Tramadol 50mg/5ml oral suspension,28782011000001108,AMP,040702040AAAZAZ +17430011000001102,Tramadol 37.5mg / Paracetamol 325mg effervescent tablets sugar free,17430011000001102,VMP,040702040AABABA +19200411000001106,Tramadol 100mg/ml oral drops,19200411000001106,VMP,040702040AABBBB +19677511000001100,Tramadol 100mg/ml oral drops,19677511000001100,AMP,040702040AABBBB +19189011000001106,Tramadol 100mg/ml oral drops,19189011000001106,AMP,040702040AABBBB +20361511000001107,Tramadol 100mg/ml oral drops,20361511000001107,AMP,040702040AABBBB +33523811000001102,Tramadol 75mg / Paracetamol 650mg tablets,33523811000001102,VMP,040702040AABCBC +34197111000001104,Tramadol 75mg / Paracetamol 650mg tablets,34197111000001104,AMP,040702040AABCBC +33496111000001103,Tramadol 75mg / Paracetamol 650mg tablets,33496111000001103,AMP,040702040AABCBC +35029711000001104,Tramadol 75mg / Dexketoprofen 25mg tablets,35029711000001104,VMP,040702040AABDBD +39848411000001106,Tramadol 50mg/5ml oral solution sugar free,39848411000001106,VMP,040702040AABEBE +40654411000001108,Tramadol 10mg/ml oral solution sugar free,40654411000001108,AMP,040702040AABEBE +39990011000001102,Tramadol 10mg/ml oral solution sugar free,39990011000001102,AMP,040702040AABEBE +39844311000001109,Tramadol 10mg/ml oral solution sugar free,39844311000001109,AMP,040702040AABEBE +203811000001106,Zydol 50mg capsules,203811000001106,AMP,040702040BBAAAA +793211000001103,Zydol 100mg/2ml solution for injection ampoules,793211000001103,AMP,040702040BBABAB +306311000001100,Zydol SR 100mg tablets,306311000001100,AMP,040702040BBACAC +362111000001102,Zydol SR 150mg tablets,362111000001102,AMP,040702040BBADAD +315611000001102,Zydol SR 200mg tablets,315611000001102,AMP,040702040BBAEAE +314411000001101,Zydol 50mg soluble tablets,314411000001101,AMP,040702040BBAFAF +139611000001100,Zydol XL 150mg tablets,139611000001100,AMP,040702040BBAGAD +142111000001100,Zydol XL 200mg tablets,142111000001100,AMP,040702040BBAHAE +929211000001103,Zydol XL 300mg tablets,929211000001103,AMP,040702040BBAIAM +461411000001108,Zydol XL 400mg tablets,461411000001108,AMP,040702040BBAJAN +11985311000001102,Zydol SR 50mg tablets,11985311000001102,AMP,040702040BBAKAY +451511000001100,Tramake 50mg capsules,451511000001100,AMP,040702040BCAAAA +3242911000001107,Tramake Insts 50mg sachets,3242911000001107,AMP,040702040BCABAK +3250111000001107,Tramake Insts 100mg sachets,3250111000001107,AMP,040702040BCACAL +400911000001108,Zamadol 50mg capsules,400911000001108,AMP,040702040BDAAAA +21011000001101,Zamadol SR 50mg capsules,21011000001101,AMP,040702040BDABAG +331011000001101,Zamadol SR 100mg capsules,331011000001101,AMP,040702040BDACAH +711511000001103,Zamadol SR 150mg capsules,711511000001103,AMP,040702040BDADAI +9411000001102,Zamadol SR 200mg capsules,9411000001102,AMP,040702040BDAEAJ +473811000001101,Zamadol 100mg/2ml solution for injection ampoules,473811000001101,AMP,040702040BDAFAB +5197011000001105,Zamadol Melt 50mg tablets,5197011000001105,AMP,040702040BDAGAT +9532211000001106,Zamadol 24hr 150mg modified-release tablets,9532211000001106,AMP,040702040BDAHAD +9532611000001108,Zamadol 24hr 200mg modified-release tablets,9532611000001108,AMP,040702040BDAIAE +9532911000001102,Zamadol 24hr 300mg modified-release tablets,9532911000001102,AMP,040702040BDAJAM +9533211000001100,Zamadol 24hr 400mg modified-release tablets,9533211000001100,AMP,040702040BDAKAN +424611000001103,Dromadol SR 75mg tablets,424611000001103,AMP,040702040BEAAAP +216911000001105,Dromadol SR 100mg tablets,216911000001105,AMP,040702040BEABAC +919611000001108,Dromadol SR 150mg tablets,919611000001108,AMP,040702040BEACAD +278411000001105,Dromadol SR 200mg tablets,278411000001105,AMP,040702040BEADAE +847811000001101,Dromadol XL 150mg tablets,847811000001101,AMP,040702040BEAEAD +109211000001105,Dromadol XL 200mg tablets,109211000001105,AMP,040702040BEAFAE +17411000001109,Dromadol XL 300mg tablets,17411000001109,AMP,040702040BEAGAM +805511000001101,Dromadol XL 400mg tablets,805511000001101,AMP,040702040BEAHAN +7381611000001100,Tramacet 37.5mg/325mg tablets,7381611000001100,AMP,040702040BFAAAU +17418411000001102,Tramacet 37.5mg/325mg effervescent tablets,17418411000001102,AMP,040702040BFABBA +9100811000001106,Larapam SR 100mg tablets,9100811000001106,AMP,040702040BGAAAC +9101011000001109,Larapam SR 150mg tablets,9101011000001109,AMP,040702040BGABAD +9101211000001104,Larapam SR 200mg tablets,9101211000001104,AMP,040702040BGACAE +10228111000001105,Mabron 100mg modified-release tablets,10228111000001105,AMP,040702040BHAAAC +10228311000001107,Mabron 150mg modified-release tablets,10228311000001107,AMP,040702040BHABAD +10228511000001101,Mabron 200mg modified-release tablets,10228511000001101,AMP,040702040BHACAE +20475011000001102,Mabron 100mg modified-release tablets,20475011000001102,AMP,040702040BHADAC +20475211000001107,Mabron 150mg modified-release tablets,20475211000001107,AMP,040702040BHAEAD +20475411000001106,Mabron 200mg modified-release tablets,20475411000001106,AMP,040702040BHAFAE +11054611000001106,Tradorec XL 100mg tablets,11054611000001106,AMP,040702040BIAAAC +11054811000001105,Tradorec XL 200mg tablets,11054811000001105,AMP,040702040BIABAE +11055011000001100,Tradorec XL 300mg tablets,11055011000001100,AMP,040702040BIACAM +11592111000001101,Tramquel SR 50mg capsules,11592111000001101,AMP,040702040BJAAAG +11592311000001104,Tramquel SR 100mg capsules,11592311000001104,AMP,040702040BJABAH +11592511000001105,Tramquel SR 150mg capsules,11592511000001105,AMP,040702040BJACAI +11592711000001100,Tramquel SR 200mg capsules,11592711000001100,AMP,040702040BJADAJ +12790311000001100,Tramulief SR 100mg tablets,12790311000001100,AMP,040702040BKAAAC +12790511000001106,Tramulief SR 150mg tablets,12790511000001106,AMP,040702040BKABAD +12790811000001109,Tramulief SR 200mg tablets,12790811000001109,AMP,040702040BKACAE +12869811000001101,Zeridame SR 100mg tablets,12869811000001101,AMP,040702040BLAAAC +12871211000001106,Zeridame SR 150mg tablets,12871211000001106,AMP,040702040BLABAD +12871611000001108,Zeridame SR 200mg tablets,12871611000001108,AMP,040702040BLACAE +12948411000001105,Nobligan retard 100mg tablets,12948411000001105,AMP,040702040BMAAAC +14954011000001100,Marol 100mg modified-release tablets,14954011000001100,AMP,040702040BNAAAC +14954211000001105,Marol 150mg modified-release tablets,14954211000001105,AMP,040702040BNABAD +14954411000001109,Marol 200mg modified-release tablets,14954411000001109,AMP,040702040BNACAE +19624411000001108,Marol 200mg modified-release tablets,19624411000001108,AMP,040702040BNADAE +19624611000001106,Marol 150mg modified-release tablets,19624611000001106,AMP,040702040BNAEAD +19624811000001105,Marol 100mg modified-release tablets,19624811000001105,AMP,040702040BNAFAC +14977411000001101,Maxitram SR 50mg capsules,14977411000001101,AMP,040702040BPAAAG +14977211000001100,Maxitram SR 100mg capsules,14977211000001100,AMP,040702040BPABAH +14977011000001105,Maxitram SR 150mg capsules,14977011000001105,AMP,040702040BPACAI +14976811000001101,Maxitram SR 200mg capsules,14976811000001101,AMP,040702040BPADAJ +14983211000001101,Oldaram 100mg modified-release tablets,14983211000001101,AMP,040702040BQAAAC +14983411000001102,Oldaram 150mg modified-release tablets,14983411000001102,AMP,040702040BQABAD +14983611000001104,Oldaram 200mg modified-release tablets,14983611000001104,AMP,040702040BQACAE +19308911000001107,Aceon 100mg modified-release tablets,19308911000001107,AMP,040702040BRAAAC +19309111000001102,Aceon 150mg modified-release tablets,19309111000001102,AMP,040702040BRABAD +19309311000001100,Aceon 200mg modified-release tablets,19309311000001100,AMP,040702040BRACAE +21692911000001105,Tilodol SR 100mg tablets,21692911000001105,AMP,040702040BSAAAC +21694511000001108,Tilodol SR 150mg tablets,21694511000001108,AMP,040702040BSABAD +21695111000001100,Tilodol SR 200mg tablets,21695111000001100,AMP,040702040BSACAE +21964211000001106,Invodol SR 100mg tablets,21964211000001106,AMP,040702040BTAAAC +21964411000001105,Invodol SR 150mg tablets,21964411000001105,AMP,040702040BTABAD +21964611000001108,Invodol SR 200mg tablets,21964611000001108,AMP,040702040BTACAE +24636911000001106,Maneo 100mg modified-release tablets,24636911000001106,AMP,040702040BUAAAC +24637211000001100,Maneo 150mg modified-release tablets,24637211000001100,AMP,040702040BUABAD +24637511000001102,Maneo 200mg modified-release tablets,24637511000001102,AMP,040702040BUACAE +34534911000001109,Zytram SR 150mg tablets,34534911000001109,AMP,040702040BVAAAD +34535311000001107,Zytram SR 75mg tablets,34535311000001107,AMP,040702040BVABAP +34535811000001103,Zytram SR 100mg tablets,34535811000001103,AMP,040702040BVACAC +34536311000001102,Zytram SR 200mg tablets,34536311000001102,AMP,040702040BVADAE +34733411000001103,Brimisol PR 100mg tablets,34733411000001103,AMP,040702040BWAAAC +38811311000001100,Brimisol PR 200mg tablets,38811311000001100,AMP,040702040BWABAE +35029011000001101,Skudexa 75mg/25mg tablets,35029011000001101,AMP,040702040BXAABD +36735011000001102,Trapadex 37.5mg/325mg tablets,36735011000001102,AMP,040702040BYAAAU +42017511000001108,Tapentadol 50mg tablets,42017511000001108,VMP,0407020AGAAAAAA +42017611000001107,Tapentadol 75mg tablets,42017611000001107,VMP,0407020AGAAABAB +18672211000001103,Tapentadol 50mg modified-release tablets,18672211000001103,VMP,0407020AGAAACAC +42540411000001100,Tapentadol 50mg modified-release tablets,42540411000001100,AMP,0407020AGAAACAC +18671811000001106,Tapentadol 100mg modified-release tablets,18671811000001106,VMP,0407020AGAAADAD +42540711000001106,Tapentadol 100mg modified-release tablets,42540711000001106,AMP,0407020AGAAADAD +18671911000001101,Tapentadol 150mg modified-release tablets,18671911000001101,VMP,0407020AGAAAEAE +42540911000001108,Tapentadol 150mg modified-release tablets,42540911000001108,AMP,0407020AGAAAEAE +18672011000001108,Tapentadol 200mg modified-release tablets,18672011000001108,VMP,0407020AGAAAFAF +42541111000001104,Tapentadol 200mg modified-release tablets,42541111000001104,AMP,0407020AGAAAFAF +18672111000001109,Tapentadol 250mg modified-release tablets,18672111000001109,VMP,0407020AGAAAGAG +24408811000001107,Tapentadol 20mg/ml oral solution sugar free,24408811000001107,VMP,0407020AGAAAHAH +39819711000001100,Tapentadol 25mg modified-release tablets,39819711000001100,VMP,0407020AGAAAIAI +18662511000001107,Palexia 50mg tablets,18662511000001107,AMP,0407020AGBBAAAA +18662911000001100,Palexia 75mg tablets,18662911000001100,AMP,0407020AGBBABAB +18663511000001100,Palexia SR 50mg tablets,18663511000001100,AMP,0407020AGBBACAC +18664111000001106,Palexia SR 100mg tablets,18664111000001106,AMP,0407020AGBBADAD +18664411000001101,Palexia SR 150mg tablets,18664411000001101,AMP,0407020AGBBAEAE +18664711000001107,Palexia SR 200mg tablets,18664711000001107,AMP,0407020AGBBAFAF +18665211000001104,Palexia SR 250mg tablets,18665211000001104,AMP,0407020AGBBAGAG +24120811000001104,Palexia 20mg/ml oral solution,24120811000001104,AMP,0407020AGBBAHAH +39584211000001105,Ationdo SR 25mg tablets,39584211000001105,AMP,0407020AGBCAAAI +39584511000001108,Ationdo SR 50mg tablets,39584511000001108,AMP,0407020AGBCABAC +39584711000001103,Ationdo SR 100mg tablets,39584711000001103,AMP,0407020AGBCACAD +39585511000001109,Ationdo SR 150mg tablets,39585511000001109,AMP,0407020AGBCADAE +39585711000001104,Ationdo SR 200mg tablets,39585711000001104,AMP,0407020AGBCAEAF +39585911000001102,Ationdo SR 250mg tablets,39585911000001102,AMP,0407020AGBCAFAG +40777511000001108,Tapentadol 50mg modified-release capsules,40777511000001108,VMP,0407020AHAAAAAA +40777111000001104,Tapentadol 100mg modified-release capsules,40777111000001104,VMP,0407020AHAAABAB +40777211000001105,Tapentadol 150mg modified-release capsules,40777211000001105,VMP,0407020AHAAACAC +40777311000001102,Tapentadol 200mg modified-release capsules,40777311000001102,VMP,0407020AHAAADAD +40777411000001109,Tapentadol 250mg modified-release capsules,40777411000001109,VMP,0407020AHAAAEAE +40757511000001105,Tapimio 50mg modified-release capsules,40757511000001105,AMP,0407020AHBBAAAA +40758111000001100,Tapimio 100mg modified-release capsules,40758111000001100,AMP,0407020AHBBABAB +40758611000001108,Tapimio 150mg modified-release capsules,40758611000001108,AMP,0407020AHBBACAC +40759011000001106,Tapimio 200mg modified-release capsules,40759011000001106,AMP,0407020AHBBADAD +40759411000001102,Tapimio 250mg modified-release capsules,40759411000001102,AMP,0407020AHBBAEAE +322622005,VMP previous to 35920411000001105,322622005,VMP,040702040AAABAB +322623000,VMP previous to 42017811000001106,322623000,VMP,040702040AAAAAA +322626008,VMP previous to 35920311000001103,322626008,VMP,040702040AAACAC +322627004,VMP previous to 35920611000001108,322627004,VMP,040702040AAADAD +322628009,VMP previous to 35920811000001107,322628009,VMP,040702040AAAEAE +322633008,VMP previous to 39714911000001102,322633008,VMP,040702040AAAFAF +322636000,VMP previous to 35940111000001103,322636000,VMP,040702040AAAGAG +322637009,VMP previous to 35920211000001106,322637009,VMP,040702040AAAHAH +322638004,VMP previous to 35920511000001109,322638004,VMP,040702040AAAIAI +322639007,VMP previous to 35920711000001104,322639007,VMP,040702040AAAJAJ +322645004,VMP previous to 42017911000001101,322645004,VMP,040702040AAAKAK +322646003,VMP previous to 42017711000001103,322646003,VMP,040702040AAALAL +322662009,VMP previous to 35921211000001100,322662009,VMP,040702040AAAPAP +322663004,VMP previous to 35920911000001102,322663004,VMP,040702040AAAMAM +322664005,VMP previous to 35921011000001105,322664005,VMP,040702040AAANAN +35921111000001106,VMP previous to 42017811000001106,35921111000001106,VMP,040702040AAAAAA +442341005,VMP previous to 42017611000001107,442341005,VMP,0407020AGAAABAB +442472008,VMP previous to 42017511000001108,442472008,VMP,0407020AGAAAAAA diff --git a/tests/acceptance/external_studies/waiting-list/codelists/user-markdrussell-new-rheumatoid-arthritis.csv b/tests/acceptance/external_studies/waiting-list/codelists/user-markdrussell-new-rheumatoid-arthritis.csv new file mode 100644 index 000000000..9e2f2283d --- /dev/null +++ b/tests/acceptance/external_studies/waiting-list/codelists/user-markdrussell-new-rheumatoid-arthritis.csv @@ -0,0 +1,134 @@ +code,term +1073701000119107,Rheumatoid arthritis of left foot +1073711000119105,Rheumatoid arthritis of left hand +1073721000119103,Rheumatoid arthritis of left hip +1073731000119100,Rheumatoid arthritis of left knee +1073741000119109,Rheumatoid arthritis of left shoulder +1073751000119106,Rheumatoid arthritis of left wrist +1073781000119104,Rheumatoid arthritis of right foot +1073791000119101,Rheumatoid arthritis of right hand +1073801000119100,Rheumatoid arthritis of right hip +1073811000119102,Rheumatoid arthritis of right knee +1073821000119109,Rheumatoid arthritis of right shoulder +1073831000119107,Rheumatoid arthritis of right wrist +11055151000119108,Seropositive rheumatoid arthritis of multiple joints +111218008,Rheumatoid arthritis with other visceral or systemic involvement +111280008,Rheumatoid pneumoconiosis +143441000119108,Rheumatoid arthritis in remission +155621007,Rheumatoid lung +156471009,Rheumatoid arthritis +156472002,Rheumatoid arthritis - multiple joint +156473007,Rheumatoid arthritis of shoulder +156474001,Rheumatoid arthritis of elbow +156475000,Rheumatoid arthritis of wrist +156476004,Rheumatoid arthritis - hand joint +156477008,Rheumatoid arthritis of hip +156478003,Rheumatoid arthritis of knee +156479006,Rheumatoid arthritis - ankle/foot +156480009,Rheumatoid arthritis - other joint +156481008,Rheumatoid arthritis NOS +15673361000119100,Rheumatoid nodule of subcutaneous tissue of bilateral elbows +15673521000119101,Rheumatoid nodule of subcutaneous tissue of bilateral hands +15686281000119101,Rheumatoid arthritis of bilateral feet +15687201000119107,Rheumatoid arthritis of bilateral knees +15687321000119109,Rheumatoid arthritis of bilateral hands +15691241000119101,Seronegative rheumatoid arthritis of bilateral knees +15691321000119101,Seronegative rheumatoid arthritis of bilateral wrists +15691881000119107,Seropositive rheumatoid arthritis of bilateral knees +16050071000119108,Seropositive rheumatoid arthritis of bilateral feet +16606721000119107,Seropositive rheumatoid arthritis in remission +193180002,Polyneuropathy in rheumatoid arthritis +193250002,Myopathy due to rheumatoid arthritis +195136004,Rheumatoid myocarditis +195138003,Rheumatoid carditis +196132006,Rheumatoid lung +201764007,Rheumatoid arthritis of cervical spine +201766009,Rheumatoid arthritis of shoulder +201767000,Rheumatoid arthritis of sternoclavicular joint +201768005,Rheumatoid arthritis of acromioclavicular joint +201769002,Rheumatoid arthritis of elbow +201770001,Rheumatoid arthritis of distal radioulnar joint +201771002,Rheumatoid arthritis of wrist +201772009,Rheumatoid arthritis of metacarpophalangeal joint +201773004,Rheumatoid arthritis of proximal interphalangeal joint of finger +201774005,Rheumatoid arthritis of distal interphalangeal joint of finger +201775006,Rheumatoid arthritis of hip +201776007,Rheumatoid arthritis of sacroiliac joint +201777003,Rheumatoid arthritis of knee +201778008,Rheumatoid arthritis of tibiofibular joint +201779000,Rheumatoid arthritis of ankle +201780002,Rheumatoid arthritis of subtalar joint +201781003,Rheumatoid arthritis of talonavicular joint +201782005,Rheumatoid arthritis of other tarsal joint +201783000,Rheumatoid arthritis of first metatarsophalangeal joint +201784006,Rheumatoid arthritis of lesser metatarsophalangeal joint +201785007,Rheumatoid arthritis of interphalangeal joint of toe +201786008,Rheumatoid vasculitis +201787004,Seronegative rheumatoid arthritis +201788009,Rheumatoid bursitis +201789001,Rheumatoid nodule +201790005,Rheumatoid arthritis - multiple joint +201791009,Flare of rheumatoid arthritis +201794001,Rheumatoid lung +201810001,Seropositive errosive rheumatoid arthritis +201811002,"[X]Seropositive rheumatoid arthritis, unspecified" +201813004,(Rheumatoid lung) or (Caplan's syndrome) or (fibrosing alveolitis associated with rheumatoid arthritis) +203729008,[X]Rheumatoid arthritis with involvement of other organs or systems +203730003,[X]Other seropositive rheumatoid arthritis +203732006,[X]Other specified rheumatoid arthritis +203746006,"[X]Seropositive rheumatoid arthritis, unspecified" +21430002,Dilated cardiomyopathy secondary to rheumatoid arthritis +239791005,Seropositive rheumatoid arthritis +239792003,Seronegative rheumatoid arthritis +239793008,Rheumatoid arthritis with organ / system involvement +239794002,Fibrosing alveolitis associated with rheumatoid arthritis +239795001,Rheumatoid arthritis with multisystem involvement +239941000,Nailfold rheumatoid vasculitis +239942007,Systemic rheumatoid vasculitis +239943002,Necrotizing rheumatoid vasculitis +287006005,Rheumatoid arthritis of multiple joints +287007001,Rheumatoid arthritis of hand joint +287008006,Rheumatoid arthritis of ankle and/or foot +287009003,Rheumatoid arthritis - other joint +287010008,Rheumatoid arthritis NOS +28880005,Rheumatoid carditis +308143008,Seropositive erosive rheumatoid arthritis +314765000,Rheumatoid melting disorder of cornea +318861000119101,Seropositive rheumatoid arthritis of left hand +318931000119100,Seropositive rheumatoid arthritis of right hand +319081000119109,Seronegative rheumatoid arthritis of multiple sites +319841000119107,Rheumatoid lung disease with rheumatoid arthritis +319861000119106,Rheumatoid nodule of subcutaneous tissue of left elbow +319871000119100,Rheumatoid nodule of subcutaneous tissue of left hand +319941000119103,Rheumatoid nodule of subcutaneous tissue of right elbow +319951000119101,Rheumatoid nodule of subcutaneous tissue of right hand +33719002,Subcutaneous rheumatoid nodule +398640008,Rheumatoid pneumoconiosis +398726004,Rheumatoid lung disease +399923009,Rheumatoid arteritis +400054000,Rheumatoid vasculitis +402426007,Rheumatoid nodulosis +402427003,Accelerated rheumatoid nodulosis +402428008,Accelerated rheumatoid nodulosis due to methotrexate +402429000,Rheumatoid linear subcutaneous bands +408751000000108,[X]Other seropositive rheumatoid arthritis +414821000000101,"[X]Seropositive rheumatoid arthritis, unspecified" +425091000000101,[X]Rheumatoid arthritis with involvement of other organs or systems +425481000000106,[X]Other specified rheumatoid arthritis +427770001,Rheumatoid arthritis of temporomandibular joint +429192004,Rheumatoid arthritis of foot +471971000000101,"[X]Seropositive rheumatoid arthritis, unspecified" +50782009,Rheumatoid nodule +52661003,Extra-articular rheumatoid process +54867000,Rheumatoid fibrosing alveolitis +57160007,Felty's syndrome +59165007,Rheumatoid scleritis +646871000000103,Rheumatoid arthritis - other joint +646881000000101,Rheumatoid arthritis NOS +656651000000106,Rheumatoid arthritis of other tarsal joint +69896004,Rheumatoid arthritis +735599007,Erosion of joint surface co-occurrent and due to rheumatoid arthritis +735600005,Rheumatoid arthritis without erosion +7607008,Pericarditis co-occurrent with extraarticular rheumatoid arthritis +781206002,Rheumatoid arthritis of joint of spine +86219005,Uveitis-rheumatoid arthritis syndrome diff --git a/tests/acceptance/external_studies/waiting-list/codelists/user-speed-vm-osteoarthritis-snomed-ct.csv b/tests/acceptance/external_studies/waiting-list/codelists/user-speed-vm-osteoarthritis-snomed-ct.csv new file mode 100644 index 000000000..08ecc38e7 --- /dev/null +++ b/tests/acceptance/external_studies/waiting-list/codelists/user-speed-vm-osteoarthritis-snomed-ct.csv @@ -0,0 +1,393 @@ +code,term +1010664005,Stickler syndrome type 2 +1010666007,Stickler syndrome type 4 +1010668008,Stickler syndrome type 1 +10196009,Juvenile osteochondrosis of acetabulum +1055297002,Gonarthrosis of left knee due to and following trauma +1055298007,Gonarthrosis of right knee due to and following trauma +10624571000119106,Ossification of anterior longitudinal ligament of spine +1074061000119108,Chondrocalcinosis of right shoulder +1074071000119102,Chondrocalcinosis of left shoulder +1074081000119104,Chondrocalcinosis of right elbow +1074091000119101,Chondrocalcinosis of left elbow +1074101000119106,Chondrocalcinosis of joint of right wrist +1074111000119109,Chondrocalcinosis of joint of left wrist +1074121000119102,Chondrocalcinosis of right hand +1074131000119104,Chondrocalcinosis of left hand +1074141000119108,Chondrocalcinosis of right hip +1074151000119105,Chondrocalcinosis of left hip +1074161000119107,Chondrocalcinosis of joint of right knee +1074171000119101,Chondrocalcinosis of joint of left knee +1074181000119103,Chondrocalcinosis of right ankle +1074191000119100,Chondrocalcinosis of right foot +1074201000119102,Chondrocalcinosis of left ankle +1074211000119104,Chondrocalcinosis of left foot +1074391000119103,Osteoarthritis of right sternoclavicular joint +1074411000119103,Osteoarthritis of bilateral sternoclavicular joints +1074451000119102,Osteoarthritis of left sternoclavicular joint +1074461000119100,Osteoarthritis of right foot +1074471000119106,Osteoarthritis of midtarsal joint of right foot +1074481000119109,Osteoarthritis of first metatarsophalangeal joint of right foot +1074491000119107,Osteoarthritis of left foot +1074501000119100,Osteoarthritis of midtarsal joint of left foot +1074511000119102,Osteoarthritis of first metatarsophalangeal joint of left foot +1074521000119109,Osteoarthritis of right foot due to trauma +1074531000119107,Osteoarthritis of left foot due to trauma +1074561000119104,Osteoarthritis of right sacroiliac joint +1074571000119105,Osteoarthritis of left sacroiliac joint +1075001000119108,Chronic tophaceous gout of right foot +1075021000119104,Chronic tophaceous gout of left foot +107881000119100,Advanced collapse of scapholunate joint due to osteoarthritis +10948005,Thoracic spondylosis with myelopathy +109668000,Degenerative arthritis of temporomandibular joint +11023001,Acute calcific periarthritis +111242007,Periarthritis of wrist +112961000119103,Osteoarthritis of joint of bilateral feet +112971000119109,Osteoarthritis of joint of bilateral ankles +112981000119107,Osteoarthritis of bilateral knee joints +112991000119105,Osteoarthritis of bilateral hip joints +113001000119106,Osteoarthritis of joint of finger of bilateral hands +113011000119109,Osteoarthritis of joint of bilateral hands +113021000119102,Osteoarthritis of bilateral wrists +113041000119108,Osteoarthritis of bilateral shoulders +1148444001,Hydroxyapatite deposition disease of elbow joint +1148911004,Gouty arthropathy due to double heterozygous sickling disorder +1148918005,Gouty arthropathy due to sickle-cell trait +1149278003,Hydroxyapatite deposition disease of joint of foot +1149280009,Hydroxyapatite deposition disease of joint of ankle +1153331004,Polyarticular acute primary gout +1153332006,Polyarticular chronic gout caused by lead +1153334007,Polyarticular acute gout caused by lead +1153376004,Monoarticular chronic gout caused by lead +1153378003,Monoarticular acute gout caused by lead +1162302007,Ossification of ligamentum flavum +1162303002,Seronegative rheumatoid arthritis with erosion of joint +1162304008,Oligoarticular osteoarthritis +1162319009,Rheumatoid factor and cyclic citrullinated peptide antibody positive erosive rheumatoid arthritis +1162336001,Cyclic citrullinated peptide antibody positive erosive rheumatoid arthritis +1162342002,Ossification of posterior longitudinal ligament and ligamentum flavum +1162362005,Felty syndrome with seronegative erosive rheumatoid arthritis +1162523002,Hydroxyapatite deposition disease of hip joint +1162525009,Hydroxyapatite deposition disease of knee joint +1162808000,Familial calcium pyrophosphate dihydrate crystal deposition disease +120401000119101,Chondrocalcinosis of hand due to disorder of calcium metabolism +12241631000119102,Osteoarthritis of finger joint of left hand +12241671000119104,Osteoarthritis of finger joint of right hand +122691000119106,Chondrocalcinosis of hip joint due to disorder of calcium metabolism +1228860003,Spondyloepiphyseal dysplasia Stanescu type +12367361000119109,Osteoarthritis of right patellofemoral joint +12367411000119102,Osteoarthritis of left patellofemoral joint +12367461000119104,Osteoarthritis of bilateral patellofemoral joints +123798002,Lumbosacral spondylosis +1287058006,Secondary osteoarthritis of knee joint +137791000119100,Chondrocalcinosis of elbow due to disorder of calcium metabolism +15637471000119109,Degenerative rupture of medial meniscus of left knee +15637511000119100,Degenerative rupture of medial meniscus of right knee +15637551000119104,Degenerative rupture of medial meniscus of bilateral knees +15686041000119102,Osteoarthritis of right temporomandibular joint +15686081000119107,Osteoarthritis of bilateral temporomandibular joints +15686121000119109,Osteoarthritis of left temporomandibular joint +15705201000119109,Chondrocalcinosis of bilateral hands +15705241000119106,Chondrocalcinosis of bilateral shoulders +15722441000119106,Osteoarthritis of left subtalar joint +15722521000119101,Osteoarthritis of right subtalar joint +15722561000119106,Osteoarthritis of first metatarsophalangeal joint of bilateral feet +15722961000119101,Osteoarthritis of bilateral sacroiliac joints +15749161000119108,Chondromalacia of right patella +16005991000119109,Tophus of bilateral elbows co-occurrent and due to gout +16008271000119106,Chondrocalcinosis of bilateral wrists +16010951000119105,Osteoarthritis of bilateral feet due to trauma +16015391000119105,Osteoarthritis of midtarsal joints of bilateral feet +16016151000119105,Chondrocalcinosis of bilateral feet +16016191000119100,Chondrocalcinosis of bilateral ankles +16016511000119102,Degenerative rupture of lateral meniscus of bilateral knees +16016551000119101,Degenerative rupture of lateral meniscus of right knee +16016631000119106,Degenerative rupture of lateral meniscus of left knee +16039191000119102,Chondromalacia of left shoulder +16039391000119100,Chondromalacia of right shoulder +16039431000119105,Chondromalacia of left hip +16039471000119108,Chondromalacia of left foot +16039511000119104,Chondromalacia of right foot +16039591000119108,Chondromalacia of bilateral hips +16039631000119108,Chondromalacia of right hip +16039671000119106,Chondromalacia of bilateral glenohumeral joints +16039831000119107,Chondromalacia of bilateral ankles +16040031000119108,Chronic tophaceous gout of bilateral elbows +16040071000119106,Chronic tophaceous gout of bilateral hands +16046631000119100,Hydroxyapatite deposition disease of left shoulder +16046951000119104,Hydroxyapatite deposition disease of right shoulder +16076051000119104,Tophus of left elbow co-occurrent and due to gout +16076131000119106,Tophus of right elbow co-occurrent and due to gout +16583281000119101,Osteoarthritis of left ankle due to trauma +16583321000119106,Osteoarthritis of right ankle due to trauma +16583361000119101,Osteoarthritis of joint of right ankle +18834007,Crystal arthropathy +190828008,Gouty arthropathy +190842000,Tophus of hand co-occurrent and due to gout +193120004,Nerve root and plexus compressions in spondylosis +20075001,Crystal arthropathy of multiple sites +201625003,Chondrocalcinosis due to dicalcium phosphate crystals +201627006,"Chondrocalcinosis due to dicalcium phosphate crystals, of the shoulder region" +201630004,"Chondrocalcinosis due to dicalcium phosphate crystals, of the hand" +201631000,"Chondrocalcinosis due to dicalcium phosphate crystals, of the pelvic region and thigh" +201633002,"Chondrocalcinosis due to dicalcium phosphate crystals, of the ankle and foot" +201634008,"Chondrocalcinosis due to dicalcium phosphate crystals, of multiple sites" +201637001,Chondrocalcinosis due to pyrophosphate crystals +201639003,"Chondrocalcinosis due to pyrophosphate crystals, of the shoulder region" +201642009,"Chondrocalcinosis-pyrophosphate crystals, of the hand" +201643004,"Chondrocalcinosis due to pyrophosphate crystals, of the pelvic region and thigh" +201645006,"Chondrocalcinosis due to pyrophosphate crystals, of the ankle and foot" +201646007,"Chondrocalcinosis due to pyrophosphate crystals, of multiple sites" +201819000,Generalized osteoarthritis +201826000,Erosive osteoarthrosis +201829007,"Localized, primary osteoarthritis" +201831003,"Localized, primary osteoarthritis of the shoulder region" +201834006,"Localized, primary osteoarthritis of the hand" +201835007,"Localized, primary osteoarthritis of the pelvic region and thigh" +201837004,"Localized, primary osteoarthritis of the ankle and/or foot" +201847001,"Localized, secondary osteoarthritis" +201849003,"Localized, secondary osteoarthritis of the shoulder region" +201852006,"Localized, secondary osteoarthritis of the hand" +201855008,"Localized, secondary osteoarthritis of the ankle and/or foot" +201857000,"Post-traumatic coxarthrosis, bilateral" +201858005,"Post-traumatic gonarthrosis, bilateral" +201921009,Kashin-Beck disease of the shoulder region +201924001,Kashin-Beck disease of the hand +201925000,Kashin-Beck disease of the pelvic region and thigh +201927008,Kashin-Beck disease of the ankle and/or foot +201929006,Kashin-Beck disease of multiple sites +202657000,Single-level cervical spondylosis without myelopathy +202658005,Two-level cervical spondylosis without myelopathy +202659002,Multiple-level cervical spondylosis without myelopathy +202670009,Single-level thoracic spondylosis with myelopathy +202671008,Two-level thoracic spondylosis with myelopathy +202672001,Multiple-level thoracic spondylosis with myelopathy +202674000,Single-level lumbosacral spondylosis without myelopathy +202675004,Two-level lumbosacral spondylosis without myelopathy +202676003,Multiple-level lumbosacral spondylosis without myelopathy +202677007,Lumbosacral spondylosis with myelopathy +202678002,Single-level lumbosacral spondylosis with myelopathy +202679005,Two-level lumbosacral spondylosis with myelopathy +202680008,Multiple-level lumbosacral spondylosis with myelopathy +202687006,Cervical spondylosis with vascular compression +202688001,Thoracic spondylosis with radiculopathy +202689009,Single-level thoracic spondylosis with radiculopathy +202690000,Two-level thoracic spondylosis with radiculopathy +202692008,Multiple-level thoracic spondylosis with radiculopathy +202693003,Lumbosacral spondylosis with radiculopathy +202694009,Single-level lumbosacral spondylosis with radiculopathy +202695005,Two-level lumbosacral spondylosis with radiculopathy +202696006,Multiple-level lumbosacral spondylosis with radiculopathy +202747007,Calcification of cervical disc +202751009,Calcification of thoracic disc +202755000,Calcification of lumbar disc +202771000,Cervical posterior longitudinal ligament ossification +22193007,Degenerative joint disease of hand +225655006,Degenerative polyarthritis +232439007,Relapsing polychondritis of larynx +237898004,Periarticular calcification +239828000,Apatite-associated destructive arthritis +239832006,Calcium pyrophosphate deposition disease +239833001,Chondrocalcinosis due to pyrophosphate crystals of the knee +239837000,Pyrophosphate tophus +239842008,Monosodium urate arthritis and periarthritis +239849004,Intra-articular steroid-induced arthritis and periarthritis +239862000,Idiopathic osteoarthritis +239863005,Osteoarthritis of spinal facet joint +239865003,Osteoarthritis of acromioclavicular joint +239866002,Osteoarthritis of elbow +239867006,Osteoarthritis of wrist +239868001,Osteoarthritis of finger joint +239869009,Osteoarthritis of distal interphalangeal joint +239870005,Osteoarthritis of proximal interphalangeal joint +239871009,Osteoarthritis of metacarpophalangeal joint of finger +239872002,Osteoarthritis of hip +239873007,Osteoarthritis of knee +239874001,Osteoarthritis of ankle +239876004,Osteoarthritis of subtalar joint +239877008,Osteoarthritis of first metatarsophalangeal joint +239878003,Osteoarthritis of toe joint +239880009,Lumbar spondylosis +239881008,Otto's pelvis +239883006,Endemic osteoarthritis +239884000,Malemud disease +240211000,Intervertebral disk calcification +25343008,Secondary localized osteoarthrosis of pelvic region +254779008,Osteoarthritis deformans +26241001,Crystal arthropathy of hand +26538006,Degeneration of lumbar intervertebral disc +267889007,Generalized osteoarthritis of the hand +267890003,"Localized, secondary osteoarthritis of the pelvic region and thigh" +267970006,Cervical spondylosis without myelopathy +268054009,Osteoarthritis of multiple joints +270505009,Kashin-Beck disease +275324008,Osteoarthritis of metacarpophalangeal joint +28736004,Primary localized osteoarthrosis of multiple sites +303001000119101,Osteoarthritis of hip co-occurrent and due to dysplasia +303041000119104,Osteoarthritis of bilateral first carpometacarpal joints +303861000119106,Chondromalacia of left patella +303881000119102,Chronic tophaceous gout of ankle due to renal impairment +303901000119100,Chronic tophaceous gout of elbow due to renal impairment +303921000119109,Chronic tophaceous gout of hand due to renal impairment +303941000119103,Chronic tophaceous gout of hip due to renal impairment +303961000119104,Chronic tophaceous gout of knee due to renal impairment +304121000119108,Chronic tophaceous gout of multiple sites due to renal impairment +304281000119100,Chronic tophaceous gout of shoulder due to renal impairment +304301000119101,Chronic tophaceous gout of vertebra due to renal impairment +304321000119105,Chronic tophaceous gout due to renal impairment +304341000119104,Chronic tophaceous gout of wrist due to renal impairment +306131000119100,Chronic tophaceous gout of ankle and/or foot caused by drug +306151000119106,Chronic tophaceous gout of elbow caused by drug +306171000119102,Chronic tophaceous gout of hand caused by drug +306191000119101,Chronic tophaceous gout of hip caused by drug +306211000119100,Chronic tophaceous gout of knee caused by drug +306371000119100,Chronic tophaceous gout of multiple sites caused by drug +306551000119102,Chronic tophaceous gout of vertebra caused by drug +306571000119106,Chronic tophaceous gout caused by drug +306591000119107,Chronic tophaceous gout of wrist caused by drug +308143008,Seropositive erosive rheumatoid arthritis +309246000,Osteoarthritis of foot joint +310640003,Degenerative lesion of articular cartilage of knee +313257005,"Localized, primary osteoarthritis of the wrist" +313258000,"Localized, primary osteoarthritis of toe" +313259008,"Localized, primary osteoarthritis of elbow" +313294001,Degeneration of lateral meniscus +318641000119101,Osteoarthritis of joint of left ankle +318651000119104,Osteoarthritis of joint of left elbow +318661000119102,Osteoarthritis of joint of left hand +318671000119108,Osteoarthritis of joint of left shoulder region +318681000119106,Osteoarthritis of joint of left wrist +318691000119109,Osteoarthritis of joint of right ankle and/or foot +318701000119109,Osteoarthritis of joint of right elbow +318711000119107,Osteoarthritis of joint of right hand +318721000119100,Osteoarthritis of joint of right shoulder region +318731000119102,Osteoarthritis of joint of right wrist +321311000119108,Spondylosis of cervicothoracic spine +321341000119107,Spondylosis of thoracolumbar spine +323161000119107,Osteoarthritis of left hip joint due to dysplasia +323171000119101,Osteoarthritis of right hip joint due to dysplasia +323291000119108,Osteoarthritis of left hip joint +323301000119109,Osteoarthritis of left knee joint +323311000119107,Osteoarthritis of right hip joint +323321000119100,Osteoarthritis of right knee joint +33262002,Osteoarthrosis involving multiple sites but not designated as generalized +33420007,Diffuse cervicobrachial syndrome +33952002,Localized osteoarthrosis +34427002,Crystal arthropathy of shoulder region +36071006,Chondromalacia of patella +36540006,Calcification of joint +373623009,Osteoarthritis of glenohumeral joint +37895003,Osteoarthrosis of the carpometacarpal joint of the thumb +387800004,Cervical spondylosis +387802007,Thoracic spondylosis +394991004,Exacerbation of osteoarthritis +396275006,Osteoarthritis +39838007,Ochronotic arthritis +4168008,Tibial plateau chondromalacia +428027008,Crystal arthropathy of hip +428768008,Crystal arthropathy of elbow +428857003,Kashin-Beck disease of spine +429419004,Crystal arthropathy of wrist +429420005,Crystal arthropathy of knee +42944009,Degeneration of internal semilunar cartilage +43132002,Degeneration of cervicothoracic intervertebral disc +432733005,Acute degenerative joint disease of shoulder region +43829003,Chronic osteoarthritis +442884002,Chondrocalcinosis of joint of hand +442925003,Chondrocalcinosis of wrist joint +442928001,Chondrocalcinosis of joint of shoulder region +442941002,Chondrocalcinosis of joint of ankle AND/OR foot +442942009,Chondrocalcinosis of knee joint +443001001,Chondrocalcinosis of elbow joint +443002008,Chondrocalcinosis of hip joint +443524000,Secondary osteoarthritis +445477009,Crystal arthropathy of pelvis +445478004,Degenerative joint disease of pelvis +445496008,Chondrocalcinosis of joint of pelvis +446496001,Heterotopic ossification of joint +450521003,Osteoarthritis of patellofemoral joint +48210000,Lumbosacral spondylosis without myelopathy +50921008,Periarthritis +52334005,Miner's knee +53332000,Spinal arthritis deformans +60644007,Pellegrini-Stieda syndrome +60937000,Degeneration of lumbosacral intervertebral disc +63198006,Chondromalacia +67315001,Degenerative joint disease of shoulder region +67437007,Lumbar spondylosis with myelopathy +68675004,Degeneration of thoracic intervertebral disc +68859000,Spondylosis without myelopathy +69195002,Degeneration of cervical intervertebral disc +699261008,Post infectious osteoarthritis +699262001,Post traumatic osteoarthritis +699655001,Calcification of stylohyoid ligament +699942000,Apatite-associated destructive arthritis of shoulder +700293006,Primary osteoarthritis of ankle +700294000,Secondary osteoarthritis of ankle +700295004,Osteoarthritis of ankle secondary to trauma +700304006,Primary osteoarthritis of calcaneocuboid joint +700305007,Osteoarthritis of calcaneocuboid joint +700307004,Secondary osteoarthritis of calcaneocuboid joint +700312003,Osteoarthritis of calcaneocuboid joint secondary to trauma +700313008,Primary osteoarthritis of subtalar joint +700314002,Secondary osteoarthritis of subtalar joint +700315001,Osteoarthritis of subtalar joint secondary to trauma +700316000,Osteoarthritis of subtalar joint secondary to inflammatory arthritis +700317009,Osteoarthritis of calcaneocuboid joint secondary to inflammatory arthritis +700318004,Osteoarthritis of ankle secondary to inflammatory arthritis +700324005,Osteoarthritis of talonavicular joint +700325006,Primary osteoarthritis of talonavicular joint +700326007,Secondary osteoarthritis of talonavicular joint +700328008,Osteoarthritis of talonavicular joint secondary to trauma +700331009,Osteoarthritis of talonavicular joint secondary to inflammatory arthritis +700332002,Secondary osteoarthritis of first metatarsophalangeal joint +700333007,Primary osteoarthritis of first metatarsophalangeal joint +700335000,Osteoarthritis of first metatarsophalangeal joint secondary to trauma +700336004,Osteoarthritis of first metatarsophalangeal joint secondary to inflammatory arthritis +703050003,Secondary osteoarthritis of midfoot +703051004,Osteoarthritis of midfoot +703052006,Primary osteoarthritis of midfoot +703053001,Osteoarthritis of midfoot secondary to trauma +703054007,Osteoarthritis of midfoot secondary to inflammatory arthritis +703627005,Asymptomatic calcium pyrophosphate deposition disease +712504007,Osteoarthritis of hip due to dysplasia +7126001,Secondary localized osteoarthrosis of multiple sites +713482002,Osteoarthritis of facet joint of thoracic spine +713826008,Osteoarthritis of lumbar spinal facet joint +713869000,Congenital calcium pyrophosphate dihydrate crystal deposition disease +713911007,Lumbosacral spondylosis co-occurrent with root compression +718602007,Hereditary arterial and articular multiple calcification syndrome +721090002,Dermatoosteolysis Kirghizian type +72275000,Relapsing polychondritis +724604003,Intervertebral disc degeneration of cervical spine without prolapsed disc +724605002,Ossification of spinal ligament +726628003,Familial chondromalacia of patella +735598004,Oligoosteoarthritis +735599007,Rheumatoid arthritis with erosion of joint +735604001,Prolapse of cervical intervertebral disc co-occurrent and due to degeneration +735605000,Degeneration of cervical intervertebral disc co-occurrent with osteophyte of cervical vertebra +735606004,Degeneration of thoracic intervertebral disc without prolapse +735607008,Prolapse of thoracic intervertebral disc co-occurrent and due to degeneration +735608003,Degeneration of thoracic intervertebral disc co-occurrent with osteophyte +735609006,Degeneration of lumbar intervertebral disc without prolapse +735610001,Prolapse of lumbar intervertebral disc co-occurrent and due to degeneration +735611002,Degeneration of lumbar intervertebral disc co-occurrent with osteophyte of lumbar vertebra +735914007,Wear of cartilage of joint caused by hemiarthroplasty +737057000,Osteoarthritis of joint of left ankle and/or foot +73877009,Chronic tophaceous gout +74885006,Interphalangeal osteoarthritis +75468006,Crystal arthropathy of ankle AND/OR foot +77547008,Degeneration of intervertebral disc +77994009,Primary localized osteoarthrosis of pelvic region +785808002,Aneurysm osteoarthritis syndrome +78675000,Stickler syndrome +789000004,Osteoarthritis of hip due to and following trauma +789001000,Osteoarthritis of knee due to and following trauma +789002007,Osteoarthritis of wrist and hand due to and following trauma +82300000,Degenerative joint disease of ankle AND/OR foot +850791000000102,Osteoarthritis of sternoclavicular joint +86787000,Chondrocalcinosis due to calcium hydroxyapatite crystals +8847002,Spondylosis +90448008,Ossification of posterior longitudinal ligament +90860001,Localized osteoarthrosis uncertain if primary OR secondary +91240008,Degeneration of thoracolumbar intervertebral disc