From a91cec69c62c8e90c00d5bc3a6b410583c9a2141 Mon Sep 17 00:00:00 2001 From: Sinan Shi Date: Tue, 14 Mar 2017 09:12:59 +0000 Subject: [PATCH] A more general icnarc code conversion (#134) * A more general icnarc code conversion * remove getItemInfo(), as it is replaced by lookup.items() --- NAMESPACE | 1 - R/utilities.R | 88 +- R/zzz.R | 9 +- data/icnarc_table.RData | Bin 18707 -> 0 bytes data/icnarc_table.csv | 2191 +++++++++++++++++++++++++++++++ man/getItemInfo.Rd | 23 - man/icnarc2diagnosis.Rd | 10 +- tests/testthat/test_utilities.r | 28 + 8 files changed, 2276 insertions(+), 74 deletions(-) delete mode 100644 data/icnarc_table.RData create mode 100644 data/icnarc_table.csv delete mode 100644 man/getItemInfo.Rd create mode 100644 tests/testthat/test_utilities.r diff --git a/NAMESPACE b/NAMESPACE index 6297e78..f7a0b1c 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -18,7 +18,6 @@ export(extractInfo) export(file.summary) export(for_each_episode) export(getEpisodePeriod) -export(getItemInfo) export(getfilter) export(icnarc2diagnosis) export(is.demographic) diff --git a/R/utilities.R b/R/utilities.R index d5990f9..6510552 100644 --- a/R/utilities.R +++ b/R/utilities.R @@ -106,42 +106,6 @@ extractInfo <- function() { as.numeric(as.number(StdId(time.list$idt)))))) } -#' Retrieve information of the query code/item names from data.checklist -#' -#' @param item.code it can be either item name or NHIC_code, dt_code, or -#' meta_code -#' @return a vector contains NHIC_code, dt_code, meta_code and row_in_checklist -#' @examples -#' getItemInfo("Time of death on your unit") -#' getItemInfo("NIHR_HIC_ICU_0001") -#' @export getItemInfo -getItemInfo <- function(item.code) { - if(grepl("NIHR_HIC_ICU_", item.code)){# input is code - item <- data.checklist$NHICcode == item.code - dt <- data.checklist$NHICdtCode == item.code - meta <- data.checklist$NHICmetaCode == item.code - row.in.list <- which(item | dt | meta) - } - else{ # input is item name - row.in.list <- which(data.checklist$dataItem==item.code) - } - - if (length(row.in.list) != 1){ - stop("item/NHIC code cannot be found in the list.\n") - } - - item.info <- c(as.character(data.checklist$dataItem[row.in.list]), - as.character(data.checklist$NHICcode[row.in.list]), - as.character(data.checklist$NHICdtCode[row.in.list]), - as.character(data.checklist$NHICmetaCode[row.in.list]), - as.character(data.checklist$Units[row.in.list]), - as.character(row.in.list)) - - names(item.info) <- c("item", "NHIC_code", "dt_code", - "meta_code", "unit", "row_in_checklist") - return(item.info) -} - #' Lookup items information by keywords #' #' This function tries to match keywords in short names, long names and NHIC code. @@ -234,16 +198,56 @@ site.info <- function(){ NULL -#' Convert the ICNARC code to human readable diagnosis +#' Convert ICNARC codes to diagnosis (text) #' +#' NOTE: There are still ~600 code missing. see issue #133 #' @param icnarc the ICNARC code, e.g. 1.1.1.1.1 +#' @param levels category level, from [1 - 5]. TODO level 4. +#' @param surgery T/F with or without surgical information #' @return character ICNARC diagnosis #' @export -icnarc2diagnosis <- function(icnarc) { +icnarc2diagnosis <- function(icnarc, surgery=TRUE, levels=NULL) { if (is.null(icnarc)) return("NA") # e.g 1.01.1 -> 1.1.1 - if (is.null(icnarc)) {return("NA")} - std.icnarc <- sapply(lapply(strsplit(icnarc, split='[.]'), as.numeric), - function(x) paste(x, collapse=".")) - icnarc.dict[std.icnarc] + if(!is.null(levels)) + icnarc <- icnarc.breakdown(icnarc, digits=levels) + else + icnarc <- sapply(lapply(strsplit(icnarc, split='[.]'), as.numeric), + function(x) paste(x, collapse=".")) + + diag <- as.character(icnarc.dict[icnarc]) + if (!surgery) + return(gsub(x=diag, " [(]Surgical[)]| [(]Nonsurgical[)]", "")) + else + return(diag) +} + +icnarc.breakdown <- function(r, digits=3) { + cols <- strsplit(r, '[.]') + cols <- lapply(cols, + function(x) { + x <- tryCatch(as.numeric(x), + warning=function(w) { + return(NA) + }) + if (length(x) < 5) + x <- c(x, rep(NA, 5-length(x))) + if (length(x) > 5) + x <- x[1:5] + x + }) + + cols <- t(data.frame(cols)) + rownames(cols) <- seq(nrow(cols)) + cols <- cols[, 1:digits] + + combine <- function(x) { + x <- x[!is.na(x)] + paste(x, collapse=".") + } + if (digits == 1) return(as.character(cols)) + if (class(cols) == "numeric") + return(combine(cols)) + else + return(apply(cols, 1, combine)) } diff --git a/R/zzz.R b/R/zzz.R index 445123f..9750c54 100644 --- a/R/zzz.R +++ b/R/zzz.R @@ -8,11 +8,10 @@ ITEM_REF <- yaml.load_file(system.file("conf/ITEM_REF.yaml", package="cleanEHR")) assign("ITEM_REF", ITEM_REF, envir=env) - surgical <- paste(icnarc$Condition, "(Surgical)") - names(surgical) <- icnarc$Surgical - nonsurgical <- paste(icnarc$Condition, "(Nonsurgical)") - names(nonsurgical) <- icnarc$Nonsurgical - assign("icnarc.dict", c(surgical, nonsurgical), envir=env) + icnarc.dict <- as.character(icnarc_table$diagosis) + names(icnarc.dict) <- as.character(icnarc_table$code) + + assign("icnarc.dict", icnarc.dict, envir=env) unit.dict <- unlist(sapply(ITEM_REF, function(x) x$Units)) diff --git a/data/icnarc_table.RData b/data/icnarc_table.RData deleted file mode 100644 index dbba3d6a0e1de98b0c73e946efbedd0884e3a2c2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 18707 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 W*2|iH<+l6xpW&9#>uZcEj0^zO_=95r diff --git a/data/icnarc_table.csv b/data/icnarc_table.csv new file mode 100644 index 0000000..76816e9 --- /dev/null +++ b/data/icnarc_table.csv @@ -0,0 +1,2191 @@ +"code";"diagosis" +"1";"Surgical" +"2";"Nonsurgical" +"2.1";"Respiratory (Nonsurgical)" +"2.2";"Cardiovascular (Nonsurgical)" +"2.3";"Gastrointestinal (Nonsurgical)" +"2.4";"Neurological (including eyes) (Nonsurgical)" +"2.6";"Poisoning (Nonsurgical)" +"2.7";"Genito, urinary (Nonsurgical)" +"2.8";"Endocrine, Metabolic, Thermoregulation and Poisoning (Nonsurgical)" +"2.9";"Haematological/Immunological (Nonsurgical)" +"2.10";"Musculoskeletal (Nonsurgical)" +"2.11";"Dermatological (Nonsurgical)" +"2.12";"Psychiatric (Nonsurgical)" +"2.13";"Trauma (Nonsurgical)" +"2.1.1";"Upper airway or trachea (Nonsurgical)" +"2.1.2";"Bronchi or lower airways (Nonsurgical)" +"2.1.3";"Pulmonary vasculature (Nonsurgical)" +"2.1.4";"Lungs (Nonsurgical)" +"2.1.5";"Pleura or mediastinum (Nonsurgical)" +"2.1.6";"Spinal cord lesions causing respiratory failure (Nonsurgical)" +"2.1.7";"Peripheral nervous system disorders causing respiratory failure (Nonsurgical)" +"2.1.8";"Neuro, muscular junction disorders causing respiratory failure (Nonsurgical)" +"2.1.9";"Chest wall or diaphragm disorders causing respiratory failure (Nonsurgical)" +"2.1.1";"Brain lesions causing respiratory failure (Nonsurgical)" +"2.2.1";"Coronary arteries (Nonsurgical)" +"2.2.2";"Myocardium or cardiac chambers (Nonsurgical)" +"2.2.3";"Pericardium, pericardial space or mediastinum (Nonsurgical)" +"2.2.4";"Heart valves (Nonsurgical)" +"2.2.5";"Conducting system or rhythm disturbances (Nonsurgical)" +"2.2.6";"Thoracic aorta (Nonsurgical)" +"2.2.8";"Splanchnic or renal vessels (Nonsurgical)" +"2.2.9";"Neck or extracranial vessels (Nonsurgical)" +"2.2.1";"Limb or limb girdle vessels (Nonsurgical)" +"2.2.11";"Great veins (Nonsurgical)" +"2.2.12";"Peripheral vasculature, shock or hypertension (Nonsurgical)" +"2.2.13";"Pulmonary vasculature (Nonsurgical)" +"2.2.14";"Uterine or ovarian vessels (Nonsurgical)" +"2.2.15";"Abdominal aorta (Nonsurgical)" +"2.2.16";"Iliac vessels (Nonsurgical)" +"2.3.1";"Mouth or pharynx (Nonsurgical)" +"2.3.2";"Oesophagus (Nonsurgical)" +"2.3.3";"Stomach (Nonsurgical)" +"2.3.4";"Duodenum (Nonsurgical)" +"2.3.5";"Small bowel (Nonsurgical)" +"2.3.6";"Large bowel, rectum or anus (Nonsurgical)" +"2.3.7";"Liver or biliary tree (Nonsurgical)" +"2.3.8";"Spleen (Nonsurgical)" +"2.3.9";"Pancreas (Nonsurgical)" +"2.3.1";"Abdominal wall or peritoneum (Nonsurgical)" +"2.4.1";"Head, neck (extracranial) or eyes (Nonsurgical)" +"2.4.2";"Brain, CSF, meninges or skull vault (Nonsurgical)" +"2.4.3";"Spinal cord (Nonsurgical)" +"2.4.4";"Peripheral nervous system (Nonsurgical)" +"2.4.5";"Neuro,muscular junction (Nonsurgical)" +"2.6.8";"Poisoning (Nonsurgical)" +"2.7.1";"Kidney or ureter (Nonsurgical)" +"2.7.2";"Bladder or urethra (Nonsurgical)" +"2.7.3";"Ovary, fallopian tubes, uterus or genitalia (non,obstetric) (Nonsurgical)" +"2.7.4";"Ovary, fallopian tubes, uterus or genitalia (obstetric) (Nonsurgical)" +"2.7.5";"Testes, prostate or penis (Nonsurgical)" +"2.8.1";"Thyroid (Nonsurgical)" +"2.8.2";"Pituitary (Nonsurgical)" +"2.8.3";"Adrenal (Nonsurgical)" +"2.8.4";"Endocrine pancreas (Nonsurgical)" +"2.8.5";"Parathyroids (Nonsurgical)" +"2.8.7";"Thermoregulation (Nonsurgical)" +"2.8.8";"Body fluids or tissues (Nonsurgical)" +"2.8.9";"Body composition (Nonsurgical)" +"2.8.11";"Chromosomal abnormalities (Nonsurgical)" +"2.9.1";"Blood (Nonsurgical)" +"2.9.2";"Marrow (Nonsurgical)" +"2.10.1";"Vertebral column (Nonsurgical)" +"2.10.2";"Pelvis, long bones or joints (Nonsurgical)" +"2.10.3";"Muscles or connective tissue (Nonsurgical)" +"2.11.1";"Skin (Nonsurgical)" +"2.12.1";"Psychiatric (Nonsurgical)" +"2.13.1";"Respiratory (Nonsurgical)" +"2.13.2";"Cardiovascular (Nonsurgical)" +"2.13.3";"Gastrointestinal (Nonsurgical)" +"2.13.4";"Neurological (including eyes) (Nonsurgical)" +"2.13.5";"Genito,urinary (Nonsurgical)" +"2.13.6";"Musculoskeletal (Nonsurgical)" +"2.13.7";"Dermatological (Nonsurgical)" +"1.1";"Respiratory (Surgical)" +"1.2";"Cardiovascular (Surgical)" +"1.3";"Gastrointestinal (Surgical)" +"1.4";"Neurological (including eyes) (Surgical)" +"1.6";"Poisoning (Surgical)" +"1.7";"Genito, urinary (Surgical)" +"1.8";"Endocrine, Metabolic, Thermoregulation and Poisoning (Surgical)" +"1.9";"Haematological/Immunological (Surgical)" +"1.10";"Musculoskeletal (Surgical)" +"1.11";"Dermatological (Surgical)" +"1.12";"Psychiatric (Surgical)" +"1.13";"Trauma (Surgical)" +"1.1.1";"Upper airway or trachea (Surgical)" +"1.1.2";"Bronchi or lower airways (Surgical)" +"1.1.3";"Pulmonary vasculature (Surgical)" +"1.1.4";"Lungs (Surgical)" +"1.1.5";"Pleura or mediastinum (Surgical)" +"1.1.6";"Spinal cord lesions causing respiratory failure (Surgical)" +"1.1.7";"Peripheral nervous system disorders causing respiratory failure (Surgical)" +"1.1.8";"Neuro, muscular junction disorders causing respiratory failure (Surgical)" +"1.1.9";"Chest wall or diaphragm disorders causing respiratory failure (Surgical)" +"1.1.1";"Brain lesions causing respiratory failure (Surgical)" +"1.2.1";"Coronary arteries (Surgical)" +"1.2.2";"Myocardium or cardiac chambers (Surgical)" +"1.2.3";"Pericardium, pericardial space or mediastinum (Surgical)" +"1.2.4";"Heart valves (Surgical)" +"1.2.5";"Conducting system or rhythm disturbances (Surgical)" +"1.2.6";"Thoracic aorta (Surgical)" +"1.2.8";"Splanchnic or renal vessels (Surgical)" +"1.2.9";"Neck or extracranial vessels (Surgical)" +"1.2.1";"Limb or limb girdle vessels (Surgical)" +"1.2.11";"Great veins (Surgical)" +"1.2.12";"Peripheral vasculature, shock or hypertension (Surgical)" +"1.2.13";"Pulmonary vasculature (Surgical)" +"1.2.14";"Uterine or ovarian vessels (Surgical)" +"1.2.15";"Abdominal aorta (Surgical)" +"1.2.16";"Iliac vessels (Surgical)" +"1.3.1";"Mouth or pharynx (Surgical)" +"1.3.2";"Oesophagus (Surgical)" +"1.3.3";"Stomach (Surgical)" +"1.3.4";"Duodenum (Surgical)" +"1.3.5";"Small bowel (Surgical)" +"1.3.6";"Large bowel, rectum or anus (Surgical)" +"1.3.7";"Liver or biliary tree (Surgical)" +"1.3.8";"Spleen (Surgical)" +"1.3.9";"Pancreas (Surgical)" +"1.3.1";"Abdominal wall or peritoneum (Surgical)" +"1.4.1";"Head, neck (extracranial) or eyes (Surgical)" +"1.4.2";"Brain, CSF, meninges or skull vault (Surgical)" +"1.4.3";"Spinal cord (Surgical)" +"1.4.4";"Peripheral nervous system (Surgical)" +"1.4.5";"Neuro,muscular junction (Surgical)" +"1.6.8";"Poisoning (Surgical)" +"1.7.1";"Kidney or ureter (Surgical)" +"1.7.2";"Bladder or urethra (Surgical)" +"1.7.3";"Ovary, fallopian tubes, uterus or genitalia (non,obstetric) (Surgical)" +"1.7.4";"Ovary, fallopian tubes, uterus or genitalia (obstetric) (Surgical)" +"1.7.5";"Testes, prostate or penis (Surgical)" +"1.8.1";"Thyroid (Surgical)" +"1.8.2";"Pituitary (Surgical)" +"1.8.3";"Adrenal (Surgical)" +"1.8.4";"Endocrine pancreas (Surgical)" +"1.8.5";"Parathyroids (Surgical)" +"1.8.7";"Thermoregulation (Surgical)" +"1.8.8";"Body fluids or tissues (Surgical)" +"1.8.9";"Body composition (Surgical)" +"1.8.11";"Chromosomal abnormalities (Surgical)" +"1.9.1";"Blood (Surgical)" +"1.9.2";"Marrow (Surgical)" +"1.10.1";"Vertebral column (Surgical)" +"1.10.2";"Pelvis, long bones or joints (Surgical)" +"1.10.3";"Muscles or connective tissue (Surgical)" +"1.11.1";"Skin (Surgical)" +"1.12.1";"Psychiatric (Surgical)" +"1.13.1";"Respiratory (Surgical)" +"1.13.2";"Cardiovascular (Surgical)" +"1.13.3";"Gastrointestinal (Surgical)" +"1.13.4";"Neurological (including eyes) (Surgical)" +"1.13.5";"Genito,urinary (Surgical)" +"1.13.6";"Musculoskeletal (Surgical)" +"1.13.7";"Dermatological (Surgical)" +"1.1.1.8.1";"Mouth, mandible, pharynx, or facial bones deformity (Surgical)" +"1.1.1.8.2";"Tracheo-oesophageal fistula (Surgical)" +"1.1.1.8.3";"Laryngomalacia (Surgical)" +"1.1.1.8.4";"Tracheomalacia (Surgical)" +"1.1.1.8.5";"Choanal atresia (Surgical)" +"1.1.1.8.6";"Vocal cord abnormality (Surgical)" +"1.1.1.15.1";"Post-tonsillectomy bleeding (Surgical)" +"1.1.1.15.2";"Upper airway bleeding not defined (Surgical)" +"1.1.1.27.1";"Mandible, facial bones, dental or salivary infection (Surgical)" +"1.1.1.27.2";"Tonsil or pharyngeal infection (Surgical)" +"1.1.1.27.3";"Epiglottitis (Surgical)" +"1.1.1.27.4";"Croup or laryngotracheobronchitis (Surgical)" +"1.1.1.27.5";"Airway compression by extrinsic abscess (Surgical)" +"1.1.1.27.6";"Pertussis (Surgical)" +"1.1.1.28.1";"Inhalational burns (Surgical)" +"1.1.1.28.2";"Angio-neurotic oedema due to drug or treatment reaction (Surgical)" +"1.1.1.28.3";"Oedema due to venous obstruction (Surgical)" +"1.1.1.30.1";"Extrinsic compression of airway by haematoma (Surgical)" +"1.1.1.30.2";"Extrinsic compression of airway by abscess (Surgical)" +"1.1.1.30.3";"Extrinsic compression of airway by thyroid or lymphoid tissue (Surgical)" +"1.1.1.30.4";"Epiglottitis (Surgical)" +"1.1.1.30.5";"Croup or laryngotracheobronchitis (Surgical)" +"1.1.1.30.6";"Hanging or strangulation (Surgical)" +"1.1.1.30.7";"Tracheal stenosis (Surgical)" +"1.1.1.30.8";"Airway obstruction by foreign body (Surgical)" +"1.1.1.30.9";"Inhalational burns (Surgical)" +"1.1.1.30.10";"Angio-neurotic oedema due to drug or treatment reaction (Surgical)" +"1.1.1.30.11";"Oedema due to venous obstruction (Surgical)" +"1.1.1.30.12";"Obstructive sleep apnoea (Surgical)" +"1.1.1.30.14";"Vascular ring (Surgical)" +"1.1.1.30.15";"Laryngospasm (Surgical)" +"1.1.1.38.1";"Mouth, mandible, pharynx, or facial bones trauma (Surgical)" +"1.1.1.38.2";"Laryngeal trauma or perforation (Surgical)" +"1.1.1.38.3";"Tracheal trauma or perforation (Surgical)" +"1.1.1.39.1";"Head or neck tumour not intra-oral or intra-cranial (Surgical)" +"1.1.1.39.2";"Intra-oral or pharyngeal tumour (Surgical)" +"1.1.1.39.3";"Tracheal tumour (Surgical)" +"1.1.1.39.4";"Laryngeal tumour (Surgical)" +"1.1.1.41.1";"Vascular ring (Surgical)" +"1.1.2.8.1";"Cystic fibrosis (Surgical)" +"1.1.2.8.2";"Bronchopulmonary dysplasia (Surgical)" +"1.1.2.15.1";"Bronchial haemorrhage (Surgical)" +"1.1.2.27.1";"Acute bronchitis or laryngotracheobronchitis (Surgical)" +"1.1.2.27.2";"Exacerbation of chronic obstructive airways disease (COAD/COPD) (Surgical)" +"1.1.2.27.3";"Exacerbation of bronchiectasis (Surgical)" +"1.1.2.27.4";"Bronchiolitis (Surgical)" +"1.1.2.28.1";"Smoke inhalation (Surgical)" +"1.1.2.28.2";"Bronchiolitis obliterans (Surgical)" +"1.1.2.30.1";"Asthma attack in new or known asthmatic (Surgical)" +"1.1.2.30.2";"Drug, procedure or transfusion induced bronchospasm in non-asthmatic (Surgical)" +"1.1.2.30.3";"Obstruction by foreign body (Surgical)" +"1.1.2.30.4";"Sputum retention (Surgical)" +"1.1.2.30.5";"Extrinsic compression of bronchus by tumour (Surgical)" +"1.1.2.30.6";"Chronic obstructive airways disease (COAD/COPD) (Surgical)" +"1.1.2.30.7";"Meconium aspiration (Surgical)" +"1.1.2.30.8";"Bronchiolitis obliterans (Surgical)" +"1.1.2.38.1";"Traumatic rupture or perforation of bronchus (Surgical)" +"1.1.2.38.2";"Instrumental perforation of bronchus (Surgical)" +"1.1.2.39.1";"Bronchial tumour (Surgical)" +"1.1.3.8.1";"Anomalous pulmonary venous drainage (Surgical)" +"1.1.3.8.2";"Pulmonary arterio-venous malformations (Surgical)" +"1.1.3.8.3";"Transposition of great arteries (Surgical)" +"1.1.3.8.4";"Patent ductus arteriosus (Surgical)" +"1.1.3.8.5";"Truncus arteriosus (Surgical)" +"1.1.3.15.1";"Goodpastures syndrome (Surgical)" +"1.1.3.15.2";"Pulmonary vasculitis not defined (Surgical)" +"1.1.3.15.3";"Leptospirosis (Surgical)" +"1.1.3.15.4";"Pulmonary haemorrhage due to contusion (Surgical)" +"1.1.3.15.5";"Pulmonary haemorrhage not defined (Surgical)" +"1.1.3.19.1";"Idiopathic pulmonary hypertension (Surgical)" +"1.1.3.19.2";"Eisenmenger's syndrome (Surgical)" +"1.1.3.19.3";"Cor pulmonale (Surgical)" +"1.1.3.28.1";"Goodpastures syndrome (Surgical)" +"1.1.3.28.2";"Pulmonary vasculitis not defined (Surgical)" +"1.1.3.30.1";"Pulmonary embolus (thrombus) (Surgical)" +"1.1.3.30.2";"Fat embolus (Surgical)" +"1.1.3.30.3";"Venous air embolus (Surgical)" +"1.1.3.30.4";"Pulmonary tumour embolus (Surgical)" +"1.1.3.30.5";"Amniotic fluid embolus (Surgical)" +"1.1.3.38.1";"Traumatic damage to pulmonary vessels (Surgical)" +"1.1.3.38.2";"Instrumental damage to pulmonary vessels (Surgical)" +"1.1.4.6.1";"Lung collapse or atelectasis (Surgical)" +"1.1.4.6.2";"Non-traumatic haemothorax (Surgical)" +"1.1.4.6.3";"Traumatic haemothorax or haemopneumothorax (Surgical)" +"1.1.4.6.4";"Lung collapse due to pneumothorax (Surgical)" +"1.1.4.6.5";"Lung collapse secondary to broncho-pleural fistula (Surgical)" +"1.1.4.8.1";"Lung cyst (Surgical)" +"1.1.4.8.2";"Cystic fibrosis (Surgical)" +"1.1.4.15.1";"Pulmonary haemorrhage due to contusion (Surgical)" +"1.1.4.15.2";"Goodpasture's syndrome (Surgical)" +"1.1.4.15.3";"Leptospirosis (Surgical)" +"1.1.4.15.4";"Pulmonary haemorrhage not defined (Surgical)" +"1.1.4.15.5";"Pulmonary vasculitis not defined (Surgical)" +"1.1.4.27.1";"Bacterial pneumonia (Surgical)" +"1.1.4.27.2";"Fungal or yeast pneumonia (Surgical)" +"1.1.4.27.3";"Viral pneumonia (Surgical)" +"1.1.4.27.4";"Parasitic pneumonia (Surgical)" +"1.1.4.27.5";"Pneumonia, no organism isolated (Surgical)" +"1.1.4.27.6";"Tuberculosis (Surgical)" +"1.1.4.27.7";"Lung abscess (Surgical)" +"1.1.4.31.2";"Sarcoidosis (Surgical)" +"1.1.4.31.3";"Pulmonary fibrosis or fibrosing alveolitis (Surgical)" +"1.1.4.31.4";"Emphysema (Surgical)" +"1.1.4.31.5";"Inhalation pneumonitis (gastrointestinal contents) (Surgical)" +"1.1.4.31.6";"Inhalation pneumonitis (blood) (Surgical)" +"1.1.4.31.7";"Inhalation pneumonitis (smoke or gases) (Surgical)" +"1.1.4.31.8";"Drowning (fresh or salt water) (Surgical)" +"1.1.4.31.9";"Cardiogenic pulmonary oedema (Surgical)" +"1.1.4.31.10";"Non-cardiogenic pulmonary oedema (ARDS) (Surgical)" +"1.1.4.31.11";"Neurogenic pulmonary oedema (Surgical)" +"1.1.4.31.13";"Post-radiotherapy pneumonitis or fibrosis (Surgical)" +"1.1.4.31.14";"Lymphangitis carcinomatosis (Surgical)" +"1.1.4.31.15";"Meconium aspiration (Surgical)" +"1.1.4.31.16";"Hyaline membrane disease (Surgical)" +"1.1.4.37.1";"Lung transplant (Surgical)" +"1.1.4.37.2";"Rejection of lung transplant (Surgical)" +"1.1.4.38.1";"Pulmonary contusion (Surgical)" +"1.1.4.39.1";"Primary lung tumour (Surgical)" +"1.1.4.39.2";"Secondary lung tumour (Surgical)" +"1.1.5.8.1";"Pleural thickening or calcification (Surgical)" +"1.1.5.8.2";"Hiatus hernia (Surgical)" +"1.1.5.8.3";"Diaphragmatic hernia (Surgical)" +"1.1.5.8.4";"Pleural effusion (Surgical)" +"1.1.5.15.1";"Non-traumatic haemothorax (Surgical)" +"1.1.5.15.2";"Traumatic haemothorax or haemopneumothorax (Surgical)" +"1.1.5.27.1";"Pleurisy (Surgical)" +"1.1.5.27.2";"Empyema or infected effusion (Surgical)" +"1.1.5.27.3";"Mediastinitis (Surgical)" +"1.1.5.27.4";"Tuberculosis (Surgical)" +"1.1.5.38.1";"Traumatic haemothorax or haemopneumothorax (Surgical)" +"1.1.5.38.2";"Traumatic pneumothorax (Surgical)" +"1.1.5.38.3";"Traumatic broncho-pleural fistula (Surgical)" +"1.1.5.38.4";"Chylothorax (Surgical)" +"1.1.5.39.1";"Mesothelioma (Surgical)" +"1.1.5.39.2";"Mediastinal tumour (Surgical)" +"1.1.10.7.1";"Toxic or drug-induced coma or encephalopathy (Surgical)" +"1.1.10.7.2";"Metabolic coma or encephalopathy (Surgical)" +"1.1.10.7.3";"Anoxic or ischaemic coma or encephalopathy (Surgical)" +"1.1.10.7.4";"Degenerative coma or encephalopathy (Surgical)" +"1.1.10.7.5";"Post-anaesthetic encephalopathy aetiology uncertain (Surgical)" +"1.1.10.7.6";"Brainstem death (Surgical)" +"1.1.10.7.7";"Primary brain injury (Surgical)" +"1.1.10.8.1";"Congenital hydrocephalus (Surgical)" +"1.1.10.8.2";"Secondary hydrocephalus (Surgical)" +"1.1.10.8.3";"Arnold-Chiari malformation (Surgical)" +"1.1.10.8.4";"Congenital abnormality of skull (Surgical)" +"1.1.10.8.5";"Parkinson's Disease (Surgical)" +"1.1.10.8.6";"Multiple sclerosis (Surgical)" +"1.1.10.8.7";"Central hypoventilation (Ondine's curse) (Surgical)" +"1.1.10.15.1";"Intracerebral bleeding (Surgical)" +"1.1.10.15.2";"Subarachnoid bleeding (Surgical)" +"1.1.10.15.3";"Subdural haematoma (Surgical)" +"1.1.10.15.4";"Extradural haematoma (Surgical)" +"1.1.10.27.1";"Meningitis (Surgical)" +"1.1.10.27.2";"Encephalitis (Surgical)" +"1.1.10.27.3";"Intracranial abscess (Surgical)" +"1.1.10.27.4";"Infected CSF shunt (Surgical)" +"1.1.10.33.1";"Status epilepticus or uncontrolled seizures (Surgical)" +"1.1.10.33.2";"Eclampsia (Surgical)" +"1.1.10.33.3";"Alcohol withdrawal seizures (Surgical)" +"1.1.10.38.1";"Primary brain injury (Surgical)" +"1.1.10.38.2";"Subdural haematoma (Surgical)" +"1.1.10.38.3";"Extradural haematoma (Surgical)" +"1.1.10.38.4";"Non-accidental injury to brain (Surgical)" +"1.1.10.39.1";"Primary brain or meningeal tumour (Surgical)" +"1.1.10.39.2";"Secondary intracranial tumour (Surgical)" +"1.1.10.41.1";"Berry or other intracranial aneurysm (Surgical)" +"1.1.10.41.2";"Intracranial arterio-venous malformation (Surgical)" +"1.1.10.41.3";"Thrombo-occlusive disease of brain (Surgical)" +"1.1.10.41.4";"Venous air embolus (Surgical)" +"1.1.10.41.5";"Vasculitis of cerebral circulation (Surgical)" +"1.1.10.41.6";"Embolic brain lesions causing respiratory failure (Surgical)" +"1.1.6.9.1";"Motor neurone disease (Surgical)" +"1.1.6.9.2";"Chronic spinal cord injury (Surgical)" +"1.1.6.12.1";"Epidural injection or infusion (Surgical)" +"1.1.6.12.2";"Spinal injection or infusion (Surgical)" +"1.1.6.27.1";"Epidural or subdural abscess (Surgical)" +"1.1.6.27.2";"Poliomyelitis (Surgical)" +"1.1.6.27.3";"Tetanus (Surgical)" +"1.1.6.38.1";"Cervical cord injury (Surgical)" +"1.1.6.38.2";"Chronic spinal cord injury (Surgical)" +"1.1.7.8.1";"Pseudocholinesterase deficiency (Surgical)" +"1.1.7.8.2";"Failure of reversal of non-depolarising neuromuscular blockers (Surgical)" +"1.1.7.27.1";"Infective polyneuropathy (Surgical)" +"1.1.7.28.1";"Guillain-Barre syndrome (Surgical)" +"1.1.7.28.2";"Toxic polyneuropathy (Surgical)" +"1.1.8.8.1";"Pseudocholinesterase deficiency (Surgical)" +"1.1.8.8.2";"Failure of reversal of non-depolarising neuromuscular blockers (Surgical)" +"1.1.8.28.1";"Myasthenia gravis (Surgical)" +"1.1.9.8.1";"Thoracoplasty (Surgical)" +"1.1.9.8.2";"Kyphoscoliosis (Surgical)" +"1.1.9.8.3";"Congenital chest wall deformity (Surgical)" +"1.1.9.8.4";"Congenital muscular dystrophy (Surgical)" +"1.1.9.8.5";"Diaphragmatic hernia (Surgical)" +"1.1.9.8.6";"Ankylosing spondylitis (Surgical)" +"1.1.9.38.1";"Flail chest (Surgical)" +"1.1.9.38.2";"Flail sternum (Surgical)" +"1.1.9.38.3";"Fractured ribs (Surgical)" +"1.1.9.38.4";"Penetrating injury to chest wall (Surgical)" +"1.1.9.38.5";"Ruptured diaphragm (Surgical)" +"1.2.1.8.1";"Coronary sinus fistula (Surgical)" +"1.2.1.8.2";"Anomalous coronary artery (Surgical)" +"1.2.1.15.1";"Haemorrhage from coronary arteries (Surgical)" +"1.2.1.27.1";"Mediastinitis (Surgical)" +"1.2.1.28.1";"Kawasaki syndrome (Surgical)" +"1.2.1.30.1";"Acute myocardial infarction (Surgical)" +"1.2.1.30.2";"Acute crescendo or unstable angina (Surgical)" +"1.2.1.30.3";"Chronic angina (Surgical)" +"1.2.1.30.4";"CABG for acute myocardial infarction (Surgical)" +"1.2.1.30.5";"CABG for acute crescendo or unstable angina (Surgical)" +"1.2.1.30.6";"CABG for chronic angina (Surgical)" +"1.2.1.30.7";"Myocardial ischaemia without angina (Surgical)" +"1.2.1.38.1";"Traumatic damage to coronary arteries (Surgical)" +"1.2.1.38.2";"Instrumental damage to coronary arteries (Surgical)" +"1.2.2.8.1";"Complex congenital cardiac abnormality (Surgical)" +"1.2.2.8.2";"Atrial septal defect (Surgical)" +"1.2.2.8.3";"Congenital ventricular septal defect (Surgical)" +"1.2.2.8.4";"Ischaemic ventricular septal defect (Surgical)" +"1.2.2.8.6";"Tetralogy of Fallot (Surgical)" +"1.2.2.8.7";"AV canal defect (Surgical)" +"1.2.2.8.8";"Transposition of great arteries (Surgical)" +"1.2.2.8.9";"Hypertrophic cardiomyopathy (Surgical)" +"1.2.2.8.10";"Toxic myocarditis (Surgical)" +"1.2.2.8.12";"Single ventricle (Surgical)" +"1.2.2.8.13";"Right ventricular outflow tract obstruction (Surgical)" +"1.2.2.8.14";"Left ventricular outflow tract obstruction (Surgical)" +"1.2.2.8.15";"Double outlet left ventricle (Surgical)" +"1.2.2.8.16";"Hypoplastic left or right ventricle (Surgical)" +"1.2.2.8.17";"Ventricular aneurysm (Surgical)" +"1.2.2.13.1";"Left ventricular failure (Surgical)" +"1.2.2.13.2";"Right ventricular failure (Surgical)" +"1.2.2.13.3";"Bi-ventricular failure (Surgical)" +"1.2.2.13.4";"Cardiogenic shock (Surgical)" +"1.2.2.13.5";"Cor pulmonale (Surgical)" +"1.2.2.27.1";"Viral or bacterial cardiomyopathy (Surgical)" +"1.2.2.27.2";"Myocardial or septal abscess (Surgical)" +"1.2.2.27.3";"Myocarditis (Surgical)" +"1.2.2.27.4";"Non-valvular endocarditis (Surgical)" +"1.2.2.28.1";"Toxic myopathy (Surgical)" +"1.2.2.28.2";"Myocarditis (Surgical)" +"1.2.2.37.1";"Heart or heart-lung transplant (Surgical)" +"1.2.2.37.2";"Cardiac transplant rejection (Surgical)" +"1.2.2.38.1";"Myocardial contusion (Surgical)" +"1.2.2.38.2";"Instrumental damage to myocardium (Surgical)" +"1.2.2.38.3";"Ischaemic myocardial perforation (Surgical)" +"1.2.2.38.4";"Ischaemic ventricular septal defect (Surgical)" +"1.2.2.38.5";"Traumatic myocardial perforation (Surgical)" +"1.2.2.38.6";"Haemopericardium or tamponade post surgery (Surgical)" +"1.2.2.38.7";"Papillary muscle rupture (Surgical)" +"1.2.2.39.1";"Myxoma (Surgical)" +"1.2.2.41.1";"Ischaemic cardiomyopathy (Surgical)" +"1.2.2.41.2";"Ischaemic ventricular septal defect (Surgical)" +"1.2.2.41.3";"Papillary muscle rupture (Surgical)" +"1.2.2.41.4";"Acute myocardial infarction (Surgical)" +"1.2.3.8.1";"Constrictive pericarditis (Surgical)" +"1.2.3.8.2";"Pericardial effusion (Surgical)" +"1.2.3.15.1";"Haemopericardium from instrumental myocardial perforation (Surgical)" +"1.2.3.15.2";"Haemopericardium from ischaemic myocardial perforation (Surgical)" +"1.2.3.15.3";"Haemopericardium from traumatic myocardial perforation (Surgical)" +"1.2.3.15.4";"Haemopericardium from coronary artery damage (Surgical)" +"1.2.3.15.5";"Haemopericardium or tamponade post surgery (Surgical)" +"1.2.3.27.1";"Infective pericarditis (Surgical)" +"1.2.3.27.2";"Mediastinitis (Surgical)" +"1.2.3.28.1";"Pericardial effusion (Surgical)" +"1.2.3.39.1";"Malignant pericardial effusion (Surgical)" +"1.2.4.8.1";"Abnormality of aortic valve (Surgical)" +"1.2.4.8.2";"Abnormality of mitral valve (Surgical)" +"1.2.4.8.3";"Abnormality of pulmonary valve (Surgical)" +"1.2.4.8.4";"Abnormality of tricuspid valve (Surgical)" +"1.2.4.8.5";"Tetralogy of Fallot (Surgical)" +"1.2.4.8.6";"AV canal defect (Surgical)" +"1.2.4.8.7";"Abnormality of prosthetic valve (Surgical)" +"1.2.4.9.1";"Chronic degeneration of aortic valve (Surgical)" +"1.2.4.9.2";"Chronic degeneration of mitral valve (Surgical)" +"1.2.4.9.3";"Chronic degeneration of pulmonary valve (Surgical)" +"1.2.4.9.4";"Chronic degeneration of tricuspid valve (Surgical)" +"1.2.4.27.1";"Endocarditis of aortic valve (Surgical)" +"1.2.4.27.2";"Endocarditis of mitral valve (Surgical)" +"1.2.4.27.3";"Endocarditis of pulmonary valve (Surgical)" +"1.2.4.27.4";"Endocarditis of tricuspid valve (Surgical)" +"1.2.4.27.5";"Aortic root abscess (Surgical)" +"1.2.4.27.6";"Infection of prosthetic heart valve (Surgical)" +"1.2.4.27.7";"Non-valvular endocarditis (Surgical)" +"1.2.4.38.1";"Trauma to aortic valve (Surgical)" +"1.2.4.38.2";"Trauma to mitral valve (Surgical)" +"1.2.4.38.3";"Trauma to pulmonary valve (Surgical)" +"1.2.4.38.4";"Trauma to tricuspid valve (Surgical)" +"1.2.4.38.5";"Instrumental damage to heart valves (Surgical)" +"1.2.4.38.6";"Papillary muscle rupture (Surgical)" +"1.2.4.39.1";"Myxoma (Surgical)" +"1.2.4.41.1";"Papillary muscle rupture (Surgical)" +"1.2.5.8.1";"Wolff-Parkinson-White syndrome (Surgical)" +"1.2.5.8.2";"Lown-Ganong-Levine syndrome (Surgical)" +"1.2.5.27.1";"Infected artificial pacemaker (Surgical)" +"1.2.5.32.1";"Supra-ventricular tachycardia, atrial fibrillation or flutter (Surgical)" +"1.2.5.32.2";"Ventricular tachycardia or fibrillation (Surgical)" +"1.2.5.32.3";"Atrial premature beats or ectopics (Surgical)" +"1.2.5.32.4";"Ventricular ectopics (Surgical)" +"1.2.5.40.1";"Heart block (Surgical)" +"1.2.6.8.1";"Coarctation of the aorta (Surgical)" +"1.2.6.8.2";"Marfan's syndrome (Surgical)" +"1.2.6.8.3";"Congenital abnormality of aortic arch (Surgical)" +"1.2.6.8.4";"Transposition of great arteries (Surgical)" +"1.2.6.8.5";"Truncus arteriosus (Surgical)" +"1.2.6.8.6";"Patent ductus arteriosus (Surgical)" +"1.2.6.11.1";"Traumatic dissection of thoracic aorta (Surgical)" +"1.2.6.11.2";"Non-traumatic dissection of thoracic aorta (Surgical)" +"1.2.6.11.3";"Thoracic or thoraco-abdominal aortic aneurysm (Surgical)" +"1.2.6.27.1";"Infected thoracic aortic prosthesis (Surgical)" +"1.2.6.27.2";"Aortic root abscess (Surgical)" +"1.2.6.27.3";"Syphilitic aortitis (Surgical)" +"1.2.6.30.1";"Coarctation of the aorta (Surgical)" +"1.2.6.38.1";"Traumatic rupture of thoracic aorta (Surgical)" +"1.2.6.38.2";"Traumatic or instrumental perforation of thoracic aorta (Surgical)" +"1.2.7.11.1";"Aortic or iliac dissection or aneurysm (Surgical)" +"1.2.7.11.2";"Traumatic dissection or rupture of abdominal aorta or iliac vessels (Surgical)" +"1.2.7.11.4";"Traumatic aorto-caval fistula (Surgical)" +"1.2.7.11.5";"Traumatic aorto-enteric fistula (Surgical)" +"1.2.7.27.1";"Infected aortic or iliac prosthesis (Surgical)" +"1.2.7.30.1";"Occlusive aortic or iliac disease (Surgical)" +"1.2.7.30.2";"Iliac or saddle embolus (Surgical)" +"1.2.7.38.1";"Traumatic dissection or rupture of abdominal aorta or iliac vessels (Surgical)" +"1.2.7.38.2";"Instrumental damage to abdominal aorta or iliac vessels (Surgical)" +"1.2.7.38.3";"Traumatic aorto-enteric fistula (Surgical)" +"1.2.7.38.4";"Traumatic aorto-caval fistula (Surgical)" +"1.2.8.11.1";"Renal artery aneurysm or dissection (Surgical)" +"1.2.8.11.2";"Hepatic artery aneurysm (Surgical)" +"1.2.8.11.3";"Splanchnic artery aneurysm or dissection not defined (Surgical)" +"1.2.8.30.1";"Renal artery stenosis or occlusion (Surgical)" +"1.2.8.30.2";"Renal artery embolus (Surgical)" +"1.2.8.30.3";"Renal infarction (Surgical)" +"1.2.8.30.4";"Renal artery aneurysm or dissection (Surgical)" +"1.2.8.30.5";"Hepatic artery stenosis or occlusion (Surgical)" +"1.2.8.30.6";"Portal vein occlusion or thrombosis (Surgical)" +"1.2.8.30.7";"Hepatic vein occlusion or thrombosis (Surgical)" +"1.2.8.30.8";"Visceral artery stenosis or occlusion (Surgical)" +"1.2.8.30.9";"Visceral artery embolism (Surgical)" +"1.2.8.30.10";"Visceral infarction due to primary vascular disease (Surgical)" +"1.2.8.30.11";"Small bowel infarction due to herniation, volvulus or adhesions (Surgical)" +"1.2.8.30.12";"Portal hypertension (Surgical)" +"1.2.8.38.1";"Traumatic damage to renal vessels (Surgical)" +"1.2.8.38.2";"Traumatic damage to splanchnic vessels (Surgical)" +"1.2.8.38.3";"Instrumental damage to renal or splanchnic vessels (Surgical)" +"1.2.9.8.1";"Extracranial or neck arterio-venous malformation or haemangioma (Surgical)" +"1.2.9.11.1";"Carotid or vertebral artery aneurysm or dissection (Surgical)" +"1.2.9.15.1";"Epistaxis (Surgical)" +"1.2.9.30.1";"Carotid or vertebral artery stenosis or occlusion (Surgical)" +"1.2.9.38.1";"Traumatic rupture or puncture of carotid or vertebral artery (Surgical)" +"1.2.9.38.2";"Instrumental damage to carotid or vertebral artery (Surgical)" +"1.2.10.11.1";"Upper limb artery aneurysm or dissection (Surgical)" +"1.2.10.11.2";"Lower limb artery aneurysm or dissection (Surgical)" +"1.2.10.15.1";"Bleeding from limb vessel (Surgical)" +"1.2.10.30.1";"Upper limb artery stenosis or occlusion (Surgical)" +"1.2.10.30.2";"Lower limb artery stenosis or occlusion (Surgical)" +"1.2.10.30.3";"Upper limb embolus (Surgical)" +"1.2.10.30.4";"Lower limb embolus (Surgical)" +"1.2.10.38.1";"Traumatic rupture or puncture of upper limb artery (Surgical)" +"1.2.10.38.2";"Traumatic rupture or puncture of lower limb artery (Surgical)" +"1.2.10.38.3";"Instrumental damage to limb artery (Surgical)" +"1.2.11.27.1";"Infected thrombophlebitis of the great veins (Surgical)" +"1.2.11.27.2";"Infected intravenous catheter in the great veins (Surgical)" +"1.2.11.30.1";"Superior vena caval obstruction or thrombosis (Surgical)" +"1.2.11.30.2";"Inferior vena caval obstruction or thrombosis (Surgical)" +"1.2.11.38.1";"Superior vena caval damage (Surgical)" +"1.2.11.38.2";"Traumatic inferior vena caval damage (Surgical)" +"1.2.12.27.1";"Infected thrombophlebitis of the peripheral veins (Surgical)" +"1.2.12.27.2";"Infected intravenous catheter in the peripheral veins (Surgical)" +"1.2.12.27.3";"Infected arterio-venous shunt or fistula (Surgical)" +"1.2.12.35.1";"Hypovolaemic shock (Surgical)" +"1.2.12.35.2";"Septic shock (Surgical)" +"1.2.12.35.3";"Anaphylaxis (Surgical)" +"1.2.12.35.4";"Cardiogenic shock (Surgical)" +"1.2.12.19.1";"Accelerated or malignant hypertension (Surgical)" +"1.2.12.19.2";"Essential hypertension (Surgical)" +"1.2.12.19.3";"Phaeochromocytoma (Surgical)" +"1.2.12.19.4";"HELLP syndrome (Surgical)" +"1.2.12.19.5";"Pre-eclampsia (Surgical)" +"1.2.12.19.6";"Coarctation of the aorta (Surgical)" +"1.2.13.8.1";"Anomalous pulmonary venous drainage (Surgical)" +"1.2.13.8.2";"Pulmonary arterio-venous malformations (Surgical)" +"1.2.13.8.3";"Transposition of great arteries (Surgical)" +"1.2.13.8.4";"Patent ductus arteriosus (Surgical)" +"1.2.13.8.5";"Truncus arteriosus (Surgical)" +"1.2.13.15.1";"Goodpasture's syndrome (Surgical)" +"1.2.13.15.2";"Pulmonary vasculitis not defined (Surgical)" +"1.2.13.15.3";"Leptospirosis (Surgical)" +"1.2.13.15.4";"Pulmonary haemorrhage due to contusion (Surgical)" +"1.2.13.19.1";"Idiopathic pulmonary hypertension (Surgical)" +"1.2.13.19.2";"Eisenmenger's syndrome (Surgical)" +"1.2.13.19.3";"Cor pulmonale (Surgical)" +"1.2.13.28.1";"Goodpasture's syndrome (Surgical)" +"1.2.13.28.2";"Pulmonary vasculitis not defined (Surgical)" +"1.2.13.30.1";"Pulmonary embolus (thrombus) (Surgical)" +"1.2.13.30.2";"Fat embolus (Surgical)" +"1.2.13.30.3";"Venous air embolus (Surgical)" +"1.2.13.30.4";"Pulmonary tumour embolus (Surgical)" +"1.2.13.30.5";"Amniotic fluid embolus (Surgical)" +"1.2.13.38.1";"Traumatic damage to pulmonary vessels (Surgical)" +"1.2.13.38.2";"Instrumental damage to pulmonary vessels (Surgical)" +"1.3.4.30.3";"Meconium ileus (Surgical)" +"1.3.4.38.1";"Non-traumatic duodenal rupture (Surgical)" +"1.3.4.38.2";"Traumatic duodenal rupture (Surgical)" +"1.3.4.38.3";"Instrumental damage to duodenum (Surgical)" +"1.3.4.38.4";"Duodenal perforation due to ulcers (Surgical)" +"1.3.4.38.5";"Leaking duodenal anastomosis (Surgical)" +"1.3.4.38.6";"Duodeno-vascular fistula (Surgical)" +"1.3.4.38.7";"Duodenal fistula (Surgical)" +"1.3.4.39.1";"Duodenal or ampullary tumour (Surgical)" +"1.3.5.15.1";"Entero-vascular fistula (Surgical)" +"1.3.5.15.2";"Small bowel arterio-venous malformation (Surgical)" +"1.3.5.27.1";"Infective enteritides (Surgical)" +"1.3.5.27.2";"Necrotising enterocolitis (Surgical)" +"1.3.5.28.1";"Crohn's disease of small bowel (Surgical)" +"1.3.5.28.2";"Inflammatory perforation of small bowel (Surgical)" +"1.3.5.30.1";"Small bowel herniation (Surgical)" +"1.3.5.30.2";"Small bowel volvulus (Surgical)" +"1.3.5.30.3";"Small bowel adhesions (Surgical)" +"1.3.5.30.4";"Small bowel intussusception (Surgical)" +"1.3.5.30.5";"Small bowel tumour (Surgical)" +"1.3.5.30.6";"Small bowel inflammatory masses (Surgical)" +"1.3.5.38.1";"Non-traumatic small bowel perforation (Surgical)" +"1.3.5.38.2";"Traumatic small bowel perforation (Surgical)" +"1.3.5.38.3";"Instrumental damage to small bowel (Surgical)" +"1.3.5.38.4";"Leaking small bowel anastomosis (Surgical)" +"1.3.5.38.5";"Entero-enteric or entero-cutaneous fistula (Surgical)" +"1.3.5.39.1";"Small bowel tumour (Surgical)" +"1.3.5.41.1";"Visceral artery stenosis or occlusion (Surgical)" +"1.3.5.41.2";"Visceral artery embolism (Surgical)" +"1.3.5.41.3";"Visceral infarction due to primary vascular disease (Surgical)" +"1.3.5.41.4";"Small bowel infarction due to herniation, volvulus or adhesions (Surgical)" +"1.3.6.8.1";"Imperforate anus or rectum (Surgical)" +"1.3.6.8.2";"Hirschsprung's disease (Surgical)" +"1.3.6.15.1";"Colonic or rectal bleeding (Surgical)" +"1.3.6.15.2";"Colo-vascular fistula (Surgical)" +"1.3.6.27.1";"Infective colitis or proctocolitis (Surgical)" +"1.3.6.27.2";"Necrotising enterocolitis (Surgical)" +"1.3.6.27.3";"Diverticulitis or diverticular abscess (Surgical)" +"1.3.6.27.4";"Appendicitis or appendix abscess (Surgical)" +"1.3.6.28.1";"Crohn's disease of large bowel, rectum or anus (Surgical)" +"1.3.6.28.2";"Ulcerative colitis (Surgical)" +"1.3.6.28.3";"Toxic dilatation of large bowel (Surgical)" +"1.3.6.28.4";"Diverticulitis or diverticular abscess (Surgical)" +"1.3.6.28.5";"Appendicitis or appendix abscess (Surgical)" +"1.3.6.28.6";"Ischaemic colitis (Surgical)" +"1.3.6.30.1";"Large bowel herniation (Surgical)" +"1.3.6.30.2";"Large bowel volvulus (Surgical)" +"1.3.6.30.3";"Large bowel adhesions (Surgical)" +"1.3.6.30.4";"Large bowel intussusception or prolapse (Surgical)" +"1.3.6.30.5";"Large bowel tumour (Surgical)" +"1.3.6.30.6";"Large bowel inflammatory masses (Surgical)" +"1.3.6.38.1";"Non-traumatic large bowel perforation or rupture (Surgical)" +"1.3.6.38.2";"Traumatic large bowel perforation or rupture (Surgical)" +"1.3.6.38.3";"Instrumental damage to large bowel (Surgical)" +"1.3.6.38.4";"Leaking large bowel anastomosis (Surgical)" +"1.3.6.38.5";"Large bowel fistula (Surgical)" +"1.3.6.38.6";"Non-accidental injury to large bowel, rectum or anus (Surgical)" +"1.3.6.39.1";"Large bowel tumour (Surgical)" +"1.3.6.41.1";"Large bowel artery stenosis or occlusion (Surgical)" +"1.3.6.41.2";"Large bowel artery embolization (Surgical)" +"1.3.6.41.3";"Large bowel infarction due to primary vascular disease (Surgical)" +"1.3.6.41.4";"Large bowel infarction due to herniation, volvulus or adhesions (Surgical)" +"1.3.6.41.5";"Ischaemic colitis (Surgical)" +"1.3.7.8.1";"Biliary atresia (Surgical)" +"1.3.7.8.2";"Cholelithiasis (Surgical)" +"1.3.7.8.3";"Cystic liver disease (Surgical)" +"1.3.7.15.1";"Variceal bleeding (Surgical)" +"1.3.7.15.2";"Spontaneous subcapsular haematoma (Surgical)" +"1.3.7.15.3";"Bleeding from the biliary tree (Surgical)" +"1.3.7.27.1";"Acute cholecystitis, gangrenous gall bladder, or empyema of gall bladder (Surgical)" +"1.3.7.27.2";"Infective hepatitis (Surgical)" +"1.3.7.27.3";"Infective cholangitis (Surgical)" +"1.3.7.27.4";"Hepatic abscess (Surgical)" +"1.3.7.27.5";"Hydatid disease (Surgical)" +"1.3.7.27.6";"Leptospirosis (Surgical)" +"1.3.7.28.1";"Acute cholecystitis, gangrenous gall bladder, or empyema of gall bladder (Surgical)" +"1.3.7.28.2";"Alcoholic cirrhosis (Surgical)" +"1.3.7.28.3";"Acute alcoholic hepatitis (Surgical)" +"1.3.7.28.4";"Drug induced hepatitis or hepatic necrosis (Surgical)" +"1.3.7.28.5";"Chronic cirrhosis cause not defined (Surgical)" +"1.3.7.28.6";"Sclerosing cholangitis (Surgical)" +"1.3.7.28.7";"Reye's or Reye-like syndrome (Surgical)" +"1.3.7.30.1";"Biliary tree obstruction (Surgical)" +"1.3.7.30.2";"Biliary atresia (Surgical)" +"1.3.7.30.3";"Sclerosing cholangitis (Surgical)" +"1.3.7.30.4";"Cholelithiasis (Surgical)" +"1.3.7.38.1";"Traumatic rupture or laceration of liver (Surgical)" +"1.3.7.38.2";"Perforated biliary tree or gall bladder (Surgical)" +"1.3.7.38.3";"Instrumental damage to liver or biliary tree (Surgical)" +"1.3.7.38.4";"Hepatic artery aneurysm (Surgical)" +"1.3.7.38.5";"Biliary fistula (Surgical)" +"1.3.7.38.6";"Leaking biliary anastamosis (Surgical)" +"1.3.7.37.1";"Liver transplant (Surgical)" +"1.3.7.37.2";"Liver transplant rejection (Surgical)" +"1.3.7.39.1";"Primary hepatic tumour (Surgical)" +"1.3.7.39.2";"Secondary hepatic tumour (Surgical)" +"1.3.7.39.3";"Biliary tree tumour (Surgical)" +"1.3.7.39.4";"Carcinoid tumour (Surgical)" +"1.3.7.41.1";"Gangrenous gall bladder (Surgical)" +"1.3.7.41.2";"Portal vein occlusion or thrombosis (Surgical)" +"1.3.7.41.3";"Hepatic vein occlusion or thrombosis (Surgical)" +"1.3.7.41.4";"Hepatic artery aneurysm (Surgical)" +"1.3.7.41.5";"Hepatic infarction (Surgical)" +"1.3.7.41.6";"Portal hypertension (Surgical)" +"1.3.8.38.1";"Traumatic rupture or laceration of spleen (Surgical)" +"1.3.8.38.2";"Spontaneous splenic rupture (Surgical)" +"1.3.8.39.1";"Hypersplenism (Surgical)" +"1.3.8.39.2";"Lymphoma (Surgical)" +"1.3.9.15.1";"Pancreatic bleeding (Surgical)" +"1.3.9.27.1";"Pancreatic abscess or infected pseudocyst (Surgical)" +"1.3.9.27.2";"Infective pancreatitis (Surgical)" +"1.3.9.28.1";"Acute pancreatitis (Surgical)" +"1.3.9.28.2";"Chronic pancreatitis (Surgical)" +"1.3.9.38.1";"Traumatic pancreatitis or pancreatic damage (Surgical)" +"1.3.9.38.2";"Instrumental damage to pancreatic duct (Surgical)" +"1.3.9.38.3";"Pancreatic fistula (Surgical)" +"1.3.9.39.1";"Pancreatic or pancreato-duodenal tumour (Surgical)" +"1.3.10.8.1";"Exomphalos (Surgical)" +"1.3.10.8.2";"Gastroschisis or exomphalos (Surgical)" +"1.3.10.8.3";"Diaphragmatic hernia (Surgical)" +"1.3.10.8.4";"Inguinal or femoral hernia (Surgical)" +"1.3.10.8.5";"Hernia not defined (Surgical)" +"1.3.10.15.1";"Retroperitoneal haemorrhage (Surgical)" +"1.3.10.27.1";"Primary peritonitis (Surgical)" +"1.3.10.27.2";"Intra-peritoneal abscess (not pelvic) (Surgical)" +"1.3.10.27.3";"CAPD related peritonitis (Surgical)" +"1.3.10.27.4";"Fournier's gangrene of abdominal wall (Surgical)" +"1.3.10.27.5";"Necrotising fasciitis (Surgical)" +"1.3.10.27.6";"Pelvic infection or abscess (Surgical)" +"1.3.10.27.7";"Retroperitoneal abscess or infection (Surgical)" +"1.3.10.27.8";"Tuberculous peritonitis (Surgical)" +"1.3.10.38.1";"Trauma to abdominal wall (Surgical)" +"1.3.10.38.2";"Abdominal wound dehiscence (Surgical)" +"1.3.10.38.3";"Ruptured diaphragm (Surgical)" +"1.3.10.39.1";"Primary retroperitoneal malignancy (Surgical)" +"1.3.10.39.2";"Secondary retroperitoneal malignancy (Surgical)" +"1.4.1.15.2";"Epistaxis (Surgical)" +"1.4.1.27.1";"Mandible, facial bones, dental or salivary infection (Surgical)" +"1.4.1.27.2";"Tonsil or pharyngeal infection (Surgical)" +"1.4.1.27.3";"Orbital cellulitis (Surgical)" +"1.4.1.38.1";"Mouth, mandible, pharynx, or facial bones trauma (Surgical)" +"1.4.1.38.2";"Ocular trauma (Surgical)" +"1.4.1.39.1";"Head or neck tumour not intra-oral or intra-cranial (Surgical)" +"1.4.1.39.2";"Intra-oral or pharyngeal tumour (Surgical)" +"1.4.1.39.3";"Ocular tumour (Surgical)" +"1.4.1.41.1";"Carotid or vertebral artery stenosis or occlusion (Surgical)" +"1.4.1.41.2";"Carotid or vertebral artery aneurysm or dissection (Surgical)" +"1.4.1.41.3";"Traumatic rupture or puncture of carotid or vertebral artery (Surgical)" +"1.4.1.41.4";"Instrumental damage to carotid or vertebral artery (Surgical)" +"1.4.1.41.5";"Extracranial or neck arterio-venous malformation or haemangioma (Surgical)" +"1.4.1.41.6";"Vasculitis of cerebral circulation (Surgical)" +"1.4.1.41.7";"Vascular lesion of eyes (Surgical)" +"1.4.2.7.1";"Toxic or drug-induced coma or encephalopathy (Surgical)" +"1.4.2.7.2";"Metabolic coma or encephalopathy (Surgical)" +"1.4.2.7.3";"Anoxic or ischaemic coma or encephalopathy (Surgical)" +"1.4.2.7.4";"Degenerative coma or encephalopathy (Surgical)" +"1.4.2.7.5";"Post-anaesthetic encephalopathy aetiology uncertain (Surgical)" +"1.4.2.7.6";"Brainstem death (Surgical)" +"1.4.2.7.7";"Primary brain injury (Surgical)" +"1.4.2.7.8";"Reye's or Reye-like syndrome (Surgical)" +"1.4.2.8.1";"Congenital hydrocephalus (Surgical)" +"1.4.2.8.2";"Secondary hydrocephalus (Surgical)" +"1.4.2.8.3";"Arnold-Chiari malformation (Surgical)" +"1.4.2.8.4";"Cerebral palsy (Surgical)" +"1.4.2.8.5";"Congenital abnormality of skull (Surgical)" +"1.4.2.8.6";"Parkinson's Disease (Surgical)" +"1.4.2.8.7";"Multiple sclerosis (Surgical)" +"1.4.2.8.8";"Central hypoventilation (Ondine's curse) (Surgical)" +"1.4.2.15.1";"Intracerebral bleeding (Surgical)" +"1.4.2.15.2";"Subarachnoid bleeding (Surgical)" +"1.4.2.15.3";"Subdural haematoma (Surgical)" +"1.4.2.15.4";"Extradural haematoma (Surgical)" +"1.4.2.27.1";"Meningitis (Surgical)" +"1.4.2.27.2";"Encephalitis (Surgical)" +"1.4.2.27.3";"Intracranial abscess (Surgical)" +"1.4.2.27.4";"Orbital cellulitis (Surgical)" +"1.4.2.27.5";"Infected CSF shunt (Surgical)" +"1.4.2.33.1";"Status epilepticus or uncontrolled seizures (Surgical)" +"1.4.2.33.2";"Eclampsia (Surgical)" +"1.4.2.33.3";"Alcohol withdrawal seizures (Surgical)" +"1.4.2.38.1";"Primary brain injury (Surgical)" +"1.4.2.38.2";"Subdural haematoma (Surgical)" +"1.4.2.38.3";"Extradural haematoma (Surgical)" +"1.4.2.38.4";"Non-accidental injury to brain (Surgical)" +"1.4.2.39.1";"Primary brain or meningeal tumour (Surgical)" +"1.4.2.39.2";"Secondary intracranial tumour (Surgical)" +"1.4.2.41.1";"Berry or other intracranial aneurysm (Surgical)" +"1.4.2.41.2";"Intracranial arterio-venous malformation (Surgical)" +"1.4.2.41.3";"Thrombo-occlusive disease of brain (Surgical)" +"1.4.2.41.4";"Arterial air embolus (Surgical)" +"1.4.2.41.5";"Vasculitis of cerebral circulation (Surgical)" +"1.4.2.41.6";"Embolic brain lesions causing respiratory failure (Surgical)" +"1.4.3.8.1";"Spinal cord or nerve root compression by intervertebral disc (Surgical)" +"1.4.3.8.2";"Spinal stenosis (Surgical)" +"1.4.3.8.3";"Spina bifida or meningomyelcoele (Surgical)" +"1.4.3.8.4";"Multiple sclerosis (Surgical)" +"1.4.3.9.1";"Motor neurone disease (Surgical)" +"1.4.3.9.2";"Transverse myelitis (Surgical)" +"1.4.3.12.1";"Epidural injection or infusion (Surgical)" +"1.4.3.12.2";"Spinal injection or infusion (Surgical)" +"1.4.3.27.1";"Epidural or subdural abscess (Surgical)" +"1.4.3.27.2";"Poliomyelitis (Surgical)" +"1.4.3.27.3";"Tetanus (Surgical)" +"1.4.3.38.1";"Cervical cord injury (Surgical)" +"1.4.3.38.2";"Thoracic cord injury (Surgical)" +"1.4.3.38.3";"Lumbar cord or cauda equina injury (Surgical)" +"1.4.3.38.4";"Chronic spinal cord injury (Surgical)" +"1.4.3.39.1";"Primary tumour of cord or meninges (Surgical)" +"1.4.3.39.2";"Extrinsic compression of cord by non-neural tumour (Surgical)" +"1.4.4.9.1";"Motor neurone disease (Surgical)" +"1.4.4.27.1";"Infective polyneuropathy (Surgical)" +"1.4.4.27.2";"Leprosy (Surgical)" +"1.4.4.28.1";"Guillain-Barre syndrome (Surgical)" +"1.4.4.28.2";"Toxic polyneuropathy (Surgical)" +"1.4.4.28.3";"Autoimmune polyneuropathy (Surgical)" +"1.4.4.28.4";"Porphyria (Surgical)" +"1.4.4.38.1";"Brachial plexus injury (Surgical)" +"1.4.4.38.2";"Lumbar plexus injury (Surgical)" +"1.4.5.8.1";"Pseudocholinesterase deficiency (Surgical)" +"1.4.5.8.2";"Failure of reversal of non-depolarising neuromuscular blockers (Surgical)" +"1.4.5.8.3";"Myasthenia gravis (Surgical)" +"1.5.3.9.1";"Traumatic pancreatitis or pancreatic damage (Surgical)" +"1.5.3.9.2";"Instrumental damage to pancreatic duct (Surgical)" +"1.5.3.10.1";"Trauma to abdominal wall (Surgical)" +"1.5.3.10.3";"Ruptured diaphragm (Surgical)" +"1.5.4.1.1";"Mouth, mandible, pharynx, or facial bones trauma (Surgical)" +"1.5.4.1.2";"Ocular trauma (Surgical)" +"1.5.4.2.1";"Primary brain injury (Surgical)" +"1.5.4.2.2";"Subdural haematoma (Surgical)" +"1.5.4.2.3";"Extradural haematoma (Surgical)" +"1.5.4.2.4";"Non-accidental injury to brain (Surgical)" +"1.5.4.3.1";"Cervical cord injury (Surgical)" +"1.5.4.3.2";"Thoracic cord injury (Surgical)" +"1.5.4.3.3";"Lumbar cord or cauda equina injury (Surgical)" +"1.5.4.3.4";"Chronic spinal cord injury (Surgical)" +"1.5.4.4.1";"Brachial plexus injury (Surgical)" +"1.5.4.4.2";"Lumbar plexus injury (Surgical)" +"1.5.5.1.1";"Traumatic renal rupture (Surgical)" +"1.5.5.1.2";"Traumatic disruption of ureters (Surgical)" +"1.5.5.1.3";"Traumatic damage to renal vessels (Surgical)" +"1.5.5.1.4";"Instrumental damage to kidney, ureter or vessels (Surgical)" +"1.5.5.2.1";"Traumatic perforation or rupture of bladder (Surgical)" +"1.5.5.2.2";"Traumatic perforation or rupture of urethra (Surgical)" +"1.5.5.2.3";"Instrumental damage to bladder or urethra (Surgical)" +"1.5.5.3.1";"Uterine rupture or perforation (Surgical)" +"1.5.5.3.2";"Instrumental damage to uterus, ovaries or fallopian tubes (Surgical)" +"1.5.5.3.3";"Non-accidental injury to female genitalia (Surgical)" +"1.5.5.4.1";"Uterine rupture or perforation (Surgical)" +"1.5.5.4.2";"Instrumental damage to uterus, ovaries or fallopian tubes (Surgical)" +"1.5.5.5.1";"Traumatic damage to testes, prostrate or penis (Surgical)" +"1.5.5.5.2";"Instrumental damage to testes, prostrate or penis (Surgical)" +"1.5.5.5.3";"Non-accidental injury to male genitalia (Surgical)" +"1.5.6.1.1";"Cervical spine fracture or ligamentous injury (Surgical)" +"1.5.6.1.2";"Thoracic spine fracture or ligamentous injury (Surgical)" +"1.5.6.1.3";"Lumbar spine fracture or ligamentous injury (Surgical)" +"1.5.6.1.4";"Haemorrhage or haematoma from vertebral column (Surgical)" +"1.5.6.2.1";"Pelvic fracture (Surgical)" +"1.5.6.2.2";"Single long bone fracture (Surgical)" +"1.5.6.2.3";"Multiple long bone fractures (Surgical)" +"1.5.6.2.4";"Non-accidental injury to pelvis, long bones or joints (Surgical)" +"1.5.6.2.5";"Haemorrhage or haematoma from pelvis, long bones or joints (Surgical)" +"1.5.6.3.1";"Crush injury (Surgical)" +"1.5.6.3.2";"Compartment syndrome (Surgical)" +"1.5.6.3.3";"Non-accidental injury to muscles or connective tissue (Surgical)" +"1.5.6.3.4";"Haemorrhage or haematoma from muscles or connective tissue (Surgical)" +"1.5.6.3.5";"Non-accidental injury to muscles or connective tissue (Surgical)" +"1.5.6.3.6";"Amputation of limb (Surgical)" +"1.5.7.1.1";"Electrical burns (Surgical)" +"1.5.7.1.2";"Burns caused by dry heat (Surgical)" +"1.5.7.1.3";"Degloving injury (Surgical)" +"1.5.7.1.4";"Non-accidental injury to skin (Surgical)" +"1.6.8.1.1";"Accidental poisoning with sedatives or hypnotics (Surgical)" +"1.6.8.1.2";"Accidental poisoning with narcotics (Surgical)" +"1.6.8.1.3";"Accidental poisoning with tri- and tetracyclic antidepressants (Surgical)" +"1.6.8.1.4";"Accidental poisoning with non-cyclic antidepressants (Surgical)" +"1.6.8.1.5";"Accidental poisoning with cardiovascular drugs (Surgical)" +"1.6.8.1.6";"Accidental poisoning with aspirin (Surgical)" +"1.6.8.1.7";"Accidental poisoning with paracetamol (Surgical)" +"1.6.8.1.8";"Accidental poisoning with industrial or agricultural chemicals (Surgical)" +"1.6.8.1.9";"Accidental poisoning with insulin (Surgical)" +"1.6.8.1.10";"Accidental poisoning with alcohol (Surgical)" +"1.6.8.1.11";"Accidental poisoning with carbon monoxide (Surgical)" +"1.6.8.1.12";"Accidental poisoning with gases (not carbon monoxide) (Surgical)" +"1.6.8.1.13";"Accidental poisoning with agent not defined (Surgical)" +"1.6.8.34.1";"Self poisoning with sedatives or hypnotics (Surgical)" +"1.6.8.34.2";"Self poisoning with narcotics (Surgical)" +"1.6.8.34.3";"Self poisoning with tri- and tetracyclic antidepressants (Surgical)" +"1.6.8.34.4";"Self poisoning with non-cyclic antidepressants (Surgical)" +"1.6.8.34.5";"Self poisoning with cardiovascular drugs (Surgical)" +"1.6.8.34.6";"Self poisoning with aspirin (Surgical)" +"1.6.8.34.7";"Self poisoning with paracetamol (Surgical)" +"1.6.8.34.8";"Self poisoning with industrial or agricultural chemicals (Surgical)" +"1.6.8.34.9";"Self poisoning with insulin (Surgical)" +"1.6.8.34.10";"Self poisoning with alcohol (Surgical)" +"1.6.8.34.11";"Self poisoning with carbon monoxide (Surgical)" +"1.6.8.34.12";"Self poisoning with gases (not carbon monoxide) (Surgical)" +"1.6.8.34.13";"Self poisoning with agent not defined (Surgical)" +"1.7.1.8.1";"Polycystic kidneys (Surgical)" +"1.7.1.8.2";"Renal agenesis or hypoplasia (Surgical)" +"1.7.1.8.3";"Nephrolithiasis (Surgical)" +"1.7.1.13.1";"Acute renal failure due to infection (Surgical)" +"1.7.1.13.2";"Acute renal failure due to haemodynamic causes (Surgical)" +"1.7.1.13.3";"Acute renal failure due to toxic or drug causes (Surgical)" +"1.7.1.13.4";"Acute renal failure other causes (Surgical)" +"1.7.1.13.5";"Chronic renal failure (Surgical)" +"1.7.1.15.1";"Retroperitoneal haemorrhage (Surgical)" +"1.7.1.15.2";"Traumatic damage to renal vessels (Surgical)" +"1.7.1.15.3";"Renal artery aneurysm or dissection (Surgical)" +"1.7.1.27.1";"Pyelonephritis or pyonephrosis (Surgical)" +"1.7.1.27.2";"Perinephric abscess (Surgical)" +"1.7.1.27.3";"Leptospirosis (Surgical)" +"1.7.1.27.4";"CAPD related peritonitis (Surgical)" +"1.7.1.28.1";"Glomerulonephritis (Surgical)" +"1.7.1.28.2";"Nephrotic syndrome (Surgical)" +"1.7.1.28.3";"Renal vasculitis (Surgical)" +"1.7.1.30.1";"Ureteric or renal obstruction (Surgical)" +"1.7.1.37.1";"Allograft (Surgical)" +"1.7.1.37.2";"Autotransplant of kidney (Surgical)" +"1.7.1.37.3";"Rejection of kidney transplant (Surgical)" +"1.7.1.38.1";"Traumatic renal rupture (Surgical)" +"1.7.1.38.2";"Traumatic disruption of ureters (Surgical)" +"1.7.1.38.3";"Traumatic damage to renal vessels (Surgical)" +"1.7.1.38.4";"Instrumental damage to kidney, ureter or vessels (Surgical)" +"1.7.1.39.1";"Renal or ureteric tumour (Surgical)" +"1.7.1.41.1";"Renal artery stenosis or occlusion (Surgical)" +"1.7.1.41.2";"Renal artery aneurysm or dissection (Surgical)" +"1.7.1.41.3";"Renal artery embolus (Surgical)" +"1.7.1.41.4";"Renal infarction (Surgical)" +"1.7.1.41.5";"Retroperitoneal haemorrhage (Surgical)" +"1.7.1.41.6";"Traumatic damage to renal vessels (Surgical)" +"1.7.1.41.7";"Renal vasculitis (Surgical)" +"1.7.2.8.1";"Abnormality of bladder or urinary diversion procedure (Surgical)" +"1.7.2.8.2";"Abnormality of urethra (Surgical)" +"1.7.2.15.1";"Haemorrhage from urethra (Surgical)" +"1.7.2.15.2";"Haemorrhage from bladder (Surgical)" +"1.7.2.27.1";"Cystitis, pyocystis or urethritis (Surgical)" +"1.7.2.30.1";"Bladder outlet obstruction (Surgical)" +"1.7.2.38.1";"Traumatic perforation or rupture of bladder (Surgical)" +"1.7.2.38.2";"Traumatic perforation or rupture of urethra (Surgical)" +"1.7.2.38.3";"Instrumental damage to bladder or urethra (Surgical)" +"1.7.2.39.1";"Bladder tumour (Surgical)" +"1.7.2.39.2";"Urethral tumour (Surgical)" +"1.7.3.15.1";"Haemorrhage from uterus (Surgical)" +"1.7.3.15.2";"Haemorrhage from ovary or fallopian tubes (Surgical)" +"1.7.3.27.1";"Uterine cavity infection (Surgical)" +"1.7.3.27.2";"Pelvic infection or abscess (Surgical)" +"1.7.3.27.3";"Toxic shock syndrome (Surgical)" +"1.7.3.27.4";"Tubo-ovarian abscess (Surgical)" +"1.7.3.32.1";"Ovarian hyperstimulation (Surgical)" +"1.7.3.38.1";"Uterine rupture or perforation (Surgical)" +"1.7.3.38.2";"Instrumental damage to uterus, ovaries or fallopian tubes (Surgical)" +"1.7.3.38.3";"Non-accidental injury to female genitalia (Surgical)" +"1.7.3.39.1";"Ovarian tumour (Surgical)" +"1.7.3.39.2";"Uterine tumour (Surgical)" +"1.7.3.39.3";"Vulval or vaginal tumour (Surgical)" +"1.7.3.39.4";"Ovarian cyst (Surgical)" +"1.7.4.15.1";"Antepartum haemorrhage (Surgical)" +"1.7.4.15.2";"Peri- and postpartum haemorrhage (Surgical)" +"1.7.4.15.3";"Ectopic pregnancy (Surgical)" +"1.7.4.27.1";"Amnionitis (Surgical)" +"1.7.4.27.2";"Pelvic infection or abscess (Surgical)" +"1.7.4.27.3";"Infected retained products of conception (Surgical)" +"1.7.4.27.4";"Septic abortion (Surgical)" +"1.7.4.28.1";"Intrauterine death (Surgical)" +"1.7.4.32.1";"Ovarian hyperstimulation (Surgical)" +"1.7.4.38.1";"Uterine rupture or perforation (Surgical)" +"1.7.4.38.2";"Instrumental damage to uterus, ovaries or fallopian tubes (Surgical)" +"1.7.4.39.1";"Molar pregnancy (Surgical)" +"1.7.4.41.1";"Amniotic fluid embolus (Surgical)" +"1.7.4.41.2";"HELLP syndrome (Surgical)" +"1.7.4.41.3";"Pre-eclampsia (Surgical)" +"1.7.5.15.1";"Bleeding from prostate gland (Surgical)" +"1.7.5.27.1";"Prostatitis (Surgical)" +"1.7.5.27.2";"Testicular, prostatatic or penile abscess (Surgical)" +"1.7.5.27.3";"Fournier's gangrene of perineal tissues (Surgical)" +"1.7.5.38.1";"Traumatic damage to testes, prostrate or penis (Surgical)" +"1.7.5.38.2";"Instrumental damage to testes, prostrate or penis (Surgical)" +"1.7.5.38.3";"Non-accidental injury to male genitalia (Surgical)" +"1.7.5.39.1";"Testicular or penile tumour (Surgical)" +"1.7.5.39.2";"Benign prostatic hyperplasia (Surgical)" +"1.7.5.39.3";"Malignant prostatic tumour (Surgical)" +"1.8.1.8.1";"Thyroid cysts (Surgical)" +"1.8.1.15.1";"Haemorrhage into or from thyroid (Surgical)" +"1.8.1.32.1";"Hyperthyroidism (Surgical)" +"1.8.1.32.2";"Thyroid crisis (Surgical)" +"1.8.1.39.1";"Thyroid tumour (Surgical)" +"1.8.1.40.1";"Hypothyroidism or myxoedema (Surgical)" +"1.8.2.15.1";"Pituitary haemorrhage (Surgical)" +"1.8.2.32.1";"Cushing's syndrome (Surgical)" +"1.8.2.32.2";"Acromegaly (Surgical)" +"1.8.2.32.3";"Prolactinoma (Surgical)" +"1.8.2.39.1";"Cushing's syndrome (Surgical)" +"1.8.2.39.2";"Acromegaly (Surgical)" +"1.8.2.39.3";"Prolactinoma (Surgical)" +"1.8.2.39.4";"Pituitary tumour not defined (Surgical)" +"1.8.2.40.1";"Diabetes insipidus (central) (Surgical)" +"1.8.2.40.2";"Hypopituitarism (Surgical)" +"1.8.3.8.1";"Inborn errors of adrenal function (Surgical)" +"1.8.3.15.1";"Adrenal haemorrhage (Surgical)" +"1.8.3.32.1";"Cushing's syndrome (Surgical)" +"1.8.3.39.1";"Phaeochromocytoma (Surgical)" +"1.8.3.39.2";"Adrenocortical tumours (Surgical)" +"1.8.3.40.1";"Addison's disease (Surgical)" +"1.8.4.37.1";"Islet cell transplant (Surgical)" +"1.8.4.39.1";"Insulinoma (Surgical)" +"1.8.4.10.1";"Diabetic ketoacidosis (Surgical)" +"1.8.4.10.2";"Hyperosmolar coma (Surgical)" +"1.8.4.10.3";"Hypoglycaemia due to insulin therapy (Surgical)" +"1.8.4.10.4";"Insulinoma (Surgical)" +"1.8.4.10.5";"Diabetes mellitus (Surgical)" +"1.8.5.8.1";"Congenital hypoparathyroidism (Surgical)" +"1.8.5.8.2";"Auto-immune hypoparathyroidism (Surgical)" +"1.8.5.8.3";"Post-surgical hypoparathyroidism (Surgical)" +"1.8.5.32.1";"Hypercalcaemia (Surgical)" +"1.8.5.39.1";"Parathyroid tumour (Surgical)" +"1.8.5.40.1";"Congenital hypoparathyroidism (Surgical)" +"1.8.5.40.2";"Auto-immune hypoparathyroidism (Surgical)" +"1.8.5.40.3";"Post-surgical hypoparathyroidism (Surgical)" +"1.8.6.32.1";"Ovarian hyperstimulation (Surgical)" +"1.8.6.39.1";"Ovarian tumour (Surgical)" +"1.8.6.39.2";"Ovarian cyst (Surgical)" +"1.8.7.20.1";"Malignant hyperpyrexia (Surgical)" +"1.8.7.20.2";"Drug induced hyperpyrexia or neuroleptic malignant syndrome (Surgical)" +"1.8.7.20.3";"Heat-stroke or heat exhaustion (Surgical)" +"1.8.7.26.1";"Accidental hypothermia (Surgical)" +"1.8.7.26.2";"Induced or post-operative hypothermia (Surgical)" +"1.8.8.42.1";"Paraneoplastic hypercalcaemia (Surgical)" +"1.8.8.42.2";"Vitamin D intoxication (Surgical)" +"1.8.8.42.3";"Milk-alkali syndrome (Surgical)" +"1.8.8.21.1";"Hypoparathyroidism (Surgical)" +"1.8.8.21.2";"Chelating agent toxicity (Surgical)" +"1.8.8.17.1";"Iatrogenic potassium intoxication (Surgical)" +"1.8.8.17.2";"Renal failure (Surgical)" +"1.8.8.17.3";"Familial periodic paralysis (Surgical)" +"1.8.8.23.1";"Paraneoplastic hypokalaemia (Surgical)" +"1.8.8.23.2";"Drug induced hypokalaemia (Surgical)" +"1.8.8.23.3";"Renal hypokalaemia (Surgical)" +"1.8.8.18.1";"Diabetes insipidus (central or nephrogenic) (Surgical)" +"1.8.8.18.2";"Water depletion (Surgical)" +"1.8.8.18.3";"Excess sodium intake (Surgical)" +"1.8.8.24.1";"Water intoxication (Surgical)" +"1.8.8.24.2";"Iatrogenic hyponatraemia (Surgical)" +"1.8.8.24.3";"Paraneoplastic hyponatraemia (Surgical)" +"1.8.8.16.1";"Diabetic ketoacidosis (Surgical)" +"1.8.8.16.2";"Hyperosmolar states (Surgical)" +"1.8.8.22.1";"Hypoglycaemia due to insulin therapy (Surgical)" +"1.8.8.22.2";"Insulinoma (Surgical)" +"1.8.8.22.3";"Hypoglycaemia not due to excess insulin (Surgical)" +"1.8.8.2.1";"Hyperchloraemic acidosis (Surgical)" +"1.8.8.2.2";"Lactic acidosis (Surgical)" +"1.8.8.2.3";"Diabetic ketoacidosis (Surgical)" +"1.8.8.4.1";"Gastric fluid loss (Surgical)" +"1.8.8.4.2";"Alkali ingestion (Surgical)" +"1.8.8.43.1";"Water intoxication (Surgical)" +"1.8.8.43.2";"Excess parenteral fluids (Surgical)" +"1.8.8.34.1";"Self poisoning with sedatives or hypnotics (Surgical)" +"1.8.8.34.2";"Self poisoning with narcotics (Surgical)" +"1.8.8.34.3";"Self poisoning with tri- and tetracyclic antidepressants (Surgical)" +"1.8.8.34.4";"Self poisoning with non-cyclic antidepressants (Surgical)" +"1.8.8.34.5";"Self poisoning with cardiovascular drugs (Surgical)" +"1.8.8.34.6";"Self poisoning with aspirin (Surgical)" +"1.8.8.34.7";"Self poisoning with paracetamol (Surgical)" +"1.8.8.34.8";"Self poisoning with industrial or agricultural chemicals (Surgical)" +"1.8.8.34.9";"Self poisoning with insulin (Surgical)" +"1.8.8.34.10";"Self poisoning with alcohol (Surgical)" +"1.8.8.34.11";"Self poisoning with carbon monoxide (Surgical)" +"1.8.8.34.12";"Self poisoning with gases (not carbon monoxide) (Surgical)" +"1.8.8.34.13";"Self poisoning with agent not defined (Surgical)" +"1.8.8.1.1";"Accidental poisoning with sedatives or hypnotics (Surgical)" +"1.8.8.1.2";"Accidental poisoning with narcotics (Surgical)" +"1.8.8.1.3";"Accidental poisoning with tri- and tetracyclic antidepressants (Surgical)" +"1.8.8.1.4";"Accidental poisoning with non-cyclic antidepressants (Surgical)" +"1.8.8.1.5";"Accidental poisoning with cardiovascular drugs (Surgical)" +"1.8.8.1.6";"Accidental poisoning with aspirin (Surgical)" +"1.8.8.1.7";"Accidental poisoning with paracetamol (Surgical)" +"1.8.8.1.8";"Accidental poisoning with industrial or agricultural chemicals (Surgical)" +"1.8.8.1.9";"Accidental poisoning with insulin (Surgical)" +"1.8.8.1.10";"Accidental poisoning with alcohol (Surgical)" +"1.8.8.1.11";"Accidental poisoning with carbon monoxide (Surgical)" +"1.8.8.1.12";"Accidental poisoning with gases (not carbon monoxide) (Surgical)" +"1.8.8.1.13";"Accidental poisoning with agent not defined (Surgical)" +"1.8.8.44.1";"Snake bite (Surgical)" +"1.8.8.44.2";"Envenomation other than snake (Surgical)" +"1.8.8.3.1";"Alcohol overdose (Surgical)" +"1.8.8.3.2";"Alcohol withdrawal seizures (Surgical)" +"1.8.8.3.3";"Delerium tremens (Surgical)" +"1.8.8.3.4";"Acute alcoholic hepatitis (Surgical)" +"1.8.10.45.1";"Inborn errors of metabolism (Surgical)" +"1.8.9.29.1";"Morbid obesity (Surgical)" +"1.8.9.36.1";"Eating disorder (Surgical)" +"1.8.11.53.1";"Trisomy 18 (Edward's syndrome) (Surgical)" +"1.8.11.53.2";"Trisomy 21 (Down's syndrome) (Surgical)" +"1.8.11.53.3";"Trisomy 13 (Patau or trisomy D) (Surgical)" +"1.8.11.53.4";"Other trisomy (Surgical)" +"1.8.11.54.1";"Chromosomal deletion syndromes (partial monosomy) (Surgical)" +"1.8.11.46.1";"Turner's syndrome (XO) (Surgical)" +"1.8.11.46.2";"Klinefelter's syndrome (XXY) (Surgical)" +"1.8.11.46.3";"Other sex chromosome disorders (Surgical)" +"1.8.11.47.1";"Contiguous gene syndromes (Surgical)" +"1.9.1.8.1";"Anaemias (Surgical)" +"1.9.1.8.2";"Polycythaemia (Surgical)" +"1.9.1.8.3";"Porphyria (Surgical)" +"1.9.1.8.4";"Sickle cell disease (Surgical)" +"1.9.1.8.5";"Spherocytosis or stomatocytosis (Surgical)" +"1.9.1.8.6";"Thalassaemia (Surgical)" +"1.9.1.8.7";"Haemophilia or von Willebrand's disease (Surgical)" +"1.9.1.14.1";"Autoimmume haemolysis (Surgical)" +"1.9.1.14.2";"Drug induced haemolysis (Surgical)" +"1.9.1.14.3";"Disseminated intravascular coagulation (Surgical)" +"1.9.1.14.4";"Idiopathic thrombocytopaenic purpura (Surgical)" +"1.9.1.14.5";"Drug induced thrombocytopaenia (Surgical)" +"1.9.1.14.6";"Haemolytic or uraemic syndrome (Surgical)" +"1.9.1.14.7";"Henoch-Schonlein purpura (Surgical)" +"1.9.1.14.8";"Transfusion reaction (Surgical)" +"1.9.1.14.9";"HELLP syndrome (Surgical)" +"1.9.1.14.10";"Thrombotic thrombocytopaenic purpura (Surgical)" +"1.9.1.27.1";"Leishmaniasis (Surgical)" +"1.9.1.27.2";"Malaria (Surgical)" +"1.9.1.27.3";"HIV (Surgical)" +"1.9.1.27.4";"Septicaemia (Surgical)" +"1.9.1.27.5";"Leptospirosis (Surgical)" +"1.9.1.27.6";"Mononucleosis (Surgical)" +"1.9.2.25.1";"Aplastic anaemia (Surgical)" +"1.9.2.25.2";"Drug induced hypoplasia (Surgical)" +"1.9.2.25.3";"Myelodysplasia (Surgical)" +"1.9.2.37.1";"Bone marrow transplant (Surgical)" +"1.9.2.37.2";"Graft vs Host disease (Surgical)" +"1.9.2.39.1";"Acute lymphoblastic leukaemia (Surgical)" +"1.9.2.39.2";"Acute myeloblastic leukaemia (Surgical)" +"1.9.2.39.3";"Chronic lymphocytic leukaemia (Surgical)" +"1.9.2.39.4";"Chronic myelogenous leukaemia (Surgical)" +"1.9.2.39.5";"Hodgkin's lymphoma (Surgical)" +"1.9.2.39.6";"Non-Hodgkin's lymphoma (Surgical)" +"1.9.2.39.7";"Myeloma (Surgical)" +"1.10.1.8.1";"Rheumatoid or osteoarthritis (Surgical)" +"1.10.1.8.2";"Kyphoscoliosis (Surgical)" +"1.10.1.8.3";"Spinal ankylosis (Surgical)" +"1.10.1.8.4";"Spina bifida or meningomyelocele (Surgical)" +"1.10.1.15.1";"Haemorrhage from or haematoma of vertebral column (Surgical)" +"1.10.1.27.1";"Discitis (Surgical)" +"1.10.1.27.2";"Osteomyelitis or vertebral abscess (Surgical)" +"1.10.1.38.1";"Cervical spine fracture or ligamentous injury (Surgical)" +"1.10.1.38.2";"Thoracic spine fracture or ligamentous injury (Surgical)" +"1.10.1.38.3";"Lumbar spine fracture or ligamentous injury (Surgical)" +"1.10.1.39.1";"Primary tumour in vertebral column (Surgical)" +"1.10.1.39.2";"Secondary tumour in vertebral column (Surgical)" +"1.10.2.8.1";"Rheumatoid or osteoarthritis (Surgical)" +"1.10.2.15.1";"Haemorrhage from or haematoma of pelvis, long bones or joints (Surgical)" +"1.10.2.27.1";"Osteomyelitis (Surgical)" +"1.10.2.27.2";"Infective arthritis (Surgical)" +"1.10.2.27.3";"Pelvic infection or abscess (Surgical)" +"1.10.2.38.1";"Pelvic fracture (Surgical)" +"1.10.2.38.2";"Single long bone fracture (Surgical)" +"1.10.2.38.3";"Multiple long bone fractures (Surgical)" +"1.10.2.38.4";"Non-accidental injury to pelvis, long bones or joints (Surgical)" +"1.10.2.39.1";"Primary tumour of bone (Surgical)" +"1.10.2.39.2";"Secondary tumour of bone (Surgical)" +"1.10.3.8.1";"Congenital muscular dystrophy (Surgical)" +"1.10.3.8.2";"Pseudocholinesterase deficiency (Surgical)" +"1.10.3.8.3";"Myasthenia gravis (Surgical)" +"1.10.3.9.1";"Degenerative myopathy (Surgical)" +"1.10.3.15.1";"Haemorrhage from or haematoma of muscle or connective tissue (Surgical)" +"1.10.3.15.2";"Compartment syndrome (Surgical)" +"1.10.3.27.1";"Myositis (Surgical)" +"1.10.3.27.2";"Necrotising fasciitis (Surgical)" +"1.10.3.27.3";"Infective arthritis (Surgical)" +"1.10.3.27.4";"Rhabdomyolysis (Surgical)" +"1.10.3.27.5";"Abscess of muscle or connective tissue (Surgical)" +"1.10.3.27.6";"Fournier's gangrene of perineal tissues (Surgical)" +"1.10.3.28.1";"Polymyositis (Surgical)" +"1.10.3.28.2";"Systemic lupus erythromatosis (Surgical)" +"1.10.3.28.3";"Rhabdomyolysis (Surgical)" +"1.10.3.28.4";"Myasthenia gravis (Surgical)" +"1.10.3.28.5";"Rheumatoid arthritis (Surgical)" +"1.10.3.28.6";"Systemic sclerosis (Surgical)" +"1.10.3.28.7";"Vasculitis not defined (Surgical)" +"1.10.3.38.1";"Crush injury (Surgical)" +"1.10.3.38.2";"Compartment syndrome (Surgical)" +"1.10.3.38.3";"Non-accidental injury to muscles or connective tissue (Surgical)" +"1.10.3.38.4";"Amputation of limb (Surgical)" +"1.10.3.39.1";"Primary or secondary tumour of muscle or connective tissue (Surgical)" +"1.10.3.41.1";"Rhabdomyolysis (Surgical)" +"1.10.3.41.2";"Compartment syndrome (Surgical)" +"1.11.1.5.1";"Burns caused by dry heat (Surgical)" +"1.11.1.5.2";"Steam burns or scalds (Surgical)" +"1.11.1.5.3";"Electrical burns (Surgical)" +"1.11.1.5.4";"Chemical burns (Surgical)" +"1.11.1.27.1";"Cutaneous cellulitis (Surgical)" +"1.11.1.27.2";"Toxic epidermal necrolysis (Surgical)" +"1.11.1.27.3";"Necrotising fasciitis (Surgical)" +"1.11.1.27.4";"Orbital cellulitis (Surgical)" +"1.11.1.27.5";"Fournier's gangrene of perineal tissues (Surgical)" +"1.11.1.27.6";"Leprosy (Surgical)" +"1.11.1.28.1";"Exfoliative dermatitis (Surgical)" +"1.11.1.28.2";"Pemphigus vulgaris (Surgical)" +"1.11.1.28.3";"Psoriasis and pustular psoriasis (Surgical)" +"1.11.1.28.4";"Toxic epidermal necrolysis (Surgical)" +"1.11.1.28.5";"Erythema multiforme (Surgical)" +"1.11.1.28.6";"Stevens-Johnson syndrome (Surgical)" +"1.11.1.28.7";"Scleroderma (Surgical)" +"1.11.1.38.1";"Degloving injury (Surgical)" +"1.11.1.38.2";"Non-accidental injury to skin (Surgical)" +"1.11.1.39.1";"Cutaneous melanoma (Surgical)" +"1.11.1.39.2";"Basal cell carcinoma of skin (Surgical)" +"1.11.1.39.3";"Carcinoma of breast (Surgical)" +"1.12.1.48.1";"Alcohol dependence (Surgical)" +"1.12.1.48.2";"Drug dependence (Surgical)" +"1.12.1.48.3";"Delerium tremens (Surgical)" +"1.12.1.49.1";"Depression (Surgical)" +"1.12.1.49.2";"Mania or manic depression (Surgical)" +"1.12.1.50.1";"Neurosis disorder (Surgical)" +"1.12.1.50.2";"Personality disorder (Surgical)" +"1.12.1.51.1";"Schizophrenia (Surgical)" +"1.12.1.52.1";"Congenital mental handicap (Surgical)" +"2.1.1.8.1";"Mouth, mandible, pharynx, or facial bones deformity (Nonsurgical)" +"2.1.1.8.2";"Tracheo-oesophageal fistula (Nonsurgical)" +"2.1.1.8.3";"Laryngomalacia (Nonsurgical)" +"2.1.1.8.4";"Tracheomalacia (Nonsurgical)" +"2.1.1.8.5";"Choanal atresia (Nonsurgical)" +"2.1.1.8.6";"Vocal cord abnormality (Nonsurgical)" +"2.1.1.15.1";"Post-tonsillectomy bleeding (Nonsurgical)" +"2.1.1.15.2";"Upper airway bleeding not defined (Nonsurgical)" +"2.1.1.27.1";"Mandible, facial bones, dental or salivary infection (Nonsurgical)" +"2.1.1.27.2";"Tonsil or pharyngeal infection (Nonsurgical)" +"2.1.1.27.3";"Epiglottitis (Nonsurgical)" +"2.1.1.27.4";"Croup or laryngotracheobronchitis (Nonsurgical)" +"2.1.1.27.5";"Airway compression by extrinsic abscess (Nonsurgical)" +"2.1.1.27.6";"Pertussis (Nonsurgical)" +"2.1.1.28.1";"Inhalational burns (Nonsurgical)" +"2.1.1.28.2";"Angio-neurotic oedema due to drug or treatment reaction (Nonsurgical)" +"2.1.1.28.3";"Oedema due to venous obstruction (Nonsurgical)" +"2.1.1.30.1";"Extrinsic compression of airway by haematoma (Nonsurgical)" +"2.1.1.30.2";"Extrinsic compression of airway by abscess (Nonsurgical)" +"2.1.1.30.3";"Extrinsic compression of airway by thyroid or lymphoid tissue (Nonsurgical)" +"2.1.1.30.4";"Epiglottitis (Nonsurgical)" +"2.1.1.30.5";"Croup or laryngotracheobronchitis (Nonsurgical)" +"2.1.1.30.6";"Hanging or strangulation (Nonsurgical)" +"2.1.1.30.7";"Tracheal stenosis (Nonsurgical)" +"2.1.1.30.8";"Airway obstruction by foreign body (Nonsurgical)" +"2.1.1.30.9";"Inhalational burns (Nonsurgical)" +"2.1.1.30.10";"Angio-neurotic oedema due to drug or treatment reaction (Nonsurgical)" +"2.1.1.30.11";"Oedema due to venous obstruction (Nonsurgical)" +"2.1.1.30.12";"Obstructive sleep apnoea (Nonsurgical)" +"2.1.1.30.14";"Vascular ring (Nonsurgical)" +"2.1.1.30.15";"Laryngospasm (Nonsurgical)" +"2.1.1.38.1";"Mouth, mandible, pharynx, or facial bones trauma (Nonsurgical)" +"2.1.1.38.2";"Laryngeal trauma or perforation (Nonsurgical)" +"2.1.1.38.3";"Tracheal trauma or perforation (Nonsurgical)" +"2.1.1.39.1";"Head or neck tumour not intra-oral or intra-cranial (Nonsurgical)" +"2.1.1.39.2";"Intra-oral or pharyngeal tumour (Nonsurgical)" +"2.1.1.39.3";"Tracheal tumour (Nonsurgical)" +"2.1.1.39.4";"Laryngeal tumour (Nonsurgical)" +"2.1.1.41.1";"Vascular ring (Nonsurgical)" +"2.1.2.8.1";"Cystic fibrosis (Nonsurgical)" +"2.1.2.8.2";"Bronchopulmonary dysplasia (Nonsurgical)" +"2.1.2.15.1";"Bronchial haemorrhage (Nonsurgical)" +"2.1.2.27.1";"Acute bronchitis or laryngotracheobronchitis (Nonsurgical)" +"2.1.2.27.2";"Exacerbation of chronic obstructive airways disease (COAD/COPD) (Nonsurgical)" +"2.1.2.27.3";"Exacerbation of bronchiectasis (Nonsurgical)" +"2.1.2.27.4";"Bronchiolitis (Nonsurgical)" +"2.1.2.28.1";"Smoke inhalation (Nonsurgical)" +"2.1.2.28.2";"Bronchiolitis obliterans (Nonsurgical)" +"2.1.2.30.1";"Asthma attack in new or known asthmatic (Nonsurgical)" +"2.1.2.30.2";"Drug, procedure or transfusion induced bronchospasm in non-asthmatic (Nonsurgical)" +"2.1.2.30.3";"Obstruction by foreign body (Nonsurgical)" +"2.1.2.30.4";"Sputum retention (Nonsurgical)" +"2.1.2.30.5";"Extrinsic compression of bronchus by tumour (Nonsurgical)" +"2.1.2.30.6";"Chronic obstructive airways disease (COAD/COPD) (Nonsurgical)" +"2.1.2.30.7";"Meconium aspiration (Nonsurgical)" +"2.1.2.30.8";"Bronchiolitis obliterans (Nonsurgical)" +"2.1.2.38.1";"Traumatic rupture or perforation of bronchus (Nonsurgical)" +"2.1.2.38.2";"Instrumental perforation of bronchus (Nonsurgical)" +"2.1.2.39.1";"Bronchial tumour (Nonsurgical)" +"2.1.3.8.1";"Anomalous pulmonary venous drainage (Nonsurgical)" +"2.1.3.8.2";"Pulmonary arterio-venous malformations (Nonsurgical)" +"2.1.3.8.3";"Transposition of great arteries (Nonsurgical)" +"2.1.3.8.4";"Patent ductus arteriosus (Nonsurgical)" +"2.1.3.8.5";"Truncus arteriosus (Nonsurgical)" +"2.1.3.15.1";"Goodpastures syndrome (Nonsurgical)" +"2.1.3.15.2";"Pulmonary vasculitis not defined (Nonsurgical)" +"2.1.3.15.3";"Leptospirosis (Nonsurgical)" +"2.1.3.15.4";"Pulmonary haemorrhage due to contusion (Nonsurgical)" +"2.1.3.15.5";"Pulmonary haemorrhage not defined (Nonsurgical)" +"2.1.3.19.1";"Idiopathic pulmonary hypertension (Nonsurgical)" +"2.1.3.19.2";"Eisenmenger's syndrome (Nonsurgical)" +"2.1.3.19.3";"Cor pulmonale (Nonsurgical)" +"2.1.3.28.1";"Goodpastures syndrome (Nonsurgical)" +"2.1.3.28.2";"Pulmonary vasculitis not defined (Nonsurgical)" +"2.1.3.30.1";"Pulmonary embolus (thrombus) (Nonsurgical)" +"2.1.3.30.2";"Fat embolus (Nonsurgical)" +"2.1.3.30.3";"Venous air embolus (Nonsurgical)" +"2.1.3.30.4";"Pulmonary tumour embolus (Nonsurgical)" +"2.1.3.30.5";"Amniotic fluid embolus (Nonsurgical)" +"2.1.3.38.1";"Traumatic damage to pulmonary vessels (Nonsurgical)" +"2.1.3.38.2";"Instrumental damage to pulmonary vessels (Nonsurgical)" +"2.1.4.6.1";"Lung collapse or atelectasis (Nonsurgical)" +"2.1.4.6.2";"Non-traumatic haemothorax (Nonsurgical)" +"2.1.4.6.3";"Traumatic haemothorax or haemopneumothorax (Nonsurgical)" +"2.1.4.6.4";"Lung collapse due to pneumothorax (Nonsurgical)" +"2.1.4.6.5";"Lung collapse secondary to broncho-pleural fistula (Nonsurgical)" +"2.1.4.8.1";"Lung cyst (Nonsurgical)" +"2.1.4.8.2";"Cystic fibrosis (Nonsurgical)" +"2.1.4.15.1";"Pulmonary haemorrhage due to contusion (Nonsurgical)" +"2.1.4.15.2";"Goodpasture's syndrome (Nonsurgical)" +"2.1.4.15.3";"Leptospirosis (Nonsurgical)" +"2.1.4.15.4";"Pulmonary haemorrhage not defined (Nonsurgical)" +"2.1.4.15.5";"Pulmonary vasculitis not defined (Nonsurgical)" +"2.1.4.27.1";"Bacterial pneumonia (Nonsurgical)" +"2.1.4.27.2";"Fungal or yeast pneumonia (Nonsurgical)" +"2.1.4.27.3";"Viral pneumonia (Nonsurgical)" +"2.1.4.27.4";"Parasitic pneumonia (Nonsurgical)" +"2.1.4.27.5";"Pneumonia, no organism isolated (Nonsurgical)" +"2.1.4.27.6";"Tuberculosis (Nonsurgical)" +"2.1.4.27.7";"Lung abscess (Nonsurgical)" +"2.1.4.31.2";"Sarcoidosis (Nonsurgical)" +"2.1.4.31.3";"Pulmonary fibrosis or fibrosing alveolitis (Nonsurgical)" +"2.1.4.31.4";"Emphysema (Nonsurgical)" +"2.1.4.31.5";"Inhalation pneumonitis (gastrointestinal contents) (Nonsurgical)" +"2.1.4.31.6";"Inhalation pneumonitis (blood) (Nonsurgical)" +"2.1.4.31.7";"Inhalation pneumonitis (smoke or gases) (Nonsurgical)" +"2.1.4.31.8";"Drowning (fresh or salt water) (Nonsurgical)" +"2.1.4.31.9";"Cardiogenic pulmonary oedema (Nonsurgical)" +"2.1.4.31.10";"Non-cardiogenic pulmonary oedema (ARDS) (Nonsurgical)" +"2.1.4.31.11";"Neurogenic pulmonary oedema (Nonsurgical)" +"2.1.4.31.13";"Post-radiotherapy pneumonitis or fibrosis (Nonsurgical)" +"2.1.4.31.14";"Lymphangitis carcinomatosis (Nonsurgical)" +"2.1.4.31.15";"Meconium aspiration (Nonsurgical)" +"2.1.4.31.16";"Hyaline membrane disease (Nonsurgical)" +"2.1.4.37.1";"Lung transplant (Nonsurgical)" +"2.1.4.37.2";"Rejection of lung transplant (Nonsurgical)" +"2.1.4.38.1";"Pulmonary contusion (Nonsurgical)" +"2.1.4.39.1";"Primary lung tumour (Nonsurgical)" +"2.1.4.39.2";"Secondary lung tumour (Nonsurgical)" +"2.1.5.8.1";"Pleural thickening or calcification (Nonsurgical)" +"2.1.5.8.2";"Hiatus hernia (Nonsurgical)" +"2.1.5.8.3";"Diaphragmatic hernia (Nonsurgical)" +"2.1.5.8.4";"Pleural effusion (Nonsurgical)" +"2.1.5.15.1";"Non-traumatic haemothorax (Nonsurgical)" +"2.1.5.15.2";"Traumatic haemothorax or haemopneumothorax (Nonsurgical)" +"2.1.5.27.1";"Pleurisy (Nonsurgical)" +"2.1.5.27.2";"Empyema or infected effusion (Nonsurgical)" +"2.1.5.27.3";"Mediastinitis (Nonsurgical)" +"2.1.5.27.4";"Tuberculosis (Nonsurgical)" +"2.1.5.38.1";"Traumatic haemothorax or haemopneumothorax (Nonsurgical)" +"2.1.5.38.2";"Traumatic pneumothorax (Nonsurgical)" +"2.1.5.38.3";"Traumatic broncho-pleural fistula (Nonsurgical)" +"2.1.5.38.4";"Chylothorax (Nonsurgical)" +"2.1.5.39.1";"Mesothelioma (Nonsurgical)" +"2.1.5.39.2";"Mediastinal tumour (Nonsurgical)" +"2.1.10.7.1";"Toxic or drug-induced coma or encephalopathy (Nonsurgical)" +"2.1.10.7.2";"Metabolic coma or encephalopathy (Nonsurgical)" +"2.1.10.7.3";"Anoxic or ischaemic coma or encephalopathy (Nonsurgical)" +"2.1.10.7.4";"Degenerative coma or encephalopathy (Nonsurgical)" +"2.1.10.7.5";"Post-anaesthetic encephalopathy aetiology uncertain (Nonsurgical)" +"2.1.10.7.6";"Brainstem death (Nonsurgical)" +"2.1.10.7.7";"Primary brain injury (Nonsurgical)" +"2.1.10.8.1";"Congenital hydrocephalus (Nonsurgical)" +"2.1.10.8.2";"Secondary hydrocephalus (Nonsurgical)" +"2.1.10.8.3";"Arnold-Chiari malformation (Nonsurgical)" +"2.1.10.8.4";"Congenital abnormality of skull (Nonsurgical)" +"2.1.10.8.5";"Parkinson's Disease (Nonsurgical)" +"2.1.10.8.6";"Multiple sclerosis (Nonsurgical)" +"2.1.10.8.7";"Central hypoventilation (Ondine's curse) (Nonsurgical)" +"2.1.10.15.1";"Intracerebral bleeding (Nonsurgical)" +"2.1.10.15.2";"Subarachnoid bleeding (Nonsurgical)" +"2.1.10.15.3";"Subdural haematoma (Nonsurgical)" +"2.1.10.15.4";"Extradural haematoma (Nonsurgical)" +"2.1.10.27.1";"Meningitis (Nonsurgical)" +"2.1.10.27.2";"Encephalitis (Nonsurgical)" +"2.1.10.27.3";"Intracranial abscess (Nonsurgical)" +"2.1.10.27.4";"Infected CSF shunt (Nonsurgical)" +"2.1.10.33.1";"Status epilepticus or uncontrolled seizures (Nonsurgical)" +"2.1.10.33.2";"Eclampsia (Nonsurgical)" +"2.1.10.33.3";"Alcohol withdrawal seizures (Nonsurgical)" +"2.1.10.38.1";"Primary brain injury (Nonsurgical)" +"2.1.10.38.2";"Subdural haematoma (Nonsurgical)" +"2.1.10.38.3";"Extradural haematoma (Nonsurgical)" +"2.1.10.38.4";"Non-accidental injury to brain (Nonsurgical)" +"2.1.10.39.1";"Primary brain or meningeal tumour (Nonsurgical)" +"2.1.10.39.2";"Secondary intracranial tumour (Nonsurgical)" +"2.1.10.41.1";"Berry or other intracranial aneurysm (Nonsurgical)" +"2.1.10.41.2";"Intracranial arterio-venous malformation (Nonsurgical)" +"2.1.10.41.3";"Thrombo-occlusive disease of brain (Nonsurgical)" +"2.1.10.41.4";"Venous air embolus (Nonsurgical)" +"2.1.10.41.5";"Vasculitis of cerebral circulation (Nonsurgical)" +"2.1.10.41.6";"Embolic brain lesions causing respiratory failure (Nonsurgical)" +"2.1.6.9.1";"Motor neurone disease (Nonsurgical)" +"2.1.6.9.2";"Chronic spinal cord injury (Nonsurgical)" +"2.1.6.12.1";"Epidural injection or infusion (Nonsurgical)" +"2.1.6.12.2";"Spinal injection or infusion (Nonsurgical)" +"2.1.6.27.1";"Epidural or subdural abscess (Nonsurgical)" +"2.1.6.27.2";"Poliomyelitis (Nonsurgical)" +"2.1.6.27.3";"Tetanus (Nonsurgical)" +"2.1.6.38.1";"Cervical cord injury (Nonsurgical)" +"2.1.6.38.2";"Chronic spinal cord injury (Nonsurgical)" +"2.1.7.8.1";"Pseudocholinesterase deficiency (Nonsurgical)" +"2.1.7.8.2";"Failure of reversal of non-depolarising neuromuscular blockers (Nonsurgical)" +"2.1.7.27.1";"Infective polyneuropathy (Nonsurgical)" +"2.1.7.28.1";"Guillain-Barre syndrome (Nonsurgical)" +"2.1.7.28.2";"Toxic polyneuropathy (Nonsurgical)" +"2.1.8.8.1";"Pseudocholinesterase deficiency (Nonsurgical)" +"2.1.8.8.2";"Failure of reversal of non-depolarising neuromuscular blockers (Nonsurgical)" +"2.1.8.28.1";"Myasthenia gravis (Nonsurgical)" +"2.1.9.8.1";"Thoracoplasty (Nonsurgical)" +"2.1.9.8.2";"Kyphoscoliosis (Nonsurgical)" +"2.1.9.8.3";"Congenital chest wall deformity (Nonsurgical)" +"2.1.9.8.4";"Congenital muscular dystrophy (Nonsurgical)" +"2.1.9.8.5";"Diaphragmatic hernia (Nonsurgical)" +"2.1.9.8.6";"Ankylosing spondylitis (Nonsurgical)" +"2.1.9.38.1";"Flail chest (Nonsurgical)" +"2.1.9.38.2";"Flail sternum (Nonsurgical)" +"2.1.9.38.3";"Fractured ribs (Nonsurgical)" +"2.1.9.38.4";"Penetrating injury to chest wall (Nonsurgical)" +"2.1.9.38.5";"Ruptured diaphragm (Nonsurgical)" +"2.2.1.8.1";"Coronary sinus fistula (Nonsurgical)" +"2.2.1.8.2";"Anomalous coronary artery (Nonsurgical)" +"2.2.1.15.1";"Haemorrhage from coronary arteries (Nonsurgical)" +"2.2.1.27.1";"Mediastinitis (Nonsurgical)" +"2.2.1.28.1";"Kawasaki syndrome (Nonsurgical)" +"2.2.1.30.1";"Acute myocardial infarction (Nonsurgical)" +"2.2.1.30.2";"Acute crescendo or unstable angina (Nonsurgical)" +"2.2.1.30.3";"Chronic angina (Nonsurgical)" +"2.2.1.30.4";"CABG for acute myocardial infarction (Nonsurgical)" +"2.2.1.30.5";"CABG for acute crescendo or unstable angina (Nonsurgical)" +"2.2.1.30.6";"CABG for chronic angina (Nonsurgical)" +"2.2.1.30.7";"Myocardial ischaemia without angina (Nonsurgical)" +"2.2.1.38.1";"Traumatic damage to coronary arteries (Nonsurgical)" +"2.2.1.38.2";"Instrumental damage to coronary arteries (Nonsurgical)" +"2.2.2.8.1";"Complex congenital cardiac abnormality (Nonsurgical)" +"2.2.2.8.2";"Atrial septal defect (Nonsurgical)" +"2.2.2.8.3";"Congenital ventricular septal defect (Nonsurgical)" +"2.2.2.8.4";"Ischaemic ventricular septal defect (Nonsurgical)" +"2.2.2.8.6";"Tetralogy of Fallot (Nonsurgical)" +"2.2.2.8.7";"AV canal defect (Nonsurgical)" +"2.2.2.8.8";"Transposition of great arteries (Nonsurgical)" +"2.2.2.8.9";"Hypertrophic cardiomyopathy (Nonsurgical)" +"2.2.2.8.10";"Toxic myocarditis (Nonsurgical)" +"2.2.2.8.12";"Single ventricle (Nonsurgical)" +"2.2.2.8.13";"Right ventricular outflow tract obstruction (Nonsurgical)" +"2.2.2.8.14";"Left ventricular outflow tract obstruction (Nonsurgical)" +"2.2.2.8.15";"Double outlet left ventricle (Nonsurgical)" +"2.2.2.8.16";"Hypoplastic left or right ventricle (Nonsurgical)" +"2.2.2.8.17";"Ventricular aneurysm (Nonsurgical)" +"2.2.2.13.1";"Left ventricular failure (Nonsurgical)" +"2.2.2.13.2";"Right ventricular failure (Nonsurgical)" +"2.2.2.13.3";"Bi-ventricular failure (Nonsurgical)" +"2.2.2.13.4";"Cardiogenic shock (Nonsurgical)" +"2.2.2.13.5";"Cor pulmonale (Nonsurgical)" +"2.2.2.27.1";"Viral or bacterial cardiomyopathy (Nonsurgical)" +"2.2.2.27.2";"Myocardial or septal abscess (Nonsurgical)" +"2.2.2.27.3";"Myocarditis (Nonsurgical)" +"2.2.2.27.4";"Non-valvular endocarditis (Nonsurgical)" +"2.2.2.28.1";"Toxic myopathy (Nonsurgical)" +"2.2.2.28.2";"Myocarditis (Nonsurgical)" +"2.2.2.37.1";"Heart or heart-lung transplant (Nonsurgical)" +"2.2.2.37.2";"Cardiac transplant rejection (Nonsurgical)" +"2.2.2.38.1";"Myocardial contusion (Nonsurgical)" +"2.2.2.38.2";"Instrumental damage to myocardium (Nonsurgical)" +"2.2.2.38.3";"Ischaemic myocardial perforation (Nonsurgical)" +"2.2.2.38.4";"Ischaemic ventricular septal defect (Nonsurgical)" +"2.2.2.38.5";"Traumatic myocardial perforation (Nonsurgical)" +"2.2.2.38.6";"Haemopericardium or tamponade post surgery (Nonsurgical)" +"2.2.2.38.7";"Papillary muscle rupture (Nonsurgical)" +"2.2.2.39.1";"Myxoma (Nonsurgical)" +"2.2.2.41.1";"Ischaemic cardiomyopathy (Nonsurgical)" +"2.2.2.41.2";"Ischaemic ventricular septal defect (Nonsurgical)" +"2.2.2.41.3";"Papillary muscle rupture (Nonsurgical)" +"2.2.2.41.4";"Acute myocardial infarction (Nonsurgical)" +"2.2.3.8.1";"Constrictive pericarditis (Nonsurgical)" +"2.2.3.8.2";"Pericardial effusion (Nonsurgical)" +"2.2.3.15.1";"Haemopericardium from instrumental myocardial perforation (Nonsurgical)" +"2.2.3.15.2";"Haemopericardium from ischaemic myocardial perforation (Nonsurgical)" +"2.2.3.15.3";"Haemopericardium from traumatic myocardial perforation (Nonsurgical)" +"2.2.3.15.4";"Haemopericardium from coronary artery damage (Nonsurgical)" +"2.2.3.15.5";"Haemopericardium or tamponade post surgery (Nonsurgical)" +"2.2.3.27.1";"Infective pericarditis (Nonsurgical)" +"2.2.3.27.2";"Mediastinitis (Nonsurgical)" +"2.2.3.28.1";"Pericardial effusion (Nonsurgical)" +"2.2.3.39.1";"Malignant pericardial effusion (Nonsurgical)" +"2.2.4.8.1";"Abnormality of aortic valve (Nonsurgical)" +"2.2.4.8.2";"Abnormality of mitral valve (Nonsurgical)" +"2.2.4.8.3";"Abnormality of pulmonary valve (Nonsurgical)" +"2.2.4.8.4";"Abnormality of tricuspid valve (Nonsurgical)" +"2.2.4.8.5";"Tetralogy of Fallot (Nonsurgical)" +"2.2.4.8.6";"AV canal defect (Nonsurgical)" +"2.2.4.8.7";"Abnormality of prosthetic valve (Nonsurgical)" +"2.2.4.9.1";"Chronic degeneration of aortic valve (Nonsurgical)" +"2.2.4.9.2";"Chronic degeneration of mitral valve (Nonsurgical)" +"2.2.4.9.3";"Chronic degeneration of pulmonary valve (Nonsurgical)" +"2.2.4.9.4";"Chronic degeneration of tricuspid valve (Nonsurgical)" +"2.2.4.27.1";"Endocarditis of aortic valve (Nonsurgical)" +"2.2.4.27.2";"Endocarditis of mitral valve (Nonsurgical)" +"2.2.4.27.3";"Endocarditis of pulmonary valve (Nonsurgical)" +"2.2.4.27.4";"Endocarditis of tricuspid valve (Nonsurgical)" +"2.2.4.27.5";"Aortic root abscess (Nonsurgical)" +"2.2.4.27.6";"Infection of prosthetic heart valve (Nonsurgical)" +"2.2.4.27.7";"Non-valvular endocarditis (Nonsurgical)" +"2.2.4.38.1";"Trauma to aortic valve (Nonsurgical)" +"2.2.4.38.2";"Trauma to mitral valve (Nonsurgical)" +"2.2.4.38.3";"Trauma to pulmonary valve (Nonsurgical)" +"2.2.4.38.4";"Trauma to tricuspid valve (Nonsurgical)" +"2.2.4.38.5";"Instrumental damage to heart valves (Nonsurgical)" +"2.2.4.38.6";"Papillary muscle rupture (Nonsurgical)" +"2.2.4.39.1";"Myxoma (Nonsurgical)" +"2.2.4.41.1";"Papillary muscle rupture (Nonsurgical)" +"2.2.5.8.1";"Wolff-Parkinson-White syndrome (Nonsurgical)" +"2.2.5.8.2";"Lown-Ganong-Levine syndrome (Nonsurgical)" +"2.2.5.27.1";"Infected artificial pacemaker (Nonsurgical)" +"2.2.5.32.1";"Supra-ventricular tachycardia, atrial fibrillation or flutter (Nonsurgical)" +"2.2.5.32.2";"Ventricular tachycardia or fibrillation (Nonsurgical)" +"2.2.5.32.3";"Atrial premature beats or ectopics (Nonsurgical)" +"2.2.5.32.4";"Ventricular ectopics (Nonsurgical)" +"2.2.5.40.1";"Heart block (Nonsurgical)" +"2.2.6.8.1";"Coarctation of the aorta (Nonsurgical)" +"2.2.6.8.2";"Marfan's syndrome (Nonsurgical)" +"2.2.6.8.3";"Congenital abnormality of aortic arch (Nonsurgical)" +"2.2.6.8.4";"Transposition of great arteries (Nonsurgical)" +"2.2.6.8.5";"Truncus arteriosus (Nonsurgical)" +"2.2.6.8.6";"Patent ductus arteriosus (Nonsurgical)" +"2.2.6.11.1";"Traumatic dissection of thoracic aorta (Nonsurgical)" +"2.2.6.11.2";"Non-traumatic dissection of thoracic aorta (Nonsurgical)" +"2.2.6.11.3";"Thoracic or thoraco-abdominal aortic aneurysm (Nonsurgical)" +"2.2.6.27.1";"Infected thoracic aortic prosthesis (Nonsurgical)" +"2.2.6.27.2";"Aortic root abscess (Nonsurgical)" +"2.2.6.27.3";"Syphilitic aortitis (Nonsurgical)" +"2.2.6.30.1";"Coarctation of the aorta (Nonsurgical)" +"2.2.6.38.1";"Traumatic rupture of thoracic aorta (Nonsurgical)" +"2.2.6.38.2";"Traumatic or instrumental perforation of thoracic aorta (Nonsurgical)" +"2.2.7.11.1";"Aortic or iliac dissection or aneurysm (Nonsurgical)" +"2.2.7.11.2";"Traumatic dissection or rupture of abdominal aorta or iliac vessels (Nonsurgical)" +"2.2.7.11.4";"Traumatic aorto-caval fistula (Nonsurgical)" +"2.2.7.11.5";"Traumatic aorto-enteric fistula (Nonsurgical)" +"2.2.7.27.1";"Infected aortic or iliac prosthesis (Nonsurgical)" +"2.2.7.30.1";"Occlusive aortic or iliac disease (Nonsurgical)" +"2.2.7.30.2";"Iliac or saddle embolus (Nonsurgical)" +"2.2.7.38.1";"Traumatic dissection or rupture of abdominal aorta or iliac vessels (Nonsurgical)" +"2.2.7.38.2";"Instrumental damage to abdominal aorta or iliac vessels (Nonsurgical)" +"2.2.7.38.3";"Traumatic aorto-enteric fistula (Nonsurgical)" +"2.2.7.38.4";"Traumatic aorto-caval fistula (Nonsurgical)" +"2.2.8.11.1";"Renal artery aneurysm or dissection (Nonsurgical)" +"2.2.8.11.2";"Hepatic artery aneurysm (Nonsurgical)" +"2.2.8.11.3";"Splanchnic artery aneurysm or dissection not defined (Nonsurgical)" +"2.2.8.30.1";"Renal artery stenosis or occlusion (Nonsurgical)" +"2.2.8.30.2";"Renal artery embolus (Nonsurgical)" +"2.2.8.30.3";"Renal infarction (Nonsurgical)" +"2.2.8.30.4";"Renal artery aneurysm or dissection (Nonsurgical)" +"2.2.8.30.5";"Hepatic artery stenosis or occlusion (Nonsurgical)" +"2.2.8.30.6";"Portal vein occlusion or thrombosis (Nonsurgical)" +"2.2.8.30.7";"Hepatic vein occlusion or thrombosis (Nonsurgical)" +"2.2.8.30.8";"Visceral artery stenosis or occlusion (Nonsurgical)" +"2.2.8.30.9";"Visceral artery embolism (Nonsurgical)" +"2.2.8.30.10";"Visceral infarction due to primary vascular disease (Nonsurgical)" +"2.2.8.30.11";"Small bowel infarction due to herniation, volvulus or adhesions (Nonsurgical)" +"2.2.8.30.12";"Portal hypertension (Nonsurgical)" +"2.2.8.38.1";"Traumatic damage to renal vessels (Nonsurgical)" +"2.2.8.38.2";"Traumatic damage to splanchnic vessels (Nonsurgical)" +"2.2.8.38.3";"Instrumental damage to renal or splanchnic vessels (Nonsurgical)" +"2.2.9.8.1";"Extracranial or neck arterio-venous malformation or haemangioma (Nonsurgical)" +"2.2.9.11.1";"Carotid or vertebral artery aneurysm or dissection (Nonsurgical)" +"2.2.9.15.1";"Epistaxis (Nonsurgical)" +"2.2.9.30.1";"Carotid or vertebral artery stenosis or occlusion (Nonsurgical)" +"2.2.9.38.1";"Traumatic rupture or puncture of carotid or vertebral artery (Nonsurgical)" +"2.2.9.38.2";"Instrumental damage to carotid or vertebral artery (Nonsurgical)" +"2.2.10.11.1";"Upper limb artery aneurysm or dissection (Nonsurgical)" +"2.2.10.11.2";"Lower limb artery aneurysm or dissection (Nonsurgical)" +"2.2.10.15.1";"Bleeding from limb vessel (Nonsurgical)" +"2.2.10.30.1";"Upper limb artery stenosis or occlusion (Nonsurgical)" +"2.2.10.30.2";"Lower limb artery stenosis or occlusion (Nonsurgical)" +"2.2.10.30.3";"Upper limb embolus (Nonsurgical)" +"2.2.10.30.4";"Lower limb embolus (Nonsurgical)" +"2.2.10.38.1";"Traumatic rupture or puncture of upper limb artery (Nonsurgical)" +"2.2.10.38.2";"Traumatic rupture or puncture of lower limb artery (Nonsurgical)" +"2.2.10.38.3";"Instrumental damage to limb artery (Nonsurgical)" +"2.2.11.27.1";"Infected thrombophlebitis of the great veins (Nonsurgical)" +"2.2.11.27.2";"Infected intravenous catheter in the great veins (Nonsurgical)" +"2.2.11.30.1";"Superior vena caval obstruction or thrombosis (Nonsurgical)" +"2.2.11.30.2";"Inferior vena caval obstruction or thrombosis (Nonsurgical)" +"2.2.11.38.1";"Superior vena caval damage (Nonsurgical)" +"2.2.11.38.2";"Traumatic inferior vena caval damage (Nonsurgical)" +"2.2.12.27.1";"Infected thrombophlebitis of the peripheral veins (Nonsurgical)" +"2.2.12.27.2";"Infected intravenous catheter in the peripheral veins (Nonsurgical)" +"2.2.12.27.3";"Infected arterio-venous shunt or fistula (Nonsurgical)" +"2.2.12.35.1";"Hypovolaemic shock (Nonsurgical)" +"2.2.12.35.2";"Septic shock (Nonsurgical)" +"2.2.12.35.3";"Anaphylaxis (Nonsurgical)" +"2.2.12.35.4";"Cardiogenic shock (Nonsurgical)" +"2.2.12.19.1";"Accelerated or malignant hypertension (Nonsurgical)" +"2.2.12.19.2";"Essential hypertension (Nonsurgical)" +"2.2.12.19.3";"Phaeochromocytoma (Nonsurgical)" +"2.2.12.19.4";"HELLP syndrome (Nonsurgical)" +"2.2.12.19.5";"Pre-eclampsia (Nonsurgical)" +"2.2.12.19.6";"Coarctation of the aorta (Nonsurgical)" +"2.2.13.8.1";"Anomalous pulmonary venous drainage (Nonsurgical)" +"2.2.13.8.2";"Pulmonary arterio-venous malformations (Nonsurgical)" +"2.2.13.8.3";"Transposition of great arteries (Nonsurgical)" +"2.2.13.8.4";"Patent ductus arteriosus (Nonsurgical)" +"2.2.13.8.5";"Truncus arteriosus (Nonsurgical)" +"2.2.13.15.1";"Goodpasture's syndrome (Nonsurgical)" +"2.2.13.15.2";"Pulmonary vasculitis not defined (Nonsurgical)" +"2.2.13.15.3";"Leptospirosis (Nonsurgical)" +"2.2.13.15.4";"Pulmonary haemorrhage due to contusion (Nonsurgical)" +"2.2.13.19.1";"Idiopathic pulmonary hypertension (Nonsurgical)" +"2.2.13.19.2";"Eisenmenger's syndrome (Nonsurgical)" +"2.2.13.19.3";"Cor pulmonale (Nonsurgical)" +"2.2.13.28.1";"Goodpasture's syndrome (Nonsurgical)" +"2.2.13.28.2";"Pulmonary vasculitis not defined (Nonsurgical)" +"2.2.13.30.1";"Pulmonary embolus (thrombus) (Nonsurgical)" +"2.2.13.30.2";"Fat embolus (Nonsurgical)" +"2.2.13.30.3";"Venous air embolus (Nonsurgical)" +"2.2.13.30.4";"Pulmonary tumour embolus (Nonsurgical)" +"2.2.13.30.5";"Amniotic fluid embolus (Nonsurgical)" +"2.2.13.38.1";"Traumatic damage to pulmonary vessels (Nonsurgical)" +"2.2.13.38.2";"Instrumental damage to pulmonary vessels (Nonsurgical)" +"2.3.4.30.3";"Meconium ileus (Nonsurgical)" +"2.3.4.38.1";"Non-traumatic duodenal rupture (Nonsurgical)" +"2.3.4.38.2";"Traumatic duodenal rupture (Nonsurgical)" +"2.3.4.38.3";"Instrumental damage to duodenum (Nonsurgical)" +"2.3.4.38.4";"Duodenal perforation due to ulcers (Nonsurgical)" +"2.3.4.38.5";"Leaking duodenal anastomosis (Nonsurgical)" +"2.3.4.38.6";"Duodeno-vascular fistula (Nonsurgical)" +"2.3.4.38.7";"Duodenal fistula (Nonsurgical)" +"2.3.4.39.1";"Duodenal or ampullary tumour (Nonsurgical)" +"2.3.5.15.1";"Entero-vascular fistula (Nonsurgical)" +"2.3.5.15.2";"Small bowel arterio-venous malformation (Nonsurgical)" +"2.3.5.27.1";"Infective enteritides (Nonsurgical)" +"2.3.5.27.2";"Necrotising enterocolitis (Nonsurgical)" +"2.3.5.28.1";"Crohn's disease of small bowel (Nonsurgical)" +"2.3.5.28.2";"Inflammatory perforation of small bowel (Nonsurgical)" +"2.3.5.30.1";"Small bowel herniation (Nonsurgical)" +"2.3.5.30.2";"Small bowel volvulus (Nonsurgical)" +"2.3.5.30.3";"Small bowel adhesions (Nonsurgical)" +"2.3.5.30.4";"Small bowel intussusception (Nonsurgical)" +"2.3.5.30.5";"Small bowel tumour (Nonsurgical)" +"2.3.5.30.6";"Small bowel inflammatory masses (Nonsurgical)" +"2.3.5.38.1";"Non-traumatic small bowel perforation (Nonsurgical)" +"2.3.5.38.2";"Traumatic small bowel perforation (Nonsurgical)" +"2.3.5.38.3";"Instrumental damage to small bowel (Nonsurgical)" +"2.3.5.38.4";"Leaking small bowel anastomosis (Nonsurgical)" +"2.3.5.38.5";"Entero-enteric or entero-cutaneous fistula (Nonsurgical)" +"2.3.5.39.1";"Small bowel tumour (Nonsurgical)" +"2.3.5.41.1";"Visceral artery stenosis or occlusion (Nonsurgical)" +"2.3.5.41.2";"Visceral artery embolism (Nonsurgical)" +"2.3.5.41.3";"Visceral infarction due to primary vascular disease (Nonsurgical)" +"2.3.5.41.4";"Small bowel infarction due to herniation, volvulus or adhesions (Nonsurgical)" +"2.3.6.8.1";"Imperforate anus or rectum (Nonsurgical)" +"2.3.6.8.2";"Hirschsprung's disease (Nonsurgical)" +"2.3.6.15.1";"Colonic or rectal bleeding (Nonsurgical)" +"2.3.6.15.2";"Colo-vascular fistula (Nonsurgical)" +"2.3.6.27.1";"Infective colitis or proctocolitis (Nonsurgical)" +"2.3.6.27.2";"Necrotising enterocolitis (Nonsurgical)" +"2.3.6.27.3";"Diverticulitis or diverticular abscess (Nonsurgical)" +"2.3.6.27.4";"Appendicitis or appendix abscess (Nonsurgical)" +"2.3.6.28.1";"Crohn's disease of large bowel, rectum or anus (Nonsurgical)" +"2.3.6.28.2";"Ulcerative colitis (Nonsurgical)" +"2.3.6.28.3";"Toxic dilatation of large bowel (Nonsurgical)" +"2.3.6.28.4";"Diverticulitis or diverticular abscess (Nonsurgical)" +"2.3.6.28.5";"Appendicitis or appendix abscess (Nonsurgical)" +"2.3.6.28.6";"Ischaemic colitis (Nonsurgical)" +"2.3.6.30.1";"Large bowel herniation (Nonsurgical)" +"2.3.6.30.2";"Large bowel volvulus (Nonsurgical)" +"2.3.6.30.3";"Large bowel adhesions (Nonsurgical)" +"2.3.6.30.4";"Large bowel intussusception or prolapse (Nonsurgical)" +"2.3.6.30.5";"Large bowel tumour (Nonsurgical)" +"2.3.6.30.6";"Large bowel inflammatory masses (Nonsurgical)" +"2.3.6.38.1";"Non-traumatic large bowel perforation or rupture (Nonsurgical)" +"2.3.6.38.2";"Traumatic large bowel perforation or rupture (Nonsurgical)" +"2.3.6.38.3";"Instrumental damage to large bowel (Nonsurgical)" +"2.3.6.38.4";"Leaking large bowel anastomosis (Nonsurgical)" +"2.3.6.38.5";"Large bowel fistula (Nonsurgical)" +"2.3.6.38.6";"Non-accidental injury to large bowel, rectum or anus (Nonsurgical)" +"2.3.6.39.1";"Large bowel tumour (Nonsurgical)" +"2.3.6.41.1";"Large bowel artery stenosis or occlusion (Nonsurgical)" +"2.3.6.41.2";"Large bowel artery embolization (Nonsurgical)" +"2.3.6.41.3";"Large bowel infarction due to primary vascular disease (Nonsurgical)" +"2.3.6.41.4";"Large bowel infarction due to herniation, volvulus or adhesions (Nonsurgical)" +"2.3.6.41.5";"Ischaemic colitis (Nonsurgical)" +"2.3.7.8.1";"Biliary atresia (Nonsurgical)" +"2.3.7.8.2";"Cholelithiasis (Nonsurgical)" +"2.3.7.8.3";"Cystic liver disease (Nonsurgical)" +"2.3.7.15.1";"Variceal bleeding (Nonsurgical)" +"2.3.7.15.2";"Spontaneous subcapsular haematoma (Nonsurgical)" +"2.3.7.15.3";"Bleeding from the biliary tree (Nonsurgical)" +"2.3.7.27.1";"Acute cholecystitis, gangrenous gall bladder, or empyema of gall bladder (Nonsurgical)" +"2.3.7.27.2";"Infective hepatitis (Nonsurgical)" +"2.3.7.27.3";"Infective cholangitis (Nonsurgical)" +"2.3.7.27.4";"Hepatic abscess (Nonsurgical)" +"2.3.7.27.5";"Hydatid disease (Nonsurgical)" +"2.3.7.27.6";"Leptospirosis (Nonsurgical)" +"2.3.7.28.1";"Acute cholecystitis, gangrenous gall bladder, or empyema of gall bladder (Nonsurgical)" +"2.3.7.28.2";"Alcoholic cirrhosis (Nonsurgical)" +"2.3.7.28.3";"Acute alcoholic hepatitis (Nonsurgical)" +"2.3.7.28.4";"Drug induced hepatitis or hepatic necrosis (Nonsurgical)" +"2.3.7.28.5";"Chronic cirrhosis cause not defined (Nonsurgical)" +"2.3.7.28.6";"Sclerosing cholangitis (Nonsurgical)" +"2.3.7.28.7";"Reye's or Reye-like syndrome (Nonsurgical)" +"2.3.7.30.1";"Biliary tree obstruction (Nonsurgical)" +"2.3.7.30.2";"Biliary atresia (Nonsurgical)" +"2.3.7.30.3";"Sclerosing cholangitis (Nonsurgical)" +"2.3.7.30.4";"Cholelithiasis (Nonsurgical)" +"2.3.7.38.1";"Traumatic rupture or laceration of liver (Nonsurgical)" +"2.3.7.38.2";"Perforated biliary tree or gall bladder (Nonsurgical)" +"2.3.7.38.3";"Instrumental damage to liver or biliary tree (Nonsurgical)" +"2.3.7.38.4";"Hepatic artery aneurysm (Nonsurgical)" +"2.3.7.38.5";"Biliary fistula (Nonsurgical)" +"2.3.7.38.6";"Leaking biliary anastamosis (Nonsurgical)" +"2.3.7.37.1";"Liver transplant (Nonsurgical)" +"2.3.7.37.2";"Liver transplant rejection (Nonsurgical)" +"2.3.7.39.1";"Primary hepatic tumour (Nonsurgical)" +"2.3.7.39.2";"Secondary hepatic tumour (Nonsurgical)" +"2.3.7.39.3";"Biliary tree tumour (Nonsurgical)" +"2.3.7.39.4";"Carcinoid tumour (Nonsurgical)" +"2.3.7.41.1";"Gangrenous gall bladder (Nonsurgical)" +"2.3.7.41.2";"Portal vein occlusion or thrombosis (Nonsurgical)" +"2.3.7.41.3";"Hepatic vein occlusion or thrombosis (Nonsurgical)" +"2.3.7.41.4";"Hepatic artery aneurysm (Nonsurgical)" +"2.3.7.41.5";"Hepatic infarction (Nonsurgical)" +"2.3.7.41.6";"Portal hypertension (Nonsurgical)" +"2.3.8.38.1";"Traumatic rupture or laceration of spleen (Nonsurgical)" +"2.3.8.38.2";"Spontaneous splenic rupture (Nonsurgical)" +"2.3.8.39.1";"Hypersplenism (Nonsurgical)" +"2.3.8.39.2";"Lymphoma (Nonsurgical)" +"2.3.9.15.1";"Pancreatic bleeding (Nonsurgical)" +"2.3.9.27.1";"Pancreatic abscess or infected pseudocyst (Nonsurgical)" +"2.3.9.27.2";"Infective pancreatitis (Nonsurgical)" +"2.3.9.28.1";"Acute pancreatitis (Nonsurgical)" +"2.3.9.28.2";"Chronic pancreatitis (Nonsurgical)" +"2.3.9.38.1";"Traumatic pancreatitis or pancreatic damage (Nonsurgical)" +"2.3.9.38.2";"Instrumental damage to pancreatic duct (Nonsurgical)" +"2.3.9.38.3";"Pancreatic fistula (Nonsurgical)" +"2.3.9.39.1";"Pancreatic or pancreato-duodenal tumour (Nonsurgical)" +"2.3.10.8.1";"Exomphalos (Nonsurgical)" +"2.3.10.8.2";"Gastroschisis or exomphalos (Nonsurgical)" +"2.3.10.8.3";"Diaphragmatic hernia (Nonsurgical)" +"2.3.10.8.4";"Inguinal or femoral hernia (Nonsurgical)" +"2.3.10.8.5";"Hernia not defined (Nonsurgical)" +"2.3.10.15.1";"Retroperitoneal haemorrhage (Nonsurgical)" +"2.3.10.27.1";"Primary peritonitis (Nonsurgical)" +"2.3.10.27.2";"Intra-peritoneal abscess (not pelvic) (Nonsurgical)" +"2.3.10.27.3";"CAPD related peritonitis (Nonsurgical)" +"2.3.10.27.4";"Fournier's gangrene of abdominal wall (Nonsurgical)" +"2.3.10.27.5";"Necrotising fasciitis (Nonsurgical)" +"2.3.10.27.6";"Pelvic infection or abscess (Nonsurgical)" +"2.3.10.27.7";"Retroperitoneal abscess or infection (Nonsurgical)" +"2.3.10.27.8";"Tuberculous peritonitis (Nonsurgical)" +"2.3.10.38.1";"Trauma to abdominal wall (Nonsurgical)" +"2.3.10.38.2";"Abdominal wound dehiscence (Nonsurgical)" +"2.3.10.38.3";"Ruptured diaphragm (Nonsurgical)" +"2.3.10.39.1";"Primary retroperitoneal malignancy (Nonsurgical)" +"2.3.10.39.2";"Secondary retroperitoneal malignancy (Nonsurgical)" +"2.4.1.15.2";"Epistaxis (Nonsurgical)" +"2.4.1.27.1";"Mandible, facial bones, dental or salivary infection (Nonsurgical)" +"2.4.1.27.2";"Tonsil or pharyngeal infection (Nonsurgical)" +"2.4.1.27.3";"Orbital cellulitis (Nonsurgical)" +"2.4.1.38.1";"Mouth, mandible, pharynx, or facial bones trauma (Nonsurgical)" +"2.4.1.38.2";"Ocular trauma (Nonsurgical)" +"2.4.1.39.1";"Head or neck tumour not intra-oral or intra-cranial (Nonsurgical)" +"2.4.1.39.2";"Intra-oral or pharyngeal tumour (Nonsurgical)" +"2.4.1.39.3";"Ocular tumour (Nonsurgical)" +"2.4.1.41.1";"Carotid or vertebral artery stenosis or occlusion (Nonsurgical)" +"2.4.1.41.2";"Carotid or vertebral artery aneurysm or dissection (Nonsurgical)" +"2.4.1.41.3";"Traumatic rupture or puncture of carotid or vertebral artery (Nonsurgical)" +"2.4.1.41.4";"Instrumental damage to carotid or vertebral artery (Nonsurgical)" +"2.4.1.41.5";"Extracranial or neck arterio-venous malformation or haemangioma (Nonsurgical)" +"2.4.1.41.6";"Vasculitis of cerebral circulation (Nonsurgical)" +"2.4.1.41.7";"Vascular lesion of eyes (Nonsurgical)" +"2.4.2.7.1";"Toxic or drug-induced coma or encephalopathy (Nonsurgical)" +"2.4.2.7.2";"Metabolic coma or encephalopathy (Nonsurgical)" +"2.4.2.7.3";"Anoxic or ischaemic coma or encephalopathy (Nonsurgical)" +"2.4.2.7.4";"Degenerative coma or encephalopathy (Nonsurgical)" +"2.4.2.7.5";"Post-anaesthetic encephalopathy aetiology uncertain (Nonsurgical)" +"2.4.2.7.6";"Brainstem death (Nonsurgical)" +"2.4.2.7.7";"Primary brain injury (Nonsurgical)" +"2.4.2.7.8";"Reye's or Reye-like syndrome (Nonsurgical)" +"2.4.2.8.1";"Congenital hydrocephalus (Nonsurgical)" +"2.4.2.8.2";"Secondary hydrocephalus (Nonsurgical)" +"2.4.2.8.3";"Arnold-Chiari malformation (Nonsurgical)" +"2.4.2.8.4";"Cerebral palsy (Nonsurgical)" +"2.4.2.8.5";"Congenital abnormality of skull (Nonsurgical)" +"2.4.2.8.6";"Parkinson's Disease (Nonsurgical)" +"2.4.2.8.7";"Multiple sclerosis (Nonsurgical)" +"2.4.2.8.8";"Central hypoventilation (Ondine's curse) (Nonsurgical)" +"2.4.2.15.1";"Intracerebral bleeding (Nonsurgical)" +"2.4.2.15.2";"Subarachnoid bleeding (Nonsurgical)" +"2.4.2.15.3";"Subdural haematoma (Nonsurgical)" +"2.4.2.15.4";"Extradural haematoma (Nonsurgical)" +"2.4.2.27.1";"Meningitis (Nonsurgical)" +"2.4.2.27.2";"Encephalitis (Nonsurgical)" +"2.4.2.27.3";"Intracranial abscess (Nonsurgical)" +"2.4.2.27.4";"Orbital cellulitis (Nonsurgical)" +"2.4.2.27.5";"Infected CSF shunt (Nonsurgical)" +"2.4.2.33.1";"Status epilepticus or uncontrolled seizures (Nonsurgical)" +"2.4.2.33.2";"Eclampsia (Nonsurgical)" +"2.4.2.33.3";"Alcohol withdrawal seizures (Nonsurgical)" +"2.4.2.38.1";"Primary brain injury (Nonsurgical)" +"2.4.2.38.2";"Subdural haematoma (Nonsurgical)" +"2.4.2.38.3";"Extradural haematoma (Nonsurgical)" +"2.4.2.38.4";"Non-accidental injury to brain (Nonsurgical)" +"2.4.2.39.1";"Primary brain or meningeal tumour (Nonsurgical)" +"2.4.2.39.2";"Secondary intracranial tumour (Nonsurgical)" +"2.4.2.41.1";"Berry or other intracranial aneurysm (Nonsurgical)" +"2.4.2.41.2";"Intracranial arterio-venous malformation (Nonsurgical)" +"2.4.2.41.3";"Thrombo-occlusive disease of brain (Nonsurgical)" +"2.4.2.41.4";"Arterial air embolus (Nonsurgical)" +"2.4.2.41.5";"Vasculitis of cerebral circulation (Nonsurgical)" +"2.4.2.41.6";"Embolic brain lesions causing respiratory failure (Nonsurgical)" +"2.4.3.8.1";"Spinal cord or nerve root compression by intervertebral disc (Nonsurgical)" +"2.4.3.8.2";"Spinal stenosis (Nonsurgical)" +"2.4.3.8.3";"Spina bifida or meningomyelcoele (Nonsurgical)" +"2.4.3.8.4";"Multiple sclerosis (Nonsurgical)" +"2.4.3.9.1";"Motor neurone disease (Nonsurgical)" +"2.4.3.9.2";"Transverse myelitis (Nonsurgical)" +"2.4.3.12.1";"Epidural injection or infusion (Nonsurgical)" +"2.4.3.12.2";"Spinal injection or infusion (Nonsurgical)" +"2.4.3.27.1";"Epidural or subdural abscess (Nonsurgical)" +"2.4.3.27.2";"Poliomyelitis (Nonsurgical)" +"2.4.3.27.3";"Tetanus (Nonsurgical)" +"2.4.3.38.1";"Cervical cord injury (Nonsurgical)" +"2.4.3.38.2";"Thoracic cord injury (Nonsurgical)" +"2.4.3.38.3";"Lumbar cord or cauda equina injury (Nonsurgical)" +"2.4.3.38.4";"Chronic spinal cord injury (Nonsurgical)" +"2.4.3.39.1";"Primary tumour of cord or meninges (Nonsurgical)" +"2.4.3.39.2";"Extrinsic compression of cord by non-neural tumour (Nonsurgical)" +"2.4.4.9.1";"Motor neurone disease (Nonsurgical)" +"2.4.4.27.1";"Infective polyneuropathy (Nonsurgical)" +"2.4.4.27.2";"Leprosy (Nonsurgical)" +"2.4.4.28.1";"Guillain-Barre syndrome (Nonsurgical)" +"2.4.4.28.2";"Toxic polyneuropathy (Nonsurgical)" +"2.4.4.28.3";"Autoimmune polyneuropathy (Nonsurgical)" +"2.4.4.28.4";"Porphyria (Nonsurgical)" +"2.4.4.38.1";"Brachial plexus injury (Nonsurgical)" +"2.4.4.38.2";"Lumbar plexus injury (Nonsurgical)" +"2.4.5.8.1";"Pseudocholinesterase deficiency (Nonsurgical)" +"2.4.5.8.2";"Failure of reversal of non-depolarising neuromuscular blockers (Nonsurgical)" +"2.4.5.8.3";"Myasthenia gravis (Nonsurgical)" +"2.5.3.9.1";"Traumatic pancreatitis or pancreatic damage (Nonsurgical)" +"2.5.3.9.2";"Instrumental damage to pancreatic duct (Nonsurgical)" +"2.5.3.10.1";"Trauma to abdominal wall (Nonsurgical)" +"2.5.3.10.3";"Ruptured diaphragm (Nonsurgical)" +"2.5.4.1.1";"Mouth, mandible, pharynx, or facial bones trauma (Nonsurgical)" +"2.5.4.1.2";"Ocular trauma (Nonsurgical)" +"2.5.4.2.1";"Primary brain injury (Nonsurgical)" +"2.5.4.2.2";"Subdural haematoma (Nonsurgical)" +"2.5.4.2.3";"Extradural haematoma (Nonsurgical)" +"2.5.4.2.4";"Non-accidental injury to brain (Nonsurgical)" +"2.5.4.3.1";"Cervical cord injury (Nonsurgical)" +"2.5.4.3.2";"Thoracic cord injury (Nonsurgical)" +"2.5.4.3.3";"Lumbar cord or cauda equina injury (Nonsurgical)" +"2.5.4.3.4";"Chronic spinal cord injury (Nonsurgical)" +"2.5.4.4.1";"Brachial plexus injury (Nonsurgical)" +"2.5.4.4.2";"Lumbar plexus injury (Nonsurgical)" +"2.5.5.1.1";"Traumatic renal rupture (Nonsurgical)" +"2.5.5.1.2";"Traumatic disruption of ureters (Nonsurgical)" +"2.5.5.1.3";"Traumatic damage to renal vessels (Nonsurgical)" +"2.5.5.1.4";"Instrumental damage to kidney, ureter or vessels (Nonsurgical)" +"2.5.5.2.1";"Traumatic perforation or rupture of bladder (Nonsurgical)" +"2.5.5.2.2";"Traumatic perforation or rupture of urethra (Nonsurgical)" +"2.5.5.2.3";"Instrumental damage to bladder or urethra (Nonsurgical)" +"2.5.5.3.1";"Uterine rupture or perforation (Nonsurgical)" +"2.5.5.3.2";"Instrumental damage to uterus, ovaries or fallopian tubes (Nonsurgical)" +"2.5.5.3.3";"Non-accidental injury to female genitalia (Nonsurgical)" +"2.5.5.4.1";"Uterine rupture or perforation (Nonsurgical)" +"2.5.5.4.2";"Instrumental damage to uterus, ovaries or fallopian tubes (Nonsurgical)" +"2.5.5.5.1";"Traumatic damage to testes, prostrate or penis (Nonsurgical)" +"2.5.5.5.2";"Instrumental damage to testes, prostrate or penis (Nonsurgical)" +"2.5.5.5.3";"Non-accidental injury to male genitalia (Nonsurgical)" +"2.5.6.1.1";"Cervical spine fracture or ligamentous injury (Nonsurgical)" +"2.5.6.1.2";"Thoracic spine fracture or ligamentous injury (Nonsurgical)" +"2.5.6.1.3";"Lumbar spine fracture or ligamentous injury (Nonsurgical)" +"2.5.6.1.4";"Haemorrhage or haematoma from vertebral column (Nonsurgical)" +"2.5.6.2.1";"Pelvic fracture (Nonsurgical)" +"2.5.6.2.2";"Single long bone fracture (Nonsurgical)" +"2.5.6.2.3";"Multiple long bone fractures (Nonsurgical)" +"2.5.6.2.4";"Non-accidental injury to pelvis, long bones or joints (Nonsurgical)" +"2.5.6.2.5";"Haemorrhage or haematoma from pelvis, long bones or joints (Nonsurgical)" +"2.5.6.3.1";"Crush injury (Nonsurgical)" +"2.5.6.3.2";"Compartment syndrome (Nonsurgical)" +"2.5.6.3.3";"Non-accidental injury to muscles or connective tissue (Nonsurgical)" +"2.5.6.3.4";"Haemorrhage or haematoma from muscles or connective tissue (Nonsurgical)" +"2.5.6.3.5";"Non-accidental injury to muscles or connective tissue (Nonsurgical)" +"2.5.6.3.6";"Amputation of limb (Nonsurgical)" +"2.5.7.1.1";"Electrical burns (Nonsurgical)" +"2.5.7.1.2";"Burns caused by dry heat (Nonsurgical)" +"2.5.7.1.3";"Degloving injury (Nonsurgical)" +"2.5.7.1.4";"Non-accidental injury to skin (Nonsurgical)" +"2.6.8.1.1";"Accidental poisoning with sedatives or hypnotics (Nonsurgical)" +"2.6.8.1.2";"Accidental poisoning with narcotics (Nonsurgical)" +"2.6.8.1.3";"Accidental poisoning with tri- and tetracyclic antidepressants (Nonsurgical)" +"2.6.8.1.4";"Accidental poisoning with non-cyclic antidepressants (Nonsurgical)" +"2.6.8.1.5";"Accidental poisoning with cardiovascular drugs (Nonsurgical)" +"2.6.8.1.6";"Accidental poisoning with aspirin (Nonsurgical)" +"2.6.8.1.7";"Accidental poisoning with paracetamol (Nonsurgical)" +"2.6.8.1.8";"Accidental poisoning with industrial or agricultural chemicals (Nonsurgical)" +"2.6.8.1.9";"Accidental poisoning with insulin (Nonsurgical)" +"2.6.8.1.10";"Accidental poisoning with alcohol (Nonsurgical)" +"2.6.8.1.11";"Accidental poisoning with carbon monoxide (Nonsurgical)" +"2.6.8.1.12";"Accidental poisoning with gases (not carbon monoxide) (Nonsurgical)" +"2.6.8.1.13";"Accidental poisoning with agent not defined (Nonsurgical)" +"2.6.8.34.1";"Self poisoning with sedatives or hypnotics (Nonsurgical)" +"2.6.8.34.2";"Self poisoning with narcotics (Nonsurgical)" +"2.6.8.34.3";"Self poisoning with tri- and tetracyclic antidepressants (Nonsurgical)" +"2.6.8.34.4";"Self poisoning with non-cyclic antidepressants (Nonsurgical)" +"2.6.8.34.5";"Self poisoning with cardiovascular drugs (Nonsurgical)" +"2.6.8.34.6";"Self poisoning with aspirin (Nonsurgical)" +"2.6.8.34.7";"Self poisoning with paracetamol (Nonsurgical)" +"2.6.8.34.8";"Self poisoning with industrial or agricultural chemicals (Nonsurgical)" +"2.6.8.34.9";"Self poisoning with insulin (Nonsurgical)" +"2.6.8.34.10";"Self poisoning with alcohol (Nonsurgical)" +"2.6.8.34.11";"Self poisoning with carbon monoxide (Nonsurgical)" +"2.6.8.34.12";"Self poisoning with gases (not carbon monoxide) (Nonsurgical)" +"2.6.8.34.13";"Self poisoning with agent not defined (Nonsurgical)" +"2.7.1.8.1";"Polycystic kidneys (Nonsurgical)" +"2.7.1.8.2";"Renal agenesis or hypoplasia (Nonsurgical)" +"2.7.1.8.3";"Nephrolithiasis (Nonsurgical)" +"2.7.1.13.1";"Acute renal failure due to infection (Nonsurgical)" +"2.7.1.13.2";"Acute renal failure due to haemodynamic causes (Nonsurgical)" +"2.7.1.13.3";"Acute renal failure due to toxic or drug causes (Nonsurgical)" +"2.7.1.13.4";"Acute renal failure other causes (Nonsurgical)" +"2.7.1.13.5";"Chronic renal failure (Nonsurgical)" +"2.7.1.15.1";"Retroperitoneal haemorrhage (Nonsurgical)" +"2.7.1.15.2";"Traumatic damage to renal vessels (Nonsurgical)" +"2.7.1.15.3";"Renal artery aneurysm or dissection (Nonsurgical)" +"2.7.1.27.1";"Pyelonephritis or pyonephrosis (Nonsurgical)" +"2.7.1.27.2";"Perinephric abscess (Nonsurgical)" +"2.7.1.27.3";"Leptospirosis (Nonsurgical)" +"2.7.1.27.4";"CAPD related peritonitis (Nonsurgical)" +"2.7.1.28.1";"Glomerulonephritis (Nonsurgical)" +"2.7.1.28.2";"Nephrotic syndrome (Nonsurgical)" +"2.7.1.28.3";"Renal vasculitis (Nonsurgical)" +"2.7.1.30.1";"Ureteric or renal obstruction (Nonsurgical)" +"2.7.1.37.1";"Allograft (Nonsurgical)" +"2.7.1.37.2";"Autotransplant of kidney (Nonsurgical)" +"2.7.1.37.3";"Rejection of kidney transplant (Nonsurgical)" +"2.7.1.38.1";"Traumatic renal rupture (Nonsurgical)" +"2.7.1.38.2";"Traumatic disruption of ureters (Nonsurgical)" +"2.7.1.38.3";"Traumatic damage to renal vessels (Nonsurgical)" +"2.7.1.38.4";"Instrumental damage to kidney, ureter or vessels (Nonsurgical)" +"2.7.1.39.1";"Renal or ureteric tumour (Nonsurgical)" +"2.7.1.41.1";"Renal artery stenosis or occlusion (Nonsurgical)" +"2.7.1.41.2";"Renal artery aneurysm or dissection (Nonsurgical)" +"2.7.1.41.3";"Renal artery embolus (Nonsurgical)" +"2.7.1.41.4";"Renal infarction (Nonsurgical)" +"2.7.1.41.5";"Retroperitoneal haemorrhage (Nonsurgical)" +"2.7.1.41.6";"Traumatic damage to renal vessels (Nonsurgical)" +"2.7.1.41.7";"Renal vasculitis (Nonsurgical)" +"2.7.2.8.1";"Abnormality of bladder or urinary diversion procedure (Nonsurgical)" +"2.7.2.8.2";"Abnormality of urethra (Nonsurgical)" +"2.7.2.15.1";"Haemorrhage from urethra (Nonsurgical)" +"2.7.2.15.2";"Haemorrhage from bladder (Nonsurgical)" +"2.7.2.27.1";"Cystitis, pyocystis or urethritis (Nonsurgical)" +"2.7.2.30.1";"Bladder outlet obstruction (Nonsurgical)" +"2.7.2.38.1";"Traumatic perforation or rupture of bladder (Nonsurgical)" +"2.7.2.38.2";"Traumatic perforation or rupture of urethra (Nonsurgical)" +"2.7.2.38.3";"Instrumental damage to bladder or urethra (Nonsurgical)" +"2.7.2.39.1";"Bladder tumour (Nonsurgical)" +"2.7.2.39.2";"Urethral tumour (Nonsurgical)" +"2.7.3.15.1";"Haemorrhage from uterus (Nonsurgical)" +"2.7.3.15.2";"Haemorrhage from ovary or fallopian tubes (Nonsurgical)" +"2.7.3.27.1";"Uterine cavity infection (Nonsurgical)" +"2.7.3.27.2";"Pelvic infection or abscess (Nonsurgical)" +"2.7.3.27.3";"Toxic shock syndrome (Nonsurgical)" +"2.7.3.27.4";"Tubo-ovarian abscess (Nonsurgical)" +"2.7.3.32.1";"Ovarian hyperstimulation (Nonsurgical)" +"2.7.3.38.1";"Uterine rupture or perforation (Nonsurgical)" +"2.7.3.38.2";"Instrumental damage to uterus, ovaries or fallopian tubes (Nonsurgical)" +"2.7.3.38.3";"Non-accidental injury to female genitalia (Nonsurgical)" +"2.7.3.39.1";"Ovarian tumour (Nonsurgical)" +"2.7.3.39.2";"Uterine tumour (Nonsurgical)" +"2.7.3.39.3";"Vulval or vaginal tumour (Nonsurgical)" +"2.7.3.39.4";"Ovarian cyst (Nonsurgical)" +"2.7.4.15.1";"Antepartum haemorrhage (Nonsurgical)" +"2.7.4.15.2";"Peri- and postpartum haemorrhage (Nonsurgical)" +"2.7.4.15.3";"Ectopic pregnancy (Nonsurgical)" +"2.7.4.27.1";"Amnionitis (Nonsurgical)" +"2.7.4.27.2";"Pelvic infection or abscess (Nonsurgical)" +"2.7.4.27.3";"Infected retained products of conception (Nonsurgical)" +"2.7.4.27.4";"Septic abortion (Nonsurgical)" +"2.7.4.28.1";"Intrauterine death (Nonsurgical)" +"2.7.4.32.1";"Ovarian hyperstimulation (Nonsurgical)" +"2.7.4.38.1";"Uterine rupture or perforation (Nonsurgical)" +"2.7.4.38.2";"Instrumental damage to uterus, ovaries or fallopian tubes (Nonsurgical)" +"2.7.4.39.1";"Molar pregnancy (Nonsurgical)" +"2.7.4.41.1";"Amniotic fluid embolus (Nonsurgical)" +"2.7.4.41.2";"HELLP syndrome (Nonsurgical)" +"2.7.4.41.3";"Pre-eclampsia (Nonsurgical)" +"2.7.5.15.1";"Bleeding from prostate gland (Nonsurgical)" +"2.7.5.27.1";"Prostatitis (Nonsurgical)" +"2.7.5.27.2";"Testicular, prostatatic or penile abscess (Nonsurgical)" +"2.7.5.27.3";"Fournier's gangrene of perineal tissues (Nonsurgical)" +"2.7.5.38.1";"Traumatic damage to testes, prostrate or penis (Nonsurgical)" +"2.7.5.38.2";"Instrumental damage to testes, prostrate or penis (Nonsurgical)" +"2.7.5.38.3";"Non-accidental injury to male genitalia (Nonsurgical)" +"2.7.5.39.1";"Testicular or penile tumour (Nonsurgical)" +"2.7.5.39.2";"Benign prostatic hyperplasia (Nonsurgical)" +"2.7.5.39.3";"Malignant prostatic tumour (Nonsurgical)" +"2.8.1.8.1";"Thyroid cysts (Nonsurgical)" +"2.8.1.15.1";"Haemorrhage into or from thyroid (Nonsurgical)" +"2.8.1.32.1";"Hyperthyroidism (Nonsurgical)" +"2.8.1.32.2";"Thyroid crisis (Nonsurgical)" +"2.8.1.39.1";"Thyroid tumour (Nonsurgical)" +"2.8.1.40.1";"Hypothyroidism or myxoedema (Nonsurgical)" +"2.8.2.15.1";"Pituitary haemorrhage (Nonsurgical)" +"2.8.2.32.1";"Cushing's syndrome (Nonsurgical)" +"2.8.2.32.2";"Acromegaly (Nonsurgical)" +"2.8.2.32.3";"Prolactinoma (Nonsurgical)" +"2.8.2.39.1";"Cushing's syndrome (Nonsurgical)" +"2.8.2.39.2";"Acromegaly (Nonsurgical)" +"2.8.2.39.3";"Prolactinoma (Nonsurgical)" +"2.8.2.39.4";"Pituitary tumour not defined (Nonsurgical)" +"2.8.2.40.1";"Diabetes insipidus (central) (Nonsurgical)" +"2.8.2.40.2";"Hypopituitarism (Nonsurgical)" +"2.8.3.8.1";"Inborn errors of adrenal function (Nonsurgical)" +"2.8.3.15.1";"Adrenal haemorrhage (Nonsurgical)" +"2.8.3.32.1";"Cushing's syndrome (Nonsurgical)" +"2.8.3.39.1";"Phaeochromocytoma (Nonsurgical)" +"2.8.3.39.2";"Adrenocortical tumours (Nonsurgical)" +"2.8.3.40.1";"Addison's disease (Nonsurgical)" +"2.8.4.37.1";"Islet cell transplant (Nonsurgical)" +"2.8.4.39.1";"Insulinoma (Nonsurgical)" +"2.8.4.10.1";"Diabetic ketoacidosis (Nonsurgical)" +"2.8.4.10.2";"Hyperosmolar coma (Nonsurgical)" +"2.8.4.10.3";"Hypoglycaemia due to insulin therapy (Nonsurgical)" +"2.8.4.10.4";"Insulinoma (Nonsurgical)" +"2.8.4.10.5";"Diabetes mellitus (Nonsurgical)" +"2.8.5.8.1";"Congenital hypoparathyroidism (Nonsurgical)" +"2.8.5.8.2";"Auto-immune hypoparathyroidism (Nonsurgical)" +"2.8.5.8.3";"Post-surgical hypoparathyroidism (Nonsurgical)" +"2.8.5.32.1";"Hypercalcaemia (Nonsurgical)" +"2.8.5.39.1";"Parathyroid tumour (Nonsurgical)" +"2.8.5.40.1";"Congenital hypoparathyroidism (Nonsurgical)" +"2.8.5.40.2";"Auto-immune hypoparathyroidism (Nonsurgical)" +"2.8.5.40.3";"Post-surgical hypoparathyroidism (Nonsurgical)" +"2.8.6.32.1";"Ovarian hyperstimulation (Nonsurgical)" +"2.8.6.39.1";"Ovarian tumour (Nonsurgical)" +"2.8.6.39.2";"Ovarian cyst (Nonsurgical)" +"2.8.7.20.1";"Malignant hyperpyrexia (Nonsurgical)" +"2.8.7.20.2";"Drug induced hyperpyrexia or neuroleptic malignant syndrome (Nonsurgical)" +"2.8.7.20.3";"Heat-stroke or heat exhaustion (Nonsurgical)" +"2.8.7.26.1";"Accidental hypothermia (Nonsurgical)" +"2.8.7.26.2";"Induced or post-operative hypothermia (Nonsurgical)" +"2.8.8.42.1";"Paraneoplastic hypercalcaemia (Nonsurgical)" +"2.8.8.42.2";"Vitamin D intoxication (Nonsurgical)" +"2.8.8.42.3";"Milk-alkali syndrome (Nonsurgical)" +"2.8.8.21.1";"Hypoparathyroidism (Nonsurgical)" +"2.8.8.21.2";"Chelating agent toxicity (Nonsurgical)" +"2.8.8.17.1";"Iatrogenic potassium intoxication (Nonsurgical)" +"2.8.8.17.2";"Renal failure (Nonsurgical)" +"2.8.8.17.3";"Familial periodic paralysis (Nonsurgical)" +"2.8.8.23.1";"Paraneoplastic hypokalaemia (Nonsurgical)" +"2.8.8.23.2";"Drug induced hypokalaemia (Nonsurgical)" +"2.8.8.23.3";"Renal hypokalaemia (Nonsurgical)" +"2.8.8.18.1";"Diabetes insipidus (central or nephrogenic) (Nonsurgical)" +"2.8.8.18.2";"Water depletion (Nonsurgical)" +"2.8.8.18.3";"Excess sodium intake (Nonsurgical)" +"2.8.8.24.1";"Water intoxication (Nonsurgical)" +"2.8.8.24.2";"Iatrogenic hyponatraemia (Nonsurgical)" +"2.8.8.24.3";"Paraneoplastic hyponatraemia (Nonsurgical)" +"2.8.8.16.1";"Diabetic ketoacidosis (Nonsurgical)" +"2.8.8.16.2";"Hyperosmolar states (Nonsurgical)" +"2.8.8.22.1";"Hypoglycaemia due to insulin therapy (Nonsurgical)" +"2.8.8.22.2";"Insulinoma (Nonsurgical)" +"2.8.8.22.3";"Hypoglycaemia not due to excess insulin (Nonsurgical)" +"2.8.8.2.1";"Hyperchloraemic acidosis (Nonsurgical)" +"2.8.8.2.2";"Lactic acidosis (Nonsurgical)" +"2.8.8.2.3";"Diabetic ketoacidosis (Nonsurgical)" +"2.8.8.4.1";"Gastric fluid loss (Nonsurgical)" +"2.8.8.4.2";"Alkali ingestion (Nonsurgical)" +"2.8.8.43.1";"Water intoxication (Nonsurgical)" +"2.8.8.43.2";"Excess parenteral fluids (Nonsurgical)" +"2.8.8.34.1";"Self poisoning with sedatives or hypnotics (Nonsurgical)" +"2.8.8.34.2";"Self poisoning with narcotics (Nonsurgical)" +"2.8.8.34.3";"Self poisoning with tri- and tetracyclic antidepressants (Nonsurgical)" +"2.8.8.34.4";"Self poisoning with non-cyclic antidepressants (Nonsurgical)" +"2.8.8.34.5";"Self poisoning with cardiovascular drugs (Nonsurgical)" +"2.8.8.34.6";"Self poisoning with aspirin (Nonsurgical)" +"2.8.8.34.7";"Self poisoning with paracetamol (Nonsurgical)" +"2.8.8.34.8";"Self poisoning with industrial or agricultural chemicals (Nonsurgical)" +"2.8.8.34.9";"Self poisoning with insulin (Nonsurgical)" +"2.8.8.34.10";"Self poisoning with alcohol (Nonsurgical)" +"2.8.8.34.11";"Self poisoning with carbon monoxide (Nonsurgical)" +"2.8.8.34.12";"Self poisoning with gases (not carbon monoxide) (Nonsurgical)" +"2.8.8.34.13";"Self poisoning with agent not defined (Nonsurgical)" +"2.8.8.1.1";"Accidental poisoning with sedatives or hypnotics (Nonsurgical)" +"2.8.8.1.2";"Accidental poisoning with narcotics (Nonsurgical)" +"2.8.8.1.3";"Accidental poisoning with tri- and tetracyclic antidepressants (Nonsurgical)" +"2.8.8.1.4";"Accidental poisoning with non-cyclic antidepressants (Nonsurgical)" +"2.8.8.1.5";"Accidental poisoning with cardiovascular drugs (Nonsurgical)" +"2.8.8.1.6";"Accidental poisoning with aspirin (Nonsurgical)" +"2.8.8.1.7";"Accidental poisoning with paracetamol (Nonsurgical)" +"2.8.8.1.8";"Accidental poisoning with industrial or agricultural chemicals (Nonsurgical)" +"2.8.8.1.9";"Accidental poisoning with insulin (Nonsurgical)" +"2.8.8.1.10";"Accidental poisoning with alcohol (Nonsurgical)" +"2.8.8.1.11";"Accidental poisoning with carbon monoxide (Nonsurgical)" +"2.8.8.1.12";"Accidental poisoning with gases (not carbon monoxide) (Nonsurgical)" +"2.8.8.1.13";"Accidental poisoning with agent not defined (Nonsurgical)" +"2.8.8.44.1";"Snake bite (Nonsurgical)" +"2.8.8.44.2";"Envenomation other than snake (Nonsurgical)" +"2.8.8.3.1";"Alcohol overdose (Nonsurgical)" +"2.8.8.3.2";"Alcohol withdrawal seizures (Nonsurgical)" +"2.8.8.3.3";"Delerium tremens (Nonsurgical)" +"2.8.8.3.4";"Acute alcoholic hepatitis (Nonsurgical)" +"2.8.10.45.1";"Inborn errors of metabolism (Nonsurgical)" +"2.8.9.29.1";"Morbid obesity (Nonsurgical)" +"2.8.9.36.1";"Eating disorder (Nonsurgical)" +"2.8.11.53.1";"Trisomy 18 (Edward's syndrome) (Nonsurgical)" +"2.8.11.53.2";"Trisomy 21 (Down's syndrome) (Nonsurgical)" +"2.8.11.53.3";"Trisomy 13 (Patau or trisomy D) (Nonsurgical)" +"2.8.11.53.4";"Other trisomy (Nonsurgical)" +"2.8.11.54.1";"Chromosomal deletion syndromes (partial monosomy) (Nonsurgical)" +"2.8.11.46.1";"Turner's syndrome (XO) (Nonsurgical)" +"2.8.11.46.2";"Klinefelter's syndrome (XXY) (Nonsurgical)" +"2.8.11.46.3";"Other sex chromosome disorders (Nonsurgical)" +"2.8.11.47.1";"Contiguous gene syndromes (Nonsurgical)" +"2.9.1.8.1";"Anaemias (Nonsurgical)" +"2.9.1.8.2";"Polycythaemia (Nonsurgical)" +"2.9.1.8.3";"Porphyria (Nonsurgical)" +"2.9.1.8.4";"Sickle cell disease (Nonsurgical)" +"2.9.1.8.5";"Spherocytosis or stomatocytosis (Nonsurgical)" +"2.9.1.8.6";"Thalassaemia (Nonsurgical)" +"2.9.1.8.7";"Haemophilia or von Willebrand's disease (Nonsurgical)" +"2.9.1.14.1";"Autoimmume haemolysis (Nonsurgical)" +"2.9.1.14.2";"Drug induced haemolysis (Nonsurgical)" +"2.9.1.14.3";"Disseminated intravascular coagulation (Nonsurgical)" +"2.9.1.14.4";"Idiopathic thrombocytopaenic purpura (Nonsurgical)" +"2.9.1.14.5";"Drug induced thrombocytopaenia (Nonsurgical)" +"2.9.1.14.6";"Haemolytic or uraemic syndrome (Nonsurgical)" +"2.9.1.14.7";"Henoch-Schonlein purpura (Nonsurgical)" +"2.9.1.14.8";"Transfusion reaction (Nonsurgical)" +"2.9.1.14.9";"HELLP syndrome (Nonsurgical)" +"2.9.1.14.10";"Thrombotic thrombocytopaenic purpura (Nonsurgical)" +"2.9.1.27.1";"Leishmaniasis (Nonsurgical)" +"2.9.1.27.2";"Malaria (Nonsurgical)" +"2.9.1.27.3";"HIV (Nonsurgical)" +"2.9.1.27.4";"Septicaemia (Nonsurgical)" +"2.9.1.27.5";"Leptospirosis (Nonsurgical)" +"2.9.1.27.6";"Mononucleosis (Nonsurgical)" +"2.9.2.25.1";"Aplastic anaemia (Nonsurgical)" +"2.9.2.25.2";"Drug induced hypoplasia (Nonsurgical)" +"2.9.2.25.3";"Myelodysplasia (Nonsurgical)" +"2.9.2.37.1";"Bone marrow transplant (Nonsurgical)" +"2.9.2.37.2";"Graft vs Host disease (Nonsurgical)" +"2.9.2.39.1";"Acute lymphoblastic leukaemia (Nonsurgical)" +"2.9.2.39.2";"Acute myeloblastic leukaemia (Nonsurgical)" +"2.9.2.39.3";"Chronic lymphocytic leukaemia (Nonsurgical)" +"2.9.2.39.4";"Chronic myelogenous leukaemia (Nonsurgical)" +"2.9.2.39.5";"Hodgkin's lymphoma (Nonsurgical)" +"2.9.2.39.6";"Non-Hodgkin's lymphoma (Nonsurgical)" +"2.9.2.39.7";"Myeloma (Nonsurgical)" +"2.10.1.8.1";"Rheumatoid or osteoarthritis (Nonsurgical)" +"2.10.1.8.2";"Kyphoscoliosis (Nonsurgical)" +"2.10.1.8.3";"Spinal ankylosis (Nonsurgical)" +"2.10.1.8.4";"Spina bifida or meningomyelocele (Nonsurgical)" +"2.10.1.15.1";"Haemorrhage from or haematoma of vertebral column (Nonsurgical)" +"2.10.1.27.1";"Discitis (Nonsurgical)" +"2.10.1.27.2";"Osteomyelitis or vertebral abscess (Nonsurgical)" +"2.10.1.38.1";"Cervical spine fracture or ligamentous injury (Nonsurgical)" +"2.10.1.38.2";"Thoracic spine fracture or ligamentous injury (Nonsurgical)" +"2.10.1.38.3";"Lumbar spine fracture or ligamentous injury (Nonsurgical)" +"2.10.1.39.1";"Primary tumour in vertebral column (Nonsurgical)" +"2.10.1.39.2";"Secondary tumour in vertebral column (Nonsurgical)" +"2.10.2.8.1";"Rheumatoid or osteoarthritis (Nonsurgical)" +"2.10.2.15.1";"Haemorrhage from or haematoma of pelvis, long bones or joints (Nonsurgical)" +"2.10.2.27.1";"Osteomyelitis (Nonsurgical)" +"2.10.2.27.2";"Infective arthritis (Nonsurgical)" +"2.10.2.27.3";"Pelvic infection or abscess (Nonsurgical)" +"2.10.2.38.1";"Pelvic fracture (Nonsurgical)" +"2.10.2.38.2";"Single long bone fracture (Nonsurgical)" +"2.10.2.38.3";"Multiple long bone fractures (Nonsurgical)" +"2.10.2.38.4";"Non-accidental injury to pelvis, long bones or joints (Nonsurgical)" +"2.10.2.39.1";"Primary tumour of bone (Nonsurgical)" +"2.10.2.39.2";"Secondary tumour of bone (Nonsurgical)" +"2.10.3.8.1";"Congenital muscular dystrophy (Nonsurgical)" +"2.10.3.8.2";"Pseudocholinesterase deficiency (Nonsurgical)" +"2.10.3.8.3";"Myasthenia gravis (Nonsurgical)" +"2.10.3.9.1";"Degenerative myopathy (Nonsurgical)" +"2.10.3.15.1";"Haemorrhage from or haematoma of muscle or connective tissue (Nonsurgical)" +"2.10.3.15.2";"Compartment syndrome (Nonsurgical)" +"2.10.3.27.1";"Myositis (Nonsurgical)" +"2.10.3.27.2";"Necrotising fasciitis (Nonsurgical)" +"2.10.3.27.3";"Infective arthritis (Nonsurgical)" +"2.10.3.27.4";"Rhabdomyolysis (Nonsurgical)" +"2.10.3.27.5";"Abscess of muscle or connective tissue (Nonsurgical)" +"2.10.3.27.6";"Fournier's gangrene of perineal tissues (Nonsurgical)" +"2.10.3.28.1";"Polymyositis (Nonsurgical)" +"2.10.3.28.2";"Systemic lupus erythromatosis (Nonsurgical)" +"2.10.3.28.3";"Rhabdomyolysis (Nonsurgical)" +"2.10.3.28.4";"Myasthenia gravis (Nonsurgical)" +"2.10.3.28.5";"Rheumatoid arthritis (Nonsurgical)" +"2.10.3.28.6";"Systemic sclerosis (Nonsurgical)" +"2.10.3.28.7";"Vasculitis not defined (Nonsurgical)" +"2.10.3.38.1";"Crush injury (Nonsurgical)" +"2.10.3.38.2";"Compartment syndrome (Nonsurgical)" +"2.10.3.38.3";"Non-accidental injury to muscles or connective tissue (Nonsurgical)" +"2.10.3.38.4";"Amputation of limb (Nonsurgical)" +"2.10.3.39.1";"Primary or secondary tumour of muscle or connective tissue (Nonsurgical)" +"2.10.3.41.1";"Rhabdomyolysis (Nonsurgical)" +"2.10.3.41.2";"Compartment syndrome (Nonsurgical)" +"2.11.1.5.1";"Burns caused by dry heat (Nonsurgical)" +"2.11.1.5.2";"Steam burns or scalds (Nonsurgical)" +"2.11.1.5.3";"Electrical burns (Nonsurgical)" +"2.11.1.5.4";"Chemical burns (Nonsurgical)" +"2.11.1.27.1";"Cutaneous cellulitis (Nonsurgical)" +"2.11.1.27.2";"Toxic epidermal necrolysis (Nonsurgical)" +"2.11.1.27.3";"Necrotising fasciitis (Nonsurgical)" +"2.11.1.27.4";"Orbital cellulitis (Nonsurgical)" +"2.11.1.27.5";"Fournier's gangrene of perineal tissues (Nonsurgical)" +"2.11.1.27.6";"Leprosy (Nonsurgical)" +"2.11.1.28.1";"Exfoliative dermatitis (Nonsurgical)" +"2.11.1.28.2";"Pemphigus vulgaris (Nonsurgical)" +"2.11.1.28.3";"Psoriasis and pustular psoriasis (Nonsurgical)" +"2.11.1.28.4";"Toxic epidermal necrolysis (Nonsurgical)" +"2.11.1.28.5";"Erythema multiforme (Nonsurgical)" +"2.11.1.28.6";"Stevens-Johnson syndrome (Nonsurgical)" +"2.11.1.28.7";"Scleroderma (Nonsurgical)" +"2.11.1.38.1";"Degloving injury (Nonsurgical)" +"2.11.1.38.2";"Non-accidental injury to skin (Nonsurgical)" +"2.11.1.39.1";"Cutaneous melanoma (Nonsurgical)" +"2.11.1.39.2";"Basal cell carcinoma of skin (Nonsurgical)" +"2.11.1.39.3";"Carcinoma of breast (Nonsurgical)" +"2.12.1.48.1";"Alcohol dependence (Nonsurgical)" +"2.12.1.48.2";"Drug dependence (Nonsurgical)" +"2.12.1.48.3";"Delerium tremens (Nonsurgical)" +"2.12.1.49.1";"Depression (Nonsurgical)" +"2.12.1.49.2";"Mania or manic depression (Nonsurgical)" +"2.12.1.50.1";"Neurosis disorder (Nonsurgical)" +"2.12.1.50.2";"Personality disorder (Nonsurgical)" +"2.12.1.51.1";"Schizophrenia (Nonsurgical)" +"2.12.1.52.1";"Congenital mental handicap (Nonsurgical)" diff --git a/man/getItemInfo.Rd b/man/getItemInfo.Rd deleted file mode 100644 index 4753423..0000000 --- a/man/getItemInfo.Rd +++ /dev/null @@ -1,23 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/utilities.R -\name{getItemInfo} -\alias{getItemInfo} -\title{Retrieve information of the query code/item names from data.checklist} -\usage{ -getItemInfo(item.code) -} -\arguments{ -\item{item.code}{it can be either item name or NHIC_code, dt_code, or -meta_code} -} -\value{ -a vector contains NHIC_code, dt_code, meta_code and row_in_checklist -} -\description{ -Retrieve information of the query code/item names from data.checklist -} -\examples{ -getItemInfo("Time of death on your unit") -getItemInfo("NIHR_HIC_ICU_0001") -} - diff --git a/man/icnarc2diagnosis.Rd b/man/icnarc2diagnosis.Rd index 22ad61a..f662519 100644 --- a/man/icnarc2diagnosis.Rd +++ b/man/icnarc2diagnosis.Rd @@ -2,17 +2,21 @@ % Please edit documentation in R/utilities.R \name{icnarc2diagnosis} \alias{icnarc2diagnosis} -\title{Convert the ICNARC code to human readable diagnosis} +\title{Convert ICNARC codes to diagnosis (text)} \usage{ -icnarc2diagnosis(icnarc) +icnarc2diagnosis(icnarc, surgery = TRUE, levels = NULL) } \arguments{ \item{icnarc}{the ICNARC code, e.g. 1.1.1.1.1} + +\item{surgery}{T/F with or without surgical information} + +\item{levels}{category level, from [1 - 5]. TODO level 4.} } \value{ character ICNARC diagnosis } \description{ -Convert the ICNARC code to human readable diagnosis +NOTE: There are still ~600 code missing. see issue #133 } diff --git a/tests/testthat/test_utilities.r b/tests/testthat/test_utilities.r new file mode 100644 index 0000000..493a92c --- /dev/null +++ b/tests/testthat/test_utilities.r @@ -0,0 +1,28 @@ +context("Testing utility functions") + +test_that("break down ICNARC code", { + expect_equivalent(icnarc.breakdown("1.2.3.4.5"), "1.2.3") + expect_equivalent(icnarc.breakdown("1.2.3.4.5", 4), "1.2.3.4") + + expect_equivalent(icnarc.breakdown("10.2.3.4.5"), "10.2.3") + expect_equivalent(icnarc.breakdown("01.2.3.4.5"), "1.2.3") + + expect_equivalent(icnarc.breakdown("1.2.3"), "1.2.3") + expect_equivalent(icnarc.breakdown("1.2"), "1.2") + expect_equivalent(icnarc.breakdown("1"), "1") + + expect_equivalent(icnarc.breakdown(c("1", "1.2.3.4")), c("1", "1.2.3")) +}) + + +test_that("ICNARC Conversion",{ + expect_match(icnarc2diagnosis('1'), "Surgical") + expect_match(icnarc2diagnosis('2'), "Nonsurgical") + expect_true(icnarc2diagnosis("1.1") == "Respiratory (Surgical)") + expect_true(icnarc2diagnosis("2.1") == "Respiratory (Nonsurgical)") + expect_true(icnarc2diagnosis("02.01") == "Respiratory (Nonsurgical)") + expect_true(icnarc2diagnosis("02.01", FALSE) == "Respiratory") + expect_true(icnarc2diagnosis("02.01", levels=1) == "Nonsurgical") +}) + +