diff --git a/angular.json b/angular.json index fb16151..c1f393f 100644 --- a/angular.json +++ b/angular.json @@ -34,11 +34,12 @@ }, "configurations": { "production": { + "preserveSymlinks": true, "budgets": [ { "type": "initial", "maximumWarning": "500kb", - "maximumError": "1mb" + "maximumError": "3mb" }, { "type": "anyComponentStyle", @@ -117,6 +118,7 @@ "cli": { "schematicCollections": [ "@angular-eslint/schematics" - ] + ], + "analytics": false } } diff --git a/src/assets/catalogue.ts b/src/assets/catalogue.ts index 48afb8b..ed1f96c 100644 --- a/src/assets/catalogue.ts +++ b/src/assets/catalogue.ts @@ -1,1287 +1,92 @@ import { Category, Criteria } from '@samply/lens-core'; -import { Entities } from './entities'; +// import { Entities } from './entities'; import { Diagnosen } from './diagnosen'; -import { Morphologien } from './morphologien'; +// import { Morphologien } from './morphologien'; import { Lokalisation } from './lokalisation'; -import { MolecularMarker } from './molecular-marker'; +import { Manufacturer } from './manufacturer'; + export const staticCatalogue: Array = [ new Category('patient', 'Patient', [ new Criteria( 'gender', - { de: 'Geschlecht', en: 'Sex' }, + { de: 'Sex', en: 'Sex' }, 'string', '', ['IN'], [ { - key: 'male', - de: 'männlich', + key: 'M', + de: 'male', en: 'male', }, { - key: 'female', - de: 'weiblich', + key: 'F', + de: 'female', en: 'female', }, { key: 'other', - de: 'Sonstiges / intersexuell', - en: 'diverse', + de: 'other', + en: 'other', }, { - key: 'unknown', - de: 'unbekannt', + key: 'SCTID:261665006', + de: 'unknown', en: 'unknown', }, ] ), new Criteria( - '75186-7', - { de: 'Vitalstatus', en: 'Vital status' }, - 'string', - 'http://dktk.dkfz.de/fhir/onco/core/CodeSystem/VitalstatusCS', - ['IN'], - [ - { - key: 'lebend', - de: 'lebend', - en: '', - }, - { - key: 'verstorben', - de: 'verstorben', - en: '', - } /*, - { - "key": "unbekannt", // @TODO unbekannt can be deleted - "de": "unbekannt", - "en": "" - }*/, - ] - ), - ]), - new Category('tumor_entity', 'Tumorentität', Entities), - new Category('tumor_classification', 'Klassifikation von Tumoren', [ - new Criteria( - 'year_of_diagnosis', - { de: 'Diagnosejahr', en: 'Year of Diagnosis' }, + 'age_group', + { de: 'Age Group', en: 'Age Group' }, 'number', '', ['LOWER_THAN', 'GREATER_THAN', 'BETWEEN'] ), + ]), + new Category('clinical', 'Clinical Parameters', [ new Criteria( - 'age_at_diagnosis', - { de: 'Alter bei Erstdiagnose', en: 'Age at Diagnosis' }, + 'year_of_diagnosis', + { de: 'Year of Diagnosis', en: 'Year of Diagnosis' }, 'number', '', ['LOWER_THAN', 'GREATER_THAN', 'BETWEEN'] ), Diagnosen, - Lokalisation, - Morphologien, // TODO there is only the possibility to add a code, but (in the central search/reality) it must be possible to search for several codes at the same time. - // @TODO: Lokalisation (ICD-O-3) is missing - new Criteria( - 'bodySite', - { de: 'Seitenlokalisation', en: 'Side location' }, - 'string', - 'http://dktk.dkfz.de/fhir/onco/core/CodeSystem/SeitenlokalisationCS', - ['IN'], - [ - { - key: 'L', - de: 'Links', - en: '', - }, - { - key: 'R', - de: 'Rechts', - en: '', - }, - { - key: 'B', - de: 'Beidseitig', - en: '', - }, - { - key: 'M', - de: 'Mittellinie/Mittig', - en: '', - }, - { - key: 'U', - de: 'Unbekannt', - en: '', - }, - { - key: 'T', - de: 'Trifft nicht zu', - en: '', - }, - ] - ), - new Criteria( - '59542-1', - { de: 'Grading', en: 'Grading' }, - 'string', - 'http://dktk.dkfz.de/fhir/onco/core/CodeSystem/GradingCS', - ['IN'], - [ - { - key: '0', - de: 'malignes Melanom der Konjunktiva', - en: '', - }, - { - key: '1', - de: 'gut differenziert', - en: '', - }, - { - key: '2', - de: 'mäßig differenziert', - en: '', - }, - { - key: '3', - de: 'schlecht differenziert', - en: '', - }, - { - key: '4', - de: 'undifferenziert', - en: '', - }, - { - key: 'X', - de: 'nicht bestimmbar', - en: '', - }, - { - key: 'L', - de: 'low grade (G1 oder G2)', - en: '', - }, - { - key: 'M', - de: 'intermediate (G2 oder G3)', - en: '', - }, - { - key: 'H', - de: 'high grade (G3 oder G4)', - en: '', - }, - { - key: 'B', - de: 'Borderline', - en: '', - }, - { - key: 'U', - de: 'unbekannt', - en: '', - }, - { - key: 'T', - de: 'trifft nicht zu', - en: '', - }, - ] - ), - // @TODO: UICC is missing REVIEW es handelt sich trotzdem um eine flache Struktur, obwohl die Darstellung anders ist XXXXXXXXXXXXXXXXXXXXX - - new Criteria( - '21908-9', - { de: 'UICC Stadium', en: 'UICC Stadium' }, - 'string', - 'http://dktk.dkfz.de/fhir/onco/core/CodeSystem/UiccstadiumCS', - ['IN'], - [ - { - key: '0is', - de: '0is', - en: '', - }, - { - key: '0a', - de: '0a', - en: '', - }, - { - key: '0', - de: '0', - en: '', - }, - { - key: 'IA2', - de: 'IA2', - en: '', - }, - { - key: 'IA1', - de: 'IA1', - en: '', - }, - { - key: 'IA', - de: 'IA', - en: '', - }, - - { - key: 'IB2', - de: 'IB2', - en: '', - }, - { - key: 'IB1', - de: 'IB1', - en: '', - }, - { - key: 'IB', - de: 'IB', - en: '', - }, - { - key: 'IIC', - de: 'IIC', - en: '', - }, - { - key: 'IIB', - de: 'IIB', - en: '', - }, - { - key: 'IIA2', - de: 'IIA2', - en: '', - }, - { - key: 'IIA1', - de: 'IIA1', - en: '', - }, - { - key: 'IIA', - de: 'IIA', - en: '', - }, - { - key: 'II', - de: 'II', - en: '', - }, - { - key: 'IIIC2', - de: 'IIIC2', - en: '', - }, - { - key: 'IIIC1', - de: 'IIIC1', - en: '', - }, - { - key: 'IIIC', - de: 'IIIC', - en: '', - }, - { - key: 'IIIB', - de: 'IIIB', - en: '', - }, - { - key: 'IIIA', - de: 'IIIA', - en: '', - }, - { - key: 'III', - de: 'III', - en: '', - }, - - { - key: 'IVC', - de: 'IVC', - en: '', - }, - { - key: 'IVB', - de: 'IVB', - en: '', - }, - { - key: 'IVA', - de: 'IVA', - en: '', - }, - { - key: 'IV', - de: 'IV', - en: '', - }, - { - key: 'IS', - de: 'IS', - en: '', - }, - ] - ), - /*new Category( - "uicc", - "UICC Stadium", - [ - - - ] - )*/ // @TODO: TNM is missing --> Review (Office cpu was not taken into account. Is that ok? XXXXXXXXXXXXXXXXXXXXXXX - new Category('tnm', 'TNM(c)', [ - new Criteria( - '21905-5', - { de: 'TNM-T', en: 'TNM-T' }, - 'string', - '', - ['IN'], - [ - { - key: '0', - de: '0', - en: '', - }, - { - key: '1', - de: '1', - en: '', - }, - { - key: '1a', - de: '1a', - en: '', - }, - { - key: '1a1', - de: '1a1', - en: '', - }, - { - key: '1a2', - de: '1a2', - en: '', - }, - { - key: '1b', - de: '1b', - en: '', - }, - { - key: '1b1', - de: '1b1', - en: '', - }, - { - key: '1b2', - de: '1b2', - en: '', - }, - { - key: '1c', - de: '1c', - en: '', - }, - { - key: '1c1', - de: '1c1', - en: '', - }, - { - key: '1c2', - de: '1c2', - en: '', - }, - { - key: '1c3', - de: '1c3', - en: '', - }, - { - key: '1d', - de: '1d', - en: '', - }, - { - key: '1mi', - de: '1mi', - en: '', - }, - { - key: '2', - de: '2', - en: '', - }, - { - key: '2a', - de: '2a', - en: '', - }, - { - key: '2a1', - de: '2a1', - en: '', - }, - { - key: '2a2', - de: '2a2', - en: '', - }, - { - key: '2b', - de: '2b', - en: '', - }, - { - key: '2c', - de: '2c', - en: '', - }, - { - key: '2d', - de: '2d', - en: '', - }, - { - key: '3', - de: '3', - en: '', - }, - { - key: '3a', - de: '3a', - en: '', - }, - { - key: '3b', - de: '3b', - en: '', - }, - { - key: '3c', - de: '3c', - en: '', - }, - { - key: '3d', - de: '3d', - en: '', - }, - { - key: '4', - de: '4', - en: '', - }, - { - key: '4a', - de: '4a', - en: '', - }, - { - key: '4b', - de: '4b', - en: '', - }, - { - key: '4c', - de: '4c', - en: '', - }, - { - key: '4d', - de: '4d', - en: '', - }, - { - key: '4e', - de: '4e', - en: '', - }, - { - key: 'a', - de: 'a', - en: '', - }, - { - key: 'is', - de: 'is', - en: '', - }, - { - key: 'is(DCIS)', - de: 'is(DCIS)', - en: '', - }, - { - key: 'is(LCIS)', - de: 'is(LCIS)', - en: '', - }, - { - key: 'is(Paget)', - de: 'is(Paget)', - en: '', - }, - { - key: 'is(pd)', - de: 'is(pd)', - en: '', - }, - { - key: 'is(pu)', - de: 'is(pu)', - en: '', - }, - { - key: 'X', - de: 'X', - en: '', - }, - ] - ), - - new Criteria( - '21906-3', - { de: 'TNM-N', en: 'TNM-N' }, - 'string', - '', - ['IN'], - [ - { - key: '0', - de: '0', - en: '', - }, - { - key: '0(i+)', - de: '0(i+)', - en: '', - }, - { - key: '0(i-)', - de: '0(i-)', - en: '', - }, - { - key: '0(mol+)', - de: '0(mol+)', - en: '', - }, - { - key: '0(mol-)', - de: '0(mol-)', - en: '', - }, - { - key: '1', - de: '1', - en: '', - }, - { - key: '1a', - de: '1a', - en: '', - }, - { - key: '1b', - de: '1b', - en: '', - }, - { - key: '1c', - de: '1c', - en: '', - }, - { - key: '1mi', - de: '1mi', - en: '', - }, - { - key: '2', - de: '2', - en: '', - }, - { - key: '2a', - de: '2a', - en: '', - }, - { - key: '2b', - de: '2b', - en: '', - }, - { - key: '2c', - de: '2c', - en: '', - }, - { - key: '3', - de: '3', - en: '', - }, - { - key: '3a', - de: '3a', - en: '', - }, - { - key: '3b', - de: '3b', - en: '', - }, - { - key: '3c', - de: '3c', - en: '', - }, - { - key: 'X', - de: 'X', - en: '', - }, - ] - ), - - new Criteria( - '21907-1', - { de: 'TNM-M', en: 'TNM-M' }, - 'string', - '', - ['IN'], - [ - { - key: '0', - de: '0', - en: '', - }, - { - key: '1', - de: '1', - en: '', - }, - { - key: '1a', - de: '1a', - en: '', - }, - { - key: '1b', - de: '1b', - en: '', - }, - { - key: '1c', - de: '1c', - en: '', - }, - { - key: '1d', - de: '1d', - en: '', - }, - { - key: '1e', - de: '1e', - en: '', - }, - { - key: '0(i-)', - de: '0(i-)', - en: '', - }, - { - key: '0(i+)', - de: '0(i+)', - en: '', - }, - { - key: '0(mol-)', - de: '0(mol-)', - en: '', - }, - { - key: '0(mol+)', - de: '0(mol+)', - en: '', - }, - ] - ), - - new Criteria( - '42030-7', - { de: 'TNM-m-Symbol', en: 'TNM-m-Symbol' }, - 'string', - '', - ['IN'], - [ - { - key: 'm', - de: 'Kennzeichnet Vorhandensein multipler Primärtumoren in einem Bezirk', - en: '', - }, - { - key: '2', - de: '(2) simultaner Tumoren', - en: '', - }, - { - key: '3', - de: '(3) simultaner Tumoren', - en: '', - }, - { - key: '4', - de: '(4) simultaner Tumoren', - en: '', - }, - { - key: '5', - de: '(5) simultaner Tumoren', - en: '', - }, - { - key: '6', - de: '(6) simultaner Tumoren', - en: '', - }, - { - key: '7', - de: '(7) simultaner Tumoren', - en: '', - }, - { - key: '8', - de: '(8) simultaner Tumoren', - en: '', - }, - { - key: '9', - de: '(9) simultaner Tumoren', - en: '', - }, - ] - ), - - new Criteria( - '59479-6', - { de: 'TNM-y-Symbol', en: 'TNM-y-Symbol' }, - 'string', - '', - ['IN'], - [ - { - key: 'y', - de: 'Klassifikation erfolgte während oder nach initialer multimodaler Therapie', - en: '', - }, - { - key: '9', - de: 'native Klassifikation', - en: '', - }, - ] - ), - - new Criteria( - '21983-2', - { de: 'TNM-r-Symbol', en: 'TNM-r-Symbol' }, - 'string', - '', - ['IN'], - [ - { - key: 'r', - de: 'Klassifikation erfolgte zur Beurteilung eines Rezidivs', - en: '', - }, - { - key: '9', - de: 'native Klassifikation vor Eintreten eines Rezidivs', - en: '', - }, - ] - ), - ]), - // @TODO: commented out because it does not yet have a CQL mapping. Must be translated to CQL later - new Criteria( - 'local_assessment_residual_tumor', - { - de: 'Lokale Beurteilung Resttumor', - en: 'local assessment residual tumor', - }, - 'string', - 'http://dktk.dkfz.de/fhir/onco/core/CodeSystem/LokaleBeurteilungResidualstatusCS', - ['IN'], - [ - { - key: 'R0', - de: 'kein Residualtumor', - en: '', - }, - { - key: 'R1', - de: 'Mikroskopischer Residualtumor', - en: '', - }, - { - key: 'R2', - de: 'Makroskopischer Residualtumor', - en: '', - }, - { - key: 'R1(is)', - de: 'In-Situ-Rest', - en: '', - }, - { - key: 'R1(cy+)', - de: 'Cytologischer Rest', - en: '', - }, - { - key: 'RX', - de: 'Vorhandensein von Residualtumor kann nicht beurteilt werden', - en: '', - }, - ] - ), - - new Criteria( - 'metastases_present', - { de: 'Fernmetastasen vorhanden', en: 'Distant metastases present' }, - 'string', - '', - ['IN'], - [ - { - key: 'J', - de: 'Ja', - en: 'yes', - }, - ] - ), - new Criteria( - 'localization_metastases', - { de: 'Lokalisation Fernmetastasen', en: 'localization metastases' }, - 'string', - 'http://dktk.dkfz.de/fhir/onco/core/CodeSystem/FMLokalisationCS', - ['IN'], - [ - { - key: 'PUL', - de: 'Lunge', - en: '', - }, - { - key: 'OSS', - de: 'Knochen', - en: '', - }, - { - key: 'HEP', - de: 'Leber', - en: '', - }, - { - key: 'BRA', - de: 'Hirn', - en: '', - }, - { - key: 'LYM', - de: 'Lymphknoten', - en: '', - }, - { - key: 'MAR', - de: 'Knochenmark', - en: '', - }, - { - key: 'PLE', - de: 'Pleura', - en: '', - }, - { - key: 'PER', - de: 'Peritoneum', - en: '', - }, - { - key: 'ADR', - de: 'Nebennieren', - en: '', - }, - { - key: 'SKI', - de: 'Haut', - en: '', - }, - { key: 'OTH', de: 'Andere Organe', en: '' }, - { key: 'GEN', de: 'Generalisierte Metastasierung', en: '' }, - ] - ), - // TODO - // @TODO: UICC is missing - // @TODO: TNM is missing - // @TODO: Lokale beurteilung is missing - // @TODO: Fernmitastasen is missing - // @TODO Lokalisation Fernmittastasen is missing ]), - new Category('therapy_of_tumor', 'Therapie des Tumors', [ - // @TODO: only one category with the following types is necessary: OP, Strahlentherapie, Chemotherapie, Immuntherapie, Hormontherapie und Knochentransplantation XXXXXXXXXXXXXXXXX - new Criteria('OP', { de: 'Operation', en: '' }, 'boolean', ''), - new Criteria('ST', { de: 'Strahlentherapie', en: '' }, 'boolean', ''), - new Criteria('CH', { de: 'Chemotherapie', en: '' }, 'boolean', ''), - new Criteria('IM', { de: 'Immunotherapie', en: '' }, 'boolean', ''), - new Criteria('HO', { de: 'Hormontherapie', en: '' }, 'boolean', ''), - new Criteria('KM', { de: 'Knochentransplantation', en: '' }, 'boolean', ''), - ]), // @TODO: Ansprechen auf Therapie is missing --> Review XXXXXXXXXXXXXXXXXXXXXXXXXXXXX - new Category('response_to_therapy', 'Ansprechen auf Therapie', [ - new Criteria( - '21976-6', - { de: 'Ansprechen im Verlauf', en: 'Ansprechen im Verlauf' }, - 'string', - '', - ['IN'], - [ - { - key: 'V', - de: 'Vollremission (complete remission, CR)', - en: '', - }, - { - key: 'T', - de: 'Teilremission / mindestens 50% Rückgang des Tumors (partial remission, PR)', - en: '', - }, - { - key: 'K', - de: 'Keine Änderung (no change, NC) = stable disease', - en: '', - }, - { - key: 'P', - de: 'Progression', - en: '', - }, - { - key: 'D', - de: 'Divergentes Geschehen', - en: '', - }, - { - key: 'B', - de: 'Klinische Besserung des Zustandes, Kriterien für Teilremission jedoch nicht erfüllt (minimal response, MR)', - en: '', - }, - { - key: 'R', - de: 'Vollremission mit residualen Auffälligkeiten (CRr)', - en: '', - }, - { - key: 'U', - de: 'Beurteilung unmöglich', - en: '', - }, - { - key: 'X', - de: 'Fehlende Angabe', - en: '', - }, - ] - ), - - new Criteria( - 'LA4583-6', - { de: 'Lokales/regionäres Rezidiv', en: 'Lokales/regionäres Rezidiv' }, - 'string', - '', - ['IN'], - [ - { - key: 'K', - de: 'Kein Tumor nachweisbar', - en: '', - }, - { - key: 'T', - de: 'Tumorreste (Residualtumor)', - en: '', - }, - { - key: 'P', - de: 'Tumorreste Residualtumor Progress', - en: '', - }, - { - key: 'N', - de: 'Tumorreste Residualtumor No Change', - en: '', - }, - { - key: 'R', - de: 'Lokalrezidiv', - en: '', - }, - { - key: 'F', - de: 'Fraglicher Befund', - en: '', - }, - { - key: 'U', - de: 'unbekannt', - en: '', - }, - { - key: 'X', - de: 'Fehlende Angabe', - en: '', - }, - ] - ), - - new Criteria( - 'LA4370-8', - { de: 'Lymphknoten-Rezidiv', en: 'Lymphknoten-Rezidiv' }, - 'string', - '', - ['IN'], - [ - { - key: 'K', - de: 'Kein Lymphknotenbefall nachweisbar', - en: '', - }, - { - key: 'R', - de: 'Neu aufgetretenes Lymphknotenrezidiv', - en: '', - }, - { - key: 'T', - de: 'bekannter Lymphknotenbefall Residuen', - en: '', - }, - { - key: 'P', - de: 'bekannter Lymphknotenbefall Progress', - en: '', - }, - { - key: 'N', - de: 'bekannter Lymphknotenbefall No Change', - en: '', - }, - { - key: 'F', - de: 'Fraglicher Befund', - en: '', - }, - { - key: 'U', - de: 'unbekannt', - en: '', - }, - { - key: 'X', - de: 'Fehlende Angabe', - en: '', - }, - ] - ), - + new Category('imaging', 'Image Parameters', [ new Criteria( - 'LA4226-2', - { de: 'Fernmetastasen', en: 'Fernmetastasen' }, + 'modality', + { de: 'Modality', en: 'Modality' }, 'string', - '', + 'urn:oid:2.16.840.1.113883.6.256', ['IN'], [ { - key: 'K', - de: 'Keine Fernmetastasen nachweisbar', - en: '', - }, - { - key: 'M', - de: 'Verbliebene Fernmetastase(n)', - en: '', - }, - { - key: 'R', - de: 'Neu aufgetretene Fernmetastase(n) bzw. Metastasenrezidiv', - en: '', - }, - { - key: 'T', - de: 'Fernmetastasen Residuen', - en: '', - }, - { - key: 'P', - de: 'Fernmetastasen Progress', - en: '', + key: 'RID10312', + de: 'MRI', + en: 'MRI', }, { - key: 'N', - de: 'Fernmetastasen No Change', - en: '', + key: 'RID10337', + de: 'PET', + en: 'PET', }, { - key: 'F', - de: 'Fraglicher Befund', - en: '', - }, - { - key: 'U', - de: 'Unbekannt', - en: '', + key: 'RID10334', + de: 'SPECT', + en: 'SPECT', }, { - key: 'X', - de: 'Fehlende Angabe', - en: '', + key: 'RID10321', + de: 'CT', + en: 'CT', }, ] ), - ]), - new Category('biosamples', 'Bioproben', [ - /*new Criteria( - "pat_with_samples", - {de: "Patienten mit Bioproben", en: "Patients with Biosamples"}, - "string", - "", - ["IN"], - [ - { - "key": "pat_with_samples_value", - "de": "Ja", - "en": "yes" - } - ] - ),*/ - new Criteria( // TODO must be adapted to the bbmri valueSet - 'sample_kind', - { de: 'Probenart', en: 'Sample kind' }, - 'string', - '', - ['IN'], - [ - { - key: 'tumor-tissue-ffpe', - de: 'Tumorgewebe (FFPE)', - en: 'Tumor tissue (FFPE)', - }, - { - key: 'tumor-tissue-frozen', - de: 'Tumorgewebe (Kryo/Frisch)', - en: 'Tumor tissue (frozen)', - }, - { - key: 'normal-tissue-ffpe', - de: 'Normalgewebe (FFPE)', - en: 'Normal tissue (FFPE)', - }, - { - key: 'normal-tissue-frozen', - de: 'Normalgewebe (Kryo/Frisch)', - en: 'Normal tissue (frozen)', - }, - { - key: 'whole-blood', - de: 'Vollblut', - en: 'Whole blood', - }, - { - key: 'blood-serum', - de: 'Serum', - en: 'serum', - }, - { - key: 'blood-plasma', - de: 'Plasma', - en: 'Plasma', - }, - { - key: 'urine', - de: 'Urin', - en: 'urine', - }, - { - key: 'csf-liquor', - de: 'Liquor/CSF', - en: 'CSF/Liquor', - }, - { - key: 'stool-faeces', - de: 'Stuhl/Kot', - en: 'Stool/Faeces', - }, - { - key: 'bone-marrow', - de: 'Knochenmark', - en: 'Bone marrow', - }, - { - key: 'dna', - de: 'DNA', - en: 'DNA', - }, - { - key: 'rna', - de: 'RNA', - en: 'RNA', - }, - ] - ), - ]), - new Category('MolecularMarker1', 'Molekulare Marker', [ - MolecularMarker, - new Criteria( - '48005-3', - { de: 'Aminosäureänderung', en: 'Aminoacidchange' }, - 'string', - 'http://loinc.org', - ['EQUALS'] - ), - new Criteria( - '81290-9', - { de: 'DNA Änderung', en: 'DNAchange' }, - 'string', - 'http://loinc.org', - ['EQUALS'] - ), - new Criteria( - '81248-7', - { de: 'SeqRefNCBI', en: 'SeqRefNCBI' }, - 'string', - 'http://loinc.org', - ['EQUALS'] - ), - new Criteria( - '81249-5', - { de: 'EnsemblID', en: 'EnsemblID' }, - 'string', - 'http://loinc.org', - ['EQUALS'] - ), + Lokalisation, + Manufacturer ]), ]; diff --git a/src/assets/diagnosen.ts b/src/assets/diagnosen.ts index 54c6960..294d964 100644 --- a/src/assets/diagnosen.ts +++ b/src/assets/diagnosen.ts @@ -1,4164 +1,47332 @@ -import { Criteria } from '@samply/lens-core'; - -export const Diagnosen: Criteria = new Criteria( - 'diagnosis', - { - de: 'Diagnose ICD-10', - en: 'Diagnosis ICD-10', - }, - 'string', - 'http://fhir.de/CodeSystem/dimdi/icd-10-gm', - ['EQUALS', 'CONTAINS'], - [ - { - key: 'C97', - de: 'Bösartige Neubildungen als Primärtumoren an mehreren Lokalisationen', - en: '', - }, - { - key: 'C34.9', - de: 'Bösartige Neubildung: Bronchus oder Lunge, nicht näher bezeichnet', - en: '', - }, - { - key: 'C34.8', - de: 'Bösartige Neubildung: Bronchus und Lunge, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C34.0', - de: 'Bösartige Neubildung: Hauptbronchus', - en: '', - }, - { - key: 'C34.2', - de: 'Bösartige Neubildung: Mittellappen (-Bronchus)', - en: '', - }, - { - key: 'C34.1', - de: 'Bösartige Neubildung: Oberlappen (-Bronchus)', - en: '', - }, - { - key: 'C34.3', - de: 'Bösartige Neubildung: Unterlappen (-Bronchus)', - en: '', - }, - { - key: 'C30.1', - de: 'Bösartige Neubildung: Mittelohr', - en: '', - }, - { - key: 'C30.0', - de: 'Bösartige Neubildung: Nasenhöhle', - en: '', - }, - { - key: 'C31.9', - de: 'Bösartige Neubildung: Nasennebenhöhle, nicht näher bezeichnet', - en: '', - }, - { - key: 'C31.8', - de: 'Bösartige Neubildung: Nasennebenhöhlen, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C31.1', - de: 'Bösartige Neubildung: Sinus ethmoidalis [Siebbeinzellen]', - en: '', - }, - { - key: 'C31.2', - de: 'Bösartige Neubildung: Sinus frontalis [Stirnhöhle]', - en: '', - }, - { - key: 'C31.0', - de: 'Bösartige Neubildung: Sinus maxillaris [Kieferhöhle]', - en: '', - }, - { - key: 'C31.3', - de: 'Bösartige Neubildung: Sinus sphenoidalis [Keilbeinhöhle]', - en: '', - }, - { - key: 'C33', - de: 'Bösartige Neubildung der Trachea', - en: '', - }, - { - key: 'C38.0', - de: 'Bösartige Neubildung: Herz', - en: '', - }, - { - key: 'C38.8', - de: 'Bösartige Neubildung: Herz, Mediastinum und Pleura, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C38.2', - de: 'Bösartige Neubildung: Hinteres Mediastinum', - en: '', - }, - { - key: 'C38.3', - de: 'Bösartige Neubildung: Mediastinum, Teil nicht näher bezeichnet', - en: '', - }, - { - key: 'C38.4', - de: 'Bösartige Neubildung: Pleura', - en: '', - }, - { - key: 'C38.1', - de: 'Bösartige Neubildung: Vorderes Mediastinum', - en: '', - }, - { - key: 'C32.0', - de: 'Bösartige Neubildung: Glottis', - en: '', - }, - { - key: 'C32.8', - de: 'Bösartige Neubildung: Larynx, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C32.9', - de: 'Bösartige Neubildung: Larynx, nicht näher bezeichnet', - en: '', - }, - { - key: 'C32.3', - de: 'Bösartige Neubildung: Larynxknorpel', - en: '', - }, - { - key: 'C32.2', - de: 'Bösartige Neubildung: Subglottis', - en: '', - }, - { - key: 'C32.1', - de: 'Bösartige Neubildung: Supraglottis', - en: '', - }, - { - key: 'C37', - de: 'Bösartige Neubildung des Thymus', - en: '', - }, - { - key: 'C39.8', - de: 'Bösartige Neubildung: Atmungsorgane und sonstige intrathorakale Organe, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C39.0', - de: 'Bösartige Neubildung: Obere Atemwege, Teil nicht näher bezeichnet', - en: '', - }, - { - key: 'C39.9', - de: 'Bösartige Neubildung: Ungenau bezeichnete Lokalisationen des Atmungssystems', - en: '', - }, - { - key: 'C50.8', - de: 'Bösartige Neubildung: Brustdrüse, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C50.9', - de: 'Bösartige Neubildung: Brustdrüse, nicht näher bezeichnet', - en: '', - }, - { - key: 'C50.0', - de: 'Bösartige Neubildung: Brustwarze und Warzenhof', - en: '', - }, - { - key: 'C50.2', - de: 'Bösartige Neubildung: Oberer innerer Quadrant der Brustdrüse', - en: '', - }, - { - key: 'C50.4', - de: 'Bösartige Neubildung: Oberer äußerer Quadrant der Brustdrüse', - en: '', - }, - { - key: 'C50.6', - de: 'Bösartige Neubildung: Recessus axillaris der Brustdrüse', - en: '', - }, - { - key: 'C50.3', - de: 'Bösartige Neubildung: Unterer innerer Quadrant der Brustdrüse', - en: '', - }, - { - key: 'C50.5', - de: 'Bösartige Neubildung: Unterer äußerer Quadrant der Brustdrüse', - en: '', - }, - { - key: 'C50.1', - de: 'Bösartige Neubildung: Zentraler Drüsenkörper der Brustdrüse', - en: '', - }, - { - key: 'C67.1', - de: 'Bösartige Neubildung: Apex vesicae', - en: '', - }, - { - key: 'C67.8', - de: 'Bösartige Neubildung: Harnblase, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C67.9', - de: 'Bösartige Neubildung: Harnblase, nicht näher bezeichnet', - en: '', - }, - { - key: 'C67.5', - de: 'Bösartige Neubildung: Harnblasenhals', - en: '', - }, - { - key: 'C67.4', - de: 'Bösartige Neubildung: Hintere Harnblasenwand', - en: '', - }, - { - key: 'C67.2', - de: 'Bösartige Neubildung: Laterale Harnblasenwand', - en: '', - }, - { - key: 'C67.6', - de: 'Bösartige Neubildung: Ostium ureteris', - en: '', - }, - { - key: 'C67.0', - de: 'Bösartige Neubildung: Trigonum vesicae', - en: '', - }, - { - key: 'C67.7', - de: 'Bösartige Neubildung: Urachus', - en: '', - }, - { - key: 'C67.3', - de: 'Bösartige Neubildung: Vordere Harnblasenwand', - en: '', - }, - { - key: 'C64', - de: 'Bösartige Neubildung der Niere, ausgenommen Nierenbecken', - en: '', - }, - { - key: 'C65', - de: 'Bösartige Neubildung des Nierenbeckens', - en: '', - }, - { - key: 'C66', - de: 'Bösartige Neubildung des Ureters', - en: '', - }, - { - key: 'C68.9', - de: 'Bösartige Neubildung: Harnorgan, nicht näher bezeichnet', - en: '', - }, - { - key: 'C68.8', - de: 'Bösartige Neubildung: Harnorgane, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C68.1', - de: 'Bösartige Neubildung: Paraurethrale Drüse', - en: '', - }, - { - key: 'C68.0', - de: 'Bösartige Neubildung: Urethra', - en: '', - }, - { - key: 'C00.8', - de: 'Bösartige Neubildung: Lippe, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C00.9', - de: 'Bösartige Neubildung: Lippe, nicht näher bezeichnet', - en: '', - }, - { - key: 'C00.5', - de: 'Bösartige Neubildung: Lippe, nicht näher bezeichnet, Innenseite', - en: '', - }, - { - key: 'C00.6', - de: 'Bösartige Neubildung: Lippenkommissur', - en: '', - }, - { - key: 'C00.3', - de: 'Bösartige Neubildung: Oberlippe, Innenseite', - en: '', - }, - { - key: 'C00.4', - de: 'Bösartige Neubildung: Unterlippe, Innenseite', - en: '', - }, - { - key: 'C00.2', - de: 'Bösartige Neubildung: Äußere Lippe, nicht näher bezeichnet', - en: '', - }, - { - key: 'C00.0', - de: 'Bösartige Neubildung: Äußere Oberlippe', - en: '', - }, - { - key: 'C00.1', - de: 'Bösartige Neubildung: Äußere Unterlippe', - en: '', - }, - { - key: 'C07', - de: 'Bösartige Neubildung der Parotis', - en: '', - }, - { - key: 'C09.0', - de: 'Bösartige Neubildung: Fossa tonsillaris', - en: '', - }, - { - key: 'C09.1', - de: 'Bösartige Neubildung: Gaumenbogen (vorderer) (hinterer)', - en: '', - }, - { - key: 'C09.8', - de: 'Bösartige Neubildung: Tonsille, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C09.9', - de: 'Bösartige Neubildung: Tonsille, nicht näher bezeichnet', - en: '', - }, - { - key: 'C05.8', - de: 'Bösartige Neubildung: Gaumen, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C05.9', - de: 'Bösartige Neubildung: Gaumen, nicht näher bezeichnet', - en: '', - }, - { - key: 'C05.0', - de: 'Bösartige Neubildung: Harter Gaumen', - en: '', - }, - { - key: 'C05.2', - de: 'Bösartige Neubildung: Uvula', - en: '', - }, - { - key: 'C05.1', - de: 'Bösartige Neubildung: Weicher Gaumen', - en: '', - }, - { - key: 'C13.1', - de: 'Bösartige Neubildung: Aryepiglottische Falte, hypopharyngeale Seite', - en: '', - }, - { - key: 'C13.2', - de: 'Bösartige Neubildung: Hinterwand des Hypopharynx', - en: '', - }, - { - key: 'C13.8', - de: 'Bösartige Neubildung: Hypopharynx, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C13.9', - de: 'Bösartige Neubildung: Hypopharynx, nicht näher bezeichnet', - en: '', - }, - { - key: 'C13.0', - de: 'Bösartige Neubildung: Regio postcricoidea', - en: '', - }, - { - key: 'C04.8', - de: 'Bösartige Neubildung: Mundboden, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C04.9', - de: 'Bösartige Neubildung: Mundboden, nicht näher bezeichnet', - en: '', - }, - { - key: 'C04.1', - de: 'Bösartige Neubildung: Seitlicher Teil des Mundbodens', - en: '', - }, - { - key: 'C04.0', - de: 'Bösartige Neubildung: Vorderer Teil des Mundbodens', - en: '', - }, - { - key: 'C11.1', - de: 'Bösartige Neubildung: Hinterwand des Nasopharynx', - en: '', - }, - { - key: 'C11.8', - de: 'Bösartige Neubildung: Nasopharynx, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C11.9', - de: 'Bösartige Neubildung: Nasopharynx, nicht näher bezeichnet', - en: '', - }, - { - key: 'C11.0', - de: 'Bösartige Neubildung: Obere Wand des Nasopharynx', - en: '', - }, - { - key: 'C11.2', - de: 'Bösartige Neubildung: Seitenwand des Nasopharynx', - en: '', - }, - { - key: 'C11.3', - de: 'Bösartige Neubildung: Vorderwand des Nasopharynx', - en: '', - }, - { - key: 'C10.3', - de: 'Bösartige Neubildung: Hinterwand des Oropharynx', - en: '', - }, - { - key: 'C10.4', - de: 'Bösartige Neubildung: Kiemengang', - en: '', - }, - { - key: 'C10.8', - de: 'Bösartige Neubildung: Oropharynx, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C10.9', - de: 'Bösartige Neubildung: Oropharynx, nicht näher bezeichnet', - en: '', - }, - { - key: 'C10.2', - de: 'Bösartige Neubildung: Seitenwand des Oropharynx', - en: '', - }, - { - key: 'C10.0', - de: 'Bösartige Neubildung: Vallecula epiglottica', - en: '', - }, - { - key: 'C10.1', - de: 'Bösartige Neubildung: Vorderfläche der Epiglottis', - en: '', - }, - { - key: 'C12', - de: 'Bösartige Neubildung des Recessus piriformis', - en: '', - }, - { - key: 'C03.0', - de: 'Bösartige Neubildung: Oberkieferzahnfleisch', - en: '', - }, - { - key: 'C03.1', - de: 'Bösartige Neubildung: Unterkieferzahnfleisch', - en: '', - }, - { - key: 'C03.9', - de: 'Bösartige Neubildung: Zahnfleisch, nicht näher bezeichnet', - en: '', - }, - { - key: 'C01', - de: 'Bösartige Neubildung des Zungengrundes', - en: '', - }, - { - key: 'C02.3', - de: 'Bösartige Neubildung: Vordere zwei Drittel der Zunge, Bereich nicht näher bezeichnet', - en: '', - }, - { - key: 'C02.8', - de: 'Bösartige Neubildung: Zunge, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C02.9', - de: 'Bösartige Neubildung: Zunge, nicht näher bezeichnet', - en: '', - }, - { - key: 'C02.1', - de: 'Bösartige Neubildung: Zungenrand', - en: '', - }, - { - key: 'C02.0', - de: 'Bösartige Neubildung: Zungenrücken', - en: '', - }, - { - key: 'C02.4', - de: 'Bösartige Neubildung: Zungentonsille', - en: '', - }, - { - key: 'C02.2', - de: 'Bösartige Neubildung: Zungenunterfläche', - en: '', - }, - { - key: 'C06.9', - de: 'Bösartige Neubildung: Mund, nicht näher bezeichnet', - en: '', - }, - { - key: 'C06.2', - de: 'Bösartige Neubildung: Retromolarregion', - en: '', - }, - { - key: 'C06.8', - de: 'Bösartige Neubildung: Sonstige und nicht näher bezeichnete Teile des Mundes, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C06.1', - de: 'Bösartige Neubildung: Vestibulum oris', - en: '', - }, - { - key: 'C06.0', - de: 'Bösartige Neubildung: Wangenschleimhaut', - en: '', - }, - { - key: 'C08.1', - de: 'Bösartige Neubildung: Glandula sublingualis', - en: '', - }, - { - key: 'C08.0', - de: 'Bösartige Neubildung: Glandula submandibularis', - en: '', - }, - { - key: 'C08.9', - de: 'Bösartige Neubildung: Große Speicheldrüse, nicht näher bezeichnet', - en: '', - }, - { - key: 'C08.8', - de: 'Bösartige Neubildung: Große Speicheldrüsen, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C14.8', - de: 'Bösartige Neubildung: Lippe, Mundhöhle und Pharynx, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C14.2', - de: 'Bösartige Neubildung: Lymphatischer Rachenring [Waldeyer]', - en: '', - }, - { - key: 'C14.0', - de: 'Bösartige Neubildung: Pharynx, nicht näher bezeichnet', - en: '', - }, - { - key: 'C74.9', - de: 'Bösartige Neubildung: Nebenniere, nicht näher bezeichnet', - en: '', - }, - { - key: 'C74.1', - de: 'Bösartige Neubildung: Nebennierenmark', - en: '', - }, - { - key: 'C74.0', - de: 'Bösartige Neubildung: Nebennierenrinde', - en: '', - }, - { - key: 'C73', - de: 'Bösartige Neubildung der Schilddrüse', - en: '', - }, - { - key: 'C75.8', - de: 'Bösartige Neubildung: Beteiligung mehrerer endokriner Drüsen, nicht näher bezeichnet', - en: '', - }, - { - key: 'C75.2', - de: 'Bösartige Neubildung: Ductus craniopharyngealis', - en: '', - }, - { - key: 'C75.9', - de: 'Bösartige Neubildung: Endokrine Drüse, nicht näher bezeichnet', - en: '', - }, - { - key: 'C75.3', - de: 'Bösartige Neubildung: Epiphyse [Glandula pinealis] [Zirbeldrüse]', - en: '', - }, - { - key: 'C75.5', - de: 'Bösartige Neubildung: Glomus aorticum und sonstige Paraganglien', - en: '', - }, - { - key: 'C75.4', - de: 'Bösartige Neubildung: Glomus caroticum', - en: '', - }, - { - key: 'C75.1', - de: 'Bösartige Neubildung: Hypophyse', - en: '', - }, - { - key: 'C75.0', - de: 'Bösartige Neubildung: Nebenschilddrüse', - en: '', - }, - { - key: 'C19', - de: 'Bösartige Neubildung am Rektosigmoid, Übergang', - en: '', - }, - { - key: 'C23', - de: 'Bösartige Neubildung der Gallenblase', - en: '', - }, - { - key: 'C22.3', - de: 'Angiosarkom der Leber', - en: '', - }, - { - key: 'C22.9', - de: 'Bösartige Neubildung: Leber, nicht näher bezeichnet', - en: '', - }, - { - key: 'C22.2', - de: 'Hepatoblastom', - en: '', - }, - { - key: 'C22.1', - de: 'Intrahepatisches Gallengangskarzinom', - en: '', - }, - { - key: 'C22.0', - de: 'Leberzellkarzinom', - en: '', - }, - { - key: 'C22.4', - de: 'Sonstige Sarkome der Leber', - en: '', - }, - { - key: 'C22.7', - de: 'Sonstige näher bezeichnete Karzinome der Leber', - en: '', - }, - { - key: 'C21.1', - de: 'Bösartige Neubildung: Analkanal', - en: '', - }, - { - key: 'C21.0', - de: 'Bösartige Neubildung: Anus, nicht näher bezeichnet', - en: '', - }, - { - key: 'C21.2', - de: 'Bösartige Neubildung: Kloakenregion', - en: '', - }, - { - key: 'C21.8', - de: 'Bösartige Neubildung: Rektum, Anus und Analkanal, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C17.0', - de: 'Bösartige Neubildung: Duodenum', - en: '', - }, - { - key: 'C17.8', - de: 'Bösartige Neubildung: Dünndarm, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C17.9', - de: 'Bösartige Neubildung: Dünndarm, nicht näher bezeichnet', - en: '', - }, - { - key: 'C17.2', - de: 'Bösartige Neubildung: Ileum', - en: '', - }, - { - key: 'C17.1', - de: 'Bösartige Neubildung: Jejunum', - en: '', - }, - { - key: 'C17.3', - de: 'Bösartige Neubildung: Meckel-Divertikel', - en: '', - }, - { - key: 'C18.1', - de: 'Bösartige Neubildung: Appendix vermiformis', - en: '', - }, - { - key: 'C18.2', - de: 'Bösartige Neubildung: Colon ascendens', - en: '', - }, - { - key: 'C18.6', - de: 'Bösartige Neubildung: Colon descendens', - en: '', - }, - { - key: 'C18.7', - de: 'Bösartige Neubildung: Colon sigmoideum', - en: '', - }, - { - key: 'C18.4', - de: 'Bösartige Neubildung: Colon transversum', - en: '', - }, - { - key: 'C18.3', - de: 'Bösartige Neubildung: Flexura coli dextra [hepatica]', - en: '', - }, - { - key: 'C18.5', - de: 'Bösartige Neubildung: Flexura coli sinistra [lienalis]', - en: '', - }, - { - key: 'C18.8', - de: 'Bösartige Neubildung: Kolon, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C18.9', - de: 'Bösartige Neubildung: Kolon, nicht näher bezeichnet', - en: '', - }, - { - key: 'C18.0', - de: 'Bösartige Neubildung: Zäkum', - en: '', - }, - { - key: 'C16.3', - de: 'Bösartige Neubildung: Antrum pyloricum', - en: '', - }, - { - key: 'C16.2', - de: 'Bösartige Neubildung: Corpus ventriculi', - en: '', - }, - { - key: 'C16.1', - de: 'Bösartige Neubildung: Fundus ventriculi', - en: '', - }, - { - key: 'C16.6', - de: 'Bösartige Neubildung: Große Kurvatur des Magens, nicht näher bezeichnet', - en: '', - }, - { - key: 'C16.0', - de: 'Bösartige Neubildung: Kardia', - en: '', - }, - { - key: 'C16.5', - de: 'Bösartige Neubildung: Kleine Kurvatur des Magens, nicht näher bezeichnet', - en: '', - }, - { - key: 'C16.8', - de: 'Bösartige Neubildung: Magen, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C16.9', - de: 'Bösartige Neubildung: Magen, nicht näher bezeichnet', - en: '', - }, - { - key: 'C16.4', - de: 'Bösartige Neubildung: Pylorus', - en: '', - }, - { - key: 'C25.3', - de: 'Bösartige Neubildung: Ductus pancreaticus', - en: '', - }, - { - key: 'C25.4', - de: 'Bösartige Neubildung: Endokriner Drüsenanteil des Pankreas', - en: '', - }, - { - key: 'C25.8', - de: 'Bösartige Neubildung: Pankreas, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C25.9', - de: 'Bösartige Neubildung: Pankreas, nicht näher bezeichnet', - en: '', - }, - { - key: 'C25.0', - de: 'Bösartige Neubildung: Pankreaskopf', - en: '', - }, - { - key: 'C25.1', - de: 'Bösartige Neubildung: Pankreaskörper', - en: '', - }, - { - key: 'C25.2', - de: 'Bösartige Neubildung: Pankreasschwanz', - en: '', - }, - { - key: 'C25.7', - de: 'Bösartige Neubildung: Sonstige Teile des Pankreas', - en: '', - }, - { - key: 'C20', - de: 'Bösartige Neubildung des Rektums', - en: '', - }, - { - key: 'C15.2', - de: 'Bösartige Neubildung: Abdominaler Ösophagus', - en: '', - }, - { - key: 'C15.1', - de: 'Bösartige Neubildung: Thorakaler Ösophagus', - en: '', - }, - { - key: 'C15.0', - de: 'Bösartige Neubildung: Zervikaler Ösophagus', - en: '', - }, - { - key: 'C15.8', - de: 'Bösartige Neubildung: Ösophagus, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C15.4', - de: 'Bösartige Neubildung: Ösophagus, mittleres Drittel', - en: '', - }, - { - key: 'C15.9', - de: 'Bösartige Neubildung: Ösophagus, nicht näher bezeichnet', - en: '', - }, - { - key: 'C15.3', - de: 'Bösartige Neubildung: Ösophagus, oberes Drittel', - en: '', - }, - { - key: 'C15.5', - de: 'Bösartige Neubildung: Ösophagus, unteres Drittel', - en: '', - }, - { - key: 'C24.1', - de: 'Bösartige Neubildung: Ampulla hepatopancreatica [Ampulla Vateri]', - en: '', - }, - { - key: 'C24.0', - de: 'Bösartige Neubildung: Extrahepatischer Gallengang', - en: '', - }, - { - key: 'C24.8', - de: 'Bösartige Neubildung: Gallenwege, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C24.9', - de: 'Bösartige Neubildung: Gallenwege, nicht näher bezeichnet', - en: '', - }, - { - key: 'C26.0', - de: 'Bösartige Neubildung: Intestinaltrakt, Teil nicht näher bezeichnet', - en: '', - }, - { - key: 'C26.1', - de: 'Bösartige Neubildung: Milz', - en: '', - }, - { - key: 'C26.9', - de: 'Bösartige Neubildung: Ungenau bezeichnete Lokalisationen des Verdauungssystems', - en: '', - }, - { - key: 'C26.8', - de: 'Bösartige Neubildung: Verdauungssystem, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C61', - de: 'Bösartige Neubildung der Prostata', - en: '', - }, - { - key: 'C62.1', - de: 'Bösartige Neubildung: Deszendierter Hoden', - en: '', - }, - { - key: 'C62.0', - de: 'Bösartige Neubildung: Dystoper Hoden', - en: '', - }, - { - key: 'C62.9', - de: 'Bösartige Neubildung: Hoden, nicht näher bezeichnet', - en: '', - }, - { - key: 'C60.1', - de: 'Bösartige Neubildung: Glans penis', - en: '', - }, - { - key: 'C60.8', - de: 'Bösartige Neubildung: Penis, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C60.9', - de: 'Bösartige Neubildung: Penis, nicht näher bezeichnet', - en: '', - }, - { - key: 'C60.2', - de: 'Bösartige Neubildung: Penisschaft', - en: '', - }, - { - key: 'C60.0', - de: 'Bösartige Neubildung: Praeputium penis', - en: '', - }, - { - key: 'C63.8', - de: 'Bösartige Neubildung: Männliche Genitalorgane, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C63.9', - de: 'Bösartige Neubildung: Männliches Genitalorgan, nicht näher bezeichnet', - en: '', - }, - { - key: 'C63.0', - de: 'Bösartige Neubildung: Nebenhoden [Epididymis]', - en: '', - }, - { - key: 'C63.1', - de: 'Bösartige Neubildung: Samenstrang', - en: '', - }, - { - key: 'C63.2', - de: 'Bösartige Neubildung: Skrotum', - en: '', - }, - { - key: 'C63.7', - de: 'Bösartige Neubildung: Sonstige näher bezeichnete männliche Genitalorgane', - en: '', - }, - { - key: 'C53.8', - de: 'Bösartige Neubildung: Cervix uteri, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C53.9', - de: 'Bösartige Neubildung: Cervix uteri, nicht näher bezeichnet', - en: '', - }, - { - key: 'C53.1', - de: 'Bösartige Neubildung: Ektozervix', - en: '', - }, - { - key: 'C53.0', - de: 'Bösartige Neubildung: Endozervix', - en: '', - }, - { - key: 'C58', - de: 'Bösartige Neubildung der Plazenta', - en: '', - }, - { - key: 'C52', - de: 'Bösartige Neubildung der Vagina', - en: '', - }, - { - key: 'C51.2', - de: 'Bösartige Neubildung der Vulva: Klitoris', - en: '', - }, - { - key: 'C51.0', - de: 'Bösartige Neubildung der Vulva: Labium majus', - en: '', - }, - { - key: 'C51.1', - de: 'Bösartige Neubildung der Vulva: Labium minus', - en: '', - }, - { - key: 'C51.8', - de: 'Bösartige Neubildung: Vulva, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C51.9', - de: 'Bösartige Neubildung: Vulva, nicht näher bezeichnet', - en: '', - }, - { - key: 'C54.8', - de: 'Bösartige Neubildung: Corpus uteri, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C54.9', - de: 'Bösartige Neubildung: Corpus uteri, nicht näher bezeichnet', - en: '', - }, - { - key: 'C54.1', - de: 'Bösartige Neubildung: Endometrium', - en: '', - }, - { - key: 'C54.3', - de: 'Bösartige Neubildung: Fundus uteri', - en: '', - }, - { - key: 'C54.0', - de: 'Bösartige Neubildung: Isthmus uteri', - en: '', - }, - { - key: 'C54.2', - de: 'Bösartige Neubildung: Myometrium', - en: '', - }, - { - key: 'C56', - de: 'Bösartige Neubildung des Ovars', - en: '', - }, - { - key: 'C55', - de: 'Bösartige Neubildung des Uterus, Teil nicht näher bezeichnet', - en: '', - }, - { - key: 'C57.1', - de: 'Bösartige Neubildung: Lig. latum uteri', - en: '', - }, - { - key: 'C57.2', - de: 'Bösartige Neubildung: Lig. teres uteri', - en: '', - }, - { - key: 'C57.3', - de: 'Bösartige Neubildung: Parametrium', - en: '', - }, - { - key: 'C57.7', - de: 'Bösartige Neubildung: Sonstige näher bezeichnete weibliche Genitalorgane', - en: '', - }, - { - key: 'C57.0', - de: 'Bösartige Neubildung: Tuba uterina [Falloppio]', - en: '', - }, - { - key: 'C57.4', - de: 'Bösartige Neubildung: Uterine Adnexe, nicht näher bezeichnet', - en: '', - }, - { - key: 'C57.8', - de: 'Bösartige Neubildung: Weibliche Genitalorgane, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C57.9', - de: 'Bösartige Neubildung: Weibliches Genitalorgan, nicht näher bezeichnet', - en: '', - }, - { - key: 'C70.0', - de: 'Bösartige Neubildung: Hirnhäute', - en: '', - }, - { - key: 'C70.9', - de: 'Bösartige Neubildung: Meningen, nicht näher bezeichnet', - en: '', - }, - { - key: 'C70.1', - de: 'Bösartige Neubildung: Rückenmarkhäute', - en: '', - }, - { - key: 'C69.8', - de: 'Bösartige Neubildung: Auge und Augenanhangsgebilde, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C69.9', - de: 'Bösartige Neubildung: Auge, nicht näher bezeichnet', - en: '', - }, - { - key: 'C69.3', - de: 'Bösartige Neubildung: Chorioidea', - en: '', - }, - { - key: 'C69.0', - de: 'Bösartige Neubildung: Konjunktiva', - en: '', - }, - { - key: 'C69.1', - de: 'Bösartige Neubildung: Kornea', - en: '', - }, - { - key: 'C69.6', - de: 'Bösartige Neubildung: Orbita', - en: '', - }, - { - key: 'C69.2', - de: 'Bösartige Neubildung: Retina', - en: '', - }, - { - key: 'C69.5', - de: 'Bösartige Neubildung: Tränendrüse und Tränenwege', - en: '', - }, - { - key: 'C69.4', - de: 'Bösartige Neubildung: Ziliarkörper', - en: '', - }, - { - key: 'C71.1', - de: 'Bösartige Neubildung: Frontallappen', - en: '', - }, - { - key: 'C71.8', - de: 'Bösartige Neubildung: Gehirn, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C71.9', - de: 'Bösartige Neubildung: Gehirn, nicht näher bezeichnet', - en: '', - }, - { - key: 'C71.7', - de: 'Bösartige Neubildung: Hirnstamm', - en: '', - }, - { - key: 'C71.5', - de: 'Bösartige Neubildung: Hirnventrikel', - en: '', - }, - { - key: 'C71.4', - de: 'Bösartige Neubildung: Okzipitallappen', - en: '', - }, - { - key: 'C71.3', - de: 'Bösartige Neubildung: Parietallappen', - en: '', - }, - { - key: 'C71.2', - de: 'Bösartige Neubildung: Temporallappen', - en: '', - }, - { - key: 'C71.6', - de: 'Bösartige Neubildung: Zerebellum', - en: '', - }, - { - key: 'C71.0', - de: 'Bösartige Neubildung: Zerebrum, ausgenommen Hirnlappen und Ventrikel', - en: '', - }, - { - key: 'C72.1', - de: 'Bösartige Neubildung: Cauda equina', - en: '', - }, - { - key: 'C72.8', - de: 'Bösartige Neubildung: Gehirn und andere Teile des Zentralnervensystems, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C72.3', - de: 'Bösartige Neubildung: N. opticus [II. Hirnnerv]', - en: '', - }, - { - key: 'C72.4', - de: 'Bösartige Neubildung: N. vestibulocochlearis [VIII. Hirnnerv]', - en: '', - }, - { - key: 'C72.2', - de: 'Bösartige Neubildung: Nn. olfactorii [I. Hirnnerv]', - en: '', - }, - { - key: 'C72.0', - de: 'Bösartige Neubildung: Rückenmark', - en: '', - }, - { - key: 'C72.5', - de: 'Bösartige Neubildung: Sonstige und nicht näher bezeichnete Hirnnerven', - en: '', - }, - { - key: 'C72.9', - de: 'Bösartige Neubildung: Zentralnervensystem, nicht näher bezeichnet', - en: '', - }, - { - key: 'C40.1', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Kurze Knochen der oberen Extremität', - en: '', - }, - { - key: 'C40.3', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Kurze Knochen der unteren Extremität', - en: '', - }, - { - key: 'C40.2', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Lange Knochen der unteren Extremität', - en: '', - }, - { - key: 'C40.0', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Skapula und lange Knochen der oberen Extremität', - en: '', - }, - { - key: 'C40.8', - de: 'Bösartige Neubildung: Knochen und Gelenkknorpel der Extremitäten, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C40.9', - de: 'Bösartige Neubildung: Knochen und Gelenkknorpel einer Extremität, nicht näher bezeichnet', - en: '', - }, - { - key: 'C41.4', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Beckenknochen', - en: '', - }, - { - key: 'C41.01', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Kraniofazial', - en: '', - }, - { - key: 'C41.02', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Maxillofazial', - en: '', - }, - { - key: 'C41.32', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Klavikula', - en: '', - }, - { - key: 'C41.30', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Rippen', - en: '', - }, - { - key: 'C41.31', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Sternum', - en: '', - }, - { - key: 'C41.1', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Unterkieferknochen', - en: '', - }, - { - key: 'C41.2', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Wirbelsäule', - en: '', - }, - { - key: 'C41.8', - de: 'Bösartige Neubildung: Knochen und Gelenkknorpel, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C41.9', - de: 'Bösartige Neubildung: Knochen und Gelenkknorpel, nicht näher bezeichnet', - en: '', - }, - { - key: 'C47.1', - de: 'Bösartige Neubildung: Periphere Nerven der oberen Extremität, einschließlich Schulter', - en: '', - }, - { - key: 'C47.2', - de: 'Bösartige Neubildung: Periphere Nerven der unteren Extremität, einschließlich Hüfte', - en: '', - }, - { - key: 'C47.4', - de: 'Bösartige Neubildung: Periphere Nerven des Abdomens', - en: '', - }, - { - key: 'C47.5', - de: 'Bösartige Neubildung: Periphere Nerven des Beckens', - en: '', - }, - { - key: 'C47.0', - de: 'Bösartige Neubildung: Periphere Nerven des Kopfes, des Gesichtes und des Halses', - en: '', - }, - { - key: 'C47.6', - de: 'Bösartige Neubildung: Periphere Nerven des Rumpfes, nicht näher bezeichnet', - en: '', - }, - { - key: 'C47.3', - de: 'Bösartige Neubildung: Periphere Nerven des Thorax', - en: '', - }, - { - key: 'C47.8', - de: 'Bösartige Neubildung: Periphere Nerven und autonomes Nervensystem, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C47.9', - de: 'Bösartige Neubildung: Periphere Nerven und autonomes Nervensystem, nicht näher bezeichnet', - en: '', - }, - { - key: 'C48.1', - de: 'Bösartige Neubildung: Näher bezeichnete Teile des Peritoneums', - en: '', - }, - { - key: 'C48.2', - de: 'Bösartige Neubildung: Peritoneum, nicht näher bezeichnet', - en: '', - }, - { - key: 'C48.0', - de: 'Bösartige Neubildung: Retroperitoneum', - en: '', - }, - { - key: 'C48.8', - de: 'Bösartige Neubildung: Retroperitoneum und Peritoneum, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C49.1', - de: 'Bösartige Neubildung: Bindegewebe und andere Weichteilgewebe der oberen Extremität, einschließlich Schulter', - en: '', - }, - { - key: 'C49.2', - de: 'Bösartige Neubildung: Bindegewebe und andere Weichteilgewebe der unteren Extremität, einschließlich Hüfte', - en: '', - }, - { - key: 'C49.4', - de: 'Bösartige Neubildung: Bindegewebe und andere Weichteilgewebe des Abdomens', - en: '', - }, - { - key: 'C49.5', - de: 'Bösartige Neubildung: Bindegewebe und andere Weichteilgewebe des Beckens', - en: '', - }, - { - key: 'C49.0', - de: 'Bösartige Neubildung: Bindegewebe und andere Weichteilgewebe des Kopfes, des Gesichtes und des Halses', - en: '', - }, - { - key: 'C49.6', - de: 'Bösartige Neubildung: Bindegewebe und andere Weichteilgewebe des Rumpfes, nicht näher bezeichnet', - en: '', - }, - { - key: 'C49.3', - de: 'Bösartige Neubildung: Bindegewebe und andere Weichteilgewebe des Thorax', - en: '', - }, - { - key: 'C49.8', - de: 'Bösartige Neubildung: Bindegewebe und andere Weichteilgewebe, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C49.9', - de: 'Bösartige Neubildung: Bindegewebe und andere Weichteilgewebe, nicht näher bezeichnet', - en: '', - }, - { - key: 'C46.0', - de: 'Kaposi-Sarkom der Haut', - en: '', - }, - { - key: 'C46.3', - de: 'Kaposi-Sarkom der Lymphknoten', - en: '', - }, - { - key: 'C46.2', - de: 'Kaposi-Sarkom des Gaumens', - en: '', - }, - { - key: 'C46.1', - de: 'Kaposi-Sarkom des Weichteilgewebes', - en: '', - }, - { - key: 'C46.8', - de: 'Kaposi-Sarkom mehrerer Organe', - en: '', - }, - { - key: 'C46.7', - de: 'Kaposi-Sarkom sonstiger Lokalisationen', - en: '', - }, - { - key: 'C46.9', - de: 'Kaposi-Sarkom, nicht näher bezeichnet', - en: '', - }, - { - key: 'C45.0', - de: 'Mesotheliom der Pleura', - en: '', - }, - { - key: 'C45.2', - de: 'Mesotheliom des Perikards', - en: '', - }, - { - key: 'C45.1', - de: 'Mesotheliom des Peritoneums', - en: '', - }, - { - key: 'C45.7', - de: 'Mesotheliom sonstiger Lokalisationen', - en: '', - }, - { - key: 'C45.9', - de: 'Mesotheliom, nicht näher bezeichnet', - en: '', - }, - { - key: 'C43.8', - de: 'Bösartiges Melanom der Haut, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C43.9', - de: 'Bösartiges Melanom der Haut, nicht näher bezeichnet', - en: '', - }, - { - key: 'C43.0', - de: 'Bösartiges Melanom der Lippe', - en: '', - }, - { - key: 'C43.4', - de: 'Bösartiges Melanom der behaarten Kopfhaut und des Halses', - en: '', - }, - { - key: 'C43.6', - de: 'Bösartiges Melanom der oberen Extremität, einschließlich Schulter', - en: '', - }, - { - key: 'C43.7', - de: 'Bösartiges Melanom der unteren Extremität, einschließlich Hüfte', - en: '', - }, - { - key: 'C43.1', - de: 'Bösartiges Melanom des Augenlides, einschließlich Kanthus', - en: '', - }, - { - key: 'C43.2', - de: 'Bösartiges Melanom des Ohres und des äußeren Gehörganges', - en: '', - }, - { - key: 'C43.5', - de: 'Bösartiges Melanom des Rumpfes', - en: '', - }, - { - key: 'C43.3', - de: 'Bösartiges Melanom sonstiger und nicht näher bezeichneter Teile des Gesichtes', - en: '', - }, - { - key: 'C44.9', - de: 'Bösartige Neubildung der Haut, nicht näher bezeichnet', - en: '', - }, - { - key: 'C44.4', - de: 'Sonstige bösartige Neubildungen: Behaarte Kopfhaut und Haut des Halses', - en: '', - }, - { - key: 'C44.6', - de: 'Sonstige bösartige Neubildungen: Haut der oberen Extremität, einschließlich Schulter', - en: '', - }, - { - key: 'C44.7', - de: 'Sonstige bösartige Neubildungen: Haut der unteren Extremität, einschließlich Hüfte', - en: '', - }, - { - key: 'C44.1', - de: 'Sonstige bösartige Neubildungen: Haut des Augenlides, einschließlich Kanthus', - en: '', - }, - { - key: 'C44.2', - de: 'Sonstige bösartige Neubildungen: Haut des Ohres und des äußeren Gehörganges', - en: '', - }, - { - key: 'C44.5', - de: 'Sonstige bösartige Neubildungen: Haut des Rumpfes', - en: '', - }, - { - key: 'C44.3', - de: 'Sonstige bösartige Neubildungen: Haut sonstiger und nicht näher bezeichneter Teile des Gesichtes', - en: '', - }, - { - key: 'C44.8', - de: 'Sonstige bösartige Neubildungen: Haut, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C44.0', - de: 'Sonstige bösartige Neubildungen: Lippenhaut', - en: '', - }, - { - key: 'C88.91', - de: 'Bösartige immunproliferative Krankheit, nicht näher bezeichnet: In kompletter Remission', - en: '', - }, - { - key: 'C88.90', - de: 'Bösartige immunproliferative Krankheit, nicht näher bezeichnet: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C88.41', - de: 'Extranodales Marginalzonen-B-Zell-Lymphom des Mukosa-assoziierten lymphatischen Gewebes [MALT-Lymphom]: In kompletter Remission', - en: '', - }, - { - key: 'C88.40', - de: 'Extranodales Marginalzonen-B-Zell-Lymphom des Mukosa-assoziierten lymphatischen Gewebes [MALT-Lymphom]: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C88.31', - de: 'Immunproliferative Dünndarmkrankheit: In kompletter Remission', - en: '', - }, - { - key: 'C88.30', - de: 'Immunproliferative Dünndarmkrankheit: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C88.01', - de: 'Makroglobulinämie Waldenström: In kompletter Remission', - en: '', - }, - { - key: 'C88.00', - de: 'Makroglobulinämie Waldenström: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C88.21', - de: 'Sonstige Schwerkettenkrankheit: In kompletter Remission', - en: '', - }, - { - key: 'C88.20', - de: 'Sonstige Schwerkettenkrankheit: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C88.71', - de: 'Sonstige bösartige immunproliferative Krankheiten: In kompletter Remission', - en: '', - }, - { - key: 'C88.70', - de: 'Sonstige bösartige immunproliferative Krankheiten: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C82.5', - de: 'Diffuses Follikelzentrumslymphom', - en: '', - }, - { - key: 'C82.0', - de: 'Follikuläres Lymphom Grad I', - en: '', - }, - { - key: 'C82.1', - de: 'Follikuläres Lymphom Grad II', - en: '', - }, - { - key: 'C82.2', - de: 'Follikuläres Lymphom Grad III, nicht näher bezeichnet', - en: '', - }, - { - key: 'C82.3', - de: 'Follikuläres Lymphom Grad IIIa', - en: '', - }, - { - key: 'C82.4', - de: 'Follikuläres Lymphom Grad IIIb', - en: '', - }, - { - key: 'C82.9', - de: 'Follikuläres Lymphom, nicht näher bezeichnet', - en: '', - }, - { - key: 'C82.6', - de: 'Kutanes Follikelzentrumslymphom', - en: '', - }, - { - key: 'C82.7', - de: 'Sonstige Typen des follikulären Lymphoms', - en: '', - }, - { - key: 'C81.2', - de: 'Gemischtzelliges (klassisches) Hodgkin-Lymphom', - en: '', - }, - { - key: 'C81.9', - de: 'Hodgkin-Lymphom, nicht näher bezeichnet', - en: '', - }, - { - key: 'C81.3', - de: 'Lymphozytenarmes (klassisches) Hodgkin-Lymphom', - en: '', - }, - { - key: 'C81.4', - de: 'Lymphozytenreiches (klassisches) Hodgkin-Lymphom', - en: '', - }, - { - key: 'C81.1', - de: 'Nodulär-sklerosierendes (klassisches) Hodgkin-Lymphom', - en: '', - }, - { - key: 'C81.0', - de: 'Noduläres lymphozytenprädominantes Hodgkin-Lymphom', - en: '', - }, - { - key: 'C81.7', - de: 'Sonstige Typen des (klassischen) Hodgkin-Lymphoms', - en: '', - }, - { - key: 'C95.01', - de: 'Akute Leukämie nicht näher bezeichneten Zelltyps: In kompletter Remission', - en: '', - }, - { - key: 'C95.00', - de: 'Akute Leukämie nicht näher bezeichneten Zelltyps: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C95.11', - de: 'Chronische Leukämie nicht näher bezeichneten Zelltyps: In kompletter Remission', - en: '', - }, - { - key: 'C95.10', - de: 'Chronische Leukämie nicht näher bezeichneten Zelltyps: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C95.91', - de: 'Leukämie, nicht näher bezeichnet: In kompletter Remission', - en: '', - }, - { - key: 'C95.90', - de: 'Leukämie, nicht näher bezeichnet: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C95.8', - de: 'Leukämie, refraktär auf Standard-Induktionstherapie', - en: '', - }, - { - key: 'C95.71', - de: 'Sonstige Leukämie nicht näher bezeichneten Zelltyps: In kompletter Remission', - en: '', - }, - { - key: 'C95.70', - de: 'Sonstige Leukämie nicht näher bezeichneten Zelltyps: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C91.51', - de: 'Adulte(s) T-Zell-Lymphom/Leukämie (HTLV-1-assoziiert): In kompletter Remission', - en: '', - }, - { - key: 'C91.50', - de: 'Adulte(s) T-Zell-Lymphom/Leukämie (HTLV-1-assoziiert): Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C91.01', - de: 'Akute lymphatische Leukämie [ALL]: In kompletter Remission', - en: '', - }, - { - key: 'C91.00', - de: 'Akute lymphatische Leukämie [ALL]: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C91.11', - de: 'Chronische lymphatische Leukämie vom B-Zell-Typ [CLL]: In kompletter Remission', - en: '', - }, - { - key: 'C91.10', - de: 'Chronische lymphatische Leukämie vom B-Zell-Typ [CLL]: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C91.41', - de: 'Haarzellenleukämie: In kompletter Remission', - en: '', - }, - { - key: 'C91.40', - de: 'Haarzellenleukämie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C91.91', - de: 'Lymphatische Leukämie, nicht näher bezeichnet: In kompletter Remission', - en: '', - }, - { - key: 'C91.90', - de: 'Lymphatische Leukämie, nicht näher bezeichnet: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C91.61', - de: 'Prolymphozyten-Leukämie vom T-Zell-Typ: In kompletter Remission', - en: '', - }, - { - key: 'C91.60', - de: 'Prolymphozyten-Leukämie vom T-Zell-Typ: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C91.31', - de: 'Prolymphozytäre Leukämie vom B-Zell-Typ: In kompletter Remission', - en: '', - }, - { - key: 'C91.30', - de: 'Prolymphozytäre Leukämie vom B-Zell-Typ: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C91.81', - de: 'Reifzellige B-ALL vom Burkitt-Typ: In kompletter Remission', - en: '', - }, - { - key: 'C91.80', - de: 'Reifzellige B-ALL vom Burkitt-Typ: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C91.71', - de: 'Sonstige lymphatische Leukämie: In kompletter Remission', - en: '', - }, - { - key: 'C91.70', - de: 'Sonstige lymphatische Leukämie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C93.01', - de: 'Akute Monoblasten-/Monozytenleukämie: In kompletter Remission', - en: '', - }, - { - key: 'C93.00', - de: 'Akute Monoblasten-/Monozytenleukämie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C93.11', - de: 'Chronische myelomonozytäre Leukämie: In kompletter Remission', - en: '', - }, - { - key: 'C93.10', - de: 'Chronische myelomonozytäre Leukämie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C93.31', - de: 'Juvenile myelomonozytäre Leukämie: In kompletter Remission', - en: '', - }, - { - key: 'C93.30', - de: 'Juvenile myelomonozytäre Leukämie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C93.91', - de: 'Monozytenleukämie, nicht näher bezeichnet: In kompletter Remission', - en: '', - }, - { - key: 'C93.90', - de: 'Monozytenleukämie, nicht näher bezeichnet: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C93.71', - de: 'Sonstige Monozytenleukämie: In kompletter Remission', - en: '', - }, - { - key: 'C93.70', - de: 'Sonstige Monozytenleukämie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C92.41', - de: 'Akute Promyelozyten-Leukämie [PCL]: In kompletter Remission', - en: '', - }, - { - key: 'C92.40', - de: 'Akute Promyelozyten-Leukämie [PCL]: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C92.01', - de: 'Akute myeloblastische Leukämie [AML]: In kompletter Remission', - en: '', - }, - { - key: 'C92.00', - de: 'Akute myeloblastische Leukämie [AML]: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C92.61', - de: 'Akute myeloische Leukämie mit 11q23-Abnormität: In kompletter Remission', - en: '', - }, - { - key: 'C92.60', - de: 'Akute myeloische Leukämie mit 11q23-Abnormität: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C92.81', - de: 'Akute myeloische Leukämie mit multilineärer Dysplasie: In kompletter Remission', - en: '', - }, - { - key: 'C92.80', - de: 'Akute myeloische Leukämie mit multilineärer Dysplasie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C92.51', - de: 'Akute myelomonozytäre Leukämie: In kompletter Remission', - en: '', - }, - { - key: 'C92.50', - de: 'Akute myelomonozytäre Leukämie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C92.21', - de: 'Atypische chronische myeloische Leukämie, BCR/ABL-negativ: In kompletter Remission', - en: '', - }, - { - key: 'C92.20', - de: 'Atypische chronische myeloische Leukämie, BCR/ABL-negativ: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C92.11', - de: 'Chronische myeloische Leukämie [CML], BCR/ABL-positiv: In kompletter Remission', - en: '', - }, - { - key: 'C92.10', - de: 'Chronische myeloische Leukämie [CML], BCR/ABL-positiv: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C92.91', - de: 'Myeloische Leukämie, nicht näher bezeichnet: In kompletter Remission', - en: '', - }, - { - key: 'C92.90', - de: 'Myeloische Leukämie, nicht näher bezeichnet: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C92.31', - de: 'Myelosarkom: In kompletter Remission', - en: '', - }, - { - key: 'C92.30', - de: 'Myelosarkom: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C92.71', - de: 'Sonstige myeloische Leukämie: In kompletter Remission', - en: '', - }, - { - key: 'C92.70', - de: 'Sonstige myeloische Leukämie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C83.7', - de: 'Burkitt-Lymphom', - en: '', - }, - { - key: 'C83.3', - de: 'Diffuses großzelliges B-Zell-Lymphom', - en: '', - }, - { - key: 'C83.0', - de: 'Kleinzelliges B-Zell-Lymphom', - en: '', - }, - { - key: 'C83.5', - de: 'Lymphoblastisches Lymphom', - en: '', - }, - { - key: 'C83.1', - de: 'Mantelzell-Lymphom', - en: '', - }, - { - key: 'C83.9', - de: 'Nicht follikuläres Lymphom, nicht näher bezeichnet', - en: '', - }, - { - key: 'C83.8', - de: 'Sonstige nicht follikuläre Lymphome', - en: '', - }, - { - key: 'C90.21', - de: 'Extramedulläres Plasmozytom: In kompletter Remission', - en: '', - }, - { - key: 'C90.20', - de: 'Extramedulläres Plasmozytom: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C90.01', - de: 'Multiples Myelom: In kompletter Remission', - en: '', - }, - { - key: 'C90.00', - de: 'Multiples Myelom: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C90.11', - de: 'Plasmazellenleukämie: In kompletter Remission', - en: '', - }, - { - key: 'C90.10', - de: 'Plasmazellenleukämie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C90.31', - de: 'Solitäres Plasmozytom: In kompletter Remission', - en: '', - }, - { - key: 'C90.30', - de: 'Solitäres Plasmozytom: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C84.7', - de: 'Anaplastisches großzelliges Lymphom, ALK-negativ', - en: '', - }, - { - key: 'C84.6', - de: 'Anaplastisches großzelliges Lymphom, ALK-positiv', - en: '', - }, - { - key: 'C84.8', - de: 'Kutanes T-Zell-Lymphom, nicht näher bezeichnet', - en: '', - }, - { - key: 'C84.0', - de: 'Mycosis fungoides', - en: '', - }, - { - key: 'C84.4', - de: 'Peripheres T-Zell-Lymphom, nicht spezifiziert', - en: '', - }, - { - key: 'C84.9', - de: 'Reifzelliges T/NK-Zell-Lymphom, nicht näher bezeichnet', - en: '', - }, - { - key: 'C84.5', - de: 'Sonstige reifzellige T/NK-Zell-Lymphome', - en: '', - }, - { - key: 'C84.1', - de: 'Sézary-Syndrom', - en: '', - }, - { - key: 'C94.01', - de: 'Akute Erythroleukämie: In kompletter Remission', - en: '', - }, - { - key: 'C94.00', - de: 'Akute Erythroleukämie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C94.21', - de: 'Akute Megakaryoblastenleukämie: In kompletter Remission', - en: '', - }, - { - key: 'C94.20', - de: 'Akute Megakaryoblastenleukämie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C94.41', - de: 'Akute Panmyelose mit Myelofibrose: In kompletter Remission', - en: '', - }, - { - key: 'C94.40', - de: 'Akute Panmyelose mit Myelofibrose: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C94.8', - de: 'Blastenkrise bei chronischer myeloischer Leukämie [CML]', - en: '', - }, - { - key: 'C94.31', - de: 'Mastzellenleukämie: In kompletter Remission', - en: '', - }, - { - key: 'C94.30', - de: 'Mastzellenleukämie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C94.61', - de: 'Myelodysplastische und myeloproliferative Krankheit, nicht klassifizierbar: In kompletter Remission', - en: '', - }, - { - key: 'C94.60', - de: 'Myelodysplastische und myeloproliferative Krankheit, nicht klassifizierbar: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C94.71', - de: 'Sonstige näher bezeichnete Leukämien: In kompletter Remission', - en: '', - }, - { - key: 'C94.70', - de: 'Sonstige näher bezeichnete Leukämien: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C85.1', - de: 'B-Zell-Lymphom, nicht näher bezeichnet', - en: '', - }, - { - key: 'C85.2', - de: 'Mediastinales (thymisches) großzelliges B-Zell-Lymphom', - en: '', - }, - { - key: 'C85.9', - de: 'Non-Hodgkin-Lymphom, nicht näher bezeichnet', - en: '', - }, - { - key: 'C85.7', - de: 'Sonstige näher bezeichnete Typen des Non-Hodgkin-Lymphoms', - en: '', - }, - { - key: 'C96.9', - de: 'Bösartige Neubildung des lymphatischen, blutbildenden und verwandten Gewebes, nicht näher bezeichnet', - en: '', - }, - { - key: 'C96.2', - de: 'Bösartiger Mastzelltumor', - en: '', - }, - { - key: 'C96.8', - de: 'Histiozytisches Sarkom', - en: '', - }, - { - key: 'C96.0', - de: 'Multifokale und multisystemische (disseminierte) Langerhans-Zell-Histiozytose [Abt-Letterer-Siwe-Krankheit]', - en: '', - }, - { - key: 'C96.5', - de: 'Multifokale und unisystemische Langerhans-Zell-Histiozytose', - en: '', - }, - { - key: 'C96.4', - de: 'Sarkom der dendritischen Zellen (akzessorische Zellen)', - en: '', - }, - { - key: 'C96.7', - de: 'Sonstige näher bezeichnete bösartige Neubildungen des lymphatischen, blutbildenden und verwandten Gewebes', - en: '', - }, - { - key: 'C96.6', - de: 'Unifokale Langerhans-Zell-Histiozytose', - en: '', - }, - { - key: 'C86.5', - de: 'Angioimmunoblastisches T-Zell-Lymphom', - en: '', - }, - { - key: 'C86.4', - de: 'Blastisches NK-Zell-Lymphom', - en: '', - }, - { - key: 'C86.0', - de: 'Extranodales NK/T-Zell-Lymphom, nasaler Typ', - en: '', - }, - { - key: 'C86.1', - de: 'Hepatosplenisches T-Zell-Lymphom', - en: '', - }, - { - key: 'C86.6', - de: 'Primäre kutane CD30-positive T-Zell-Proliferationen', - en: '', - }, - { - key: 'C86.3', - de: 'Subkutanes pannikulitisches T-Zell-Lymphom', - en: '', - }, - { - key: 'C86.2', - de: 'T-Zell-Lymphom vom Enteropathie-Typ', - en: '', - }, - { - key: 'C80.9', - de: 'Bösartige Neubildung, nicht näher bezeichnet', - en: '', - }, - { - key: 'C80.0', - de: 'Bösartige Neubildung, primäre Lokalisation unbekannt, so bezeichnet', - en: '', - }, - { - key: 'C76.2', - de: 'Bösartige Neubildung ungenau bezeichneter Lokalisationen: Abdomen', - en: '', - }, - { - key: 'C76.3', - de: 'Bösartige Neubildung ungenau bezeichneter Lokalisationen: Becken', - en: '', - }, - { - key: 'C76.0', - de: 'Bösartige Neubildung ungenau bezeichneter Lokalisationen: Kopf, Gesicht und Hals', - en: '', - }, - { - key: 'C76.4', - de: 'Bösartige Neubildung ungenau bezeichneter Lokalisationen: Obere Extremität', - en: '', - }, - { - key: 'C76.1', - de: 'Bösartige Neubildung ungenau bezeichneter Lokalisationen: Thorax', - en: '', - }, - { - key: 'C76.5', - de: 'Bösartige Neubildung ungenau bezeichneter Lokalisationen: Untere Extremität', - en: '', - }, - { - key: 'C76.8', - de: 'Bösartige Neubildung: Sonstige und ungenau bezeichnete Lokalisationen, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C76.7', - de: 'Bösartige Neubildung: Sonstige ungenau bezeichnete Lokalisationen', - en: '', - }, - { - key: 'C79.1', - de: 'Sekundäre bösartige Neubildung der Harnblase sowie sonstiger und nicht näher bezeichneter Harnorgane', - en: '', - }, - { - key: 'C79.2', - de: 'Sekundäre bösartige Neubildung der Haut', - en: '', - }, - { - key: 'C79.7', - de: 'Sekundäre bösartige Neubildung der Nebenniere', - en: '', - }, - { - key: 'C79.0', - de: 'Sekundäre bösartige Neubildung der Niere und des Nierenbeckens', - en: '', - }, - { - key: 'C79.3', - de: 'Sekundäre bösartige Neubildung des Gehirns und der Hirnhäute', - en: '', - }, - { - key: 'C79.5', - de: 'Sekundäre bösartige Neubildung des Knochens und des Knochenmarkes', - en: '', - }, - { - key: 'C79.6', - de: 'Sekundäre bösartige Neubildung des Ovars', - en: '', - }, - { - key: 'C79.9', - de: 'Sekundäre bösartige Neubildung nicht näher bezeichneter Lokalisation', - en: '', - }, - { - key: 'C79.81', - de: 'Sekundäre bösartige Neubildung der Brustdrüse', - en: '', - }, - { - key: 'C79.82', - de: 'Sekundäre bösartige Neubildung der Genitalorgane', - en: '', - }, - { - key: 'C79.86', - de: 'Sekundäre bösartige Neubildung des Bindegewebes und anderer Weichteilgewebe der Extremitäten', - en: '', - }, - { - key: 'C79.85', - de: 'Sekundäre bösartige Neubildung des Bindegewebes und anderer Weichteilgewebe des Halses', - en: '', - }, - { - key: 'C79.83', - de: 'Sekundäre bösartige Neubildung des Perikards', - en: '', - }, - { - key: 'C79.88', - de: 'Sekundäre bösartige Neubildung sonstiger näher bezeichneter Lokalisationen', - en: '', - }, - { - key: 'C79.84', - de: 'Sonstige sekundäre bösartige Neubildung des Herzens', - en: '', - }, - { - key: 'C79.4', - de: 'Sekundäre bösartige Neubildung sonstiger und nicht näher bezeichneter Teile des Nervensystems', - en: '', - }, - { - key: 'C78.7', - de: 'Sekundäre bösartige Neubildung der Leber und der intrahepatischen Gallengänge', - en: '', - }, - { - key: 'C78.0', - de: 'Sekundäre bösartige Neubildung der Lunge', - en: '', - }, - { - key: 'C78.2', - de: 'Sekundäre bösartige Neubildung der Pleura', - en: '', - }, - { - key: 'C78.5', - de: 'Sekundäre bösartige Neubildung des Dickdarmes und des Rektums', - en: '', - }, - { - key: 'C78.4', - de: 'Sekundäre bösartige Neubildung des Dünndarmes', - en: '', - }, - { - key: 'C78.1', - de: 'Sekundäre bösartige Neubildung des Mediastinums', - en: '', - }, - { - key: 'C78.6', - de: 'Sekundäre bösartige Neubildung des Retroperitoneums und des Peritoneums', - en: '', - }, - { - key: 'C78.3', - de: 'Sekundäre bösartige Neubildung sonstiger und nicht näher bezeichneter Atmungsorgane', - en: '', - }, - { - key: 'C78.8', - de: 'Sekundäre bösartige Neubildung sonstiger und nicht näher bezeichneter Verdauungsorgane', - en: '', - }, - { - key: 'C77.3', - de: 'Sekundäre und nicht näher bezeichnete bösartige Neubildung: Axilläre Lymphknoten und Lymphknoten der oberen Extremität', - en: '', - }, - { - key: 'C77.4', - de: 'Sekundäre und nicht näher bezeichnete bösartige Neubildung: Inguinale Lymphknoten und Lymphknoten der unteren Extremität', - en: '', - }, - { - key: 'C77.2', - de: 'Sekundäre und nicht näher bezeichnete bösartige Neubildung: Intraabdominale Lymphknoten', - en: '', - }, - { - key: 'C77.5', - de: 'Sekundäre und nicht näher bezeichnete bösartige Neubildung: Intrapelvine Lymphknoten', - en: '', - }, - { - key: 'C77.1', - de: 'Sekundäre und nicht näher bezeichnete bösartige Neubildung: Intrathorakale Lymphknoten', - en: '', - }, - { - key: 'C77.0', - de: 'Sekundäre und nicht näher bezeichnete bösartige Neubildung: Lymphknoten des Kopfes, des Gesichtes und des Halses', - en: '', - }, - { - key: 'C77.8', - de: 'Sekundäre und nicht näher bezeichnete bösartige Neubildung: Lymphknoten mehrerer Regionen', - en: '', - }, - { - key: 'C77.9', - de: 'Sekundäre und nicht näher bezeichnete bösartige Neubildung: Lymphknoten, nicht näher bezeichnet', - en: '', - }, - { - key: 'D36.9', - de: 'Gutartige Neubildung an nicht näher bezeichneter Lokalisation', - en: '', - }, - { - key: 'D36.0', - de: 'Gutartige Neubildung: Lymphknoten', - en: '', - }, - { - key: 'D36.1', - de: 'Gutartige Neubildung: Periphere Nerven und autonomes Nervensystem', - en: '', - }, - { - key: 'D36.7', - de: 'Gutartige Neubildung: Sonstige näher bezeichnete Lokalisationen', - en: '', - }, - { - key: 'D24', - de: 'Gutartige Neubildung der Brustdrüse [Mamma]', - en: '', - }, - { - key: 'D30.3', - de: 'Gutartige Neubildung: Harnblase', - en: '', - }, - { - key: 'D30.9', - de: 'Gutartige Neubildung: Harnorgan, nicht näher bezeichnet', - en: '', - }, - { - key: 'D30.0', - de: 'Gutartige Neubildung: Niere', - en: '', - }, - { - key: 'D30.1', - de: 'Gutartige Neubildung: Nierenbecken', - en: '', - }, - { - key: 'D30.7', - de: 'Gutartige Neubildung: Sonstige Harnorgane', - en: '', - }, - { - key: 'D30.2', - de: 'Gutartige Neubildung: Ureter', - en: '', - }, - { - key: 'D30.4', - de: 'Gutartige Neubildung: Urethra', - en: '', - }, - { - key: 'D32.0', - de: 'Gutartige Neubildung: Hirnhäute', - en: '', - }, - { - key: 'D32.9', - de: 'Gutartige Neubildung: Meningen, nicht näher bezeichnet', - en: '', - }, - { - key: 'D32.1', - de: 'Gutartige Neubildung: Rückenmarkhäute', - en: '', - }, - { - key: 'D34', - de: 'Gutartige Neubildung der Schilddrüse', - en: '', - }, - { - key: 'D11.9', - de: 'Gutartige Neubildung: Große Speicheldrüse, nicht näher bezeichnet', - en: '', - }, - { - key: 'D11.0', - de: 'Gutartige Neubildung: Parotis', - en: '', - }, - { - key: 'D11.7', - de: 'Gutartige Neubildung: Sonstige große Speicheldrüsen', - en: '', - }, - { - key: 'D29.2', - de: 'Gutartige Neubildung: Hoden', - en: '', - }, - { - key: 'D29.9', - de: 'Gutartige Neubildung: Männliches Genitalorgan, nicht näher bezeichnet', - en: '', - }, - { - key: 'D29.3', - de: 'Gutartige Neubildung: Nebenhoden', - en: '', - }, - { - key: 'D29.0', - de: 'Gutartige Neubildung: Penis', - en: '', - }, - { - key: 'D29.1', - de: 'Gutartige Neubildung: Prostata', - en: '', - }, - { - key: 'D29.4', - de: 'Gutartige Neubildung: Skrotum', - en: '', - }, - { - key: 'D29.7', - de: 'Gutartige Neubildung: Sonstige männliche Genitalorgane', - en: '', - }, - { - key: 'D31.9', - de: 'Gutartige Neubildung: Auge, nicht näher bezeichnet', - en: '', - }, - { - key: 'D31.3', - de: 'Gutartige Neubildung: Chorioidea', - en: '', - }, - { - key: 'D31.0', - de: 'Gutartige Neubildung: Konjunktiva', - en: '', - }, - { - key: 'D31.1', - de: 'Gutartige Neubildung: Kornea', - en: '', - }, - { - key: 'D31.6', - de: 'Gutartige Neubildung: Orbita, nicht näher bezeichnet', - en: '', - }, - { - key: 'D31.2', - de: 'Gutartige Neubildung: Retina', - en: '', - }, - { - key: 'D31.5', - de: 'Gutartige Neubildung: Tränendrüse und Tränenwege', - en: '', - }, - { - key: 'D31.4', - de: 'Gutartige Neubildung: Ziliarkörper', - en: '', - }, - { - key: 'D17.7', - de: 'Gutartige Neubildung des Fettgewebes an sonstigen Lokalisationen', - en: '', - }, - { - key: 'D17.3', - de: 'Gutartige Neubildung des Fettgewebes der Haut und der Unterhaut an sonstigen und nicht näher bezeichneten Lokalisationen', - en: '', - }, - { - key: 'D17.2', - de: 'Gutartige Neubildung des Fettgewebes der Haut und der Unterhaut der Extremitäten', - en: '', - }, - { - key: 'D17.0', - de: 'Gutartige Neubildung des Fettgewebes der Haut und der Unterhaut des Kopfes, des Gesichtes und des Halses', - en: '', - }, - { - key: 'D17.1', - de: 'Gutartige Neubildung des Fettgewebes der Haut und der Unterhaut des Rumpfes', - en: '', - }, - { - key: 'D17.5', - de: 'Gutartige Neubildung des Fettgewebes der intraabdominalen Organe', - en: '', - }, - { - key: 'D17.4', - de: 'Gutartige Neubildung des Fettgewebes der intrathorakalen Organe', - en: '', - }, - { - key: 'D17.6', - de: 'Gutartige Neubildung des Fettgewebes des Samenstrangs', - en: '', - }, - { - key: 'D17.9', - de: 'Gutartige Neubildung des Fettgewebes, nicht näher bezeichnet', - en: '', - }, - { - key: 'D33.1', - de: 'Gutartige Neubildung: Gehirn, infratentoriell', - en: '', - }, - { - key: 'D33.2', - de: 'Gutartige Neubildung: Gehirn, nicht näher bezeichnet', - en: '', - }, - { - key: 'D33.0', - de: 'Gutartige Neubildung: Gehirn, supratentoriell', - en: '', - }, - { - key: 'D33.3', - de: 'Gutartige Neubildung: Hirnnerven', - en: '', - }, - { - key: 'D33.4', - de: 'Gutartige Neubildung: Rückenmark', - en: '', - }, - { - key: 'D33.7', - de: 'Gutartige Neubildung: Sonstige näher bezeichnete Teile des Zentralnervensystems', - en: '', - }, - { - key: 'D33.9', - de: 'Gutartige Neubildung: Zentralnervensystem, nicht näher bezeichnet', - en: '', - }, - { - key: 'D16.41', - de: 'Gutartige Neubildung des Knochens und des Gelenkknorpels: Kraniofazial', - en: '', - }, - { - key: 'D16.42', - de: 'Gutartige Neubildung des Knochens und des Gelenkknorpels: Maxillofazial', - en: '', - }, - { - key: 'D16.8', - de: 'Gutartige Neubildung des Knochens und des Gelenkknorpels: Knöchernes Becken', - en: '', - }, - { - key: 'D16.1', - de: 'Gutartige Neubildung des Knochens und des Gelenkknorpels: Kurze Knochen der oberen Extremität', - en: '', - }, - { - key: 'D16.3', - de: 'Gutartige Neubildung des Knochens und des Gelenkknorpels: Kurze Knochen der unteren Extremität', - en: '', - }, - { - key: 'D16.2', - de: 'Gutartige Neubildung des Knochens und des Gelenkknorpels: Lange Knochen der unteren Extremität', - en: '', - }, - { - key: 'D16.72', - de: 'Gutartige Neubildung des Knochens und des Gelenkknorpels: Klavikula', - en: '', - }, - { - key: 'D16.70', - de: 'Gutartige Neubildung des Knochens und des Gelenkknorpels: Rippen', - en: '', - }, - { - key: 'D16.71', - de: 'Gutartige Neubildung des Knochens und des Gelenkknorpels: Sternum', - en: '', - }, - { - key: 'D16.0', - de: 'Gutartige Neubildung des Knochens und des Gelenkknorpels: Skapula und lange Knochen der oberen Extremität', - en: '', - }, - { - key: 'D16.5', - de: 'Gutartige Neubildung des Knochens und des Gelenkknorpels: Unterkieferknochen', - en: '', - }, - { - key: 'D16.6', - de: 'Gutartige Neubildung des Knochens und des Gelenkknorpels: Wirbelsäule', - en: '', - }, - { - key: 'D16.9', - de: 'Gutartige Neubildung: Knochen und Gelenkknorpel, nicht näher bezeichnet', - en: '', - }, - { - key: 'D12.9', - de: 'Gutartige Neubildung: Analkanal und Anus', - en: '', - }, - { - key: 'D12.1', - de: 'Gutartige Neubildung: Appendix vermiformis', - en: '', - }, - { - key: 'D12.2', - de: 'Gutartige Neubildung: Colon ascendens', - en: '', - }, - { - key: 'D12.4', - de: 'Gutartige Neubildung: Colon descendens', - en: '', - }, - { - key: 'D12.5', - de: 'Gutartige Neubildung: Colon sigmoideum', - en: '', - }, - { - key: 'D12.3', - de: 'Gutartige Neubildung: Colon transversum', - en: '', - }, - { - key: 'D12.6', - de: 'Gutartige Neubildung: Kolon, nicht näher bezeichnet', - en: '', - }, - { - key: 'D12.7', - de: 'Gutartige Neubildung: Rektosigmoid, Übergang', - en: '', - }, - { - key: 'D12.8', - de: 'Gutartige Neubildung: Rektum', - en: '', - }, - { - key: 'D12.0', - de: 'Gutartige Neubildung: Zäkum', - en: '', - }, - { - key: 'D14.4', - de: 'Gutartige Neubildung: Atmungssystem, nicht näher bezeichnet', - en: '', - }, - { - key: 'D14.3', - de: 'Gutartige Neubildung: Bronchus und Lunge', - en: '', - }, - { - key: 'D14.1', - de: 'Gutartige Neubildung: Larynx', - en: '', - }, - { - key: 'D14.0', - de: 'Gutartige Neubildung: Mittelohr, Nasenhöhle und Nasennebenhöhlen', - en: '', - }, - { - key: 'D14.2', - de: 'Gutartige Neubildung: Trachea', - en: '', - }, - { - key: 'D10.7', - de: 'Gutartige Neubildung: Hypopharynx', - en: '', - }, - { - key: 'D10.0', - de: 'Gutartige Neubildung: Lippe', - en: '', - }, - { - key: 'D10.2', - de: 'Gutartige Neubildung: Mundboden', - en: '', - }, - { - key: 'D10.6', - de: 'Gutartige Neubildung: Nasopharynx', - en: '', - }, - { - key: 'D10.9', - de: 'Gutartige Neubildung: Pharynx, nicht näher bezeichnet', - en: '', - }, - { - key: 'D10.5', - de: 'Gutartige Neubildung: Sonstige Teile des Oropharynx', - en: '', - }, - { - key: 'D10.3', - de: 'Gutartige Neubildung: Sonstige und nicht näher bezeichnete Teile des Mundes', - en: '', - }, - { - key: 'D10.4', - de: 'Gutartige Neubildung: Tonsille', - en: '', - }, - { - key: 'D10.1', - de: 'Gutartige Neubildung: Zunge', - en: '', - }, - { - key: 'D27', - de: 'Gutartige Neubildung des Ovars', - en: '', - }, - { - key: 'D20.1', - de: 'Gutartige Neubildung: Peritoneum', - en: '', - }, - { - key: 'D20.0', - de: 'Gutartige Neubildung: Retroperitoneum', - en: '', - }, - { - key: 'D19.7', - de: 'Gutartige Neubildung: Mesotheliales Gewebe an sonstigen Lokalisationen', - en: '', - }, - { - key: 'D19.0', - de: 'Gutartige Neubildung: Mesotheliales Gewebe der Pleura', - en: '', - }, - { - key: 'D19.1', - de: 'Gutartige Neubildung: Mesotheliales Gewebe des Peritoneums', - en: '', - }, - { - key: 'D19.9', - de: 'Gutartige Neubildung: Mesotheliales Gewebe, nicht näher bezeichnet', - en: '', - }, - { - key: 'D35.8', - de: 'Gutartige Neubildung: Beteiligung mehrerer endokriner Drüsen', - en: '', - }, - { - key: 'D35.3', - de: 'Gutartige Neubildung: Ductus craniopharyngealis', - en: '', - }, - { - key: 'D35.9', - de: 'Gutartige Neubildung: Endokrine Drüse, nicht näher bezeichnet', - en: '', - }, - { - key: 'D35.4', - de: 'Gutartige Neubildung: Epiphyse [Glandula pinealis] [Zirbeldrüse]', - en: '', - }, - { - key: 'D35.6', - de: 'Gutartige Neubildung: Glomus aorticum und sonstige Paraganglien', - en: '', - }, - { - key: 'D35.5', - de: 'Gutartige Neubildung: Glomus caroticum', - en: '', - }, - { - key: 'D35.2', - de: 'Gutartige Neubildung: Hypophyse', - en: '', - }, - { - key: 'D35.0', - de: 'Gutartige Neubildung: Nebenniere', - en: '', - }, - { - key: 'D35.1', - de: 'Gutartige Neubildung: Nebenschilddrüse', - en: '', - }, - { - key: 'D35.7', - de: 'Gutartige Neubildung: Sonstige näher bezeichnete endokrine Drüsen', - en: '', - }, - { - key: 'D15.1', - de: 'Gutartige Neubildung: Herz', - en: '', - }, - { - key: 'D15.9', - de: 'Gutartige Neubildung: Intrathorakales Organ, nicht näher bezeichnet', - en: '', - }, - { - key: 'D15.2', - de: 'Gutartige Neubildung: Mediastinum', - en: '', - }, - { - key: 'D15.7', - de: 'Gutartige Neubildung: Sonstige näher bezeichnete intrathorakale Organe', - en: '', - }, - { - key: 'D15.0', - de: 'Gutartige Neubildung: Thymus', - en: '', - }, - { - key: 'D28.7', - de: 'Gutartige Neubildung: Sonstige näher bezeichnete weibliche Genitalorgane', - en: '', - }, - { - key: 'D28.2', - de: 'Gutartige Neubildung: Tubae uterinae und Ligamenta', - en: '', - }, - { - key: 'D28.1', - de: 'Gutartige Neubildung: Vagina', - en: '', - }, - { - key: 'D28.0', - de: 'Gutartige Neubildung: Vulva', - en: '', - }, - { - key: 'D28.9', - de: 'Gutartige Neubildung: Weibliches Genitalorgan, nicht näher bezeichnet', - en: '', - }, - { - key: 'D13.2', - de: 'Gutartige Neubildung: Duodenum', - en: '', - }, - { - key: 'D13.7', - de: 'Gutartige Neubildung: Endokriner Drüsenanteil des Pankreas', - en: '', - }, - { - key: 'D13.5', - de: 'Gutartige Neubildung: Extrahepatische Gallengänge und Gallenblase', - en: '', - }, - { - key: 'D13.4', - de: 'Gutartige Neubildung: Leber', - en: '', - }, - { - key: 'D13.1', - de: 'Gutartige Neubildung: Magen', - en: '', - }, - { - key: 'D13.6', - de: 'Gutartige Neubildung: Pankreas', - en: '', - }, - { - key: 'D13.3', - de: 'Gutartige Neubildung: Sonstige und nicht näher bezeichnete Teile des Dünndarmes', - en: '', - }, - { - key: 'D13.9', - de: 'Gutartige Neubildung: Ungenau bezeichnete Lokalisationen innerhalb des Verdauungssystems', - en: '', - }, - { - key: 'D13.0', - de: 'Gutartige Neubildung: Ösophagus', - en: '', - }, - { - key: 'D18.06', - de: 'Hämangiom: Auge und Orbita', - en: '', - }, - { - key: 'D18.01', - de: 'Hämangiom: Haut und Unterhaut', - en: '', - }, - { - key: 'D18.03', - de: 'Hämangiom: Hepatobiliäres System und Pankreas', - en: '', - }, - { - key: 'D18.02', - de: 'Hämangiom: Intrakraniell', - en: '', - }, - { - key: 'D18.00', - de: 'Hämangiom: Nicht näher bezeichnete Lokalisation', - en: '', - }, - { - key: 'D18.05', - de: 'Hämangiom: Ohr, Nase, Mund und Rachen', - en: '', - }, - { - key: 'D18.08', - de: 'Hämangiom: Sonstige Lokalisationen', - en: '', - }, - { - key: 'D18.04', - de: 'Hämangiom: Verdauungssystem', - en: '', - }, - { - key: 'D18.11', - de: 'Lymphangiom: Axilla', - en: '', - }, - { - key: 'D18.10', - de: 'Lymphangiom: Hygroma colli cysticum', - en: '', - }, - { - key: 'D18.12', - de: 'Lymphangiom: Inguinal', - en: '', - }, - { - key: 'D18.19', - de: 'Lymphangiom: Nicht näher bezeichnete Lokalisation', - en: '', - }, - { - key: 'D18.13', - de: 'Lymphangiom: Retroperitoneal', - en: '', - }, - { - key: 'D18.18', - de: 'Lymphangiom: Sonstige Lokalisationen', - en: '', - }, - { - key: 'D25.1', - de: 'Intramurales Leiomyom des Uterus', - en: '', - }, - { - key: 'D25.9', - de: 'Leiomyom des Uterus, nicht näher bezeichnet', - en: '', - }, - { - key: 'D25.0', - de: 'Submuköses Leiomyom des Uterus', - en: '', - }, - { - key: 'D25.2', - de: 'Subseröses Leiomyom des Uterus', - en: '', - }, - { - key: 'D22.0', - de: 'Melanozytennävus der Lippe', - en: '', - }, - { - key: 'D22.4', - de: 'Melanozytennävus der behaarten Kopfhaut und des Halses', - en: '', - }, - { - key: 'D22.6', - de: 'Melanozytennävus der oberen Extremität, einschließlich Schulter', - en: '', - }, - { - key: 'D22.7', - de: 'Melanozytennävus der unteren Extremität, einschließlich Hüfte', - en: '', - }, - { - key: 'D22.1', - de: 'Melanozytennävus des Augenlides, einschließlich Kanthus', - en: '', - }, - { - key: 'D22.2', - de: 'Melanozytennävus des Ohres und des äußeren Gehörganges', - en: '', - }, - { - key: 'D22.5', - de: 'Melanozytennävus des Rumpfes', - en: '', - }, - { - key: 'D22.3', - de: 'Melanozytennävus sonstiger und nicht näher bezeichneter Teile des Gesichtes', - en: '', - }, - { - key: 'D22.9', - de: 'Melanozytennävus, nicht näher bezeichnet', - en: '', - }, - { - key: 'D23.4', - de: 'Sonstige gutartige Neubildungen: Behaarte Kopfhaut und Haut des Halses', - en: '', - }, - { - key: 'D23.6', - de: 'Sonstige gutartige Neubildungen: Haut der oberen Extremität, einschließlich Schulter', - en: '', - }, - { - key: 'D23.7', - de: 'Sonstige gutartige Neubildungen: Haut der unteren Extremität, einschließlich Hüfte', - en: '', - }, - { - key: 'D23.1', - de: 'Sonstige gutartige Neubildungen: Haut des Augenlides, einschließlich Kanthus', - en: '', - }, - { - key: 'D23.2', - de: 'Sonstige gutartige Neubildungen: Haut des Ohres und des äußeren Gehörganges', - en: '', - }, - { - key: 'D23.5', - de: 'Sonstige gutartige Neubildungen: Haut des Rumpfes', - en: '', - }, - { - key: 'D23.3', - de: 'Sonstige gutartige Neubildungen: Haut sonstiger und nicht näher bezeichneter Teile des Gesichtes', - en: '', - }, - { - key: 'D23.9', - de: 'Sonstige gutartige Neubildungen: Haut, nicht näher bezeichnet', - en: '', - }, - { - key: 'D23.0', - de: 'Sonstige gutartige Neubildungen: Lippenhaut', - en: '', - }, - { - key: 'D21.1', - de: 'Sonstige gutartige Neubildungen: Bindegewebe und andere Weichteilgewebe der oberen Extremität, einschließlich Schulter', - en: '', - }, - { - key: 'D21.2', - de: 'Sonstige gutartige Neubildungen: Bindegewebe und andere Weichteilgewebe der unteren Extremität, einschließlich Hüfte', - en: '', - }, - { - key: 'D21.4', - de: 'Sonstige gutartige Neubildungen: Bindegewebe und andere Weichteilgewebe des Abdomens', - en: '', - }, - { - key: 'D21.5', - de: 'Sonstige gutartige Neubildungen: Bindegewebe und andere Weichteilgewebe des Beckens', - en: '', - }, - { - key: 'D21.0', - de: 'Sonstige gutartige Neubildungen: Bindegewebe und andere Weichteilgewebe des Kopfes, des Gesichtes und des Halses', - en: '', - }, - { - key: 'D21.6', - de: 'Sonstige gutartige Neubildungen: Bindegewebe und andere Weichteilgewebe des Rumpfes, nicht näher bezeichnet', - en: '', - }, - { - key: 'D21.3', - de: 'Sonstige gutartige Neubildungen: Bindegewebe und andere Weichteilgewebe des Thorax', - en: '', - }, - { - key: 'D21.9', - de: 'Sonstige gutartige Neubildungen: Bindegewebe und andere Weichteilgewebe, nicht näher bezeichnet', - en: '', - }, - { - key: 'D26.0', - de: 'Sonstige gutartige Neubildungen: Cervix uteri', - en: '', - }, - { - key: 'D26.1', - de: 'Sonstige gutartige Neubildungen: Corpus uteri', - en: '', - }, - { - key: 'D26.7', - de: 'Sonstige gutartige Neubildungen: Sonstige Teile des Uterus', - en: '', - }, - { - key: 'D26.9', - de: 'Sonstige gutartige Neubildungen: Uterus, nicht näher bezeichnet', - en: '', - }, - { - key: 'D05.9', - de: 'Carcinoma in situ der Brustdrüse, nicht näher bezeichnet', - en: '', - }, - { - key: 'D05.1', - de: 'Carcinoma in situ der Milchgänge', - en: '', - }, - { - key: 'D05.0', - de: 'Lobuläres Carcinoma in situ der Brustdrüse', - en: '', - }, - { - key: 'D05.7', - de: 'Sonstiges Carcinoma in situ der Brustdrüse', - en: '', - }, - { - key: 'D06.9', - de: 'Carcinoma in situ: Cervix uteri, nicht näher bezeichnet', - en: '', - }, - { - key: 'D06.1', - de: 'Carcinoma in situ: Ektozervix', - en: '', - }, - { - key: 'D06.0', - de: 'Carcinoma in situ: Endozervix', - en: '', - }, - { - key: 'D06.7', - de: 'Carcinoma in situ: Sonstige Teile der Cervix uteri', - en: '', - }, - { - key: 'D04.4', - de: 'Carcinoma in situ: Behaarte Kopfhaut und Haut des Halses', - en: '', - }, - { - key: 'D04.8', - de: 'Carcinoma in situ: Haut an sonstigen Lokalisationen', - en: '', - }, - { - key: 'D04.6', - de: 'Carcinoma in situ: Haut der oberen Extremität, einschließlich Schulter', - en: '', - }, - { - key: 'D04.7', - de: 'Carcinoma in situ: Haut der unteren Extremität, einschließlich Hüfte', - en: '', - }, - { - key: 'D04.1', - de: 'Carcinoma in situ: Haut des Augenlides, einschließlich Kanthus', - en: '', - }, - { - key: 'D04.2', - de: 'Carcinoma in situ: Haut des Ohres und des äußeren Gehörganges', - en: '', - }, - { - key: 'D04.5', - de: 'Carcinoma in situ: Haut des Rumpfes', - en: '', - }, - { - key: 'D04.3', - de: 'Carcinoma in situ: Haut sonstiger und nicht näher bezeichneter Teile des Gesichtes', - en: '', - }, - { - key: 'D04.9', - de: 'Carcinoma in situ: Haut, nicht näher bezeichnet', - en: '', - }, - { - key: 'D04.0', - de: 'Carcinoma in situ: Lippenhaut', - en: '', - }, - { - key: 'D00.0', - de: 'Carcinoma in situ: Lippe, Mundhöhle und Pharynx', - en: '', - }, - { - key: 'D00.2', - de: 'Carcinoma in situ: Magen', - en: '', - }, - { - key: 'D00.1', - de: 'Carcinoma in situ: Ösophagus', - en: '', - }, - { - key: 'D02.4', - de: 'Carcinoma in situ: Atmungssystem, nicht näher bezeichnet', - en: '', - }, - { - key: 'D02.2', - de: 'Carcinoma in situ: Bronchus und Lunge', - en: '', - }, - { - key: 'D02.0', - de: 'Carcinoma in situ: Larynx', - en: '', - }, - { - key: 'D02.3', - de: 'Carcinoma in situ: Sonstige Teile des Atmungssystems', - en: '', - }, - { - key: 'D02.1', - de: 'Carcinoma in situ: Trachea', - en: '', - }, - { - key: 'D07.0', - de: 'Carcinoma in situ: Endometrium', - en: '', - }, - { - key: 'D07.4', - de: 'Carcinoma in situ: Penis', - en: '', - }, - { - key: 'D07.5', - de: 'Carcinoma in situ: Prostata', - en: '', - }, - { - key: 'D07.6', - de: 'Carcinoma in situ: Sonstige und nicht näher bezeichnete männliche Genitalorgane', - en: '', - }, - { - key: 'D07.3', - de: 'Carcinoma in situ: Sonstige und nicht näher bezeichnete weibliche Genitalorgane', - en: '', - }, - { - key: 'D07.2', - de: 'Carcinoma in situ: Vagina', - en: '', - }, - { - key: 'D07.1', - de: 'Carcinoma in situ: Vulva', - en: '', - }, - { - key: 'D09.7', - de: 'Carcinoma in situ sonstiger näher bezeichneter Lokalisationen', - en: '', - }, - { - key: 'D09.9', - de: 'Carcinoma in situ, nicht näher bezeichnet', - en: '', - }, - { - key: 'D09.2', - de: 'Carcinoma in situ: Auge', - en: '', - }, - { - key: 'D09.0', - de: 'Carcinoma in situ: Harnblase', - en: '', - }, - { - key: 'D09.3', - de: 'Carcinoma in situ: Schilddrüse und sonstige endokrine Drüsen', - en: '', - }, - { - key: 'D09.1', - de: 'Carcinoma in situ: Sonstige und nicht näher bezeichnete Harnorgane', - en: '', - }, - { - key: 'D01.3', - de: 'Carcinoma in situ: Analkanal und Anus', - en: '', - }, - { - key: 'D01.0', - de: 'Carcinoma in situ: Kolon', - en: '', - }, - { - key: 'D01.5', - de: 'Carcinoma in situ: Leber, Gallenblase und Gallengänge', - en: '', - }, - { - key: 'D01.1', - de: 'Carcinoma in situ: Rektosigmoid, Übergang', - en: '', - }, - { - key: 'D01.2', - de: 'Carcinoma in situ: Rektum', - en: '', - }, - { - key: 'D01.7', - de: 'Carcinoma in situ: Sonstige näher bezeichnete Verdauungsorgane', - en: '', - }, - { - key: 'D01.4', - de: 'Carcinoma in situ: Sonstige und nicht näher bezeichnete Teile des Darmes', - en: '', - }, - { - key: 'D01.9', - de: 'Carcinoma in situ: Verdauungsorgan, nicht näher bezeichnet', - en: '', - }, - { - key: 'D03.8', - de: 'Melanoma in situ an sonstigen Lokalisationen', - en: '', - }, - { - key: 'D03.0', - de: 'Melanoma in situ der Lippe', - en: '', - }, - { - key: 'D03.4', - de: 'Melanoma in situ der behaarten Kopfhaut und des Halses', - en: '', - }, - { - key: 'D03.6', - de: 'Melanoma in situ der oberen Extremität, einschließlich Schulter', - en: '', - }, - { - key: 'D03.7', - de: 'Melanoma in situ der unteren Extremität, einschließlich Hüfte', - en: '', - }, - { - key: 'D03.1', - de: 'Melanoma in situ des Augenlides, einschließlich Kanthus', - en: '', - }, - { - key: 'D03.2', - de: 'Melanoma in situ des Ohres und des äußeren Gehörganges', - en: '', - }, - { - key: 'D03.5', - de: 'Melanoma in situ des Rumpfes', - en: '', - }, - { - key: 'D03.3', - de: 'Melanoma in situ sonstiger und nicht näher bezeichneter Teile des Gesichtes', - en: '', - }, - { - key: 'D03.9', - de: 'Melanoma in situ, nicht näher bezeichnet', - en: '', - }, - { - key: 'D46.6', - de: 'Myelodysplastisches Syndrom mit isolierter del(5q)-Chromosomenanomalie', - en: '', - }, - { - key: 'D46.9', - de: 'Myelodysplastisches Syndrom, nicht näher bezeichnet', - en: '', - }, - { - key: 'D46.2', - de: 'Refraktäre Anämie mit Blastenüberschuss [RAEB]', - en: '', - }, - { - key: 'D46.5', - de: 'Refraktäre Anämie mit Mehrlinien-Dysplasie', - en: '', - }, - { - key: 'D46.1', - de: 'Refraktäre Anämie mit Ringsideroblasten', - en: '', - }, - { - key: 'D46.0', - de: 'Refraktäre Anämie ohne Ringsideroblasten, so bezeichnet', - en: '', - }, - { - key: 'D46.4', - de: 'Refraktäre Anämie, nicht näher bezeichnet', - en: '', - }, - { - key: 'D46.7', - de: 'Sonstige myelodysplastische Syndrome', - en: '', - }, - { - key: 'D48.9', - de: 'Neubildung unsicheren oder unbekannten Verhaltens, nicht näher bezeichnet', - en: '', - }, - { - key: 'D48.1', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Bindegewebe und andere Weichteilgewebe', - en: '', - }, - { - key: 'D48.6', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Brustdrüse [Mamma]', - en: '', - }, - { - key: 'D48.5', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Haut', - en: '', - }, - { - key: 'D48.0', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Knochen und Gelenkknorpel', - en: '', - }, - { - key: 'D48.2', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Periphere Nerven und autonomes Nervensystem', - en: '', - }, - { - key: 'D48.4', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Peritoneum', - en: '', - }, - { - key: 'D48.3', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Retroperitoneum', - en: '', - }, - { - key: 'D48.7', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Sonstige näher bezeichnete Lokalisationen', - en: '', - }, - { - key: 'D41.4', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Harnblase', - en: '', - }, - { - key: 'D41.9', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Harnorgan, nicht näher bezeichnet', - en: '', - }, - { - key: 'D41.0', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Niere', - en: '', - }, - { - key: 'D41.1', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Nierenbecken', - en: '', - }, - { - key: 'D41.7', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Sonstige Harnorgane', - en: '', - }, - { - key: 'D41.2', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Ureter', - en: '', - }, - { - key: 'D41.3', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Urethra', - en: '', - }, - { - key: 'D42.0', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Hirnhäute', - en: '', - }, - { - key: 'D42.9', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Meningen, nicht näher bezeichnet', - en: '', - }, - { - key: 'D42.1', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Rückenmarkhäute', - en: '', - }, - { - key: 'D37.3', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Appendix vermiformis', - en: '', - }, - { - key: 'D37.2', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Dünndarm', - en: '', - }, - { - key: 'D37.4', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Kolon', - en: '', - }, - { - key: 'D37.6', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Leber, Gallenblase und Gallengänge', - en: '', - }, - { - key: 'D37.0', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Lippe, Mundhöhle und Pharynx', - en: '', - }, - { - key: 'D37.1', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Magen', - en: '', - }, - { - key: 'D37.5', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Rektum', - en: '', - }, - { - key: 'D37.70', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Pankreas', - en: '', - }, - { - key: 'D37.78', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Sonstige Verdauungsorgane', - en: '', - }, - { - key: 'D37.9', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Verdauungsorgan, nicht näher bezeichnet', - en: '', - }, - { - key: 'D44.8', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Beteiligung mehrerer endokriner Drüsen', - en: '', - }, - { - key: 'D44.4', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Ductus craniopharyngealis', - en: '', - }, - { - key: 'D44.9', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Endokrine Drüse, nicht näher bezeichnet', - en: '', - }, - { - key: 'D44.5', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Epiphyse [Glandula pinealis] [Zirbeldrüse]', - en: '', - }, - { - key: 'D44.7', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Glomus aorticum und sonstige Paraganglien', - en: '', - }, - { - key: 'D44.6', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Glomus caroticum', - en: '', - }, - { - key: 'D44.3', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Hypophyse', - en: '', - }, - { - key: 'D44.1', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Nebenniere', - en: '', - }, - { - key: 'D44.2', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Nebenschilddrüse', - en: '', - }, - { - key: 'D44.0', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Schilddrüse', - en: '', - }, - { - key: 'D40.1', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Hoden', - en: '', - }, - { - key: 'D40.9', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Männliches Genitalorgan, nicht näher bezeichnet', - en: '', - }, - { - key: 'D40.0', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Prostata', - en: '', - }, - { - key: 'D40.7', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Sonstige männliche Genitalorgane', - en: '', - }, - { - key: 'D39.1', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Ovar', - en: '', - }, - { - key: 'D39.2', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Plazenta', - en: '', - }, - { - key: 'D39.7', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Sonstige weibliche Genitalorgane', - en: '', - }, - { - key: 'D39.0', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Uterus', - en: '', - }, - { - key: 'D39.9', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Weibliches Genitalorgan, nicht näher bezeichnet', - en: '', - }, - { - key: 'D43.1', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Gehirn, infratentoriell', - en: '', - }, - { - key: 'D43.2', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Gehirn, nicht näher bezeichnet', - en: '', - }, - { - key: 'D43.0', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Gehirn, supratentoriell', - en: '', - }, - { - key: 'D43.3', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Hirnnerven', - en: '', - }, - { - key: 'D43.4', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Rückenmark', - en: '', - }, - { - key: 'D43.7', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Sonstige Teile des Zentralnervensystems', - en: '', - }, - { - key: 'D43.9', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Zentralnervensystem, nicht näher bezeichnet', - en: '', - }, - { - key: 'D38.6', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Atmungsorgan, nicht näher bezeichnet', - en: '', - }, - { - key: 'D38.0', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Larynx', - en: '', - }, - { - key: 'D38.3', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Mediastinum', - en: '', - }, - { - key: 'D38.2', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Pleura', - en: '', - }, - { - key: 'D38.5', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Sonstige Atmungsorgane', - en: '', - }, - { - key: 'D38.4', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Thymus', - en: '', - }, - { - key: 'D38.1', - de: 'Neubildung unsicheren oder unbekannten Verhaltens: Trachea, Bronchus und Lunge', - en: '', - }, - { - key: 'D45', - de: 'Polycythaemia vera', - en: '', - }, - { - key: 'D47.5', - de: 'Chronische Eosinophilen-Leukämie [Hypereosinophiles Syndrom]', - en: '', - }, - { - key: 'D47.1', - de: 'Chronische myeloproliferative Krankheit', - en: '', - }, - { - key: 'D47.3', - de: 'Essentielle (hämorrhagische) Thrombozythämie', - en: '', - }, - { - key: 'D47.0', - de: 'Histiozyten- und Mastzelltumor unsicheren oder unbekannten Verhaltens', - en: '', - }, - { - key: 'D47.2', - de: 'Monoklonale Gammopathie unbestimmter Signifikanz [MGUS]', - en: '', - }, - { - key: 'D47.9', - de: 'Neubildung unsicheren oder unbekannten Verhaltens des lymphatischen, blutbildenden und verwandten Gewebes, nicht näher bezeichnet', - en: '', - }, - { - key: 'D47.4', - de: 'Osteomyelofibrose', - en: '', - }, - { - key: 'D47.7', - de: 'Sonstige näher bezeichnete Neubildungen unsicheren oder unbekannten Verhaltens des lymphatischen, blutbildenden und verwandten Gewebes', - en: '', - }, - ] -); +import {Criteria} from "@samply/lens-core"; +export const Diagnosen: Criteria = + new Criteria( + "diagnosis", + { + en: "Diagnosis ICD-10", + de: "Diagnose ICD-10" + }, + "string", + "http://fhir.de/CodeSystem/dimdi/icd-10-gm", + [ + "EQUALS", + "CONTAINS" + ], + [ + { + key: "A00", + en: "", + de: "Cholera", + }, + { + key: "A00.0", + en: "", + de: "Cholera due to Vibrio cholerae 01, biovar cholerae", + }, + { + key: "A00.1", + en: "", + de: "Cholera due to Vibrio cholerae 01, biovar eltor", + }, + { + key: "A00.9", + en: "", + de: "Cholera, unspecified", + }, + { + key: "A01", + en: "", + de: "Typhoid and paratyphoid fevers", + }, + { + key: "A01.0", + en: "", + de: "Typhoid fever", + }, + { + key: "A01.1", + en: "", + de: "Paratyphoid fever A", + }, + { + key: "A01.2", + en: "", + de: "Paratyphoid fever B", + }, + { + key: "A01.3", + en: "", + de: "Paratyphoid fever C", + }, + { + key: "A01.4", + en: "", + de: "Paratyphoid fever, unspecified", + }, + { + key: "A02", + en: "", + de: "Other salmonella infections", + }, + { + key: "A02.0", + en: "", + de: "Salmonella enteritis", + }, + { + key: "A02.1", + en: "", + de: "Salmonella sepsis", + }, + { + key: "A02.2", + en: "", + de: "Localized salmonella infections", + }, + { + key: "A02.8", + en: "", + de: "Other specified salmonella infections", + }, + { + key: "A02.9", + en: "", + de: "Salmonella infection, unspecified", + }, + { + key: "A03", + en: "", + de: "Shigellosis", + }, + { + key: "A03.0", + en: "", + de: "Shigellosis due to Shigella dysenteriae", + }, + { + key: "A03.1", + en: "", + de: "Shigellosis due to Shigella flexneri", + }, + { + key: "A03.2", + en: "", + de: "Shigellosis due to Shigella boydii", + }, + { + key: "A03.3", + en: "", + de: "Shigellosis due to Shigella sonnei", + }, + { + key: "A03.8", + en: "", + de: "Other shigellosis", + }, + { + key: "A03.9", + en: "", + de: "Shigellosis, unspecified", + }, + { + key: "A04", + en: "", + de: "Other bacterial intestinal infections", + }, + { + key: "A04.0", + en: "", + de: "Enteropathogenic Escherichia coli infection", + }, + { + key: "A04.1", + en: "", + de: "Enterotoxigenic Escherichia coli infection", + }, + { + key: "A04.2", + en: "", + de: "Enteroinvasive Escherichia coli infection", + }, + { + key: "A04.3", + en: "", + de: "Enterohaemorrhagic Escherichia coli infection", + }, + { + key: "A04.4", + en: "", + de: "Other intestinal Escherichia coli infections", + }, + { + key: "A04.5", + en: "", + de: "Campylobacter enteritis", + }, + { + key: "A04.6", + en: "", + de: "Enteritis due to Yersinia enterocolitica", + }, + { + key: "A04.7", + en: "", + de: "Enterocolitis due to Clostridium difficile", + }, + { + key: "A04.8", + en: "", + de: "Other specified bacterial intestinal infections", + }, + { + key: "A04.9", + en: "", + de: "Bacterial intestinal infection, unspecified", + }, + { + key: "A05", + en: "", + de: "Other bacterial foodborne intoxications, not elsewhere classified", + }, + { + key: "A05.0", + en: "", + de: "Foodborne staphylococcal intoxication", + }, + { + key: "A05.1", + en: "", + de: "Botulism", + }, + { + key: "A05.2", + en: "", + de: "Foodborne Clostridium perfringens [Clostridium welchii] intoxication", + }, + { + key: "A05.3", + en: "", + de: "Foodborne Vibrio parahaemolyticus intoxication", + }, + { + key: "A05.4", + en: "", + de: "Foodborne Bacillus cereus intoxication", + }, + { + key: "A05.8", + en: "", + de: "Other specified bacterial foodborne intoxications", + }, + { + key: "A05.9", + en: "", + de: "Bacterial foodborne intoxication, unspecified", + }, + { + key: "A06", + en: "", + de: "Amoebiasis", + }, + { + key: "A06.0", + en: "", + de: "Acute amoebic dysentery", + }, + { + key: "A06.1", + en: "", + de: "Chronic intestinal amoebiasis", + }, + { + key: "A06.2", + en: "", + de: "Amoebic nondysenteric colitis", + }, + { + key: "A06.3", + en: "", + de: "Amoeboma of intestine", + }, + { + key: "A06.7", + en: "", + de: "Cutaneous amoebiasis", + }, + { + key: "A06.8", + en: "", + de: "Amoebic infection of other sites", + }, + { + key: "A06.9", + en: "", + de: "Amoebiasis, unspecified", + }, + { + key: "A07", + en: "", + de: "Other protozoal intestinal diseases", + }, + { + key: "A07.0", + en: "", + de: "Balantidiasis", + }, + { + key: "A07.1", + en: "", + de: "Giardiasis [lambliasis]", + }, + { + key: "A07.2", + en: "", + de: "Cryptosporidiosis", + }, + { + key: "A07.3", + en: "", + de: "Isosporiasis", + }, + { + key: "A07.8", + en: "", + de: "Other specified protozoal intestinal diseases", + }, + { + key: "A07.9", + en: "", + de: "Protozoal intestinal disease, unspecified", + }, + { + key: "A08", + en: "", + de: "Viral and other specified intestinal infections", + }, + { + key: "A08.0", + en: "", + de: "Rotaviral enteritis", + }, + { + key: "A08.1", + en: "", + de: "Acute gastroenteropathy due to Norovirus", + }, + { + key: "A08.2", + en: "", + de: "Adenoviral enteritis", + }, + { + key: "A08.3", + en: "", + de: "Other viral enteritis", + }, + { + key: "A08.4", + en: "", + de: "Viral intestinal infection, unspecified", + }, + { + key: "A08.5", + en: "", + de: "Other specified intestinal infections", + }, + { + key: "A09", + en: "", + de: "Other gastroenteritis and colitis of infectious and unspecified origin", + }, + { + key: "A09.0", + en: "", + de: "Other and unspecified gastroenteritis and colitis of infectious origin", + }, + { + key: "A09.9", + en: "", + de: "Gastroenteritis and colitis of unspecified origin", + }, + { + key: "A15", + en: "", + de: "Respiratory tuberculosis, bacteriologically and histologically confirmed", + }, + { + key: "A15.0", + en: "", + de: "Tuberculosis of lung, confirmed by sputum microscopy with or without culture", + }, + { + key: "A15.1", + en: "", + de: "Tuberculosis of lung, confirmed by culture only", + }, + { + key: "A15.2", + en: "", + de: "Tuberculosis of lung, confirmed histologically", + }, + { + key: "A15.3", + en: "", + de: "Tuberculosis of lung, confirmed by unspecified means", + }, + { + key: "A15.4", + en: "", + de: "Tuberculosis of intrathoracic lymph nodes, confirmed bacteriologically and histologically", + }, + { + key: "A15.5", + en: "", + de: "Tuberculosis of larynx, trachea and bronchus, confirmed bacteriologically and histologically", + }, + { + key: "A15.6", + en: "", + de: "Tuberculous pleurisy, confirmed bacteriologically and histologically", + }, + { + key: "A15.7", + en: "", + de: "Primary respiratory tuberculosis, confirmed bacteriologically and histologically", + }, + { + key: "A15.8", + en: "", + de: "Other respiratory tuberculosis, confirmed bacteriologically and histologically", + }, + { + key: "A15.9", + en: "", + de: "Respiratory tuberculosis unspecified, confirmed bacteriologically and histologically", + }, + { + key: "A16", + en: "", + de: "Respiratory tuberculosis, not confirmed bacteriologically or histologically", + }, + { + key: "A16.0", + en: "", + de: "Tuberculosis of lung, bacteriologically and histologically negative", + }, + { + key: "A16.1", + en: "", + de: "Tuberculosis of lung, bacteriological and histological examination not done", + }, + { + key: "A16.2", + en: "", + de: "Tuberculosis of lung, without mention of bacteriological or histological confirmation", + }, + { + key: "A16.3", + en: "", + de: "Tuberculosis of intrathoracic lymph nodes, without mention of bacteriological or histological confirmation", + }, + { + key: "A16.4", + en: "", + de: "Tuberculosis of larynx, trachea and bronchus, without mention of bacteriological or histological confirmation", + }, + { + key: "A16.5", + en: "", + de: "Tuberculous pleurisy, without mention of bacteriological or histological confirmation", + }, + { + key: "A16.7", + en: "", + de: "Primary respiratory tuberculosis without mention of bacteriological or histological confirmation", + }, + { + key: "A16.8", + en: "", + de: "Other respiratory tuberculosis, without mention of bacteriological or histological confirmation", + }, + { + key: "A16.9", + en: "", + de: "Respiratory tuberculosis unspecified, without mention of bacteriological or histological confirmation", + }, + { + key: "A18", + en: "", + de: "Tuberculosis of other organs", + }, + { + key: "A18.1", + en: "", + de: "Tuberculosis of genitourinary system", + }, + { + key: "A18.2", + en: "", + de: "Tuberculous peripheral lymphadenopathy", + }, + { + key: "A18.3", + en: "", + de: "Tuberculosis of intestines, peritoneum and mesenteric glands", + }, + { + key: "A18.4", + en: "", + de: "Tuberculosis of skin and subcutaneous tissue", + }, + { + key: "A18.5", + en: "", + de: "Tuberculosis of eye", + }, + { + key: "A18.6", + en: "", + de: "Tuberculosis of ear", + }, + { + key: "A18.8", + en: "", + de: "Tuberculosis of other specified organs", + }, + { + key: "A19", + en: "", + de: "Miliary tuberculosis", + }, + { + key: "A19.0", + en: "", + de: "Acute miliary tuberculosis of a single specified site", + }, + { + key: "A19.1", + en: "", + de: "Acute miliary tuberculosis of multiple sites", + }, + { + key: "A19.2", + en: "", + de: "Acute miliary tuberculosis, unspecified", + }, + { + key: "A19.8", + en: "", + de: "Other miliary tuberculosis", + }, + { + key: "A19.9", + en: "", + de: "Miliary tuberculosis, unspecified", + }, + { + key: "A20", + en: "", + de: "Plague", + }, + { + key: "A20.0", + en: "", + de: "Bubonic plague", + }, + { + key: "A20.1", + en: "", + de: "Cellulocutaneous plague", + }, + { + key: "A20.2", + en: "", + de: "Pneumonic plague", + }, + { + key: "A20.3", + en: "", + de: "Plague meningitis", + }, + { + key: "A20.7", + en: "", + de: "Septicaemic plague", + }, + { + key: "A20.8", + en: "", + de: "Other forms of plague", + }, + { + key: "A20.9", + en: "", + de: "Plague, unspecified", + }, + { + key: "A21", + en: "", + de: "Tularaemia", + }, + { + key: "A21.0", + en: "", + de: "Ulceroglandular tularaemia", + }, + { + key: "A21.1", + en: "", + de: "Oculoglandular tularaemia", + }, + { + key: "A21.2", + en: "", + de: "Pulmonary tularaemia", + }, + { + key: "A21.3", + en: "", + de: "Gastrointestinal tularaemia", + }, + { + key: "A21.7", + en: "", + de: "Generalized tularaemia", + }, + { + key: "A21.8", + en: "", + de: "Other forms of tularaemia", + }, + { + key: "A21.9", + en: "", + de: "Tularaemia, unspecified", + }, + { + key: "A22", + en: "", + de: "Anthrax", + }, + { + key: "A22.0", + en: "", + de: "Cutaneous anthrax", + }, + { + key: "A22.1", + en: "", + de: "Pulmonary anthrax", + }, + { + key: "A22.2", + en: "", + de: "Gastrointestinal anthrax", + }, + { + key: "A22.7", + en: "", + de: "Anthrax sepsis", + }, + { + key: "A22.8", + en: "", + de: "Other forms of anthrax", + }, + { + key: "A22.9", + en: "", + de: "Anthrax, unspecified", + }, + { + key: "A23", + en: "", + de: "Brucellosis", + }, + { + key: "A23.0", + en: "", + de: "Brucellosis due to Brucella melitensis", + }, + { + key: "A23.1", + en: "", + de: "Brucellosis due to Brucella abortus", + }, + { + key: "A23.2", + en: "", + de: "Brucellosis due to Brucella suis", + }, + { + key: "A23.3", + en: "", + de: "Brucellosis due to Brucella canis", + }, + { + key: "A23.8", + en: "", + de: "Other brucellosis", + }, + { + key: "A23.9", + en: "", + de: "Brucellosis, unspecified", + }, + { + key: "A24", + en: "", + de: "Glanders and melioidosis", + }, + { + key: "A24.0", + en: "", + de: "Glanders", + }, + { + key: "A24.1", + en: "", + de: "Acute and fulminating melioidosis", + }, + { + key: "A24.2", + en: "", + de: "Subacute and chronic melioidosis", + }, + { + key: "A24.3", + en: "", + de: "Other melioidosis", + }, + { + key: "A24.4", + en: "", + de: "Melioidosis, unspecified", + }, + { + key: "A25", + en: "", + de: "Rat-bite fevers", + }, + { + key: "A25.0", + en: "", + de: "Spirillosis", + }, + { + key: "A25.1", + en: "", + de: "Streptobacillosis", + }, + { + key: "A25.9", + en: "", + de: "Rat-bite fever, unspecified", + }, + { + key: "A26", + en: "", + de: "Erysipeloid", + }, + { + key: "A26.0", + en: "", + de: "Cutaneous erysipeloid", + }, + { + key: "A26.7", + en: "", + de: "Erysipelothrix sepsis", + }, + { + key: "A26.8", + en: "", + de: "Other forms of erysipeloid", + }, + { + key: "A26.9", + en: "", + de: "Erysipeloid, unspecified", + }, + { + key: "A27", + en: "", + de: "Leptospirosis", + }, + { + key: "A27.0", + en: "", + de: "Leptospirosis icterohaemorrhagica", + }, + { + key: "A27.8", + en: "", + de: "Other forms of leptospirosis", + }, + { + key: "A27.9", + en: "", + de: "Leptospirosis, unspecified", + }, + { + key: "A28", + en: "", + de: "Other zoonotic bacterial diseases, not elsewhere classified", + }, + { + key: "A28.0", + en: "", + de: "Pasteurellosis", + }, + { + key: "A28.1", + en: "", + de: "Cat-scratch disease", + }, + { + key: "A28.2", + en: "", + de: "Extraintestinal yersiniosis", + }, + { + key: "A28.8", + en: "", + de: "Other specified zoonotic bacterial diseases, not elsewhere classified", + }, + { + key: "A28.9", + en: "", + de: "Zoonotic bacterial disease, unspecified", + }, + { + key: "A30", + en: "", + de: "Leprosy [Hansen disease]", + }, + { + key: "A30.0", + en: "", + de: "Indeterminate leprosy", + }, + { + key: "A30.1", + en: "", + de: "Tuberculoid leprosy", + }, + { + key: "A30.2", + en: "", + de: "Borderline tuberculoid leprosy", + }, + { + key: "A30.3", + en: "", + de: "Borderline leprosy", + }, + { + key: "A30.4", + en: "", + de: "Borderline lepromatous leprosy", + }, + { + key: "A30.5", + en: "", + de: "Lepromatous leprosy", + }, + { + key: "A30.8", + en: "", + de: "Other forms of leprosy", + }, + { + key: "A30.9", + en: "", + de: "Leprosy, unspecified", + }, + { + key: "A31", + en: "", + de: "Infection due to other mycobacteria", + }, + { + key: "A31.0", + en: "", + de: "Pulmonary mycobacterial infection", + }, + { + key: "A31.1", + en: "", + de: "Cutaneous mycobacterial infection", + }, + { + key: "A31.8", + en: "", + de: "Other mycobacterial infections", + }, + { + key: "A31.9", + en: "", + de: "Mycobacterial infection, unspecified", + }, + { + key: "A32", + en: "", + de: "Listeriosis", + }, + { + key: "A32.0", + en: "", + de: "Cutaneous listeriosis", + }, + { + key: "A32.7", + en: "", + de: "Listerial sepsis", + }, + { + key: "A32.8", + en: "", + de: "Other forms of listeriosis", + }, + { + key: "A32.9", + en: "", + de: "Listeriosis, unspecified", + }, + { + key: "A33", + en: "", + de: "Tetanus neonatorum", + }, + { + key: "A34", + en: "", + de: "Obstetrical tetanus", + }, + { + key: "A35", + en: "", + de: "Other tetanus", + }, + { + key: "A36", + en: "", + de: "Diphtheria", + }, + { + key: "A36.0", + en: "", + de: "Pharyngeal diphtheria", + }, + { + key: "A36.1", + en: "", + de: "Nasopharyngeal diphtheria", + }, + { + key: "A36.2", + en: "", + de: "Laryngeal diphtheria", + }, + { + key: "A36.3", + en: "", + de: "Cutaneous diphtheria", + }, + { + key: "A36.8", + en: "", + de: "Other diphtheria", + }, + { + key: "A36.9", + en: "", + de: "Diphtheria, unspecified", + }, + { + key: "A37", + en: "", + de: "Whooping cough", + }, + { + key: "A37.0", + en: "", + de: "Whooping cough due to Bordetella pertussis", + }, + { + key: "A37.1", + en: "", + de: "Whooping cough due to Bordetella parapertussis", + }, + { + key: "A37.8", + en: "", + de: "Whooping cough due to other Bordetella species", + }, + { + key: "A37.9", + en: "", + de: "Whooping cough, unspecified", + }, + { + key: "A38", + en: "", + de: "Scarlet fever", + }, + { + key: "A39", + en: "", + de: "Meningococcal infection", + }, + { + key: "A39.2", + en: "", + de: "Acute meningococcaemia", + }, + { + key: "A39.3", + en: "", + de: "Chronic meningococcaemia", + }, + { + key: "A39.4", + en: "", + de: "Meningococcaemia, unspecified", + }, + { + key: "A39.8", + en: "", + de: "Other meningococcal infections", + }, + { + key: "A39.9", + en: "", + de: "Meningococcal infection, unspecified", + }, + { + key: "A40", + en: "", + de: "Streptococcal sepsis", + }, + { + key: "A40.0", + en: "", + de: "Sepsis due to streptococcus, group A", + }, + { + key: "A40.1", + en: "", + de: "Sepsis due to streptococcus, group B", + }, + { + key: "A40.2", + en: "", + de: "Sepsis due to streptococcus, group D and enterococcus", + }, + { + key: "A40.3", + en: "", + de: "Sepsis due to Streptococcus pneumoniae", + }, + { + key: "A40.8", + en: "", + de: "Other streptococcal sepsis", + }, + { + key: "A40.9", + en: "", + de: "Streptococcal sepsis, unspecified", + }, + { + key: "A41", + en: "", + de: "Other sepsis", + }, + { + key: "A41.0", + en: "", + de: "Sepsis due to Staphylococcus aureus", + }, + { + key: "A41.1", + en: "", + de: "Sepsis due to other specified staphylococcus", + }, + { + key: "A41.2", + en: "", + de: "Sepsis due to unspecified staphylococcus", + }, + { + key: "A41.3", + en: "", + de: "Sepsis due to Haemophilus influenzae", + }, + { + key: "A41.4", + en: "", + de: "Sepsis due to anaerobes", + }, + { + key: "A41.5", + en: "", + de: "Sepsis due to other Gram-negative organisms", + }, + { + key: "A41.8", + en: "", + de: "Other specified sepsis", + }, + { + key: "A41.9", + en: "", + de: "Sepsis, unspecified", + }, + { + key: "A42", + en: "", + de: "Actinomycosis", + }, + { + key: "A42.0", + en: "", + de: "Pulmonary actinomycosis", + }, + { + key: "A42.1", + en: "", + de: "Abdominal actinomycosis", + }, + { + key: "A42.2", + en: "", + de: "Cervicofacial actinomycosis", + }, + { + key: "A42.7", + en: "", + de: "Actinomycotic sepsis", + }, + { + key: "A42.8", + en: "", + de: "Other forms of actinomycosis", + }, + { + key: "A42.9", + en: "", + de: "Actinomycosis, unspecified", + }, + { + key: "A43", + en: "", + de: "Nocardiosis", + }, + { + key: "A43.0", + en: "", + de: "Pulmonary nocardiosis", + }, + { + key: "A43.1", + en: "", + de: "Cutaneous nocardiosis", + }, + { + key: "A43.8", + en: "", + de: "Other forms of nocardiosis", + }, + { + key: "A43.9", + en: "", + de: "Nocardiosis, unspecified", + }, + { + key: "A44", + en: "", + de: "Bartonellosis", + }, + { + key: "A44.0", + en: "", + de: "Systemic bartonellosis", + }, + { + key: "A44.1", + en: "", + de: "Cutaneous and mucocutaneous bartonellosis", + }, + { + key: "A44.8", + en: "", + de: "Other forms of bartonellosis", + }, + { + key: "A44.9", + en: "", + de: "Bartonellosis, unspecified", + }, + { + key: "A46", + en: "", + de: "Erysipelas", + }, + { + key: "A48", + en: "", + de: "Other bacterial diseases, not elsewhere classified", + }, + { + key: "A48.0", + en: "", + de: "Gas gangrene", + }, + { + key: "A48.1", + en: "", + de: "Legionnaires disease", + }, + { + key: "A48.2", + en: "", + de: "Nonpneumonic Legionnaires disease [Pontiac fever]", + }, + { + key: "A48.3", + en: "", + de: "Toxic shock syndrome", + }, + { + key: "A48.4", + en: "", + de: "Brazilian purpuric fever", + }, + { + key: "A48.8", + en: "", + de: "Other specified bacterial diseases", + }, + { + key: "A49", + en: "", + de: "Bacterial infection of unspecified site", + }, + { + key: "A49.0", + en: "", + de: "Staphylococcal infection, unspecified site", + }, + { + key: "A49.1", + en: "", + de: "Streptococcal and enterococcal infection, unspecified site", + }, + { + key: "A49.2", + en: "", + de: "Haemophilus influenzae infection, unspecified site", + }, + { + key: "A49.3", + en: "", + de: "Mycoplasma infection, unspecified site", + }, + { + key: "A49.8", + en: "", + de: "Other bacterial infections of unspecified site", + }, + { + key: "A49.9", + en: "", + de: "Bacterial infection, unspecified", + }, + { + key: "A50", + en: "", + de: "Congenital syphilis", + }, + { + key: "A50.0", + en: "", + de: "Early congenital syphilis, symptomatic", + }, + { + key: "A50.1", + en: "", + de: "Early congenital syphilis, latent", + }, + { + key: "A50.2", + en: "", + de: "Early congenital syphilis, unspecified", + }, + { + key: "A50.3", + en: "", + de: "Late congenital syphilitic oculopathy", + }, + { + key: "A50.4", + en: "", + de: "Late congenital neurosyphilis [juvenile neurosyphilis]", + }, + { + key: "A50.5", + en: "", + de: "Other late congenital syphilis, symptomatic", + }, + { + key: "A50.6", + en: "", + de: "Late congenital syphilis, latent", + }, + { + key: "A50.7", + en: "", + de: "Late congenital syphilis, unspecified", + }, + { + key: "A50.9", + en: "", + de: "Congenital syphilis, unspecified", + }, + { + key: "A51", + en: "", + de: "Early syphilis", + }, + { + key: "A51.0", + en: "", + de: "Primary genital syphilis", + }, + { + key: "A51.1", + en: "", + de: "Primary anal syphilis", + }, + { + key: "A51.2", + en: "", + de: "Primary syphilis of other sites", + }, + { + key: "A51.3", + en: "", + de: "Secondary syphilis of skin and mucous membranes", + }, + { + key: "A51.4", + en: "", + de: "Other secondary syphilis", + }, + { + key: "A51.5", + en: "", + de: "Early syphilis, latent", + }, + { + key: "A51.9", + en: "", + de: "Early syphilis, unspecified", + }, + { + key: "A52", + en: "", + de: "Late syphilis", + }, + { + key: "A52.1", + en: "", + de: "Symptomatic neurosyphilis", + }, + { + key: "A52.2", + en: "", + de: "Asymptomatic neurosyphilis", + }, + { + key: "A52.3", + en: "", + de: "Neurosyphilis, unspecified", + }, + { + key: "A52.7", + en: "", + de: "Other symptomatic late syphilis", + }, + { + key: "A52.8", + en: "", + de: "Late syphilis, latent", + }, + { + key: "A52.9", + en: "", + de: "Late syphilis, unspecified", + }, + { + key: "A53", + en: "", + de: "Other and unspecified syphilis", + }, + { + key: "A53.0", + en: "", + de: "Latent syphilis, unspecified as early or late", + }, + { + key: "A53.9", + en: "", + de: "Syphilis, unspecified", + }, + { + key: "A54", + en: "", + de: "Gonococcal infection", + }, + { + key: "A54.0", + en: "", + de: "Gonococcal infection of lower genitourinary tract without periurethral or accessory gland abscess", + }, + { + key: "A54.1", + en: "", + de: "Gonococcal infection of lower genitourinary tract with periurethral and accessory gland abscess", + }, + { + key: "A54.2", + en: "", + de: "Gonococcal pelviperitonitis and other gonococcal genitourinary infections", + }, + { + key: "A54.3", + en: "", + de: "Gonococcal infection of eye", + }, + { + key: "A54.5", + en: "", + de: "Gonococcal pharyngitis", + }, + { + key: "A54.6", + en: "", + de: "Gonococcal infection of anus and rectum", + }, + { + key: "A54.8", + en: "", + de: "Other gonococcal infections", + }, + { + key: "A54.9", + en: "", + de: "Gonococcal infection, unspecified", + }, + { + key: "A55", + en: "", + de: "Chlamydial lymphogranuloma (venereum)", + }, + { + key: "A56", + en: "", + de: "Other sexually transmitted chlamydial diseases", + }, + { + key: "A56.0", + en: "", + de: "Chlamydial infection of lower genitourinary tract", + }, + { + key: "A56.1", + en: "", + de: "Chlamydial infection of pelviperitoneum and other genitourinary organs", + }, + { + key: "A56.2", + en: "", + de: "Chlamydial infection of genitourinary tract, unspecified", + }, + { + key: "A56.3", + en: "", + de: "Chlamydial infection of anus and rectum", + }, + { + key: "A56.4", + en: "", + de: "Chlamydial infection of pharynx", + }, + { + key: "A56.8", + en: "", + de: "Sexually transmitted chlamydial infection of other sites", + }, + { + key: "A57", + en: "", + de: "Chancroid", + }, + { + key: "A58", + en: "", + de: "Granuloma inguinale", + }, + { + key: "A59", + en: "", + de: "Trichomoniasis", + }, + { + key: "A59.0", + en: "", + de: "Urogenital trichomoniasis", + }, + { + key: "A59.8", + en: "", + de: "Trichomoniasis of other sites", + }, + { + key: "A59.9", + en: "", + de: "Trichomoniasis, unspecified", + }, + { + key: "A60", + en: "", + de: "Anogenital herpesviral [herpes simplex] infection", + }, + { + key: "A60.0", + en: "", + de: "Herpesviral infection of genitalia and urogenital tract", + }, + { + key: "A60.1", + en: "", + de: "Herpesviral infection of perianal skin and rectum", + }, + { + key: "A60.9", + en: "", + de: "Anogenital herpesviral infection, unspecified", + }, + { + key: "A63", + en: "", + de: "Other predominantly sexually transmitted diseases, not elsewhere classified", + }, + { + key: "A63.0", + en: "", + de: "Anogenital (venereal) warts", + }, + { + key: "A63.8", + en: "", + de: "Other specified predominantly sexually transmitted diseases", + }, + { + key: "A64", + en: "", + de: "Unspecified sexually transmitted disease", + }, + { + key: "A65", + en: "", + de: "Nonvenereal syphilis", + }, + { + key: "A66", + en: "", + de: "Yaws", + }, + { + key: "A66.0", + en: "", + de: "Initial lesions of yaws", + }, + { + key: "A66.1", + en: "", + de: "Multiple papillomata and wet crab yaws", + }, + { + key: "A66.2", + en: "", + de: "Other early skin lesions of yaws", + }, + { + key: "A66.3", + en: "", + de: "Hyperkeratosis of yaws", + }, + { + key: "A66.4", + en: "", + de: "Gummata and ulcers of yaws", + }, + { + key: "A66.5", + en: "", + de: "Gangosa", + }, + { + key: "A66.6", + en: "", + de: "Bone and joint lesions of yaws", + }, + { + key: "A66.7", + en: "", + de: "Other manifestations of yaws", + }, + { + key: "A66.8", + en: "", + de: "Latent yaws", + }, + { + key: "A66.9", + en: "", + de: "Yaws, unspecified", + }, + { + key: "A67", + en: "", + de: "Pinta [carate]", + }, + { + key: "A67.0", + en: "", + de: "Primary lesions of pinta", + }, + { + key: "A67.1", + en: "", + de: "Intermediate lesions of pinta", + }, + { + key: "A67.2", + en: "", + de: "Late lesions of pinta", + }, + { + key: "A67.3", + en: "", + de: "Mixed lesions of pinta", + }, + { + key: "A67.9", + en: "", + de: "Pinta, unspecified", + }, + { + key: "A68", + en: "", + de: "Relapsing fevers", + }, + { + key: "A68.0", + en: "", + de: "Louse-borne relapsing fever", + }, + { + key: "A68.1", + en: "", + de: "Tick-borne relapsing fever", + }, + { + key: "A68.9", + en: "", + de: "Relapsing fever, unspecified", + }, + { + key: "A69", + en: "", + de: "Other spirochaetal infections", + }, + { + key: "A69.0", + en: "", + de: "Necrotizing ulcerative stomatitis", + }, + { + key: "A69.1", + en: "", + de: "Other Vincent infections", + }, + { + key: "A69.2", + en: "", + de: "Lyme disease", + }, + { + key: "A69.8", + en: "", + de: "Other specified spirochaetal infections", + }, + { + key: "A69.9", + en: "", + de: "Spirochaetal infection, unspecified", + }, + { + key: "A70", + en: "", + de: "Chlamydia psittaci infection", + }, + { + key: "A71", + en: "", + de: "Trachoma", + }, + { + key: "A71.0", + en: "", + de: "Initial stage of trachoma", + }, + { + key: "A71.1", + en: "", + de: "Active stage of trachoma", + }, + { + key: "A71.9", + en: "", + de: "Trachoma, unspecified", + }, + { + key: "A74", + en: "", + de: "Other diseases caused by chlamydiae", + }, + { + key: "A74.8", + en: "", + de: "Other chlamydial diseases", + }, + { + key: "A74.9", + en: "", + de: "Chlamydial infection, unspecified", + }, + { + key: "A75", + en: "", + de: "Typhus fever", + }, + { + key: "A75.0", + en: "", + de: "Epidemic louse-borne typhus fever due to Rickettsia prowazekii", + }, + { + key: "A75.1", + en: "", + de: "Recrudescent typhus [Brill disease]", + }, + { + key: "A75.2", + en: "", + de: "Typhus fever due to Rickettsia typhi", + }, + { + key: "A75.3", + en: "", + de: "Typhus fever due to Rickettsia tsutsugamushi", + }, + { + key: "A75.9", + en: "", + de: "Typhus fever, unspecified", + }, + { + key: "A77", + en: "", + de: "Spotted fever [tick-borne rickettsioses]", + }, + { + key: "A77.0", + en: "", + de: "Spotted fever due to Rickettsia rickettsii", + }, + { + key: "A77.1", + en: "", + de: "Spotted fever due to Rickettsia conorii", + }, + { + key: "A77.2", + en: "", + de: "Spotted fever due to Rickettsia sibirica", + }, + { + key: "A77.3", + en: "", + de: "Spotted fever due to Rickettsia australis", + }, + { + key: "A77.8", + en: "", + de: "Other spotted fevers", + }, + { + key: "A77.9", + en: "", + de: "Spotted fever, unspecified", + }, + { + key: "A78", + en: "", + de: "Q fever", + }, + { + key: "A79", + en: "", + de: "Other rickettsioses", + }, + { + key: "A79.0", + en: "", + de: "Trench fever", + }, + { + key: "A79.1", + en: "", + de: "Rickettsialpox due to Rickettsia akari", + }, + { + key: "A79.8", + en: "", + de: "Other specified rickettsioses", + }, + { + key: "A79.9", + en: "", + de: "Rickettsiosis, unspecified", + }, + { + key: "A80", + en: "", + de: "Acute poliomyelitis", + }, + { + key: "A80.0", + en: "", + de: "Acute paralytic poliomyelitis, vaccine-associated", + }, + { + key: "A80.1", + en: "", + de: "Acute paralytic poliomyelitis, wild virus, imported", + }, + { + key: "A80.2", + en: "", + de: "Acute paralytic poliomyelitis, wild virus, indigenous", + }, + { + key: "A80.3", + en: "", + de: "Acute paralytic poliomyelitis, other and unspecified", + }, + { + key: "A80.4", + en: "", + de: "Acute nonparalytic poliomyelitis", + }, + { + key: "A80.9", + en: "", + de: "Acute poliomyelitis, unspecified", + }, + { + key: "A81", + en: "", + de: "Atypical virus infections of central nervous system", + }, + { + key: "A81.0", + en: "", + de: "Creutzfeldt-Jakob disease", + }, + { + key: "A81.1", + en: "", + de: "Subacute sclerosing panencephalitis", + }, + { + key: "A81.2", + en: "", + de: "Progressive multifocal leukoencephalopathy", + }, + { + key: "A81.8", + en: "", + de: "Other atypical virus infections of central nervous system", + }, + { + key: "A81.9", + en: "", + de: "Atypical virus infection of central nervous system, unspecified", + }, + { + key: "A82", + en: "", + de: "Rabies", + }, + { + key: "A82.0", + en: "", + de: "Sylvatic rabies", + }, + { + key: "A82.1", + en: "", + de: "Urban rabies", + }, + { + key: "A82.9", + en: "", + de: "Rabies, unspecified", + }, + { + key: "A83", + en: "", + de: "Mosquito-borne viral encephalitis", + }, + { + key: "A83.0", + en: "", + de: "Japanese encephalitis", + }, + { + key: "A83.1", + en: "", + de: "Western equine encephalitis", + }, + { + key: "A83.2", + en: "", + de: "Eastern equine encephalitis", + }, + { + key: "A83.3", + en: "", + de: "St Louis encephalitis", + }, + { + key: "A83.4", + en: "", + de: "Australian encephalitis", + }, + { + key: "A83.5", + en: "", + de: "California encephalitis", + }, + { + key: "A83.6", + en: "", + de: "Rocio virus disease", + }, + { + key: "A83.8", + en: "", + de: "Other mosquito-borne viral encephalitis", + }, + { + key: "A83.9", + en: "", + de: "Mosquito-borne viral encephalitis, unspecified", + }, + { + key: "A84", + en: "", + de: "Tick-borne viral encephalitis", + }, + { + key: "A84.0", + en: "", + de: "Far Eastern tick-borne encephalitis [Russian spring-summer encephalitis]", + }, + { + key: "A84.1", + en: "", + de: "Central European tick-borne encephalitis", + }, + { + key: "A84.8", + en: "", + de: "Other tick-borne viral encephalitis", + }, + { + key: "A84.9", + en: "", + de: "Tick-borne viral encephalitis, unspecified", + }, + { + key: "A85", + en: "", + de: "Other viral encephalitis, not elsewhere classified", + }, + { + key: "A85.2", + en: "", + de: "Arthropod-borne viral encephalitis, unspecified", + }, + { + key: "A85.8", + en: "", + de: "Other specified viral encephalitis", + }, + { + key: "A86", + en: "", + de: "Unspecified viral encephalitis", + }, + { + key: "A87", + en: "", + de: "Viral meningitis", + }, + { + key: "A87.2", + en: "", + de: "Lymphocytic choriomeningitis", + }, + { + key: "A87.8", + en: "", + de: "Other viral meningitis", + }, + { + key: "A87.9", + en: "", + de: "Viral meningitis, unspecified", + }, + { + key: "A88", + en: "", + de: "Other viral infections of central nervous system, not elsewhere classified", + }, + { + key: "A88.0", + en: "", + de: "Enteroviral exanthematous fever [Boston exanthem]", + }, + { + key: "A88.1", + en: "", + de: "Epidemic vertigo", + }, + { + key: "A88.8", + en: "", + de: "Other specified viral infections of central nervous system", + }, + { + key: "A89", + en: "", + de: "Unspecified viral infection of central nervous system", + }, + { + key: "A92", + en: "", + de: "Other mosquito-borne viral fevers", + }, + { + key: "A92.0", + en: "", + de: "Chikungunya virus disease", + }, + { + key: "A92.1", + en: "", + de: "O'nyong-nyong fever", + }, + { + key: "A92.2", + en: "", + de: "Venezuelan equine fever", + }, + { + key: "A92.3", + en: "", + de: "West Nile virus infection", + }, + { + key: "A92.4", + en: "", + de: "Rift Valley fever", + }, + { + key: "A92.5", + en: "", + de: "Zika virus disease", + }, + { + key: "A92.8", + en: "", + de: "Other specified mosquito-borne viral fevers", + }, + { + key: "A92.9", + en: "", + de: "Mosquito-borne viral fever, unspecified", + }, + { + key: "A93", + en: "", + de: "Other arthropod-borne viral fevers, not elsewhere classified", + }, + { + key: "A93.0", + en: "", + de: "Oropouche virus disease", + }, + { + key: "A93.1", + en: "", + de: "Sandfly fever", + }, + { + key: "A93.2", + en: "", + de: "Colorado tick fever", + }, + { + key: "A93.8", + en: "", + de: "Other specified arthropod-borne viral fevers", + }, + { + key: "A94", + en: "", + de: "Unspecified arthropod-borne viral fever", + }, + { + key: "A95", + en: "", + de: "Yellow fever", + }, + { + key: "A95.0", + en: "", + de: "Sylvatic yellow fever", + }, + { + key: "A95.1", + en: "", + de: "Urban yellow fever", + }, + { + key: "A95.9", + en: "", + de: "Yellow fever, unspecified", + }, + { + key: "A96", + en: "", + de: "Arenaviral haemorrhagic fever", + }, + { + key: "A96.0", + en: "", + de: "Junin haemorrhagic fever", + }, + { + key: "A96.1", + en: "", + de: "Machupo haemorrhagic fever", + }, + { + key: "A96.2", + en: "", + de: "Lassa fever", + }, + { + key: "A96.8", + en: "", + de: "Other arenaviral haemorrhagic fevers", + }, + { + key: "A96.9", + en: "", + de: "Arenaviral haemorrhagic fever, unspecified", + }, + { + key: "A97", + en: "", + de: "Dengue", + }, + { + key: "A97.0", + en: "", + de: "Dengue without warning signs", + }, + { + key: "A97.1", + en: "", + de: "Dengue with warning signs", + }, + { + key: "A97.2", + en: "", + de: "Severe Dengue", + }, + { + key: "A97.9", + en: "", + de: "Dengue, unspecified", + }, + { + key: "A98", + en: "", + de: "Other viral haemorrhagic fevers, not elsewhere classified", + }, + { + key: "A98.0", + en: "", + de: "Crimean-Congo haemorrhagic fever", + }, + { + key: "A98.1", + en: "", + de: "Omsk haemorrhagic fever", + }, + { + key: "A98.2", + en: "", + de: "Kyasanur Forest disease", + }, + { + key: "A98.3", + en: "", + de: "Marburg virus disease", + }, + { + key: "A98.4", + en: "", + de: "Ebola virus disease", + }, + { + key: "A98.5", + en: "", + de: "Haemorrhagic fever with renal syndrome", + }, + { + key: "A98.8", + en: "", + de: "Other specified viral haemorrhagic fevers", + }, + { + key: "A99", + en: "", + de: "Unspecified viral haemorrhagic fever", + }, + { + key: "B00", + en: "", + de: "Herpesviral [herpes simplex] infections", + }, + { + key: "B00.0", + en: "", + de: "Eczema herpeticum", + }, + { + key: "B00.1", + en: "", + de: "Herpesviral vesicular dermatitis", + }, + { + key: "B00.2", + en: "", + de: "Herpesviral gingivostomatitis and pharyngotonsillitis", + }, + { + key: "B00.5", + en: "", + de: "Herpesviral ocular disease", + }, + { + key: "B00.7", + en: "", + de: "Disseminated herpesviral disease", + }, + { + key: "B00.8", + en: "", + de: "Other forms of herpesviral infection", + }, + { + key: "B00.9", + en: "", + de: "Herpesviral infection, unspecified", + }, + { + key: "B01", + en: "", + de: "Varicella [chickenpox]", + }, + { + key: "B01.8", + en: "", + de: "Varicella with other complications", + }, + { + key: "B01.9", + en: "", + de: "Varicella without complication", + }, + { + key: "B02", + en: "", + de: "Zoster [herpes zoster]", + }, + { + key: "B02.3", + en: "", + de: "Zoster ocular disease", + }, + { + key: "B02.7", + en: "", + de: "Disseminated zoster", + }, + { + key: "B02.8", + en: "", + de: "Zoster with other complications", + }, + { + key: "B02.9", + en: "", + de: "Zoster without complication", + }, + { + key: "B03", + en: "", + de: "Smallpox", + }, + { + key: "B04", + en: "", + de: "Monkeypox", + }, + { + key: "B05", + en: "", + de: "Measles", + }, + { + key: "B05.4", + en: "", + de: "Measles with intestinal complications", + }, + { + key: "B05.8", + en: "", + de: "Measles with other complications", + }, + { + key: "B05.9", + en: "", + de: "Measles without complication", + }, + { + key: "B06", + en: "", + de: "Rubella [German measles]", + }, + { + key: "B06.8", + en: "", + de: "Rubella with other complications", + }, + { + key: "B06.9", + en: "", + de: "Rubella without complication", + }, + { + key: "B07", + en: "", + de: "Viral warts", + }, + { + key: "B08", + en: "", + de: "Other viral infections characterized by skin and mucous membrane lesions, not elsewhere classified", + }, + { + key: "B08.0", + en: "", + de: "Other orthopoxvirus infections", + }, + { + key: "B08.1", + en: "", + de: "Molluscum contagiosum", + }, + { + key: "B08.2", + en: "", + de: "Exanthema subitum [sixth disease]", + }, + { + key: "B08.3", + en: "", + de: "Erythema infectiosum [fifth disease]", + }, + { + key: "B08.4", + en: "", + de: "Enteroviral vesicular stomatitis with exanthem", + }, + { + key: "B08.5", + en: "", + de: "Enteroviral vesicular pharyngitis", + }, + { + key: "B08.8", + en: "", + de: "Other specified viral infections characterized by skin and mucous membrane lesions", + }, + { + key: "B09", + en: "", + de: "Unspecified viral infection characterized by skin and mucous membrane lesions", + }, + { + key: "B15", + en: "", + de: "Acute hepatitis A", + }, + { + key: "B15.0", + en: "", + de: "Hepatitis A with hepatic coma", + }, + { + key: "B15.9", + en: "", + de: "Hepatitis A without hepatic coma", + }, + { + key: "B16", + en: "", + de: "Acute hepatitis B", + }, + { + key: "B16.0", + en: "", + de: "Acute hepatitis B with delta-agent (coinfection) with hepatic coma", + }, + { + key: "B16.1", + en: "", + de: "Acute hepatitis B with delta-agent (coinfection) without hepatic coma", + }, + { + key: "B16.2", + en: "", + de: "Acute hepatitis B without delta-agent with hepatic coma", + }, + { + key: "B16.9", + en: "", + de: "Acute hepatitis B without delta-agent and without hepatic coma", + }, + { + key: "B17", + en: "", + de: "Other acute viral hepatitis", + }, + { + key: "B17.0", + en: "", + de: "Acute delta-(super)infection in chronic hepatitis B", + }, + { + key: "B17.1", + en: "", + de: "Acute hepatitis C", + }, + { + key: "B17.2", + en: "", + de: "Acute hepatitis E", + }, + { + key: "B17.8", + en: "", + de: "Other specified acute viral hepatitis", + }, + { + key: "B17.9", + en: "", + de: "Acute viral hepatitis, unspecified", + }, + { + key: "B18", + en: "", + de: "Chronic viral hepatitis", + }, + { + key: "B18.0", + en: "", + de: "Chronic viral hepatitis B with delta-agent", + }, + { + key: "B18.1", + en: "", + de: "Chronic viral hepatitis B without delta-agent", + }, + { + key: "B18.19", + en: "", + de: "Chronic viral hepatitis B without delta-agent : other and unspecified phase", + }, + { + key: "B18.2", + en: "", + de: "Chronic viral hepatitis C", + }, + { + key: "B18.8", + en: "", + de: "Other chronic viral hepatitis", + }, + { + key: "B18.9", + en: "", + de: "Chronic viral hepatitis, unspecified", + }, + { + key: "B19", + en: "", + de: "Unspecified viral hepatitis", + }, + { + key: "B19.0", + en: "", + de: "Unspecified viral hepatitis with hepatic coma", + }, + { + key: "B19.9", + en: "", + de: "Unspecified viral hepatitis without hepatic coma", + }, + { + key: "B20", + en: "", + de: "Human immunodeficiency virus [HIV] disease resulting in infectious and parasitic diseases", + }, + { + key: "B21", + en: "", + de: "Human immunodeficiency virus [HIV] disease resulting in malignant neoplasms", + }, + { + key: "B22", + en: "", + de: "Human immunodeficiency virus [HIV] disease resulting in other specified diseases", + }, + { + key: "B23", + en: "", + de: "Human immunodeficiency virus [HIV] disease resulting in other conditions", + }, + { + key: "B23.0", + en: "", + de: "Acute HIV infection syndrome", + }, + { + key: "B23.8", + en: "", + de: "HIV disease resulting in other specified conditions", + }, + { + key: "B24", + en: "", + de: "Unspecified human immunodeficiency virus [HIV] disease", + }, + { + key: "B25", + en: "", + de: "Cytomegaloviral disease", + }, + { + key: "B25.8", + en: "", + de: "Other cytomegaloviral diseases", + }, + { + key: "B25.9", + en: "", + de: "Cytomegaloviral disease, unspecified", + }, + { + key: "B26", + en: "", + de: "Mumps", + }, + { + key: "B26.8", + en: "", + de: "Mumps with other complications", + }, + { + key: "B26.9", + en: "", + de: "Mumps without complication", + }, + { + key: "B27", + en: "", + de: "Infectious mononucleosis", + }, + { + key: "B27.0", + en: "", + de: "Gammaherpesviral mononucleosis", + }, + { + key: "B27.1", + en: "", + de: "Cytomegaloviral mononucleosis", + }, + { + key: "B27.8", + en: "", + de: "Other infectious mononucleosis", + }, + { + key: "B27.9", + en: "", + de: "Infectious mononucleosis, unspecified", + }, + { + key: "B30", + en: "", + de: "Viral conjunctivitis", + }, + { + key: "B30.2", + en: "", + de: "Viral pharyngoconjunctivitis", + }, + { + key: "B30.9", + en: "", + de: "Viral conjunctivitis, unspecified", + }, + { + key: "B33", + en: "", + de: "Other viral diseases, not elsewhere classified", + }, + { + key: "B33.0", + en: "", + de: "Epidemic myalgia", + }, + { + key: "B33.1", + en: "", + de: "Ross River disease", + }, + { + key: "B33.2", + en: "", + de: "Viral carditis", + }, + { + key: "B33.3", + en: "", + de: "Retrovirus infections, not elsewhere classified", + }, + { + key: "B33.8", + en: "", + de: "Other specified viral diseases", + }, + { + key: "B34", + en: "", + de: "Viral infection of unspecified site", + }, + { + key: "B34.0", + en: "", + de: "Adenovirus infection, unspecified site", + }, + { + key: "B34.1", + en: "", + de: "Enterovirus infection, unspecified site", + }, + { + key: "B34.2", + en: "", + de: "Coronavirus infection, unspecified site", + }, + { + key: "B34.3", + en: "", + de: "Parvovirus infection, unspecified site", + }, + { + key: "B34.4", + en: "", + de: "Papovavirus infection, unspecified site", + }, + { + key: "B34.8", + en: "", + de: "Other viral infections of unspecified site", + }, + { + key: "B34.9", + en: "", + de: "Viral infection, unspecified", + }, + { + key: "B35", + en: "", + de: "Dermatophytosis", + }, + { + key: "B35.0", + en: "", + de: "Tinea barbae and tinea capitis", + }, + { + key: "B35.1", + en: "", + de: "Tinea unguium", + }, + { + key: "B35.2", + en: "", + de: "Tinea manuum", + }, + { + key: "B35.3", + en: "", + de: "Tinea pedis", + }, + { + key: "B35.4", + en: "", + de: "Tinea corporis", + }, + { + key: "B35.5", + en: "", + de: "Tinea imbricata", + }, + { + key: "B35.6", + en: "", + de: "Tinea inguinalis [Tinea cruris]", + }, + { + key: "B35.8", + en: "", + de: "Other dermatophytoses", + }, + { + key: "B35.9", + en: "", + de: "Dermatophytosis, unspecified", + }, + { + key: "B36", + en: "", + de: "Other superficial mycoses", + }, + { + key: "B36.0", + en: "", + de: "Pityriasis versicolor", + }, + { + key: "B36.1", + en: "", + de: "Tinea nigra", + }, + { + key: "B36.2", + en: "", + de: "White piedra", + }, + { + key: "B36.3", + en: "", + de: "Black piedra", + }, + { + key: "B36.8", + en: "", + de: "Other specified superficial mycoses", + }, + { + key: "B36.9", + en: "", + de: "Superficial mycosis, unspecified", + }, + { + key: "B37", + en: "", + de: "Candidiasis", + }, + { + key: "B37.0", + en: "", + de: "Candidal stomatitis", + }, + { + key: "B37.1", + en: "", + de: "Pulmonary candidiasis", + }, + { + key: "B37.2", + en: "", + de: "Candidiasis of skin and nail", + }, + { + key: "B37.4", + en: "", + de: "Candidiasis of other urogenital sites", + }, + { + key: "B37.7", + en: "", + de: "Candidal sepsis", + }, + { + key: "B37.8", + en: "", + de: "Candidiasis of other sites", + }, + { + key: "B37.9", + en: "", + de: "Candidiasis, unspecified", + }, + { + key: "B38", + en: "", + de: "Coccidioidomycosis", + }, + { + key: "B38.0", + en: "", + de: "Acute pulmonary coccidioidomycosis", + }, + { + key: "B38.1", + en: "", + de: "Chronic pulmonary coccidioidomycosis", + }, + { + key: "B38.2", + en: "", + de: "Pulmonary coccidioidomycosis, unspecified", + }, + { + key: "B38.3", + en: "", + de: "Cutaneous coccidioidomycosis", + }, + { + key: "B38.7", + en: "", + de: "Disseminated coccidioidomycosis", + }, + { + key: "B38.8", + en: "", + de: "Other forms of coccidioidomycosis", + }, + { + key: "B38.9", + en: "", + de: "Coccidioidomycosis, unspecified", + }, + { + key: "B39", + en: "", + de: "Histoplasmosis", + }, + { + key: "B39.0", + en: "", + de: "Acute pulmonary histoplasmosis capsulati", + }, + { + key: "B39.1", + en: "", + de: "Chronic pulmonary histoplasmosis capsulati", + }, + { + key: "B39.2", + en: "", + de: "Pulmonary histoplasmosis capsulati, unspecified", + }, + { + key: "B39.3", + en: "", + de: "Disseminated histoplasmosis capsulati", + }, + { + key: "B39.4", + en: "", + de: "Histoplasmosis capsulati, unspecified", + }, + { + key: "B39.5", + en: "", + de: "Histoplasmosis duboisii", + }, + { + key: "B39.9", + en: "", + de: "Histoplasmosis, unspecified", + }, + { + key: "B40", + en: "", + de: "Blastomycosis", + }, + { + key: "B40.0", + en: "", + de: "Acute pulmonary blastomycosis", + }, + { + key: "B40.1", + en: "", + de: "Chronic pulmonary blastomycosis", + }, + { + key: "B40.2", + en: "", + de: "Pulmonary blastomycosis, unspecified", + }, + { + key: "B40.3", + en: "", + de: "Cutaneous blastomycosis", + }, + { + key: "B40.7", + en: "", + de: "Disseminated blastomycosis", + }, + { + key: "B40.8", + en: "", + de: "Other forms of blastomycosis", + }, + { + key: "B40.9", + en: "", + de: "Blastomycosis, unspecified", + }, + { + key: "B41", + en: "", + de: "Paracoccidioidomycosis", + }, + { + key: "B41.0", + en: "", + de: "Pulmonary paracoccidioidomycosis", + }, + { + key: "B41.7", + en: "", + de: "Disseminated paracoccidioidomycosis", + }, + { + key: "B41.8", + en: "", + de: "Other forms of paracoccidioidomycosis", + }, + { + key: "B41.9", + en: "", + de: "Paracoccidioidomycosis, unspecified", + }, + { + key: "B42", + en: "", + de: "Sporotrichosis", + }, + { + key: "B42.1", + en: "", + de: "Lymphocutaneous sporotrichosis", + }, + { + key: "B42.7", + en: "", + de: "Disseminated sporotrichosis", + }, + { + key: "B42.8", + en: "", + de: "Other forms of sporotrichosis", + }, + { + key: "B42.9", + en: "", + de: "Sporotrichosis, unspecified", + }, + { + key: "B43", + en: "", + de: "Chromomycosis and phaeomycotic abscess", + }, + { + key: "B43.0", + en: "", + de: "Cutaneous chromomycosis", + }, + { + key: "B43.1", + en: "", + de: "Phaeomycotic brain abscess", + }, + { + key: "B43.2", + en: "", + de: "Subcutaneous phaeomycotic abscess and cyst", + }, + { + key: "B43.8", + en: "", + de: "Other forms of chromomycosis", + }, + { + key: "B43.9", + en: "", + de: "Chromomycosis, unspecified", + }, + { + key: "B44", + en: "", + de: "Aspergillosis", + }, + { + key: "B44.0", + en: "", + de: "Invasive pulmonary aspergillosis", + }, + { + key: "B44.1", + en: "", + de: "Other pulmonary aspergillosis", + }, + { + key: "B44.2", + en: "", + de: "Tonsillar aspergillosis", + }, + { + key: "B44.7", + en: "", + de: "Disseminated aspergillosis", + }, + { + key: "B44.8", + en: "", + de: "Other forms of aspergillosis", + }, + { + key: "B44.9", + en: "", + de: "Aspergillosis, unspecified", + }, + { + key: "B45", + en: "", + de: "Cryptococcosis", + }, + { + key: "B45.0", + en: "", + de: "Pulmonary cryptococcosis", + }, + { + key: "B45.1", + en: "", + de: "Cerebral cryptococcosis", + }, + { + key: "B45.2", + en: "", + de: "Cutaneous cryptococcosis", + }, + { + key: "B45.3", + en: "", + de: "Osseous cryptococcosis", + }, + { + key: "B45.7", + en: "", + de: "Disseminated cryptococcosis", + }, + { + key: "B45.8", + en: "", + de: "Other forms of cryptococcosis", + }, + { + key: "B45.9", + en: "", + de: "Cryptococcosis, unspecified", + }, + { + key: "B46", + en: "", + de: "Zygomycosis", + }, + { + key: "B46.0", + en: "", + de: "Pulmonary mucormycosis", + }, + { + key: "B46.1", + en: "", + de: "Rhinocerebral mucormycosis", + }, + { + key: "B46.2", + en: "", + de: "Gastrointestinal mucormycosis", + }, + { + key: "B46.3", + en: "", + de: "Cutaneous mucormycosis", + }, + { + key: "B46.4", + en: "", + de: "Disseminated mucormycosis", + }, + { + key: "B46.5", + en: "", + de: "Mucormycosis, unspecified", + }, + { + key: "B46.8", + en: "", + de: "Other zygomycoses", + }, + { + key: "B46.9", + en: "", + de: "Zygomycosis, unspecified", + }, + { + key: "B47", + en: "", + de: "Mycetoma", + }, + { + key: "B47.0", + en: "", + de: "Eumycetoma", + }, + { + key: "B47.1", + en: "", + de: "Actinomycetoma", + }, + { + key: "B47.9", + en: "", + de: "Mycetoma, unspecified", + }, + { + key: "B48", + en: "", + de: "Other mycoses, not elsewhere classified", + }, + { + key: "B48.0", + en: "", + de: "Lobomycosis", + }, + { + key: "B48.1", + en: "", + de: "Rhinosporidiosis", + }, + { + key: "B48.2", + en: "", + de: "Allescheriasis", + }, + { + key: "B48.3", + en: "", + de: "Geotrichosis", + }, + { + key: "B48.4", + en: "", + de: "Penicillosis", + }, + { + key: "B48.7", + en: "", + de: "Opportunistic mycoses", + }, + { + key: "B48.8", + en: "", + de: "Other specified mycoses", + }, + { + key: "B49", + en: "", + de: "Unspecified mycosis", + }, + { + key: "B50", + en: "", + de: "Plasmodium falciparum malaria", + }, + { + key: "B50.0", + en: "", + de: "Plasmodium falciparum malaria with cerebral complications", + }, + { + key: "B50.8", + en: "", + de: "Other severe and complicated Plasmodium falciparum malaria", + }, + { + key: "B50.9", + en: "", + de: "Plasmodium falciparum malaria, unspecified", + }, + { + key: "B51", + en: "", + de: "Plasmodium vivax malaria", + }, + { + key: "B51.0", + en: "", + de: "Plasmodium vivax malaria with rupture of spleen", + }, + { + key: "B51.8", + en: "", + de: "Plasmodium vivax malaria with other complications", + }, + { + key: "B51.9", + en: "", + de: "Plasmodium vivax malaria without complication", + }, + { + key: "B52", + en: "", + de: "Plasmodium malariae malaria", + }, + { + key: "B52.0", + en: "", + de: "Plasmodium malariae malaria with nephropathy", + }, + { + key: "B52.8", + en: "", + de: "Plasmodium malariae malaria with other complications", + }, + { + key: "B52.9", + en: "", + de: "Plasmodium malariae malaria without complication", + }, + { + key: "B53", + en: "", + de: "Other parasitologically confirmed malaria", + }, + { + key: "B53.0", + en: "", + de: "Plasmodium ovale malaria", + }, + { + key: "B53.1", + en: "", + de: "Malaria due to simian plasmodia", + }, + { + key: "B53.8", + en: "", + de: "Other parasitologically confirmed malaria, not elsewhere classified", + }, + { + key: "B54", + en: "", + de: "Unspecified malaria", + }, + { + key: "B55", + en: "", + de: "Leishmaniasis", + }, + { + key: "B55.0", + en: "", + de: "Visceral leishmaniasis", + }, + { + key: "B55.1", + en: "", + de: "Cutaneous leishmaniasis", + }, + { + key: "B55.2", + en: "", + de: "Mucocutaneous leishmaniasis", + }, + { + key: "B55.9", + en: "", + de: "Leishmaniasis, unspecified", + }, + { + key: "B56", + en: "", + de: "African trypanosomiasis", + }, + { + key: "B56.0", + en: "", + de: "Gambiense trypanosomiasis", + }, + { + key: "B56.1", + en: "", + de: "Rhodesiense trypanosomiasis", + }, + { + key: "B56.9", + en: "", + de: "African trypanosomiasis, unspecified", + }, + { + key: "B57", + en: "", + de: "Chagas disease", + }, + { + key: "B57.1", + en: "", + de: "Acute Chagas disease without heart involvement", + }, + { + key: "B57.2", + en: "", + de: "Chagas disease (chronic) with heart involvement", + }, + { + key: "B57.3", + en: "", + de: "Chagas disease (chronic) with digestive system involvement", + }, + { + key: "B57.4", + en: "", + de: "Chagas disease (chronic) with nervous system involvement", + }, + { + key: "B57.5", + en: "", + de: "Chagas disease (chronic) with other organ involvement", + }, + { + key: "B58", + en: "", + de: "Toxoplasmosis", + }, + { + key: "B58.8", + en: "", + de: "Toxoplasmosis with other organ involvement", + }, + { + key: "B58.9", + en: "", + de: "Toxoplasmosis, unspecified", + }, + { + key: "B60", + en: "", + de: "Other protozoal diseases, not elsewhere classified", + }, + { + key: "B60.0", + en: "", + de: "Babesiosis", + }, + { + key: "B60.1", + en: "", + de: "Acanthamoebiasis", + }, + { + key: "B60.2", + en: "", + de: "Naegleriasis", + }, + { + key: "B60.8", + en: "", + de: "Other specified protozoal diseases", + }, + { + key: "B64", + en: "", + de: "Unspecified protozoal disease", + }, + { + key: "B65", + en: "", + de: "Schistosomiasis [bilharziasis]", + }, + { + key: "B65.0", + en: "", + de: "Schistosomiasis due to Schistosoma haematobium [urinary schistosomiasis]", + }, + { + key: "B65.1", + en: "", + de: "Schistosomiasis due to Schistosoma mansoni [intestinal schistosomiasis]", + }, + { + key: "B65.2", + en: "", + de: "Schistosomiasis due to Schistosoma japonicum", + }, + { + key: "B65.3", + en: "", + de: "Cercarial dermatitis", + }, + { + key: "B65.8", + en: "", + de: "Other schistosomiases", + }, + { + key: "B65.9", + en: "", + de: "Schistosomiasis, unspecified", + }, + { + key: "B66", + en: "", + de: "Other fluke infections", + }, + { + key: "B66.0", + en: "", + de: "Opisthorchiasis", + }, + { + key: "B66.1", + en: "", + de: "Clonorchiasis", + }, + { + key: "B66.2", + en: "", + de: "Dicrocoeliasis", + }, + { + key: "B66.3", + en: "", + de: "Fascioliasis", + }, + { + key: "B66.4", + en: "", + de: "Paragonimiasis", + }, + { + key: "B66.5", + en: "", + de: "Fasciolopsiasis", + }, + { + key: "B66.8", + en: "", + de: "Other specified fluke infections", + }, + { + key: "B66.9", + en: "", + de: "Fluke infection, unspecified", + }, + { + key: "B67", + en: "", + de: "Echinococcosis", + }, + { + key: "B67.0", + en: "", + de: "Echinococcus granulosus infection of liver", + }, + { + key: "B67.1", + en: "", + de: "Echinococcus granulosus infection of lung", + }, + { + key: "B67.2", + en: "", + de: "Echinococcus granulosus infection of bone", + }, + { + key: "B67.3", + en: "", + de: "Echinococcus granulosus infection, other and multiple sites", + }, + { + key: "B67.4", + en: "", + de: "Echinococcus granulosus infection, unspecified", + }, + { + key: "B67.5", + en: "", + de: "Echinococcus multilocularis infection of liver", + }, + { + key: "B67.6", + en: "", + de: "Echinococcus multilocularis infection, other and multiple sites", + }, + { + key: "B67.7", + en: "", + de: "Echinococcus multilocularis infection, unspecified", + }, + { + key: "B67.8", + en: "", + de: "Echinococcosis, unspecified, of liver", + }, + { + key: "B67.9", + en: "", + de: "Echinococcosis, other and unspecified", + }, + { + key: "B68", + en: "", + de: "Taeniasis", + }, + { + key: "B68.0", + en: "", + de: "Taenia solium taeniasis", + }, + { + key: "B68.1", + en: "", + de: "Taenia saginata taeniasis", + }, + { + key: "B68.9", + en: "", + de: "Taeniasis, unspecified", + }, + { + key: "B69", + en: "", + de: "Cysticercosis", + }, + { + key: "B69.0", + en: "", + de: "Cysticercosis of central nervous system", + }, + { + key: "B69.1", + en: "", + de: "Cysticercosis of eye", + }, + { + key: "B69.8", + en: "", + de: "Cysticercosis of other sites", + }, + { + key: "B69.9", + en: "", + de: "Cysticercosis, unspecified", + }, + { + key: "B70", + en: "", + de: "Diphyllobothriasis and sparganosis", + }, + { + key: "B70.0", + en: "", + de: "Diphyllobothriasis", + }, + { + key: "B70.1", + en: "", + de: "Sparganosis", + }, + { + key: "B71", + en: "", + de: "Other cestode infections", + }, + { + key: "B71.0", + en: "", + de: "Hymenolepiasis", + }, + { + key: "B71.1", + en: "", + de: "Dipylidiasis", + }, + { + key: "B71.8", + en: "", + de: "Other specified cestode infections", + }, + { + key: "B71.9", + en: "", + de: "Cestode infection, unspecified", + }, + { + key: "B72", + en: "", + de: "Dracunculiasis", + }, + { + key: "B73", + en: "", + de: "Onchocerciasis", + }, + { + key: "B74", + en: "", + de: "Filariasis", + }, + { + key: "B74.0", + en: "", + de: "Filariasis due to Wuchereria bancrofti", + }, + { + key: "B74.1", + en: "", + de: "Filariasis due to Brugia malayi", + }, + { + key: "B74.2", + en: "", + de: "Filariasis due to Brugia timori", + }, + { + key: "B74.3", + en: "", + de: "Loiasis", + }, + { + key: "B74.4", + en: "", + de: "Mansonelliasis", + }, + { + key: "B74.8", + en: "", + de: "Other filariases", + }, + { + key: "B74.9", + en: "", + de: "Filariasis, unspecified", + }, + { + key: "B75", + en: "", + de: "Trichinellosis", + }, + { + key: "B76", + en: "", + de: "Hookworm diseases", + }, + { + key: "B76.0", + en: "", + de: "Ancylostomiasis", + }, + { + key: "B76.1", + en: "", + de: "Necatoriasis", + }, + { + key: "B76.8", + en: "", + de: "Other hookworm diseases", + }, + { + key: "B76.9", + en: "", + de: "Hookworm disease, unspecified", + }, + { + key: "B77", + en: "", + de: "Ascariasis", + }, + { + key: "B77.0", + en: "", + de: "Ascariasis with intestinal complications", + }, + { + key: "B77.8", + en: "", + de: "Ascariasis with other complications", + }, + { + key: "B77.9", + en: "", + de: "Ascariasis, unspecified", + }, + { + key: "B78", + en: "", + de: "Strongyloidiasis", + }, + { + key: "B78.0", + en: "", + de: "Intestinal strongyloidiasis", + }, + { + key: "B78.1", + en: "", + de: "Cutaneous strongyloidiasis", + }, + { + key: "B78.7", + en: "", + de: "Disseminated strongyloidiasis", + }, + { + key: "B78.9", + en: "", + de: "Strongyloidiasis, unspecified", + }, + { + key: "B79", + en: "", + de: "Trichuriasis", + }, + { + key: "B80", + en: "", + de: "Enterobiasis", + }, + { + key: "B81", + en: "", + de: "Other intestinal helminthiases, not elsewhere classified", + }, + { + key: "B81.0", + en: "", + de: "Anisakiasis", + }, + { + key: "B81.1", + en: "", + de: "Intestinal capillariasis", + }, + { + key: "B81.2", + en: "", + de: "Trichostrongyliasis", + }, + { + key: "B81.3", + en: "", + de: "Intestinal angiostrongyliasis", + }, + { + key: "B81.4", + en: "", + de: "Mixed intestinal helminthiases", + }, + { + key: "B81.8", + en: "", + de: "Other specified intestinal helminthiases", + }, + { + key: "B82", + en: "", + de: "Unspecified intestinal parasitism", + }, + { + key: "B82.0", + en: "", + de: "Intestinal helminthiasis, unspecified", + }, + { + key: "B82.9", + en: "", + de: "Intestinal parasitism, unspecified", + }, + { + key: "B83", + en: "", + de: "Other helminthiases", + }, + { + key: "B83.0", + en: "", + de: "Visceral larva migrans", + }, + { + key: "B83.1", + en: "", + de: "Gnathostomiasis", + }, + { + key: "B83.2", + en: "", + de: "Angiostrongyliasis due to Parastrongylus cantonensis", + }, + { + key: "B83.3", + en: "", + de: "Syngamiasis", + }, + { + key: "B83.4", + en: "", + de: "Internal hirudiniasis", + }, + { + key: "B83.8", + en: "", + de: "Other specified helminthiases", + }, + { + key: "B83.9", + en: "", + de: "Helminthiasis, unspecified", + }, + { + key: "B85", + en: "", + de: "Pediculosis and phthiriasis", + }, + { + key: "B85.0", + en: "", + de: "Pediculosis due to Pediculus humanus capitis", + }, + { + key: "B85.1", + en: "", + de: "Pediculosis due to Pediculus humanus corporis", + }, + { + key: "B85.2", + en: "", + de: "Pediculosis, unspecified", + }, + { + key: "B85.3", + en: "", + de: "Phthiriasis", + }, + { + key: "B85.4", + en: "", + de: "Mixed pediculosis and phthiriasis", + }, + { + key: "B86", + en: "", + de: "Scabies", + }, + { + key: "B87", + en: "", + de: "Myiasis", + }, + { + key: "B87.0", + en: "", + de: "Cutaneous myiasis", + }, + { + key: "B87.1", + en: "", + de: "Wound myiasis", + }, + { + key: "B87.2", + en: "", + de: "Ocular myiasis", + }, + { + key: "B87.3", + en: "", + de: "Nasopharyngeal myiasis", + }, + { + key: "B87.4", + en: "", + de: "Aural myiasis", + }, + { + key: "B87.8", + en: "", + de: "Myiasis of other sites", + }, + { + key: "B87.9", + en: "", + de: "Myiasis, unspecified", + }, + { + key: "B88", + en: "", + de: "Other infestations", + }, + { + key: "B88.0", + en: "", + de: "Other acariasis", + }, + { + key: "B88.1", + en: "", + de: "Tungiasis [sandflea infestation]", + }, + { + key: "B88.2", + en: "", + de: "Other arthropod infestations", + }, + { + key: "B88.3", + en: "", + de: "External hirudiniasis", + }, + { + key: "B88.8", + en: "", + de: "Other specified infestations", + }, + { + key: "B88.9", + en: "", + de: "Infestation, unspecified", + }, + { + key: "B89", + en: "", + de: "Unspecified parasitic disease", + }, + { + key: "B90", + en: "", + de: "Sequelae of tuberculosis", + }, + { + key: "B90.0", + en: "", + de: "Sequelae of central nervous system tuberculosis", + }, + { + key: "B90.1", + en: "", + de: "Sequelae of genitourinary tuberculosis", + }, + { + key: "B90.2", + en: "", + de: "Sequelae of tuberculosis of bones and joints", + }, + { + key: "B90.8", + en: "", + de: "Sequelae of tuberculosis of other organs", + }, + { + key: "B90.9", + en: "", + de: "Sequelae of respiratory and unspecified tuberculosis", + }, + { + key: "B91", + en: "", + de: "Sequelae of poliomyelitis", + }, + { + key: "B92", + en: "", + de: "Sequelae of leprosy", + }, + { + key: "B94", + en: "", + de: "Sequelae of other and unspecified infectious and parasitic diseases", + }, + { + key: "B94.0", + en: "", + de: "Sequelae of trachoma", + }, + { + key: "B94.1", + en: "", + de: "Sequelae of viral encephalitis", + }, + { + key: "B94.2", + en: "", + de: "Sequelae of viral hepatitis", + }, + { + key: "B94.8", + en: "", + de: "Sequelae of other specified infectious and parasitic diseases", + }, + { + key: "B94.9", + en: "", + de: "Sequelae of unspecified infectious or parasitic disease", + }, + { + key: "B99", + en: "", + de: "Other and unspecified infectious diseases", + }, + { + key: "C00", + en: "", + de: "Malignant neoplasm of lip", + }, + { + key: "C00.0", + en: "", + de: "Malignant neoplasm: External upper lip", + }, + { + key: "C00.1", + en: "", + de: "Malignant neoplasm: External lower lip", + }, + { + key: "C00.2", + en: "", + de: "Malignant neoplasm: External lip, unspecified", + }, + { + key: "C00.3", + en: "", + de: "Malignant neoplasm: Upper lip, inner aspect", + }, + { + key: "C00.4", + en: "", + de: "Malignant neoplasm: Lower lip, inner aspect", + }, + { + key: "C00.5", + en: "", + de: "Malignant neoplasm: Lip, unspecified, inner aspect", + }, + { + key: "C00.6", + en: "", + de: "Malignant neoplasm: Commissure of lip", + }, + { + key: "C00.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of lip", + }, + { + key: "C00.9", + en: "", + de: "Malignant neoplasm: Lip, unspecified", + }, + { + key: "C01", + en: "", + de: "Malignant neoplasm of base of tongue", + }, + { + key: "C02", + en: "", + de: "Malignant neoplasm of other and unspecified parts of tongue", + }, + { + key: "C02.0", + en: "", + de: "Malignant neoplasm: Dorsal surface of tongue", + }, + { + key: "C02.1", + en: "", + de: "Malignant neoplasm: Border of tongue", + }, + { + key: "C02.2", + en: "", + de: "Malignant neoplasm: Ventral surface of tongue", + }, + { + key: "C02.3", + en: "", + de: "Malignant neoplasm: Anterior two-thirds of tongue, part unspecified", + }, + { + key: "C02.4", + en: "", + de: "Malignant neoplasm: Lingual tonsil", + }, + { + key: "C02.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of tongue", + }, + { + key: "C02.9", + en: "", + de: "Malignant neoplasm: Tongue, unspecified", + }, + { + key: "C03", + en: "", + de: "Malignant neoplasm of gum", + }, + { + key: "C03.0", + en: "", + de: "Malignant neoplasm: Upper gum", + }, + { + key: "C03.1", + en: "", + de: "Malignant neoplasm: Lower gum", + }, + { + key: "C03.9", + en: "", + de: "Malignant neoplasm: Gum, unspecified", + }, + { + key: "C04", + en: "", + de: "Malignant neoplasm of floor of mouth", + }, + { + key: "C04.0", + en: "", + de: "Malignant neoplasm: Anterior floor of mouth", + }, + { + key: "C04.1", + en: "", + de: "Malignant neoplasm: Lateral floor of mouth", + }, + { + key: "C04.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of floor of mouth", + }, + { + key: "C04.9", + en: "", + de: "Malignant neoplasm: Floor of mouth, unspecified", + }, + { + key: "C05", + en: "", + de: "Malignant neoplasm of palate", + }, + { + key: "C05.0", + en: "", + de: "Malignant neoplasm: Hard palate", + }, + { + key: "C05.1", + en: "", + de: "Malignant neoplasm: Soft palate", + }, + { + key: "C05.2", + en: "", + de: "Malignant neoplasm: Uvula", + }, + { + key: "C05.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of palate", + }, + { + key: "C05.9", + en: "", + de: "Malignant neoplasm: Palate, unspecified", + }, + { + key: "C06", + en: "", + de: "Malignant neoplasm of other and unspecified parts of mouth", + }, + { + key: "C06.0", + en: "", + de: "Malignant neoplasm: Cheek mucosa", + }, + { + key: "C06.1", + en: "", + de: "Malignant neoplasm: Vestibule of mouth", + }, + { + key: "C06.2", + en: "", + de: "Malignant neoplasm: Retromolar area", + }, + { + key: "C06.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of other and unspecified parts of mouth", + }, + { + key: "C06.9", + en: "", + de: "Malignant neoplasm: Mouth, unspecified", + }, + { + key: "C07", + en: "", + de: "Malignant neoplasm of parotid gland", + }, + { + key: "C08", + en: "", + de: "Malignant neoplasm of other and unspecified major salivary glands", + }, + { + key: "C08.0", + en: "", + de: "Malignant neoplasm: Submandibular gland", + }, + { + key: "C08.1", + en: "", + de: "Malignant neoplasm: Sublingual gland", + }, + { + key: "C08.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of major salivary glands", + }, + { + key: "C08.9", + en: "", + de: "Malignant neoplasm: Major salivary gland, unspecified", + }, + { + key: "C09", + en: "", + de: "Malignant neoplasm of tonsil", + }, + { + key: "C09.0", + en: "", + de: "Malignant neoplasm: Tonsillar fossa", + }, + { + key: "C09.1", + en: "", + de: "Malignant neoplasm: Tonsillar pillar (anterior)(posterior)", + }, + { + key: "C09.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of tonsil", + }, + { + key: "C09.9", + en: "", + de: "Malignant neoplasm: Tonsil, unspecified", + }, + { + key: "C10", + en: "", + de: "Malignant neoplasm of oropharynx", + }, + { + key: "C10.0", + en: "", + de: "Malignant neoplasm: Vallecula", + }, + { + key: "C10.1", + en: "", + de: "Malignant neoplasm: Anterior surface of epiglottis", + }, + { + key: "C10.2", + en: "", + de: "Malignant neoplasm: Lateral wall of oropharynx", + }, + { + key: "C10.3", + en: "", + de: "Malignant neoplasm: Posterior wall of oropharynx", + }, + { + key: "C10.4", + en: "", + de: "Malignant neoplasm: Branchial cleft", + }, + { + key: "C10.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of oropharynx", + }, + { + key: "C10.9", + en: "", + de: "Malignant neoplasm: Oropharynx, unspecified", + }, + { + key: "C11", + en: "", + de: "Malignant neoplasm of nasopharynx", + }, + { + key: "C11.0", + en: "", + de: "Malignant neoplasm: Superior wall of nasopharynx", + }, + { + key: "C11.1", + en: "", + de: "Malignant neoplasm: Posterior wall of nasopharynx", + }, + { + key: "C11.2", + en: "", + de: "Malignant neoplasm: Lateral wall of nasopharynx", + }, + { + key: "C11.3", + en: "", + de: "Malignant neoplasm: Anterior wall of nasopharynx", + }, + { + key: "C11.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of nasopharynx", + }, + { + key: "C11.9", + en: "", + de: "Malignant neoplasm: Nasopharynx, unspecified", + }, + { + key: "C12", + en: "", + de: "Malignant neoplasm of piriform sinus", + }, + { + key: "C13", + en: "", + de: "Malignant neoplasm of hypopharynx", + }, + { + key: "C13.0", + en: "", + de: "Malignant neoplasm: Postcricoid region", + }, + { + key: "C13.1", + en: "", + de: "Malignant neoplasm: Aryepiglottic fold, hypopharyngeal aspect", + }, + { + key: "C13.2", + en: "", + de: "Malignant neoplasm: Posterior wall of hypopharynx", + }, + { + key: "C13.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of hypopharynx", + }, + { + key: "C13.9", + en: "", + de: "Malignant neoplasm: Hypopharynx, unspecified", + }, + { + key: "C14", + en: "", + de: "Malignant neoplasm of other and ill-defined sites in the lip, oral cavity and pharynx", + }, + { + key: "C14.0", + en: "", + de: "Malignant neoplasm: Pharynx, unspecified", + }, + { + key: "C14.2", + en: "", + de: "Malignant neoplasm: Waldeyer ring", + }, + { + key: "C14.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of lip, oral cavity and pharynx", + }, + { + key: "C15", + en: "", + de: "Malignant neoplasm of oesophagus", + }, + { + key: "C15.0", + en: "", + de: "Malignant neoplasm: Cervical part of oesophagus", + }, + { + key: "C15.1", + en: "", + de: "Malignant neoplasm: Thoracic part of oesophagus", + }, + { + key: "C15.2", + en: "", + de: "Malignant neoplasm: Abdominal part of oesophagus", + }, + { + key: "C15.3", + en: "", + de: "Malignant neoplasm: Upper third of oesophagus", + }, + { + key: "C15.4", + en: "", + de: "Malignant neoplasm: Middle third of oesophagus", + }, + { + key: "C15.5", + en: "", + de: "Malignant neoplasm: Lower third of oesophagus", + }, + { + key: "C15.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of oesophagus", + }, + { + key: "C15.9", + en: "", + de: "Malignant neoplasm: Oesophagus, unspecified", + }, + { + key: "C16", + en: "", + de: "Malignant neoplasm of stomach", + }, + { + key: "C16.0", + en: "", + de: "Malignant neoplasm: Cardia", + }, + { + key: "C16.1", + en: "", + de: "Malignant neoplasm: Fundus of stomach", + }, + { + key: "C16.2", + en: "", + de: "Malignant neoplasm: Body of stomach", + }, + { + key: "C16.3", + en: "", + de: "Malignant neoplasm: Pyloric antrum", + }, + { + key: "C16.4", + en: "", + de: "Malignant neoplasm: Pylorus", + }, + { + key: "C16.5", + en: "", + de: "Malignant neoplasm: Lesser curvature of stomach, unspecified", + }, + { + key: "C16.6", + en: "", + de: "Malignant neoplasm: Greater curvature of stomach, unspecified", + }, + { + key: "C16.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of stomach", + }, + { + key: "C16.9", + en: "", + de: "Malignant neoplasm: Stomach, unspecified", + }, + { + key: "C17", + en: "", + de: "Malignant neoplasm of small intestine", + }, + { + key: "C17.0", + en: "", + de: "Malignant neoplasm: Duodenum", + }, + { + key: "C17.1", + en: "", + de: "Malignant neoplasm: Jejunum", + }, + { + key: "C17.2", + en: "", + de: "Malignant neoplasm: Ileum", + }, + { + key: "C17.3", + en: "", + de: "Malignant neoplasm: Meckel diverticulum", + }, + { + key: "C17.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of small intestine", + }, + { + key: "C17.9", + en: "", + de: "Malignant neoplasm: Small intestine, unspecified", + }, + { + key: "C18", + en: "", + de: "Malignant neoplasm of colon", + }, + { + key: "C18.0", + en: "", + de: "Malignant neoplasm: Caecum", + }, + { + key: "C18.1", + en: "", + de: "Malignant neoplasm: Appendix", + }, + { + key: "C18.2", + en: "", + de: "Malignant neoplasm: Ascending colon", + }, + { + key: "C18.3", + en: "", + de: "Malignant neoplasm: Hepatic flexure", + }, + { + key: "C18.4", + en: "", + de: "Malignant neoplasm: Transverse colon", + }, + { + key: "C18.5", + en: "", + de: "Malignant neoplasm: Splenic flexure", + }, + { + key: "C18.6", + en: "", + de: "Malignant neoplasm: Descending colon", + }, + { + key: "C18.7", + en: "", + de: "Malignant neoplasm: Sigmoid colon", + }, + { + key: "C18.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of colon", + }, + { + key: "C18.9", + en: "", + de: "Malignant neoplasm: Colon, unspecified", + }, + { + key: "C19", + en: "", + de: "Malignant neoplasm of rectosigmoid junction", + }, + { + key: "C20", + en: "", + de: "Malignant neoplasm of rectum", + }, + { + key: "C21", + en: "", + de: "Malignant neoplasm of anus and anal canal", + }, + { + key: "C21.0", + en: "", + de: "Malignant neoplasm: Anus, unspecified", + }, + { + key: "C21.1", + en: "", + de: "Malignant neoplasm: Anal canal", + }, + { + key: "C21.2", + en: "", + de: "Malignant neoplasm: Cloacogenic zone", + }, + { + key: "C21.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of rectum, anus and anal canal", + }, + { + key: "C22", + en: "", + de: "Malignant neoplasm of liver and intrahepatic bile ducts", + }, + { + key: "C22.0", + en: "", + de: "Malignant neoplasm: Liver cell carcinoma", + }, + { + key: "C22.1", + en: "", + de: "Malignant neoplasm: Intrahepatic bile duct carcinoma", + }, + { + key: "C22.2", + en: "", + de: "Malignant neoplasm: Hepatoblastoma", + }, + { + key: "C22.3", + en: "", + de: "Malignant neoplasm: Angiosarcoma of liver", + }, + { + key: "C22.4", + en: "", + de: "Malignant neoplasm: Other sarcomas of liver", + }, + { + key: "C22.7", + en: "", + de: "Malignant neoplasm: Other specified carcinomas of liver", + }, + { + key: "C22.9", + en: "", + de: "Malignant neoplasm: Liver, unspecified", + }, + { + key: "C23", + en: "", + de: "Malignant neoplasm of gallbladder", + }, + { + key: "C24", + en: "", + de: "Malignant neoplasm of other and unspecified parts of biliary tract", + }, + { + key: "C24.0", + en: "", + de: "Malignant neoplasm: Extrahepatic bile duct", + }, + { + key: "C24.1", + en: "", + de: "Malignant neoplasm: Ampulla of Vater", + }, + { + key: "C24.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of biliary tract", + }, + { + key: "C24.9", + en: "", + de: "Malignant neoplasm: Biliary tract, unspecified", + }, + { + key: "C25", + en: "", + de: "Malignant neoplasm of pancreas", + }, + { + key: "C25.0", + en: "", + de: "Malignant neoplasm: Head of pancreas", + }, + { + key: "C25.1", + en: "", + de: "Malignant neoplasm: Body of pancreas", + }, + { + key: "C25.2", + en: "", + de: "Malignant neoplasm: Tail of pancreas", + }, + { + key: "C25.3", + en: "", + de: "Malignant neoplasm: Pancreatic duct", + }, + { + key: "C25.4", + en: "", + de: "Malignant neoplasm: Endocrine pancreas", + }, + { + key: "C25.7", + en: "", + de: "Malignant neoplasm: Other parts of pancreas", + }, + { + key: "C25.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of pancreas", + }, + { + key: "C25.9", + en: "", + de: "Malignant neoplasm: Pancreas, unspecified", + }, + { + key: "C26", + en: "", + de: "Malignant neoplasm of other and ill-defined digestive organs", + }, + { + key: "C26.0", + en: "", + de: "Malignant neoplasm: Intestinal tract, part unspecified", + }, + { + key: "C26.1", + en: "", + de: "Malignant neoplasm: Spleen", + }, + { + key: "C26.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of digestive system", + }, + { + key: "C26.9", + en: "", + de: "Malignant neoplasm: Ill-defined sites within the digestive system", + }, + { + key: "C30", + en: "", + de: "Malignant neoplasm of nasal cavity and middle ear", + }, + { + key: "C30.0", + en: "", + de: "Malignant neoplasm: Nasal cavity", + }, + { + key: "C30.1", + en: "", + de: "Malignant neoplasm: Middle ear", + }, + { + key: "C31", + en: "", + de: "Malignant neoplasm of accessory sinuses", + }, + { + key: "C31.0", + en: "", + de: "Malignant neoplasm: Maxillary sinus", + }, + { + key: "C31.1", + en: "", + de: "Malignant neoplasm: Ethmoidal sinus", + }, + { + key: "C31.2", + en: "", + de: "Malignant neoplasm: Frontal sinus", + }, + { + key: "C31.3", + en: "", + de: "Malignant neoplasm: Sphenoidal sinus", + }, + { + key: "C31.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of accessory sinuses", + }, + { + key: "C31.9", + en: "", + de: "Malignant neoplasm: Accessory sinus, unspecified", + }, + { + key: "C32", + en: "", + de: "Malignant neoplasm of larynx", + }, + { + key: "C32.0", + en: "", + de: "Malignant neoplasm: Glottis", + }, + { + key: "C32.1", + en: "", + de: "Malignant neoplasm: Supraglottis", + }, + { + key: "C32.2", + en: "", + de: "Malignant neoplasm: Subglottis", + }, + { + key: "C32.3", + en: "", + de: "Malignant neoplasm: Laryngeal cartilage", + }, + { + key: "C32.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of larynx", + }, + { + key: "C32.9", + en: "", + de: "Malignant neoplasm: Larynx, unspecified", + }, + { + key: "C33", + en: "", + de: "Malignant neoplasm of trachea", + }, + { + key: "C34", + en: "", + de: "Malignant neoplasm of bronchus and lung", + }, + { + key: "C34.0", + en: "", + de: "Malignant neoplasm: Main bronchus", + }, + { + key: "C34.1", + en: "", + de: "Malignant neoplasm: Upper lobe, bronchus or lung", + }, + { + key: "C34.2", + en: "", + de: "Malignant neoplasm: Middle lobe, bronchus or lung", + }, + { + key: "C34.3", + en: "", + de: "Malignant neoplasm: Lower lobe, bronchus or lung", + }, + { + key: "C34.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of bronchus and lung", + }, + { + key: "C34.9", + en: "", + de: "Malignant neoplasm: Bronchus or lung, unspecified", + }, + { + key: "C37", + en: "", + de: "Malignant neoplasm of thymus", + }, + { + key: "C38", + en: "", + de: "Malignant neoplasm of heart, mediastinum and pleura", + }, + { + key: "C38.0", + en: "", + de: "Malignant neoplasm: Heart", + }, + { + key: "C38.1", + en: "", + de: "Malignant neoplasm: Anterior mediastinum", + }, + { + key: "C38.2", + en: "", + de: "Malignant neoplasm: Posterior mediastinum", + }, + { + key: "C38.3", + en: "", + de: "Malignant neoplasm: Mediastinum, part unspecified", + }, + { + key: "C38.4", + en: "", + de: "Malignant neoplasm: Pleura", + }, + { + key: "C38.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of heart, mediastinum and pleura", + }, + { + key: "C39", + en: "", + de: "Malignant neoplasm of other and ill-defined sites in the respiratory system and intrathoracic organs", + }, + { + key: "C39.0", + en: "", + de: "Malignant neoplasm: Upper respiratory tract, part unspecified", + }, + { + key: "C39.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of respiratory and intrathoracic organs", + }, + { + key: "C39.9", + en: "", + de: "Malignant neoplasm: Ill-defined sites within the respiratory system", + }, + { + key: "C40", + en: "", + de: "Malignant neoplasm of bone and articular cartilage of limbs", + }, + { + key: "C40.0", + en: "", + de: "Malignant neoplasm: Scapula and long bones of upper limb", + }, + { + key: "C40.1", + en: "", + de: "Malignant neoplasm: Short bones of upper limb", + }, + { + key: "C40.2", + en: "", + de: "Malignant neoplasm: Long bones of lower limb", + }, + { + key: "C40.3", + en: "", + de: "Malignant neoplasm: Short bones of lower limb", + }, + { + key: "C40.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of bone and articular cartilage of limbs", + }, + { + key: "C40.9", + en: "", + de: "Malignant neoplasm: Bone and articular cartilage of limb, unspecified", + }, + { + key: "C41", + en: "", + de: "Malignant neoplasm of bone and articular cartilage of other and unspecified sites", + }, + { + key: "C41.0", + en: "", + de: "Malignant neoplasm: Bones of skull and face", + }, + { + key: "C41.1", + en: "", + de: "Malignant neoplasm: Mandible", + }, + { + key: "C41.2", + en: "", + de: "Malignant neoplasm: Vertebral column", + }, + { + key: "C41.3", + en: "", + de: "Malignant neoplasm: Ribs, sternum and clavicle", + }, + { + key: "C41.4", + en: "", + de: "Malignant neoplasm: Pelvic bones, sacrum and coccyx", + }, + { + key: "C41.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of bone and articular cartilage", + }, + { + key: "C41.9", + en: "", + de: "Malignant neoplasm: Bone and articular cartilage, unspecified", + }, + { + key: "C43", + en: "", + de: "Malignant melanoma of skin", + }, + { + key: "C43.0", + en: "", + de: "Malignant neoplasm: Malignant melanoma of lip", + }, + { + key: "C43.1", + en: "", + de: "Malignant neoplasm: Malignant melanoma of eyelid, including canthus", + }, + { + key: "C43.2", + en: "", + de: "Malignant neoplasm: Malignant melanoma of ear and external auricular canal", + }, + { + key: "C43.3", + en: "", + de: "Malignant neoplasm: Malignant melanoma of other and unspecified parts of face", + }, + { + key: "C43.4", + en: "", + de: "Malignant neoplasm: Malignant melanoma of scalp and neck", + }, + { + key: "C43.5", + en: "", + de: "Malignant neoplasm: Malignant melanoma of trunk", + }, + { + key: "C43.6", + en: "", + de: "Malignant neoplasm: Malignant melanoma of upper limb, including shoulder", + }, + { + key: "C43.7", + en: "", + de: "Malignant neoplasm: Malignant melanoma of lower limb, including hip", + }, + { + key: "C43.8", + en: "", + de: "Malignant neoplasm: Overlapping malignant melanoma of skin", + }, + { + key: "C43.9", + en: "", + de: "Malignant neoplasm: Malignant melanoma of skin, unspecified", + }, + { + key: "C44", + en: "", + de: "Other malignant neoplasms of skin", + }, + { + key: "C44.0", + en: "", + de: "Malignant neoplasm: Skin of lip", + }, + { + key: "C44.1", + en: "", + de: "Malignant neoplasm: Skin of eyelid, including canthus", + }, + { + key: "C44.2", + en: "", + de: "Malignant neoplasm: Skin of ear and external auricular canal", + }, + { + key: "C44.3", + en: "", + de: "Malignant neoplasm: Skin of other and unspecified parts of face", + }, + { + key: "C44.4", + en: "", + de: "Malignant neoplasm: Skin of scalp and neck", + }, + { + key: "C44.5", + en: "", + de: "Malignant neoplasm: Skin of trunk", + }, + { + key: "C44.6", + en: "", + de: "Malignant neoplasm: Skin of upper limb, including shoulder", + }, + { + key: "C44.7", + en: "", + de: "Malignant neoplasm: Skin of lower limb, including hip", + }, + { + key: "C44.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of skin", + }, + { + key: "C44.9", + en: "", + de: "Malignant neoplasm: Malignant neoplasm of skin, unspecified", + }, + { + key: "C45", + en: "", + de: "Mesothelioma", + }, + { + key: "C45.0", + en: "", + de: "Mesothelioma of pleura", + }, + { + key: "C45.1", + en: "", + de: "Mesothelioma of peritoneum", + }, + { + key: "C45.2", + en: "", + de: "Mesothelioma of pericardium", + }, + { + key: "C45.7", + en: "", + de: "Mesothelioma of other sites", + }, + { + key: "C45.9", + en: "", + de: "Mesothelioma, unspecified", + }, + { + key: "C46", + en: "", + de: "Kaposi sarcoma", + }, + { + key: "C46.0", + en: "", + de: "Kaposi sarcoma of skin", + }, + { + key: "C46.1", + en: "", + de: "Kaposi sarcoma of soft tissue", + }, + { + key: "C46.2", + en: "", + de: "Kaposi sarcoma of palate", + }, + { + key: "C46.3", + en: "", + de: "Kaposi sarcoma of lymph nodes", + }, + { + key: "C46.7", + en: "", + de: "Kaposi sarcoma of other sites", + }, + { + key: "C46.8", + en: "", + de: "Kaposi sarcoma of multiple organs", + }, + { + key: "C46.9", + en: "", + de: "Kaposi sarcoma, unspecified", + }, + { + key: "C47", + en: "", + de: "Malignant neoplasm of peripheral nerves and autonomic nervous system", + }, + { + key: "C47.0", + en: "", + de: "Malignant neoplasm: Peripheral nerves of head, face and neck", + }, + { + key: "C47.1", + en: "", + de: "Malignant neoplasm: Peripheral nerves of upper limb, including shoulder", + }, + { + key: "C47.2", + en: "", + de: "Malignant neoplasm: Peripheral nerves of lower limb, including hip", + }, + { + key: "C47.3", + en: "", + de: "Malignant neoplasm: Peripheral nerves of thorax", + }, + { + key: "C47.4", + en: "", + de: "Malignant neoplasm: Peripheral nerves of abdomen", + }, + { + key: "C47.5", + en: "", + de: "Malignant neoplasm: Peripheral nerves of pelvis", + }, + { + key: "C47.6", + en: "", + de: "Malignant neoplasm: Peripheral nerves of trunk, unspecified", + }, + { + key: "C47.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of peripheral nerves and autonomic nervous system", + }, + { + key: "C47.9", + en: "", + de: "Malignant neoplasm: Peripheral nerves and autonomic nervous system, unspecified", + }, + { + key: "C48", + en: "", + de: "Malignant neoplasm of retroperitoneum and peritoneum", + }, + { + key: "C48.0", + en: "", + de: "Malignant neoplasm: Retroperitoneum", + }, + { + key: "C48.1", + en: "", + de: "Malignant neoplasm: Specified parts of peritoneum", + }, + { + key: "C48.2", + en: "", + de: "Malignant neoplasm: Peritoneum, unspecified", + }, + { + key: "C48.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of retroperitoneum and peritoneum", + }, + { + key: "C49", + en: "", + de: "Malignant neoplasm of other connective and soft tissue", + }, + { + key: "C49.0", + en: "", + de: "Malignant neoplasm: Connective and soft tissue of head, face and neck", + }, + { + key: "C49.1", + en: "", + de: "Malignant neoplasm: Connective and soft tissue of upper limb, including shoulder", + }, + { + key: "C49.2", + en: "", + de: "Malignant neoplasm: Connective and soft tissue of lower limb, including hip", + }, + { + key: "C49.3", + en: "", + de: "Malignant neoplasm: Connective and soft tissue of thorax", + }, + { + key: "C49.4", + en: "", + de: "Malignant neoplasm: Connective and soft tissue of abdomen", + }, + { + key: "C49.5", + en: "", + de: "Malignant neoplasm: Connective and soft tissue of pelvis", + }, + { + key: "C49.6", + en: "", + de: "Malignant neoplasm: Connective and soft tissue of trunk, unspecified", + }, + { + key: "C49.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of connective and soft tissue", + }, + { + key: "C49.9", + en: "", + de: "Malignant neoplasm: Connective and soft tissue, unspecified", + }, + { + key: "C50", + en: "", + de: "Malignant neoplasm of breast", + }, + { + key: "C50.0", + en: "", + de: "Malignant neoplasm: Nipple and areola", + }, + { + key: "C50.1", + en: "", + de: "Malignant neoplasm: Central portion of breast", + }, + { + key: "C50.2", + en: "", + de: "Malignant neoplasm: Upper-inner quadrant of breast", + }, + { + key: "C50.3", + en: "", + de: "Malignant neoplasm: Lower-inner quadrant of breast", + }, + { + key: "C50.4", + en: "", + de: "Malignant neoplasm: Upper-outer quadrant of breast", + }, + { + key: "C50.5", + en: "", + de: "Malignant neoplasm: Lower-outer quadrant of breast", + }, + { + key: "C50.6", + en: "", + de: "Malignant neoplasm: Axillary tail of breast", + }, + { + key: "C50.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of breast", + }, + { + key: "C50.9", + en: "", + de: "Malignant neoplasm: Breast, unspecified", + }, + { + key: "C51", + en: "", + de: "Malignant neoplasm of vulva", + }, + { + key: "C51.0", + en: "", + de: "Malignant neoplasm: Labium majus", + }, + { + key: "C51.1", + en: "", + de: "Malignant neoplasm: Labium minus", + }, + { + key: "C51.2", + en: "", + de: "Malignant neoplasm: Clitoris", + }, + { + key: "C51.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of vulva", + }, + { + key: "C51.9", + en: "", + de: "Malignant neoplasm: Vulva, unspecified", + }, + { + key: "C52", + en: "", + de: "Malignant neoplasm of vagina", + }, + { + key: "C53", + en: "", + de: "Malignant neoplasm of cervix uteri", + }, + { + key: "C53.0", + en: "", + de: "Malignant neoplasm: Endocervix", + }, + { + key: "C53.1", + en: "", + de: "Malignant neoplasm: Exocervix", + }, + { + key: "C53.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of cervix uteri", + }, + { + key: "C53.9", + en: "", + de: "Malignant neoplasm: Cervix uteri, unspecified", + }, + { + key: "C54", + en: "", + de: "Malignant neoplasm of corpus uteri", + }, + { + key: "C54.0", + en: "", + de: "Malignant neoplasm: Isthmus uteri", + }, + { + key: "C54.1", + en: "", + de: "Malignant neoplasm: Endometrium", + }, + { + key: "C54.2", + en: "", + de: "Malignant neoplasm: Myometrium", + }, + { + key: "C54.3", + en: "", + de: "Malignant neoplasm: Fundus uteri", + }, + { + key: "C54.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of corpus uteri", + }, + { + key: "C54.9", + en: "", + de: "Malignant neoplasm: Corpus uteri, unspecified", + }, + { + key: "C55", + en: "", + de: "Malignant neoplasm of uterus, part unspecified", + }, + { + key: "C56", + en: "", + de: "Malignant neoplasm of ovary", + }, + { + key: "C57", + en: "", + de: "Malignant neoplasm of other and unspecified female genital organs", + }, + { + key: "C57.0", + en: "", + de: "Malignant neoplasm: Fallopian tube", + }, + { + key: "C57.1", + en: "", + de: "Malignant neoplasm: Broad ligament", + }, + { + key: "C57.2", + en: "", + de: "Malignant neoplasm: Round ligament", + }, + { + key: "C57.3", + en: "", + de: "Malignant neoplasm: Parametrium", + }, + { + key: "C57.4", + en: "", + de: "Malignant neoplasm: Uterine adnexa, unspecified", + }, + { + key: "C57.7", + en: "", + de: "Malignant neoplasm: Other specified female genital organs", + }, + { + key: "C57.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of female genital organs", + }, + { + key: "C57.9", + en: "", + de: "Malignant neoplasm: Female genital organ, unspecified", + }, + { + key: "C58", + en: "", + de: "Malignant neoplasm of placenta", + }, + { + key: "C60", + en: "", + de: "Malignant neoplasm of penis", + }, + { + key: "C60.0", + en: "", + de: "Malignant neoplasm: Prepuce", + }, + { + key: "C60.1", + en: "", + de: "Malignant neoplasm: Glans penis", + }, + { + key: "C60.2", + en: "", + de: "Malignant neoplasm: Body of penis", + }, + { + key: "C60.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of penis", + }, + { + key: "C60.9", + en: "", + de: "Malignant neoplasm: Penis, unspecified", + }, + { + key: "C61", + en: "", + de: "Malignant neoplasm of prostate", + }, + { + key: "C62", + en: "", + de: "Malignant neoplasm of testis", + }, + { + key: "C62.0", + en: "", + de: "Malignant neoplasm: Undescended testis", + }, + { + key: "C62.1", + en: "", + de: "Malignant neoplasm: Descended testis", + }, + { + key: "C62.9", + en: "", + de: "Malignant neoplasm: Testis, unspecified", + }, + { + key: "C63", + en: "", + de: "Malignant neoplasm of other and unspecified male genital organs", + }, + { + key: "C63.0", + en: "", + de: "Malignant neoplasm: Epididymis", + }, + { + key: "C63.1", + en: "", + de: "Malignant neoplasm: Spermatic cord", + }, + { + key: "C63.2", + en: "", + de: "Malignant neoplasm: Scrotum", + }, + { + key: "C63.7", + en: "", + de: "Malignant neoplasm: Other specified male genital organs", + }, + { + key: "C63.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of male genital organs", + }, + { + key: "C63.9", + en: "", + de: "Malignant neoplasm: Male genital organ, unspecified", + }, + { + key: "C64", + en: "", + de: "Malignant neoplasm of kidney, except renal pelvis", + }, + { + key: "C65", + en: "", + de: "Malignant neoplasm of renal pelvis", + }, + { + key: "C66", + en: "", + de: "Malignant neoplasm of ureter", + }, + { + key: "C67", + en: "", + de: "Malignant neoplasm of bladder", + }, + { + key: "C67.0", + en: "", + de: "Malignant neoplasm: Trigone of bladder", + }, + { + key: "C67.1", + en: "", + de: "Malignant neoplasm: Dome of bladder", + }, + { + key: "C67.2", + en: "", + de: "Malignant neoplasm: Lateral wall of bladder", + }, + { + key: "C67.3", + en: "", + de: "Malignant neoplasm: Anterior wall of bladder", + }, + { + key: "C67.4", + en: "", + de: "Malignant neoplasm: Posterior wall of bladder", + }, + { + key: "C67.5", + en: "", + de: "Malignant neoplasm: Bladder neck", + }, + { + key: "C67.6", + en: "", + de: "Malignant neoplasm: Ureteric orifice", + }, + { + key: "C67.7", + en: "", + de: "Malignant neoplasm: Urachus", + }, + { + key: "C67.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of bladder", + }, + { + key: "C67.9", + en: "", + de: "Malignant neoplasm: Bladder, unspecified", + }, + { + key: "C68", + en: "", + de: "Malignant neoplasm of other and unspecified urinary organs", + }, + { + key: "C68.0", + en: "", + de: "Malignant neoplasm: Urethra", + }, + { + key: "C68.1", + en: "", + de: "Malignant neoplasm: Paraurethral gland", + }, + { + key: "C68.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of urinary organs", + }, + { + key: "C68.9", + en: "", + de: "Malignant neoplasm: Urinary organ, unspecified", + }, + { + key: "C69", + en: "", + de: "Malignant neoplasm of eye and adnexa", + }, + { + key: "C69.0", + en: "", + de: "Malignant neoplasm: Conjunctiva", + }, + { + key: "C69.1", + en: "", + de: "Malignant neoplasm: Cornea", + }, + { + key: "C69.2", + en: "", + de: "Malignant neoplasm: Retina", + }, + { + key: "C69.3", + en: "", + de: "Malignant neoplasm: Choroid", + }, + { + key: "C69.4", + en: "", + de: "Malignant neoplasm: Ciliary body", + }, + { + key: "C69.5", + en: "", + de: "Malignant neoplasm: Lacrimal gland and duct", + }, + { + key: "C69.6", + en: "", + de: "Malignant neoplasm: Orbit", + }, + { + key: "C69.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of eye and adnexa", + }, + { + key: "C69.9", + en: "", + de: "Malignant neoplasm: Eye, unspecified", + }, + { + key: "C70", + en: "", + de: "Malignant neoplasm of meninges", + }, + { + key: "C70.0", + en: "", + de: "Malignant neoplasm: Cerebral meninges", + }, + { + key: "C70.1", + en: "", + de: "Malignant neoplasm: Spinal meninges", + }, + { + key: "C70.9", + en: "", + de: "Malignant neoplasm: Meninges, unspecified", + }, + { + key: "C71", + en: "", + de: "Malignant neoplasm of brain", + }, + { + key: "C71.0", + en: "", + de: "Malignant neoplasm: Cerebrum, except lobes and ventricles", + }, + { + key: "C71.1", + en: "", + de: "Malignant neoplasm: Frontal lobe", + }, + { + key: "C71.2", + en: "", + de: "Malignant neoplasm: Temporal lobe", + }, + { + key: "C71.3", + en: "", + de: "Malignant neoplasm: Parietal lobe", + }, + { + key: "C71.4", + en: "", + de: "Malignant neoplasm: Occipital lobe", + }, + { + key: "C71.5", + en: "", + de: "Malignant neoplasm: Cerebral ventricle", + }, + { + key: "C71.6", + en: "", + de: "Malignant neoplasm: Cerebellum", + }, + { + key: "C71.7", + en: "", + de: "Malignant neoplasm: Brain stem", + }, + { + key: "C71.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of brain", + }, + { + key: "C71.9", + en: "", + de: "Malignant neoplasm: Brain, unspecified", + }, + { + key: "C72", + en: "", + de: "Malignant neoplasm of spinal cord, cranial nerves and other parts of central nervous system", + }, + { + key: "C72.0", + en: "", + de: "Malignant neoplasm: Spinal cord", + }, + { + key: "C72.1", + en: "", + de: "Malignant neoplasm: Cauda equina", + }, + { + key: "C72.2", + en: "", + de: "Malignant neoplasm: Olfactory nerve", + }, + { + key: "C72.3", + en: "", + de: "Malignant neoplasm: Optic nerve", + }, + { + key: "C72.4", + en: "", + de: "Malignant neoplasm: Acoustic nerve", + }, + { + key: "C72.5", + en: "", + de: "Malignant neoplasm: Other and unspecified cranial nerves", + }, + { + key: "C72.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of brain and other parts of central nervous system", + }, + { + key: "C72.9", + en: "", + de: "Malignant neoplasm: Central nervous system, unspecified", + }, + { + key: "C73", + en: "", + de: "Malignant neoplasm of thyroid gland", + }, + { + key: "C74", + en: "", + de: "Malignant neoplasm of adrenal gland", + }, + { + key: "C74.0", + en: "", + de: "Malignant neoplasm: Cortex of adrenal gland", + }, + { + key: "C74.1", + en: "", + de: "Malignant neoplasm: Medulla of adrenal gland", + }, + { + key: "C74.9", + en: "", + de: "Malignant neoplasm: Adrenal gland, unspecified", + }, + { + key: "C75", + en: "", + de: "Malignant neoplasm of other endocrine glands and related structures", + }, + { + key: "C75.0", + en: "", + de: "Malignant neoplasm: Parathyroid gland", + }, + { + key: "C75.1", + en: "", + de: "Malignant neoplasm: Pituitary gland", + }, + { + key: "C75.2", + en: "", + de: "Malignant neoplasm: Craniopharyngeal duct", + }, + { + key: "C75.3", + en: "", + de: "Malignant neoplasm: Pineal gland", + }, + { + key: "C75.4", + en: "", + de: "Malignant neoplasm: Carotid body", + }, + { + key: "C75.5", + en: "", + de: "Malignant neoplasm: Aortic body and other paraganglia", + }, + { + key: "C75.8", + en: "", + de: "Malignant neoplasm: Pluriglandular involvement, unspecified", + }, + { + key: "C75.9", + en: "", + de: "Malignant neoplasm: Endocrine gland, unspecified", + }, + { + key: "C76", + en: "", + de: "Malignant neoplasm of other and ill-defined sites", + }, + { + key: "C76.0", + en: "", + de: "Malignant neoplasm of other and ill-defined sites: Head, face and neck", + }, + { + key: "C76.1", + en: "", + de: "Malignant neoplasm of other and ill-defined sites: Thorax", + }, + { + key: "C76.2", + en: "", + de: "Malignant neoplasm of other and ill-defined sites: Abdomen", + }, + { + key: "C76.3", + en: "", + de: "Malignant neoplasm of other and ill-defined sites: Pelvis", + }, + { + key: "C76.4", + en: "", + de: "Malignant neoplasm of other and ill-defined sites: Upper limb", + }, + { + key: "C76.5", + en: "", + de: "Malignant neoplasm of other and ill-defined sites: Lower limb", + }, + { + key: "C76.7", + en: "", + de: "Malignant neoplasm of other and ill-defined sites: Other ill-defined sites", + }, + { + key: "C76.8", + en: "", + de: "Malignant neoplasm of other and ill-defined sites: Overlapping lesion of other and ill-defined sites", + }, + { + key: "C77", + en: "", + de: "Secondary and unspecified malignant neoplasm of lymph nodes", + }, + { + key: "C77.0", + en: "", + de: "Secondary and unspecified malignant neoplasm: Lymph nodes of head, face and neck", + }, + { + key: "C77.1", + en: "", + de: "Secondary and unspecified malignant neoplasm: Intrathoracic lymph nodes", + }, + { + key: "C77.2", + en: "", + de: "Secondary and unspecified malignant neoplasm: Intra-abdominal lymph nodes", + }, + { + key: "C77.3", + en: "", + de: "Secondary and unspecified malignant neoplasm: Axillary and upper limb lymph nodes", + }, + { + key: "C77.4", + en: "", + de: "Secondary and unspecified malignant neoplasm: Inguinal and lower limb lymph nodes", + }, + { + key: "C77.5", + en: "", + de: "Secondary and unspecified malignant neoplasm: Intrapelvic lymph nodes", + }, + { + key: "C77.8", + en: "", + de: "Secondary and unspecified malignant neoplasm: Lymph nodes of multiple regions", + }, + { + key: "C77.9", + en: "", + de: "Secondary and unspecified malignant neoplasm: Lymph node, unspecified", + }, + { + key: "C78", + en: "", + de: "Secondary malignant neoplasm of respiratory and digestive organs", + }, + { + key: "C78.0", + en: "", + de: "Secondary malignant neoplasm of lung", + }, + { + key: "C78.1", + en: "", + de: "Secondary malignant neoplasm of mediastinum", + }, + { + key: "C78.2", + en: "", + de: "Secondary malignant neoplasm of pleura", + }, + { + key: "C78.3", + en: "", + de: "Secondary malignant neoplasm of other and unspecified respiratory organs", + }, + { + key: "C78.4", + en: "", + de: "Secondary malignant neoplasm of small intestine", + }, + { + key: "C78.5", + en: "", + de: "Secondary malignant neoplasm of large intestine and rectum", + }, + { + key: "C78.6", + en: "", + de: "Secondary malignant neoplasm of retroperitoneum and peritoneum", + }, + { + key: "C78.7", + en: "", + de: "Secondary malignant neoplasm of liver and intrahepatic bile duct", + }, + { + key: "C78.8", + en: "", + de: "Secondary malignant neoplasm of other and unspecified digestive organs", + }, + { + key: "C79", + en: "", + de: "Secondary malignant neoplasm of other and unspecified sites", + }, + { + key: "C79.0", + en: "", + de: "Secondary malignant neoplasm of kidney and renal pelvis", + }, + { + key: "C79.1", + en: "", + de: "Secondary malignant neoplasm of bladder and other and unspecified urinary organs", + }, + { + key: "C79.2", + en: "", + de: "Secondary malignant neoplasm of skin", + }, + { + key: "C79.3", + en: "", + de: "Secondary malignant neoplasm of brain and cerebral meninges", + }, + { + key: "C79.4", + en: "", + de: "Secondary malignant neoplasm of other and unspecified parts of nervous system", + }, + { + key: "C79.5", + en: "", + de: "Secondary malignant neoplasm of bone and bone marrow", + }, + { + key: "C79.6", + en: "", + de: "Secondary malignant neoplasm of ovary", + }, + { + key: "C79.7", + en: "", + de: "Secondary malignant neoplasm of adrenal gland", + }, + { + key: "C79.8", + en: "", + de: "Secondary malignant neoplasm of other specified sites", + }, + { + key: "C79.9", + en: "", + de: "Secondary malignant neoplasm, unspecified site", + }, + { + key: "C80", + en: "", + de: "Malignant neoplasm, without specification of site", + }, + { + key: "C80.0", + en: "", + de: "Malignant neoplasm, primary site unknown, so stated", + }, + { + key: "C80.9", + en: "", + de: "Malignant neoplasm, primary site unspecified", + }, + { + key: "C81", + en: "", + de: "Hodgkin lymphoma", + }, + { + key: "C81.0", + en: "", + de: "Nodular lymphocyte predominant Hodgkin lymphoma", + }, + { + key: "C81.1", + en: "", + de: "Nodular sclerosis classical Hodgkin lymphoma", + }, + { + key: "C81.2", + en: "", + de: "Mixed cellularity classical Hodgkin lymphoma", + }, + { + key: "C81.3", + en: "", + de: "Lymphocyte depleted classical Hodgkin lymphoma", + }, + { + key: "C81.4", + en: "", + de: "Lymphocyte-rich (classical) Hodgkin lymphoma", + }, + { + key: "C81.7", + en: "", + de: "Other classical Hodgkin lymphoma", + }, + { + key: "C81.9", + en: "", + de: "Hodgkin lymphoma, unspecified", + }, + { + key: "C82", + en: "", + de: "Follicular lymphoma", + }, + { + key: "C82.0", + en: "", + de: "Follicular lymphoma grade I", + }, + { + key: "C82.1", + en: "", + de: "Follicular lymphoma grade II", + }, + { + key: "C82.2", + en: "", + de: "Follicular lymphoma grade III, unspecified", + }, + { + key: "C82.3", + en: "", + de: "Follicular lymphoma grade IIIa", + }, + { + key: "C82.4", + en: "", + de: "Follicular lymphoma grade IIIb", + }, + { + key: "C82.5", + en: "", + de: "Diffuse follicle centre lymphoma", + }, + { + key: "C82.6", + en: "", + de: "Cutaneous follicle centre lymphoma", + }, + { + key: "C82.7", + en: "", + de: "Other types of follicular lymphoma", + }, + { + key: "C82.9", + en: "", + de: "Follicular lymphoma, unspecified", + }, + { + key: "C83", + en: "", + de: "Non-follicular lymphoma", + }, + { + key: "C83.0", + en: "", + de: "Small cell B-cell lymphoma", + }, + { + key: "C83.1", + en: "", + de: "Mantle cell lymphoma", + }, + { + key: "C83.3", + en: "", + de: "Diffuse large B-cell lymphoma", + }, + { + key: "C83.5", + en: "", + de: "Lymphoblastic (diffuse) lymphoma", + }, + { + key: "C83.7", + en: "", + de: "Burkitt lymphoma", + }, + { + key: "C83.8", + en: "", + de: "Other non-follicular lymphoma", + }, + { + key: "C83.9", + en: "", + de: "Non-follicular (diffuse) lymphoma, unspecified", + }, + { + key: "C84", + en: "", + de: "Mature T/NK-cell lymphomas", + }, + { + key: "C84.0", + en: "", + de: "Mycosis fungoides", + }, + { + key: "C84.1", + en: "", + de: "Sézary disease", + }, + { + key: "C84.4", + en: "", + de: "Peripheral T-cell lymphoma, not elsewhere classified", + }, + { + key: "C84.5", + en: "", + de: "Other mature T/NK-cell lymphomas", + }, + { + key: "C84.6", + en: "", + de: "Anaplastic large cell lymphoma, ALK-positive", + }, + { + key: "C84.7", + en: "", + de: "Anaplastic large cell lymphoma, ALK-negative", + }, + { + key: "C84.8", + en: "", + de: "Cutaneous T-cell lymphoma, unspecified", + }, + { + key: "C84.9", + en: "", + de: "Mature T/NK-cell lymphoma, unspecified", + }, + { + key: "C85", + en: "", + de: "Other and unspecified types of non-Hodgkin lymphoma", + }, + { + key: "C85.1", + en: "", + de: "B-cell lymphoma, unspecified", + }, + { + key: "C85.2", + en: "", + de: "Mediastinal (thymic) large B-cell lymphoma", + }, + { + key: "C85.7", + en: "", + de: "Other specified types of non-Hodgkin lymphoma", + }, + { + key: "C85.9", + en: "", + de: "Non-Hodgkin lymphoma, unspecified", + }, + { + key: "C86", + en: "", + de: "Other specified types of T/NK-cell lymphoma", + }, + { + key: "C86.0", + en: "", + de: "Extranodal NK/T-cell lymphoma, nasal type", + }, + { + key: "C86.1", + en: "", + de: "Hepatosplenic T-cell lymphoma", + }, + { + key: "C86.2", + en: "", + de: "Enteropathy-type (intestinal) T-cell lymphoma", + }, + { + key: "C86.3", + en: "", + de: "Subcutaneous panniculitis-like T-cell lymphoma", + }, + { + key: "C86.4", + en: "", + de: "Blastic NK-cell lymphoma", + }, + { + key: "C86.5", + en: "", + de: "Angioimmunoblastic T-cell lymphoma", + }, + { + key: "C86.6", + en: "", + de: "Primary cutaneous CD30-positive T-cell proliferations", + }, + { + key: "C88", + en: "", + de: "Malignant immunoproliferative diseases", + }, + { + key: "C88.0", + en: "", + de: "Waldenström macroglobulinaemia", + }, + { + key: "C88.2", + en: "", + de: "Other heavy chain disease", + }, + { + key: "C88.3", + en: "", + de: "Immunoproliferative small intestinal disease", + }, + { + key: "C88.4", + en: "", + de: "Extranodal marginal zone B-cell lymphoma of mucosa-associated lymphoid tissue [MALT-lyphoma]", + }, + { + key: "C88.7", + en: "", + de: "Other malignant immunoproliferative diseases", + }, + { + key: "C88.9", + en: "", + de: "Malignant immunoproliferative disease, unspecified", + }, + { + key: "C90", + en: "", + de: "Multiple myeloma and malignant plasma cell neoplasms", + }, + { + key: "C90.0", + en: "", + de: "Multiple myeloma", + }, + { + key: "C90.1", + en: "", + de: "Plasma cell leukaemia", + }, + { + key: "C90.2", + en: "", + de: "Extramedullary plasmacytoma", + }, + { + key: "C90.3", + en: "", + de: "Solitary plasmacytoma", + }, + { + key: "C91", + en: "", + de: "Lymphoid leukaemia", + }, + { + key: "C91.0", + en: "", + de: "Acute lymphoblastic leukaemia [ALL]", + }, + { + key: "C91.1", + en: "", + de: "Chronic lymphocytic leukaemia of B-cell type", + }, + { + key: "C91.3", + en: "", + de: "Prolymphocytic leukaemia of B-cell type", + }, + { + key: "C91.4", + en: "", + de: "Hairy-cell leukaemia", + }, + { + key: "C91.5", + en: "", + de: "Adult T-cell lymphoma/leukaemia [HTLV-1-associated]", + }, + { + key: "C91.6", + en: "", + de: "Prolymphocytic leukaemia of T-cell type", + }, + { + key: "C91.7", + en: "", + de: "Other lymphoid leukaemia", + }, + { + key: "C91.8", + en: "", + de: "Mature B-cell leukaemia Burkitt-type", + }, + { + key: "C91.9", + en: "", + de: "Lymphoid leukaemia, unspecified", + }, + { + key: "C92", + en: "", + de: "Myeloid leukaemia", + }, + { + key: "C92.0", + en: "", + de: "Acute myeloblastic leukaemia [AML]", + }, + { + key: "C92.1", + en: "", + de: "Chronic myeloid leukaemia [CML], BCR/ABL-positive", + }, + { + key: "C92.2", + en: "", + de: "Atypical chronic myeloid leukaemia, BCR/ABL- negative", + }, + { + key: "C92.3", + en: "", + de: "Myeloid sarcoma", + }, + { + key: "C92.4", + en: "", + de: "Acute promyelocytic leukaemia [PML]", + }, + { + key: "C92.5", + en: "", + de: "Acute myelomonocytic leukaemia", + }, + { + key: "C92.6", + en: "", + de: "Acute myeloid leukaemia with 11q23-abnormality", + }, + { + key: "C92.7", + en: "", + de: "Other myeloid leukaemia", + }, + { + key: "C92.8", + en: "", + de: "Acute myeloid leukaemia with multilineage dysplasia", + }, + { + key: "C92.9", + en: "", + de: "Myeloid leukaemia, unspecified", + }, + { + key: "C93", + en: "", + de: "Monocytic leukaemia", + }, + { + key: "C93.0", + en: "", + de: "Acute monoblastic/monocytic leukaemia", + }, + { + key: "C93.1", + en: "", + de: "Chronic myelomonocytic leukaemia", + }, + { + key: "C93.3", + en: "", + de: "Juvenile myelomonocytic leukaemia", + }, + { + key: "C93.7", + en: "", + de: "Other monocytic leukaemia", + }, + { + key: "C93.9", + en: "", + de: "Monocytic leukaemia, unspecified", + }, + { + key: "C94", + en: "", + de: "Other leukaemias of specified cell type", + }, + { + key: "C94.0", + en: "", + de: "Acute erythroid leukaemia", + }, + { + key: "C94.2", + en: "", + de: "Acute megakaryoblastic leukaemia", + }, + { + key: "C94.3", + en: "", + de: "Mast cell leukaemia", + }, + { + key: "C94.4", + en: "", + de: "Acute panmyelosis with myelofibrosis", + }, + { + key: "C94.6", + en: "", + de: "Myelodysplastic and myeloproliferative disease, not elsewhere classified", + }, + { + key: "C94.7", + en: "", + de: "Other specified leukaemias", + }, + { + key: "C95", + en: "", + de: "Leukaemia of unspecified cell type", + }, + { + key: "C95.0", + en: "", + de: "Acute leukaemia of unspecified cell type", + }, + { + key: "C95.1", + en: "", + de: "Chronic leukaemia of unspecified cell type", + }, + { + key: "C95.7", + en: "", + de: "Other leukaemia of unspecified cell type", + }, + { + key: "C95.9", + en: "", + de: "Leukaemia, unspecified", + }, + { + key: "C96", + en: "", + de: "Other and unspecified malignant neoplasms of lymphoid, haematopoietic and related tissue", + }, + { + key: "C96.0", + en: "", + de: "Multifocal and multisystemic (disseminated) Langerhans-cell histiocytosis [Letterer-Siwe disease]", + }, + { + key: "C96.2", + en: "", + de: "Malignant mast cell tumour", + }, + { + key: "C96.4", + en: "", + de: "Sarcoma of dendritic cells (accessory cells)", + }, + { + key: "C96.5", + en: "", + de: "Multifocal and unisystemic Langerhans-cell histiocytosis", + }, + { + key: "C96.6", + en: "", + de: "Unifocal Langerhans-cell histiocytosis", + }, + { + key: "C96.7", + en: "", + de: "Other specified malignant neoplasms of lymphoid, haematopoietic and related tissue", + }, + { + key: "C96.8", + en: "", + de: "Histiocytic sarcoma", + }, + { + key: "C96.9", + en: "", + de: "Malignant neoplasm of lymphoid, haematopoietic and related tissue, unspecified", + }, + { + key: "D00", + en: "", + de: "Carcinoma in situ of oral cavity, oesophagus and stomach", + }, + { + key: "D00.0", + en: "", + de: "Carcinoma in situ: Lip, oral cavity and pharynx", + }, + { + key: "D00.1", + en: "", + de: "Carcinoma in situ: Oesophagus", + }, + { + key: "D00.2", + en: "", + de: "Carcinoma in situ: Stomach", + }, + { + key: "D01", + en: "", + de: "Carcinoma in situ of other and unspecified digestive organs", + }, + { + key: "D01.0", + en: "", + de: "Carcinoma in situ: Colon", + }, + { + key: "D01.1", + en: "", + de: "Carcinoma in situ: Rectosigmoid junction", + }, + { + key: "D01.2", + en: "", + de: "Carcinoma in situ: Rectum", + }, + { + key: "D01.3", + en: "", + de: "Carcinoma in situ: Anus and anal canal", + }, + { + key: "D01.4", + en: "", + de: "Carcinoma in situ: Other and unspecified parts of intestine", + }, + { + key: "D01.5", + en: "", + de: "Carcinoma in situ: Liver, gallbladder and bile ducts", + }, + { + key: "D01.7", + en: "", + de: "Carcinoma in situ: Other specified digestive organs", + }, + { + key: "D01.9", + en: "", + de: "Carcinoma in situ: Digestive organ, unspecified", + }, + { + key: "D02", + en: "", + de: "Carcinoma in situ of middle ear and respiratory system", + }, + { + key: "D02.0", + en: "", + de: "Carcinoma in situ: Larynx", + }, + { + key: "D02.1", + en: "", + de: "Carcinoma in situ: Trachea", + }, + { + key: "D02.2", + en: "", + de: "Carcinoma in situ: Bronchus and lung", + }, + { + key: "D02.3", + en: "", + de: "Carcinoma in situ: Other parts of respiratory system", + }, + { + key: "D02.4", + en: "", + de: "Carcinoma in situ: Respiratory system, unspecified", + }, + { + key: "D03", + en: "", + de: "Melanoma in situ", + }, + { + key: "D03.0", + en: "", + de: "Melanoma in situ of lip", + }, + { + key: "D03.1", + en: "", + de: "Melanoma in situ of eyelid, including canthus", + }, + { + key: "D03.2", + en: "", + de: "Melanoma in situ of ear and external auricular canal", + }, + { + key: "D03.3", + en: "", + de: "Melanoma in situ of other and unspecified parts of face", + }, + { + key: "D03.4", + en: "", + de: "Melanoma in situ of scalp and neck", + }, + { + key: "D03.5", + en: "", + de: "Melanoma in situ of trunk", + }, + { + key: "D03.6", + en: "", + de: "Melanoma in situ of upper limb, including shoulder", + }, + { + key: "D03.7", + en: "", + de: "Melanoma in situ of lower limb, including hip", + }, + { + key: "D03.8", + en: "", + de: "Melanoma in situ of other sites", + }, + { + key: "D03.9", + en: "", + de: "Melanoma in situ, unspecified", + }, + { + key: "D04", + en: "", + de: "Carcinoma in situ of skin", + }, + { + key: "D04.0", + en: "", + de: "Carcinoma in situ: Skin of lip", + }, + { + key: "D04.1", + en: "", + de: "Carcinoma in situ: Skin of eyelid, including canthus", + }, + { + key: "D04.2", + en: "", + de: "Carcinoma in situ: Skin of ear and external auricular canal", + }, + { + key: "D04.3", + en: "", + de: "Carcinoma in situ: Skin of other and unspecified parts of face", + }, + { + key: "D04.4", + en: "", + de: "Carcinoma in situ: Skin of scalp and neck", + }, + { + key: "D04.5", + en: "", + de: "Carcinoma in situ: Skin of trunk", + }, + { + key: "D04.6", + en: "", + de: "Carcinoma in situ: Skin of upper limb, including shoulder", + }, + { + key: "D04.7", + en: "", + de: "Carcinoma in situ: Skin of lower limb, including hip", + }, + { + key: "D04.8", + en: "", + de: "Carcinoma in situ: Skin of other sites", + }, + { + key: "D04.9", + en: "", + de: "Carcinoma in situ: Skin, unspecified", + }, + { + key: "D05", + en: "", + de: "Carcinoma in situ of breast", + }, + { + key: "D05.0", + en: "", + de: "Lobular carcinoma in situ", + }, + { + key: "D05.1", + en: "", + de: "Intraductal carcinoma in situ", + }, + { + key: "D05.7", + en: "", + de: "Other carcinoma in situ of breast", + }, + { + key: "D05.9", + en: "", + de: "Carcinoma in situ of breast, unspecified", + }, + { + key: "D06", + en: "", + de: "Carcinoma in situ of cervix uteri", + }, + { + key: "D06.0", + en: "", + de: "Carcinoma in situ: Endocervix", + }, + { + key: "D06.1", + en: "", + de: "Carcinoma in situ: Exocervix", + }, + { + key: "D06.7", + en: "", + de: "Carcinoma in situ: Other parts of cervix", + }, + { + key: "D06.9", + en: "", + de: "Carcinoma in situ: Cervix, unspecified", + }, + { + key: "D07", + en: "", + de: "Carcinoma in situ of other and unspecified genital organs", + }, + { + key: "D07.0", + en: "", + de: "Carcinoma in situ: Endometrium", + }, + { + key: "D07.1", + en: "", + de: "Carcinoma in situ: Vulva", + }, + { + key: "D07.2", + en: "", + de: "Carcinoma in situ: Vagina", + }, + { + key: "D07.3", + en: "", + de: "Carcinoma in situ: Other and unspecified female genital organs", + }, + { + key: "D07.4", + en: "", + de: "Carcinoma in situ: Penis", + }, + { + key: "D07.5", + en: "", + de: "Carcinoma in situ: Prostate", + }, + { + key: "D07.6", + en: "", + de: "Carcinoma in situ: Other and unspecified male genital organs", + }, + { + key: "D09", + en: "", + de: "Carcinoma in situ of other and unspecified sites", + }, + { + key: "D09.0", + en: "", + de: "Carcinoma in situ: Bladder", + }, + { + key: "D09.1", + en: "", + de: "Carcinoma in situ: Other and unspecified urinary organs", + }, + { + key: "D09.2", + en: "", + de: "Carcinoma in situ: Eye", + }, + { + key: "D09.3", + en: "", + de: "Carcinoma in situ: Thyroid and other endocrine glands", + }, + { + key: "D09.7", + en: "", + de: "Carcinoma in situ of other specified sites", + }, + { + key: "D09.9", + en: "", + de: "Carcinoma in situ, unspecified", + }, + { + key: "D10", + en: "", + de: "Benign neoplasm of mouth and pharynx", + }, + { + key: "D10.0", + en: "", + de: "Benign neoplasm: Lip", + }, + { + key: "D10.1", + en: "", + de: "Benign neoplasm: Tongue", + }, + { + key: "D10.2", + en: "", + de: "Benign neoplasm: Floor of mouth", + }, + { + key: "D10.3", + en: "", + de: "Benign neoplasm: Other and unspecified parts of mouth", + }, + { + key: "D10.4", + en: "", + de: "Benign neoplasm: Tonsil", + }, + { + key: "D10.5", + en: "", + de: "Benign neoplasm: Other parts of oropharynx", + }, + { + key: "D10.6", + en: "", + de: "Benign neoplasm: Nasopharynx", + }, + { + key: "D10.7", + en: "", + de: "Benign neoplasm: Hypopharynx", + }, + { + key: "D10.9", + en: "", + de: "Benign neoplasm: Pharynx, unspecified", + }, + { + key: "D11", + en: "", + de: "Benign neoplasm of major salivary glands", + }, + { + key: "D11.0", + en: "", + de: "Benign neoplasm: Parotid gland", + }, + { + key: "D11.7", + en: "", + de: "Benign neoplasm: Other major salivary glands", + }, + { + key: "D11.9", + en: "", + de: "Benign neoplasm: Major salivary gland, unspecified", + }, + { + key: "D12", + en: "", + de: "Benign neoplasm of colon, rectum, anus and anal canal", + }, + { + key: "D12.0", + en: "", + de: "Benign neoplasm: Caecum", + }, + { + key: "D12.1", + en: "", + de: "Benign neoplasm: Appendix", + }, + { + key: "D12.2", + en: "", + de: "Benign neoplasm: Ascending colon", + }, + { + key: "D12.3", + en: "", + de: "Benign neoplasm: Transverse colon", + }, + { + key: "D12.4", + en: "", + de: "Benign neoplasm: Descending colon", + }, + { + key: "D12.5", + en: "", + de: "Benign neoplasm: Sigmoid colon", + }, + { + key: "D12.6", + en: "", + de: "Benign neoplasm: Colon, unspecified", + }, + { + key: "D12.7", + en: "", + de: "Benign neoplasm: Rectosigmoid junction", + }, + { + key: "D12.8", + en: "", + de: "Benign neoplasm: Rectum", + }, + { + key: "D12.9", + en: "", + de: "Benign neoplasm: Anus and anal canal", + }, + { + key: "D13", + en: "", + de: "Benign neoplasm of other and ill-defined parts of digestive system", + }, + { + key: "D13.0", + en: "", + de: "Benign neoplasm: Oesophagus", + }, + { + key: "D13.1", + en: "", + de: "Benign neoplasm: Stomach", + }, + { + key: "D13.2", + en: "", + de: "Benign neoplasm: Duodenum", + }, + { + key: "D13.3", + en: "", + de: "Benign neoplasm: Other and unspecified parts of small intestine", + }, + { + key: "D13.4", + en: "", + de: "Benign neoplasm: Liver", + }, + { + key: "D13.5", + en: "", + de: "Benign neoplasm: Extrahepatic bile ducts", + }, + { + key: "D13.6", + en: "", + de: "Benign neoplasm: Pancreas", + }, + { + key: "D13.7", + en: "", + de: "Benign neoplasm: Endocrine pancreas", + }, + { + key: "D13.9", + en: "", + de: "Benign neoplasm: Ill-defined sites within the digestive system", + }, + { + key: "D14", + en: "", + de: "Benign neoplasm of middle ear and respiratory system", + }, + { + key: "D14.0", + en: "", + de: "Benign neoplasm: Middle ear, nasal cavity and accessory sinuses", + }, + { + key: "D14.1", + en: "", + de: "Benign neoplasm: Larynx", + }, + { + key: "D14.2", + en: "", + de: "Benign neoplasm: Trachea", + }, + { + key: "D14.3", + en: "", + de: "Benign neoplasm: Bronchus and lung", + }, + { + key: "D14.4", + en: "", + de: "Benign neoplasm: Respiratory system, unspecified", + }, + { + key: "D15", + en: "", + de: "Benign neoplasm of other and unspecified intrathoracic organs", + }, + { + key: "D15.0", + en: "", + de: "Benign neoplasm: Thymus", + }, + { + key: "D15.1", + en: "", + de: "Benign neoplasm: Heart", + }, + { + key: "D15.2", + en: "", + de: "Benign neoplasm: Mediastinum", + }, + { + key: "D15.7", + en: "", + de: "Benign neoplasm: Other specified intrathoracic organs", + }, + { + key: "D15.9", + en: "", + de: "Benign neoplasm: Intrathoracic organ, unspecified", + }, + { + key: "D16", + en: "", + de: "Benign neoplasm of bone and articular cartilage", + }, + { + key: "D16.0", + en: "", + de: "Benign neoplasm: Scapula and long bones of upper limb", + }, + { + key: "D16.1", + en: "", + de: "Benign neoplasm: Short bones of upper limb", + }, + { + key: "D16.2", + en: "", + de: "Benign neoplasm: Long bones of lower limb", + }, + { + key: "D16.3", + en: "", + de: "Benign neoplasm: Short bones of lower limb", + }, + { + key: "D16.4", + en: "", + de: "Benign neoplasm: Bones of skull and face", + }, + { + key: "D16.5", + en: "", + de: "Benign neoplasm: Lower jaw bone", + }, + { + key: "D16.6", + en: "", + de: "Benign neoplasm: Vertebral column", + }, + { + key: "D16.7", + en: "", + de: "Benign neoplasm: Ribs, sternum and clavicle", + }, + { + key: "D16.8", + en: "", + de: "Benign neoplasm: Pelvic bones, sacrum and coccyx", + }, + { + key: "D16.9", + en: "", + de: "Benign neoplasm: Bone and articular cartilage, unspecified", + }, + { + key: "D17", + en: "", + de: "Benign lipomatous neoplasm", + }, + { + key: "D17.0", + en: "", + de: "Benign lipomatous neoplasm of skin and subcutaneous tissue of head, face and neck", + }, + { + key: "D17.1", + en: "", + de: "Benign lipomatous neoplasm of skin and subcutaneous tissue of trunk", + }, + { + key: "D17.2", + en: "", + de: "Benign lipomatous neoplasm of skin and subcutaneous tissue of limbs", + }, + { + key: "D17.3", + en: "", + de: "Benign lipomatous neoplasm of skin and subcutaneous tissue of other and unspecified sites", + }, + { + key: "D17.4", + en: "", + de: "Benign lipomatous neoplasm of intrathoracic organs", + }, + { + key: "D17.5", + en: "", + de: "Benign lipomatous neoplasm of intra-abdominal organs", + }, + { + key: "D17.6", + en: "", + de: "Benign lipomatous neoplasm of spermatic cord", + }, + { + key: "D17.7", + en: "", + de: "Benign lipomatous neoplasm of other sites", + }, + { + key: "D17.9", + en: "", + de: "Benign lipomatous neoplasm, unspecified", + }, + { + key: "D18", + en: "", + de: "Haemangioma and lymphangioma, any site", + }, + { + key: "D18.0", + en: "", + de: "Haemangioma, any site", + }, + { + key: "D18.1", + en: "", + de: "Lymphangioma, any site", + }, + { + key: "D19", + en: "", + de: "Benign neoplasm of mesothelial tissue", + }, + { + key: "D19.0", + en: "", + de: "Benign neoplasm: Mesothelial tissue of pleura", + }, + { + key: "D19.1", + en: "", + de: "Benign neoplasm: Mesothelial tissue of peritoneum", + }, + { + key: "D19.7", + en: "", + de: "Benign neoplasm: Mesothelial tissue of other sites", + }, + { + key: "D19.9", + en: "", + de: "Benign neoplasm: Mesothelial tissue, unspecified", + }, + { + key: "D20", + en: "", + de: "Benign neoplasm of soft tissue of retroperitoneum and peritoneum", + }, + { + key: "D20.0", + en: "", + de: "Benign neoplasm: Retroperitoneum", + }, + { + key: "D20.1", + en: "", + de: "Benign neoplasm: Peritoneum", + }, + { + key: "D21", + en: "", + de: "Other benign neoplasms of connective and other soft tissue", + }, + { + key: "D21.0", + en: "", + de: "Benign neoplasm: Connective and other soft tissue of head, face and neck", + }, + { + key: "D21.1", + en: "", + de: "Benign neoplasm: Connective and other soft tissue of upper limb, including shoulder", + }, + { + key: "D21.2", + en: "", + de: "Benign neoplasm: Connective and other soft tissue of lower limb, including hip", + }, + { + key: "D21.3", + en: "", + de: "Benign neoplasm: Connective and other soft tissue of thorax", + }, + { + key: "D21.4", + en: "", + de: "Benign neoplasm: Connective and other soft tissue of abdomen", + }, + { + key: "D21.5", + en: "", + de: "Benign neoplasm: Connective and other soft tissue of pelvis", + }, + { + key: "D21.6", + en: "", + de: "Benign neoplasm: Connective and other soft tissue of trunk, unspecified", + }, + { + key: "D21.9", + en: "", + de: "Benign neoplasm: Connective and other soft tissue, unspecified", + }, + { + key: "D22", + en: "", + de: "Melanocytic naevi", + }, + { + key: "D22.0", + en: "", + de: "Melanocytic naevi of lip", + }, + { + key: "D22.1", + en: "", + de: "Melanocytic naevi of eyelid, including canthus", + }, + { + key: "D22.2", + en: "", + de: "Melanocytic naevi of ear and external auricular canal", + }, + { + key: "D22.3", + en: "", + de: "Melanocytic naevi of other and unspecified parts of face", + }, + { + key: "D22.4", + en: "", + de: "Melanocytic naevi of scalp and neck", + }, + { + key: "D22.5", + en: "", + de: "Melanocytic naevi of trunk", + }, + { + key: "D22.6", + en: "", + de: "Melanocytic naevi of upper limb, including shoulder", + }, + { + key: "D22.7", + en: "", + de: "Melanocytic naevi of lower limb, including hip", + }, + { + key: "D22.9", + en: "", + de: "Melanocytic naevi, unspecified", + }, + { + key: "D23", + en: "", + de: "Other benign neoplasms of skin", + }, + { + key: "D23.0", + en: "", + de: "Benign neoplasm: Skin of lip", + }, + { + key: "D23.1", + en: "", + de: "Benign neoplasm: Skin of eyelid, including canthus", + }, + { + key: "D23.2", + en: "", + de: "Benign neoplasm: Skin of ear and external auricular canal", + }, + { + key: "D23.3", + en: "", + de: "Benign neoplasm: Skin of other and unspecified parts of face", + }, + { + key: "D23.4", + en: "", + de: "Benign neoplasm: Skin of scalp and neck", + }, + { + key: "D23.5", + en: "", + de: "Benign neoplasm: Skin of trunk", + }, + { + key: "D23.6", + en: "", + de: "Benign neoplasm: Skin of upper limb, including shoulder", + }, + { + key: "D23.7", + en: "", + de: "Benign neoplasm: Skin of lower limb, including hip", + }, + { + key: "D23.9", + en: "", + de: "Benign neoplasm: Skin, unspecified", + }, + { + key: "D24", + en: "", + de: "Benign neoplasm of breast", + }, + { + key: "D25", + en: "", + de: "Leiomyoma of uterus", + }, + { + key: "D25.0", + en: "", + de: "Submucous leiomyoma of uterus", + }, + { + key: "D25.1", + en: "", + de: "Intramural leiomyoma of uterus", + }, + { + key: "D25.2", + en: "", + de: "Subserosal leiomyoma of uterus", + }, + { + key: "D25.9", + en: "", + de: "Leiomyoma of uterus, unspecified", + }, + { + key: "D26", + en: "", + de: "Other benign neoplasms of uterus", + }, + { + key: "D26.0", + en: "", + de: "Other benign neoplasm: Cervix uteri", + }, + { + key: "D26.1", + en: "", + de: "Other benign neoplasm: Corpus uteri", + }, + { + key: "D26.7", + en: "", + de: "Other benign neoplasm: Other parts of uterus", + }, + { + key: "D26.9", + en: "", + de: "Other benign neoplasm: Uterus, unspecified", + }, + { + key: "D27", + en: "", + de: "Benign neoplasm of ovary", + }, + { + key: "D28", + en: "", + de: "Benign neoplasm of other and unspecified female genital organs", + }, + { + key: "D28.0", + en: "", + de: "Benign neoplasm: Vulva", + }, + { + key: "D28.1", + en: "", + de: "Benign neoplasm: Vagina", + }, + { + key: "D28.2", + en: "", + de: "Benign neoplasm: Uterine tubes and ligaments", + }, + { + key: "D28.7", + en: "", + de: "Benign neoplasm: Other specified female genital organs", + }, + { + key: "D28.9", + en: "", + de: "Benign neoplasm: Female genital organ, unspecified", + }, + { + key: "D29", + en: "", + de: "Benign neoplasm of male genital organs", + }, + { + key: "D29.0", + en: "", + de: "Benign neoplasm: Penis", + }, + { + key: "D29.1", + en: "", + de: "Benign neoplasm: Prostate", + }, + { + key: "D29.2", + en: "", + de: "Benign neoplasm: Testis", + }, + { + key: "D29.3", + en: "", + de: "Benign neoplasm: Epididymis", + }, + { + key: "D29.4", + en: "", + de: "Benign neoplasm: Scrotum", + }, + { + key: "D29.7", + en: "", + de: "Benign neoplasm: Other male genital organs", + }, + { + key: "D29.9", + en: "", + de: "Benign neoplasm: Male genital organ, unspecified", + }, + { + key: "D30", + en: "", + de: "Benign neoplasm of urinary organs", + }, + { + key: "D30.0", + en: "", + de: "Benign neoplasm: Kidney", + }, + { + key: "D30.1", + en: "", + de: "Benign neoplasm: Renal pelvis", + }, + { + key: "D30.2", + en: "", + de: "Benign neoplasm: Ureter", + }, + { + key: "D30.3", + en: "", + de: "Benign neoplasm: Bladder", + }, + { + key: "D30.4", + en: "", + de: "Benign neoplasm: Urethra", + }, + { + key: "D30.7", + en: "", + de: "Benign neoplasm: Other urinary organs", + }, + { + key: "D30.9", + en: "", + de: "Benign neoplasm: Urinary organ, unspecified", + }, + { + key: "D31", + en: "", + de: "Benign neoplasm of eye and adnexa", + }, + { + key: "D31.0", + en: "", + de: "Benign neoplasm: Conjunctiva", + }, + { + key: "D31.1", + en: "", + de: "Benign neoplasm: Cornea", + }, + { + key: "D31.2", + en: "", + de: "Benign neoplasm: Retina", + }, + { + key: "D31.3", + en: "", + de: "Benign neoplasm: Choroid", + }, + { + key: "D31.4", + en: "", + de: "Benign neoplasm: Ciliary body", + }, + { + key: "D31.5", + en: "", + de: "Benign neoplasm: Lacrimal gland and duct", + }, + { + key: "D31.6", + en: "", + de: "Benign neoplasm: Orbit, unspecified", + }, + { + key: "D31.9", + en: "", + de: "Benign neoplasm: Eye, unspecified", + }, + { + key: "D32", + en: "", + de: "Benign neoplasm of meninges", + }, + { + key: "D32.0", + en: "", + de: "Benign neoplasm: Cerebral meninges", + }, + { + key: "D32.1", + en: "", + de: "Benign neoplasm: Spinal meninges", + }, + { + key: "D32.9", + en: "", + de: "Benign neoplasm: Meninges, unspecified", + }, + { + key: "D33", + en: "", + de: "Benign neoplasm of brain and other parts of central nervous system", + }, + { + key: "D33.0", + en: "", + de: "Benign neoplasm: Brain, supratentorial", + }, + { + key: "D33.1", + en: "", + de: "Benign neoplasm: Brain, infratentorial", + }, + { + key: "D33.2", + en: "", + de: "Benign neoplasm: Brain, unspecified", + }, + { + key: "D33.3", + en: "", + de: "Benign neoplasm: Cranial nerves", + }, + { + key: "D33.4", + en: "", + de: "Benign neoplasm: Spinal cord", + }, + { + key: "D33.7", + en: "", + de: "Benign neoplasm: Other specified parts of central nervous system", + }, + { + key: "D33.9", + en: "", + de: "Benign neoplasm: Central nervous system, unspecified", + }, + { + key: "D34", + en: "", + de: "Benign neoplasm of thyroid gland", + }, + { + key: "D35", + en: "", + de: "Benign neoplasm of other and unspecified endocrine glands", + }, + { + key: "D35.0", + en: "", + de: "Benign neoplasm: Adrenal gland", + }, + { + key: "D35.1", + en: "", + de: "Benign neoplasm: Parathyroid gland", + }, + { + key: "D35.2", + en: "", + de: "Benign neoplasm: Pituitary gland", + }, + { + key: "D35.3", + en: "", + de: "Benign neoplasm: Craniopharyngeal duct", + }, + { + key: "D35.4", + en: "", + de: "Benign neoplasm: Pineal gland", + }, + { + key: "D35.5", + en: "", + de: "Benign neoplasm: Carotid body", + }, + { + key: "D35.6", + en: "", + de: "Benign neoplasm: Aortic body and other paraganglia", + }, + { + key: "D35.7", + en: "", + de: "Benign neoplasm: Other specified endocrine glands", + }, + { + key: "D35.8", + en: "", + de: "Benign neoplasm: Pluriglandular involvement", + }, + { + key: "D35.9", + en: "", + de: "Benign neoplasm: Endocrine gland, unspecified", + }, + { + key: "D36", + en: "", + de: "Benign neoplasm of other and unspecified sites", + }, + { + key: "D36.0", + en: "", + de: "Benign neoplasm: Lymph nodes", + }, + { + key: "D36.1", + en: "", + de: "Benign neoplasm: Peripheral nerves and autonomic nervous system", + }, + { + key: "D36.7", + en: "", + de: "Benign neoplasm: Other specified sites", + }, + { + key: "D36.9", + en: "", + de: "Benign neoplasm: Benign neoplasm of unspecified site", + }, + { + key: "D37", + en: "", + de: "Neoplasm of uncertain or unknown behaviour of oral cavity and digestive organs", + }, + { + key: "D37.0", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Lip, oral cavity and pharynx", + }, + { + key: "D37.1", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Stomach", + }, + { + key: "D37.2", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Small intestine", + }, + { + key: "D37.3", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Appendix", + }, + { + key: "D37.4", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Colon", + }, + { + key: "D37.5", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Rectum", + }, + { + key: "D37.6", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Liver, gallbladder and bile ducts", + }, + { + key: "D37.7", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Other digestive organs", + }, + { + key: "D37.9", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Digestive organ, unspecified", + }, + { + key: "D38", + en: "", + de: "Neoplasm of uncertain or unknown behaviour of middle ear and respiratory and intrathoracic organs", + }, + { + key: "D38.0", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Larynx", + }, + { + key: "D38.1", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Trachea, bronchus and lung", + }, + { + key: "D38.2", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Pleura", + }, + { + key: "D38.3", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Mediastinum", + }, + { + key: "D38.4", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Thymus", + }, + { + key: "D38.5", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Other respiratory organs", + }, + { + key: "D38.6", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Respiratory organ, unspecified", + }, + { + key: "D39", + en: "", + de: "Neoplasm of uncertain or unknown behaviour of female genital organs", + }, + { + key: "D39.0", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Uterus", + }, + { + key: "D39.1", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Ovary", + }, + { + key: "D39.2", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Placenta", + }, + { + key: "D39.7", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Other female genital organs", + }, + { + key: "D39.9", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Female genital organ, unspecified", + }, + { + key: "D40", + en: "", + de: "Neoplasm of uncertain or unknown behaviour of male genital organs", + }, + { + key: "D40.0", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Prostate", + }, + { + key: "D40.1", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Testis", + }, + { + key: "D40.7", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Other male genital organs", + }, + { + key: "D40.9", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Male genital organ, unspecified", + }, + { + key: "D41", + en: "", + de: "Neoplasm of uncertain or unknown behaviour of urinary organs", + }, + { + key: "D41.0", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Kidney", + }, + { + key: "D41.1", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Renal pelvis", + }, + { + key: "D41.2", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Ureter", + }, + { + key: "D41.3", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Urethra", + }, + { + key: "D41.4", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Bladder", + }, + { + key: "D41.7", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Other urinary organs", + }, + { + key: "D41.9", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Urinary organ, unspecified", + }, + { + key: "D42", + en: "", + de: "Neoplasm of uncertain or unknown behaviour of meninges", + }, + { + key: "D42.0", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Cerebral meninges", + }, + { + key: "D42.1", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Spinal meninges", + }, + { + key: "D42.9", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Meninges, unspecified", + }, + { + key: "D43", + en: "", + de: "Neoplasm of uncertain or unknown behaviour of brain and central nervous system", + }, + { + key: "D43.0", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Brain, supratentorial", + }, + { + key: "D43.1", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Brain, infratentorial", + }, + { + key: "D43.2", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Brain, unspecified", + }, + { + key: "D43.3", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Cranial nerves", + }, + { + key: "D43.4", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Spinal cord", + }, + { + key: "D43.7", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Other parts of central nervous system", + }, + { + key: "D43.9", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Central nervous system, unspecified", + }, + { + key: "D44", + en: "", + de: "Neoplasm of uncertain or unknown behaviour of endocrine glands", + }, + { + key: "D44.0", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Thyroid gland", + }, + { + key: "D44.1", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Adrenal gland", + }, + { + key: "D44.2", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Parathyroid gland", + }, + { + key: "D44.3", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Pituitary gland", + }, + { + key: "D44.4", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Craniopharyngeal duct", + }, + { + key: "D44.5", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Pineal gland", + }, + { + key: "D44.6", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Carotid body", + }, + { + key: "D44.7", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Aortic body and other paraganglia", + }, + { + key: "D44.8", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Pluriglandular involvement", + }, + { + key: "D44.9", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Endocrine gland, unspecified", + }, + { + key: "D45", + en: "", + de: "Polycythaemia vera", + }, + { + key: "D46", + en: "", + de: "Myelodysplastic syndromes", + }, + { + key: "D46.0", + en: "", + de: "Refractory anaemia without ring sideroblasts, so stated", + }, + { + key: "D46.1", + en: "", + de: "Refractory anaemia with ring sideroblasts", + }, + { + key: "D46.2", + en: "", + de: "Refractory anaemia with excess of blasts [RAEB]", + }, + { + key: "D46.4", + en: "", + de: "Refractory anaemia, unspecified", + }, + { + key: "D46.5", + en: "", + de: "Refractory anaemia with multi-lineage dysplasia", + }, + { + key: "D46.6", + en: "", + de: "Myelodysplastic syndrome with isolated del(5q) chromosomal abnormality", + }, + { + key: "D46.7", + en: "", + de: "Other myelodysplastic syndromes", + }, + { + key: "D46.9", + en: "", + de: "Myelodysplastic syndrome, unspecified", + }, + { + key: "D47", + en: "", + de: "Other neoplasms of uncertain or unknown behaviour of lymphoid, haematopoietic and related tissue", + }, + { + key: "D47.0", + en: "", + de: "Histiocytic and mast cell tumours of uncertain and unknown behaviour", + }, + { + key: "D47.1", + en: "", + de: "Chronic myeloproliferative disease", + }, + { + key: "D47.2", + en: "", + de: "Monoclonal gammopathy of undetermined significance (MGUS)", + }, + { + key: "D47.3", + en: "", + de: "Essential (haemorrhagic) thrombocythaemia", + }, + { + key: "D47.4", + en: "", + de: "Osteomyelofibrosis", + }, + { + key: "D47.5", + en: "", + de: "Chronic eosinophilic leukaemia [hypereosinophilic syndrome]", + }, + { + key: "D47.7", + en: "", + de: "Other specified neoplasms of uncertain or unknown behaviour of lymphoid, haematopoietic and related tissue", + }, + { + key: "D47.9", + en: "", + de: "Neoplasm of uncertain or unknown behaviour of lymphoid, haematopoietic and related tissue, unspecified", + }, + { + key: "D48", + en: "", + de: "Neoplasm of uncertain or unknown behaviour of other and unspecified sites", + }, + { + key: "D48.0", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Bone and articular cartilage", + }, + { + key: "D48.1", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Connective and other soft tissue", + }, + { + key: "D48.2", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Peripheral nerves and autonomic nervous system", + }, + { + key: "D48.3", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Retroperitoneum", + }, + { + key: "D48.4", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Peritoneum", + }, + { + key: "D48.5", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Skin", + }, + { + key: "D48.6", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Breast", + }, + { + key: "D48.7", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Other specified sites", + }, + { + key: "D48.9", + en: "", + de: "Neoplasm of uncertain or unknown behaviour: Neoplasm of uncertain or unknown behaviour, unspecified", + }, + { + key: "D50", + en: "", + de: "Iron deficiency anaemia", + }, + { + key: "D50.0", + en: "", + de: "Iron deficiency anaemia secondary to blood loss (chronic)", + }, + { + key: "D50.1", + en: "", + de: "Sideropenic dysphagia", + }, + { + key: "D50.8", + en: "", + de: "Other iron deficiency anaemias", + }, + { + key: "D50.9", + en: "", + de: "Iron deficiency anaemia, unspecified", + }, + { + key: "D51", + en: "", + de: "Vitamin B 12 deficiency anaemia", + }, + { + key: "D51.0", + en: "", + de: "Vitamin B 12 deficiency anaemia due to intrinsic factor deficiency", + }, + { + key: "D51.1", + en: "", + de: "Vitamin B 12 deficiency anaemia due to selective vitamin B 12 malabsorption with proteinuria", + }, + { + key: "D51.2", + en: "", + de: "Transcobalamin II deficiency", + }, + { + key: "D51.3", + en: "", + de: "Other dietary vitamin B 12 deficiency anaemia", + }, + { + key: "D51.8", + en: "", + de: "Other vitamin B 12 deficiency anaemias", + }, + { + key: "D51.9", + en: "", + de: "Vitamin B 12 deficiency anaemia, unspecified", + }, + { + key: "D52", + en: "", + de: "Folate deficiency anaemia", + }, + { + key: "D52.0", + en: "", + de: "Dietary folate deficiency anaemia", + }, + { + key: "D52.1", + en: "", + de: "Drug-induced folate deficiency anaemia", + }, + { + key: "D52.8", + en: "", + de: "Other folate deficiency anaemias", + }, + { + key: "D52.9", + en: "", + de: "Folate deficiency anaemia, unspecified", + }, + { + key: "D53", + en: "", + de: "Other nutritional anaemias", + }, + { + key: "D53.0", + en: "", + de: "Protein deficiency anaemia", + }, + { + key: "D53.1", + en: "", + de: "Other megaloblastic anaemias, not elsewhere classified", + }, + { + key: "D53.2", + en: "", + de: "Scorbutic anaemia", + }, + { + key: "D53.8", + en: "", + de: "Other specified nutritional anaemias", + }, + { + key: "D53.9", + en: "", + de: "Nutritional anaemia, unspecified", + }, + { + key: "D55", + en: "", + de: "Anaemia due to enzyme disorders", + }, + { + key: "D55.0", + en: "", + de: "Anaemia due to glucose-6-phosphate dehydrogenase [G6PD] deficiency", + }, + { + key: "D55.1", + en: "", + de: "Anaemia due to other disorders of glutathione metabolism", + }, + { + key: "D55.2", + en: "", + de: "Anaemia due to disorders of glycolytic enzymes", + }, + { + key: "D55.3", + en: "", + de: "Anaemia due to disorders of nucleotide metabolism", + }, + { + key: "D55.8", + en: "", + de: "Other anaemias due to enzyme disorders", + }, + { + key: "D55.9", + en: "", + de: "Anaemia due to enzyme disorder, unspecified", + }, + { + key: "D56", + en: "", + de: "Thalassaemia", + }, + { + key: "D56.0", + en: "", + de: "Alpha thalassaemia", + }, + { + key: "D56.1", + en: "", + de: "Beta thalassaemia", + }, + { + key: "D56.2", + en: "", + de: "Delta-beta thalassaemia", + }, + { + key: "D56.3", + en: "", + de: "Thalassaemia trait", + }, + { + key: "D56.4", + en: "", + de: "Hereditary persistence of fetal haemoglobin [HPFH]", + }, + { + key: "D56.8", + en: "", + de: "Other thalassaemias", + }, + { + key: "D56.9", + en: "", + de: "Thalassaemia, unspecified", + }, + { + key: "D57", + en: "", + de: "Sickle-cell disorders", + }, + { + key: "D57.0", + en: "", + de: "Sickle-cell anaemia with crisis", + }, + { + key: "D57.1", + en: "", + de: "Sickle-cell anaemia without crisis", + }, + { + key: "D57.2", + en: "", + de: "Double heterozygous sickling disorders", + }, + { + key: "D57.3", + en: "", + de: "Sickle-cell trait", + }, + { + key: "D57.8", + en: "", + de: "Other sickle-cell disorders", + }, + { + key: "D58", + en: "", + de: "Other hereditary haemolytic anaemias", + }, + { + key: "D58.0", + en: "", + de: "Hereditary spherocytosis", + }, + { + key: "D58.1", + en: "", + de: "Hereditary elliptocytosis", + }, + { + key: "D58.2", + en: "", + de: "Other haemoglobinopathies", + }, + { + key: "D58.8", + en: "", + de: "Other specified hereditary haemolytic anaemias", + }, + { + key: "D58.9", + en: "", + de: "Hereditary haemolytic anaemia, unspecified", + }, + { + key: "D59", + en: "", + de: "Acquired haemolytic anaemia", + }, + { + key: "D59.0", + en: "", + de: "Drug-induced autoimmune haemolytic anaemia", + }, + { + key: "D59.1", + en: "", + de: "Other autoimmune haemolytic anaemias", + }, + { + key: "D59.2", + en: "", + de: "Drug-induced nonautoimmune haemolytic anaemia", + }, + { + key: "D59.3", + en: "", + de: "Haemolytic-uraemic syndrome", + }, + { + key: "D59.4", + en: "", + de: "Other nonautoimmune haemolytic anaemias", + }, + { + key: "D59.5", + en: "", + de: "Paroxysmal nocturnal haemoglobinuria [Marchiafava-Micheli]", + }, + { + key: "D59.6", + en: "", + de: "Haemoglobinuria due to haemolysis from other external causes", + }, + { + key: "D59.8", + en: "", + de: "Other acquired haemolytic anaemias", + }, + { + key: "D59.9", + en: "", + de: "Acquired haemolytic anaemia, unspecified", + }, + { + key: "D60", + en: "", + de: "Acquired pure red cell aplasia [erythroblastopenia]", + }, + { + key: "D60.0", + en: "", + de: "Chronic acquired pure red cell aplasia", + }, + { + key: "D60.1", + en: "", + de: "Transient acquired pure red cell aplasia", + }, + { + key: "D60.8", + en: "", + de: "Other acquired pure red cell aplasias", + }, + { + key: "D60.9", + en: "", + de: "Acquired pure red cell aplasia, unspecified", + }, + { + key: "D61", + en: "", + de: "Other aplastic anaemias", + }, + { + key: "D61.0", + en: "", + de: "Constitutional aplastic anaemia", + }, + { + key: "D61.1", + en: "", + de: "Drug-induced aplastic anaemia", + }, + { + key: "D61.2", + en: "", + de: "Aplastic anaemia due to other external agents", + }, + { + key: "D61.3", + en: "", + de: "Idiopathic aplastic anaemia", + }, + { + key: "D61.8", + en: "", + de: "Other specified aplastic anaemias", + }, + { + key: "D61.9", + en: "", + de: "Aplastic anaemia, unspecified", + }, + { + key: "D62", + en: "", + de: "Acute posthaemorrhagic anaemia", + }, + { + key: "D64", + en: "", + de: "Other anaemias", + }, + { + key: "D64.0", + en: "", + de: "Hereditary sideroblastic anaemia", + }, + { + key: "D64.1", + en: "", + de: "Secondary sideroblastic anaemia due to disease", + }, + { + key: "D64.2", + en: "", + de: "Secondary sideroblastic anaemia due to drugs and toxins", + }, + { + key: "D64.3", + en: "", + de: "Other sideroblastic anaemias", + }, + { + key: "D64.4", + en: "", + de: "Congenital dyserythropoietic anaemia", + }, + { + key: "D64.8", + en: "", + de: "Other specified anaemias", + }, + { + key: "D64.9", + en: "", + de: "Anaemia, unspecified", + }, + { + key: "D65", + en: "", + de: "Disseminated intravascular coagulation [defibrination syndrome]", + }, + { + key: "D66", + en: "", + de: "Hereditary factor VIII deficiency", + }, + { + key: "D67", + en: "", + de: "Hereditary factor IX deficiency", + }, + { + key: "D68", + en: "", + de: "Other coagulation defects", + }, + { + key: "D68.0", + en: "", + de: "Von Willebrand disease", + }, + { + key: "D68.1", + en: "", + de: "Hereditary factor XI deficiency", + }, + { + key: "D68.2", + en: "", + de: "Hereditary deficiency of other clotting factors", + }, + { + key: "D68.3", + en: "", + de: "Haemorrhagic disorder due to circulating anticoagulants", + }, + { + key: "D68.4", + en: "", + de: "Acquired coagulation factor deficiency", + }, + { + key: "D68.5", + en: "", + de: "Primary thrombophilia", + }, + { + key: "D68.6", + en: "", + de: "Other thrombophilia", + }, + { + key: "D68.8", + en: "", + de: "Other specified coagulation defects", + }, + { + key: "D68.9", + en: "", + de: "Coagulation defect, unspecified", + }, + { + key: "D69", + en: "", + de: "Purpura and other haemorrhagic conditions", + }, + { + key: "D69.0", + en: "", + de: "Allergic purpura", + }, + { + key: "D69.1", + en: "", + de: "Qualitative platelet defects", + }, + { + key: "D69.2", + en: "", + de: "Other nonthrombocytopenic purpura", + }, + { + key: "D69.3", + en: "", + de: "Idiopathic thrombocytopenic purpura", + }, + { + key: "D69.4", + en: "", + de: "Other primary thrombocytopenia", + }, + { + key: "D69.5", + en: "", + de: "Secondary thrombocytopenia", + }, + { + key: "D69.6", + en: "", + de: "Thrombocytopenia, unspecified", + }, + { + key: "D69.8", + en: "", + de: "Other specified haemorrhagic conditions", + }, + { + key: "D69.9", + en: "", + de: "Haemorrhagic condition, unspecified", + }, + { + key: "D70", + en: "", + de: "Agranulocytosis", + }, + { + key: "D71", + en: "", + de: "Functional disorders of polymorphonuclear neutrophils", + }, + { + key: "D72", + en: "", + de: "Other disorders of white blood cells", + }, + { + key: "D72.0", + en: "", + de: "Genetic anomalies of leukocytes", + }, + { + key: "D72.1", + en: "", + de: "Eosinophilia", + }, + { + key: "D72.8", + en: "", + de: "Other specified disorders of white blood cells", + }, + { + key: "D72.9", + en: "", + de: "Disorder of white blood cells, unspecified", + }, + { + key: "D73", + en: "", + de: "Diseases of spleen", + }, + { + key: "D73.0", + en: "", + de: "Hyposplenism", + }, + { + key: "D73.1", + en: "", + de: "Hypersplenism", + }, + { + key: "D73.2", + en: "", + de: "Chronic congestive splenomegaly", + }, + { + key: "D73.3", + en: "", + de: "Abscess of spleen", + }, + { + key: "D73.4", + en: "", + de: "Cyst of spleen", + }, + { + key: "D73.5", + en: "", + de: "Infarction of spleen", + }, + { + key: "D73.8", + en: "", + de: "Other diseases of spleen", + }, + { + key: "D73.9", + en: "", + de: "Disease of spleen, unspecified", + }, + { + key: "D74", + en: "", + de: "Methaemoglobinaemia", + }, + { + key: "D74.0", + en: "", + de: "Congenital methaemoglobinaemia", + }, + { + key: "D74.8", + en: "", + de: "Other methaemoglobinaemias", + }, + { + key: "D74.9", + en: "", + de: "Methaemoglobinaemia, unspecified", + }, + { + key: "D75", + en: "", + de: "Other diseases of blood and blood-forming organs", + }, + { + key: "D75.0", + en: "", + de: "Familial erythrocytosis", + }, + { + key: "D75.1", + en: "", + de: "Secondary polycythaemia", + }, + { + key: "D75.8", + en: "", + de: "Other specified diseases of blood and blood-forming organs", + }, + { + key: "D75.9", + en: "", + de: "Disease of blood and blood-forming organs, unspecified", + }, + { + key: "D76", + en: "", + de: "Other specified diseases with participation of lymphoreticular and reticulohistiocytic tissue", + }, + { + key: "D76.1", + en: "", + de: "Haemophagocytic lymphohistiocytosis", + }, + { + key: "D76.2", + en: "", + de: "Haemophagocytic syndrome, infection-associated", + }, + { + key: "D76.3", + en: "", + de: "Other histiocytosis syndromes", + }, + { + key: "D80", + en: "", + de: "Immunodeficiency with predominantly antibody defects", + }, + { + key: "D80.0", + en: "", + de: "Hereditary hypogammaglobulinaemia", + }, + { + key: "D80.1", + en: "", + de: "Nonfamilial hypogammaglobulinaemia", + }, + { + key: "D80.2", + en: "", + de: "Selective deficiency of immunoglobulin A [IgA]", + }, + { + key: "D80.3", + en: "", + de: "Selective deficiency of immunoglobulin G [IgG] subclasses", + }, + { + key: "D80.4", + en: "", + de: "Selective deficiency of immunoglobulin M [IgM]", + }, + { + key: "D80.5", + en: "", + de: "Immunodeficiency with increased immunoglobulin M [IgM]", + }, + { + key: "D80.6", + en: "", + de: "Antibody deficiency with near-normal immunoglobulins or with hyperimmunoglobulinaemia", + }, + { + key: "D80.7", + en: "", + de: "Transient hypogammaglobulinaemia of infancy", + }, + { + key: "D80.8", + en: "", + de: "Other immunodeficiencies with predominantly antibody defects", + }, + { + key: "D80.9", + en: "", + de: "Immunodeficiency with predominantly antibody defects, unspecified", + }, + { + key: "D81", + en: "", + de: "Combined immunodeficiencies", + }, + { + key: "D81.0", + en: "", + de: "Severe combined immunodeficiency [SCID] with reticular dysgenesis", + }, + { + key: "D81.1", + en: "", + de: "Severe combined immunodeficiency [SCID] with low T- and B-cell numbers", + }, + { + key: "D81.2", + en: "", + de: "Severe combined immunodeficiency [SCID] with low or normal B-cell numbers", + }, + { + key: "D81.3", + en: "", + de: "Adenosine deaminase [ADA] deficiency", + }, + { + key: "D81.4", + en: "", + de: "Nezelof syndrome", + }, + { + key: "D81.5", + en: "", + de: "Purine nucleoside phosphorylase [PNP] deficiency", + }, + { + key: "D81.6", + en: "", + de: "Major histocompatibility complex class I deficiency", + }, + { + key: "D81.7", + en: "", + de: "Major histocompatibility complex class II deficiency", + }, + { + key: "D81.8", + en: "", + de: "Other combined immunodeficiencies", + }, + { + key: "D81.9", + en: "", + de: "Combined immunodeficiency, unspecified", + }, + { + key: "D82", + en: "", + de: "Immunodeficiency associated with other major defects", + }, + { + key: "D82.0", + en: "", + de: "Wiskott-Aldrich syndrome", + }, + { + key: "D82.1", + en: "", + de: "Di George syndrome", + }, + { + key: "D82.2", + en: "", + de: "Immunodeficiency with short-limbed stature", + }, + { + key: "D82.3", + en: "", + de: "Immunodeficiency following hereditary defective response to Epstein-Barr virus", + }, + { + key: "D82.4", + en: "", + de: "Hyperimmunoglobulin E [IgE] syndrome", + }, + { + key: "D82.8", + en: "", + de: "Immunodeficiency associated with other specified major defects", + }, + { + key: "D82.9", + en: "", + de: "Immunodeficiency associated with major defect, unspecified", + }, + { + key: "D83", + en: "", + de: "Common variable immunodeficiency", + }, + { + key: "D83.0", + en: "", + de: "Common variable immunodeficiency with predominant abnormalities of B-cell numbers and function", + }, + { + key: "D83.1", + en: "", + de: "Common variable immunodeficiency with predominant immunoregulatory T-cell disorders", + }, + { + key: "D83.2", + en: "", + de: "Common variable immunodeficiency with autoantibodies to B- or T-cells", + }, + { + key: "D83.8", + en: "", + de: "Other common variable immunodeficiencies", + }, + { + key: "D83.9", + en: "", + de: "Common variable immunodeficiency, unspecified", + }, + { + key: "D84", + en: "", + de: "Other immunodeficiencies", + }, + { + key: "D84.0", + en: "", + de: "Lymphocyte function antigen-1 [LFA-1] defect", + }, + { + key: "D84.1", + en: "", + de: "Defects in the complement system", + }, + { + key: "D84.8", + en: "", + de: "Other specified immunodeficiencies", + }, + { + key: "D84.9", + en: "", + de: "Immunodeficiency, unspecified", + }, + { + key: "D86", + en: "", + de: "Sarcoidosis", + }, + { + key: "D86.0", + en: "", + de: "Sarcoidosis of lung", + }, + { + key: "D86.1", + en: "", + de: "Sarcoidosis of lymph nodes", + }, + { + key: "D86.2", + en: "", + de: "Sarcoidosis of lung with sarcoidosis of lymph nodes", + }, + { + key: "D86.3", + en: "", + de: "Sarcoidosis of skin", + }, + { + key: "D86.8", + en: "", + de: "Sarcoidosis of other and combined sites", + }, + { + key: "D86.9", + en: "", + de: "Sarcoidosis, unspecified", + }, + { + key: "D89", + en: "", + de: "Other disorders involving the immune mechanism, not elsewhere classified", + }, + { + key: "D89.0", + en: "", + de: "Polyclonal hypergammaglobulinaemia", + }, + { + key: "D89.1", + en: "", + de: "Cryoglobulinaemia", + }, + { + key: "D89.2", + en: "", + de: "Hypergammaglobulinaemia, unspecified", + }, + { + key: "D89.3", + en: "", + de: "Immune reconstitution syndrome", + }, + { + key: "D89.8", + en: "", + de: "Other specified disorders involving the immune mechanism, not elsewhere classified", + }, + { + key: "D89.9", + en: "", + de: "Disorder involving the immune mechanism, unspecified", + }, + { + key: "E00", + en: "", + de: "Congenital iodine-deficiency syndrome", + }, + { + key: "E00.0", + en: "", + de: "Congenital iodine-deficiency syndrome, neurological type", + }, + { + key: "E00.1", + en: "", + de: "Congenital iodine-deficiency syndrome, myxoedematous type", + }, + { + key: "E00.2", + en: "", + de: "Congenital iodine-deficiency syndrome, mixed type", + }, + { + key: "E00.9", + en: "", + de: "Congenital iodine-deficiency syndrome, unspecified", + }, + { + key: "E01", + en: "", + de: "Iodine-deficiency-related thyroid disorders and allied conditions", + }, + { + key: "E01.0", + en: "", + de: "Iodine-deficiency-related diffuse (endemic) goitre", + }, + { + key: "E01.1", + en: "", + de: "Iodine-deficiency-related multinodular (endemic) goitre", + }, + { + key: "E01.2", + en: "", + de: "Iodine-deficiency-related (endemic) goitre, unspecified", + }, + { + key: "E01.8", + en: "", + de: "Other iodine-deficiency-related thyroid disorders and allied conditions", + }, + { + key: "E02", + en: "", + de: "Subclinical iodine-deficiency hypothyroidism", + }, + { + key: "E03", + en: "", + de: "Other hypothyroidism", + }, + { + key: "E03.0", + en: "", + de: "Congenital hypothyroidism with diffuse goitre", + }, + { + key: "E03.1", + en: "", + de: "Congenital hypothyroidism without goitre", + }, + { + key: "E03.2", + en: "", + de: "Hypothyroidism due to medicaments and other exogenous substances", + }, + { + key: "E03.3", + en: "", + de: "Postinfectious hypothyroidism", + }, + { + key: "E03.4", + en: "", + de: "Atrophy of thyroid (acquired)", + }, + { + key: "E03.5", + en: "", + de: "Myxoedema coma", + }, + { + key: "E03.8", + en: "", + de: "Other specified hypothyroidism", + }, + { + key: "E03.9", + en: "", + de: "Hypothyroidism, unspecified", + }, + { + key: "E04", + en: "", + de: "Other nontoxic goitre", + }, + { + key: "E04.0", + en: "", + de: "Nontoxic diffuse goitre", + }, + { + key: "E04.1", + en: "", + de: "Nontoxic single thyroid nodule", + }, + { + key: "E04.2", + en: "", + de: "Nontoxic multinodular goitre", + }, + { + key: "E04.8", + en: "", + de: "Other specified nontoxic goitre", + }, + { + key: "E04.9", + en: "", + de: "Nontoxic goitre, unspecified", + }, + { + key: "E05", + en: "", + de: "Thyrotoxicosis [hyperthyroidism]", + }, + { + key: "E05.0", + en: "", + de: "Thyrotoxicosis with diffuse goitre", + }, + { + key: "E05.1", + en: "", + de: "Thyrotoxicosis with toxic single thyroid nodule", + }, + { + key: "E05.2", + en: "", + de: "Thyrotoxicosis with toxic multinodular goitre", + }, + { + key: "E05.3", + en: "", + de: "Thyrotoxicosis from ectopic thyroid tissue", + }, + { + key: "E05.4", + en: "", + de: "Thyrotoxicosis factitia", + }, + { + key: "E05.5", + en: "", + de: "Thyroid crisis or storm", + }, + { + key: "E05.8", + en: "", + de: "Other thyrotoxicosis", + }, + { + key: "E05.9", + en: "", + de: "Thyrotoxicosis, unspecified", + }, + { + key: "E06", + en: "", + de: "Thyroiditis", + }, + { + key: "E06.0", + en: "", + de: "Acute thyroiditis", + }, + { + key: "E06.1", + en: "", + de: "Subacute thyroiditis", + }, + { + key: "E06.2", + en: "", + de: "Chronic thyroiditis with transient thyrotoxicosis", + }, + { + key: "E06.3", + en: "", + de: "Autoimmune thyroiditis", + }, + { + key: "E06.4", + en: "", + de: "Drug-induced thyroiditis", + }, + { + key: "E06.5", + en: "", + de: "Other chronic thyroiditis", + }, + { + key: "E06.9", + en: "", + de: "Thyroiditis, unspecified", + }, + { + key: "E07", + en: "", + de: "Other disorders of thyroid", + }, + { + key: "E07.0", + en: "", + de: "Hypersecretion of calcitonin", + }, + { + key: "E07.1", + en: "", + de: "Dyshormogenetic goitre", + }, + { + key: "E07.8", + en: "", + de: "Other specified disorders of thyroid", + }, + { + key: "E07.9", + en: "", + de: "Disorder of thyroid, unspecified", + }, + { + key: "E10", + en: "", + de: "Type 1 diabetes mellitus", + }, + { + key: "E11", + en: "", + de: "Type 2 diabetes mellitus", + }, + { + key: "E12", + en: "", + de: "Malnutrition-related diabetes mellitus", + }, + { + key: "E13", + en: "", + de: "Other specified diabetes mellitus", + }, + { + key: "E14", + en: "", + de: "Unspecified diabetes mellitus", + }, + { + key: "E15", + en: "", + de: "Nondiabetic hypoglycaemic coma", + }, + { + key: "E16", + en: "", + de: "Other disorders of pancreatic internal secretion", + }, + { + key: "E16.0", + en: "", + de: "Drug-induced hypoglycaemia without coma", + }, + { + key: "E16.1", + en: "", + de: "Other hypoglycaemia", + }, + { + key: "E16.2", + en: "", + de: "Hypoglycaemia, unspecified", + }, + { + key: "E16.3", + en: "", + de: "Increased secretion of glucagon", + }, + { + key: "E16.4", + en: "", + de: "Abnormal secretion of gastrin", + }, + { + key: "E16.8", + en: "", + de: "Other specified disorders of pancreatic internal secretion", + }, + { + key: "E16.9", + en: "", + de: "Disorder of pancreatic internal secretion, unspecified", + }, + { + key: "E20", + en: "", + de: "Hypoparathyroidism", + }, + { + key: "E20.0", + en: "", + de: "Idiopathic hypoparathyroidism", + }, + { + key: "E20.1", + en: "", + de: "Pseudohypoparathyroidism", + }, + { + key: "E20.8", + en: "", + de: "Other hypoparathyroidism", + }, + { + key: "E20.9", + en: "", + de: "Hypoparathyroidism, unspecified", + }, + { + key: "E21", + en: "", + de: "Hyperparathyroidism and other disorders of parathyroid gland", + }, + { + key: "E21.0", + en: "", + de: "Primary hyperparathyroidism", + }, + { + key: "E21.1", + en: "", + de: "Secondary hyperparathyroidism, not elsewhere classified", + }, + { + key: "E21.2", + en: "", + de: "Other hyperparathyroidism", + }, + { + key: "E21.3", + en: "", + de: "Hyperparathyroidism, unspecified", + }, + { + key: "E21.4", + en: "", + de: "Other specified disorders of parathyroid gland", + }, + { + key: "E21.5", + en: "", + de: "Disorder of parathyroid gland, unspecified", + }, + { + key: "E22", + en: "", + de: "Hyperfunction of pituitary gland", + }, + { + key: "E22.0", + en: "", + de: "Acromegaly and pituitary gigantism", + }, + { + key: "E22.1", + en: "", + de: "Hyperprolactinaemia", + }, + { + key: "E22.2", + en: "", + de: "Syndrome of inappropriate secretion of antidiuretic hormone", + }, + { + key: "E22.8", + en: "", + de: "Other hyperfunction of pituitary gland", + }, + { + key: "E22.9", + en: "", + de: "Hyperfunction of pituitary gland, unspecified", + }, + { + key: "E23", + en: "", + de: "Hypofunction and other disorders of pituitary gland", + }, + { + key: "E23.0", + en: "", + de: "Hypopituitarism", + }, + { + key: "E23.1", + en: "", + de: "Drug-induced hypopituitarism", + }, + { + key: "E23.2", + en: "", + de: "Diabetes insipidus", + }, + { + key: "E23.3", + en: "", + de: "Hypothalamic dysfunction, not elsewhere classified", + }, + { + key: "E23.6", + en: "", + de: "Other disorders of pituitary gland", + }, + { + key: "E23.7", + en: "", + de: "Disorder of pituitary gland, unspecified", + }, + { + key: "E24", + en: "", + de: "Cushing syndrome", + }, + { + key: "E24.0", + en: "", + de: "Pituitary-dependent Cushing disease", + }, + { + key: "E24.1", + en: "", + de: "Nelson syndrome", + }, + { + key: "E24.2", + en: "", + de: "Drug-induced Cushing syndrome", + }, + { + key: "E24.3", + en: "", + de: "Ectopic ACTH syndrome", + }, + { + key: "E24.4", + en: "", + de: "Alcohol-induced pseudo-Cushing syndrome", + }, + { + key: "E24.8", + en: "", + de: "Other Cushing syndrome", + }, + { + key: "E24.9", + en: "", + de: "Cushing syndrome, unspecified", + }, + { + key: "E25", + en: "", + de: "Adrenogenital disorders", + }, + { + key: "E25.0", + en: "", + de: "Congenital adrenogenital disorders associated with enzyme deficiency", + }, + { + key: "E25.8", + en: "", + de: "Other adrenogenital disorders", + }, + { + key: "E25.9", + en: "", + de: "Adrenogenital disorder, unspecified", + }, + { + key: "E26", + en: "", + de: "Hyperaldosteronism", + }, + { + key: "E26.0", + en: "", + de: "Primary hyperaldosteronism", + }, + { + key: "E26.1", + en: "", + de: "Secondary hyperaldosteronism", + }, + { + key: "E26.8", + en: "", + de: "Other hyperaldosteronism", + }, + { + key: "E26.9", + en: "", + de: "Hyperaldosteronism, unspecified", + }, + { + key: "E27", + en: "", + de: "Other disorders of adrenal gland", + }, + { + key: "E27.0", + en: "", + de: "Other adrenocortical overactivity", + }, + { + key: "E27.1", + en: "", + de: "Primary adrenocortical insufficiency", + }, + { + key: "E27.2", + en: "", + de: "Addisonian crisis", + }, + { + key: "E27.3", + en: "", + de: "Drug-induced adrenocortical insufficiency", + }, + { + key: "E27.4", + en: "", + de: "Other and unspecified adrenocortical insufficiency", + }, + { + key: "E27.5", + en: "", + de: "Adrenomedullary hyperfunction", + }, + { + key: "E27.8", + en: "", + de: "Other specified disorders of adrenal gland", + }, + { + key: "E27.9", + en: "", + de: "Disorder of adrenal gland, unspecified", + }, + { + key: "E28", + en: "", + de: "Ovarian dysfunction", + }, + { + key: "E28.0", + en: "", + de: "Ovarian dysfunction: Estrogen excess", + }, + { + key: "E28.1", + en: "", + de: "Ovarian dysfunction: Androgen excess", + }, + { + key: "E28.2", + en: "", + de: "Polycystic ovarian syndrome", + }, + { + key: "E28.3", + en: "", + de: "Primary ovarian failure", + }, + { + key: "E28.8", + en: "", + de: "Other ovarian dysfunction", + }, + { + key: "E28.9", + en: "", + de: "Ovarian dysfunction, unspecified", + }, + { + key: "E29", + en: "", + de: "Testicular dysfunction", + }, + { + key: "E29.0", + en: "", + de: "Testicular hyperfunction", + }, + { + key: "E29.1", + en: "", + de: "Testicular hypofunction", + }, + { + key: "E29.8", + en: "", + de: "Other testicular dysfunction", + }, + { + key: "E29.9", + en: "", + de: "Testicular dysfunction, unspecified", + }, + { + key: "E30", + en: "", + de: "Disorders of puberty, not elsewhere classified", + }, + { + key: "E30.0", + en: "", + de: "Delayed puberty", + }, + { + key: "E30.1", + en: "", + de: "Precocious puberty", + }, + { + key: "E30.8", + en: "", + de: "Other disorders of puberty", + }, + { + key: "E30.9", + en: "", + de: "Disorder of puberty, unspecified", + }, + { + key: "E31", + en: "", + de: "Polyglandular dysfunction", + }, + { + key: "E31.0", + en: "", + de: "Autoimmune polyglandular failure", + }, + { + key: "E31.1", + en: "", + de: "Polyglandular hyperfunction", + }, + { + key: "E31.8", + en: "", + de: "Other polyglandular dysfunction", + }, + { + key: "E31.9", + en: "", + de: "Polyglandular dysfunction, unspecified", + }, + { + key: "E32", + en: "", + de: "Diseases of thymus", + }, + { + key: "E32.0", + en: "", + de: "Persistent hyperplasia of thymus", + }, + { + key: "E32.1", + en: "", + de: "Abscess of thymus", + }, + { + key: "E32.8", + en: "", + de: "Other diseases of thymus", + }, + { + key: "E32.9", + en: "", + de: "Disease of thymus, unspecified", + }, + { + key: "E34", + en: "", + de: "Other endocrine disorders", + }, + { + key: "E34.0", + en: "", + de: "Carcinoid syndrome", + }, + { + key: "E34.1", + en: "", + de: "Other hypersecretion of intestinal hormones", + }, + { + key: "E34.2", + en: "", + de: "Ectopic hormone secretion, not elsewhere classified", + }, + { + key: "E34.3", + en: "", + de: "Short stature, not elsewhere classified", + }, + { + key: "E34.4", + en: "", + de: "Constitutional tall stature", + }, + { + key: "E34.5", + en: "", + de: "Androgen resistance syndrome", + }, + { + key: "E34.8", + en: "", + de: "Other specified endocrine disorders", + }, + { + key: "E34.9", + en: "", + de: "Endocrine disorder, unspecified", + }, + { + key: "E40", + en: "", + de: "Kwashiorkor", + }, + { + key: "E41", + en: "", + de: "Nutritional marasmus", + }, + { + key: "E42", + en: "", + de: "Marasmic kwashiorkor", + }, + { + key: "E43", + en: "", + de: "Unspecified severe protein-energy malnutrition", + }, + { + key: "E44", + en: "", + de: "Protein-energy malnutrition of moderate and mild degree", + }, + { + key: "E44.0", + en: "", + de: "Moderate protein-energy malnutrition", + }, + { + key: "E44.1", + en: "", + de: "Mild protein-energy malnutrition", + }, + { + key: "E45", + en: "", + de: "Retarded development following protein-energy malnutrition", + }, + { + key: "E46", + en: "", + de: "Unspecified protein-energy malnutrition", + }, + { + key: "E50", + en: "", + de: "Vitamin A deficiency", + }, + { + key: "E50.0", + en: "", + de: "Vitamin A deficiency with conjunctival xerosis", + }, + { + key: "E50.1", + en: "", + de: "Vitamin A deficiency with Bitot spot and conjunctival xerosis", + }, + { + key: "E50.2", + en: "", + de: "Vitamin A deficiency with corneal xerosis", + }, + { + key: "E50.3", + en: "", + de: "Vitamin A deficiency with corneal ulceration and xerosis", + }, + { + key: "E50.4", + en: "", + de: "Vitamin A deficiency with keratomalacia", + }, + { + key: "E50.5", + en: "", + de: "Vitamin A deficiency with night blindness", + }, + { + key: "E50.6", + en: "", + de: "Vitamin A deficiency with xerophthalmic scars of cornea", + }, + { + key: "E50.7", + en: "", + de: "Other ocular manifestations of vitamin A deficiency", + }, + { + key: "E50.8", + en: "", + de: "Other manifestations of vitamin A deficiency", + }, + { + key: "E50.9", + en: "", + de: "Vitamin A deficiency, unspecified", + }, + { + key: "E51", + en: "", + de: "Thiamine deficiency", + }, + { + key: "E51.1", + en: "", + de: "Beriberi", + }, + { + key: "E51.2", + en: "", + de: "Wernicke encephalopathy", + }, + { + key: "E51.8", + en: "", + de: "Other manifestations of thiamine deficiency", + }, + { + key: "E51.9", + en: "", + de: "Thiamine deficiency, unspecified", + }, + { + key: "E52", + en: "", + de: "Niacin deficiency [pellagra]", + }, + { + key: "E53", + en: "", + de: "Deficiency of other B group vitamins", + }, + { + key: "E53.0", + en: "", + de: "Riboflavin deficiency", + }, + { + key: "E53.1", + en: "", + de: "Pyridoxine deficiency", + }, + { + key: "E53.8", + en: "", + de: "Deficiency of other specified B group vitamins", + }, + { + key: "E53.9", + en: "", + de: "Vitamin B deficiency, unspecified", + }, + { + key: "E54", + en: "", + de: "Ascorbic acid deficiency", + }, + { + key: "E55", + en: "", + de: "Vitamin D deficiency", + }, + { + key: "E55.0", + en: "", + de: "Rickets, active", + }, + { + key: "E55.9", + en: "", + de: "Vitamin D deficiency, unspecified", + }, + { + key: "E56", + en: "", + de: "Other vitamin deficiencies", + }, + { + key: "E56.0", + en: "", + de: "Deficiency of vitamin E", + }, + { + key: "E56.1", + en: "", + de: "Deficiency of vitamin K", + }, + { + key: "E56.8", + en: "", + de: "Deficiency of other vitamins", + }, + { + key: "E56.9", + en: "", + de: "Vitamin deficiency, unspecified", + }, + { + key: "E58", + en: "", + de: "Dietary calcium deficiency", + }, + { + key: "E59", + en: "", + de: "Dietary selenium deficiency", + }, + { + key: "E60", + en: "", + de: "Dietary zinc deficiency", + }, + { + key: "E61", + en: "", + de: "Deficiency of other nutrient elements", + }, + { + key: "E61.0", + en: "", + de: "Copper deficiency", + }, + { + key: "E61.1", + en: "", + de: "Iron deficiency", + }, + { + key: "E61.2", + en: "", + de: "Magnesium deficiency", + }, + { + key: "E61.3", + en: "", + de: "Manganese deficiency", + }, + { + key: "E61.4", + en: "", + de: "Chromium deficiency", + }, + { + key: "E61.5", + en: "", + de: "Molybdenum deficiency", + }, + { + key: "E61.6", + en: "", + de: "Vanadium deficiency", + }, + { + key: "E61.7", + en: "", + de: "Deficiency of multiple nutrient elements", + }, + { + key: "E61.8", + en: "", + de: "Deficiency of other specified nutrient elements", + }, + { + key: "E61.9", + en: "", + de: "Deficiency of nutrient element, unspecified", + }, + { + key: "E63", + en: "", + de: "Other nutritional deficiencies", + }, + { + key: "E63.0", + en: "", + de: "Essential fatty acid [EFA] deficiency", + }, + { + key: "E63.1", + en: "", + de: "Imbalance of constituents of food intake", + }, + { + key: "E63.8", + en: "", + de: "Other specified nutritional deficiencies", + }, + { + key: "E63.9", + en: "", + de: "Nutritional deficiency, unspecified", + }, + { + key: "E64", + en: "", + de: "Sequelae of malnutrition and other nutritional deficiencies", + }, + { + key: "E64.0", + en: "", + de: "Sequelae of protein-energy malnutrition", + }, + { + key: "E64.1", + en: "", + de: "Sequelae of vitamin A deficiency", + }, + { + key: "E64.2", + en: "", + de: "Sequelae of vitamin C deficiency", + }, + { + key: "E64.3", + en: "", + de: "Sequelae of rickets", + }, + { + key: "E64.8", + en: "", + de: "Sequelae of other nutritional deficiencies", + }, + { + key: "E64.9", + en: "", + de: "Sequelae of unspecified nutritional deficiency", + }, + { + key: "E65", + en: "", + de: "Localized adiposity", + }, + { + key: "E66", + en: "", + de: "Obesity", + }, + { + key: "E66.0", + en: "", + de: "Obesity due to excess calories", + }, + { + key: "E66.1", + en: "", + de: "Drug-induced obesity", + }, + { + key: "E66.2", + en: "", + de: "Extreme obesity with alveolar hypoventilation", + }, + { + key: "E66.8", + en: "", + de: "Other obesity", + }, + { + key: "E66.9", + en: "", + de: "Obesity, unspecified", + }, + { + key: "E67", + en: "", + de: "Other hyperalimentation", + }, + { + key: "E67.0", + en: "", + de: "Hypervitaminosis A", + }, + { + key: "E67.1", + en: "", + de: "Hypercarotenaemia", + }, + { + key: "E67.2", + en: "", + de: "Megavitamin-B 6 syndrome", + }, + { + key: "E67.3", + en: "", + de: "Hypervitaminosis D", + }, + { + key: "E67.8", + en: "", + de: "Other specified hyperalimentation", + }, + { + key: "E68", + en: "", + de: "Sequelae of hyperalimentation", + }, + { + key: "E70", + en: "", + de: "Disorders of aromatic amino-acid metabolism", + }, + { + key: "E70.0", + en: "", + de: "Classical phenylketonuria", + }, + { + key: "E70.1", + en: "", + de: "Other hyperphenylalaninaemias", + }, + { + key: "E70.2", + en: "", + de: "Disorders of tyrosine metabolism", + }, + { + key: "E70.3", + en: "", + de: "Albinism", + }, + { + key: "E70.8", + en: "", + de: "Other disorders of aromatic amino-acid metabolism", + }, + { + key: "E70.9", + en: "", + de: "Disorder of aromatic amino-acid metabolism, unspecified", + }, + { + key: "E71", + en: "", + de: "Disorders of branched-chain amino-acid metabolism and fatty-acid metabolism", + }, + { + key: "E71.0", + en: "", + de: "Maple-syrup-urine disease", + }, + { + key: "E71.1", + en: "", + de: "Other disorders of branched-chain amino-acid metabolism", + }, + { + key: "E71.2", + en: "", + de: "Disorder of branched-chain amino-acid metabolism, unspecified", + }, + { + key: "E71.3", + en: "", + de: "Disorders of fatty-acid metabolism", + }, + { + key: "E72", + en: "", + de: "Other disorders of amino-acid metabolism", + }, + { + key: "E72.0", + en: "", + de: "Disorders of amino-acid transport", + }, + { + key: "E72.1", + en: "", + de: "Disorders of sulfur-bearing amino-acid metabolism", + }, + { + key: "E72.2", + en: "", + de: "Disorders of urea cycle metabolism", + }, + { + key: "E72.3", + en: "", + de: "Disorders of lysine and hydroxylysine metabolism", + }, + { + key: "E72.4", + en: "", + de: "Disorders of ornithine metabolism", + }, + { + key: "E72.5", + en: "", + de: "Disorders of glycine metabolism", + }, + { + key: "E72.8", + en: "", + de: "Other specified disorders of amino-acid metabolism", + }, + { + key: "E72.9", + en: "", + de: "Disorder of amino-acid metabolism, unspecified", + }, + { + key: "E73", + en: "", + de: "Lactose intolerance", + }, + { + key: "E73.0", + en: "", + de: "Congenital lactase deficiency", + }, + { + key: "E73.1", + en: "", + de: "Secondary lactase deficiency", + }, + { + key: "E73.8", + en: "", + de: "Other lactose intolerance", + }, + { + key: "E73.9", + en: "", + de: "Lactose intolerance, unspecified", + }, + { + key: "E74", + en: "", + de: "Other disorders of carbohydrate metabolism", + }, + { + key: "E74.0", + en: "", + de: "Glycogen storage disease", + }, + { + key: "E74.1", + en: "", + de: "Disorders of fructose metabolism", + }, + { + key: "E74.2", + en: "", + de: "Disorders of galactose metabolism", + }, + { + key: "E74.3", + en: "", + de: "Other disorders of intestinal carbohydrate absorption", + }, + { + key: "E74.4", + en: "", + de: "Disorders of pyruvate metabolism and gluconeogenesis", + }, + { + key: "E74.8", + en: "", + de: "Other specified disorders of carbohydrate metabolism", + }, + { + key: "E74.9", + en: "", + de: "Disorder of carbohydrate metabolism, unspecified", + }, + { + key: "E75", + en: "", + de: "Disorders of sphingolipid metabolism and other lipid storage disorders", + }, + { + key: "E75.0", + en: "", + de: "GM 2 gangliosidosis", + }, + { + key: "E75.1", + en: "", + de: "Other gangliosidosis", + }, + { + key: "E75.2", + en: "", + de: "Other sphingolipidosis", + }, + { + key: "E75.3", + en: "", + de: "Sphingolipidosis, unspecified", + }, + { + key: "E75.4", + en: "", + de: "Neuronal ceroid lipofuscinosis", + }, + { + key: "E75.5", + en: "", + de: "Other lipid storage disorders", + }, + { + key: "E75.6", + en: "", + de: "Lipid storage disorder, unspecified", + }, + { + key: "E76", + en: "", + de: "Disorders of glycosaminoglycan metabolism", + }, + { + key: "E76.0", + en: "", + de: "Mucopolysaccharidosis, type I", + }, + { + key: "E76.1", + en: "", + de: "Mucopolysaccharidosis, type II", + }, + { + key: "E76.2", + en: "", + de: "Other mucopolysaccharidoses", + }, + { + key: "E76.3", + en: "", + de: "Mucopolysaccharidosis, unspecified", + }, + { + key: "E76.8", + en: "", + de: "Other disorders of glucosaminoglycan metabolism", + }, + { + key: "E76.9", + en: "", + de: "Disorder of glucosaminoglycan metabolism, unspecified", + }, + { + key: "E77", + en: "", + de: "Disorders of glycoprotein metabolism", + }, + { + key: "E77.0", + en: "", + de: "Defects in post-translational modification of lysosomal enzymes", + }, + { + key: "E77.1", + en: "", + de: "Defects in glycoprotein degradation", + }, + { + key: "E77.8", + en: "", + de: "Other disorders of glycoprotein metabolism", + }, + { + key: "E77.9", + en: "", + de: "Disorder of glycoprotein metabolism, unspecified", + }, + { + key: "E78", + en: "", + de: "Disorders of lipoprotein metabolism and other lipidaemias", + }, + { + key: "E78.0", + en: "", + de: "Pure hypercholesterolaemia", + }, + { + key: "E78.1", + en: "", + de: "Pure hyperglyceridaemia", + }, + { + key: "E78.2", + en: "", + de: "Mixed hyperlipidaemia", + }, + { + key: "E78.3", + en: "", + de: "Hyperchylomicronaemia", + }, + { + key: "E78.4", + en: "", + de: "Other hyperlipidaemia", + }, + { + key: "E78.5", + en: "", + de: "Hyperlipidaemia, unspecified", + }, + { + key: "E78.6", + en: "", + de: "Lipoprotein deficiency", + }, + { + key: "E78.8", + en: "", + de: "Other disorders of lipoprotein metabolism", + }, + { + key: "E78.9", + en: "", + de: "Disorder of lipoprotein metabolism, unspecified", + }, + { + key: "E79", + en: "", + de: "Disorders of purine and pyrimidine metabolism", + }, + { + key: "E79.0", + en: "", + de: "Hyperuricaemia without signs of inflammatory arthritis and tophaceous disease", + }, + { + key: "E79.1", + en: "", + de: "Lesch-Nyhan syndrome", + }, + { + key: "E79.8", + en: "", + de: "Other disorders of purine and pyrimidine metabolism", + }, + { + key: "E79.9", + en: "", + de: "Disorder of purine and pyrimidine metabolism, unspecified", + }, + { + key: "E80", + en: "", + de: "Disorders of porphyrin and bilirubin metabolism", + }, + { + key: "E80.0", + en: "", + de: "Hereditary erythropoietic porphyria", + }, + { + key: "E80.1", + en: "", + de: "Porphyria cutanea tarda", + }, + { + key: "E80.2", + en: "", + de: "Other porphyria", + }, + { + key: "E80.3", + en: "", + de: "Defects of catalase and peroxidase", + }, + { + key: "E80.4", + en: "", + de: "Gilbert syndrome", + }, + { + key: "E80.5", + en: "", + de: "Crigler-Najjar syndrome", + }, + { + key: "E80.6", + en: "", + de: "Other disorders of bilirubin metabolism", + }, + { + key: "E80.7", + en: "", + de: "Disorder of bilirubin metabolism, unspecified", + }, + { + key: "E83", + en: "", + de: "Disorders of mineral metabolism", + }, + { + key: "E83.0", + en: "", + de: "Disorders of copper metabolism", + }, + { + key: "E83.1", + en: "", + de: "Disorders of iron metabolism", + }, + { + key: "E83.2", + en: "", + de: "Disorders of zinc metabolism", + }, + { + key: "E83.3", + en: "", + de: "Disorders of phosphorus metabolism and phosphatases", + }, + { + key: "E83.4", + en: "", + de: "Disorders of magnesium metabolism", + }, + { + key: "E83.5", + en: "", + de: "Disorders of calcium metabolism", + }, + { + key: "E83.8", + en: "", + de: "Other disorders of mineral metabolism", + }, + { + key: "E83.9", + en: "", + de: "Disorder of mineral metabolism, unspecified", + }, + { + key: "E84", + en: "", + de: "Cystic fibrosis", + }, + { + key: "E84.0", + en: "", + de: "Cystic fibrosis with pulmonary manifestations", + }, + { + key: "E84.1", + en: "", + de: "Cystic fibrosis with intestinal manifestations", + }, + { + key: "E84.8", + en: "", + de: "Cystic fibrosis with other manifestations", + }, + { + key: "E84.9", + en: "", + de: "Cystic fibrosis, unspecified", + }, + { + key: "E85", + en: "", + de: "Amyloidosis", + }, + { + key: "E85.0", + en: "", + de: "Non-neuropathic heredofamilial amyloidosis", + }, + { + key: "E85.1", + en: "", + de: "Neuropathic heredofamilial amyloidosis", + }, + { + key: "E85.2", + en: "", + de: "Heredofamilial amyloidosis, unspecified", + }, + { + key: "E85.3", + en: "", + de: "Secondary systemic amyloidosis", + }, + { + key: "E85.4", + en: "", + de: "Organ-limited amyloidosis", + }, + { + key: "E85.8", + en: "", + de: "Other amyloidosis", + }, + { + key: "E85.9", + en: "", + de: "Amyloidosis, unspecified", + }, + { + key: "E86", + en: "", + de: "Volume depletion", + }, + { + key: "E87", + en: "", + de: "Other disorders of fluid, electrolyte and acid-base balance", + }, + { + key: "E87.0", + en: "", + de: "Hyperosmolality and hypernatraemia", + }, + { + key: "E87.1", + en: "", + de: "Hypo-osmolality and hyponatraemia", + }, + { + key: "E87.2", + en: "", + de: "Acidosis", + }, + { + key: "E87.3", + en: "", + de: "Alkalosis", + }, + { + key: "E87.4", + en: "", + de: "Mixed disorder of acid-base balance", + }, + { + key: "E87.5", + en: "", + de: "Hyperkalaemia", + }, + { + key: "E87.6", + en: "", + de: "Hypokalaemia", + }, + { + key: "E87.7", + en: "", + de: "Fluid overload", + }, + { + key: "E87.8", + en: "", + de: "Other disorders of electrolyte and fluid balance, not elsewhere classified", + }, + { + key: "E88", + en: "", + de: "Other metabolic disorders", + }, + { + key: "E88.0", + en: "", + de: "Disorders of plasma-protein metabolism, not elsewhere classified", + }, + { + key: "E88.1", + en: "", + de: "Lipodystrophy, not elsewhere classified", + }, + { + key: "E88.2", + en: "", + de: "Lipomatosis, not elsewhere classified", + }, + { + key: "E88.3", + en: "", + de: "Tumour lysis syndrome", + }, + { + key: "E88.8", + en: "", + de: "Other specified metabolic disorders", + }, + { + key: "E88.9", + en: "", + de: "Metabolic disorder, unspecified", + }, + { + key: "E89", + en: "", + de: "Postprocedural endocrine and metabolic disorders, not elsewhere classified", + }, + { + key: "E89.0", + en: "", + de: "Postprocedural hypothyroidism", + }, + { + key: "E89.1", + en: "", + de: "Postprocedural hypoinsulinaemia", + }, + { + key: "E89.2", + en: "", + de: "Postprocedural hypoparathyroidism", + }, + { + key: "E89.3", + en: "", + de: "Postprocedural hypopituitarism", + }, + { + key: "E89.4", + en: "", + de: "Postprocedural ovarian failure", + }, + { + key: "E89.5", + en: "", + de: "Postprocedural testicular hypofunction", + }, + { + key: "E89.6", + en: "", + de: "Postprocedural adrenocortical(-medullary) hypofunction", + }, + { + key: "E89.8", + en: "", + de: "Other postprocedural endocrine and metabolic disorders", + }, + { + key: "E89.9", + en: "", + de: "Postprocedural endocrine and metabolic disorder, unspecified", + }, + { + key: "F01", + en: "", + de: "Vascular dementia", + }, + { + key: "F01.0", + en: "", + de: "Vascular dementia of acute onset", + }, + { + key: "F01.1", + en: "", + de: "Multi-infarct dementia", + }, + { + key: "F01.2", + en: "", + de: "Subcortical vascular dementia", + }, + { + key: "F01.3", + en: "", + de: "Mixed cortical and subcortical vascular dementia", + }, + { + key: "F01.8", + en: "", + de: "Other vascular dementia", + }, + { + key: "F01.9", + en: "", + de: "Vascular dementia, unspecified", + }, + { + key: "F03", + en: "", + de: "Unspecified dementia", + }, + { + key: "F04", + en: "", + de: "Organic amnesic syndrome, not induced by alcohol and other psychoactive substances", + }, + { + key: "F05", + en: "", + de: "Delirium, not induced by alcohol and other psychoactive substances", + }, + { + key: "F05.0", + en: "", + de: "Delirium not superimposed on dementia, so described", + }, + { + key: "F05.1", + en: "", + de: "Delirium superimposed on dementia", + }, + { + key: "F05.8", + en: "", + de: "Other delirium", + }, + { + key: "F05.9", + en: "", + de: "Delirium, unspecified", + }, + { + key: "F06", + en: "", + de: "Other mental disorders due to brain damage and dysfunction and to physical disease", + }, + { + key: "F06.0", + en: "", + de: "Organic hallucinosis", + }, + { + key: "F06.1", + en: "", + de: "Organic catatonic disorder", + }, + { + key: "F06.2", + en: "", + de: "Organic delusional [schizophrenia-like] disorder", + }, + { + key: "F06.3", + en: "", + de: "Organic mood [affective] disorders", + }, + { + key: "F06.4", + en: "", + de: "Organic anxiety disorder", + }, + { + key: "F06.5", + en: "", + de: "Organic dissociative disorder", + }, + { + key: "F06.6", + en: "", + de: "Organic emotionally labile [asthenic] disorder", + }, + { + key: "F06.7", + en: "", + de: "Mild cognitive disorder", + }, + { + key: "F06.8", + en: "", + de: "Other specified mental disorders due to brain damage and dysfunction and to physical disease", + }, + { + key: "F06.9", + en: "", + de: "Unspecified mental disorder due to brain damage and dysfunction and to physical disease", + }, + { + key: "F07", + en: "", + de: "Personality and behavioural disorders due to brain disease, damage and dysfunction", + }, + { + key: "F07.0", + en: "", + de: "Organic personality disorder", + }, + { + key: "F07.1", + en: "", + de: "Postencephalitic syndrome", + }, + { + key: "F07.2", + en: "", + de: "Postconcussional syndrome", + }, + { + key: "F07.8", + en: "", + de: "Other organic personality and behavioural disorders due to brain disease, damage and dysfunction", + }, + { + key: "F07.9", + en: "", + de: "Unspecified organic personality and behavioural disorder due to brain disease, damage and dysfunction", + }, + { + key: "F09", + en: "", + de: "Unspecified organic or symptomatic mental disorder", + }, + { + key: "F10", + en: "", + de: "Mental and behavioural disorders due to use of alcohol", + }, + { + key: "F11", + en: "", + de: "Mental and behavioural disorders due to use of opioids", + }, + { + key: "F12", + en: "", + de: "Mental and behavioural disorders due to use of cannabinoids", + }, + { + key: "F13", + en: "", + de: "Mental and behavioural disorders due to use of sedatives or hypnotics", + }, + { + key: "F14", + en: "", + de: "Mental and behavioural disorders due to use of cocaine", + }, + { + key: "F15", + en: "", + de: "Mental and behavioural disorders due to use of other stimulants, including caffeine", + }, + { + key: "F16", + en: "", + de: "Mental and behavioural disorders due to use of hallucinogens", + }, + { + key: "F17", + en: "", + de: "Mental and behavioural disorders due to use of tobacco", + }, + { + key: "F18", + en: "", + de: "Mental and behavioural disorders due to use of volatile solvents", + }, + { + key: "F19", + en: "", + de: "Mental and behavioural disorders due to multiple drug use and use of other psychoactive substances", + }, + { + key: "F20", + en: "", + de: "Schizophrenia", + }, + { + key: "F20.0", + en: "", + de: "Paranoid schizophrenia", + }, + { + key: "F20.1", + en: "", + de: "Hebephrenic schizophrenia", + }, + { + key: "F20.2", + en: "", + de: "Catatonic schizophrenia", + }, + { + key: "F20.3", + en: "", + de: "Undifferentiated schizophrenia", + }, + { + key: "F20.4", + en: "", + de: "Post-schizophrenic depression", + }, + { + key: "F20.5", + en: "", + de: "Residual schizophrenia", + }, + { + key: "F20.6", + en: "", + de: "Simple schizophrenia", + }, + { + key: "F20.8", + en: "", + de: "Other schizophrenia", + }, + { + key: "F20.9", + en: "", + de: "Schizophrenia, unspecified", + }, + { + key: "F21", + en: "", + de: "Schizotypal disorder", + }, + { + key: "F22", + en: "", + de: "Persistent delusional disorders", + }, + { + key: "F22.0", + en: "", + de: "Delusional disorder", + }, + { + key: "F22.8", + en: "", + de: "Other persistent delusional disorders", + }, + { + key: "F22.9", + en: "", + de: "Persistent delusional disorder, unspecified", + }, + { + key: "F23", + en: "", + de: "Acute and transient psychotic disorders", + }, + { + key: "F23.0", + en: "", + de: "Acute polymorphic psychotic disorder without symptoms of schizophrenia", + }, + { + key: "F23.1", + en: "", + de: "Acute polymorphic psychotic disorder with symptoms of schizophrenia", + }, + { + key: "F23.2", + en: "", + de: "Acute schizophrenia-like psychotic disorder", + }, + { + key: "F23.3", + en: "", + de: "Other acute predominantly delusional psychotic disorders", + }, + { + key: "F23.8", + en: "", + de: "Other acute and transient psychotic disorders", + }, + { + key: "F23.9", + en: "", + de: "Acute and transient psychotic disorder, unspecified", + }, + { + key: "F24", + en: "", + de: "Induced delusional disorder", + }, + { + key: "F25", + en: "", + de: "Schizoaffective disorders", + }, + { + key: "F25.0", + en: "", + de: "Schizoaffective disorder, manic type", + }, + { + key: "F25.1", + en: "", + de: "Schizoaffective disorder, depressive type", + }, + { + key: "F25.2", + en: "", + de: "Schizoaffective disorder, mixed type", + }, + { + key: "F25.8", + en: "", + de: "Other schizoaffective disorders", + }, + { + key: "F25.9", + en: "", + de: "Schizoaffective disorder, unspecified", + }, + { + key: "F28", + en: "", + de: "Other nonorganic psychotic disorders", + }, + { + key: "F29", + en: "", + de: "Unspecified nonorganic psychosis", + }, + { + key: "F30", + en: "", + de: "Manic episode", + }, + { + key: "F30.0", + en: "", + de: "Hypomania", + }, + { + key: "F30.1", + en: "", + de: "Mania without psychotic symptoms", + }, + { + key: "F30.2", + en: "", + de: "Mania with psychotic symptoms", + }, + { + key: "F30.8", + en: "", + de: "Other manic episodes", + }, + { + key: "F30.9", + en: "", + de: "Manic episode, unspecified", + }, + { + key: "F31", + en: "", + de: "Bipolar affective disorder", + }, + { + key: "F31.0", + en: "", + de: "Bipolar affective disorder, current episode hypomanic", + }, + { + key: "F31.1", + en: "", + de: "Bipolar affective disorder, current episode manic without psychotic symptoms", + }, + { + key: "F31.2", + en: "", + de: "Bipolar affective disorder, current episode manic with psychotic symptoms", + }, + { + key: "F31.3", + en: "", + de: "Bipolar affective disorder, current episode mild or moderate depression", + }, + { + key: "F31.4", + en: "", + de: "Bipolar affective disorder, current episode severe depression without psychotic symptoms", + }, + { + key: "F31.5", + en: "", + de: "Bipolar affective disorder, current episode severe depression with psychotic symptoms", + }, + { + key: "F31.6", + en: "", + de: "Bipolar affective disorder, current episode mixed", + }, + { + key: "F31.7", + en: "", + de: "Bipolar affective disorder, currently in remission", + }, + { + key: "F31.8", + en: "", + de: "Other bipolar affective disorders", + }, + { + key: "F31.9", + en: "", + de: "Bipolar affective disorder, unspecified", + }, + { + key: "F32", + en: "", + de: "Depressive episode", + }, + { + key: "F32.0", + en: "", + de: "Mild depressive episode", + }, + { + key: "F32.1", + en: "", + de: "Moderate depressive episode", + }, + { + key: "F32.2", + en: "", + de: "Severe depressive episode without psychotic symptoms", + }, + { + key: "F32.3", + en: "", + de: "Severe depressive episode with psychotic symptoms", + }, + { + key: "F32.8", + en: "", + de: "Other depressive episodes", + }, + { + key: "F32.9", + en: "", + de: "Depressive episode, unspecified", + }, + { + key: "F33", + en: "", + de: "Recurrent depressive disorder", + }, + { + key: "F33.0", + en: "", + de: "Recurrent depressive disorder, current episode mild", + }, + { + key: "F33.1", + en: "", + de: "Recurrent depressive disorder, current episode moderate", + }, + { + key: "F33.2", + en: "", + de: "Recurrent depressive disorder, current episode severe without psychotic symptoms", + }, + { + key: "F33.3", + en: "", + de: "Recurrent depressive disorder, current episode severe with psychotic symptoms", + }, + { + key: "F33.4", + en: "", + de: "Recurrent depressive disorder, currently in remission", + }, + { + key: "F33.8", + en: "", + de: "Other recurrent depressive disorders", + }, + { + key: "F33.9", + en: "", + de: "Recurrent depressive disorder, unspecified", + }, + { + key: "F34", + en: "", + de: "Persistent mood [affective] disorders", + }, + { + key: "F34.0", + en: "", + de: "Cyclothymia", + }, + { + key: "F34.1", + en: "", + de: "Dysthymia", + }, + { + key: "F34.8", + en: "", + de: "Other persistent mood [affective] disorders", + }, + { + key: "F34.9", + en: "", + de: "Persistent mood [affective] disorder, unspecified", + }, + { + key: "F38", + en: "", + de: "Other mood [affective] disorders", + }, + { + key: "F38.0", + en: "", + de: "Other single mood [affective] disorders", + }, + { + key: "F38.1", + en: "", + de: "Other recurrent mood [affective] disorders", + }, + { + key: "F38.8", + en: "", + de: "Other specified mood [affective] disorders", + }, + { + key: "F39", + en: "", + de: "Unspecified mood [affective] disorder", + }, + { + key: "F40", + en: "", + de: "Phobic anxiety disorders", + }, + { + key: "F40.0", + en: "", + de: "Agoraphobia", + }, + { + key: "F40.1", + en: "", + de: "Social phobias", + }, + { + key: "F40.2", + en: "", + de: "Specific (isolated) phobias", + }, + { + key: "F40.8", + en: "", + de: "Other phobic anxiety disorders", + }, + { + key: "F40.9", + en: "", + de: "Phobic anxiety disorder, unspecified", + }, + { + key: "F41", + en: "", + de: "Other anxiety disorders", + }, + { + key: "F41.0", + en: "", + de: "Panic disorder [episodic paroxysmal anxiety]", + }, + { + key: "F41.1", + en: "", + de: "Generalized anxiety disorder", + }, + { + key: "F41.2", + en: "", + de: "Mixed anxiety and depressive disorder", + }, + { + key: "F41.3", + en: "", + de: "Other mixed anxiety disorders", + }, + { + key: "F41.8", + en: "", + de: "Other specified anxiety disorders", + }, + { + key: "F41.9", + en: "", + de: "Anxiety disorder, unspecified", + }, + { + key: "F42", + en: "", + de: "Obsessive-compulsive disorder", + }, + { + key: "F42.0", + en: "", + de: "Predominantly obsessional thoughts or ruminations", + }, + { + key: "F42.1", + en: "", + de: "Predominantly compulsive acts [obsessional rituals]", + }, + { + key: "F42.2", + en: "", + de: "Mixed obsessional thoughts and acts", + }, + { + key: "F42.8", + en: "", + de: "Other obsessive-compulsive disorders", + }, + { + key: "F42.9", + en: "", + de: "Obsessive-compulsive disorder, unspecified", + }, + { + key: "F43", + en: "", + de: "Reaction to severe stress, and adjustment disorders", + }, + { + key: "F43.0", + en: "", + de: "Acute stress reaction", + }, + { + key: "F43.1", + en: "", + de: "Post-traumatic stress disorder", + }, + { + key: "F43.2", + en: "", + de: "Adjustment disorders", + }, + { + key: "F43.8", + en: "", + de: "Other reactions to severe stress", + }, + { + key: "F43.9", + en: "", + de: "Reaction to severe stress, unspecified", + }, + { + key: "F44", + en: "", + de: "Dissociative [conversion] disorders", + }, + { + key: "F44.0", + en: "", + de: "Dissociative amnesia", + }, + { + key: "F44.1", + en: "", + de: "Dissociative fugue", + }, + { + key: "F44.2", + en: "", + de: "Dissociative stupor", + }, + { + key: "F44.3", + en: "", + de: "Trance and possession disorders", + }, + { + key: "F44.4", + en: "", + de: "Dissociative motor disorders", + }, + { + key: "F44.5", + en: "", + de: "Dissociative convulsions", + }, + { + key: "F44.6", + en: "", + de: "Dissociative anaesthesia and sensory loss", + }, + { + key: "F44.7", + en: "", + de: "Mixed dissociative [conversion] disorders", + }, + { + key: "F44.8", + en: "", + de: "Other dissociative [conversion] disorders", + }, + { + key: "F44.9", + en: "", + de: "Dissociative [conversion] disorder, unspecified", + }, + { + key: "F45", + en: "", + de: "Somatoform disorders", + }, + { + key: "F45.0", + en: "", + de: "Somatization disorder", + }, + { + key: "F45.1", + en: "", + de: "Undifferentiated somatoform disorder", + }, + { + key: "F45.2", + en: "", + de: "Hypochondriacal disorder", + }, + { + key: "F45.3", + en: "", + de: "Somatoform autonomic dysfunction", + }, + { + key: "F45.4", + en: "", + de: "Persistent somatoform pain disorder", + }, + { + key: "F45.8", + en: "", + de: "Other somatoform disorders", + }, + { + key: "F45.9", + en: "", + de: "Somatoform disorder, unspecified", + }, + { + key: "F48", + en: "", + de: "Other neurotic disorders", + }, + { + key: "F48.0", + en: "", + de: "Neurasthenia", + }, + { + key: "F48.1", + en: "", + de: "Depersonalization-derealization syndrome", + }, + { + key: "F48.8", + en: "", + de: "Other specified neurotic disorders", + }, + { + key: "F48.9", + en: "", + de: "Neurotic disorder, unspecified", + }, + { + key: "F50", + en: "", + de: "Eating disorders", + }, + { + key: "F50.0", + en: "", + de: "Anorexia nervosa", + }, + { + key: "F50.1", + en: "", + de: "Atypical anorexia nervosa", + }, + { + key: "F50.2", + en: "", + de: "Bulimia nervosa", + }, + { + key: "F50.3", + en: "", + de: "Atypical bulimia nervosa", + }, + { + key: "F50.4", + en: "", + de: "Overeating associated with other psychological disturbances", + }, + { + key: "F50.5", + en: "", + de: "Vomiting associated with other psychological disturbances", + }, + { + key: "F50.8", + en: "", + de: "Other eating disorders", + }, + { + key: "F50.9", + en: "", + de: "Eating disorder, unspecified", + }, + { + key: "F51", + en: "", + de: "Nonorganic sleep disorders", + }, + { + key: "F51.0", + en: "", + de: "Nonorganic insomnia", + }, + { + key: "F51.1", + en: "", + de: "Nonorganic hypersomnia", + }, + { + key: "F51.2", + en: "", + de: "Nonorganic disorder of the sleep-wake schedule", + }, + { + key: "F51.3", + en: "", + de: "Sleepwalking [somnambulism]", + }, + { + key: "F51.4", + en: "", + de: "Sleep terrors [night terrors]", + }, + { + key: "F51.5", + en: "", + de: "Nightmares", + }, + { + key: "F51.8", + en: "", + de: "Other nonorganic sleep disorders", + }, + { + key: "F51.9", + en: "", + de: "Nonorganic sleep disorder, unspecified", + }, + { + key: "F52", + en: "", + de: "Sexual dysfunction, not caused by organic disorder or disease", + }, + { + key: "F52.0", + en: "", + de: "Lack or loss of sexual desire", + }, + { + key: "F52.1", + en: "", + de: "Sexual aversion and lack of sexual enjoyment", + }, + { + key: "F52.2", + en: "", + de: "Failure of genital response", + }, + { + key: "F52.3", + en: "", + de: "Orgasmic dysfunction", + }, + { + key: "F52.4", + en: "", + de: "Premature ejaculation", + }, + { + key: "F52.5", + en: "", + de: "Nonorganic vaginismus", + }, + { + key: "F52.6", + en: "", + de: "Nonorganic dyspareunia", + }, + { + key: "F52.7", + en: "", + de: "Excessive sexual drive", + }, + { + key: "F52.8", + en: "", + de: "Other sexual dysfunction, not caused by organic disorder or disease", + }, + { + key: "F52.9", + en: "", + de: "Unspecified sexual dysfunction, not caused by organic disorder or disease", + }, + { + key: "F53", + en: "", + de: "Mental and behavioural disorders associated with the puerperium, not elsewhere classified", + }, + { + key: "F53.0", + en: "", + de: "Mild mental and behavioural disorders associated with the puerperium, not elsewhere classified", + }, + { + key: "F53.1", + en: "", + de: "Severe mental and behavioural disorders associated with the puerperium, not elsewhere classified", + }, + { + key: "F53.8", + en: "", + de: "Other mental and behavioural disorders associated with the puerperium, not elsewhere classified", + }, + { + key: "F53.9", + en: "", + de: "Puerperal mental disorder, unspecified", + }, + { + key: "F54", + en: "", + de: "Psychological and behavioural factors associated with disorders or diseases classified elsewhere", + }, + { + key: "F55", + en: "", + de: "Abuse of non-dependence-producing substances", + }, + { + key: "F59", + en: "", + de: "Unspecified behavioural syndromes associated with physiological disturbances and physical factors", + }, + { + key: "F60", + en: "", + de: "Specific personality disorders", + }, + { + key: "F60.0", + en: "", + de: "Paranoid personality disorder", + }, + { + key: "F60.1", + en: "", + de: "Schizoid personality disorder", + }, + { + key: "F60.2", + en: "", + de: "Dissocial personality disorder", + }, + { + key: "F60.3", + en: "", + de: "Emotionally unstable personality disorder", + }, + { + key: "F60.4", + en: "", + de: "Histrionic personality disorder", + }, + { + key: "F60.5", + en: "", + de: "Anankastic personality disorder", + }, + { + key: "F60.6", + en: "", + de: "Anxious [avoidant] personality disorder", + }, + { + key: "F60.7", + en: "", + de: "Dependent personality disorder", + }, + { + key: "F60.8", + en: "", + de: "Other specific personality disorders", + }, + { + key: "F60.9", + en: "", + de: "Personality disorder, unspecified", + }, + { + key: "F61", + en: "", + de: "Mixed and other personality disorders", + }, + { + key: "F62", + en: "", + de: "Enduring personality changes, not attributable to brain damage and disease", + }, + { + key: "F62.0", + en: "", + de: "Enduring personality change after catastrophic experience", + }, + { + key: "F62.1", + en: "", + de: "Enduring personality change after psychiatric illness", + }, + { + key: "F62.8", + en: "", + de: "Other enduring personality changes", + }, + { + key: "F62.9", + en: "", + de: "Enduring personality change, unspecified", + }, + { + key: "F63", + en: "", + de: "Habit and impulse disorders", + }, + { + key: "F63.0", + en: "", + de: "Pathological gambling", + }, + { + key: "F63.1", + en: "", + de: "Pathological fire-setting [pyromania]", + }, + { + key: "F63.2", + en: "", + de: "Pathological stealing [kleptomania]", + }, + { + key: "F63.3", + en: "", + de: "Trichotillomania", + }, + { + key: "F63.8", + en: "", + de: "Other habit and impulse disorders", + }, + { + key: "F63.9", + en: "", + de: "Habit and impulse disorder, unspecified", + }, + { + key: "F64", + en: "", + de: "Gender identity disorders", + }, + { + key: "F64.0", + en: "", + de: "Transsexualism", + }, + { + key: "F64.1", + en: "", + de: "Dual-role transvestism", + }, + { + key: "F64.2", + en: "", + de: "Gender identity disorder of childhood", + }, + { + key: "F64.8", + en: "", + de: "Other gender identity disorders", + }, + { + key: "F64.9", + en: "", + de: "Gender identity disorder, unspecified", + }, + { + key: "F65", + en: "", + de: "Disorders of sexual preference", + }, + { + key: "F65.0", + en: "", + de: "Fetishism", + }, + { + key: "F65.1", + en: "", + de: "Fetishistic transvestism", + }, + { + key: "F65.2", + en: "", + de: "Exhibitionism", + }, + { + key: "F65.3", + en: "", + de: "Voyeurism", + }, + { + key: "F65.4", + en: "", + de: "Paedophilia", + }, + { + key: "F65.5", + en: "", + de: "Sadomasochism", + }, + { + key: "F65.6", + en: "", + de: "Multiple disorders of sexual preference", + }, + { + key: "F65.8", + en: "", + de: "Other disorders of sexual preference", + }, + { + key: "F65.9", + en: "", + de: "Disorder of sexual preference, unspecified", + }, + { + key: "F66", + en: "", + de: "Psychological and behavioural disorders associated with sexual development and orientation", + }, + { + key: "F66.0", + en: "", + de: "Sexual maturation disorder", + }, + { + key: "F66.1", + en: "", + de: "Egodystonic sexual orientation", + }, + { + key: "F66.2", + en: "", + de: "Sexual relationship disorder", + }, + { + key: "F66.8", + en: "", + de: "Other psychosexual development disorders", + }, + { + key: "F66.9", + en: "", + de: "Psychosexual development disorder, unspecified", + }, + { + key: "F68", + en: "", + de: "Other disorders of adult personality and behaviour", + }, + { + key: "F68.0", + en: "", + de: "Elaboration of physical symptoms for psychological reasons", + }, + { + key: "F68.1", + en: "", + de: "Intentional production or feigning of symptoms or disabilities, either physical or psychological [factitious disorder]", + }, + { + key: "F68.8", + en: "", + de: "Other specified disorders of adult personality and behaviour", + }, + { + key: "F69", + en: "", + de: "Unspecified disorder of adult personality and behaviour", + }, + { + key: "F70", + en: "", + de: "Mild mental retardation", + }, + { + key: "F71", + en: "", + de: "Moderate mental retardation", + }, + { + key: "F72", + en: "", + de: "Severe mental retardation", + }, + { + key: "F73", + en: "", + de: "Profound mental retardation", + }, + { + key: "F78", + en: "", + de: "Other mental retardation", + }, + { + key: "F79", + en: "", + de: "Unspecified mental retardation", + }, + { + key: "F80", + en: "", + de: "Specific developmental disorders of speech and language", + }, + { + key: "F80.0", + en: "", + de: "Specific speech articulation disorder", + }, + { + key: "F80.1", + en: "", + de: "Expressive language disorder", + }, + { + key: "F80.2", + en: "", + de: "Receptive language disorder", + }, + { + key: "F80.3", + en: "", + de: "Acquired aphasia with epilepsy [Landau-Kleffner]", + }, + { + key: "F80.8", + en: "", + de: "Other developmental disorders of speech and language", + }, + { + key: "F80.9", + en: "", + de: "Developmental disorder of speech and language, unspecified", + }, + { + key: "F81", + en: "", + de: "Specific developmental disorders of scholastic skills", + }, + { + key: "F81.0", + en: "", + de: "Specific reading disorder", + }, + { + key: "F81.1", + en: "", + de: "Specific spelling disorder", + }, + { + key: "F81.2", + en: "", + de: "Specific disorder of arithmetical skills", + }, + { + key: "F81.3", + en: "", + de: "Mixed disorder of scholastic skills", + }, + { + key: "F81.8", + en: "", + de: "Other developmental disorders of scholastic skills", + }, + { + key: "F81.9", + en: "", + de: "Developmental disorder of scholastic skills, unspecified", + }, + { + key: "F82", + en: "", + de: "Specific developmental disorder of motor function", + }, + { + key: "F83", + en: "", + de: "Mixed specific developmental disorders", + }, + { + key: "F84", + en: "", + de: "Pervasive developmental disorders", + }, + { + key: "F84.0", + en: "", + de: "Childhood autism", + }, + { + key: "F84.1", + en: "", + de: "Atypical autism", + }, + { + key: "F84.2", + en: "", + de: "Rett syndrome", + }, + { + key: "F84.3", + en: "", + de: "Other childhood disintegrative disorder", + }, + { + key: "F84.4", + en: "", + de: "Overactive disorder associated with mental retardation and stereotyped movements", + }, + { + key: "F84.5", + en: "", + de: "Asperger syndrome", + }, + { + key: "F84.8", + en: "", + de: "Other pervasive developmental disorders", + }, + { + key: "F84.9", + en: "", + de: "Pervasive developmental disorder, unspecified", + }, + { + key: "F88", + en: "", + de: "Other disorders of psychological development", + }, + { + key: "F89", + en: "", + de: "Unspecified disorder of psychological development", + }, + { + key: "F90", + en: "", + de: "Hyperkinetic disorders", + }, + { + key: "F90.0", + en: "", + de: "Disturbance of activity and attention", + }, + { + key: "F90.1", + en: "", + de: "Hyperkinetic conduct disorder", + }, + { + key: "F90.8", + en: "", + de: "Other hyperkinetic disorders", + }, + { + key: "F90.9", + en: "", + de: "Hyperkinetic disorder, unspecified", + }, + { + key: "F91", + en: "", + de: "Conduct disorders", + }, + { + key: "F91.0", + en: "", + de: "Conduct disorder confined to the family context", + }, + { + key: "F91.1", + en: "", + de: "Unsocialized conduct disorder", + }, + { + key: "F91.2", + en: "", + de: "Socialized conduct disorder", + }, + { + key: "F91.3", + en: "", + de: "Oppositional defiant disorder", + }, + { + key: "F91.8", + en: "", + de: "Other conduct disorders", + }, + { + key: "F91.9", + en: "", + de: "Conduct disorder, unspecified", + }, + { + key: "F92", + en: "", + de: "Mixed disorders of conduct and emotions", + }, + { + key: "F92.0", + en: "", + de: "Depressive conduct disorder", + }, + { + key: "F92.8", + en: "", + de: "Other mixed disorders of conduct and emotions", + }, + { + key: "F92.9", + en: "", + de: "Mixed disorder of conduct and emotions, unspecified", + }, + { + key: "F93", + en: "", + de: "Emotional disorders with onset specific to childhood", + }, + { + key: "F93.0", + en: "", + de: "Separation anxiety disorder of childhood", + }, + { + key: "F93.1", + en: "", + de: "Phobic anxiety disorder of childhood", + }, + { + key: "F93.2", + en: "", + de: "Social anxiety disorder of childhood", + }, + { + key: "F93.3", + en: "", + de: "Sibling rivalry disorder", + }, + { + key: "F93.8", + en: "", + de: "Other childhood emotional disorders", + }, + { + key: "F93.9", + en: "", + de: "Childhood emotional disorder, unspecified", + }, + { + key: "F94", + en: "", + de: "Disorders of social functioning with onset specific to childhood and adolescence", + }, + { + key: "F94.0", + en: "", + de: "Elective mutism", + }, + { + key: "F94.1", + en: "", + de: "Reactive attachment disorder of childhood", + }, + { + key: "F94.2", + en: "", + de: "Disinhibited attachment disorder of childhood", + }, + { + key: "F94.8", + en: "", + de: "Other childhood disorders of social functioning", + }, + { + key: "F94.9", + en: "", + de: "Childhood disorder of social functioning, unspecified", + }, + { + key: "F95", + en: "", + de: "Tic disorders", + }, + { + key: "F95.0", + en: "", + de: "Transient tic disorder", + }, + { + key: "F95.1", + en: "", + de: "Chronic motor or vocal tic disorder", + }, + { + key: "F95.2", + en: "", + de: "Combined vocal and multiple motor tic disorder [de la Tourette]", + }, + { + key: "F95.8", + en: "", + de: "Other tic disorders", + }, + { + key: "F95.9", + en: "", + de: "Tic disorder, unspecified", + }, + { + key: "F98", + en: "", + de: "Other behavioural and emotional disorders with onset usually occurring in childhood and adolescence", + }, + { + key: "F98.0", + en: "", + de: "Nonorganic enuresis", + }, + { + key: "F98.1", + en: "", + de: "Nonorganic encopresis", + }, + { + key: "F98.2", + en: "", + de: "Feeding disorder of infancy and childhood", + }, + { + key: "F98.3", + en: "", + de: "Pica of infancy and childhood", + }, + { + key: "F98.4", + en: "", + de: "Stereotyped movement disorders", + }, + { + key: "F98.5", + en: "", + de: "Stuttering [stammering]", + }, + { + key: "F98.6", + en: "", + de: "Cluttering", + }, + { + key: "F98.8", + en: "", + de: "Other specified behavioural and emotional disorders with onset usually occurring in childhood and adolescence", + }, + { + key: "F98.9", + en: "", + de: "Unspecified behavioural and emotional disorders with onset usually occurring in childhood and adolescence", + }, + { + key: "F99", + en: "", + de: "Mental disorder, not otherwise specified", + }, + { + key: "G00", + en: "", + de: "Bacterial meningitis, not elsewhere classified", + }, + { + key: "G00.0", + en: "", + de: "Haemophilus meningitis", + }, + { + key: "G00.1", + en: "", + de: "Pneumococcal meningitis", + }, + { + key: "G00.2", + en: "", + de: "Streptococcal meningitis", + }, + { + key: "G00.3", + en: "", + de: "Staphylococcal meningitis", + }, + { + key: "G00.8", + en: "", + de: "Other bacterial meningitis", + }, + { + key: "G00.9", + en: "", + de: "Bacterial meningitis, unspecified", + }, + { + key: "G03", + en: "", + de: "Meningitis due to other and unspecified causes", + }, + { + key: "G03.0", + en: "", + de: "Nonpyogenic meningitis", + }, + { + key: "G03.1", + en: "", + de: "Chronic meningitis", + }, + { + key: "G03.2", + en: "", + de: "Benign recurrent meningitis [Mollaret]", + }, + { + key: "G03.8", + en: "", + de: "Meningitis due to other specified causes", + }, + { + key: "G03.9", + en: "", + de: "Meningitis, unspecified", + }, + { + key: "G04", + en: "", + de: "Encephalitis, myelitis and encephalomyelitis", + }, + { + key: "G04.0", + en: "", + de: "Acute disseminated encephalitis", + }, + { + key: "G04.1", + en: "", + de: "Human T-cell lymphotropic virus associated myelopathy", + }, + { + key: "G04.2", + en: "", + de: "Bacterial meningoencephalitis and meningomyelitis, not elsewhere classified", + }, + { + key: "G04.8", + en: "", + de: "Other encephalitis, myelitis and encephalomyelitis", + }, + { + key: "G04.9", + en: "", + de: "Encephalitis, myelitis and encephalomyelitis, unspecified", + }, + { + key: "G06", + en: "", + de: "Intracranial and intraspinal abscess and granuloma", + }, + { + key: "G06.0", + en: "", + de: "Intracranial abscess and granuloma", + }, + { + key: "G06.1", + en: "", + de: "Intraspinal abscess and granuloma", + }, + { + key: "G06.2", + en: "", + de: "Extradural and subdural abscess, unspecified", + }, + { + key: "G08", + en: "", + de: "Intracranial and intraspinal phlebitis and thrombophlebitis", + }, + { + key: "G09", + en: "", + de: "Sequelae of inflammatory diseases of central nervous system", + }, + { + key: "G10", + en: "", + de: "Huntington disease", + }, + { + key: "G11", + en: "", + de: "Hereditary ataxia", + }, + { + key: "G11.0", + en: "", + de: "Congenital nonprogressive ataxia", + }, + { + key: "G11.1", + en: "", + de: "Early-onset cerebellar ataxia", + }, + { + key: "G11.2", + en: "", + de: "Late-onset cerebellar ataxia", + }, + { + key: "G11.3", + en: "", + de: "Cerebellar ataxia with defective DNA repair", + }, + { + key: "G11.4", + en: "", + de: "Hereditary spastic paraplegia", + }, + { + key: "G11.8", + en: "", + de: "Other hereditary ataxias", + }, + { + key: "G11.9", + en: "", + de: "Hereditary ataxia, unspecified", + }, + { + key: "G12", + en: "", + de: "Spinal muscular atrophy and related syndromes", + }, + { + key: "G12.0", + en: "", + de: "Infantile spinal muscular atrophy, type I [Werdnig-Hoffman]", + }, + { + key: "G12.1", + en: "", + de: "Other inherited spinal muscular atrophy", + }, + { + key: "G12.2", + en: "", + de: "Motor neuron disease", + }, + { + key: "G12.8", + en: "", + de: "Other spinal muscular atrophies and related syndromes", + }, + { + key: "G12.9", + en: "", + de: "Spinal muscular atrophy, unspecified", + }, + { + key: "G14", + en: "", + de: "Postpolio syndrome", + }, + { + key: "G20", + en: "", + de: "Parkinson disease", + }, + { + key: "G21", + en: "", + de: "Secondary parkinsonism", + }, + { + key: "G21.0", + en: "", + de: "Malignant neuroleptic syndrome", + }, + { + key: "G21.1", + en: "", + de: "Other drug-induced secondary parkinsonism", + }, + { + key: "G21.2", + en: "", + de: "Secondary parkinsonism due to other external agents", + }, + { + key: "G21.3", + en: "", + de: "Postencephalitic parkinsonism", + }, + { + key: "G21.4", + en: "", + de: "Vascular parkinsonism", + }, + { + key: "G21.8", + en: "", + de: "Other secondary parkinsonism", + }, + { + key: "G21.9", + en: "", + de: "Secondary parkinsonism, unspecified", + }, + { + key: "G23", + en: "", + de: "Other degenerative diseases of basal ganglia", + }, + { + key: "G23.0", + en: "", + de: "Hallervorden-Spatz disease", + }, + { + key: "G23.1", + en: "", + de: "Progressive supranuclear ophthalmoplegia [Steele-Richardson-Olszewski]", + }, + { + key: "G23.2", + en: "", + de: "Multiple system atrophy, parkinsonian type [MSA-P]", + }, + { + key: "G23.3", + en: "", + de: "Multiple system atrophy, cerebellar type [MSA-C]", + }, + { + key: "G23.8", + en: "", + de: "Other specified degenerative diseases of basal ganglia", + }, + { + key: "G23.9", + en: "", + de: "Degenerative disease of basal ganglia, unspecified", + }, + { + key: "G24", + en: "", + de: "Dystonia", + }, + { + key: "G24.0", + en: "", + de: "Drug-induced dystonia", + }, + { + key: "G24.1", + en: "", + de: "Idiopathic familial dystonia", + }, + { + key: "G24.2", + en: "", + de: "Idiopathic nonfamilial dystonia", + }, + { + key: "G24.3", + en: "", + de: "Spasmodic torticollis", + }, + { + key: "G24.4", + en: "", + de: "Idiopathic orofacial dystonia", + }, + { + key: "G24.5", + en: "", + de: "Blepharospasm", + }, + { + key: "G24.8", + en: "", + de: "Other dystonia", + }, + { + key: "G24.9", + en: "", + de: "Dystonia, unspecified", + }, + { + key: "G25", + en: "", + de: "Other extrapyramidal and movement disorders", + }, + { + key: "G25.0", + en: "", + de: "Essential tremor", + }, + { + key: "G25.1", + en: "", + de: "Drug-induced tremor", + }, + { + key: "G25.2", + en: "", + de: "Other specified forms of tremor", + }, + { + key: "G25.3", + en: "", + de: "Myoclonus", + }, + { + key: "G25.4", + en: "", + de: "Drug-induced chorea", + }, + { + key: "G25.5", + en: "", + de: "Other chorea", + }, + { + key: "G25.6", + en: "", + de: "Drug-induced tics and other tics of organic origin", + }, + { + key: "G25.8", + en: "", + de: "Other specified extrapyramidal and movement disorders", + }, + { + key: "G25.9", + en: "", + de: "Extrapyramidal and movement disorder, unspecified", + }, + { + key: "G31", + en: "", + de: "Other degenerative diseases of nervous system, not elsewhere classified", + }, + { + key: "G31.0", + en: "", + de: "Circumscribed brain atrophy", + }, + { + key: "G31.1", + en: "", + de: "Senile degeneration of brain, not elsewhere classified", + }, + { + key: "G31.2", + en: "", + de: "Degeneration of nervous system due to alcohol", + }, + { + key: "G31.8", + en: "", + de: "Other specified degenerative diseases of nervous system", + }, + { + key: "G31.9", + en: "", + de: "Degenerative disease of nervous system, unspecified", + }, + { + key: "G35", + en: "", + de: "Multiple sclerosis", + }, + { + key: "G36", + en: "", + de: "Other acute disseminated demyelination", + }, + { + key: "G36.0", + en: "", + de: "Neuromyelitis optica [Devic]", + }, + { + key: "G36.1", + en: "", + de: "Acute and subacute haemorrhagic leukoencephalitis [Hurst]", + }, + { + key: "G36.8", + en: "", + de: "Other specified acute disseminated demyelination", + }, + { + key: "G36.9", + en: "", + de: "Acute disseminated demyelination, unspecified", + }, + { + key: "G37", + en: "", + de: "Other demyelinating diseases of central nervous system", + }, + { + key: "G37.0", + en: "", + de: "Diffuse sclerosis", + }, + { + key: "G37.1", + en: "", + de: "Central demyelination of corpus callosum", + }, + { + key: "G37.2", + en: "", + de: "Central pontine myelinolysis", + }, + { + key: "G37.3", + en: "", + de: "Acute transverse myelitis in demyelinating disease of central nervous system", + }, + { + key: "G37.4", + en: "", + de: "Subacute necrotizing myelitis", + }, + { + key: "G37.5", + en: "", + de: "Concentric sclerosis [Baló]", + }, + { + key: "G37.8", + en: "", + de: "Other specified demyelinating diseases of central nervous system", + }, + { + key: "G37.9", + en: "", + de: "Demyelinating disease of central nervous system, unspecified", + }, + { + key: "G40", + en: "", + de: "Epilepsy", + }, + { + key: "G40.0", + en: "", + de: "Localization-related (focal)(partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset", + }, + { + key: "G40.1", + en: "", + de: "Localization-related (focal)(partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures", + }, + { + key: "G40.2", + en: "", + de: "Localization-related (focal)(partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures", + }, + { + key: "G40.3", + en: "", + de: "Generalized idiopathic epilepsy and epileptic syndromes", + }, + { + key: "G40.4", + en: "", + de: "Other generalized epilepsy and epileptic syndromes", + }, + { + key: "G40.5", + en: "", + de: "Special epileptic syndromes", + }, + { + key: "G40.6", + en: "", + de: "Grand mal seizures, unspecified (with or without petit mal)", + }, + { + key: "G40.7", + en: "", + de: "Petit mal, unspecified, without grand mal seizures", + }, + { + key: "G40.8", + en: "", + de: "Other epilepsy", + }, + { + key: "G40.9", + en: "", + de: "Epilepsy, unspecified", + }, + { + key: "G41", + en: "", + de: "Status epilepticus", + }, + { + key: "G41.0", + en: "", + de: "Grand mal status epilepticus", + }, + { + key: "G41.1", + en: "", + de: "Petit mal status epilepticus", + }, + { + key: "G41.2", + en: "", + de: "Complex partial status epilepticus", + }, + { + key: "G41.8", + en: "", + de: "Other status epilepticus", + }, + { + key: "G41.9", + en: "", + de: "Status epilepticus, unspecified", + }, + { + key: "G43", + en: "", + de: "Migraine", + }, + { + key: "G43.0", + en: "", + de: "Migraine without aura [common migraine]", + }, + { + key: "G43.1", + en: "", + de: "Migraine with aura [classical migraine]", + }, + { + key: "G43.2", + en: "", + de: "Status migrainosus", + }, + { + key: "G43.3", + en: "", + de: "Complicated migraine", + }, + { + key: "G43.8", + en: "", + de: "Other migraine", + }, + { + key: "G43.9", + en: "", + de: "Migraine, unspecified", + }, + { + key: "G44", + en: "", + de: "Other headache syndromes", + }, + { + key: "G44.0", + en: "", + de: "Cluster headache syndrome", + }, + { + key: "G44.1", + en: "", + de: "Vascular headache, not elsewhere classified", + }, + { + key: "G44.2", + en: "", + de: "Tension-type headache", + }, + { + key: "G44.3", + en: "", + de: "Chronic post-traumatic headache", + }, + { + key: "G44.4", + en: "", + de: "Drug-induced headache, not elsewhere classified", + }, + { + key: "G44.8", + en: "", + de: "Other specified headache syndromes", + }, + { + key: "G45", + en: "", + de: "Transient cerebral ischaemic attacks and related syndromes", + }, + { + key: "G45.0", + en: "", + de: "Vertebro-basilar artery syndrome", + }, + { + key: "G45.1", + en: "", + de: "Carotid artery syndrome (hemispheric)", + }, + { + key: "G45.2", + en: "", + de: "Multiple and bilateral precerebral artery syndromes", + }, + { + key: "G45.3", + en: "", + de: "Amaurosis fugax", + }, + { + key: "G45.4", + en: "", + de: "Transient global amnesia", + }, + { + key: "G45.8", + en: "", + de: "Other transient cerebral ischaemic attacks and related syndromes", + }, + { + key: "G45.9", + en: "", + de: "Transient cerebral ischaemic attack, unspecified", + }, + { + key: "G47", + en: "", + de: "Sleep disorders", + }, + { + key: "G47.0", + en: "", + de: "Disorders of initiating and maintaining sleep [insomnias]", + }, + { + key: "G47.1", + en: "", + de: "Disorders of excessive somnolence [hypersomnias]", + }, + { + key: "G47.2", + en: "", + de: "Disorders of the sleep-wake schedule", + }, + { + key: "G47.3", + en: "", + de: "Sleep apnoea", + }, + { + key: "G47.4", + en: "", + de: "Narcolepsy and cataplexy", + }, + { + key: "G47.8", + en: "", + de: "Other sleep disorders", + }, + { + key: "G47.9", + en: "", + de: "Sleep disorder, unspecified", + }, + { + key: "G50", + en: "", + de: "Disorders of trigeminal nerve", + }, + { + key: "G50.0", + en: "", + de: "Trigeminal neuralgia", + }, + { + key: "G50.1", + en: "", + de: "Atypical facial pain", + }, + { + key: "G50.8", + en: "", + de: "Other disorders of trigeminal nerve", + }, + { + key: "G50.9", + en: "", + de: "Disorder of trigeminal nerve, unspecified", + }, + { + key: "G51", + en: "", + de: "Facial nerve disorders", + }, + { + key: "G51.0", + en: "", + de: "Bell palsy", + }, + { + key: "G51.1", + en: "", + de: "Geniculate ganglionitis", + }, + { + key: "G51.2", + en: "", + de: "Melkersson syndrome", + }, + { + key: "G51.3", + en: "", + de: "Clonic hemifacial spasm", + }, + { + key: "G51.4", + en: "", + de: "Facial myokymia", + }, + { + key: "G51.8", + en: "", + de: "Other disorders of facial nerve", + }, + { + key: "G51.9", + en: "", + de: "Disorder of facial nerve, unspecified", + }, + { + key: "G52", + en: "", + de: "Disorders of other cranial nerves", + }, + { + key: "G52.0", + en: "", + de: "Disorders of olfactory nerve", + }, + { + key: "G52.1", + en: "", + de: "Disorders of glossopharyngeal nerve", + }, + { + key: "G52.2", + en: "", + de: "Disorders of vagus nerve", + }, + { + key: "G52.3", + en: "", + de: "Disorders of hypoglossal nerve", + }, + { + key: "G52.7", + en: "", + de: "Disorders of multiple cranial nerves", + }, + { + key: "G52.8", + en: "", + de: "Disorders of other specified cranial nerves", + }, + { + key: "G52.9", + en: "", + de: "Cranial nerve disorder, unspecified", + }, + { + key: "G54", + en: "", + de: "Nerve root and plexus disorders", + }, + { + key: "G54.0", + en: "", + de: "Brachial plexus disorders", + }, + { + key: "G54.1", + en: "", + de: "Lumbosacral plexus disorders", + }, + { + key: "G54.2", + en: "", + de: "Cervical root disorders, not elsewhere classified", + }, + { + key: "G54.3", + en: "", + de: "Thoracic root disorders, not elsewhere classified", + }, + { + key: "G54.4", + en: "", + de: "Lumbosacral root disorders, not elsewhere classified", + }, + { + key: "G54.5", + en: "", + de: "Neuralgic amyotrophy", + }, + { + key: "G54.6", + en: "", + de: "Phantom limb syndrome with pain", + }, + { + key: "G54.7", + en: "", + de: "Phantom limb syndrome without pain", + }, + { + key: "G54.8", + en: "", + de: "Other nerve root and plexus disorders", + }, + { + key: "G54.9", + en: "", + de: "Nerve root and plexus disorder, unspecified", + }, + { + key: "G56", + en: "", + de: "Mononeuropathies of upper limb", + }, + { + key: "G56.0", + en: "", + de: "Carpal tunnel syndrome", + }, + { + key: "G56.1", + en: "", + de: "Other lesions of median nerve", + }, + { + key: "G56.2", + en: "", + de: "Lesion of ulnar nerve", + }, + { + key: "G56.3", + en: "", + de: "Lesion of radial nerve", + }, + { + key: "G56.8", + en: "", + de: "Other mononeuropathies of upper limb", + }, + { + key: "G56.9", + en: "", + de: "Mononeuropathy of upper limb, unspecified", + }, + { + key: "G57", + en: "", + de: "Mononeuropathies of lower limb", + }, + { + key: "G57.0", + en: "", + de: "Lesion of sciatic nerve", + }, + { + key: "G57.1", + en: "", + de: "Meralgia paraesthetica", + }, + { + key: "G57.2", + en: "", + de: "Lesion of femoral nerve", + }, + { + key: "G57.3", + en: "", + de: "Lesion of lateral popliteal nerve", + }, + { + key: "G57.4", + en: "", + de: "Lesion of medial popliteal nerve", + }, + { + key: "G57.5", + en: "", + de: "Tarsal tunnel syndrome", + }, + { + key: "G57.6", + en: "", + de: "Lesion of plantar nerve", + }, + { + key: "G57.8", + en: "", + de: "Other mononeuropathies of lower limb", + }, + { + key: "G57.9", + en: "", + de: "Mononeuropathy of lower limb, unspecified", + }, + { + key: "G58", + en: "", + de: "Other mononeuropathies", + }, + { + key: "G58.0", + en: "", + de: "Intercostal neuropathy", + }, + { + key: "G58.7", + en: "", + de: "Mononeuritis multiplex", + }, + { + key: "G58.8", + en: "", + de: "Other specified mononeuropathies", + }, + { + key: "G58.9", + en: "", + de: "Mononeuropathy, unspecified", + }, + { + key: "G60", + en: "", + de: "Hereditary and idiopathic neuropathy", + }, + { + key: "G60.0", + en: "", + de: "Hereditary motor and sensory neuropathy", + }, + { + key: "G60.1", + en: "", + de: "Refsum disease", + }, + { + key: "G60.2", + en: "", + de: "Neuropathy in association with hereditary ataxia", + }, + { + key: "G60.3", + en: "", + de: "Idiopathic progressive neuropathy", + }, + { + key: "G60.8", + en: "", + de: "Other hereditary and idiopathic neuropathies", + }, + { + key: "G60.9", + en: "", + de: "Hereditary and idiopathic neuropathy, unspecified", + }, + { + key: "G61", + en: "", + de: "Inflammatory polyneuropathy", + }, + { + key: "G61.0", + en: "", + de: "Guillain-Barré syndrome", + }, + { + key: "G61.1", + en: "", + de: "Serum neuropathy", + }, + { + key: "G61.8", + en: "", + de: "Other inflammatory polyneuropathies", + }, + { + key: "G61.9", + en: "", + de: "Inflammatory polyneuropathy, unspecified", + }, + { + key: "G62", + en: "", + de: "Other polyneuropathies", + }, + { + key: "G62.0", + en: "", + de: "Drug-induced polyneuropathy", + }, + { + key: "G62.1", + en: "", + de: "Alcoholic polyneuropathy", + }, + { + key: "G62.2", + en: "", + de: "Polyneuropathy due to other toxic agents", + }, + { + key: "G62.8", + en: "", + de: "Other specified polyneuropathies", + }, + { + key: "G62.9", + en: "", + de: "Polyneuropathy, unspecified", + }, + { + key: "G64", + en: "", + de: "Other disorders of peripheral nervous system", + }, + { + key: "G70", + en: "", + de: "Myasthenia gravis and other myoneural disorders", + }, + { + key: "G70.0", + en: "", + de: "Myasthenia gravis", + }, + { + key: "G70.1", + en: "", + de: "Toxic myoneural disorders", + }, + { + key: "G70.2", + en: "", + de: "Congenital and developmental myasthenia", + }, + { + key: "G70.8", + en: "", + de: "Other specified myoneural disorders", + }, + { + key: "G70.9", + en: "", + de: "Myoneural disorder, unspecified", + }, + { + key: "G71", + en: "", + de: "Primary disorders of muscles", + }, + { + key: "G71.0", + en: "", + de: "Muscular dystrophy", + }, + { + key: "G71.1", + en: "", + de: "Myotonic disorders", + }, + { + key: "G71.2", + en: "", + de: "Congenital myopathies", + }, + { + key: "G71.3", + en: "", + de: "Mitochondrial myopathy, not elsewhere classified", + }, + { + key: "G71.8", + en: "", + de: "Other primary disorders of muscles", + }, + { + key: "G71.9", + en: "", + de: "Primary disorder of muscle, unspecified", + }, + { + key: "G72", + en: "", + de: "Other myopathies", + }, + { + key: "G72.0", + en: "", + de: "Drug-induced myopathy", + }, + { + key: "G72.1", + en: "", + de: "Alcoholic myopathy", + }, + { + key: "G72.2", + en: "", + de: "Myopathy due to other toxic agents", + }, + { + key: "G72.3", + en: "", + de: "Periodic paralysis", + }, + { + key: "G72.4", + en: "", + de: "Inflammatory myopathy, not elsewhere classified", + }, + { + key: "G72.8", + en: "", + de: "Other specified myopathies", + }, + { + key: "G72.9", + en: "", + de: "Myopathy, unspecified", + }, + { + key: "G80", + en: "", + de: "Cerebral palsy", + }, + { + key: "G80.0", + en: "", + de: "Spastic quadriplegic cerebral palsy", + }, + { + key: "G80.1", + en: "", + de: "Spastic diplegic cerebral palsy", + }, + { + key: "G80.2", + en: "", + de: "Spastic hemiplegic cerebral palsy", + }, + { + key: "G80.3", + en: "", + de: "Dyskinetic cerebral palsy", + }, + { + key: "G80.4", + en: "", + de: "Ataxic cerebral palsy", + }, + { + key: "G80.8", + en: "", + de: "Other cerebral palsy", + }, + { + key: "G80.9", + en: "", + de: "Cerebral palsy, unspecified", + }, + { + key: "G81", + en: "", + de: "Hemiplegia", + }, + { + key: "G81.0", + en: "", + de: "Flaccid hemiplegia", + }, + { + key: "G81.1", + en: "", + de: "Spastic hemiplegia", + }, + { + key: "G81.9", + en: "", + de: "Hemiplegia, unspecified", + }, + { + key: "G82", + en: "", + de: "Paraplegia and tetraplegia", + }, + { + key: "G82.0", + en: "", + de: "Flaccid paraplegia", + }, + { + key: "G82.1", + en: "", + de: "Spastic paraplegia", + }, + { + key: "G82.2", + en: "", + de: "Paraplegia, unspecified", + }, + { + key: "G82.3", + en: "", + de: "Flaccid tetraplegia", + }, + { + key: "G82.4", + en: "", + de: "Spastic tetraplegia", + }, + { + key: "G82.5", + en: "", + de: "Tetraplegia, unspecified", + }, + { + key: "G83", + en: "", + de: "Other paralytic syndromes", + }, + { + key: "G83.0", + en: "", + de: "Diplegia of upper limbs", + }, + { + key: "G83.1", + en: "", + de: "Monoplegia of lower limb", + }, + { + key: "G83.2", + en: "", + de: "Monoplegia of upper limb", + }, + { + key: "G83.3", + en: "", + de: "Monoplegia, unspecified", + }, + { + key: "G83.4", + en: "", + de: "Cauda equina syndrome", + }, + { + key: "G83.5", + en: "", + de: "Locked-in syndrome", + }, + { + key: "G83.6", + en: "", + de: "Upper motor neuron facial paralysis", + }, + { + key: "G83.8", + en: "", + de: "Other specified paralytic syndromes", + }, + { + key: "G83.9", + en: "", + de: "Paralytic syndrome, unspecified", + }, + { + key: "G90", + en: "", + de: "Disorders of autonomic nervous system", + }, + { + key: "G90.0", + en: "", + de: "Idiopathic peripheral autonomic neuropathy", + }, + { + key: "G90.1", + en: "", + de: "Familial dysautonomia [Riley-Day]", + }, + { + key: "G90.2", + en: "", + de: "Horner syndrome", + }, + { + key: "G90.4", + en: "", + de: "Autonomic dysreflexia", + }, + { + key: "G90.5", + en: "", + de: "Complex regional pain syndrome type I", + }, + { + key: "G90.6", + en: "", + de: "Complex regional pain syndrome type II", + }, + { + key: "G90.7", + en: "", + de: "Complex regional pain syndrome, other and unspecified type", + }, + { + key: "G90.8", + en: "", + de: "Other disorders of autonomic nervous system", + }, + { + key: "G90.9", + en: "", + de: "Disorder of autonomic nervous system, unspecified", + }, + { + key: "G91", + en: "", + de: "Hydrocephalus", + }, + { + key: "G91.0", + en: "", + de: "Communicating hydrocephalus", + }, + { + key: "G91.1", + en: "", + de: "Obstructive hydrocephalus", + }, + { + key: "G91.2", + en: "", + de: "Normal-pressure hydrocephalus", + }, + { + key: "G91.3", + en: "", + de: "Post-traumatic hydrocephalus, unspecified", + }, + { + key: "G91.8", + en: "", + de: "Other hydrocephalus", + }, + { + key: "G91.9", + en: "", + de: "Hydrocephalus, unspecified", + }, + { + key: "G92", + en: "", + de: "Toxic encephalopathy", + }, + { + key: "G93", + en: "", + de: "Other disorders of brain", + }, + { + key: "G93.0", + en: "", + de: "Cerebral cysts", + }, + { + key: "G93.1", + en: "", + de: "Anoxic brain damage, not elsewhere classified", + }, + { + key: "G93.2", + en: "", + de: "Benign intracranial hypertension", + }, + { + key: "G93.3", + en: "", + de: "Postviral fatigue syndrome", + }, + { + key: "G93.4", + en: "", + de: "Encephalopathy, unspecified", + }, + { + key: "G93.5", + en: "", + de: "Compression of brain", + }, + { + key: "G93.6", + en: "", + de: "Cerebral oedema", + }, + { + key: "G93.7", + en: "", + de: "Reye syndrome", + }, + { + key: "G93.8", + en: "", + de: "Other specified disorders of brain", + }, + { + key: "G93.9", + en: "", + de: "Disorder of brain, unspecified", + }, + { + key: "G95", + en: "", + de: "Other diseases of spinal cord", + }, + { + key: "G95.0", + en: "", + de: "Syringomyelia and syringobulbia", + }, + { + key: "G95.1", + en: "", + de: "Vascular myelopathies", + }, + { + key: "G95.2", + en: "", + de: "Cord compression, unspecified", + }, + { + key: "G95.8", + en: "", + de: "Other specified diseases of spinal cord", + }, + { + key: "G95.9", + en: "", + de: "Disease of spinal cord, unspecified", + }, + { + key: "G96", + en: "", + de: "Other disorders of central nervous system", + }, + { + key: "G96.0", + en: "", + de: "Cerebrospinal fluid leak", + }, + { + key: "G96.1", + en: "", + de: "Disorders of meninges, not elsewhere classified", + }, + { + key: "G96.8", + en: "", + de: "Other specified disorders of central nervous system", + }, + { + key: "G96.9", + en: "", + de: "Disorder of central nervous system, unspecified", + }, + { + key: "G97", + en: "", + de: "Postprocedural disorders of nervous system, not elsewhere classified", + }, + { + key: "G97.0", + en: "", + de: "Cerebrospinal fluid leak from spinal puncture", + }, + { + key: "G97.1", + en: "", + de: "Other reaction to spinal and lumbar puncture", + }, + { + key: "G97.2", + en: "", + de: "Intracranial hypotension following ventricular shunting", + }, + { + key: "G97.8", + en: "", + de: "Other postprocedural disorders of nervous system", + }, + { + key: "G97.9", + en: "", + de: "Postprocedural disorder of nervous system, unspecified", + }, + { + key: "G98", + en: "", + de: "Other disorders of nervous system, not elsewhere classified", + }, + { + key: "H00", + en: "", + de: "Hordeolum and chalazion", + }, + { + key: "H00.0", + en: "", + de: "Hordeolum and other deep inflammation of eyelid", + }, + { + key: "H00.1", + en: "", + de: "Chalazion", + }, + { + key: "H01", + en: "", + de: "Other inflammation of eyelid", + }, + { + key: "H01.0", + en: "", + de: "Blepharitis", + }, + { + key: "H01.1", + en: "", + de: "Noninfectious dermatoses of eyelid", + }, + { + key: "H01.8", + en: "", + de: "Other specified inflammation of eyelid", + }, + { + key: "H01.9", + en: "", + de: "Inflammation of eyelid, unspecified", + }, + { + key: "H02", + en: "", + de: "Other disorders of eyelid", + }, + { + key: "H02.0", + en: "", + de: "Entropion and trichiasis of eyelid", + }, + { + key: "H02.1", + en: "", + de: "Ectropion of eyelid", + }, + { + key: "H02.2", + en: "", + de: "Lagophthalmos", + }, + { + key: "H02.3", + en: "", + de: "Blepharochalasis", + }, + { + key: "H02.4", + en: "", + de: "Ptosis of eyelid", + }, + { + key: "H02.5", + en: "", + de: "Other disorders affecting eyelid function", + }, + { + key: "H02.6", + en: "", + de: "Xanthelasma of eyelid", + }, + { + key: "H02.7", + en: "", + de: "Other degenerative disorders of eyelid and periocular area", + }, + { + key: "H02.8", + en: "", + de: "Other specified disorders of eyelid", + }, + { + key: "H02.9", + en: "", + de: "Disorder of eyelid, unspecified", + }, + { + key: "H04", + en: "", + de: "Disorders of lacrimal system", + }, + { + key: "H04.0", + en: "", + de: "Dacryoadenitis", + }, + { + key: "H04.1", + en: "", + de: "Other disorders of lacrimal gland", + }, + { + key: "H04.2", + en: "", + de: "Epiphora", + }, + { + key: "H04.3", + en: "", + de: "Acute and unspecified inflammation of lacrimal passages", + }, + { + key: "H04.4", + en: "", + de: "Chronic inflammation of lacrimal passages", + }, + { + key: "H04.5", + en: "", + de: "Stenosis and insufficiency of lacrimal passages", + }, + { + key: "H04.6", + en: "", + de: "Other changes in lacrimal passages", + }, + { + key: "H04.8", + en: "", + de: "Other disorders of lacrimal system", + }, + { + key: "H04.9", + en: "", + de: "Disorder of lacrimal system, unspecified", + }, + { + key: "H05", + en: "", + de: "Disorders of orbit", + }, + { + key: "H05.0", + en: "", + de: "Acute inflammation of orbit", + }, + { + key: "H05.1", + en: "", + de: "Chronic inflammatory disorders of orbit", + }, + { + key: "H05.2", + en: "", + de: "Exophthalmic conditions", + }, + { + key: "H05.3", + en: "", + de: "Deformity of orbit", + }, + { + key: "H05.4", + en: "", + de: "Enophthalmos", + }, + { + key: "H05.5", + en: "", + de: "Retained (old) foreign body following penetrating wound of orbit", + }, + { + key: "H05.8", + en: "", + de: "Other disorders of orbit", + }, + { + key: "H05.9", + en: "", + de: "Disorder of orbit, unspecified", + }, + { + key: "H10", + en: "", + de: "Conjunctivitis", + }, + { + key: "H10.0", + en: "", + de: "Mucopurulent conjunctivitis", + }, + { + key: "H10.1", + en: "", + de: "Acute atopic conjunctivitis", + }, + { + key: "H10.2", + en: "", + de: "Other acute conjunctivitis", + }, + { + key: "H10.3", + en: "", + de: "Acute conjunctivitis, unspecified", + }, + { + key: "H10.4", + en: "", + de: "Chronic conjunctivitis", + }, + { + key: "H10.5", + en: "", + de: "Blepharoconjunctivitis", + }, + { + key: "H10.8", + en: "", + de: "Other conjunctivitis", + }, + { + key: "H10.9", + en: "", + de: "Conjunctivitis, unspecified", + }, + { + key: "H11", + en: "", + de: "Other disorders of conjunctiva", + }, + { + key: "H11.0", + en: "", + de: "Pterygium", + }, + { + key: "H11.1", + en: "", + de: "Conjunctival degenerations and deposits", + }, + { + key: "H11.2", + en: "", + de: "Conjunctival scars", + }, + { + key: "H11.3", + en: "", + de: "Conjunctival haemorrhage", + }, + { + key: "H11.4", + en: "", + de: "Other conjunctival vascular disorders and cysts", + }, + { + key: "H11.8", + en: "", + de: "Other specified disorders of conjunctiva", + }, + { + key: "H11.9", + en: "", + de: "Disorder of conjunctiva, unspecified", + }, + { + key: "H15", + en: "", + de: "Disorders of sclera", + }, + { + key: "H15.0", + en: "", + de: "Scleritis", + }, + { + key: "H15.1", + en: "", + de: "Episcleritis", + }, + { + key: "H15.8", + en: "", + de: "Other disorders of sclera", + }, + { + key: "H15.9", + en: "", + de: "Disorder of sclera, unspecified", + }, + { + key: "H16", + en: "", + de: "Keratitis", + }, + { + key: "H16.0", + en: "", + de: "Corneal ulcer", + }, + { + key: "H16.1", + en: "", + de: "Other superficial keratitis without conjunctivitis", + }, + { + key: "H16.2", + en: "", + de: "Keratoconjunctivitis", + }, + { + key: "H16.3", + en: "", + de: "Interstitial and deep keratitis", + }, + { + key: "H16.4", + en: "", + de: "Corneal neovascularization", + }, + { + key: "H16.8", + en: "", + de: "Other keratitis", + }, + { + key: "H16.9", + en: "", + de: "Keratitis, unspecified", + }, + { + key: "H17", + en: "", + de: "Corneal scars and opacities", + }, + { + key: "H17.0", + en: "", + de: "Adherent leukoma", + }, + { + key: "H17.1", + en: "", + de: "Other central corneal opacity", + }, + { + key: "H17.8", + en: "", + de: "Other corneal scars and opacities", + }, + { + key: "H17.9", + en: "", + de: "Corneal scar and opacity, unspecified", + }, + { + key: "H18", + en: "", + de: "Other disorders of cornea", + }, + { + key: "H18.0", + en: "", + de: "Corneal pigmentations and deposits", + }, + { + key: "H18.1", + en: "", + de: "Bullous keratopathy", + }, + { + key: "H18.2", + en: "", + de: "Other corneal oedema", + }, + { + key: "H18.3", + en: "", + de: "Changes in corneal membranes", + }, + { + key: "H18.4", + en: "", + de: "Corneal degeneration", + }, + { + key: "H18.5", + en: "", + de: "Hereditary corneal dystrophies", + }, + { + key: "H18.6", + en: "", + de: "Keratoconus", + }, + { + key: "H18.7", + en: "", + de: "Other corneal deformities", + }, + { + key: "H18.8", + en: "", + de: "Other specified disorders of cornea", + }, + { + key: "H18.9", + en: "", + de: "Disorder of cornea, unspecified", + }, + { + key: "H20", + en: "", + de: "Iridocyclitis", + }, + { + key: "H20.0", + en: "", + de: "Acute and subacute iridocyclitis", + }, + { + key: "H20.1", + en: "", + de: "Chronic iridocyclitis", + }, + { + key: "H20.2", + en: "", + de: "Lens-induced iridocyclitis", + }, + { + key: "H20.8", + en: "", + de: "Other iridocyclitis", + }, + { + key: "H20.9", + en: "", + de: "Iridocyclitis, unspecified", + }, + { + key: "H21", + en: "", + de: "Other disorders of iris and ciliary body", + }, + { + key: "H21.0", + en: "", + de: "Hyphaema", + }, + { + key: "H21.1", + en: "", + de: "Other vascular disorders of iris and ciliary body", + }, + { + key: "H21.2", + en: "", + de: "Degeneration of iris and ciliary body", + }, + { + key: "H21.3", + en: "", + de: "Cyst of iris, ciliary body and anterior chamber", + }, + { + key: "H21.4", + en: "", + de: "Pupillary membranes", + }, + { + key: "H21.5", + en: "", + de: "Other adhesions and disruptions of iris and ciliary body", + }, + { + key: "H21.8", + en: "", + de: "Other specified disorders of iris and ciliary body", + }, + { + key: "H21.9", + en: "", + de: "Disorder of iris and ciliary body, unspecified", + }, + { + key: "H25", + en: "", + de: "Senile cataract", + }, + { + key: "H25.0", + en: "", + de: "Senile incipient cataract", + }, + { + key: "H25.1", + en: "", + de: "Senile nuclear cataract", + }, + { + key: "H25.2", + en: "", + de: "Senile cataract, morgagnian type", + }, + { + key: "H25.8", + en: "", + de: "Other senile cataract", + }, + { + key: "H25.9", + en: "", + de: "Senile cataract, unspecified", + }, + { + key: "H26", + en: "", + de: "Other cataract", + }, + { + key: "H26.0", + en: "", + de: "Infantile, juvenile and presenile cataract", + }, + { + key: "H26.1", + en: "", + de: "Traumatic cataract", + }, + { + key: "H26.2", + en: "", + de: "Complicated cataract", + }, + { + key: "H26.3", + en: "", + de: "Drug-induced cataract", + }, + { + key: "H26.4", + en: "", + de: "After-cataract", + }, + { + key: "H26.8", + en: "", + de: "Other specified cataract", + }, + { + key: "H26.9", + en: "", + de: "Cataract, unspecified", + }, + { + key: "H27", + en: "", + de: "Other disorders of lens", + }, + { + key: "H27.0", + en: "", + de: "Aphakia", + }, + { + key: "H27.1", + en: "", + de: "Dislocation of lens", + }, + { + key: "H27.8", + en: "", + de: "Other specified disorders of lens", + }, + { + key: "H27.9", + en: "", + de: "Disorder of lens, unspecified", + }, + { + key: "H30", + en: "", + de: "Chorioretinal inflammation", + }, + { + key: "H30.0", + en: "", + de: "Focal chorioretinal inflammation", + }, + { + key: "H30.1", + en: "", + de: "Disseminated chorioretinal inflammation", + }, + { + key: "H30.2", + en: "", + de: "Posterior cyclitis", + }, + { + key: "H30.8", + en: "", + de: "Other chorioretinal inflammations", + }, + { + key: "H30.9", + en: "", + de: "Chorioretinal inflammation, unspecified", + }, + { + key: "H31", + en: "", + de: "Other disorders of choroid", + }, + { + key: "H31.0", + en: "", + de: "Chorioretinal scars", + }, + { + key: "H31.1", + en: "", + de: "Choroidal degeneration", + }, + { + key: "H31.2", + en: "", + de: "Hereditary choroidal dystrophy", + }, + { + key: "H31.3", + en: "", + de: "Choroidal haemorrhage and rupture", + }, + { + key: "H31.4", + en: "", + de: "Choroidal detachment", + }, + { + key: "H31.8", + en: "", + de: "Other specified disorders of choroid", + }, + { + key: "H31.9", + en: "", + de: "Disorder of choroid, unspecified", + }, + { + key: "H33", + en: "", + de: "Retinal detachments and breaks", + }, + { + key: "H33.0", + en: "", + de: "Retinal detachment with retinal break", + }, + { + key: "H33.1", + en: "", + de: "Retinoschisis and retinal cysts", + }, + { + key: "H33.2", + en: "", + de: "Serous retinal detachment", + }, + { + key: "H33.3", + en: "", + de: "Retinal breaks without detachment", + }, + { + key: "H33.4", + en: "", + de: "Traction detachment of retina", + }, + { + key: "H33.5", + en: "", + de: "Other retinal detachments", + }, + { + key: "H34", + en: "", + de: "Retinal vascular occlusions", + }, + { + key: "H34.0", + en: "", + de: "Transient retinal artery occlusion", + }, + { + key: "H34.1", + en: "", + de: "Central retinal artery occlusion", + }, + { + key: "H34.2", + en: "", + de: "Other retinal artery occlusions", + }, + { + key: "H34.8", + en: "", + de: "Other retinal vascular occlusions", + }, + { + key: "H34.9", + en: "", + de: "Retinal vascular occlusion, unspecified", + }, + { + key: "H35", + en: "", + de: "Other retinal disorders", + }, + { + key: "H35.0", + en: "", + de: "Background retinopathy and retinal vascular changes", + }, + { + key: "H35.1", + en: "", + de: "Retinopathy of prematurity", + }, + { + key: "H35.2", + en: "", + de: "Other proliferative retinopathy", + }, + { + key: "H35.3", + en: "", + de: "Degeneration of macula and posterior pole", + }, + { + key: "H35.4", + en: "", + de: "Peripheral retinal degeneration", + }, + { + key: "H35.5", + en: "", + de: "Hereditary retinal dystrophy", + }, + { + key: "H35.6", + en: "", + de: "Retinal haemorrhage", + }, + { + key: "H35.7", + en: "", + de: "Separation of retinal layers", + }, + { + key: "H35.8", + en: "", + de: "Other specified retinal disorders", + }, + { + key: "H35.9", + en: "", + de: "Retinal disorder, unspecified", + }, + { + key: "H40", + en: "", + de: "Glaucoma", + }, + { + key: "H40.0", + en: "", + de: "Glaucoma suspect", + }, + { + key: "H40.1", + en: "", + de: "Primary open-angle glaucoma", + }, + { + key: "H40.2", + en: "", + de: "Primary angle-closure glaucoma", + }, + { + key: "H40.3", + en: "", + de: "Glaucoma secondary to eye trauma", + }, + { + key: "H40.4", + en: "", + de: "Glaucoma secondary to eye inflammation", + }, + { + key: "H40.5", + en: "", + de: "Glaucoma secondary to other eye disorders", + }, + { + key: "H40.6", + en: "", + de: "Glaucoma secondary to drugs", + }, + { + key: "H40.8", + en: "", + de: "Other glaucoma", + }, + { + key: "H40.9", + en: "", + de: "Glaucoma, unspecified", + }, + { + key: "H43", + en: "", + de: "Disorders of vitreous body", + }, + { + key: "H43.0", + en: "", + de: "Vitreous prolapse", + }, + { + key: "H43.1", + en: "", + de: "Vitreous haemorrhage", + }, + { + key: "H43.2", + en: "", + de: "Crystalline deposits in vitreous body", + }, + { + key: "H43.3", + en: "", + de: "Other vitreous opacities", + }, + { + key: "H43.8", + en: "", + de: "Other disorders of vitreous body", + }, + { + key: "H43.9", + en: "", + de: "Disorder of vitreous body, unspecified", + }, + { + key: "H44", + en: "", + de: "Disorders of globe", + }, + { + key: "H44.0", + en: "", + de: "Purulent endophthalmitis", + }, + { + key: "H44.1", + en: "", + de: "Other endophthalmitis", + }, + { + key: "H44.2", + en: "", + de: "Degenerative myopia", + }, + { + key: "H44.3", + en: "", + de: "Other degenerative disorders of globe", + }, + { + key: "H44.4", + en: "", + de: "Hypotony of eye", + }, + { + key: "H44.5", + en: "", + de: "Degenerated conditions of globe", + }, + { + key: "H44.6", + en: "", + de: "Retained (old) intraocular foreign body, magnetic", + }, + { + key: "H44.7", + en: "", + de: "Retained (old) intraocular foreign body, nonmagnetic", + }, + { + key: "H44.8", + en: "", + de: "Other disorders of globe", + }, + { + key: "H44.9", + en: "", + de: "Disorder of globe, unspecified", + }, + { + key: "H46", + en: "", + de: "Optic neuritis", + }, + { + key: "H47", + en: "", + de: "Other disorders of optic [2nd] nerve and visual pathways", + }, + { + key: "H47.0", + en: "", + de: "Disorders of optic nerve, not elsewhere classified", + }, + { + key: "H47.1", + en: "", + de: "Papilloedema, unspecified", + }, + { + key: "H47.2", + en: "", + de: "Optic atrophy", + }, + { + key: "H47.3", + en: "", + de: "Other disorders of optic disc", + }, + { + key: "H47.4", + en: "", + de: "Disorders of optic chiasm", + }, + { + key: "H47.5", + en: "", + de: "Disorders of other visual pathways", + }, + { + key: "H47.6", + en: "", + de: "Disorders of visual cortex", + }, + { + key: "H47.7", + en: "", + de: "Disorder of visual pathways, unspecified", + }, + { + key: "H49", + en: "", + de: "Paralytic strabismus", + }, + { + key: "H49.0", + en: "", + de: "Third [oculomotor] nerve palsy", + }, + { + key: "H49.1", + en: "", + de: "Fourth [trochlear] nerve palsy", + }, + { + key: "H49.2", + en: "", + de: "Sixth [abducent] nerve palsy", + }, + { + key: "H49.3", + en: "", + de: "Total (external) ophthalmoplegia", + }, + { + key: "H49.4", + en: "", + de: "Progressive external ophthalmoplegia", + }, + { + key: "H49.8", + en: "", + de: "Other paralytic strabismus", + }, + { + key: "H49.9", + en: "", + de: "Paralytic strabismus, unspecified", + }, + { + key: "H50", + en: "", + de: "Other strabismus", + }, + { + key: "H50.0", + en: "", + de: "Convergent concomitant strabismus", + }, + { + key: "H50.1", + en: "", + de: "Divergent concomitant strabismus", + }, + { + key: "H50.2", + en: "", + de: "Vertical strabismus", + }, + { + key: "H50.3", + en: "", + de: "Intermittent heterotropia", + }, + { + key: "H50.4", + en: "", + de: "Other and unspecified heterotropia", + }, + { + key: "H50.5", + en: "", + de: "Heterophoria", + }, + { + key: "H50.6", + en: "", + de: "Mechanical strabismus", + }, + { + key: "H50.8", + en: "", + de: "Other specified strabismus", + }, + { + key: "H50.9", + en: "", + de: "Strabismus, unspecified", + }, + { + key: "H51", + en: "", + de: "Other disorders of binocular movement", + }, + { + key: "H51.0", + en: "", + de: "Palsy of conjugate gaze", + }, + { + key: "H51.1", + en: "", + de: "Convergence insufficiency and excess", + }, + { + key: "H51.2", + en: "", + de: "Internuclear ophthalmoplegia", + }, + { + key: "H51.8", + en: "", + de: "Other specified disorders of binocular movement", + }, + { + key: "H51.9", + en: "", + de: "Disorder of binocular movement, unspecified", + }, + { + key: "H52", + en: "", + de: "Disorders of refraction and accommodation", + }, + { + key: "H52.0", + en: "", + de: "Hypermetropia", + }, + { + key: "H52.1", + en: "", + de: "Myopia", + }, + { + key: "H52.2", + en: "", + de: "Astigmatism", + }, + { + key: "H52.3", + en: "", + de: "Anisometropia and aniseikonia", + }, + { + key: "H52.4", + en: "", + de: "Presbyopia", + }, + { + key: "H52.5", + en: "", + de: "Disorders of accommodation", + }, + { + key: "H52.6", + en: "", + de: "Other disorders of refraction", + }, + { + key: "H52.7", + en: "", + de: "Disorder of refraction, unspecified", + }, + { + key: "H53", + en: "", + de: "Visual disturbances", + }, + { + key: "H53.0", + en: "", + de: "Amblyopia ex anopsia", + }, + { + key: "H53.1", + en: "", + de: "Subjective visual disturbances", + }, + { + key: "H53.2", + en: "", + de: "Diplopia", + }, + { + key: "H53.3", + en: "", + de: "Other disorders of binocular vision", + }, + { + key: "H53.4", + en: "", + de: "Visual field defects", + }, + { + key: "H53.5", + en: "", + de: "Colour vision deficiencies", + }, + { + key: "H53.6", + en: "", + de: "Night blindness", + }, + { + key: "H53.8", + en: "", + de: "Other visual disturbances", + }, + { + key: "H53.9", + en: "", + de: "Visual disturbance, unspecified", + }, + { + key: "H54", + en: "", + de: "Visual impairment including blindness (binocular or monocular)", + }, + { + key: "H54.0", + en: "", + de: "Blindness, binocular", + }, + { + key: "H54.1", + en: "", + de: "Severe visual impairment, binocular", + }, + { + key: "H54.2", + en: "", + de: "Moderate visual impairment, binocular", + }, + { + key: "H54.3", + en: "", + de: "Mild or no visual impairment, binocular", + }, + { + key: "H54.4", + en: "", + de: "Blindness, monocular", + }, + { + key: "H54.5", + en: "", + de: "Severe visual impairment, monocular", + }, + { + key: "H54.6", + en: "", + de: "Moderate visual impairment, monocular", + }, + { + key: "H54.9", + en: "", + de: "Unspecified visual impairment (binocular)", + }, + { + key: "H55", + en: "", + de: "Nystagmus and other irregular eye movements", + }, + { + key: "H57", + en: "", + de: "Other disorders of eye and adnexa", + }, + { + key: "H57.0", + en: "", + de: "Anomalies of pupillary function", + }, + { + key: "H57.1", + en: "", + de: "Ocular pain", + }, + { + key: "H57.8", + en: "", + de: "Other specified disorders of eye and adnexa", + }, + { + key: "H57.9", + en: "", + de: "Disorder of eye and adnexa, unspecified", + }, + { + key: "H59", + en: "", + de: "Postprocedural disorders of eye and adnexa, not elsewhere classified", + }, + { + key: "H59.0", + en: "", + de: "Keratopathy (bullous aphakic) following cataract surgery", + }, + { + key: "H59.8", + en: "", + de: "Other postprocedural disorders of eye and adnexa", + }, + { + key: "H59.9", + en: "", + de: "Postprocedural disorder of eye and adnexa, unspecified", + }, + { + key: "H60", + en: "", + de: "Otitis externa", + }, + { + key: "H60.0", + en: "", + de: "Abscess of external ear", + }, + { + key: "H60.1", + en: "", + de: "Cellulitis of external ear", + }, + { + key: "H60.2", + en: "", + de: "Malignant otitis externa", + }, + { + key: "H60.3", + en: "", + de: "Other infective otitis externa", + }, + { + key: "H60.4", + en: "", + de: "Cholesteatoma of external ear", + }, + { + key: "H60.5", + en: "", + de: "Acute otitis externa, noninfective", + }, + { + key: "H60.8", + en: "", + de: "Other otitis externa", + }, + { + key: "H60.9", + en: "", + de: "Otitis externa, unspecified", + }, + { + key: "H61", + en: "", + de: "Other disorders of external ear", + }, + { + key: "H61.0", + en: "", + de: "Perichondritis of external ear", + }, + { + key: "H61.1", + en: "", + de: "Noninfective disorders of pinna", + }, + { + key: "H61.2", + en: "", + de: "Impacted cerumen", + }, + { + key: "H61.3", + en: "", + de: "Acquired stenosis of external ear canal", + }, + { + key: "H61.8", + en: "", + de: "Other specified disorders of external ear", + }, + { + key: "H61.9", + en: "", + de: "Disorder of external ear, unspecified", + }, + { + key: "H65", + en: "", + de: "Nonsuppurative otitis media", + }, + { + key: "H65.0", + en: "", + de: "Acute serous otitis media", + }, + { + key: "H65.1", + en: "", + de: "Other acute nonsuppurative otitis media", + }, + { + key: "H65.2", + en: "", + de: "Chronic serous otitis media", + }, + { + key: "H65.3", + en: "", + de: "Chronic mucoid otitis media", + }, + { + key: "H65.4", + en: "", + de: "Other chronic nonsuppurative otitis media", + }, + { + key: "H65.9", + en: "", + de: "Nonsuppurative otitis media, unspecified", + }, + { + key: "H66", + en: "", + de: "Suppurative and unspecified otitis media", + }, + { + key: "H66.0", + en: "", + de: "Acute suppurative otitis media", + }, + { + key: "H66.1", + en: "", + de: "Chronic tubotympanic suppurative otitis media", + }, + { + key: "H66.2", + en: "", + de: "Chronic atticoantral suppurative otitis media", + }, + { + key: "H66.3", + en: "", + de: "Other chronic suppurative otitis media", + }, + { + key: "H66.4", + en: "", + de: "Suppurative otitis media, unspecified", + }, + { + key: "H66.9", + en: "", + de: "Otitis media, unspecified", + }, + { + key: "H68", + en: "", + de: "Eustachian salpingitis and obstruction", + }, + { + key: "H68.0", + en: "", + de: "Eustachian salpingitis", + }, + { + key: "H68.1", + en: "", + de: "Obstruction of Eustachian tube", + }, + { + key: "H69", + en: "", + de: "Other disorders of Eustachian tube", + }, + { + key: "H69.0", + en: "", + de: "Patulous Eustachian tube", + }, + { + key: "H69.8", + en: "", + de: "Other specified disorders of Eustachian tube", + }, + { + key: "H69.9", + en: "", + de: "Eustachian tube disorder, unspecified", + }, + { + key: "H70", + en: "", + de: "Mastoiditis and related conditions", + }, + { + key: "H70.0", + en: "", + de: "Acute mastoiditis", + }, + { + key: "H70.1", + en: "", + de: "Chronic mastoiditis", + }, + { + key: "H70.2", + en: "", + de: "Petrositis", + }, + { + key: "H70.8", + en: "", + de: "Other mastoiditis and related conditions", + }, + { + key: "H70.9", + en: "", + de: "Mastoiditis, unspecified", + }, + { + key: "H71", + en: "", + de: "Cholesteatoma of middle ear", + }, + { + key: "H72", + en: "", + de: "Perforation of tympanic membrane", + }, + { + key: "H72.0", + en: "", + de: "Central perforation of tympanic membrane", + }, + { + key: "H72.1", + en: "", + de: "Attic perforation of tympanic membrane", + }, + { + key: "H72.2", + en: "", + de: "Other marginal perforations of tympanic membrane", + }, + { + key: "H72.8", + en: "", + de: "Other perforations of tympanic membrane", + }, + { + key: "H72.9", + en: "", + de: "Perforation of tympanic membrane, unspecified", + }, + { + key: "H73", + en: "", + de: "Other disorders of tympanic membrane", + }, + { + key: "H73.0", + en: "", + de: "Acute myringitis", + }, + { + key: "H73.1", + en: "", + de: "Chronic myringitis", + }, + { + key: "H73.8", + en: "", + de: "Other specified disorders of tympanic membrane", + }, + { + key: "H73.9", + en: "", + de: "Disorder of tympanic membrane, unspecified", + }, + { + key: "H74", + en: "", + de: "Other disorders of middle ear and mastoid", + }, + { + key: "H74.0", + en: "", + de: "Tympanosclerosis", + }, + { + key: "H74.1", + en: "", + de: "Adhesive middle ear disease", + }, + { + key: "H74.2", + en: "", + de: "Discontinuity and dislocation of ear ossicles", + }, + { + key: "H74.3", + en: "", + de: "Other acquired abnormalities of ear ossicles", + }, + { + key: "H74.4", + en: "", + de: "Polyp of middle ear", + }, + { + key: "H74.8", + en: "", + de: "Other specified disorders of middle ear and mastoid", + }, + { + key: "H74.9", + en: "", + de: "Disorder of middle ear and mastoid, unspecified", + }, + { + key: "H80", + en: "", + de: "Otosclerosis", + }, + { + key: "H80.0", + en: "", + de: "Otosclerosis involving oval window, nonobliterative", + }, + { + key: "H80.1", + en: "", + de: "Otosclerosis involving oval window, obliterative", + }, + { + key: "H80.2", + en: "", + de: "Cochlear otosclerosis", + }, + { + key: "H80.8", + en: "", + de: "Other otosclerosis", + }, + { + key: "H80.9", + en: "", + de: "Otosclerosis, unspecified", + }, + { + key: "H81", + en: "", + de: "Disorders of vestibular function", + }, + { + key: "H81.0", + en: "", + de: "Ménière disease", + }, + { + key: "H81.1", + en: "", + de: "Benign paroxysmal vertigo", + }, + { + key: "H81.2", + en: "", + de: "Vestibular neuronitis", + }, + { + key: "H81.3", + en: "", + de: "Other peripheral vertigo", + }, + { + key: "H81.4", + en: "", + de: "Vertigo of central origin", + }, + { + key: "H81.8", + en: "", + de: "Other disorders of vestibular function", + }, + { + key: "H81.9", + en: "", + de: "Disorder of vestibular function, unspecified", + }, + { + key: "H83", + en: "", + de: "Other diseases of inner ear", + }, + { + key: "H83.0", + en: "", + de: "Labyrinthitis", + }, + { + key: "H83.1", + en: "", + de: "Labyrinthine fistula", + }, + { + key: "H83.2", + en: "", + de: "Labyrinthine dysfunction", + }, + { + key: "H83.3", + en: "", + de: "Noise effects on inner ear", + }, + { + key: "H83.8", + en: "", + de: "Other specified diseases of inner ear", + }, + { + key: "H83.9", + en: "", + de: "Disease of inner ear, unspecified", + }, + { + key: "H90", + en: "", + de: "Conductive and sensorineural hearing loss", + }, + { + key: "H90.0", + en: "", + de: "Conductive hearing loss, bilateral", + }, + { + key: "H90.1", + en: "", + de: "Conductive hearing loss, unilateral with unrestricted hearing on the contralateral side", + }, + { + key: "H90.2", + en: "", + de: "Conductive hearing loss, unspecified", + }, + { + key: "H90.3", + en: "", + de: "Sensorineural hearing loss, bilateral", + }, + { + key: "H90.4", + en: "", + de: "Sensorineural hearing loss, unilateral with unrestricted hearing on the contralateral side", + }, + { + key: "H90.5", + en: "", + de: "Sensorineural hearing loss, unspecified", + }, + { + key: "H90.6", + en: "", + de: "Mixed conductive and sensorineural hearing loss, bilateral", + }, + { + key: "H90.7", + en: "", + de: "Mixed conductive and sensorineural hearing loss, unilateral with unrestricted hearing on the contralateral side", + }, + { + key: "H90.8", + en: "", + de: "Mixed conductive and sensorineural hearing loss, unspecified", + }, + { + key: "H91", + en: "", + de: "Other hearing loss", + }, + { + key: "H91.0", + en: "", + de: "Ototoxic hearing loss", + }, + { + key: "H91.1", + en: "", + de: "Presbycusis", + }, + { + key: "H91.2", + en: "", + de: "Sudden idiopathic hearing loss", + }, + { + key: "H91.3", + en: "", + de: "Deaf mutism, not elsewhere classified", + }, + { + key: "H91.8", + en: "", + de: "Other specified hearing loss", + }, + { + key: "H91.9", + en: "", + de: "Hearing loss, unspecified", + }, + { + key: "H92", + en: "", + de: "Otalgia and effusion of ear", + }, + { + key: "H92.0", + en: "", + de: "Otalgia", + }, + { + key: "H92.1", + en: "", + de: "Otorrhoea", + }, + { + key: "H92.2", + en: "", + de: "Otorrhagia", + }, + { + key: "H93", + en: "", + de: "Other disorders of ear, not elsewhere classified", + }, + { + key: "H93.0", + en: "", + de: "Degenerative and vascular disorders of ear", + }, + { + key: "H93.1", + en: "", + de: "Tinnitus", + }, + { + key: "H93.2", + en: "", + de: "Other abnormal auditory perceptions", + }, + { + key: "H93.3", + en: "", + de: "Disorders of acoustic nerve", + }, + { + key: "H93.8", + en: "", + de: "Other specified disorders of ear", + }, + { + key: "H93.9", + en: "", + de: "Disorder of ear, unspecified", + }, + { + key: "H95", + en: "", + de: "Postprocedural disorders of ear and mastoid process, not elsewhere classified", + }, + { + key: "H95.0", + en: "", + de: "Recurrent cholesteatoma of postmastoidectomy cavity", + }, + { + key: "H95.1", + en: "", + de: "Other disorders following mastoidectomy", + }, + { + key: "H95.8", + en: "", + de: "Other postprocedural disorders of ear and mastoid process", + }, + { + key: "H95.9", + en: "", + de: "Postprocedural disorder of ear and mastoid process, unspecified", + }, + { + key: "I00", + en: "", + de: "Rheumatic fever without mention of heart involvement", + }, + { + key: "I01", + en: "", + de: "Rheumatic fever with heart involvement", + }, + { + key: "I01.0", + en: "", + de: "Acute rheumatic pericarditis", + }, + { + key: "I01.1", + en: "", + de: "Acute rheumatic endocarditis", + }, + { + key: "I01.2", + en: "", + de: "Acute rheumatic myocarditis", + }, + { + key: "I01.8", + en: "", + de: "Other acute rheumatic heart disease", + }, + { + key: "I01.9", + en: "", + de: "Acute rheumatic heart disease, unspecified", + }, + { + key: "I02", + en: "", + de: "Rheumatic chorea", + }, + { + key: "I02.0", + en: "", + de: "Rheumatic chorea with heart involvement", + }, + { + key: "I02.9", + en: "", + de: "Rheumatic chorea without heart involvement", + }, + { + key: "I05", + en: "", + de: "Rheumatic mitral valve diseases", + }, + { + key: "I05.0", + en: "", + de: "Mitral stenosis", + }, + { + key: "I05.1", + en: "", + de: "Rheumatic mitral insufficiency", + }, + { + key: "I05.2", + en: "", + de: "Mitral stenosis with insufficiency", + }, + { + key: "I05.8", + en: "", + de: "Other mitral valve diseases", + }, + { + key: "I05.9", + en: "", + de: "Mitral valve disease, unspecified", + }, + { + key: "I06", + en: "", + de: "Rheumatic aortic valve diseases", + }, + { + key: "I06.0", + en: "", + de: "Rheumatic aortic stenosis", + }, + { + key: "I06.1", + en: "", + de: "Rheumatic aortic insufficiency", + }, + { + key: "I06.2", + en: "", + de: "Rheumatic aortic stenosis with insufficiency", + }, + { + key: "I06.8", + en: "", + de: "Other rheumatic aortic valve diseases", + }, + { + key: "I06.9", + en: "", + de: "Rheumatic aortic valve disease, unspecified", + }, + { + key: "I07", + en: "", + de: "Rheumatic tricuspid valve diseases", + }, + { + key: "I07.0", + en: "", + de: "Tricuspid stenosis", + }, + { + key: "I07.1", + en: "", + de: "Tricuspid insufficiency", + }, + { + key: "I07.2", + en: "", + de: "Tricuspid stenosis with insufficiency", + }, + { + key: "I07.8", + en: "", + de: "Other tricuspid valve diseases", + }, + { + key: "I07.9", + en: "", + de: "Tricuspid valve disease, unspecified", + }, + { + key: "I08", + en: "", + de: "Multiple valve diseases", + }, + { + key: "I08.0", + en: "", + de: "Disorders of both mitral and aortic valves", + }, + { + key: "I08.1", + en: "", + de: "Disorders of both mitral and tricuspid valves", + }, + { + key: "I08.2", + en: "", + de: "Disorders of both aortic and tricuspid valves", + }, + { + key: "I08.3", + en: "", + de: "Combined disorders of mitral, aortic and tricuspid valves", + }, + { + key: "I08.8", + en: "", + de: "Other multiple valve diseases", + }, + { + key: "I08.9", + en: "", + de: "Multiple valve disease, unspecified", + }, + { + key: "I09", + en: "", + de: "Other rheumatic heart diseases", + }, + { + key: "I09.0", + en: "", + de: "Rheumatic myocarditis", + }, + { + key: "I09.1", + en: "", + de: "Rheumatic diseases of endocardium, valve unspecified", + }, + { + key: "I09.2", + en: "", + de: "Chronic rheumatic pericarditis", + }, + { + key: "I09.8", + en: "", + de: "Other specified rheumatic heart diseases", + }, + { + key: "I09.9", + en: "", + de: "Rheumatic heart disease, unspecified", + }, + { + key: "I10", + en: "", + de: "Essential (primary) hypertension", + }, + { + key: "I11", + en: "", + de: "Hypertensive heart disease", + }, + { + key: "I11.0", + en: "", + de: "Hypertensive heart disease with (congestive) heart failure", + }, + { + key: "I11.9", + en: "", + de: "Hypertensive heart disease without (congestive) heart failure", + }, + { + key: "I12", + en: "", + de: "Hypertensive renal disease", + }, + { + key: "I12.0", + en: "", + de: "Hypertensive renal disease with renal failure", + }, + { + key: "I12.9", + en: "", + de: "Hypertensive renal disease without renal failure", + }, + { + key: "I13", + en: "", + de: "Hypertensive heart and renal disease", + }, + { + key: "I13.0", + en: "", + de: "Hypertensive heart and renal disease with (congestive) heart failure", + }, + { + key: "I13.1", + en: "", + de: "Hypertensive heart and renal disease with renal failure", + }, + { + key: "I13.2", + en: "", + de: "Hypertensive heart and renal disease with both (congestive) heart failure and renal failure", + }, + { + key: "I13.9", + en: "", + de: "Hypertensive heart and renal disease, unspecified", + }, + { + key: "I15", + en: "", + de: "Secondary hypertension", + }, + { + key: "I15.0", + en: "", + de: "Renovascular hypertension", + }, + { + key: "I15.1", + en: "", + de: "Hypertension secondary to other renal disorders", + }, + { + key: "I15.2", + en: "", + de: "Hypertension secondary to endocrine disorders", + }, + { + key: "I15.8", + en: "", + de: "Other secondary hypertension", + }, + { + key: "I15.9", + en: "", + de: "Secondary hypertension, unspecified", + }, + { + key: "I20", + en: "", + de: "Angina pectoris", + }, + { + key: "I20.0", + en: "", + de: "Unstable angina", + }, + { + key: "I20.1", + en: "", + de: "Angina pectoris with documented spasm", + }, + { + key: "I20.8", + en: "", + de: "Other forms of angina pectoris", + }, + { + key: "I20.9", + en: "", + de: "Angina pectoris, unspecified", + }, + { + key: "I21", + en: "", + de: "Acute myocardial infarction", + }, + { + key: "I21.0", + en: "", + de: "Acute transmural myocardial infarction of anterior wall", + }, + { + key: "I21.1", + en: "", + de: "Acute transmural myocardial infarction of inferior wall", + }, + { + key: "I21.2", + en: "", + de: "Acute transmural myocardial infarction of other sites", + }, + { + key: "I21.3", + en: "", + de: "Acute transmural myocardial infarction of unspecified site", + }, + { + key: "I21.4", + en: "", + de: "Acute subendocardial myocardial infarction", + }, + { + key: "I21.9", + en: "", + de: "Acute myocardial infarction, unspecified", + }, + { + key: "I22", + en: "", + de: "Subsequent myocardial infarction", + }, + { + key: "I22.0", + en: "", + de: "Subsequent myocardial infarction of anterior wall", + }, + { + key: "I22.1", + en: "", + de: "Subsequent myocardial infarction of inferior wall", + }, + { + key: "I22.8", + en: "", + de: "Subsequent myocardial infarction of other sites", + }, + { + key: "I22.9", + en: "", + de: "Subsequent myocardial infarction of unspecified site", + }, + { + key: "I23", + en: "", + de: "Certain current complications following acute myocardial infarction", + }, + { + key: "I23.0", + en: "", + de: "Haemopericardium as current complication following acute myocardial infarction", + }, + { + key: "I23.1", + en: "", + de: "Atrial septal defect as current complication following acute myocardial infarction", + }, + { + key: "I23.2", + en: "", + de: "Ventricular septal defect as current complication following acute myocardial infarction", + }, + { + key: "I23.3", + en: "", + de: "Rupture of cardiac wall without haemopericardium as current complication following acute myocardial infarction", + }, + { + key: "I23.4", + en: "", + de: "Rupture of chordae tendineae as current complication following acute myocardial infarction", + }, + { + key: "I23.5", + en: "", + de: "Rupture of papillary muscle as current complication following acute myocardial infarction", + }, + { + key: "I23.6", + en: "", + de: "Thrombosis of atrium, auricular appendage, and ventricle as current complications following acute myocardial infarction", + }, + { + key: "I23.8", + en: "", + de: "Other current complications following acute myocardial infarction", + }, + { + key: "I24", + en: "", + de: "Other acute ischaemic heart diseases", + }, + { + key: "I24.0", + en: "", + de: "Coronary thrombosis not resulting in myocardial infarction", + }, + { + key: "I24.1", + en: "", + de: "Dressler syndrome", + }, + { + key: "I24.8", + en: "", + de: "Other forms of acute ischaemic heart disease", + }, + { + key: "I24.9", + en: "", + de: "Acute ischaemic heart disease, unspecified", + }, + { + key: "I25", + en: "", + de: "Chronic ischaemic heart disease", + }, + { + key: "I25.0", + en: "", + de: "Atherosclerotic cardiovascular disease, so described", + }, + { + key: "I25.1", + en: "", + de: "Atherosclerotic heart disease", + }, + { + key: "I25.2", + en: "", + de: "Old myocardial infarction", + }, + { + key: "I25.3", + en: "", + de: "Aneurysm of heart", + }, + { + key: "I25.4", + en: "", + de: "Coronary artery aneurysm and dissection", + }, + { + key: "I25.5", + en: "", + de: "Ischaemic cardiomyopathy", + }, + { + key: "I25.6", + en: "", + de: "Silent myocardial ischaemia", + }, + { + key: "I25.8", + en: "", + de: "Other forms of chronic ischaemic heart disease", + }, + { + key: "I25.9", + en: "", + de: "Chronic ischaemic heart disease, unspecified", + }, + { + key: "I26", + en: "", + de: "Pulmonary embolism", + }, + { + key: "I26.0", + en: "", + de: "Pulmonary embolism with mention of acute cor pulmonale", + }, + { + key: "I26.9", + en: "", + de: "Pulmonary embolism without mention of acute cor pulmonale", + }, + { + key: "I27", + en: "", + de: "Other pulmonary heart diseases", + }, + { + key: "I27.0", + en: "", + de: "Primary pulmonary hypertension", + }, + { + key: "I27.1", + en: "", + de: "Kyphoscoliotic heart disease", + }, + { + key: "I27.2", + en: "", + de: "Other secondary pulmonary hypertension", + }, + { + key: "I27.8", + en: "", + de: "Other specified pulmonary heart diseases", + }, + { + key: "I27.9", + en: "", + de: "Pulmonary heart disease, unspecified", + }, + { + key: "I28", + en: "", + de: "Other diseases of pulmonary vessels", + }, + { + key: "I28.0", + en: "", + de: "Arteriovenous fistula of pulmonary vessels", + }, + { + key: "I28.1", + en: "", + de: "Aneurysm of pulmonary artery", + }, + { + key: "I28.8", + en: "", + de: "Other specified diseases of pulmonary vessels", + }, + { + key: "I28.9", + en: "", + de: "Disease of pulmonary vessels, unspecified", + }, + { + key: "I30", + en: "", + de: "Acute pericarditis", + }, + { + key: "I30.0", + en: "", + de: "Acute nonspecific idiopathic pericarditis", + }, + { + key: "I30.1", + en: "", + de: "Infective pericarditis", + }, + { + key: "I30.8", + en: "", + de: "Other forms of acute pericarditis", + }, + { + key: "I30.9", + en: "", + de: "Acute pericarditis, unspecified", + }, + { + key: "I31", + en: "", + de: "Other diseases of pericardium", + }, + { + key: "I31.0", + en: "", + de: "Chronic adhesive pericarditis", + }, + { + key: "I31.1", + en: "", + de: "Chronic constrictive pericarditis", + }, + { + key: "I31.2", + en: "", + de: "Haemopericardium, not elsewhere classified", + }, + { + key: "I31.3", + en: "", + de: "Pericardial effusion (noninflammatory)", + }, + { + key: "I31.8", + en: "", + de: "Other specified diseases of pericardium", + }, + { + key: "I31.9", + en: "", + de: "Disease of pericardium, unspecified", + }, + { + key: "I33", + en: "", + de: "Acute and subacute endocarditis", + }, + { + key: "I33.0", + en: "", + de: "Acute and subacute infective endocarditis", + }, + { + key: "I33.9", + en: "", + de: "Acute endocarditis, unspecified", + }, + { + key: "I34", + en: "", + de: "Nonrheumatic mitral valve disorders", + }, + { + key: "I34.0", + en: "", + de: "Mitral (valve) insufficiency", + }, + { + key: "I34.1", + en: "", + de: "Mitral (valve) prolapse", + }, + { + key: "I34.2", + en: "", + de: "Nonrheumatic mitral (valve) stenosis", + }, + { + key: "I34.8", + en: "", + de: "Other nonrheumatic mitral valve disorders", + }, + { + key: "I34.9", + en: "", + de: "Nonrheumatic mitral valve disorder, unspecified", + }, + { + key: "I35", + en: "", + de: "Nonrheumatic aortic valve disorders", + }, + { + key: "I35.0", + en: "", + de: "Aortic (valve) stenosis", + }, + { + key: "I35.1", + en: "", + de: "Aortic (valve) insufficiency", + }, + { + key: "I35.2", + en: "", + de: "Aortic (valve) stenosis with insufficiency", + }, + { + key: "I35.8", + en: "", + de: "Other aortic valve disorders", + }, + { + key: "I35.9", + en: "", + de: "Aortic valve disorder, unspecified", + }, + { + key: "I36", + en: "", + de: "Nonrheumatic tricuspid valve disorders", + }, + { + key: "I36.0", + en: "", + de: "Nonrheumatic tricuspid (valve) stenosis", + }, + { + key: "I36.1", + en: "", + de: "Nonrheumatic tricuspid (valve) insufficiency", + }, + { + key: "I36.2", + en: "", + de: "Nonrheumatic tricuspid (valve) stenosis with insufficiency", + }, + { + key: "I36.8", + en: "", + de: "Other nonrheumatic tricuspid valve disorders", + }, + { + key: "I36.9", + en: "", + de: "Nonrheumatic tricuspid valve disorder, unspecified", + }, + { + key: "I37", + en: "", + de: "Pulmonary valve disorders", + }, + { + key: "I37.0", + en: "", + de: "Pulmonary valve stenosis", + }, + { + key: "I37.1", + en: "", + de: "Pulmonary valve insufficiency", + }, + { + key: "I37.2", + en: "", + de: "Pulmonary valve stenosis with insufficiency", + }, + { + key: "I37.8", + en: "", + de: "Other pulmonary valve disorders", + }, + { + key: "I37.9", + en: "", + de: "Pulmonary valve disorder, unspecified", + }, + { + key: "I38", + en: "", + de: "Endocarditis, valve unspecified", + }, + { + key: "I40", + en: "", + de: "Acute myocarditis", + }, + { + key: "I40.0", + en: "", + de: "Infective myocarditis", + }, + { + key: "I40.1", + en: "", + de: "Isolated myocarditis", + }, + { + key: "I40.8", + en: "", + de: "Other acute myocarditis", + }, + { + key: "I40.9", + en: "", + de: "Acute myocarditis, unspecified", + }, + { + key: "I42", + en: "", + de: "Cardiomyopathy", + }, + { + key: "I42.0", + en: "", + de: "Dilated cardiomyopathy", + }, + { + key: "I42.1", + en: "", + de: "Obstructive hypertrophic cardiomyopathy", + }, + { + key: "I42.2", + en: "", + de: "Other hypertrophic cardiomyopathy", + }, + { + key: "I42.3", + en: "", + de: "Endomyocardial (eosinophilic) disease", + }, + { + key: "I42.4", + en: "", + de: "Endocardial fibroelastosis", + }, + { + key: "I42.5", + en: "", + de: "Other restrictive cardiomyopathy", + }, + { + key: "I42.6", + en: "", + de: "Alcoholic cardiomyopathy", + }, + { + key: "I42.7", + en: "", + de: "Cardiomyopathy due to drugs and other external agents", + }, + { + key: "I42.8", + en: "", + de: "Other cardiomyopathies", + }, + { + key: "I42.9", + en: "", + de: "Cardiomyopathy, unspecified", + }, + { + key: "I44", + en: "", + de: "Atrioventricular and left bundle-branch block", + }, + { + key: "I44.0", + en: "", + de: "Atrioventricular block, first degree", + }, + { + key: "I44.1", + en: "", + de: "Atrioventricular block, second degree", + }, + { + key: "I44.2", + en: "", + de: "Atrioventricular block, complete", + }, + { + key: "I44.3", + en: "", + de: "Other and unspecified atrioventricular block", + }, + { + key: "I44.4", + en: "", + de: "Left anterior fascicular block", + }, + { + key: "I44.5", + en: "", + de: "Left posterior fascicular block", + }, + { + key: "I44.6", + en: "", + de: "Other and unspecified fascicular block", + }, + { + key: "I44.7", + en: "", + de: "Left bundle-branch block, unspecified", + }, + { + key: "I45", + en: "", + de: "Other conduction disorders", + }, + { + key: "I45.0", + en: "", + de: "Right fascicular block", + }, + { + key: "I45.1", + en: "", + de: "Other and unspecified right bundle-branch block", + }, + { + key: "I45.2", + en: "", + de: "Bifascicular block", + }, + { + key: "I45.3", + en: "", + de: "Trifascicular block", + }, + { + key: "I45.4", + en: "", + de: "Nonspecific intraventricular block", + }, + { + key: "I45.5", + en: "", + de: "Other specified heart block", + }, + { + key: "I45.6", + en: "", + de: "Pre-excitation syndrome", + }, + { + key: "I45.8", + en: "", + de: "Other specified conduction disorders", + }, + { + key: "I45.9", + en: "", + de: "Conduction disorder, unspecified", + }, + { + key: "I46", + en: "", + de: "Cardiac arrest", + }, + { + key: "I46.0", + en: "", + de: "Cardiac arrest with successful resuscitation", + }, + { + key: "I46.1", + en: "", + de: "Sudden cardiac death, so described", + }, + { + key: "I46.9", + en: "", + de: "Cardiac arrest, unspecified", + }, + { + key: "I47", + en: "", + de: "Paroxysmal tachycardia", + }, + { + key: "I47.0", + en: "", + de: "Re-entry ventricular arrhythmia", + }, + { + key: "I47.1", + en: "", + de: "Supraventricular tachycardia", + }, + { + key: "I47.2", + en: "", + de: "Ventricular tachycardia", + }, + { + key: "I47.9", + en: "", + de: "Paroxysmal tachycardia, unspecified", + }, + { + key: "I48", + en: "", + de: "Atrial fibrillation and flutter", + }, + { + key: "I48.0", + en: "", + de: "Paroxysmal atrial fibrillation", + }, + { + key: "I48.1", + en: "", + de: "Persistent atrial fibrillation", + }, + { + key: "I48.2", + en: "", + de: "Chronic atrial fibrillation", + }, + { + key: "I48.3", + en: "", + de: "Typical atrial flutter", + }, + { + key: "I48.4", + en: "", + de: "Atypical atrial flutter", + }, + { + key: "I48.9", + en: "", + de: "Atrial fibrillation and atrial flutter, unspecified", + }, + { + key: "I49", + en: "", + de: "Other cardiac arrhythmias", + }, + { + key: "I49.0", + en: "", + de: "Ventricular fibrillation and flutter", + }, + { + key: "I49.1", + en: "", + de: "Atrial premature depolarization", + }, + { + key: "I49.2", + en: "", + de: "Junctional premature depolarization", + }, + { + key: "I49.3", + en: "", + de: "Ventricular premature depolarization", + }, + { + key: "I49.4", + en: "", + de: "Other and unspecified premature depolarization", + }, + { + key: "I49.5", + en: "", + de: "Sick sinus syndrome", + }, + { + key: "I49.8", + en: "", + de: "Other specified cardiac arrhythmias", + }, + { + key: "I49.9", + en: "", + de: "Cardiac arrhythmia, unspecified", + }, + { + key: "I50", + en: "", + de: "Heart failure", + }, + { + key: "I50.0", + en: "", + de: "Congestive heart failure", + }, + { + key: "I50.1", + en: "", + de: "Left ventricular failure", + }, + { + key: "I50.9", + en: "", + de: "Heart failure, unspecified", + }, + { + key: "I51", + en: "", + de: "Complications and ill-defined descriptions of heart disease", + }, + { + key: "I51.0", + en: "", + de: "Cardiac septal defect, acquired", + }, + { + key: "I51.1", + en: "", + de: "Rupture of chordae tendineae, not elsewhere classified", + }, + { + key: "I51.2", + en: "", + de: "Rupture of papillary muscle, not elsewhere classified", + }, + { + key: "I51.3", + en: "", + de: "Intracardiac thrombosis, not elsewhere classified", + }, + { + key: "I51.4", + en: "", + de: "Myocarditis, unspecified", + }, + { + key: "I51.5", + en: "", + de: "Myocardial degeneration", + }, + { + key: "I51.6", + en: "", + de: "Cardiovascular disease, unspecified", + }, + { + key: "I51.7", + en: "", + de: "Cardiomegaly", + }, + { + key: "I51.8", + en: "", + de: "Other ill-defined heart diseases", + }, + { + key: "I51.9", + en: "", + de: "Heart disease, unspecified", + }, + { + key: "I60", + en: "", + de: "Subarachnoid haemorrhage", + }, + { + key: "I60.0", + en: "", + de: "Subarachnoid haemorrhage from carotid siphon and bifurcation", + }, + { + key: "I60.1", + en: "", + de: "Subarachnoid haemorrhage from middle cerebral artery", + }, + { + key: "I60.2", + en: "", + de: "Subarachnoid haemorrhage from anterior communicating artery", + }, + { + key: "I60.3", + en: "", + de: "Subarachnoid haemorrhage from posterior communicating artery", + }, + { + key: "I60.4", + en: "", + de: "Subarachnoid haemorrhage from basilar artery", + }, + { + key: "I60.5", + en: "", + de: "Subarachnoid haemorrhage from vertebral artery", + }, + { + key: "I60.6", + en: "", + de: "Subarachnoid haemorrhage from other intracranial arteries", + }, + { + key: "I60.7", + en: "", + de: "Subarachnoid haemorrhage from intracranial artery, unspecified", + }, + { + key: "I60.8", + en: "", + de: "Other subarachnoid haemorrhage", + }, + { + key: "I60.9", + en: "", + de: "Subarachnoid haemorrhage, unspecified", + }, + { + key: "I61", + en: "", + de: "Intracerebral haemorrhage", + }, + { + key: "I61.0", + en: "", + de: "Intracerebral haemorrhage in hemisphere, subcortical", + }, + { + key: "I61.1", + en: "", + de: "Intracerebral haemorrhage in hemisphere, cortical", + }, + { + key: "I61.2", + en: "", + de: "Intracerebral haemorrhage in hemisphere, unspecified", + }, + { + key: "I61.3", + en: "", + de: "Intracerebral haemorrhage in brain stem", + }, + { + key: "I61.4", + en: "", + de: "Intracerebral haemorrhage in cerebellum", + }, + { + key: "I61.5", + en: "", + de: "Intracerebral haemorrhage, intraventricular", + }, + { + key: "I61.6", + en: "", + de: "Intracerebral haemorrhage, multiple localized", + }, + { + key: "I61.8", + en: "", + de: "Other intracerebral haemorrhage", + }, + { + key: "I61.9", + en: "", + de: "Intracerebral haemorrhage, unspecified", + }, + { + key: "I62", + en: "", + de: "Other nontraumatic intracranial haemorrhage", + }, + { + key: "I62.0", + en: "", + de: "Nontraumatic subdural haemorrhage", + }, + { + key: "I62.1", + en: "", + de: "Nontraumatic extradural haemorrhage", + }, + { + key: "I62.9", + en: "", + de: "Intracranial haemorrhage (nontraumatic), unspecified", + }, + { + key: "I63", + en: "", + de: "Cerebral infarction", + }, + { + key: "I63.0", + en: "", + de: "Cerebral infarction due to thrombosis of precerebral arteries", + }, + { + key: "I63.1", + en: "", + de: "Cerebral infarction due to embolism of precerebral arteries", + }, + { + key: "I63.2", + en: "", + de: "Cerebral infarction due to unspecified occlusion or stenosis of precerebral arteries", + }, + { + key: "I63.3", + en: "", + de: "Cerebral infarction due to thrombosis of cerebral arteries", + }, + { + key: "I63.4", + en: "", + de: "Cerebral infarction due to embolism of cerebral arteries", + }, + { + key: "I63.5", + en: "", + de: "Cerebral infarction due to unspecified occlusion or stenosis of cerebral arteries", + }, + { + key: "I63.6", + en: "", + de: "Cerebral infarction due to cerebral venous thrombosis, nonpyogenic", + }, + { + key: "I63.8", + en: "", + de: "Other cerebral infarction", + }, + { + key: "I63.9", + en: "", + de: "Cerebral infarction, unspecified", + }, + { + key: "I64", + en: "", + de: "Stroke, not specified as haemorrhage or infarction", + }, + { + key: "I65", + en: "", + de: "Occlusion and stenosis of precerebral arteries, not resulting in cerebral infarction", + }, + { + key: "I65.0", + en: "", + de: "Occlusion and stenosis of vertebral artery", + }, + { + key: "I65.1", + en: "", + de: "Occlusion and stenosis of basilar artery", + }, + { + key: "I65.2", + en: "", + de: "Occlusion and stenosis of carotid artery", + }, + { + key: "I65.3", + en: "", + de: "Occlusion and stenosis of multiple and bilateral precerebral arteries", + }, + { + key: "I65.8", + en: "", + de: "Occlusion and stenosis of other precerebral artery", + }, + { + key: "I65.9", + en: "", + de: "Occlusion and stenosis of unspecified precerebral artery", + }, + { + key: "I66", + en: "", + de: "Occlusion and stenosis of cerebral arteries, not resulting in cerebral infarction", + }, + { + key: "I66.0", + en: "", + de: "Occlusion and stenosis of middle cerebral artery", + }, + { + key: "I66.1", + en: "", + de: "Occlusion and stenosis of anterior cerebral artery", + }, + { + key: "I66.2", + en: "", + de: "Occlusion and stenosis of posterior cerebral artery", + }, + { + key: "I66.3", + en: "", + de: "Occlusion and stenosis of cerebellar arteries", + }, + { + key: "I66.4", + en: "", + de: "Occlusion and stenosis of multiple and bilateral cerebral arteries", + }, + { + key: "I66.8", + en: "", + de: "Occlusion and stenosis of other cerebral artery", + }, + { + key: "I66.9", + en: "", + de: "Occlusion and stenosis of unspecified cerebral artery", + }, + { + key: "I67", + en: "", + de: "Other cerebrovascular diseases", + }, + { + key: "I67.0", + en: "", + de: "Dissection of cerebral arteries, nonruptured", + }, + { + key: "I67.1", + en: "", + de: "Cerebral aneurysm, nonruptured", + }, + { + key: "I67.2", + en: "", + de: "Cerebral atherosclerosis", + }, + { + key: "I67.3", + en: "", + de: "Progressive vascular leukoencephalopathy", + }, + { + key: "I67.4", + en: "", + de: "Hypertensive encephalopathy", + }, + { + key: "I67.5", + en: "", + de: "Moyamoya disease", + }, + { + key: "I67.6", + en: "", + de: "Nonpyogenic thrombosis of intracranial venous system", + }, + { + key: "I67.7", + en: "", + de: "Cerebral arteritis, not elsewhere classified", + }, + { + key: "I67.8", + en: "", + de: "Other specified cerebrovascular diseases", + }, + { + key: "I67.9", + en: "", + de: "Cerebrovascular disease, unspecified", + }, + { + key: "I69", + en: "", + de: "Sequelae of cerebrovascular disease", + }, + { + key: "I69.0", + en: "", + de: "Sequelae of subarachnoid haemorrhage", + }, + { + key: "I69.1", + en: "", + de: "Sequelae of intracerebral haemorrhage", + }, + { + key: "I69.2", + en: "", + de: "Sequelae of other nontraumatic intracranial haemorrhage", + }, + { + key: "I69.3", + en: "", + de: "Sequelae of cerebral infarction", + }, + { + key: "I69.4", + en: "", + de: "Sequelae of stroke, not specified as haemorrhage or infarction", + }, + { + key: "I69.8", + en: "", + de: "Sequelae of other and unspecified cerebrovascular diseases", + }, + { + key: "I70", + en: "", + de: "Atherosclerosis", + }, + { + key: "I70.0", + en: "", + de: "Atherosclerosis of aorta", + }, + { + key: "I70.1", + en: "", + de: "Atherosclerosis of renal artery", + }, + { + key: "I70.2", + en: "", + de: "Atherosclerosis of arteries of extremities", + }, + { + key: "I70.8", + en: "", + de: "Atherosclerosis of other arteries", + }, + { + key: "I70.9", + en: "", + de: "Generalized and unspecified atherosclerosis", + }, + { + key: "I71", + en: "", + de: "Aortic aneurysm and dissection", + }, + { + key: "I71.0", + en: "", + de: "Dissection of aorta [any part]", + }, + { + key: "I71.1", + en: "", + de: "Thoracic aortic aneurysm, ruptured", + }, + { + key: "I71.2", + en: "", + de: "Thoracic aortic aneurysm, without mention of rupture", + }, + { + key: "I71.3", + en: "", + de: "Abdominal aortic aneurysm, ruptured", + }, + { + key: "I71.4", + en: "", + de: "Abdominal aortic aneurysm, without mention of rupture", + }, + { + key: "I71.5", + en: "", + de: "Thoracoabdominal aortic aneurysm, ruptured", + }, + { + key: "I71.6", + en: "", + de: "Thoracoabdominal aortic aneurysm, without mention of rupture", + }, + { + key: "I71.8", + en: "", + de: "Aortic aneurysm of unspecified site, ruptured", + }, + { + key: "I71.9", + en: "", + de: "Aortic aneurysm of unspecified site, without mention of rupture", + }, + { + key: "I72", + en: "", + de: "Other aneurysm and dissection", + }, + { + key: "I72.0", + en: "", + de: "Aneurysm and dissection of carotid artery", + }, + { + key: "I72.1", + en: "", + de: "Aneurysm and dissection of artery of upper extremity", + }, + { + key: "I72.2", + en: "", + de: "Aneurysm and dissection of renal artery", + }, + { + key: "I72.3", + en: "", + de: "Aneurysm and dissection of iliac artery", + }, + { + key: "I72.4", + en: "", + de: "Aneurysm and dissection of artery of lower extremity", + }, + { + key: "I72.5", + en: "", + de: "Aneurysm and dissection of other precerebral arteries", + }, + { + key: "I72.6", + en: "", + de: "Aneurysm and dissection of vertebral artery", + }, + { + key: "I72.8", + en: "", + de: "Aneurysm and dissection of other specified arteries", + }, + { + key: "I72.9", + en: "", + de: "Aneurysm and dissection of unspecified site", + }, + { + key: "I73", + en: "", + de: "Other peripheral vascular diseases", + }, + { + key: "I73.0", + en: "", + de: "Raynaud syndrome", + }, + { + key: "I73.1", + en: "", + de: "Thromboangiitis obliterans [Buerger]", + }, + { + key: "I73.8", + en: "", + de: "Other specified peripheral vascular diseases", + }, + { + key: "I73.9", + en: "", + de: "Peripheral vascular disease, unspecified", + }, + { + key: "I74", + en: "", + de: "Arterial embolism and thrombosis", + }, + { + key: "I74.0", + en: "", + de: "Embolism and thrombosis of abdominal aorta", + }, + { + key: "I74.1", + en: "", + de: "Embolism and thrombosis of other and unspecified parts of aorta", + }, + { + key: "I74.2", + en: "", + de: "Embolism and thrombosis of arteries of upper extremities", + }, + { + key: "I74.3", + en: "", + de: "Embolism and thrombosis of arteries of lower extremities", + }, + { + key: "I74.4", + en: "", + de: "Embolism and thrombosis of arteries of extremities, unspecified", + }, + { + key: "I74.5", + en: "", + de: "Embolism and thrombosis of iliac artery", + }, + { + key: "I74.8", + en: "", + de: "Embolism and thrombosis of other arteries", + }, + { + key: "I74.9", + en: "", + de: "Embolism and thrombosis of unspecified artery", + }, + { + key: "I77", + en: "", + de: "Other disorders of arteries and arterioles", + }, + { + key: "I77.0", + en: "", + de: "Arteriovenous fistula, acquired", + }, + { + key: "I77.1", + en: "", + de: "Stricture of artery", + }, + { + key: "I77.2", + en: "", + de: "Rupture of artery", + }, + { + key: "I77.3", + en: "", + de: "Arterial fibromuscular dysplasia", + }, + { + key: "I77.4", + en: "", + de: "Coeliac artery compression syndrome", + }, + { + key: "I77.5", + en: "", + de: "Necrosis of artery", + }, + { + key: "I77.6", + en: "", + de: "Arteritis, unspecified", + }, + { + key: "I77.8", + en: "", + de: "Other specified disorders of arteries and arterioles", + }, + { + key: "I77.9", + en: "", + de: "Disorder of arteries and arterioles, unspecified", + }, + { + key: "I78", + en: "", + de: "Diseases of capillaries", + }, + { + key: "I78.0", + en: "", + de: "Hereditary haemorrhagic telangiectasia", + }, + { + key: "I78.1", + en: "", + de: "Naevus, non-neoplastic", + }, + { + key: "I78.8", + en: "", + de: "Other diseases of capillaries", + }, + { + key: "I78.9", + en: "", + de: "Disease of capillaries, unspecified", + }, + { + key: "I80", + en: "", + de: "Phlebitis and thrombophlebitis", + }, + { + key: "I80.0", + en: "", + de: "Phlebitis and thrombophlebitis of superficial vessels of lower extremities", + }, + { + key: "I80.1", + en: "", + de: "Phlebitis and thrombophlebitis of femoral vein", + }, + { + key: "I80.2", + en: "", + de: "Phlebitis and thrombophlebitis of other deep vessels of lower extremities", + }, + { + key: "I80.3", + en: "", + de: "Phlebitis and thrombophlebitis of lower extremities, unspecified", + }, + { + key: "I80.8", + en: "", + de: "Phlebitis and thrombophlebitis of other sites", + }, + { + key: "I80.9", + en: "", + de: "Phlebitis and thrombophlebitis of unspecified site", + }, + { + key: "I81", + en: "", + de: "Portal vein thrombosis", + }, + { + key: "I82", + en: "", + de: "Other venous embolism and thrombosis", + }, + { + key: "I82.0", + en: "", + de: "Budd-Chiari syndrome", + }, + { + key: "I82.1", + en: "", + de: "Thrombophlebitis migrans", + }, + { + key: "I82.2", + en: "", + de: "Embolism and thrombosis of vena cava", + }, + { + key: "I82.3", + en: "", + de: "Embolism and thrombosis of renal vein", + }, + { + key: "I82.8", + en: "", + de: "Embolism and thrombosis of other specified veins", + }, + { + key: "I82.9", + en: "", + de: "Embolism and thrombosis of unspecified vein", + }, + { + key: "I83", + en: "", + de: "Varicose veins of lower extremities", + }, + { + key: "I83.0", + en: "", + de: "Varicose veins of lower extremities with ulcer", + }, + { + key: "I83.1", + en: "", + de: "Varicose veins of lower extremities with inflammation", + }, + { + key: "I83.2", + en: "", + de: "Varicose veins of lower extremities with both ulcer and inflammation", + }, + { + key: "I83.9", + en: "", + de: "Varicose veins of lower extremities without ulcer or inflammation", + }, + { + key: "I85", + en: "", + de: "Oesophageal varices", + }, + { + key: "I85.0", + en: "", + de: "Oesophageal varices with bleeding", + }, + { + key: "I85.9", + en: "", + de: "Oesophageal varices without bleeding", + }, + { + key: "I86", + en: "", + de: "Varicose veins of other sites", + }, + { + key: "I86.0", + en: "", + de: "Sublingual varices", + }, + { + key: "I86.1", + en: "", + de: "Scrotal varices", + }, + { + key: "I86.2", + en: "", + de: "Pelvic varices", + }, + { + key: "I86.3", + en: "", + de: "Vulval varices", + }, + { + key: "I86.4", + en: "", + de: "Gastric varices", + }, + { + key: "I86.8", + en: "", + de: "Varicose veins of other specified sites", + }, + { + key: "I87", + en: "", + de: "Other disorders of veins", + }, + { + key: "I87.0", + en: "", + de: "Postthrombotic syndrome", + }, + { + key: "I87.1", + en: "", + de: "Compression of vein", + }, + { + key: "I87.2", + en: "", + de: "Venous insufficiency (chronic)(peripheral)", + }, + { + key: "I87.8", + en: "", + de: "Other specified disorders of veins", + }, + { + key: "I87.9", + en: "", + de: "Disorder of vein, unspecified", + }, + { + key: "I88", + en: "", + de: "Nonspecific lymphadenitis", + }, + { + key: "I88.0", + en: "", + de: "Nonspecific mesenteric lymphadenitis", + }, + { + key: "I88.1", + en: "", + de: "Chronic lymphadenitis, except mesenteric", + }, + { + key: "I88.8", + en: "", + de: "Other nonspecific lymphadenitis", + }, + { + key: "I88.9", + en: "", + de: "Nonspecific lymphadenitis, unspecified", + }, + { + key: "I89", + en: "", + de: "Other noninfective disorders of lymphatic vessels and lymph nodes", + }, + { + key: "I89.0", + en: "", + de: "Lymphoedema, not elsewhere classified", + }, + { + key: "I89.1", + en: "", + de: "Lymphangitis", + }, + { + key: "I89.8", + en: "", + de: "Other specified noninfective disorders of lymphatic vessels and lymph nodes", + }, + { + key: "I89.9", + en: "", + de: "Noninfective disorder of lymphatic vessels and lymph nodes, unspecified", + }, + { + key: "I95", + en: "", + de: "Hypotension", + }, + { + key: "I95.0", + en: "", + de: "Idiopathic hypotension", + }, + { + key: "I95.1", + en: "", + de: "Orthostatic hypotension", + }, + { + key: "I95.2", + en: "", + de: "Hypotension due to drugs", + }, + { + key: "I95.8", + en: "", + de: "Other hypotension", + }, + { + key: "I95.9", + en: "", + de: "Hypotension, unspecified", + }, + { + key: "I97", + en: "", + de: "Postprocedural disorders of circulatory system, not elsewhere classified", + }, + { + key: "I97.0", + en: "", + de: "Postcardiotomy syndrome", + }, + { + key: "I97.1", + en: "", + de: "Other functional disturbances following cardiac surgery", + }, + { + key: "I97.2", + en: "", + de: "Postmastectomy lymphoedema syndrome", + }, + { + key: "I97.8", + en: "", + de: "Other postprocedural disorders of circulatory system, not elsewhere classified", + }, + { + key: "I97.9", + en: "", + de: "Postprocedural disorder of circulatory system, unspecified", + }, + { + key: "I99", + en: "", + de: "Other and unspecified disorders of circulatory system", + }, + { + key: "J00", + en: "", + de: "Acute nasopharyngitis [common cold]", + }, + { + key: "J01", + en: "", + de: "Acute sinusitis", + }, + { + key: "J01.0", + en: "", + de: "Acute maxillary sinusitis", + }, + { + key: "J01.1", + en: "", + de: "Acute frontal sinusitis", + }, + { + key: "J01.2", + en: "", + de: "Acute ethmoidal sinusitis", + }, + { + key: "J01.3", + en: "", + de: "Acute sphenoidal sinusitis", + }, + { + key: "J01.4", + en: "", + de: "Acute pansinusitis", + }, + { + key: "J01.8", + en: "", + de: "Other acute sinusitis", + }, + { + key: "J01.9", + en: "", + de: "Acute sinusitis, unspecified", + }, + { + key: "J02", + en: "", + de: "Acute pharyngitis", + }, + { + key: "J02.0", + en: "", + de: "Streptococcal pharyngitis", + }, + { + key: "J02.8", + en: "", + de: "Acute pharyngitis due to other specified organisms", + }, + { + key: "J02.9", + en: "", + de: "Acute pharyngitis, unspecified", + }, + { + key: "J03", + en: "", + de: "Acute tonsillitis", + }, + { + key: "J03.0", + en: "", + de: "Streptococcal tonsillitis", + }, + { + key: "J03.8", + en: "", + de: "Acute tonsillitis due to other specified organisms", + }, + { + key: "J03.9", + en: "", + de: "Acute tonsillitis, unspecified", + }, + { + key: "J04", + en: "", + de: "Acute laryngitis and tracheitis", + }, + { + key: "J04.0", + en: "", + de: "Acute laryngitis", + }, + { + key: "J04.1", + en: "", + de: "Acute tracheitis", + }, + { + key: "J04.2", + en: "", + de: "Acute laryngotracheitis", + }, + { + key: "J05", + en: "", + de: "Acute obstructive laryngitis [croup] and epiglottitis", + }, + { + key: "J05.0", + en: "", + de: "Acute obstructive laryngitis [croup]", + }, + { + key: "J05.1", + en: "", + de: "Acute epiglottitis", + }, + { + key: "J06", + en: "", + de: "Acute upper respiratory infections of multiple and unspecified sites", + }, + { + key: "J06.0", + en: "", + de: "Acute laryngopharyngitis", + }, + { + key: "J06.8", + en: "", + de: "Other acute upper respiratory infections of multiple sites", + }, + { + key: "J06.9", + en: "", + de: "Acute upper respiratory infection, unspecified", + }, + { + key: "J09", + en: "", + de: "Influenza due to identified zoonotic or pandemic influenza virus", + }, + { + key: "J10", + en: "", + de: "Influenza due to identified seasonal influenza virus", + }, + { + key: "J10.0", + en: "", + de: "Influenza with pneumonia, seasonal influenza virus identified", + }, + { + key: "J10.1", + en: "", + de: "Influenza with other respiratory manifestations, seasonal influenza virus identified", + }, + { + key: "J10.8", + en: "", + de: "Influenza with other manifestations, seasonal influenza virus identified", + }, + { + key: "J11", + en: "", + de: "Influenza, virus not identified", + }, + { + key: "J11.0", + en: "", + de: "Influenza with pneumonia, virus not identified", + }, + { + key: "J11.1", + en: "", + de: "Influenza with other respiratory manifestations, virus not identified", + }, + { + key: "J11.8", + en: "", + de: "Influenza with other manifestations, virus not identified", + }, + { + key: "J12", + en: "", + de: "Viral pneumonia, not elsewhere classified", + }, + { + key: "J12.0", + en: "", + de: "Adenoviral pneumonia", + }, + { + key: "J12.1", + en: "", + de: "Respiratory syncytial virus pneumonia", + }, + { + key: "J12.2", + en: "", + de: "Parainfluenza virus pneumonia", + }, + { + key: "J12.3", + en: "", + de: "Human metapneumovirus pneumonia", + }, + { + key: "J12.8", + en: "", + de: "Other viral pneumonia", + }, + { + key: "J12.9", + en: "", + de: "Viral pneumonia, unspecified", + }, + { + key: "J13", + en: "", + de: "Pneumonia due to Streptococcus pneumoniae", + }, + { + key: "J14", + en: "", + de: "Pneumonia due to Haemophilus influenzae", + }, + { + key: "J15", + en: "", + de: "Bacterial pneumonia, not elsewhere classified", + }, + { + key: "J15.0", + en: "", + de: "Pneumonia due to Klebsiella pneumoniae", + }, + { + key: "J15.1", + en: "", + de: "Pneumonia due to Pseudomonas", + }, + { + key: "J15.2", + en: "", + de: "Pneumonia due to staphylococcus", + }, + { + key: "J15.3", + en: "", + de: "Pneumonia due to streptococcus, group B", + }, + { + key: "J15.4", + en: "", + de: "Pneumonia due to other streptococci", + }, + { + key: "J15.5", + en: "", + de: "Pneumonia due to Escherichia coli", + }, + { + key: "J15.6", + en: "", + de: "Pneumonia due to other Gram-negative bacteria", + }, + { + key: "J15.7", + en: "", + de: "Pneumonia due to Mycoplasma pneumoniae", + }, + { + key: "J15.8", + en: "", + de: "Other bacterial pneumonia", + }, + { + key: "J15.9", + en: "", + de: "Bacterial pneumonia, unspecified", + }, + { + key: "J16", + en: "", + de: "Pneumonia due to other infectious organisms, not elsewhere classified", + }, + { + key: "J16.0", + en: "", + de: "Chlamydial pneumonia", + }, + { + key: "J16.8", + en: "", + de: "Pneumonia due to other specified infectious organisms", + }, + { + key: "J18", + en: "", + de: "Pneumonia, organism unspecified", + }, + { + key: "J18.0", + en: "", + de: "Bronchopneumonia, unspecified", + }, + { + key: "J18.1", + en: "", + de: "Lobar pneumonia, unspecified", + }, + { + key: "J18.2", + en: "", + de: "Hypostatic pneumonia, unspecified", + }, + { + key: "J18.8", + en: "", + de: "Other pneumonia, organism unspecified", + }, + { + key: "J18.9", + en: "", + de: "Pneumonia, unspecified", + }, + { + key: "J20", + en: "", + de: "Acute bronchitis", + }, + { + key: "J20.0", + en: "", + de: "Acute bronchitis due to Mycoplasma pneumoniae", + }, + { + key: "J20.1", + en: "", + de: "Acute bronchitis due to Haemophilus influenzae", + }, + { + key: "J20.2", + en: "", + de: "Acute bronchitis due to streptococcus", + }, + { + key: "J20.3", + en: "", + de: "Acute bronchitis due to coxsackievirus", + }, + { + key: "J20.4", + en: "", + de: "Acute bronchitis due to parainfluenza virus", + }, + { + key: "J20.5", + en: "", + de: "Acute bronchitis due to respiratory syncytial virus", + }, + { + key: "J20.6", + en: "", + de: "Acute bronchitis due to rhinovirus", + }, + { + key: "J20.7", + en: "", + de: "Acute bronchitis due to echovirus", + }, + { + key: "J20.8", + en: "", + de: "Acute bronchitis due to other specified organisms", + }, + { + key: "J20.9", + en: "", + de: "Acute bronchitis, unspecified", + }, + { + key: "J21", + en: "", + de: "Acute bronchiolitis", + }, + { + key: "J21.0", + en: "", + de: "Acute bronchiolitis due to respiratory syncytial virus", + }, + { + key: "J21.1", + en: "", + de: "Acute bronchiolitis due to human metapneumovirus", + }, + { + key: "J21.8", + en: "", + de: "Acute bronchiolitis due to other specified organisms", + }, + { + key: "J21.9", + en: "", + de: "Acute bronchiolitis, unspecified", + }, + { + key: "J22", + en: "", + de: "Unspecified acute lower respiratory infection", + }, + { + key: "J30", + en: "", + de: "Vasomotor and allergic rhinitis", + }, + { + key: "J30.0", + en: "", + de: "Vasomotor rhinitis", + }, + { + key: "J30.1", + en: "", + de: "Allergic rhinitis due to pollen", + }, + { + key: "J30.2", + en: "", + de: "Other seasonal allergic rhinitis", + }, + { + key: "J30.3", + en: "", + de: "Other allergic rhinitis", + }, + { + key: "J30.4", + en: "", + de: "Allergic rhinitis, unspecified", + }, + { + key: "J31", + en: "", + de: "Chronic rhinitis, nasopharyngitis and pharyngitis", + }, + { + key: "J31.0", + en: "", + de: "Chronic rhinitis", + }, + { + key: "J31.1", + en: "", + de: "Chronic nasopharyngitis", + }, + { + key: "J31.2", + en: "", + de: "Chronic pharyngitis", + }, + { + key: "J32", + en: "", + de: "Chronic sinusitis", + }, + { + key: "J32.0", + en: "", + de: "Chronic maxillary sinusitis", + }, + { + key: "J32.1", + en: "", + de: "Chronic frontal sinusitis", + }, + { + key: "J32.2", + en: "", + de: "Chronic ethmoidal sinusitis", + }, + { + key: "J32.3", + en: "", + de: "Chronic sphenoidal sinusitis", + }, + { + key: "J32.4", + en: "", + de: "Chronic pansinusitis", + }, + { + key: "J32.8", + en: "", + de: "Other chronic sinusitis", + }, + { + key: "J32.9", + en: "", + de: "Chronic sinusitis, unspecified", + }, + { + key: "J33", + en: "", + de: "Nasal polyp", + }, + { + key: "J33.0", + en: "", + de: "Polyp of nasal cavity", + }, + { + key: "J33.1", + en: "", + de: "Polypoid sinus degeneration", + }, + { + key: "J33.8", + en: "", + de: "Other polyp of sinus", + }, + { + key: "J33.9", + en: "", + de: "Nasal polyp, unspecified", + }, + { + key: "J34", + en: "", + de: "Other disorders of nose and nasal sinuses", + }, + { + key: "J34.0", + en: "", + de: "Abscess, furuncle and carbuncle of nose", + }, + { + key: "J34.1", + en: "", + de: "Cyst and mucocele of nose and nasal sinus", + }, + { + key: "J34.2", + en: "", + de: "Deviated nasal septum", + }, + { + key: "J34.3", + en: "", + de: "Hypertrophy of nasal turbinates", + }, + { + key: "J34.8", + en: "", + de: "Other specified disorders of nose and nasal sinuses", + }, + { + key: "J35", + en: "", + de: "Chronic diseases of tonsils and adenoids", + }, + { + key: "J35.0", + en: "", + de: "Chronic tonsillitis", + }, + { + key: "J35.1", + en: "", + de: "Hypertrophy of tonsils", + }, + { + key: "J35.2", + en: "", + de: "Hypertrophy of adenoids", + }, + { + key: "J35.3", + en: "", + de: "Hypertrophy of tonsils with hypertrophy of adenoids", + }, + { + key: "J35.8", + en: "", + de: "Other chronic diseases of tonsils and adenoids", + }, + { + key: "J35.9", + en: "", + de: "Chronic disease of tonsils and adenoids, unspecified", + }, + { + key: "J36", + en: "", + de: "Peritonsillar abscess", + }, + { + key: "J37", + en: "", + de: "Chronic laryngitis and laryngotracheitis", + }, + { + key: "J37.0", + en: "", + de: "Chronic laryngitis", + }, + { + key: "J37.1", + en: "", + de: "Chronic laryngotracheitis", + }, + { + key: "J38", + en: "", + de: "Diseases of vocal cords and larynx, not elsewhere classified", + }, + { + key: "J38.0", + en: "", + de: "Paralysis of vocal cords and larynx", + }, + { + key: "J38.1", + en: "", + de: "Polyp of vocal cord and larynx", + }, + { + key: "J38.2", + en: "", + de: "Nodules of vocal cords", + }, + { + key: "J38.3", + en: "", + de: "Other diseases of vocal cords", + }, + { + key: "J38.4", + en: "", + de: "Oedema of larynx", + }, + { + key: "J38.5", + en: "", + de: "Laryngeal spasm", + }, + { + key: "J38.6", + en: "", + de: "Stenosis of larynx", + }, + { + key: "J38.7", + en: "", + de: "Other diseases of larynx", + }, + { + key: "J39", + en: "", + de: "Other diseases of upper respiratory tract", + }, + { + key: "J39.0", + en: "", + de: "Retropharyngeal and parapharyngeal abscess", + }, + { + key: "J39.1", + en: "", + de: "Other abscess of pharynx", + }, + { + key: "J39.2", + en: "", + de: "Other diseases of pharynx", + }, + { + key: "J39.3", + en: "", + de: "Upper respiratory tract hypersensitivity reaction, site unspecified", + }, + { + key: "J39.8", + en: "", + de: "Other specified diseases of upper respiratory tract", + }, + { + key: "J39.9", + en: "", + de: "Disease of upper respiratory tract, unspecified", + }, + { + key: "J40", + en: "", + de: "Bronchitis, not specified as acute or chronic", + }, + { + key: "J41", + en: "", + de: "Simple and mucopurulent chronic bronchitis", + }, + { + key: "J41.0", + en: "", + de: "Simple chronic bronchitis", + }, + { + key: "J41.1", + en: "", + de: "Mucopurulent chronic bronchitis", + }, + { + key: "J41.8", + en: "", + de: "Mixed simple and mucopurulent chronic bronchitis", + }, + { + key: "J42", + en: "", + de: "Unspecified chronic bronchitis", + }, + { + key: "J43", + en: "", + de: "Emphysema", + }, + { + key: "J43.0", + en: "", + de: "MacLeod syndrome", + }, + { + key: "J43.1", + en: "", + de: "Panlobular emphysema", + }, + { + key: "J43.2", + en: "", + de: "Centrilobular emphysema", + }, + { + key: "J43.8", + en: "", + de: "Other emphysema", + }, + { + key: "J43.9", + en: "", + de: "Emphysema, unspecified", + }, + { + key: "J44", + en: "", + de: "Other chronic obstructive pulmonary disease", + }, + { + key: "J44.0", + en: "", + de: "Chronic obstructive pulmonary disease with acute lower respiratory infection", + }, + { + key: "J44.1", + en: "", + de: "Chronic obstructive pulmonary disease with acute exacerbation, unspecified", + }, + { + key: "J44.8", + en: "", + de: "Other specified chronic obstructive pulmonary disease", + }, + { + key: "J44.9", + en: "", + de: "Chronic obstructive pulmonary disease, unspecified", + }, + { + key: "J45", + en: "", + de: "Asthma", + }, + { + key: "J45.0", + en: "", + de: "Predominantly allergic asthma", + }, + { + key: "J45.1", + en: "", + de: "Nonallergic asthma", + }, + { + key: "J45.8", + en: "", + de: "Mixed asthma", + }, + { + key: "J45.9", + en: "", + de: "Asthma, unspecified", + }, + { + key: "J46", + en: "", + de: "Status asthmaticus", + }, + { + key: "J47", + en: "", + de: "Bronchiectasis", + }, + { + key: "J60", + en: "", + de: "Coalworker pneumoconiosis", + }, + { + key: "J61", + en: "", + de: "Pneumoconiosis due to asbestos and other mineral fibres", + }, + { + key: "J62", + en: "", + de: "Pneumoconiosis due to dust containing silica", + }, + { + key: "J62.0", + en: "", + de: "Pneumoconiosis due to talc dust", + }, + { + key: "J62.8", + en: "", + de: "Pneumoconiosis due to other dust containing silica", + }, + { + key: "J63", + en: "", + de: "Pneumoconiosis due to other inorganic dusts", + }, + { + key: "J63.0", + en: "", + de: "Aluminosis (of lung)", + }, + { + key: "J63.1", + en: "", + de: "Bauxite fibrosis (of lung)", + }, + { + key: "J63.2", + en: "", + de: "Berylliosis", + }, + { + key: "J63.3", + en: "", + de: "Graphite fibrosis (of lung)", + }, + { + key: "J63.4", + en: "", + de: "Siderosis", + }, + { + key: "J63.5", + en: "", + de: "Stannosis", + }, + { + key: "J63.8", + en: "", + de: "Pneumoconiosis due to other specified inorganic dusts", + }, + { + key: "J64", + en: "", + de: "Unspecified pneumoconiosis", + }, + { + key: "J65", + en: "", + de: "Pneumoconiosis associated with tuberculosis", + }, + { + key: "J66", + en: "", + de: "Airway disease due to specific organic dust", + }, + { + key: "J66.0", + en: "", + de: "Byssinosis", + }, + { + key: "J66.1", + en: "", + de: "Flax-dresser disease", + }, + { + key: "J66.2", + en: "", + de: "Cannabinosis", + }, + { + key: "J66.8", + en: "", + de: "Airway disease due to other specific organic dusts", + }, + { + key: "J67", + en: "", + de: "Hypersensitivity pneumonitis due to organic dust", + }, + { + key: "J67.0", + en: "", + de: "Farmer lung", + }, + { + key: "J67.1", + en: "", + de: "Bagassosis", + }, + { + key: "J67.2", + en: "", + de: "Bird fancier lung", + }, + { + key: "J67.3", + en: "", + de: "Suberosis", + }, + { + key: "J67.4", + en: "", + de: "Maltworker lung", + }, + { + key: "J67.5", + en: "", + de: "Mushroom-worker lung", + }, + { + key: "J67.6", + en: "", + de: "Maple-bark-stripper lung", + }, + { + key: "J67.7", + en: "", + de: "Air-conditioner and humidifier lung", + }, + { + key: "J67.8", + en: "", + de: "Hypersensitivity pneumonitis due to other organic dusts", + }, + { + key: "J67.9", + en: "", + de: "Hypersensitivity pneumonitis due to unspecified organic dust", + }, + { + key: "J68", + en: "", + de: "Respiratory conditions due to inhalation of chemicals, gases, fumes and vapours", + }, + { + key: "J68.0", + en: "", + de: "Bronchitis and pneumonitis due to chemicals, gases, fumes and vapours", + }, + { + key: "J68.1", + en: "", + de: "Pulmonary oedema due to chemicals, gases, fumes and vapours", + }, + { + key: "J68.2", + en: "", + de: "Upper respiratory inflammation due to chemicals, gases, fumes and vapours, not elsewhere classified", + }, + { + key: "J68.3", + en: "", + de: "Other acute and subacute respiratory conditions due to chemicals, gases, fumes and vapours", + }, + { + key: "J68.4", + en: "", + de: "Chronic respiratory conditions due to chemicals, gases, fumes and vapours", + }, + { + key: "J68.8", + en: "", + de: "Other respiratory conditions due to chemicals, gases, fumes and vapours", + }, + { + key: "J68.9", + en: "", + de: "Unspecified respiratory condition due to chemicals, gases, fumes and vapours", + }, + { + key: "J69", + en: "", + de: "Pneumonitis due to solids and liquids", + }, + { + key: "J69.0", + en: "", + de: "Pneumonitis due to food and vomit", + }, + { + key: "J69.1", + en: "", + de: "Pneumonitis due to oils and essences", + }, + { + key: "J69.8", + en: "", + de: "Pneumonitis due to other solids and liquids", + }, + { + key: "J70", + en: "", + de: "Respiratory conditions due to other external agents", + }, + { + key: "J70.0", + en: "", + de: "Acute pulmonary manifestations due to radiation", + }, + { + key: "J70.1", + en: "", + de: "Chronic and other pulmonary manifestations due to radiation", + }, + { + key: "J70.2", + en: "", + de: "Acute drug-induced interstitial lung disorders", + }, + { + key: "J70.3", + en: "", + de: "Chronic drug-induced interstitial lung disorders", + }, + { + key: "J70.4", + en: "", + de: "Drug-induced interstitial lung disorders, unspecified", + }, + { + key: "J70.8", + en: "", + de: "Respiratory conditions due to other specified external agents", + }, + { + key: "J70.9", + en: "", + de: "Respiratory conditions due to unspecified external agent", + }, + { + key: "J80", + en: "", + de: "Adult respiratory distress syndrome", + }, + { + key: "J81", + en: "", + de: "Pulmonary oedema", + }, + { + key: "J82", + en: "", + de: "Pulmonary eosinophilia, not elsewhere classified", + }, + { + key: "J84", + en: "", + de: "Other interstitial pulmonary diseases", + }, + { + key: "J84.0", + en: "", + de: "Alveolar and parietoalveolar conditions", + }, + { + key: "J84.1", + en: "", + de: "Other interstitial pulmonary diseases with fibrosis", + }, + { + key: "J84.8", + en: "", + de: "Other specified interstitial pulmonary diseases", + }, + { + key: "J84.9", + en: "", + de: "Interstitial pulmonary disease, unspecified", + }, + { + key: "J85", + en: "", + de: "Abscess of lung and mediastinum", + }, + { + key: "J85.0", + en: "", + de: "Gangrene and necrosis of lung", + }, + { + key: "J85.1", + en: "", + de: "Abscess of lung with pneumonia", + }, + { + key: "J85.2", + en: "", + de: "Abscess of lung without pneumonia", + }, + { + key: "J85.3", + en: "", + de: "Abscess of mediastinum", + }, + { + key: "J86", + en: "", + de: "Pyothorax", + }, + { + key: "J86.0", + en: "", + de: "Pyothorax with fistula", + }, + { + key: "J86.9", + en: "", + de: "Pyothorax without fistula", + }, + { + key: "J90", + en: "", + de: "Pleural effusion, not elsewhere classified", + }, + { + key: "J92", + en: "", + de: "Pleural plaque", + }, + { + key: "J92.0", + en: "", + de: "Pleural plaque with presence of asbestos", + }, + { + key: "J92.9", + en: "", + de: "Pleural plaque without asbestos", + }, + { + key: "J93", + en: "", + de: "Pneumothorax", + }, + { + key: "J93.0", + en: "", + de: "Spontaneous tension pneumothorax", + }, + { + key: "J93.1", + en: "", + de: "Other spontaneous pneumothorax", + }, + { + key: "J93.8", + en: "", + de: "Other pneumothorax", + }, + { + key: "J93.9", + en: "", + de: "Pneumothorax, unspecified", + }, + { + key: "J94", + en: "", + de: "Other pleural conditions", + }, + { + key: "J94.0", + en: "", + de: "Chylous effusion", + }, + { + key: "J94.1", + en: "", + de: "Fibrothorax", + }, + { + key: "J94.2", + en: "", + de: "Haemothorax", + }, + { + key: "J94.8", + en: "", + de: "Other specified pleural conditions", + }, + { + key: "J94.9", + en: "", + de: "Pleural condition, unspecified", + }, + { + key: "J95", + en: "", + de: "Postprocedural respiratory disorders, not elsewhere classified", + }, + { + key: "J95.0", + en: "", + de: "Tracheostomy malfunction", + }, + { + key: "J95.1", + en: "", + de: "Acute pulmonary insufficiency following thoracic surgery", + }, + { + key: "J95.2", + en: "", + de: "Acute pulmonary insufficiency following nonthoracic surgery", + }, + { + key: "J95.3", + en: "", + de: "Chronic pulmonary insufficiency following surgery", + }, + { + key: "J95.4", + en: "", + de: "Mendelson syndrome", + }, + { + key: "J95.5", + en: "", + de: "Postprocedural subglottic stenosis", + }, + { + key: "J95.8", + en: "", + de: "Other postprocedural respiratory disorders", + }, + { + key: "J95.9", + en: "", + de: "Postprocedural respiratory disorder, unspecified", + }, + { + key: "J96", + en: "", + de: "Respiratory failure, not elsewhere classified", + }, + { + key: "J96.0", + en: "", + de: "Acute respiratory failure", + }, + { + key: "J96.1", + en: "", + de: "Chronic respiratory failure", + }, + { + key: "J96.9", + en: "", + de: "Respiratory failure, unspecified", + }, + { + key: "J98", + en: "", + de: "Other respiratory disorders", + }, + { + key: "J98.0", + en: "", + de: "Diseases of bronchus, not elsewhere classified", + }, + { + key: "J98.1", + en: "", + de: "Pulmonary collapse", + }, + { + key: "J98.2", + en: "", + de: "Interstitial emphysema", + }, + { + key: "J98.3", + en: "", + de: "Compensatory emphysema", + }, + { + key: "J98.4", + en: "", + de: "Other disorders of lung", + }, + { + key: "J98.5", + en: "", + de: "Diseases of mediastinum, not elsewhere classified", + }, + { + key: "J98.6", + en: "", + de: "Disorders of diaphragm", + }, + { + key: "J98.7", + en: "", + de: "Respiratory infections, not elsewhere classified", + }, + { + key: "J98.8", + en: "", + de: "Other specified respiratory disorders", + }, + { + key: "J98.9", + en: "", + de: "Respiratory disorder, unspecified", + }, + { + key: "K00", + en: "", + de: "Disorders of tooth development and eruption", + }, + { + key: "K00.0", + en: "", + de: "Anodontia", + }, + { + key: "K00.1", + en: "", + de: "Supernumerary teeth", + }, + { + key: "K00.2", + en: "", + de: "Abnormalities of size and form of teeth", + }, + { + key: "K00.3", + en: "", + de: "Mottled teeth", + }, + { + key: "K00.4", + en: "", + de: "Disturbances in tooth formation", + }, + { + key: "K00.5", + en: "", + de: "Hereditary disturbances in tooth structure, not elsewhere classified", + }, + { + key: "K00.6", + en: "", + de: "Disturbances in tooth eruption", + }, + { + key: "K00.7", + en: "", + de: "Teething syndrome", + }, + { + key: "K00.8", + en: "", + de: "Other disorders of tooth development", + }, + { + key: "K00.9", + en: "", + de: "Disorder of tooth development, unspecified", + }, + { + key: "K01", + en: "", + de: "Embedded and impacted teeth", + }, + { + key: "K01.0", + en: "", + de: "Embedded teeth", + }, + { + key: "K01.1", + en: "", + de: "Impacted teeth", + }, + { + key: "K02", + en: "", + de: "Dental caries", + }, + { + key: "K02.0", + en: "", + de: "Caries limited to enamel", + }, + { + key: "K02.1", + en: "", + de: "Caries of dentine", + }, + { + key: "K02.2", + en: "", + de: "Caries of cementum", + }, + { + key: "K02.3", + en: "", + de: "Arrested dental caries", + }, + { + key: "K02.4", + en: "", + de: "Odontoclasia", + }, + { + key: "K02.5", + en: "", + de: "Caries with pulp exposure", + }, + { + key: "K02.8", + en: "", + de: "Other dental caries", + }, + { + key: "K02.9", + en: "", + de: "Dental caries, unspecified", + }, + { + key: "K03", + en: "", + de: "Other diseases of hard tissues of teeth", + }, + { + key: "K03.0", + en: "", + de: "Excessive attrition of teeth", + }, + { + key: "K03.1", + en: "", + de: "Abrasion of teeth", + }, + { + key: "K03.2", + en: "", + de: "Erosion of teeth", + }, + { + key: "K03.3", + en: "", + de: "Pathological resorption of teeth", + }, + { + key: "K03.4", + en: "", + de: "Hypercementosis", + }, + { + key: "K03.5", + en: "", + de: "Ankylosis of teeth", + }, + { + key: "K03.6", + en: "", + de: "Deposits [accretions] on teeth", + }, + { + key: "K03.7", + en: "", + de: "Posteruptive colour changes of dental hard tissues", + }, + { + key: "K03.8", + en: "", + de: "Other specified diseases of hard tissues of teeth", + }, + { + key: "K03.9", + en: "", + de: "Disease of hard tissues of teeth, unspecified", + }, + { + key: "K04", + en: "", + de: "Diseases of pulp and periapical tissues", + }, + { + key: "K04.0", + en: "", + de: "Pulpitis", + }, + { + key: "K04.1", + en: "", + de: "Necrosis of pulp", + }, + { + key: "K04.2", + en: "", + de: "Pulp degeneration", + }, + { + key: "K04.3", + en: "", + de: "Abnormal hard tissue formation in pulp", + }, + { + key: "K04.4", + en: "", + de: "Acute apical periodontitis of pulpal origin", + }, + { + key: "K04.5", + en: "", + de: "Chronic apical periodontitis", + }, + { + key: "K04.6", + en: "", + de: "Periapical abscess with sinus", + }, + { + key: "K04.7", + en: "", + de: "Periapical abscess without sinus", + }, + { + key: "K04.8", + en: "", + de: "Radicular cyst", + }, + { + key: "K04.9", + en: "", + de: "Other and unspecified diseases of pulp and periapical tissues", + }, + { + key: "K05", + en: "", + de: "Gingivitis and periodontal diseases", + }, + { + key: "K05.0", + en: "", + de: "Acute gingivitis", + }, + { + key: "K05.1", + en: "", + de: "Chronic gingivitis", + }, + { + key: "K05.2", + en: "", + de: "Acute periodontitis", + }, + { + key: "K05.3", + en: "", + de: "Chronic periodontitis", + }, + { + key: "K05.4", + en: "", + de: "Periodontosis", + }, + { + key: "K05.5", + en: "", + de: "Other periodontal diseases", + }, + { + key: "K05.6", + en: "", + de: "Periodontal disease, unspecified", + }, + { + key: "K06", + en: "", + de: "Other disorders of gingiva and edentulous alveolar ridge", + }, + { + key: "K06.0", + en: "", + de: "Gingival recession", + }, + { + key: "K06.1", + en: "", + de: "Gingival enlargement", + }, + { + key: "K06.2", + en: "", + de: "Gingival and edentulous alveolar ridge lesions associated with trauma", + }, + { + key: "K06.8", + en: "", + de: "Other specified disorders of gingiva and edentulous alveolar ridge", + }, + { + key: "K06.9", + en: "", + de: "Disorder of gingiva and edentulous alveolar ridge, unspecified", + }, + { + key: "K07", + en: "", + de: "Dentofacial anomalies [including malocclusion]", + }, + { + key: "K07.0", + en: "", + de: "Major anomalies of jaw size", + }, + { + key: "K07.1", + en: "", + de: "Anomalies of jaw-cranial base relationship", + }, + { + key: "K07.2", + en: "", + de: "Anomalies of dental arch relationship", + }, + { + key: "K07.3", + en: "", + de: "Anomalies of tooth position", + }, + { + key: "K07.4", + en: "", + de: "Malocclusion, unspecified", + }, + { + key: "K07.5", + en: "", + de: "Dentofacial functional abnormalities", + }, + { + key: "K07.6", + en: "", + de: "Temporomandibular joint disorders", + }, + { + key: "K07.8", + en: "", + de: "Other dentofacial anomalies", + }, + { + key: "K07.9", + en: "", + de: "Dentofacial anomaly, unspecified", + }, + { + key: "K08", + en: "", + de: "Other disorders of teeth and supporting structures", + }, + { + key: "K08.0", + en: "", + de: "Exfoliation of teeth due to systemic causes", + }, + { + key: "K08.1", + en: "", + de: "Loss of teeth due to accident, extraction or local periodontal disease", + }, + { + key: "K08.2", + en: "", + de: "Atrophy of edentulous alveolar ridge", + }, + { + key: "K08.3", + en: "", + de: "Retained dental root", + }, + { + key: "K08.8", + en: "", + de: "Other specified disorders of teeth and supporting structures", + }, + { + key: "K08.9", + en: "", + de: "Disorder of teeth and supporting structures, unspecified", + }, + { + key: "K09", + en: "", + de: "Cysts of oral region, not elsewhere classified", + }, + { + key: "K09.0", + en: "", + de: "Developmental odontogenic cysts", + }, + { + key: "K09.1", + en: "", + de: "Developmental (nonodontogenic) cysts of oral region", + }, + { + key: "K09.2", + en: "", + de: "Other cysts of jaw", + }, + { + key: "K09.8", + en: "", + de: "Other cysts of oral region, not elsewhere classified", + }, + { + key: "K09.9", + en: "", + de: "Cyst of oral region, unspecified", + }, + { + key: "K10", + en: "", + de: "Other diseases of jaws", + }, + { + key: "K10.0", + en: "", + de: "Developmental disorders of jaws", + }, + { + key: "K10.1", + en: "", + de: "Giant cell granuloma, central", + }, + { + key: "K10.2", + en: "", + de: "Inflammatory conditions of jaws", + }, + { + key: "K10.3", + en: "", + de: "Alveolitis of jaws", + }, + { + key: "K10.8", + en: "", + de: "Other specified diseases of jaws", + }, + { + key: "K10.9", + en: "", + de: "Disease of jaws, unspecified", + }, + { + key: "K11", + en: "", + de: "Diseases of salivary glands", + }, + { + key: "K11.0", + en: "", + de: "Atrophy of salivary gland", + }, + { + key: "K11.1", + en: "", + de: "Hypertrophy of salivary gland", + }, + { + key: "K11.2", + en: "", + de: "Sialoadenitis", + }, + { + key: "K11.3", + en: "", + de: "Abscess of salivary gland", + }, + { + key: "K11.4", + en: "", + de: "Fistula of salivary gland", + }, + { + key: "K11.5", + en: "", + de: "Sialolithiasis", + }, + { + key: "K11.6", + en: "", + de: "Mucocele of salivary gland", + }, + { + key: "K11.7", + en: "", + de: "Disturbances of salivary secretion", + }, + { + key: "K11.8", + en: "", + de: "Other diseases of salivary glands", + }, + { + key: "K11.9", + en: "", + de: "Disease of salivary gland, unspecified", + }, + { + key: "K12", + en: "", + de: "Stomatitis and related lesions", + }, + { + key: "K12.0", + en: "", + de: "Recurrent oral aphthae", + }, + { + key: "K12.1", + en: "", + de: "Other forms of stomatitis", + }, + { + key: "K12.2", + en: "", + de: "Cellulitis and abscess of mouth", + }, + { + key: "K12.3", + en: "", + de: "Oral mucositis (ulcerative)", + }, + { + key: "K13", + en: "", + de: "Other diseases of lip and oral mucosa", + }, + { + key: "K13.0", + en: "", + de: "Diseases of lips", + }, + { + key: "K13.1", + en: "", + de: "Cheek and lip biting", + }, + { + key: "K13.2", + en: "", + de: "Leukoplakia and other disturbances of oral epithelium, including tongue", + }, + { + key: "K13.3", + en: "", + de: "Hairy leukoplakia", + }, + { + key: "K13.4", + en: "", + de: "Granuloma and granuloma-like lesions of oral mucosa", + }, + { + key: "K13.5", + en: "", + de: "Oral submucous fibrosis", + }, + { + key: "K13.6", + en: "", + de: "Irritative hyperplasia of oral mucosa", + }, + { + key: "K13.7", + en: "", + de: "Other and unspecified lesions of oral mucosa", + }, + { + key: "K14", + en: "", + de: "Diseases of tongue", + }, + { + key: "K14.0", + en: "", + de: "Glossitis", + }, + { + key: "K14.1", + en: "", + de: "Geographic tongue", + }, + { + key: "K14.2", + en: "", + de: "Median rhomboid glossitis", + }, + { + key: "K14.3", + en: "", + de: "Hypertrophy of tongue papillae", + }, + { + key: "K14.4", + en: "", + de: "Atrophy of tongue papillae", + }, + { + key: "K14.5", + en: "", + de: "Plicated tongue", + }, + { + key: "K14.6", + en: "", + de: "Glossodynia", + }, + { + key: "K14.8", + en: "", + de: "Other diseases of tongue", + }, + { + key: "K14.9", + en: "", + de: "Disease of tongue, unspecified", + }, + { + key: "K20", + en: "", + de: "Oesophagitis", + }, + { + key: "K21", + en: "", + de: "Gastro-oesophageal reflux disease", + }, + { + key: "K21.0", + en: "", + de: "Gastro-oesophageal reflux disease with oesophagitis", + }, + { + key: "K21.9", + en: "", + de: "Gastro-oesophageal reflux disease without oesophagitis", + }, + { + key: "K22", + en: "", + de: "Other diseases of oesophagus", + }, + { + key: "K22.0", + en: "", + de: "Achalasia of cardia", + }, + { + key: "K22.1", + en: "", + de: "Ulcer of oesophagus", + }, + { + key: "K22.2", + en: "", + de: "Oesophageal obstruction", + }, + { + key: "K22.3", + en: "", + de: "Perforation of oesophagus", + }, + { + key: "K22.4", + en: "", + de: "Dyskinesia of oesophagus", + }, + { + key: "K22.5", + en: "", + de: "Diverticulum of oesophagus, acquired", + }, + { + key: "K22.6", + en: "", + de: "Gastro-oesophageal laceration-haemorrhage syndrome", + }, + { + key: "K22.7", + en: "", + de: "Barrett oesophagus", + }, + { + key: "K22.8", + en: "", + de: "Other specified diseases of oesophagus", + }, + { + key: "K22.9", + en: "", + de: "Disease of oesophagus, unspecified", + }, + { + key: "K25", + en: "", + de: "Gastric ulcer", + }, + { + key: "K26", + en: "", + de: "Duodenal ulcer", + }, + { + key: "K27", + en: "", + de: "Peptic ulcer, site unspecified", + }, + { + key: "K28", + en: "", + de: "Gastrojejunal ulcer", + }, + { + key: "K29", + en: "", + de: "Gastritis and duodenitis", + }, + { + key: "K29.0", + en: "", + de: "Acute haemorrhagic gastritis", + }, + { + key: "K29.1", + en: "", + de: "Other acute gastritis", + }, + { + key: "K29.2", + en: "", + de: "Alcoholic gastritis", + }, + { + key: "K29.3", + en: "", + de: "Chronic superficial gastritis", + }, + { + key: "K29.4", + en: "", + de: "Chronic atrophic gastritis", + }, + { + key: "K29.5", + en: "", + de: "Chronic gastritis, unspecified", + }, + { + key: "K29.6", + en: "", + de: "Other gastritis", + }, + { + key: "K29.7", + en: "", + de: "Gastritis, unspecified", + }, + { + key: "K29.8", + en: "", + de: "Duodenitis", + }, + { + key: "K29.9", + en: "", + de: "Gastroduodenitis, unspecified", + }, + { + key: "K30", + en: "", + de: "Functional dyspepsia", + }, + { + key: "K31", + en: "", + de: "Other diseases of stomach and duodenum", + }, + { + key: "K31.0", + en: "", + de: "Acute dilatation of stomach", + }, + { + key: "K31.1", + en: "", + de: "Adult hypertrophic pyloric stenosis", + }, + { + key: "K31.2", + en: "", + de: "Hourglass stricture and stenosis of stomach", + }, + { + key: "K31.3", + en: "", + de: "Pylorospasm, not elsewhere classified", + }, + { + key: "K31.4", + en: "", + de: "Gastric diverticulum", + }, + { + key: "K31.5", + en: "", + de: "Obstruction of duodenum", + }, + { + key: "K31.6", + en: "", + de: "Fistula of stomach and duodenum", + }, + { + key: "K31.7", + en: "", + de: "Polyp of stomach and duodenum", + }, + { + key: "K31.8", + en: "", + de: "Other specified diseases of stomach and duodenum", + }, + { + key: "K31.9", + en: "", + de: "Disease of stomach and duodenum, unspecified", + }, + { + key: "K35", + en: "", + de: "Acute appendicitis", + }, + { + key: "K35.2", + en: "", + de: "Acute appendicitis with generalized peritonitis", + }, + { + key: "K35.3", + en: "", + de: "Acute appendicitis with localized peritonitis", + }, + { + key: "K35.8", + en: "", + de: "Acute appendicitis, other and unspecified", + }, + { + key: "K36", + en: "", + de: "Other appendicitis", + }, + { + key: "K37", + en: "", + de: "Unspecified appendicitis", + }, + { + key: "K38", + en: "", + de: "Other diseases of appendix", + }, + { + key: "K38.0", + en: "", + de: "Hyperplasia of appendix", + }, + { + key: "K38.1", + en: "", + de: "Appendicular concretions", + }, + { + key: "K38.2", + en: "", + de: "Diverticulum of appendix", + }, + { + key: "K38.3", + en: "", + de: "Fistula of appendix", + }, + { + key: "K38.8", + en: "", + de: "Other specified diseases of appendix", + }, + { + key: "K38.9", + en: "", + de: "Disease of appendix, unspecified", + }, + { + key: "K40", + en: "", + de: "Inguinal hernia", + }, + { + key: "K40.0", + en: "", + de: "Bilateral inguinal hernia, with obstruction, without gangrene", + }, + { + key: "K40.1", + en: "", + de: "Bilateral inguinal hernia, with gangrene", + }, + { + key: "K40.2", + en: "", + de: "Bilateral inguinal hernia, without obstruction or gangrene", + }, + { + key: "K40.3", + en: "", + de: "Unilateral or unspecified inguinal hernia, with obstruction, without gangrene", + }, + { + key: "K40.4", + en: "", + de: "Unilateral or unspecified inguinal hernia, with gangrene", + }, + { + key: "K40.9", + en: "", + de: "Unilateral or unspecified inguinal hernia, without obstruction or gangrene", + }, + { + key: "K41", + en: "", + de: "Femoral hernia", + }, + { + key: "K41.0", + en: "", + de: "Bilateral femoral hernia, with obstruction, without gangrene", + }, + { + key: "K41.1", + en: "", + de: "Bilateral femoral hernia, with gangrene", + }, + { + key: "K41.2", + en: "", + de: "Bilateral femoral hernia, without obstruction or gangrene", + }, + { + key: "K41.3", + en: "", + de: "Unilateral or unspecified femoral hernia, with obstruction, without gangrene", + }, + { + key: "K41.4", + en: "", + de: "Unilateral or unspecified femoral hernia, with gangrene", + }, + { + key: "K41.9", + en: "", + de: "Unilateral or unspecified femoral hernia, without obstruction or gangrene", + }, + { + key: "K42", + en: "", + de: "Umbilical hernia", + }, + { + key: "K42.0", + en: "", + de: "Umbilical hernia with obstruction, without gangrene", + }, + { + key: "K42.1", + en: "", + de: "Umbilical hernia with gangrene", + }, + { + key: "K42.9", + en: "", + de: "Umbilical hernia without obstruction or gangrene", + }, + { + key: "K43", + en: "", + de: "Ventral hernia", + }, + { + key: "K43.0", + en: "", + de: "Incisional hernia with obstruction, without gangrene", + }, + { + key: "K43.1", + en: "", + de: "Incisional hernia with gangrene", + }, + { + key: "K43.2", + en: "", + de: "Incisional hernia without obstruction or gangrene", + }, + { + key: "K43.3", + en: "", + de: "Parastomal hernia with obstruction, without gangrene", + }, + { + key: "K43.4", + en: "", + de: "Parastomal hernia with gangrene", + }, + { + key: "K43.5", + en: "", + de: "Parastomal hernia without obstruction or gangrene", + }, + { + key: "K43.6", + en: "", + de: "Other and unspecified ventral hernia with obstruction without gangrene", + }, + { + key: "K43.7", + en: "", + de: "Other and unspecified ventral hernia with gangrene", + }, + { + key: "K43.9", + en: "", + de: "Other and unspecified ventral hernia without obstruction or gangrene", + }, + { + key: "K44", + en: "", + de: "Diaphragmatic hernia", + }, + { + key: "K44.0", + en: "", + de: "Diaphragmatic hernia with obstruction, without gangrene", + }, + { + key: "K44.1", + en: "", + de: "Diaphragmatic hernia with gangrene", + }, + { + key: "K44.9", + en: "", + de: "Diaphragmatic hernia without obstruction or gangrene", + }, + { + key: "K45", + en: "", + de: "Other abdominal hernia", + }, + { + key: "K45.0", + en: "", + de: "Other specified abdominal hernia with obstruction, without gangrene", + }, + { + key: "K45.1", + en: "", + de: "Other specified abdominal hernia with gangrene", + }, + { + key: "K45.8", + en: "", + de: "Other specified abdominal hernia without obstruction or gangrene", + }, + { + key: "K46", + en: "", + de: "Unspecified abdominal hernia", + }, + { + key: "K46.0", + en: "", + de: "Unspecified abdominal hernia with obstruction, without gangrene", + }, + { + key: "K46.1", + en: "", + de: "Unspecified abdominal hernia with gangrene", + }, + { + key: "K46.9", + en: "", + de: "Unspecified abdominal hernia without obstruction or gangrene", + }, + { + key: "K50", + en: "", + de: "Crohn disease [regional enteritis]", + }, + { + key: "K50.0", + en: "", + de: "Crohn disease of small intestine", + }, + { + key: "K50.1", + en: "", + de: "Crohn disease of large intestine", + }, + { + key: "K50.8", + en: "", + de: "Other Crohn disease", + }, + { + key: "K50.9", + en: "", + de: "Crohn disease, unspecified", + }, + { + key: "K51", + en: "", + de: "Ulcerative colitis", + }, + { + key: "K51.0", + en: "", + de: "Ulcerative (chronic) pancolitis", + }, + { + key: "K51.2", + en: "", + de: "Ulcerative (chronic) proctitis", + }, + { + key: "K51.3", + en: "", + de: "Ulcerative (chronic) rectosigmoiditis", + }, + { + key: "K51.4", + en: "", + de: "Inflammatory polyps", + }, + { + key: "K51.5", + en: "", + de: "Left sided colitis", + }, + { + key: "K51.8", + en: "", + de: "Other ulcerative colitis", + }, + { + key: "K51.9", + en: "", + de: "Ulcerative colitis, unspecified", + }, + { + key: "K52", + en: "", + de: "Other noninfective gastroenteritis and colitis", + }, + { + key: "K52.0", + en: "", + de: "Gastroenteritis and colitis due to radiation", + }, + { + key: "K52.1", + en: "", + de: "Toxic gastroenteritis and colitis", + }, + { + key: "K52.2", + en: "", + de: "Allergic and dietetic gastroenteritis and colitis", + }, + { + key: "K52.3", + en: "", + de: "Indeterminate colitis", + }, + { + key: "K52.8", + en: "", + de: "Other specified noninfective gastroenteritis and colitis", + }, + { + key: "K52.9", + en: "", + de: "Noninfective gastroenteritis and colitis, unspecified", + }, + { + key: "K55", + en: "", + de: "Vascular disorders of intestine", + }, + { + key: "K55.0", + en: "", + de: "Acute vascular disorders of intestine", + }, + { + key: "K55.1", + en: "", + de: "Chronic vascular disorders of intestine", + }, + { + key: "K55.2", + en: "", + de: "Angiodysplasia of colon", + }, + { + key: "K55.3", + en: "", + de: "Angiodysplasia of small intestine", + }, + { + key: "K55.8", + en: "", + de: "Other vascular disorders of intestine", + }, + { + key: "K55.9", + en: "", + de: "Vascular disorder of intestine, unspecified", + }, + { + key: "K56", + en: "", + de: "Paralytic ileus and intestinal obstruction without hernia", + }, + { + key: "K56.0", + en: "", + de: "Paralytic ileus", + }, + { + key: "K56.1", + en: "", + de: "Intussusception", + }, + { + key: "K56.2", + en: "", + de: "Volvulus", + }, + { + key: "K56.3", + en: "", + de: "Gallstone ileus", + }, + { + key: "K56.4", + en: "", + de: "Other impaction of intestine", + }, + { + key: "K56.5", + en: "", + de: "Intestinal adhesions [bands] with obstruction", + }, + { + key: "K56.6", + en: "", + de: "Other and unspecified intestinal obstruction", + }, + { + key: "K56.7", + en: "", + de: "Ileus, unspecified", + }, + { + key: "K57", + en: "", + de: "Diverticular disease of intestine", + }, + { + key: "K57.0", + en: "", + de: "Diverticular disease of small intestine with perforation and abscess", + }, + { + key: "K57.1", + en: "", + de: "Diverticular disease of small intestine without perforation or abscess", + }, + { + key: "K57.2", + en: "", + de: "Diverticular disease of large intestine with perforation and abscess", + }, + { + key: "K57.3", + en: "", + de: "Diverticular disease of large intestine without perforation or abscess", + }, + { + key: "K57.4", + en: "", + de: "Diverticular disease of both small and large intestine with perforation and abscess", + }, + { + key: "K57.5", + en: "", + de: "Diverticular disease of both small and large intestine without perforation or abscess", + }, + { + key: "K57.8", + en: "", + de: "Diverticular disease of intestine, part unspecified, with perforation and abscess", + }, + { + key: "K57.9", + en: "", + de: "Diverticular disease of intestine, part unspecified, without perforation or abscess", + }, + { + key: "K58", + en: "", + de: "Irritable bowel syndrome", + }, + { + key: "K58.1", + en: "", + de: "Irritable bowel syndrome with predominant diarrhoea [IBS-D]", + }, + { + key: "K58.2", + en: "", + de: "Irritable bowel syndrome with predominant constipation [IBS-C]", + }, + { + key: "K58.3", + en: "", + de: "Irritable bowel syndrome with mixed bowel habits [IBS-M]", + }, + { + key: "K58.8", + en: "", + de: "Other and unspecified irritable bowel syndrome", + }, + { + key: "K59", + en: "", + de: "Other functional intestinal disorders", + }, + { + key: "K59.0", + en: "", + de: "Constipation", + }, + { + key: "K59.1", + en: "", + de: "Functional diarrhoea", + }, + { + key: "K59.2", + en: "", + de: "Neurogenic bowel, not elsewhere classified", + }, + { + key: "K59.3", + en: "", + de: "Megacolon, not elsewhere classified", + }, + { + key: "K59.4", + en: "", + de: "Anal spasm", + }, + { + key: "K59.8", + en: "", + de: "Other specified functional intestinal disorders", + }, + { + key: "K59.9", + en: "", + de: "Functional intestinal disorder, unspecified", + }, + { + key: "K60", + en: "", + de: "Fissure and fistula of anal and rectal regions", + }, + { + key: "K60.0", + en: "", + de: "Acute anal fissure", + }, + { + key: "K60.1", + en: "", + de: "Chronic anal fissure", + }, + { + key: "K60.2", + en: "", + de: "Anal fissure, unspecified", + }, + { + key: "K60.3", + en: "", + de: "Anal fistula", + }, + { + key: "K60.4", + en: "", + de: "Rectal fistula", + }, + { + key: "K60.5", + en: "", + de: "Anorectal fistula", + }, + { + key: "K61", + en: "", + de: "Abscess of anal and rectal regions", + }, + { + key: "K61.0", + en: "", + de: "Anal abscess", + }, + { + key: "K61.1", + en: "", + de: "Rectal abscess", + }, + { + key: "K61.2", + en: "", + de: "Anorectal abscess", + }, + { + key: "K61.3", + en: "", + de: "Ischiorectal abscess", + }, + { + key: "K61.4", + en: "", + de: "Intrasphincteric abscess", + }, + { + key: "K62", + en: "", + de: "Other diseases of anus and rectum", + }, + { + key: "K62.0", + en: "", + de: "Anal polyp", + }, + { + key: "K62.1", + en: "", + de: "Rectal polyp", + }, + { + key: "K62.2", + en: "", + de: "Anal prolapse", + }, + { + key: "K62.3", + en: "", + de: "Rectal prolapse", + }, + { + key: "K62.4", + en: "", + de: "Stenosis of anus and rectum", + }, + { + key: "K62.5", + en: "", + de: "Haemorrhage of anus and rectum", + }, + { + key: "K62.6", + en: "", + de: "Ulcer of anus and rectum", + }, + { + key: "K62.7", + en: "", + de: "Radiation proctitis", + }, + { + key: "K62.8", + en: "", + de: "Other specified diseases of anus and rectum", + }, + { + key: "K62.9", + en: "", + de: "Disease of anus and rectum, unspecified", + }, + { + key: "K63", + en: "", + de: "Other diseases of intestine", + }, + { + key: "K63.0", + en: "", + de: "Abscess of intestine", + }, + { + key: "K63.1", + en: "", + de: "Perforation of intestine (nontraumatic)", + }, + { + key: "K63.2", + en: "", + de: "Fistula of intestine", + }, + { + key: "K63.3", + en: "", + de: "Ulcer of intestine", + }, + { + key: "K63.4", + en: "", + de: "Enteroptosis", + }, + { + key: "K63.5", + en: "", + de: "Polyp of colon", + }, + { + key: "K63.8", + en: "", + de: "Other specified diseases of intestine", + }, + { + key: "K63.9", + en: "", + de: "Disease of intestine, unspecified", + }, + { + key: "K64", + en: "", + de: "Haemorrhoids and perianal venous thrombosis", + }, + { + key: "K64.0", + en: "", + de: "First degree haemorrhoids", + }, + { + key: "K64.1", + en: "", + de: "Second degree haemorrhoids", + }, + { + key: "K64.2", + en: "", + de: "Third degree haemorrhoids", + }, + { + key: "K64.3", + en: "", + de: "Fourth degree haemorrhoids", + }, + { + key: "K64.4", + en: "", + de: "Residual haemorrhoidal skin tags", + }, + { + key: "K64.5", + en: "", + de: "Perianal venous thrombosis", + }, + { + key: "K64.8", + en: "", + de: "Other specified haemorrhoids", + }, + { + key: "K64.9", + en: "", + de: "Haemorrhoids, unspecified", + }, + { + key: "K65", + en: "", + de: "Peritonitis", + }, + { + key: "K65.0", + en: "", + de: "Acute peritonitis", + }, + { + key: "K65.8", + en: "", + de: "Other peritonitis", + }, + { + key: "K65.9", + en: "", + de: "Peritonitis, unspecified", + }, + { + key: "K66", + en: "", + de: "Other disorders of peritoneum", + }, + { + key: "K66.0", + en: "", + de: "Peritoneal adhesions", + }, + { + key: "K66.1", + en: "", + de: "Haemoperitoneum", + }, + { + key: "K66.2", + en: "", + de: "Retroperitoneal fibrosis", + }, + { + key: "K66.8", + en: "", + de: "Other specified disorders of peritoneum", + }, + { + key: "K66.9", + en: "", + de: "Disorder of peritoneum, unspecified", + }, + { + key: "K70", + en: "", + de: "Alcoholic liver disease", + }, + { + key: "K70.0", + en: "", + de: "Alcoholic fatty liver", + }, + { + key: "K70.1", + en: "", + de: "Alcoholic hepatitis", + }, + { + key: "K70.2", + en: "", + de: "Alcoholic fibrosis and sclerosis of liver", + }, + { + key: "K70.3", + en: "", + de: "Alcoholic cirrhosis of liver", + }, + { + key: "K70.4", + en: "", + de: "Alcoholic hepatic failure", + }, + { + key: "K70.9", + en: "", + de: "Alcoholic liver disease, unspecified", + }, + { + key: "K71", + en: "", + de: "Toxic liver disease", + }, + { + key: "K71.0", + en: "", + de: "Toxic liver disease with cholestasis", + }, + { + key: "K71.1", + en: "", + de: "Toxic liver disease with hepatic necrosis", + }, + { + key: "K71.2", + en: "", + de: "Toxic liver disease with acute hepatitis", + }, + { + key: "K71.3", + en: "", + de: "Toxic liver disease with chronic persistent hepatitis", + }, + { + key: "K71.4", + en: "", + de: "Toxic liver disease with chronic lobular hepatitis", + }, + { + key: "K71.5", + en: "", + de: "Toxic liver disease with chronic active hepatitis", + }, + { + key: "K71.6", + en: "", + de: "Toxic liver disease with hepatitis, not elsewhere classified", + }, + { + key: "K71.7", + en: "", + de: "Toxic liver disease with fibrosis and cirrhosis of liver", + }, + { + key: "K71.8", + en: "", + de: "Toxic liver disease with other disorders of liver", + }, + { + key: "K71.9", + en: "", + de: "Toxic liver disease, unspecified", + }, + { + key: "K72", + en: "", + de: "Hepatic failure, not elsewhere classified", + }, + { + key: "K72.0", + en: "", + de: "Acute and subacute hepatic failure", + }, + { + key: "K72.1", + en: "", + de: "Chronic hepatic failure", + }, + { + key: "K72.9", + en: "", + de: "Hepatic failure, unspecified", + }, + { + key: "K73", + en: "", + de: "Chronic hepatitis, not elsewhere classified", + }, + { + key: "K73.0", + en: "", + de: "Chronic persistent hepatitis, not elsewhere classified", + }, + { + key: "K73.1", + en: "", + de: "Chronic lobular hepatitis, not elsewhere classified", + }, + { + key: "K73.2", + en: "", + de: "Chronic active hepatitis, not elsewhere classified", + }, + { + key: "K73.8", + en: "", + de: "Other chronic hepatitis, not elsewhere classified", + }, + { + key: "K73.9", + en: "", + de: "Chronic hepatitis, unspecified", + }, + { + key: "K74", + en: "", + de: "Fibrosis and cirrhosis of liver", + }, + { + key: "K74.0", + en: "", + de: "Hepatic fibrosis", + }, + { + key: "K74.1", + en: "", + de: "Hepatic sclerosis", + }, + { + key: "K74.2", + en: "", + de: "Hepatic fibrosis with hepatic sclerosis", + }, + { + key: "K74.3", + en: "", + de: "Primary biliary cirrhosis", + }, + { + key: "K74.4", + en: "", + de: "Secondary biliary cirrhosis", + }, + { + key: "K74.5", + en: "", + de: "Biliary cirrhosis, unspecified", + }, + { + key: "K74.6", + en: "", + de: "Other and unspecified cirrhosis of liver", + }, + { + key: "K75", + en: "", + de: "Other inflammatory liver diseases", + }, + { + key: "K75.0", + en: "", + de: "Abscess of liver", + }, + { + key: "K75.1", + en: "", + de: "Phlebitis of portal vein", + }, + { + key: "K75.2", + en: "", + de: "Nonspecific reactive hepatitis", + }, + { + key: "K75.3", + en: "", + de: "Granulomatous hepatitis, not elsewhere classified", + }, + { + key: "K75.4", + en: "", + de: "Autoimmune hepatitis", + }, + { + key: "K75.8", + en: "", + de: "Other specified inflammatory liver diseases", + }, + { + key: "K75.9", + en: "", + de: "Inflammatory liver disease, unspecified", + }, + { + key: "K76", + en: "", + de: "Other diseases of liver", + }, + { + key: "K76.0", + en: "", + de: "Fatty (change of) liver, not elsewhere classified", + }, + { + key: "K76.1", + en: "", + de: "Chronic passive congestion of liver", + }, + { + key: "K76.2", + en: "", + de: "Central haemorrhagic necrosis of liver", + }, + { + key: "K76.3", + en: "", + de: "Infarction of liver", + }, + { + key: "K76.4", + en: "", + de: "Peliosis hepatis", + }, + { + key: "K76.5", + en: "", + de: "Hepatic veno-occlusive disease", + }, + { + key: "K76.6", + en: "", + de: "Portal hypertension", + }, + { + key: "K76.7", + en: "", + de: "Hepatorenal syndrome", + }, + { + key: "K76.8", + en: "", + de: "Other specified diseases of liver", + }, + { + key: "K76.9", + en: "", + de: "Liver disease, unspecified", + }, + { + key: "K80", + en: "", + de: "Cholelithiasis", + }, + { + key: "K80.0", + en: "", + de: "Calculus of gallbladder with acute cholecystitis", + }, + { + key: "K80.1", + en: "", + de: "Calculus of gallbladder with other cholecystitis", + }, + { + key: "K80.2", + en: "", + de: "Calculus of gallbladder without cholecystitis", + }, + { + key: "K80.3", + en: "", + de: "Calculus of bile duct with cholangitis", + }, + { + key: "K80.4", + en: "", + de: "Calculus of bile duct with cholecystitis", + }, + { + key: "K80.5", + en: "", + de: "Calculus of bile duct without cholangitis or cholecystitis", + }, + { + key: "K80.8", + en: "", + de: "Other cholelithiasis", + }, + { + key: "K81", + en: "", + de: "Cholecystitis", + }, + { + key: "K81.0", + en: "", + de: "Acute cholecystitis", + }, + { + key: "K81.1", + en: "", + de: "Chronic cholecystitis", + }, + { + key: "K81.8", + en: "", + de: "Other cholecystitis", + }, + { + key: "K81.9", + en: "", + de: "Cholecystitis, unspecified", + }, + { + key: "K82", + en: "", + de: "Other diseases of gallbladder", + }, + { + key: "K82.0", + en: "", + de: "Obstruction of gallbladder", + }, + { + key: "K82.1", + en: "", + de: "Hydrops of gallbladder", + }, + { + key: "K82.2", + en: "", + de: "Perforation of gallbladder", + }, + { + key: "K82.3", + en: "", + de: "Fistula of gallbladder", + }, + { + key: "K82.4", + en: "", + de: "Cholesterolosis of gallbladder", + }, + { + key: "K82.8", + en: "", + de: "Other specified diseases of gallbladder", + }, + { + key: "K82.9", + en: "", + de: "Disease of gallbladder, unspecified", + }, + { + key: "K83", + en: "", + de: "Other diseases of biliary tract", + }, + { + key: "K83.0", + en: "", + de: "Cholangitis", + }, + { + key: "K83.1", + en: "", + de: "Obstruction of bile duct", + }, + { + key: "K83.2", + en: "", + de: "Perforation of bile duct", + }, + { + key: "K83.3", + en: "", + de: "Fistula of bile duct", + }, + { + key: "K83.4", + en: "", + de: "Spasm of sphincter of Oddi", + }, + { + key: "K83.5", + en: "", + de: "Biliary cyst", + }, + { + key: "K83.8", + en: "", + de: "Other specified diseases of biliary tract", + }, + { + key: "K83.9", + en: "", + de: "Disease of biliary tract, unspecified", + }, + { + key: "K85", + en: "", + de: "Acute pancreatitis", + }, + { + key: "K85.0", + en: "", + de: "Idiopathic acute pancreatitis", + }, + { + key: "K85.1", + en: "", + de: "Biliary acute pancreatitis", + }, + { + key: "K85.2", + en: "", + de: "Alcohol-induced acute pancreatitis", + }, + { + key: "K85.3", + en: "", + de: "Drug-induced acute pancreatitis", + }, + { + key: "K85.8", + en: "", + de: "Other acute pancreatitis", + }, + { + key: "K85.9", + en: "", + de: "Acute pancreatitis, unspecified", + }, + { + key: "K86", + en: "", + de: "Other diseases of pancreas", + }, + { + key: "K86.0", + en: "", + de: "Alcohol-induced chronic pancreatitis", + }, + { + key: "K86.1", + en: "", + de: "Other chronic pancreatitis", + }, + { + key: "K86.2", + en: "", + de: "Cyst of pancreas", + }, + { + key: "K86.3", + en: "", + de: "Pseudocyst of pancreas", + }, + { + key: "K86.8", + en: "", + de: "Other specified diseases of pancreas", + }, + { + key: "K86.9", + en: "", + de: "Disease of pancreas, unspecified", + }, + { + key: "K90", + en: "", + de: "Intestinal malabsorption", + }, + { + key: "K90.0", + en: "", + de: "Coeliac disease", + }, + { + key: "K90.1", + en: "", + de: "Tropical sprue", + }, + { + key: "K90.2", + en: "", + de: "Blind loop syndrome, not elsewhere classified", + }, + { + key: "K90.3", + en: "", + de: "Pancreatic steatorrhoea", + }, + { + key: "K90.4", + en: "", + de: "Malabsorption due to intolerance, not elsewhere classified", + }, + { + key: "K90.8", + en: "", + de: "Other intestinal malabsorption", + }, + { + key: "K90.9", + en: "", + de: "Intestinal malabsorption, unspecified", + }, + { + key: "K91", + en: "", + de: "Postprocedural disorders of digestive system, not elsewhere classified", + }, + { + key: "K91.0", + en: "", + de: "Vomiting following gastrointestinal surgery", + }, + { + key: "K91.1", + en: "", + de: "Postgastric surgery syndromes", + }, + { + key: "K91.2", + en: "", + de: "Postsurgical malabsorption, not elsewhere classified", + }, + { + key: "K91.3", + en: "", + de: "Postoperative intestinal obstruction", + }, + { + key: "K91.4", + en: "", + de: "Colostomy and enterostomy malfunction", + }, + { + key: "K91.5", + en: "", + de: "Postcholecystectomy syndrome", + }, + { + key: "K91.8", + en: "", + de: "Other postprocedural disorders of digestive system, not elsewhere classified", + }, + { + key: "K91.9", + en: "", + de: "Postprocedural disorder of digestive system, unspecified", + }, + { + key: "K92", + en: "", + de: "Other diseases of digestive system", + }, + { + key: "K92.0", + en: "", + de: "Haematemesis", + }, + { + key: "K92.1", + en: "", + de: "Melaena", + }, + { + key: "K92.2", + en: "", + de: "Gastrointestinal haemorrhage, unspecified", + }, + { + key: "K92.8", + en: "", + de: "Other specified diseases of digestive system", + }, + { + key: "K92.9", + en: "", + de: "Disease of digestive system, unspecified", + }, + { + key: "L00", + en: "", + de: "Staphylococcal scalded skin syndrome", + }, + { + key: "L01", + en: "", + de: "Impetigo", + }, + { + key: "L01.0", + en: "", + de: "Impetigo [any organism] [any site]", + }, + { + key: "L01.1", + en: "", + de: "Impetiginization of other dermatoses", + }, + { + key: "L02", + en: "", + de: "Cutaneous abscess, furuncle and carbuncle", + }, + { + key: "L02.0", + en: "", + de: "Cutaneous abscess, furuncle and carbuncle of face", + }, + { + key: "L02.1", + en: "", + de: "Cutaneous abscess, furuncle and carbuncle of neck", + }, + { + key: "L02.2", + en: "", + de: "Cutaneous abscess, furuncle and carbuncle of trunk", + }, + { + key: "L02.3", + en: "", + de: "Cutaneous abscess, furuncle and carbuncle of buttock", + }, + { + key: "L02.4", + en: "", + de: "Cutaneous abscess, furuncle and carbuncle of limb", + }, + { + key: "L02.8", + en: "", + de: "Cutaneous abscess, furuncle and carbuncle of other sites", + }, + { + key: "L02.9", + en: "", + de: "Cutaneous abscess, furuncle and carbuncle, unspecified", + }, + { + key: "L03", + en: "", + de: "Cellulitis", + }, + { + key: "L03.0", + en: "", + de: "Cellulitis of finger and toe", + }, + { + key: "L03.1", + en: "", + de: "Cellulitis of other parts of limb", + }, + { + key: "L03.2", + en: "", + de: "Cellulitis of face", + }, + { + key: "L03.3", + en: "", + de: "Cellulitis of trunk", + }, + { + key: "L03.8", + en: "", + de: "Cellulitis of other sites", + }, + { + key: "L03.9", + en: "", + de: "Cellulitis, unspecified", + }, + { + key: "L04", + en: "", + de: "Acute lymphadenitis", + }, + { + key: "L04.0", + en: "", + de: "Acute lymphadenitis of face, head and neck", + }, + { + key: "L04.1", + en: "", + de: "Acute lymphadenitis of trunk", + }, + { + key: "L04.2", + en: "", + de: "Acute lymphadenitis of upper limb", + }, + { + key: "L04.3", + en: "", + de: "Acute lymphadenitis of lower limb", + }, + { + key: "L04.8", + en: "", + de: "Acute lymphadenitis of other sites", + }, + { + key: "L04.9", + en: "", + de: "Acute lymphadenitis, unspecified", + }, + { + key: "L05", + en: "", + de: "Pilonidal cyst", + }, + { + key: "L05.0", + en: "", + de: "Pilonidal cyst with abscess", + }, + { + key: "L05.9", + en: "", + de: "Pilonidal cyst without abscess", + }, + { + key: "L08", + en: "", + de: "Other local infections of skin and subcutaneous tissue", + }, + { + key: "L08.0", + en: "", + de: "Pyoderma", + }, + { + key: "L08.1", + en: "", + de: "Erythrasma", + }, + { + key: "L08.8", + en: "", + de: "Other specified local infections of skin and subcutaneous tissue", + }, + { + key: "L08.9", + en: "", + de: "Local infection of skin and subcutaneous tissue, unspecified", + }, + { + key: "L10", + en: "", + de: "Pemphigus", + }, + { + key: "L10.0", + en: "", + de: "Pemphigus vulgaris", + }, + { + key: "L10.1", + en: "", + de: "Pemphigus vegetans", + }, + { + key: "L10.2", + en: "", + de: "Pemphigus foliaceus", + }, + { + key: "L10.3", + en: "", + de: "Brazilian pemphigus [fogo selvagem]", + }, + { + key: "L10.4", + en: "", + de: "Pemphigus erythematosus", + }, + { + key: "L10.5", + en: "", + de: "Drug-induced pemphigus", + }, + { + key: "L10.8", + en: "", + de: "Other pemphigus", + }, + { + key: "L10.9", + en: "", + de: "Pemphigus, unspecified", + }, + { + key: "L11", + en: "", + de: "Other acantholytic disorders", + }, + { + key: "L11.0", + en: "", + de: "Acquired keratosis follicularis", + }, + { + key: "L11.1", + en: "", + de: "Transient acantholytic dermatosis [Grover]", + }, + { + key: "L11.8", + en: "", + de: "Other specified acantholytic disorders", + }, + { + key: "L11.9", + en: "", + de: "Acantholytic disorder, unspecified", + }, + { + key: "L12", + en: "", + de: "Pemphigoid", + }, + { + key: "L12.0", + en: "", + de: "Bullous pemphigoid", + }, + { + key: "L12.1", + en: "", + de: "Cicatricial pemphigoid", + }, + { + key: "L12.2", + en: "", + de: "Chronic bullous disease of childhood", + }, + { + key: "L12.3", + en: "", + de: "Acquired epidermolysis bullosa", + }, + { + key: "L12.8", + en: "", + de: "Other pemphigoid", + }, + { + key: "L12.9", + en: "", + de: "Pemphigoid, unspecified", + }, + { + key: "L13", + en: "", + de: "Other bullous disorders", + }, + { + key: "L13.0", + en: "", + de: "Dermatitis herpetiformis", + }, + { + key: "L13.1", + en: "", + de: "Subcorneal pustular dermatitis", + }, + { + key: "L13.8", + en: "", + de: "Other specified bullous disorders", + }, + { + key: "L13.9", + en: "", + de: "Bullous disorder, unspecified", + }, + { + key: "L20", + en: "", + de: "Atopic dermatitis", + }, + { + key: "L20.0", + en: "", + de: "Besnier prurigo", + }, + { + key: "L20.8", + en: "", + de: "Other atopic dermatitis", + }, + { + key: "L20.9", + en: "", + de: "Atopic dermatitis, unspecified", + }, + { + key: "L21", + en: "", + de: "Seborrhoeic dermatitis", + }, + { + key: "L21.0", + en: "", + de: "Seborrhoea capitis", + }, + { + key: "L21.1", + en: "", + de: "Seborrhoeic infantile dermatitis", + }, + { + key: "L21.8", + en: "", + de: "Other seborrhoeic dermatitis", + }, + { + key: "L21.9", + en: "", + de: "Seborrhoeic dermatitis, unspecified", + }, + { + key: "L22", + en: "", + de: "Diaper [napkin] dermatitis", + }, + { + key: "L23", + en: "", + de: "Allergic contact dermatitis", + }, + { + key: "L23.0", + en: "", + de: "Allergic contact dermatitis due to metals", + }, + { + key: "L23.1", + en: "", + de: "Allergic contact dermatitis due to adhesives", + }, + { + key: "L23.2", + en: "", + de: "Allergic contact dermatitis due to cosmetics", + }, + { + key: "L23.3", + en: "", + de: "Allergic contact dermatitis due to drugs in contact with skin", + }, + { + key: "L23.4", + en: "", + de: "Allergic contact dermatitis due to dyes", + }, + { + key: "L23.5", + en: "", + de: "Allergic contact dermatitis due to other chemical products", + }, + { + key: "L23.6", + en: "", + de: "Allergic contact dermatitis due to food in contact with skin", + }, + { + key: "L23.7", + en: "", + de: "Allergic contact dermatitis due to plants, except food", + }, + { + key: "L23.8", + en: "", + de: "Allergic contact dermatitis due to other agents", + }, + { + key: "L23.9", + en: "", + de: "Allergic contact dermatitis, unspecified cause", + }, + { + key: "L24", + en: "", + de: "Irritant contact dermatitis", + }, + { + key: "L24.0", + en: "", + de: "Irritant contact dermatitis due to detergents", + }, + { + key: "L24.1", + en: "", + de: "Irritant contact dermatitis due to oils and greases", + }, + { + key: "L24.2", + en: "", + de: "Irritant contact dermatitis due to solvents", + }, + { + key: "L24.3", + en: "", + de: "Irritant contact dermatitis due to cosmetics", + }, + { + key: "L24.4", + en: "", + de: "Irritant contact dermatitis due to drugs in contact with skin", + }, + { + key: "L24.5", + en: "", + de: "Irritant contact dermatitis due to other chemical products", + }, + { + key: "L24.6", + en: "", + de: "Irritant contact dermatitis due to food in contact with skin", + }, + { + key: "L24.7", + en: "", + de: "Irritant contact dermatitis due to plants, except food", + }, + { + key: "L24.8", + en: "", + de: "Irritant contact dermatitis due to other agents", + }, + { + key: "L24.9", + en: "", + de: "Irritant contact dermatitis, unspecified cause", + }, + { + key: "L25", + en: "", + de: "Unspecified contact dermatitis", + }, + { + key: "L25.0", + en: "", + de: "Unspecified contact dermatitis due to cosmetics", + }, + { + key: "L25.1", + en: "", + de: "Unspecified contact dermatitis due to drugs in contact with skin", + }, + { + key: "L25.2", + en: "", + de: "Unspecified contact dermatitis due to dyes", + }, + { + key: "L25.3", + en: "", + de: "Unspecified contact dermatitis due to other chemical products", + }, + { + key: "L25.4", + en: "", + de: "Unspecified contact dermatitis due to food in contact with skin", + }, + { + key: "L25.5", + en: "", + de: "Unspecified contact dermatitis due to plants, except food", + }, + { + key: "L25.8", + en: "", + de: "Unspecified contact dermatitis due to other agents", + }, + { + key: "L25.9", + en: "", + de: "Unspecified contact dermatitis, unspecified cause", + }, + { + key: "L26", + en: "", + de: "Exfoliative dermatitis", + }, + { + key: "L27", + en: "", + de: "Dermatitis due to substances taken internally", + }, + { + key: "L27.0", + en: "", + de: "Generalized skin eruption due to drugs and medicaments", + }, + { + key: "L27.1", + en: "", + de: "Localized skin eruption due to drugs and medicaments", + }, + { + key: "L27.2", + en: "", + de: "Dermatitis due to ingested food", + }, + { + key: "L27.8", + en: "", + de: "Dermatitis due to other substances taken internally", + }, + { + key: "L27.9", + en: "", + de: "Dermatitis due to unspecified substance taken internally", + }, + { + key: "L28", + en: "", + de: "Lichen simplex chronicus and prurigo", + }, + { + key: "L28.0", + en: "", + de: "Lichen simplex chronicus", + }, + { + key: "L28.1", + en: "", + de: "Prurigo nodularis", + }, + { + key: "L28.2", + en: "", + de: "Other prurigo", + }, + { + key: "L29", + en: "", + de: "Pruritus", + }, + { + key: "L29.0", + en: "", + de: "Pruritus ani", + }, + { + key: "L29.1", + en: "", + de: "Pruritus scroti", + }, + { + key: "L29.2", + en: "", + de: "Pruritus vulvae", + }, + { + key: "L29.3", + en: "", + de: "Anogenital pruritus, unspecified", + }, + { + key: "L29.8", + en: "", + de: "Other pruritus", + }, + { + key: "L29.9", + en: "", + de: "Pruritus, unspecified", + }, + { + key: "L30", + en: "", + de: "Other dermatitis", + }, + { + key: "L30.0", + en: "", + de: "Nummular dermatitis", + }, + { + key: "L30.1", + en: "", + de: "Dyshidrosis [pompholyx]", + }, + { + key: "L30.2", + en: "", + de: "Cutaneous autosensitization", + }, + { + key: "L30.3", + en: "", + de: "Infective dermatitis", + }, + { + key: "L30.4", + en: "", + de: "Erythema intertrigo", + }, + { + key: "L30.5", + en: "", + de: "Pityriasis alba", + }, + { + key: "L30.8", + en: "", + de: "Other specified dermatitis", + }, + { + key: "L30.9", + en: "", + de: "Dermatitis, unspecified", + }, + { + key: "L40", + en: "", + de: "Psoriasis", + }, + { + key: "L40.0", + en: "", + de: "Psoriasis vulgaris", + }, + { + key: "L40.1", + en: "", + de: "Generalized pustular psoriasis", + }, + { + key: "L40.2", + en: "", + de: "Acrodermatitis continua", + }, + { + key: "L40.3", + en: "", + de: "Pustulosis palmaris et plantaris", + }, + { + key: "L40.4", + en: "", + de: "Guttate psoriasis", + }, + { + key: "L40.8", + en: "", + de: "Other psoriasis", + }, + { + key: "L40.9", + en: "", + de: "Psoriasis, unspecified", + }, + { + key: "L41", + en: "", + de: "Parapsoriasis", + }, + { + key: "L41.0", + en: "", + de: "Pityriasis lichenoides et varioliformis acuta", + }, + { + key: "L41.1", + en: "", + de: "Pityriasis lichenoides chronica", + }, + { + key: "L41.3", + en: "", + de: "Small plaque parapsoriasis", + }, + { + key: "L41.4", + en: "", + de: "Large plaque parapsoriasis", + }, + { + key: "L41.5", + en: "", + de: "Retiform parapsoriasis", + }, + { + key: "L41.8", + en: "", + de: "Other parapsoriasis", + }, + { + key: "L41.9", + en: "", + de: "Parapsoriasis, unspecified", + }, + { + key: "L42", + en: "", + de: "Pityriasis rosea", + }, + { + key: "L43", + en: "", + de: "Lichen planus", + }, + { + key: "L43.0", + en: "", + de: "Hypertrophic lichen planus", + }, + { + key: "L43.1", + en: "", + de: "Bullous lichen planus", + }, + { + key: "L43.2", + en: "", + de: "Lichenoid drug reaction", + }, + { + key: "L43.3", + en: "", + de: "Subacute (active) lichen planus", + }, + { + key: "L43.8", + en: "", + de: "Other lichen planus", + }, + { + key: "L43.9", + en: "", + de: "Lichen planus, unspecified", + }, + { + key: "L44", + en: "", + de: "Other papulosquamous disorders", + }, + { + key: "L44.0", + en: "", + de: "Pityriasis rubra pilaris", + }, + { + key: "L44.1", + en: "", + de: "Lichen nitidus", + }, + { + key: "L44.2", + en: "", + de: "Lichen striatus", + }, + { + key: "L44.3", + en: "", + de: "Lichen ruber moniliformis", + }, + { + key: "L44.4", + en: "", + de: "Infantile papular acrodermatitis [Giannotti-Crosti]", + }, + { + key: "L44.8", + en: "", + de: "Other specified papulosquamous disorders", + }, + { + key: "L44.9", + en: "", + de: "Papulosquamous disorder, unspecified", + }, + { + key: "L50", + en: "", + de: "Urticaria", + }, + { + key: "L50.0", + en: "", + de: "Allergic urticaria", + }, + { + key: "L50.1", + en: "", + de: "Idiopathic urticaria", + }, + { + key: "L50.2", + en: "", + de: "Urticaria due to cold and heat", + }, + { + key: "L50.3", + en: "", + de: "Dermatographic urticaria", + }, + { + key: "L50.4", + en: "", + de: "Vibratory urticaria", + }, + { + key: "L50.5", + en: "", + de: "Cholinergic urticaria", + }, + { + key: "L50.6", + en: "", + de: "Contact urticaria", + }, + { + key: "L50.8", + en: "", + de: "Other urticaria", + }, + { + key: "L50.9", + en: "", + de: "Urticaria, unspecified", + }, + { + key: "L51", + en: "", + de: "Erythema multiforme", + }, + { + key: "L51.0", + en: "", + de: "Nonbullous erythema multiforme", + }, + { + key: "L51.1", + en: "", + de: "Bullous erythema multiforme", + }, + { + key: "L51.2", + en: "", + de: "Toxic epidermal necrolysis [Lyell]", + }, + { + key: "L51.8", + en: "", + de: "Other erythema multiforme", + }, + { + key: "L51.9", + en: "", + de: "Erythema multiforme, unspecified", + }, + { + key: "L52", + en: "", + de: "Erythema nodosum", + }, + { + key: "L53", + en: "", + de: "Other erythematous conditions", + }, + { + key: "L53.0", + en: "", + de: "Toxic erythema", + }, + { + key: "L53.1", + en: "", + de: "Erythema annulare centrifugum", + }, + { + key: "L53.2", + en: "", + de: "Erythema marginatum", + }, + { + key: "L53.3", + en: "", + de: "Other chronic figurate erythema", + }, + { + key: "L53.8", + en: "", + de: "Other specified erythematous conditions", + }, + { + key: "L53.9", + en: "", + de: "Erythematous condition, unspecified", + }, + { + key: "L55", + en: "", + de: "Sunburn", + }, + { + key: "L55.0", + en: "", + de: "Sunburn of first degree", + }, + { + key: "L55.1", + en: "", + de: "Sunburn of second degree", + }, + { + key: "L55.2", + en: "", + de: "Sunburn of third degree", + }, + { + key: "L55.8", + en: "", + de: "Other sunburn", + }, + { + key: "L55.9", + en: "", + de: "Sunburn, unspecified", + }, + { + key: "L56", + en: "", + de: "Other acute skin changes due to ultraviolet radiation", + }, + { + key: "L56.0", + en: "", + de: "Drug phototoxic response", + }, + { + key: "L56.1", + en: "", + de: "Drug photoallergic response", + }, + { + key: "L56.2", + en: "", + de: "Photocontact dermatitis [berloque dermatitis]", + }, + { + key: "L56.3", + en: "", + de: "Solar urticaria", + }, + { + key: "L56.4", + en: "", + de: "Polymorphous light eruption", + }, + { + key: "L56.8", + en: "", + de: "Other specified acute skin changes due to ultraviolet radiation", + }, + { + key: "L56.9", + en: "", + de: "Acute skin change due to ultraviolet radiation, unspecified", + }, + { + key: "L57", + en: "", + de: "Skin changes due to chronic exposure to nonionizing radiation", + }, + { + key: "L57.0", + en: "", + de: "Actinic keratosis", + }, + { + key: "L57.1", + en: "", + de: "Actinic reticuloid", + }, + { + key: "L57.2", + en: "", + de: "Cutis rhomboidalis nuchae", + }, + { + key: "L57.3", + en: "", + de: "Poikiloderma of Civatte", + }, + { + key: "L57.4", + en: "", + de: "Cutis laxa senilis", + }, + { + key: "L57.5", + en: "", + de: "Actinic granuloma", + }, + { + key: "L57.8", + en: "", + de: "Other skin changes due to chronic exposure to nonionizing radiation", + }, + { + key: "L57.9", + en: "", + de: "Skin changes due to chronic exposure to nonionizing radiation, unspecified", + }, + { + key: "L58", + en: "", + de: "Radiodermatitis", + }, + { + key: "L58.0", + en: "", + de: "Acute radiodermatitis", + }, + { + key: "L58.1", + en: "", + de: "Chronic radiodermatitis", + }, + { + key: "L58.9", + en: "", + de: "Radiodermatitis, unspecified", + }, + { + key: "L59", + en: "", + de: "Other disorders of skin and subcutaneous tissue related to radiation", + }, + { + key: "L59.0", + en: "", + de: "Erythema ab igne [dermatitis ab igne]", + }, + { + key: "L59.8", + en: "", + de: "Other specified disorders of skin and subcutaneous tissue related to radiation", + }, + { + key: "L59.9", + en: "", + de: "Disorder of skin and subcutaneous tissue related to radiation, unspecified", + }, + { + key: "L60", + en: "", + de: "Nail disorders", + }, + { + key: "L60.0", + en: "", + de: "Ingrowing nail", + }, + { + key: "L60.1", + en: "", + de: "Onycholysis", + }, + { + key: "L60.2", + en: "", + de: "Onychogryphosis", + }, + { + key: "L60.3", + en: "", + de: "Nail dystrophy", + }, + { + key: "L60.4", + en: "", + de: "Beau lines", + }, + { + key: "L60.5", + en: "", + de: "Yellow nail syndrome", + }, + { + key: "L60.8", + en: "", + de: "Other nail disorders", + }, + { + key: "L60.9", + en: "", + de: "Nail disorder, unspecified", + }, + { + key: "L63", + en: "", + de: "Alopecia areata", + }, + { + key: "L63.0", + en: "", + de: "Alopecia (capitis) totalis", + }, + { + key: "L63.1", + en: "", + de: "Alopecia universalis", + }, + { + key: "L63.2", + en: "", + de: "Ophiasis", + }, + { + key: "L63.8", + en: "", + de: "Other alopecia areata", + }, + { + key: "L63.9", + en: "", + de: "Alopecia areata, unspecified", + }, + { + key: "L64", + en: "", + de: "Androgenic alopecia", + }, + { + key: "L64.0", + en: "", + de: "Drug-induced androgenic alopecia", + }, + { + key: "L64.8", + en: "", + de: "Other androgenic alopecia", + }, + { + key: "L64.9", + en: "", + de: "Androgenic alopecia, unspecified", + }, + { + key: "L65", + en: "", + de: "Other nonscarring hair loss", + }, + { + key: "L65.0", + en: "", + de: "Telogen effluvium", + }, + { + key: "L65.1", + en: "", + de: "Anagen effluvium", + }, + { + key: "L65.2", + en: "", + de: "Alopecia mucinosa", + }, + { + key: "L65.8", + en: "", + de: "Other specified nonscarring hair loss", + }, + { + key: "L65.9", + en: "", + de: "Nonscarring hair loss, unspecified", + }, + { + key: "L66", + en: "", + de: "Cicatricial alopecia [scarring hair loss]", + }, + { + key: "L66.0", + en: "", + de: "Pseudopelade", + }, + { + key: "L66.1", + en: "", + de: "Lichen planopilaris", + }, + { + key: "L66.2", + en: "", + de: "Folliculitis decalvans", + }, + { + key: "L66.3", + en: "", + de: "Perifolliculitis capitis abscedens", + }, + { + key: "L66.4", + en: "", + de: "Folliculitis ulerythematosa reticulata", + }, + { + key: "L66.8", + en: "", + de: "Other cicatricial alopecia", + }, + { + key: "L66.9", + en: "", + de: "Cicatricial alopecia, unspecified", + }, + { + key: "L67", + en: "", + de: "Hair colour and hair shaft abnormalities", + }, + { + key: "L67.0", + en: "", + de: "Trichorrhexis nodosa", + }, + { + key: "L67.1", + en: "", + de: "Variations in hair colour", + }, + { + key: "L67.8", + en: "", + de: "Other hair colour and hair shaft abnormalities", + }, + { + key: "L67.9", + en: "", + de: "Hair colour and hair shaft abnormality, unspecified", + }, + { + key: "L68", + en: "", + de: "Hypertrichosis", + }, + { + key: "L68.0", + en: "", + de: "Hirsutism", + }, + { + key: "L68.1", + en: "", + de: "Acquired hypertrichosis lanuginosa", + }, + { + key: "L68.2", + en: "", + de: "Localized hypertrichosis", + }, + { + key: "L68.3", + en: "", + de: "Polytrichia", + }, + { + key: "L68.8", + en: "", + de: "Other hypertrichosis", + }, + { + key: "L68.9", + en: "", + de: "Hypertrichosis, unspecified", + }, + { + key: "L70", + en: "", + de: "Acne", + }, + { + key: "L70.0", + en: "", + de: "Acne vulgaris", + }, + { + key: "L70.1", + en: "", + de: "Acne conglobata", + }, + { + key: "L70.2", + en: "", + de: "Acne varioliformis", + }, + { + key: "L70.3", + en: "", + de: "Acne tropica", + }, + { + key: "L70.4", + en: "", + de: "Infantile acne", + }, + { + key: "L70.5", + en: "", + de: "Acné excoriée", + }, + { + key: "L70.8", + en: "", + de: "Other acne", + }, + { + key: "L70.9", + en: "", + de: "Acne, unspecified", + }, + { + key: "L71", + en: "", + de: "Rosacea", + }, + { + key: "L71.0", + en: "", + de: "Perioral dermatitis", + }, + { + key: "L71.1", + en: "", + de: "Rhinophyma", + }, + { + key: "L71.8", + en: "", + de: "Other rosacea", + }, + { + key: "L71.9", + en: "", + de: "Rosacea, unspecified", + }, + { + key: "L72", + en: "", + de: "Follicular cysts of skin and subcutaneous tissue", + }, + { + key: "L72.0", + en: "", + de: "Epidermal cyst", + }, + { + key: "L72.1", + en: "", + de: "Trichilemmal cyst", + }, + { + key: "L72.2", + en: "", + de: "Steatocystoma multiplex", + }, + { + key: "L72.8", + en: "", + de: "Other follicular cysts of skin and subcutaneous tissue", + }, + { + key: "L72.9", + en: "", + de: "Follicular cyst of skin and subcutaneous tissue, unspecified", + }, + { + key: "L73", + en: "", + de: "Other follicular disorders", + }, + { + key: "L73.0", + en: "", + de: "Acne keloid", + }, + { + key: "L73.1", + en: "", + de: "Pseudofolliculitis barbae", + }, + { + key: "L73.2", + en: "", + de: "Hidradenitis suppurativa", + }, + { + key: "L73.8", + en: "", + de: "Other specified follicular disorders", + }, + { + key: "L73.9", + en: "", + de: "Follicular disorder, unspecified", + }, + { + key: "L74", + en: "", + de: "Eccrine sweat disorders", + }, + { + key: "L74.0", + en: "", + de: "Miliaria rubra", + }, + { + key: "L74.1", + en: "", + de: "Miliaria crystallina", + }, + { + key: "L74.2", + en: "", + de: "Miliaria profunda", + }, + { + key: "L74.3", + en: "", + de: "Miliaria, unspecified", + }, + { + key: "L74.4", + en: "", + de: "Anhidrosis", + }, + { + key: "L74.8", + en: "", + de: "Other eccrine sweat disorders", + }, + { + key: "L74.9", + en: "", + de: "Eccrine sweat disorder, unspecified", + }, + { + key: "L75", + en: "", + de: "Apocrine sweat disorders", + }, + { + key: "L75.0", + en: "", + de: "Bromhidrosis", + }, + { + key: "L75.1", + en: "", + de: "Chromhidrosis", + }, + { + key: "L75.2", + en: "", + de: "Apocrine miliaria", + }, + { + key: "L75.8", + en: "", + de: "Other apocrine sweat disorders", + }, + { + key: "L75.9", + en: "", + de: "Apocrine sweat disorder, unspecified", + }, + { + key: "L80", + en: "", + de: "Vitiligo", + }, + { + key: "L81", + en: "", + de: "Other disorders of pigmentation", + }, + { + key: "L81.0", + en: "", + de: "Postinflammatory hyperpigmentation", + }, + { + key: "L81.1", + en: "", + de: "Chloasma", + }, + { + key: "L81.2", + en: "", + de: "Freckles", + }, + { + key: "L81.3", + en: "", + de: "Café au lait spots", + }, + { + key: "L81.4", + en: "", + de: "Other melanin hyperpigmentation", + }, + { + key: "L81.5", + en: "", + de: "Leukoderma, not elsewhere classified", + }, + { + key: "L81.6", + en: "", + de: "Other disorders of diminished melanin formation", + }, + { + key: "L81.7", + en: "", + de: "Pigmented purpuric dermatosis", + }, + { + key: "L81.8", + en: "", + de: "Other specified disorders of pigmentation", + }, + { + key: "L81.9", + en: "", + de: "Disorder of pigmentation, unspecified", + }, + { + key: "L82", + en: "", + de: "Seborrhoeic keratosis", + }, + { + key: "L83", + en: "", + de: "Acanthosis nigricans", + }, + { + key: "L84", + en: "", + de: "Corns and callosities", + }, + { + key: "L85", + en: "", + de: "Other epidermal thickening", + }, + { + key: "L85.0", + en: "", + de: "Acquired ichthyosis", + }, + { + key: "L85.1", + en: "", + de: "Acquired keratosis [keratoderma] palmaris et plantaris", + }, + { + key: "L85.2", + en: "", + de: "Keratosis punctata (palmaris et plantaris)", + }, + { + key: "L85.3", + en: "", + de: "Xerosis cutis", + }, + { + key: "L85.8", + en: "", + de: "Other specified epidermal thickening", + }, + { + key: "L85.9", + en: "", + de: "Epidermal thickening, unspecified", + }, + { + key: "L87", + en: "", + de: "Transepidermal elimination disorders", + }, + { + key: "L87.0", + en: "", + de: "Keratosis follicularis et parafollicularis in cutem penetrans [Kyrle]", + }, + { + key: "L87.1", + en: "", + de: "Reactive perforating collagenosis", + }, + { + key: "L87.2", + en: "", + de: "Elastosis perforans serpiginosa", + }, + { + key: "L87.8", + en: "", + de: "Other transepidermal elimination disorders", + }, + { + key: "L87.9", + en: "", + de: "Transepidermal elimination disorder, unspecified", + }, + { + key: "L88", + en: "", + de: "Pyoderma gangrenosum", + }, + { + key: "L89", + en: "", + de: "Decubitus ulcer and pressure area", + }, + { + key: "L89.0", + en: "", + de: "Stage I decubitus ulcer and pressure area", + }, + { + key: "L89.1", + en: "", + de: "Stage II decubitus ulcer", + }, + { + key: "L89.2", + en: "", + de: "Stage III decubitus ulcer", + }, + { + key: "L89.3", + en: "", + de: "Stage IV decubitus ulcer", + }, + { + key: "L89.9", + en: "", + de: "Decubitus ulcer and pressure area, unspecified", + }, + { + key: "L90", + en: "", + de: "Atrophic disorders of skin", + }, + { + key: "L90.0", + en: "", + de: "Lichen sclerosus et atrophicus", + }, + { + key: "L90.1", + en: "", + de: "Anetoderma of Schweninger-Buzzi", + }, + { + key: "L90.2", + en: "", + de: "Anetoderma of Jadassohn-Pellizzari", + }, + { + key: "L90.3", + en: "", + de: "Atrophoderma of Pasini and Pierini", + }, + { + key: "L90.4", + en: "", + de: "Acrodermatitis chronica atrophicans", + }, + { + key: "L90.5", + en: "", + de: "Scar conditions and fibrosis of skin", + }, + { + key: "L90.6", + en: "", + de: "Striae atrophicae", + }, + { + key: "L90.8", + en: "", + de: "Other atrophic disorders of skin", + }, + { + key: "L90.9", + en: "", + de: "Atrophic disorder of skin, unspecified", + }, + { + key: "L91", + en: "", + de: "Hypertrophic disorders of skin", + }, + { + key: "L91.0", + en: "", + de: "Hypertrophic scar", + }, + { + key: "L91.8", + en: "", + de: "Other hypertrophic disorders of skin", + }, + { + key: "L91.9", + en: "", + de: "Hypertrophic disorder of skin, unspecified", + }, + { + key: "L92", + en: "", + de: "Granulomatous disorders of skin and subcutaneous tissue", + }, + { + key: "L92.0", + en: "", + de: "Granuloma annulare", + }, + { + key: "L92.1", + en: "", + de: "Necrobiosis lipoidica, not elsewhere classified", + }, + { + key: "L92.2", + en: "", + de: "Granuloma faciale [eosinophilic granuloma of skin]", + }, + { + key: "L92.3", + en: "", + de: "Foreign body granuloma of skin and subcutaneous tissue", + }, + { + key: "L92.8", + en: "", + de: "Other granulomatous disorders of skin and subcutaneous tissue", + }, + { + key: "L92.9", + en: "", + de: "Granulomatous disorder of skin and subcutaneous tissue, unspecified", + }, + { + key: "L93", + en: "", + de: "Lupus erythematosus", + }, + { + key: "L93.0", + en: "", + de: "Discoid lupus erythematosus", + }, + { + key: "L93.1", + en: "", + de: "Subacute cutaneous lupus erythematosus", + }, + { + key: "L93.2", + en: "", + de: "Other local lupus erythematosus", + }, + { + key: "L94", + en: "", + de: "Other localized connective tissue disorders", + }, + { + key: "L94.0", + en: "", + de: "Localized scleroderma [morphea]", + }, + { + key: "L94.1", + en: "", + de: "Linear scleroderma", + }, + { + key: "L94.2", + en: "", + de: "Calcinosis cutis", + }, + { + key: "L94.3", + en: "", + de: "Sclerodactyly", + }, + { + key: "L94.4", + en: "", + de: "Gottron papules", + }, + { + key: "L94.5", + en: "", + de: "Poikiloderma vasculare atrophicans", + }, + { + key: "L94.6", + en: "", + de: "Ainhum", + }, + { + key: "L94.8", + en: "", + de: "Other specified localized connective tissue disorders", + }, + { + key: "L94.9", + en: "", + de: "Localized connective tissue disorder, unspecified", + }, + { + key: "L95", + en: "", + de: "Vasculitis limited to skin, not elsewhere classified", + }, + { + key: "L95.0", + en: "", + de: "Livedoid vasculitis", + }, + { + key: "L95.1", + en: "", + de: "Erythema elevatum diutinum", + }, + { + key: "L95.8", + en: "", + de: "Other vasculitis limited to skin", + }, + { + key: "L95.9", + en: "", + de: "Vasculitis limited to skin, unspecified", + }, + { + key: "L97", + en: "", + de: "Ulcer of lower limb, not elsewhere classified", + }, + { + key: "L98", + en: "", + de: "Other disorders of skin and subcutaneous tissue, not elsewhere classified", + }, + { + key: "L98.0", + en: "", + de: "Pyogenic granuloma", + }, + { + key: "L98.1", + en: "", + de: "Factitial dermatitis", + }, + { + key: "L98.2", + en: "", + de: "Febrile neutrophilic dermatosis [Sweet]", + }, + { + key: "L98.3", + en: "", + de: "Eosinophilic cellulitis [Wells]", + }, + { + key: "L98.4", + en: "", + de: "Chronic ulcer of skin, not elsewhere classified", + }, + { + key: "L98.5", + en: "", + de: "Mucinosis of skin", + }, + { + key: "L98.6", + en: "", + de: "Other infiltrative disorders of skin and subcutaneous tissue", + }, + { + key: "L98.7", + en: "", + de: "Excessive and redundant skin and subcutaneous tissue", + }, + { + key: "L98.8", + en: "", + de: "Other specified disorders of skin and subcutaneous tissue", + }, + { + key: "L98.9", + en: "", + de: "Disorder of skin and subcutaneous tissue, unspecified", + }, + { + key: "M00", + en: "", + de: "Pyogenic arthritis", + }, + { + key: "M00.0", + en: "", + de: "Staphylococcal arthritis and polyarthritis", + }, + { + key: "M00.1", + en: "", + de: "Pneumococcal arthritis and polyarthritis", + }, + { + key: "M00.2", + en: "", + de: "Other streptococcal arthritis and polyarthritis", + }, + { + key: "M00.8", + en: "", + de: "Arthritis and polyarthritis due to other specified bacterial agents", + }, + { + key: "M00.9", + en: "", + de: "Pyogenic arthritis, unspecified", + }, + { + key: "M02", + en: "", + de: "Reactive arthropathies", + }, + { + key: "M02.0", + en: "", + de: "Arthropathy following intestinal bypass", + }, + { + key: "M02.1", + en: "", + de: "Postdysenteric arthropathy", + }, + { + key: "M02.2", + en: "", + de: "Postimmunization arthropathy", + }, + { + key: "M02.3", + en: "", + de: "Reiter disease", + }, + { + key: "M02.8", + en: "", + de: "Other reactive arthropathies", + }, + { + key: "M02.9", + en: "", + de: "Reactive arthropathy, unspecified", + }, + { + key: "M05", + en: "", + de: "Seropositive rheumatoid arthritis", + }, + { + key: "M05.0", + en: "", + de: "Felty syndrome", + }, + { + key: "M05.2", + en: "", + de: "Rheumatoid vasculitis", + }, + { + key: "M05.8", + en: "", + de: "Other seropositive rheumatoid arthritis", + }, + { + key: "M05.9", + en: "", + de: "Seropositive rheumatoid arthritis, unspecified", + }, + { + key: "M06", + en: "", + de: "Other rheumatoid arthritis", + }, + { + key: "M06.0", + en: "", + de: "Seronegative rheumatoid arthritis", + }, + { + key: "M06.1", + en: "", + de: "Adult-onset Still disease", + }, + { + key: "M06.2", + en: "", + de: "Rheumatoid bursitis", + }, + { + key: "M06.3", + en: "", + de: "Rheumatoid nodule", + }, + { + key: "M06.4", + en: "", + de: "Inflammatory polyarthropathy", + }, + { + key: "M06.8", + en: "", + de: "Other specified rheumatoid arthritis", + }, + { + key: "M06.9", + en: "", + de: "Rheumatoid arthritis, unspecified", + }, + { + key: "M08", + en: "", + de: "Juvenile arthritis", + }, + { + key: "M08.0", + en: "", + de: "Juvenile rheumatoid arthritis", + }, + { + key: "M08.1", + en: "", + de: "Juvenile ankylosing spondylitis", + }, + { + key: "M08.2", + en: "", + de: "Juvenile arthritis with systemic onset", + }, + { + key: "M08.3", + en: "", + de: "Juvenile polyarthritis (seronegative)", + }, + { + key: "M08.4", + en: "", + de: "Pauciarticular juvenile arthritis", + }, + { + key: "M08.8", + en: "", + de: "Other juvenile arthritis", + }, + { + key: "M08.9", + en: "", + de: "Juvenile arthritis, unspecified", + }, + { + key: "M10", + en: "", + de: "Gout", + }, + { + key: "M10.0", + en: "", + de: "Idiopathic gout", + }, + { + key: "M10.1", + en: "", + de: "Lead-induced gout", + }, + { + key: "M10.2", + en: "", + de: "Drug-induced gout", + }, + { + key: "M10.3", + en: "", + de: "Gout due to impairment of renal function", + }, + { + key: "M10.4", + en: "", + de: "Other secondary gout", + }, + { + key: "M10.9", + en: "", + de: "Gout, unspecified", + }, + { + key: "M11", + en: "", + de: "Other crystal arthropathies", + }, + { + key: "M11.0", + en: "", + de: "Hydroxyapatite deposition disease", + }, + { + key: "M11.1", + en: "", + de: "Familial chondrocalcinosis", + }, + { + key: "M11.2", + en: "", + de: "Other chondrocalcinosis", + }, + { + key: "M11.8", + en: "", + de: "Other specified crystal arthropathies", + }, + { + key: "M11.9", + en: "", + de: "Crystal arthropathy, unspecified", + }, + { + key: "M12", + en: "", + de: "Other specific arthropathies", + }, + { + key: "M12.0", + en: "", + de: "Chronic postrheumatic arthropathy [Jaccoud]", + }, + { + key: "M12.1", + en: "", + de: "Kaschin-Beck disease", + }, + { + key: "M12.2", + en: "", + de: "Villonodular synovitis (pigmented)", + }, + { + key: "M12.3", + en: "", + de: "Palindromic rheumatism", + }, + { + key: "M12.4", + en: "", + de: "Intermittent hydrarthrosis", + }, + { + key: "M12.5", + en: "", + de: "Traumatic arthropathy", + }, + { + key: "M12.8", + en: "", + de: "Other specific arthropathies, not elsewhere classified", + }, + { + key: "M13", + en: "", + de: "Other arthritis", + }, + { + key: "M13.0", + en: "", + de: "Polyarthritis, unspecified", + }, + { + key: "M13.1", + en: "", + de: "Monoarthritis, not elsewhere classified", + }, + { + key: "M13.8", + en: "", + de: "Other specified arthritis", + }, + { + key: "M13.9", + en: "", + de: "Arthritis, unspecified", + }, + { + key: "M15", + en: "", + de: "Polyarthrosis", + }, + { + key: "M15.0", + en: "", + de: "Primary generalized (osteo)arthrosis", + }, + { + key: "M15.1", + en: "", + de: "Heberden nodes (with arthropathy)", + }, + { + key: "M15.2", + en: "", + de: "Bouchard nodes (with arthropathy)", + }, + { + key: "M15.3", + en: "", + de: "Secondary multiple arthrosis", + }, + { + key: "M15.4", + en: "", + de: "Erosive (osteo)arthrosis", + }, + { + key: "M15.8", + en: "", + de: "Other polyarthrosis", + }, + { + key: "M15.9", + en: "", + de: "Polyarthrosis, unspecified", + }, + { + key: "M16", + en: "", + de: "Coxarthrosis [arthrosis of hip]", + }, + { + key: "M16.0", + en: "", + de: "Primary coxarthrosis, bilateral", + }, + { + key: "M16.1", + en: "", + de: "Other primary coxarthrosis", + }, + { + key: "M16.2", + en: "", + de: "Coxarthrosis resulting from dysplasia, bilateral", + }, + { + key: "M16.3", + en: "", + de: "Other dysplastic coxarthrosis", + }, + { + key: "M16.4", + en: "", + de: "Post-traumatic coxarthrosis, bilateral", + }, + { + key: "M16.5", + en: "", + de: "Other post-traumatic coxarthrosis", + }, + { + key: "M16.6", + en: "", + de: "Other secondary coxarthrosis, bilateral", + }, + { + key: "M16.7", + en: "", + de: "Other secondary coxarthrosis", + }, + { + key: "M16.9", + en: "", + de: "Coxarthrosis, unspecified", + }, + { + key: "M17", + en: "", + de: "Gonarthrosis [arthrosis of knee]", + }, + { + key: "M17.0", + en: "", + de: "Primary gonarthrosis, bilateral", + }, + { + key: "M17.1", + en: "", + de: "Other primary gonarthrosis", + }, + { + key: "M17.2", + en: "", + de: "Post-traumatic gonarthrosis, bilateral", + }, + { + key: "M17.3", + en: "", + de: "Other post-traumatic gonarthrosis", + }, + { + key: "M17.4", + en: "", + de: "Other secondary gonarthrosis, bilateral", + }, + { + key: "M17.5", + en: "", + de: "Other secondary gonarthrosis", + }, + { + key: "M17.9", + en: "", + de: "Gonarthrosis, unspecified", + }, + { + key: "M18", + en: "", + de: "Arthrosis of first carpometacarpal joint", + }, + { + key: "M18.0", + en: "", + de: "Primary arthrosis of first carpometacarpal joints, bilateral", + }, + { + key: "M18.1", + en: "", + de: "Other primary arthrosis of first carpometacarpal joint", + }, + { + key: "M18.2", + en: "", + de: "Post-traumatic arthrosis of first carpometacarpal joints, bilateral", + }, + { + key: "M18.3", + en: "", + de: "Other post-traumatic arthrosis of first carpometacarpal joint", + }, + { + key: "M18.4", + en: "", + de: "Other secondary arthrosis of first carpometacarpal joints, bilateral", + }, + { + key: "M18.5", + en: "", + de: "Other secondary arthrosis of first carpometacarpal joint", + }, + { + key: "M18.9", + en: "", + de: "Arthrosis of first carpometacarpal joint, unspecified", + }, + { + key: "M19", + en: "", + de: "Other arthrosis", + }, + { + key: "M19.0", + en: "", + de: "Primary arthrosis of other joints", + }, + { + key: "M19.1", + en: "", + de: "Post-traumatic arthrosis of other joints", + }, + { + key: "M19.2", + en: "", + de: "Other secondary arthrosis", + }, + { + key: "M19.8", + en: "", + de: "Other specified arthrosis", + }, + { + key: "M19.9", + en: "", + de: "Arthrosis, unspecified", + }, + { + key: "M20", + en: "", + de: "Acquired deformities of fingers and toes", + }, + { + key: "M20.0", + en: "", + de: "Deformity of finger(s)", + }, + { + key: "M20.1", + en: "", + de: "Hallux valgus (acquired)", + }, + { + key: "M20.2", + en: "", + de: "Hallux rigidus", + }, + { + key: "M20.3", + en: "", + de: "Other deformity of hallux (acquired)", + }, + { + key: "M20.4", + en: "", + de: "Other hammer toe(s) (acquired)", + }, + { + key: "M20.5", + en: "", + de: "Other deformities of toe(s) (acquired)", + }, + { + key: "M20.6", + en: "", + de: "Acquired deformity of toe(s), unspecified", + }, + { + key: "M21", + en: "", + de: "Other acquired deformities of limbs", + }, + { + key: "M21.0", + en: "", + de: "Valgus deformity, not elsewhere classified", + }, + { + key: "M21.1", + en: "", + de: "Varus deformity, not elsewhere classified", + }, + { + key: "M21.2", + en: "", + de: "Flexion deformity", + }, + { + key: "M21.3", + en: "", + de: "Wrist or foot drop (acquired)", + }, + { + key: "M21.4", + en: "", + de: "Flat foot [pes planus] (acquired)", + }, + { + key: "M21.5", + en: "", + de: "Acquired clawhand, clubhand, clawfoot and clubfoot", + }, + { + key: "M21.6", + en: "", + de: "Other acquired deformities of ankle and foot", + }, + { + key: "M21.7", + en: "", + de: "Unequal limb length (acquired)", + }, + { + key: "M21.8", + en: "", + de: "Other specified acquired deformities of limbs", + }, + { + key: "M21.9", + en: "", + de: "Acquired deformity of limb, unspecified", + }, + { + key: "M22", + en: "", + de: "Disorders of patella", + }, + { + key: "M22.0", + en: "", + de: "Recurrent dislocation of patella", + }, + { + key: "M22.1", + en: "", + de: "Recurrent subluxation of patella", + }, + { + key: "M22.2", + en: "", + de: "Patellofemoral disorders", + }, + { + key: "M22.3", + en: "", + de: "Other derangements of patella", + }, + { + key: "M22.4", + en: "", + de: "Chondromalacia patellae", + }, + { + key: "M22.8", + en: "", + de: "Other disorders of patella", + }, + { + key: "M22.9", + en: "", + de: "Disorder of patella, unspecified", + }, + { + key: "M23", + en: "", + de: "Internal derangement of knee", + }, + { + key: "M23.0", + en: "", + de: "Cystic meniscus", + }, + { + key: "M23.1", + en: "", + de: "Discoid meniscus (congenital)", + }, + { + key: "M23.2", + en: "", + de: "Derangement of meniscus due to old tear or injury", + }, + { + key: "M23.3", + en: "", + de: "Other meniscus derangements", + }, + { + key: "M23.4", + en: "", + de: "Loose body in knee", + }, + { + key: "M23.5", + en: "", + de: "Chronic instability of knee", + }, + { + key: "M23.6", + en: "", + de: "Other spontaneous disruption of ligament(s) of knee", + }, + { + key: "M23.8", + en: "", + de: "Other internal derangements of knee", + }, + { + key: "M23.9", + en: "", + de: "Internal derangement of knee, unspecified", + }, + { + key: "M24", + en: "", + de: "Other specific joint derangements", + }, + { + key: "M24.0", + en: "", + de: "Loose body in joint", + }, + { + key: "M24.1", + en: "", + de: "Other articular cartilage disorders", + }, + { + key: "M24.2", + en: "", + de: "Disorder of ligament", + }, + { + key: "M24.3", + en: "", + de: "Pathological dislocation and subluxation of joint, not elsewhere classified", + }, + { + key: "M24.4", + en: "", + de: "Recurrent dislocation and subluxation of joint", + }, + { + key: "M24.5", + en: "", + de: "Contracture of joint", + }, + { + key: "M24.6", + en: "", + de: "Ankylosis of joint", + }, + { + key: "M24.7", + en: "", + de: "Protrusio acetabuli", + }, + { + key: "M24.8", + en: "", + de: "Other specific joint derangements, not elsewhere classified", + }, + { + key: "M24.9", + en: "", + de: "Joint derangement, unspecified", + }, + { + key: "M25", + en: "", + de: "Other joint disorders, not elsewhere classified", + }, + { + key: "M25.0", + en: "", + de: "Haemarthrosis", + }, + { + key: "M25.1", + en: "", + de: "Fistula of joint", + }, + { + key: "M25.2", + en: "", + de: "Flail joint", + }, + { + key: "M25.3", + en: "", + de: "Other instability of joint", + }, + { + key: "M25.4", + en: "", + de: "Effusion of joint", + }, + { + key: "M25.5", + en: "", + de: "Pain in joint", + }, + { + key: "M25.6", + en: "", + de: "Stiffness of joint, not elsewhere classified", + }, + { + key: "M25.7", + en: "", + de: "Osteophyte", + }, + { + key: "M25.8", + en: "", + de: "Other specified joint disorders", + }, + { + key: "M25.9", + en: "", + de: "Joint disorder, unspecified", + }, + { + key: "M30", + en: "", + de: "Polyarteritis nodosa and related conditions", + }, + { + key: "M30.0", + en: "", + de: "Polyarteritis nodosa", + }, + { + key: "M30.1", + en: "", + de: "Polyarteritis with lung involvement [Churg-Strauss]", + }, + { + key: "M30.2", + en: "", + de: "Juvenile polyarteritis", + }, + { + key: "M30.3", + en: "", + de: "Mucocutaneous lymph node syndrome [Kawasaki]", + }, + { + key: "M30.8", + en: "", + de: "Other conditions related to polyarteritis nodosa", + }, + { + key: "M31", + en: "", + de: "Other necrotizing vasculopathies", + }, + { + key: "M31.0", + en: "", + de: "Hypersensitivity angiitis", + }, + { + key: "M31.1", + en: "", + de: "Thrombotic microangiopathy", + }, + { + key: "M31.3", + en: "", + de: "Wegener granulomatosis", + }, + { + key: "M31.4", + en: "", + de: "Aortic arch syndrome [Takayasu]", + }, + { + key: "M31.5", + en: "", + de: "Giant cell arteritis with polymyalgia rheumatica", + }, + { + key: "M31.6", + en: "", + de: "Other giant cell arteritis", + }, + { + key: "M31.7", + en: "", + de: "Microscopic polyangiitis", + }, + { + key: "M31.8", + en: "", + de: "Other specified necrotizing vasculopathies", + }, + { + key: "M31.9", + en: "", + de: "Necrotizing vasculopathy, unspecified", + }, + { + key: "M32", + en: "", + de: "Systemic lupus erythematosus", + }, + { + key: "M32.0", + en: "", + de: "Drug-induced systemic lupus erythematosus", + }, + { + key: "M32.8", + en: "", + de: "Other forms of systemic lupus erythematosus", + }, + { + key: "M32.9", + en: "", + de: "Systemic lupus erythematosus, unspecified", + }, + { + key: "M33", + en: "", + de: "Dermatopolymyositis", + }, + { + key: "M33.0", + en: "", + de: "Juvenile dermatomyositis", + }, + { + key: "M33.1", + en: "", + de: "Other dermatomyositis", + }, + { + key: "M33.2", + en: "", + de: "Polymyositis", + }, + { + key: "M33.9", + en: "", + de: "Dermatopolymyositis, unspecified", + }, + { + key: "M34", + en: "", + de: "Systemic sclerosis", + }, + { + key: "M34.0", + en: "", + de: "Progressive systemic sclerosis", + }, + { + key: "M34.1", + en: "", + de: "CR(E)ST syndrome", + }, + { + key: "M34.2", + en: "", + de: "Systemic sclerosis induced by drugs and chemicals", + }, + { + key: "M34.8", + en: "", + de: "Other forms of systemic sclerosis", + }, + { + key: "M34.9", + en: "", + de: "Systemic sclerosis, unspecified", + }, + { + key: "M35", + en: "", + de: "Other systemic involvement of connective tissue", + }, + { + key: "M35.0", + en: "", + de: "Sicca syndrome [Sjögren]", + }, + { + key: "M35.1", + en: "", + de: "Other overlap syndromes", + }, + { + key: "M35.2", + en: "", + de: "Behçet disease", + }, + { + key: "M35.3", + en: "", + de: "Polymyalgia rheumatica", + }, + { + key: "M35.4", + en: "", + de: "Diffuse (eosinophilic) fasciitis", + }, + { + key: "M35.5", + en: "", + de: "Multifocal fibrosclerosis", + }, + { + key: "M35.6", + en: "", + de: "Relapsing panniculitis [Weber-Christian]", + }, + { + key: "M35.7", + en: "", + de: "Hypermobility syndrome", + }, + { + key: "M35.8", + en: "", + de: "Other specified systemic involvement of connective tissue", + }, + { + key: "M35.9", + en: "", + de: "Systemic involvement of connective tissue, unspecified", + }, + { + key: "M40", + en: "", + de: "Kyphosis and lordosis", + }, + { + key: "M40.0", + en: "", + de: "Postural kyphosis", + }, + { + key: "M40.1", + en: "", + de: "Other secondary kyphosis", + }, + { + key: "M40.2", + en: "", + de: "Other and unspecified kyphosis", + }, + { + key: "M40.3", + en: "", + de: "Flatback syndrome", + }, + { + key: "M40.4", + en: "", + de: "Other lordosis", + }, + { + key: "M40.5", + en: "", + de: "Lordosis, unspecified", + }, + { + key: "M41", + en: "", + de: "Scoliosis", + }, + { + key: "M41.0", + en: "", + de: "Infantile idiopathic scoliosis", + }, + { + key: "M41.1", + en: "", + de: "Juvenile idiopathic scoliosis", + }, + { + key: "M41.2", + en: "", + de: "Other idiopathic scoliosis", + }, + { + key: "M41.3", + en: "", + de: "Thoracogenic scoliosis", + }, + { + key: "M41.4", + en: "", + de: "Neuromuscular scoliosis", + }, + { + key: "M41.5", + en: "", + de: "Other secondary scoliosis", + }, + { + key: "M41.8", + en: "", + de: "Other forms of scoliosis", + }, + { + key: "M41.9", + en: "", + de: "Scoliosis, unspecified", + }, + { + key: "M42", + en: "", + de: "Spinal osteochondrosis", + }, + { + key: "M42.0", + en: "", + de: "Juvenile osteochondrosis of spine", + }, + { + key: "M42.1", + en: "", + de: "Adult osteochondrosis of spine", + }, + { + key: "M42.9", + en: "", + de: "Spinal osteochondrosis, unspecified", + }, + { + key: "M43", + en: "", + de: "Other deforming dorsopathies", + }, + { + key: "M43.0", + en: "", + de: "Spondylolysis", + }, + { + key: "M43.1", + en: "", + de: "Spondylolisthesis", + }, + { + key: "M43.2", + en: "", + de: "Other fusion of spine", + }, + { + key: "M43.3", + en: "", + de: "Recurrent atlantoaxial subluxation with myelopathy", + }, + { + key: "M43.4", + en: "", + de: "Other recurrent atlantoaxial subluxation", + }, + { + key: "M43.5", + en: "", + de: "Other recurrent vertebral subluxation", + }, + { + key: "M43.6", + en: "", + de: "Torticollis", + }, + { + key: "M43.8", + en: "", + de: "Other specified deforming dorsopathies", + }, + { + key: "M43.9", + en: "", + de: "Deforming dorsopathy, unspecified", + }, + { + key: "M45", + en: "", + de: "Ankylosing spondylitis", + }, + { + key: "M46", + en: "", + de: "Other inflammatory spondylopathies", + }, + { + key: "M46.0", + en: "", + de: "Spinal enthesopathy", + }, + { + key: "M46.1", + en: "", + de: "Sacroiliitis, not elsewhere classified", + }, + { + key: "M46.2", + en: "", + de: "Osteomyelitis of vertebra", + }, + { + key: "M46.3", + en: "", + de: "Infection of intervertebral disc (pyogenic)", + }, + { + key: "M46.4", + en: "", + de: "Discitis, unspecified", + }, + { + key: "M46.5", + en: "", + de: "Other infective spondylopathies", + }, + { + key: "M46.8", + en: "", + de: "Other specified inflammatory spondylopathies", + }, + { + key: "M46.9", + en: "", + de: "Inflammatory spondylopathy, unspecified", + }, + { + key: "M47", + en: "", + de: "Spondylosis", + }, + { + key: "M47.1", + en: "", + de: "Other spondylosis with myelopathy", + }, + { + key: "M47.2", + en: "", + de: "Other spondylosis with radiculopathy", + }, + { + key: "M47.8", + en: "", + de: "Other spondylosis", + }, + { + key: "M47.9", + en: "", + de: "Spondylosis, unspecified", + }, + { + key: "M48", + en: "", + de: "Other spondylopathies", + }, + { + key: "M48.0", + en: "", + de: "Spinal stenosis", + }, + { + key: "M48.1", + en: "", + de: "Ankylosing hyperostosis [Forestier]", + }, + { + key: "M48.2", + en: "", + de: "Kissing spine", + }, + { + key: "M48.3", + en: "", + de: "Traumatic spondylopathy", + }, + { + key: "M48.4", + en: "", + de: "Fatigue fracture of vertebra", + }, + { + key: "M48.5", + en: "", + de: "Collapsed vertebra, not elsewhere classified", + }, + { + key: "M48.8", + en: "", + de: "Other specified spondylopathies", + }, + { + key: "M48.9", + en: "", + de: "Spondylopathy, unspecified", + }, + { + key: "M50", + en: "", + de: "Cervical disc disorders", + }, + { + key: "M50.1", + en: "", + de: "Cervical disc disorder with radiculopathy", + }, + { + key: "M50.2", + en: "", + de: "Other cervical disc displacement", + }, + { + key: "M50.3", + en: "", + de: "Other cervical disc degeneration", + }, + { + key: "M50.8", + en: "", + de: "Other cervical disc disorders", + }, + { + key: "M50.9", + en: "", + de: "Cervical disc disorder, unspecified", + }, + { + key: "M51", + en: "", + de: "Other intervertebral disc disorders", + }, + { + key: "M51.2", + en: "", + de: "Other specified intervertebral disc displacement", + }, + { + key: "M51.3", + en: "", + de: "Other specified intervertebral disc degeneration", + }, + { + key: "M51.4", + en: "", + de: "Schmorl nodes", + }, + { + key: "M51.8", + en: "", + de: "Other specified intervertebral disc disorders", + }, + { + key: "M51.9", + en: "", + de: "Intervertebral disc disorder, unspecified", + }, + { + key: "M53", + en: "", + de: "Other dorsopathies, not elsewhere classified", + }, + { + key: "M53.0", + en: "", + de: "Cervicocranial syndrome", + }, + { + key: "M53.1", + en: "", + de: "Cervicobrachial syndrome", + }, + { + key: "M53.2", + en: "", + de: "Spinal instabilities", + }, + { + key: "M53.3", + en: "", + de: "Sacrococcygeal disorders, not elsewhere classified", + }, + { + key: "M53.8", + en: "", + de: "Other specified dorsopathies", + }, + { + key: "M53.9", + en: "", + de: "Dorsopathy, unspecified", + }, + { + key: "M54", + en: "", + de: "Dorsalgia", + }, + { + key: "M54.0", + en: "", + de: "Panniculitis affecting regions of neck and back", + }, + { + key: "M54.1", + en: "", + de: "Radiculopathy", + }, + { + key: "M54.2", + en: "", + de: "Cervicalgia", + }, + { + key: "M54.3", + en: "", + de: "Sciatica", + }, + { + key: "M54.4", + en: "", + de: "Lumbago with sciatica", + }, + { + key: "M54.5", + en: "", + de: "Low back pain", + }, + { + key: "M54.6", + en: "", + de: "Pain in thoracic spine", + }, + { + key: "M54.8", + en: "", + de: "Other dorsalgia", + }, + { + key: "M54.9", + en: "", + de: "Dorsalgia, unspecified", + }, + { + key: "M60", + en: "", + de: "Myositis", + }, + { + key: "M60.0", + en: "", + de: "Infective myositis", + }, + { + key: "M60.1", + en: "", + de: "Interstitial myositis", + }, + { + key: "M60.2", + en: "", + de: "Foreign body granuloma of soft tissue, not elsewhere classified", + }, + { + key: "M60.8", + en: "", + de: "Other myositis", + }, + { + key: "M60.9", + en: "", + de: "Myositis, unspecified", + }, + { + key: "M61", + en: "", + de: "Calcification and ossification of muscle", + }, + { + key: "M61.0", + en: "", + de: "Myositis ossificans traumatica", + }, + { + key: "M61.1", + en: "", + de: "Myositis ossificans progressiva", + }, + { + key: "M61.2", + en: "", + de: "Paralytic calcification and ossification of muscle", + }, + { + key: "M61.3", + en: "", + de: "Calcification and ossification of muscles associated with burns", + }, + { + key: "M61.4", + en: "", + de: "Other calcification of muscle", + }, + { + key: "M61.5", + en: "", + de: "Other ossification of muscle", + }, + { + key: "M61.9", + en: "", + de: "Calcification and ossification of muscle, unspecified", + }, + { + key: "M62", + en: "", + de: "Other disorders of muscle", + }, + { + key: "M62.0", + en: "", + de: "Diastasis of muscle", + }, + { + key: "M62.1", + en: "", + de: "Other rupture of muscle (nontraumatic)", + }, + { + key: "M62.2", + en: "", + de: "Ischaemic infarction of muscle", + }, + { + key: "M62.3", + en: "", + de: "Immobility syndrome (paraplegic)", + }, + { + key: "M62.4", + en: "", + de: "Contracture of muscle", + }, + { + key: "M62.5", + en: "", + de: "Muscle wasting and atrophy, not elsewhere classified", + }, + { + key: "M62.6", + en: "", + de: "Muscle strain", + }, + { + key: "M62.8", + en: "", + de: "Other specified disorders of muscle", + }, + { + key: "M62.9", + en: "", + de: "Disorder of muscle, unspecified", + }, + { + key: "M65", + en: "", + de: "Synovitis and tenosynovitis", + }, + { + key: "M65.0", + en: "", + de: "Abscess of tendon sheath", + }, + { + key: "M65.1", + en: "", + de: "Other infective (teno)synovitis", + }, + { + key: "M65.2", + en: "", + de: "Calcific tendinitis", + }, + { + key: "M65.3", + en: "", + de: "Trigger finger", + }, + { + key: "M65.4", + en: "", + de: "Radial styloid tenosynovitis [de Quervain]", + }, + { + key: "M65.8", + en: "", + de: "Other synovitis and tenosynovitis", + }, + { + key: "M65.9", + en: "", + de: "Synovitis and tenosynovitis, unspecified", + }, + { + key: "M66", + en: "", + de: "Spontaneous rupture of synovium and tendon", + }, + { + key: "M66.0", + en: "", + de: "Rupture of popliteal cyst", + }, + { + key: "M66.1", + en: "", + de: "Rupture of synovium", + }, + { + key: "M66.2", + en: "", + de: "Spontaneous rupture of extensor tendons", + }, + { + key: "M66.3", + en: "", + de: "Spontaneous rupture of flexor tendons", + }, + { + key: "M66.4", + en: "", + de: "Spontaneous rupture of other tendons", + }, + { + key: "M66.5", + en: "", + de: "Spontaneous rupture of unspecified tendon", + }, + { + key: "M67", + en: "", + de: "Other disorders of synovium and tendon", + }, + { + key: "M67.0", + en: "", + de: "Short Achilles tendon (acquired)", + }, + { + key: "M67.1", + en: "", + de: "Other contracture of tendon (sheath)", + }, + { + key: "M67.2", + en: "", + de: "Synovial hypertrophy, not elsewhere classified", + }, + { + key: "M67.3", + en: "", + de: "Transient synovitis", + }, + { + key: "M67.4", + en: "", + de: "Ganglion", + }, + { + key: "M67.8", + en: "", + de: "Other specified disorders of synovium and tendon", + }, + { + key: "M67.9", + en: "", + de: "Disorder of synovium and tendon, unspecified", + }, + { + key: "M70", + en: "", + de: "Soft tissue disorders related to use, overuse and pressure", + }, + { + key: "M70.0", + en: "", + de: "Chronic crepitant synovitis of hand and wrist", + }, + { + key: "M70.1", + en: "", + de: "Bursitis of hand", + }, + { + key: "M70.2", + en: "", + de: "Olecranon bursitis", + }, + { + key: "M70.3", + en: "", + de: "Other bursitis of elbow", + }, + { + key: "M70.4", + en: "", + de: "Prepatellar bursitis", + }, + { + key: "M70.5", + en: "", + de: "Other bursitis of knee", + }, + { + key: "M70.6", + en: "", + de: "Trochanteric bursitis", + }, + { + key: "M70.7", + en: "", + de: "Other bursitis of hip", + }, + { + key: "M70.8", + en: "", + de: "Other soft tissue disorders related to use, overuse and pressure", + }, + { + key: "M70.9", + en: "", + de: "Unspecified soft tissue disorder related to use, overuse and pressure", + }, + { + key: "M71", + en: "", + de: "Other bursopathies", + }, + { + key: "M71.0", + en: "", + de: "Abscess of bursa", + }, + { + key: "M71.1", + en: "", + de: "Other infective bursitis", + }, + { + key: "M71.2", + en: "", + de: "Synovial cyst of popliteal space [Baker]", + }, + { + key: "M71.3", + en: "", + de: "Other bursal cyst", + }, + { + key: "M71.4", + en: "", + de: "Calcium deposit in bursa", + }, + { + key: "M71.5", + en: "", + de: "Other bursitis, not elsewhere classified", + }, + { + key: "M71.8", + en: "", + de: "Other specified bursopathies", + }, + { + key: "M71.9", + en: "", + de: "Bursopathy, unspecified", + }, + { + key: "M72", + en: "", + de: "Fibroblastic disorders", + }, + { + key: "M72.0", + en: "", + de: "Palmar fascial fibromatosis [Dupuytren]", + }, + { + key: "M72.1", + en: "", + de: "Knuckle pads", + }, + { + key: "M72.2", + en: "", + de: "Plantar fascial fibromatosis", + }, + { + key: "M72.4", + en: "", + de: "Pseudosarcomatous fibromatosis", + }, + { + key: "M72.6", + en: "", + de: "Necrotizing fasciitis", + }, + { + key: "M72.8", + en: "", + de: "Other fibroblastic disorders", + }, + { + key: "M72.9", + en: "", + de: "Fibroblastic disorder, unspecified", + }, + { + key: "M75", + en: "", + de: "Shoulder lesions", + }, + { + key: "M75.0", + en: "", + de: "Adhesive capsulitis of shoulder", + }, + { + key: "M75.1", + en: "", + de: "Rotator cuff syndrome", + }, + { + key: "M75.2", + en: "", + de: "Bicipital tendinitis", + }, + { + key: "M75.3", + en: "", + de: "Calcific tendinitis of shoulder", + }, + { + key: "M75.4", + en: "", + de: "Impingement syndrome of shoulder", + }, + { + key: "M75.5", + en: "", + de: "Bursitis of shoulder", + }, + { + key: "M75.6", + en: "", + de: "Tear of labrum of degenerative shoulder joint", + }, + { + key: "M75.8", + en: "", + de: "Other shoulder lesions", + }, + { + key: "M75.9", + en: "", + de: "Shoulder lesion, unspecified", + }, + { + key: "M76", + en: "", + de: "Enthesopathies of lower limb, excluding foot", + }, + { + key: "M76.0", + en: "", + de: "Gluteal tendinitis", + }, + { + key: "M76.1", + en: "", + de: "Psoas tendinitis", + }, + { + key: "M76.2", + en: "", + de: "Iliac crest spur", + }, + { + key: "M76.3", + en: "", + de: "Iliotibial band syndrome", + }, + { + key: "M76.4", + en: "", + de: "Tibial collateral bursitis [Pellegrini-Stieda]", + }, + { + key: "M76.5", + en: "", + de: "Patellar tendinitis", + }, + { + key: "M76.6", + en: "", + de: "Achilles tendinitis", + }, + { + key: "M76.7", + en: "", + de: "Peroneal tendinitis", + }, + { + key: "M76.8", + en: "", + de: "Other enthesopathies of lower limb, excluding foot", + }, + { + key: "M76.9", + en: "", + de: "Enthesopathy of lower limb, unspecified", + }, + { + key: "M77", + en: "", + de: "Other enthesopathies", + }, + { + key: "M77.0", + en: "", + de: "Medial epicondylitis", + }, + { + key: "M77.1", + en: "", + de: "Lateral epicondylitis", + }, + { + key: "M77.2", + en: "", + de: "Periarthritis of wrist", + }, + { + key: "M77.3", + en: "", + de: "Calcaneal spur", + }, + { + key: "M77.4", + en: "", + de: "Metatarsalgia", + }, + { + key: "M77.5", + en: "", + de: "Other enthesopathy of foot", + }, + { + key: "M77.8", + en: "", + de: "Other enthesopathies, not elsewhere classified", + }, + { + key: "M77.9", + en: "", + de: "Enthesopathy, unspecified", + }, + { + key: "M79", + en: "", + de: "Other soft tissue disorders, not elsewhere classified", + }, + { + key: "M79.0", + en: "", + de: "Rheumatism, unspecified", + }, + { + key: "M79.1", + en: "", + de: "Myalgia", + }, + { + key: "M79.2", + en: "", + de: "Neuralgia and neuritis, unspecified", + }, + { + key: "M79.3", + en: "", + de: "Panniculitis, unspecified", + }, + { + key: "M79.4", + en: "", + de: "Hypertrophy of (infrapatellar) fat pad", + }, + { + key: "M79.5", + en: "", + de: "Residual foreign body in soft tissue", + }, + { + key: "M79.6", + en: "", + de: "Pain in limb", + }, + { + key: "M79.7", + en: "", + de: "Fibromyalgia", + }, + { + key: "M79.8", + en: "", + de: "Other specified soft tissue disorders", + }, + { + key: "M79.9", + en: "", + de: "Soft tissue disorder, unspecified", + }, + { + key: "M80", + en: "", + de: "Osteoporosis with pathological fracture", + }, + { + key: "M80.0", + en: "", + de: "Postmenopausal osteoporosis with pathological fracture", + }, + { + key: "M80.1", + en: "", + de: "Postoophorectomy osteoporosis with pathological fracture", + }, + { + key: "M80.2", + en: "", + de: "Osteoporosis of disuse with pathological fracture", + }, + { + key: "M80.3", + en: "", + de: "Postsurgical malabsorption osteoporosis with pathological fracture", + }, + { + key: "M80.4", + en: "", + de: "Drug-induced osteoporosis with pathological fracture", + }, + { + key: "M80.5", + en: "", + de: "Idiopathic osteoporosis with pathological fracture", + }, + { + key: "M80.8", + en: "", + de: "Other osteoporosis with pathological fracture", + }, + { + key: "M80.9", + en: "", + de: "Unspecified osteoporosis with pathological fracture", + }, + { + key: "M81", + en: "", + de: "Osteoporosis without pathological fracture", + }, + { + key: "M81.0", + en: "", + de: "Postmenopausal osteoporosis", + }, + { + key: "M81.1", + en: "", + de: "Postoophorectomy osteoporosis", + }, + { + key: "M81.2", + en: "", + de: "Osteoporosis of disuse", + }, + { + key: "M81.3", + en: "", + de: "Postsurgical malabsorption osteoporosis", + }, + { + key: "M81.4", + en: "", + de: "Drug-induced osteoporosis", + }, + { + key: "M81.5", + en: "", + de: "Idiopathic osteoporosis", + }, + { + key: "M81.6", + en: "", + de: "Localized osteoporosis [Lequesne]", + }, + { + key: "M81.8", + en: "", + de: "Other osteoporosis", + }, + { + key: "M81.9", + en: "", + de: "Osteoporosis, unspecified", + }, + { + key: "M83", + en: "", + de: "Adult osteomalacia", + }, + { + key: "M83.0", + en: "", + de: "Puerperal osteomalacia", + }, + { + key: "M83.1", + en: "", + de: "Senile osteomalacia", + }, + { + key: "M83.2", + en: "", + de: "Adult osteomalacia due to malabsorption", + }, + { + key: "M83.3", + en: "", + de: "Adult osteomalacia due to malnutrition", + }, + { + key: "M83.4", + en: "", + de: "Aluminium bone disease", + }, + { + key: "M83.5", + en: "", + de: "Other drug-induced osteomalacia in adults", + }, + { + key: "M83.8", + en: "", + de: "Other adult osteomalacia", + }, + { + key: "M83.9", + en: "", + de: "Adult osteomalacia, unspecified", + }, + { + key: "M84", + en: "", + de: "Disorders of continuity of bone", + }, + { + key: "M84.0", + en: "", + de: "Malunion of fracture", + }, + { + key: "M84.1", + en: "", + de: "Nonunion of fracture [pseudarthrosis]", + }, + { + key: "M84.2", + en: "", + de: "Delayed union of fracture", + }, + { + key: "M84.3", + en: "", + de: "Stress fracture, not elsewhere classified", + }, + { + key: "M84.4", + en: "", + de: "Pathological fracture, not elsewhere classified", + }, + { + key: "M84.8", + en: "", + de: "Other disorders of continuity of bone", + }, + { + key: "M84.9", + en: "", + de: "Disorder of continuity of bone, unspecified", + }, + { + key: "M85", + en: "", + de: "Other disorders of bone density and structure", + }, + { + key: "M85.0", + en: "", + de: "Fibrous dysplasia (monostotic)", + }, + { + key: "M85.1", + en: "", + de: "Skeletal fluorosis", + }, + { + key: "M85.2", + en: "", + de: "Hyperostosis of skull", + }, + { + key: "M85.3", + en: "", + de: "Osteitis condensans", + }, + { + key: "M85.4", + en: "", + de: "Solitary bone cyst", + }, + { + key: "M85.5", + en: "", + de: "Aneurysmal bone cyst", + }, + { + key: "M85.6", + en: "", + de: "Other cyst of bone", + }, + { + key: "M85.8", + en: "", + de: "Other specified disorders of bone density and structure", + }, + { + key: "M85.9", + en: "", + de: "Disorder of bone density and structure, unspecified", + }, + { + key: "M86", + en: "", + de: "Osteomyelitis", + }, + { + key: "M86.0", + en: "", + de: "Acute haematogenous osteomyelitis", + }, + { + key: "M86.1", + en: "", + de: "Other acute osteomyelitis", + }, + { + key: "M86.2", + en: "", + de: "Subacute osteomyelitis", + }, + { + key: "M86.3", + en: "", + de: "Chronic multifocal osteomyelitis", + }, + { + key: "M86.4", + en: "", + de: "Chronic osteomyelitis with draining sinus", + }, + { + key: "M86.5", + en: "", + de: "Other chronic haematogenous osteomyelitis", + }, + { + key: "M86.6", + en: "", + de: "Other chronic osteomyelitis", + }, + { + key: "M86.8", + en: "", + de: "Other osteomyelitis", + }, + { + key: "M86.9", + en: "", + de: "Osteomyelitis, unspecified", + }, + { + key: "M87", + en: "", + de: "Osteonecrosis", + }, + { + key: "M87.0", + en: "", + de: "Idiopathic aseptic necrosis of bone", + }, + { + key: "M87.1", + en: "", + de: "Osteonecrosis due to drugs", + }, + { + key: "M87.2", + en: "", + de: "Osteonecrosis due to previous trauma", + }, + { + key: "M87.3", + en: "", + de: "Other secondary osteonecrosis", + }, + { + key: "M87.8", + en: "", + de: "Other osteonecrosis", + }, + { + key: "M87.9", + en: "", + de: "Osteonecrosis, unspecified", + }, + { + key: "M88", + en: "", + de: "Paget disease of bone [osteitis deformans]", + }, + { + key: "M88.0", + en: "", + de: "Paget disease of skull", + }, + { + key: "M88.8", + en: "", + de: "Paget disease of other bones", + }, + { + key: "M88.9", + en: "", + de: "Paget disease of bone, unspecified", + }, + { + key: "M89", + en: "", + de: "Other disorders of bone", + }, + { + key: "M89.0", + en: "", + de: "Algoneurodystrophy", + }, + { + key: "M89.1", + en: "", + de: "Epiphyseal arrest", + }, + { + key: "M89.2", + en: "", + de: "Other disorders of bone development and growth", + }, + { + key: "M89.3", + en: "", + de: "Hypertrophy of bone", + }, + { + key: "M89.4", + en: "", + de: "Other hypertrophic osteoarthropathy", + }, + { + key: "M89.5", + en: "", + de: "Osteolysis", + }, + { + key: "M89.6", + en: "", + de: "Osteopathy after poliomyelitis", + }, + { + key: "M89.8", + en: "", + de: "Other specified disorders of bone", + }, + { + key: "M89.9", + en: "", + de: "Disorder of bone, unspecified", + }, + { + key: "M91", + en: "", + de: "Juvenile osteochondrosis of hip and pelvis", + }, + { + key: "M91.0", + en: "", + de: "Juvenile osteochondrosis of pelvis", + }, + { + key: "M91.1", + en: "", + de: "Juvenile osteochondrosis of head of femur [Legg-Calvé-Perthes]", + }, + { + key: "M91.2", + en: "", + de: "Coxa plana", + }, + { + key: "M91.3", + en: "", + de: "Pseudocoxalgia", + }, + { + key: "M91.8", + en: "", + de: "Other juvenile osteochondrosis of hip and pelvis", + }, + { + key: "M91.9", + en: "", + de: "Juvenile osteochondrosis of hip and pelvis, unspecified", + }, + { + key: "M92", + en: "", + de: "Other juvenile osteochondrosis", + }, + { + key: "M92.0", + en: "", + de: "Juvenile osteochondrosis of humerus", + }, + { + key: "M92.1", + en: "", + de: "Juvenile osteochondrosis of radius and ulna", + }, + { + key: "M92.2", + en: "", + de: "Juvenile osteochondrosis of hand", + }, + { + key: "M92.3", + en: "", + de: "Other juvenile osteochondrosis of upper limb", + }, + { + key: "M92.4", + en: "", + de: "Juvenile osteochondrosis of patella", + }, + { + key: "M92.5", + en: "", + de: "Juvenile osteochondrosis of tibia and fibula", + }, + { + key: "M92.6", + en: "", + de: "Juvenile osteochondrosis of tarsus", + }, + { + key: "M92.7", + en: "", + de: "Juvenile osteochondrosis of metatarsus", + }, + { + key: "M92.8", + en: "", + de: "Other specified juvenile osteochondrosis", + }, + { + key: "M92.9", + en: "", + de: "Juvenile osteochondrosis, unspecified", + }, + { + key: "M93", + en: "", + de: "Other osteochondropathies", + }, + { + key: "M93.0", + en: "", + de: "Slipped upper femoral epiphysis (nontraumatic)", + }, + { + key: "M93.1", + en: "", + de: "Kienböck disease of adults", + }, + { + key: "M93.2", + en: "", + de: "Osteochondritis dissecans", + }, + { + key: "M93.8", + en: "", + de: "Other specified osteochondropathies", + }, + { + key: "M93.9", + en: "", + de: "Osteochondropathy, unspecified", + }, + { + key: "M94", + en: "", + de: "Other disorders of cartilage", + }, + { + key: "M94.0", + en: "", + de: "Chondrocostal junction syndrome [Tietze]", + }, + { + key: "M94.1", + en: "", + de: "Relapsing polychondritis", + }, + { + key: "M94.2", + en: "", + de: "Chondromalacia", + }, + { + key: "M94.3", + en: "", + de: "Chondrolysis", + }, + { + key: "M94.8", + en: "", + de: "Other specified disorders of cartilage", + }, + { + key: "M94.9", + en: "", + de: "Disorder of cartilage, unspecified", + }, + { + key: "M95", + en: "", + de: "Other acquired deformities of musculoskeletal system and connective tissue", + }, + { + key: "M95.0", + en: "", + de: "Acquired deformity of nose", + }, + { + key: "M95.1", + en: "", + de: "Cauliflower ear", + }, + { + key: "M95.2", + en: "", + de: "Other acquired deformity of head", + }, + { + key: "M95.3", + en: "", + de: "Acquired deformity of neck", + }, + { + key: "M95.4", + en: "", + de: "Acquired deformity of chest and rib", + }, + { + key: "M95.5", + en: "", + de: "Acquired deformity of pelvis", + }, + { + key: "M95.8", + en: "", + de: "Other specified acquired deformities of musculoskeletal system", + }, + { + key: "M95.9", + en: "", + de: "Acquired deformity of musculoskeletal system, unspecified", + }, + { + key: "M96", + en: "", + de: "Postprocedural musculoskeletal disorders, not elsewhere classified", + }, + { + key: "M96.0", + en: "", + de: "Pseudarthrosis after fusion or arthrodesis", + }, + { + key: "M96.1", + en: "", + de: "Postlaminectomy syndrome, not elsewhere classified", + }, + { + key: "M96.2", + en: "", + de: "Postradiation kyphosis", + }, + { + key: "M96.3", + en: "", + de: "Postlaminectomy kyphosis", + }, + { + key: "M96.4", + en: "", + de: "Postsurgical lordosis", + }, + { + key: "M96.5", + en: "", + de: "Postradiation scoliosis", + }, + { + key: "M96.6", + en: "", + de: "Fracture of bone following insertion of orthopaedic implant, joint prosthesis, or bone plate", + }, + { + key: "M96.8", + en: "", + de: "Other postprocedural musculoskeletal disorders", + }, + { + key: "M96.9", + en: "", + de: "Postprocedural musculoskeletal disorder, unspecified", + }, + { + key: "M99", + en: "", + de: "Biomechanical lesions, not elsewhere classified", + }, + { + key: "M99.0", + en: "", + de: "Segmental and somatic dysfunction", + }, + { + key: "M99.1", + en: "", + de: "Subluxation complex (vertebral)", + }, + { + key: "M99.2", + en: "", + de: "Subluxation stenosis of neural canal", + }, + { + key: "M99.3", + en: "", + de: "Osseous stenosis of neural canal", + }, + { + key: "M99.4", + en: "", + de: "Connective tissue stenosis of neural canal", + }, + { + key: "M99.5", + en: "", + de: "Intervertebral disc stenosis of neural canal", + }, + { + key: "M99.6", + en: "", + de: "Osseous and subluxation stenosis of intervertebral foramina", + }, + { + key: "M99.7", + en: "", + de: "Connective tissue and disc stenosis of intervertebral foramina", + }, + { + key: "M99.8", + en: "", + de: "Other biomechanical lesions", + }, + { + key: "M99.9", + en: "", + de: "Biomechanical lesion, unspecified", + }, + { + key: "N00", + en: "", + de: "Acute nephritic syndrome", + }, + { + key: "N01", + en: "", + de: "Rapidly progressive nephritic syndrome", + }, + { + key: "N02", + en: "", + de: "Recurrent and persistent haematuria", + }, + { + key: "N03", + en: "", + de: "Chronic nephritic syndrome", + }, + { + key: "N04", + en: "", + de: "Nephrotic syndrome", + }, + { + key: "N05", + en: "", + de: "Unspecified nephritic syndrome", + }, + { + key: "N06", + en: "", + de: "Isolated proteinuria with specified morphological lesion", + }, + { + key: "N07", + en: "", + de: "Hereditary nephropathy, not elsewhere classified", + }, + { + key: "N10", + en: "", + de: "Acute tubulo-interstitial nephritis", + }, + { + key: "N11", + en: "", + de: "Chronic tubulo-interstitial nephritis", + }, + { + key: "N11.0", + en: "", + de: "Nonobstructive reflux-associated chronic pyelonephritis", + }, + { + key: "N11.1", + en: "", + de: "Chronic obstructive pyelonephritis", + }, + { + key: "N11.8", + en: "", + de: "Other chronic tubulo-interstitial nephritis", + }, + { + key: "N11.9", + en: "", + de: "Chronic tubulo-interstitial nephritis, unspecified", + }, + { + key: "N12", + en: "", + de: "Tubulo-interstitial nephritis, not specified as acute or chronic", + }, + { + key: "N13", + en: "", + de: "Obstructive and reflux uropathy", + }, + { + key: "N13.0", + en: "", + de: "Hydronephrosis with ureteropelvic junction obstruction", + }, + { + key: "N13.1", + en: "", + de: "Hydronephrosis with ureteral stricture, not elsewhere classified", + }, + { + key: "N13.2", + en: "", + de: "Hydronephrosis with renal and ureteral calculous obstruction", + }, + { + key: "N13.3", + en: "", + de: "Other and unspecified hydronephrosis", + }, + { + key: "N13.4", + en: "", + de: "Hydroureter", + }, + { + key: "N13.5", + en: "", + de: "Kinking and stricture of ureter without hydronephrosis", + }, + { + key: "N13.6", + en: "", + de: "Pyonephrosis", + }, + { + key: "N13.7", + en: "", + de: "Vesicoureteral-reflux-associated uropathy", + }, + { + key: "N13.8", + en: "", + de: "Other obstructive and reflux uropathy", + }, + { + key: "N13.9", + en: "", + de: "Obstructive and reflux uropathy, unspecified", + }, + { + key: "N14", + en: "", + de: "Drug- and heavy-metal-induced tubulo-interstitial and tubular conditions", + }, + { + key: "N14.0", + en: "", + de: "Analgesic nephropathy", + }, + { + key: "N14.1", + en: "", + de: "Nephropathy induced by other drugs, medicaments and biological substances", + }, + { + key: "N14.2", + en: "", + de: "Nephropathy induced by unspecified drug, medicament or biological substance", + }, + { + key: "N14.3", + en: "", + de: "Nephropathy induced by heavy metals", + }, + { + key: "N14.4", + en: "", + de: "Toxic nephropathy, not elsewhere classified", + }, + { + key: "N15", + en: "", + de: "Other renal tubulo-interstitial diseases", + }, + { + key: "N15.0", + en: "", + de: "Balkan nephropathy", + }, + { + key: "N15.1", + en: "", + de: "Renal and perinephric abscess", + }, + { + key: "N15.8", + en: "", + de: "Other specified renal tubulo-interstitial diseases", + }, + { + key: "N15.9", + en: "", + de: "Renal tubulo-interstitial disease, unspecified", + }, + { + key: "N17", + en: "", + de: "Acute renal failure", + }, + { + key: "N17.0", + en: "", + de: "Acute renal failure with tubular necrosis", + }, + { + key: "N17.1", + en: "", + de: "Acute renal failure with acute cortical necrosis", + }, + { + key: "N17.2", + en: "", + de: "Acute renal failure with medullary necrosis", + }, + { + key: "N17.8", + en: "", + de: "Other acute renal failure", + }, + { + key: "N17.9", + en: "", + de: "Acute renal failure, unspecified", + }, + { + key: "N18", + en: "", + de: "Chronic kidney disease", + }, + { + key: "N18.1", + en: "", + de: "Chronic kidney disease, stage 1", + }, + { + key: "N18.2", + en: "", + de: "Chronic kidney disease, stage 2", + }, + { + key: "N18.3", + en: "", + de: "Chronic kidney disease, stage 3", + }, + { + key: "N18.4", + en: "", + de: "Chronic kidney disease, stage 4", + }, + { + key: "N18.5", + en: "", + de: "Chronic kidney disease, stage 5", + }, + { + key: "N18.9", + en: "", + de: "Chronic kidney disease, unspecified", + }, + { + key: "N19", + en: "", + de: "Unspecified kidney failure", + }, + { + key: "N20", + en: "", + de: "Calculus of kidney and ureter", + }, + { + key: "N20.0", + en: "", + de: "Calculus of kidney", + }, + { + key: "N20.1", + en: "", + de: "Calculus of ureter", + }, + { + key: "N20.2", + en: "", + de: "Calculus of kidney with calculus of ureter", + }, + { + key: "N20.9", + en: "", + de: "Urinary calculus, unspecified", + }, + { + key: "N21", + en: "", + de: "Calculus of lower urinary tract", + }, + { + key: "N21.0", + en: "", + de: "Calculus in bladder", + }, + { + key: "N21.1", + en: "", + de: "Calculus in urethra", + }, + { + key: "N21.8", + en: "", + de: "Other lower urinary tract calculus", + }, + { + key: "N21.9", + en: "", + de: "Calculus of lower urinary tract, unspecified", + }, + { + key: "N23", + en: "", + de: "Unspecified renal colic", + }, + { + key: "N25", + en: "", + de: "Disorders resulting from impaired renal tubular function", + }, + { + key: "N25.0", + en: "", + de: "Renal osteodystrophy", + }, + { + key: "N25.1", + en: "", + de: "Nephrogenic diabetes insipidus", + }, + { + key: "N25.8", + en: "", + de: "Other disorders resulting from impaired renal tubular function", + }, + { + key: "N25.9", + en: "", + de: "Disorder resulting from impaired renal tubular function, unspecified", + }, + { + key: "N26", + en: "", + de: "Unspecified contracted kidney", + }, + { + key: "N27", + en: "", + de: "Small kidney of unknown cause", + }, + { + key: "N27.0", + en: "", + de: "Small kidney, unilateral", + }, + { + key: "N27.1", + en: "", + de: "Small kidney, bilateral", + }, + { + key: "N27.9", + en: "", + de: "Small kidney, unspecified", + }, + { + key: "N28", + en: "", + de: "Other disorders of kidney and ureter, not elsewhere classified", + }, + { + key: "N28.0", + en: "", + de: "Ischaemia and infarction of kidney", + }, + { + key: "N28.1", + en: "", + de: "Cyst of kidney", + }, + { + key: "N28.8", + en: "", + de: "Other specified disorders of kidney and ureter", + }, + { + key: "N28.9", + en: "", + de: "Disorder of kidney and ureter, unspecified", + }, + { + key: "N30", + en: "", + de: "Cystitis", + }, + { + key: "N30.0", + en: "", + de: "Acute cystitis", + }, + { + key: "N30.1", + en: "", + de: "Interstitial cystitis (chronic)", + }, + { + key: "N30.2", + en: "", + de: "Other chronic cystitis", + }, + { + key: "N30.3", + en: "", + de: "Trigonitis", + }, + { + key: "N30.4", + en: "", + de: "Irradiation cystitis", + }, + { + key: "N30.8", + en: "", + de: "Other cystitis", + }, + { + key: "N30.9", + en: "", + de: "Cystitis, unspecified", + }, + { + key: "N31", + en: "", + de: "Neuromuscular dysfunction of bladder, not elsewhere classified", + }, + { + key: "N31.0", + en: "", + de: "Uninhibited neuropathic bladder, not elsewhere classified", + }, + { + key: "N31.1", + en: "", + de: "Reflex neuropathic bladder, not elsewhere classified", + }, + { + key: "N31.2", + en: "", + de: "Flaccid neuropathic bladder, not elsewhere classified", + }, + { + key: "N31.8", + en: "", + de: "Other neuromuscular dysfunction of bladder", + }, + { + key: "N31.9", + en: "", + de: "Neuromuscular dysfunction of bladder, unspecified", + }, + { + key: "N32", + en: "", + de: "Other disorders of bladder", + }, + { + key: "N32.0", + en: "", + de: "Bladder-neck obstruction", + }, + { + key: "N32.1", + en: "", + de: "Vesicointestinal fistula", + }, + { + key: "N32.2", + en: "", + de: "Vesical fistula, not elsewhere classified", + }, + { + key: "N32.3", + en: "", + de: "Diverticulum of bladder", + }, + { + key: "N32.4", + en: "", + de: "Rupture of bladder, nontraumatic", + }, + { + key: "N32.8", + en: "", + de: "Other specified disorders of bladder", + }, + { + key: "N32.9", + en: "", + de: "Bladder disorder, unspecified", + }, + { + key: "N34", + en: "", + de: "Urethritis and urethral syndrome", + }, + { + key: "N34.0", + en: "", + de: "Urethral abscess", + }, + { + key: "N34.1", + en: "", + de: "Nonspecific urethritis", + }, + { + key: "N34.2", + en: "", + de: "Other urethritis", + }, + { + key: "N34.3", + en: "", + de: "Urethral syndrome, unspecified", + }, + { + key: "N35", + en: "", + de: "Urethral stricture", + }, + { + key: "N35.0", + en: "", + de: "Post-traumatic urethral stricture", + }, + { + key: "N35.1", + en: "", + de: "Postinfective urethral stricture, not elsewhere classified", + }, + { + key: "N35.8", + en: "", + de: "Other urethral stricture", + }, + { + key: "N35.9", + en: "", + de: "Urethral stricture, unspecified", + }, + { + key: "N36", + en: "", + de: "Other disorders of urethra", + }, + { + key: "N36.0", + en: "", + de: "Urethral fistula", + }, + { + key: "N36.1", + en: "", + de: "Urethral diverticulum", + }, + { + key: "N36.2", + en: "", + de: "Urethral caruncle", + }, + { + key: "N36.3", + en: "", + de: "Prolapsed urethral mucosa", + }, + { + key: "N36.8", + en: "", + de: "Other specified disorders of urethra", + }, + { + key: "N36.9", + en: "", + de: "Urethral disorder, unspecified", + }, + { + key: "N39", + en: "", + de: "Other disorders of urinary system", + }, + { + key: "N39.0", + en: "", + de: "Urinary tract infection, site not specified", + }, + { + key: "N39.1", + en: "", + de: "Persistent proteinuria, unspecified", + }, + { + key: "N39.2", + en: "", + de: "Orthostatic proteinuria, unspecified", + }, + { + key: "N39.3", + en: "", + de: "Stress incontinence", + }, + { + key: "N39.4", + en: "", + de: "Other specified urinary incontinence", + }, + { + key: "N39.8", + en: "", + de: "Other specified disorders of urinary system", + }, + { + key: "N39.9", + en: "", + de: "Disorder of urinary system, unspecified", + }, + { + key: "N40", + en: "", + de: "Hyperplasia of prostate", + }, + { + key: "N41", + en: "", + de: "Inflammatory diseases of prostate", + }, + { + key: "N41.0", + en: "", + de: "Acute prostatitis", + }, + { + key: "N41.1", + en: "", + de: "Chronic prostatitis", + }, + { + key: "N41.2", + en: "", + de: "Abscess of prostate", + }, + { + key: "N41.3", + en: "", + de: "Prostatocystitis", + }, + { + key: "N41.8", + en: "", + de: "Other inflammatory diseases of prostate", + }, + { + key: "N41.9", + en: "", + de: "Inflammatory disease of prostate, unspecified", + }, + { + key: "N42", + en: "", + de: "Other disorders of prostate", + }, + { + key: "N42.0", + en: "", + de: "Calculus of prostate", + }, + { + key: "N42.1", + en: "", + de: "Congestion and haemorrhage of prostate", + }, + { + key: "N42.2", + en: "", + de: "Atrophy of prostate", + }, + { + key: "N42.3", + en: "", + de: "Dysplasia of prostate", + }, + { + key: "N42.8", + en: "", + de: "Other specified disorders of prostate", + }, + { + key: "N42.9", + en: "", + de: "Disorder of prostate, unspecified", + }, + { + key: "N43", + en: "", + de: "Hydrocele and spermatocele", + }, + { + key: "N43.0", + en: "", + de: "Encysted hydrocele", + }, + { + key: "N43.1", + en: "", + de: "Infected hydrocele", + }, + { + key: "N43.2", + en: "", + de: "Other hydrocele", + }, + { + key: "N43.3", + en: "", + de: "Hydrocele, unspecified", + }, + { + key: "N43.4", + en: "", + de: "Spermatocele", + }, + { + key: "N44", + en: "", + de: "Torsion of testis", + }, + { + key: "N45", + en: "", + de: "Orchitis and epididymitis", + }, + { + key: "N45.0", + en: "", + de: "Orchitis, epididymitis and epididymo-orchitis with abscess", + }, + { + key: "N45.9", + en: "", + de: "Orchitis, epididymitis and epididymo-orchitis without abscess", + }, + { + key: "N46", + en: "", + de: "Male infertility", + }, + { + key: "N47", + en: "", + de: "Redundant prepuce, phimosis and paraphimosis", + }, + { + key: "N48", + en: "", + de: "Other disorders of penis", + }, + { + key: "N48.0", + en: "", + de: "Leukoplakia of penis", + }, + { + key: "N48.1", + en: "", + de: "Balanoposthitis", + }, + { + key: "N48.2", + en: "", + de: "Other inflammatory disorders of penis", + }, + { + key: "N48.3", + en: "", + de: "Priapism", + }, + { + key: "N48.4", + en: "", + de: "Impotence of organic origin", + }, + { + key: "N48.5", + en: "", + de: "Ulcer of penis", + }, + { + key: "N48.6", + en: "", + de: "Induratio penis plastica", + }, + { + key: "N48.8", + en: "", + de: "Other specified disorders of penis", + }, + { + key: "N48.9", + en: "", + de: "Disorder of penis, unspecified", + }, + { + key: "N49", + en: "", + de: "Inflammatory disorders of male genital organs, not elsewhere classified", + }, + { + key: "N49.0", + en: "", + de: "Inflammatory disorders of seminal vesicle", + }, + { + key: "N49.1", + en: "", + de: "Inflammatory disorders of spermatic cord, tunica vaginalis and vas deferens", + }, + { + key: "N49.2", + en: "", + de: "Inflammatory disorders of scrotum", + }, + { + key: "N49.8", + en: "", + de: "Inflammatory disorders of other specified male genital organs", + }, + { + key: "N49.9", + en: "", + de: "Inflammatory disorder of unspecified male genital organ", + }, + { + key: "N50", + en: "", + de: "Other disorders of male genital organs", + }, + { + key: "N50.0", + en: "", + de: "Atrophy of testis", + }, + { + key: "N50.1", + en: "", + de: "Vascular disorders of male genital organs", + }, + { + key: "N50.8", + en: "", + de: "Other specified disorders of male genital organs", + }, + { + key: "N50.9", + en: "", + de: "Disorder of male genital organs, unspecified", + }, + { + key: "N60", + en: "", + de: "Benign mammary dysplasia", + }, + { + key: "N60.0", + en: "", + de: "Solitary cyst of breast", + }, + { + key: "N60.1", + en: "", + de: "Diffuse cystic mastopathy", + }, + { + key: "N60.2", + en: "", + de: "Fibroadenosis of breast", + }, + { + key: "N60.3", + en: "", + de: "Fibrosclerosis of breast", + }, + { + key: "N60.4", + en: "", + de: "Mammary duct ectasia", + }, + { + key: "N60.8", + en: "", + de: "Other benign mammary dysplasias", + }, + { + key: "N60.9", + en: "", + de: "Benign mammary dysplasia, unspecified", + }, + { + key: "N61", + en: "", + de: "Inflammatory disorders of breast", + }, + { + key: "N62", + en: "", + de: "Hypertrophy of breast", + }, + { + key: "N63", + en: "", + de: "Unspecified lump in breast", + }, + { + key: "N64", + en: "", + de: "Other disorders of breast", + }, + { + key: "N64.0", + en: "", + de: "Fissure and fistula of nipple", + }, + { + key: "N64.1", + en: "", + de: "Fat necrosis of breast", + }, + { + key: "N64.2", + en: "", + de: "Atrophy of breast", + }, + { + key: "N64.3", + en: "", + de: "Galactorrhoea not associated with childbirth", + }, + { + key: "N64.4", + en: "", + de: "Mastodynia", + }, + { + key: "N64.5", + en: "", + de: "Other signs and symptoms in breast", + }, + { + key: "N64.8", + en: "", + de: "Other specified disorders of breast", + }, + { + key: "N64.9", + en: "", + de: "Disorder of breast, unspecified", + }, + { + key: "N70", + en: "", + de: "Salpingitis and oophoritis", + }, + { + key: "N70.0", + en: "", + de: "Acute salpingitis and oophoritis", + }, + { + key: "N70.1", + en: "", + de: "Chronic salpingitis and oophoritis", + }, + { + key: "N70.9", + en: "", + de: "Salpingitis and oophoritis, unspecified", + }, + { + key: "N71", + en: "", + de: "Inflammatory disease of uterus, except cervix", + }, + { + key: "N71.0", + en: "", + de: "Acute inflammatory disease of uterus", + }, + { + key: "N71.1", + en: "", + de: "Chronic inflammatory disease of uterus", + }, + { + key: "N71.9", + en: "", + de: "Inflammatory disease of uterus, unspecified", + }, + { + key: "N72", + en: "", + de: "Inflammatory disease of cervix uteri", + }, + { + key: "N73", + en: "", + de: "Other female pelvic inflammatory diseases", + }, + { + key: "N73.0", + en: "", + de: "Acute parametritis and pelvic cellulitis", + }, + { + key: "N73.1", + en: "", + de: "Chronic parametritis and pelvic cellulitis", + }, + { + key: "N73.2", + en: "", + de: "Unspecified parametritis and pelvic cellulitis", + }, + { + key: "N73.3", + en: "", + de: "Female acute pelvic peritonitis", + }, + { + key: "N73.4", + en: "", + de: "Female chronic pelvic peritonitis", + }, + { + key: "N73.5", + en: "", + de: "Female pelvic peritonitis, unspecified", + }, + { + key: "N73.6", + en: "", + de: "Female pelvic peritoneal adhesions", + }, + { + key: "N73.8", + en: "", + de: "Other specified female pelvic inflammatory diseases", + }, + { + key: "N73.9", + en: "", + de: "Female pelvic inflammatory disease, unspecified", + }, + { + key: "N75", + en: "", + de: "Diseases of Bartholin gland", + }, + { + key: "N75.0", + en: "", + de: "Cyst of Bartholin gland", + }, + { + key: "N75.1", + en: "", + de: "Abscess of Bartholin gland", + }, + { + key: "N75.8", + en: "", + de: "Other diseases of Bartholin gland", + }, + { + key: "N75.9", + en: "", + de: "Disease of Bartholin gland, unspecified", + }, + { + key: "N76", + en: "", + de: "Other inflammation of vagina and vulva", + }, + { + key: "N76.0", + en: "", + de: "Acute vaginitis", + }, + { + key: "N76.1", + en: "", + de: "Subacute and chronic vaginitis", + }, + { + key: "N76.2", + en: "", + de: "Acute vulvitis", + }, + { + key: "N76.3", + en: "", + de: "Subacute and chronic vulvitis", + }, + { + key: "N76.4", + en: "", + de: "Abscess of vulva", + }, + { + key: "N76.5", + en: "", + de: "Ulceration of vagina", + }, + { + key: "N76.6", + en: "", + de: "Ulceration of vulva", + }, + { + key: "N76.8", + en: "", + de: "Other specified inflammation of vagina and vulva", + }, + { + key: "N80", + en: "", + de: "Endometriosis", + }, + { + key: "N80.0", + en: "", + de: "Endometriosis of uterus", + }, + { + key: "N80.1", + en: "", + de: "Endometriosis of ovary", + }, + { + key: "N80.2", + en: "", + de: "Endometriosis of fallopian tube", + }, + { + key: "N80.3", + en: "", + de: "Endometriosis of pelvic peritoneum", + }, + { + key: "N80.4", + en: "", + de: "Endometriosis of rectovaginal septum and vagina", + }, + { + key: "N80.5", + en: "", + de: "Endometriosis of intestine", + }, + { + key: "N80.6", + en: "", + de: "Endometriosis in cutaneous scar", + }, + { + key: "N80.8", + en: "", + de: "Other endometriosis", + }, + { + key: "N80.9", + en: "", + de: "Endometriosis, unspecified", + }, + { + key: "N81", + en: "", + de: "Female genital prolapse", + }, + { + key: "N81.0", + en: "", + de: "Female urethrocele", + }, + { + key: "N81.1", + en: "", + de: "Cystocele", + }, + { + key: "N81.2", + en: "", + de: "Incomplete uterovaginal prolapse", + }, + { + key: "N81.3", + en: "", + de: "Complete uterovaginal prolapse", + }, + { + key: "N81.4", + en: "", + de: "Uterovaginal prolapse, unspecified", + }, + { + key: "N81.5", + en: "", + de: "Vaginal enterocele", + }, + { + key: "N81.6", + en: "", + de: "Rectocele", + }, + { + key: "N81.8", + en: "", + de: "Other female genital prolapse", + }, + { + key: "N81.9", + en: "", + de: "Female genital prolapse, unspecified", + }, + { + key: "N82", + en: "", + de: "Fistulae involving female genital tract", + }, + { + key: "N82.0", + en: "", + de: "Vesicovaginal fistula", + }, + { + key: "N82.1", + en: "", + de: "Other female urinary-genital tract fistulae", + }, + { + key: "N82.2", + en: "", + de: "Fistula of vagina to small intestine", + }, + { + key: "N82.3", + en: "", + de: "Fistula of vagina to large intestine", + }, + { + key: "N82.4", + en: "", + de: "Other female intestinal-genital tract fistulae", + }, + { + key: "N82.5", + en: "", + de: "Female genital tract-skin fistulae", + }, + { + key: "N82.8", + en: "", + de: "Other female genital tract fistulae", + }, + { + key: "N82.9", + en: "", + de: "Female genital tract fistula, unspecified", + }, + { + key: "N83", + en: "", + de: "Noninflammatory disorders of ovary, fallopian tube and broad ligament", + }, + { + key: "N83.0", + en: "", + de: "Follicular cyst of ovary", + }, + { + key: "N83.1", + en: "", + de: "Corpus luteum cyst", + }, + { + key: "N83.2", + en: "", + de: "Other and unspecified ovarian cysts", + }, + { + key: "N83.3", + en: "", + de: "Acquired atrophy of ovary and fallopian tube", + }, + { + key: "N83.4", + en: "", + de: "Prolapse and hernia of ovary and fallopian tube", + }, + { + key: "N83.5", + en: "", + de: "Torsion of ovary, ovarian pedicle and fallopian tube", + }, + { + key: "N83.6", + en: "", + de: "Haematosalpinx", + }, + { + key: "N83.7", + en: "", + de: "Haematoma of broad ligament", + }, + { + key: "N83.8", + en: "", + de: "Other noninflammatory disorders of ovary, fallopian tube and broad ligament", + }, + { + key: "N83.9", + en: "", + de: "Noninflammatory disorder of ovary, fallopian tube and broad ligament, unspecified", + }, + { + key: "N84", + en: "", + de: "Polyp of female genital tract", + }, + { + key: "N84.0", + en: "", + de: "Polyp of corpus uteri", + }, + { + key: "N84.1", + en: "", + de: "Polyp of cervix uteri", + }, + { + key: "N84.2", + en: "", + de: "Polyp of vagina", + }, + { + key: "N84.3", + en: "", + de: "Polyp of vulva", + }, + { + key: "N84.8", + en: "", + de: "Polyp of other parts of female genital tract", + }, + { + key: "N84.9", + en: "", + de: "Polyp of female genital tract, unspecified", + }, + { + key: "N85", + en: "", + de: "Other noninflammatory disorders of uterus, except cervix", + }, + { + key: "N85.0", + en: "", + de: "Endometrial glandular hyperplasia", + }, + { + key: "N85.1", + en: "", + de: "Endometrial adenomatous hyperplasia", + }, + { + key: "N85.2", + en: "", + de: "Hypertrophy of uterus", + }, + { + key: "N85.3", + en: "", + de: "Subinvolution of uterus", + }, + { + key: "N85.4", + en: "", + de: "Malposition of uterus", + }, + { + key: "N85.5", + en: "", + de: "Inversion of uterus", + }, + { + key: "N85.6", + en: "", + de: "Intrauterine synechiae", + }, + { + key: "N85.7", + en: "", + de: "Haematometra", + }, + { + key: "N85.8", + en: "", + de: "Other specified noninflammatory disorders of uterus", + }, + { + key: "N85.9", + en: "", + de: "Noninflammatory disorder of uterus, unspecified", + }, + { + key: "N86", + en: "", + de: "Erosion and ectropion of cervix uteri", + }, + { + key: "N87", + en: "", + de: "Dysplasia of cervix uteri", + }, + { + key: "N87.0", + en: "", + de: "Mild cervical dysplasia", + }, + { + key: "N87.1", + en: "", + de: "Moderate cervical dysplasia", + }, + { + key: "N87.2", + en: "", + de: "Severe cervical dysplasia, not elsewhere classified", + }, + { + key: "N87.9", + en: "", + de: "Dysplasia of cervix uteri, unspecified", + }, + { + key: "N88", + en: "", + de: "Other noninflammatory disorders of cervix uteri", + }, + { + key: "N88.0", + en: "", + de: "Leukoplakia of cervix uteri", + }, + { + key: "N88.1", + en: "", + de: "Old laceration of cervix uteri", + }, + { + key: "N88.2", + en: "", + de: "Stricture and stenosis of cervix uteri", + }, + { + key: "N88.3", + en: "", + de: "Incompetence of cervix uteri", + }, + { + key: "N88.4", + en: "", + de: "Hypertrophic elongation of cervix uteri", + }, + { + key: "N88.8", + en: "", + de: "Other specified noninflammatory disorders of cervix uteri", + }, + { + key: "N88.9", + en: "", + de: "Noninflammatory disorder of cervix uteri, unspecified", + }, + { + key: "N89", + en: "", + de: "Other noninflammatory disorders of vagina", + }, + { + key: "N89.0", + en: "", + de: "Mild vaginal dysplasia", + }, + { + key: "N89.1", + en: "", + de: "Moderate vaginal dysplasia", + }, + { + key: "N89.2", + en: "", + de: "Severe vaginal dysplasia, not elsewhere classified", + }, + { + key: "N89.3", + en: "", + de: "Dysplasia of vagina, unspecified", + }, + { + key: "N89.4", + en: "", + de: "Leukoplakia of vagina", + }, + { + key: "N89.5", + en: "", + de: "Stricture and atresia of vagina", + }, + { + key: "N89.6", + en: "", + de: "Tight hymenal ring", + }, + { + key: "N89.7", + en: "", + de: "Haematocolpos", + }, + { + key: "N89.8", + en: "", + de: "Other specified noninflammatory disorders of vagina", + }, + { + key: "N89.9", + en: "", + de: "Noninflammatory disorder of vagina, unspecified", + }, + { + key: "N90", + en: "", + de: "Other noninflammatory disorders of vulva and perineum", + }, + { + key: "N90.0", + en: "", + de: "Mild vulvar dysplasia", + }, + { + key: "N90.1", + en: "", + de: "Moderate vulvar dysplasia", + }, + { + key: "N90.2", + en: "", + de: "Severe vulvar dysplasia, not elsewhere classified", + }, + { + key: "N90.3", + en: "", + de: "Dysplasia of vulva, unspecified", + }, + { + key: "N90.4", + en: "", + de: "Leukoplakia of vulva", + }, + { + key: "N90.5", + en: "", + de: "Atrophy of vulva", + }, + { + key: "N90.6", + en: "", + de: "Hypertrophy of vulva", + }, + { + key: "N90.7", + en: "", + de: "Vulvar cyst", + }, + { + key: "N90.8", + en: "", + de: "Other specified noninflammatory disorders of vulva and perineum", + }, + { + key: "N90.9", + en: "", + de: "Noninflammatory disorder of vulva and perineum, unspecified", + }, + { + key: "N91", + en: "", + de: "Absent, scanty and rare menstruation", + }, + { + key: "N91.0", + en: "", + de: "Primary amenorrhoea", + }, + { + key: "N91.1", + en: "", + de: "Secondary amenorrhoea", + }, + { + key: "N91.2", + en: "", + de: "Amenorrhoea, unspecified", + }, + { + key: "N91.3", + en: "", + de: "Primary oligomenorrhoea", + }, + { + key: "N91.4", + en: "", + de: "Secondary oligomenorrhoea", + }, + { + key: "N91.5", + en: "", + de: "Oligomenorrhoea, unspecified", + }, + { + key: "N92", + en: "", + de: "Excessive, frequent and irregular menstruation", + }, + { + key: "N92.0", + en: "", + de: "Excessive and frequent menstruation with regular cycle", + }, + { + key: "N92.1", + en: "", + de: "Excessive and frequent menstruation with irregular cycle", + }, + { + key: "N92.2", + en: "", + de: "Excessive menstruation at puberty", + }, + { + key: "N92.3", + en: "", + de: "Ovulation bleeding", + }, + { + key: "N92.4", + en: "", + de: "Excessive bleeding in the premenopausal period", + }, + { + key: "N92.5", + en: "", + de: "Other specified irregular menstruation", + }, + { + key: "N92.6", + en: "", + de: "Irregular menstruation, unspecified", + }, + { + key: "N93", + en: "", + de: "Other abnormal uterine and vaginal bleeding", + }, + { + key: "N93.0", + en: "", + de: "Postcoital and contact bleeding", + }, + { + key: "N93.8", + en: "", + de: "Other specified abnormal uterine and vaginal bleeding", + }, + { + key: "N93.9", + en: "", + de: "Abnormal uterine and vaginal bleeding, unspecified", + }, + { + key: "N94", + en: "", + de: "Pain and other conditions associated with female genital organs and menstrual cycle", + }, + { + key: "N94.0", + en: "", + de: "Mittelschmerz", + }, + { + key: "N94.1", + en: "", + de: "Dyspareunia", + }, + { + key: "N94.2", + en: "", + de: "Vaginismus", + }, + { + key: "N94.3", + en: "", + de: "Premenstrual tension syndrome", + }, + { + key: "N94.4", + en: "", + de: "Primary dysmenorrhoea", + }, + { + key: "N94.5", + en: "", + de: "Secondary dysmenorrhoea", + }, + { + key: "N94.6", + en: "", + de: "Dysmenorrhoea, unspecified", + }, + { + key: "N94.8", + en: "", + de: "Other specified conditions associated with female genital organs and menstrual cycle", + }, + { + key: "N94.9", + en: "", + de: "Unspecified condition associated with female genital organs and menstrual cycle", + }, + { + key: "N95", + en: "", + de: "Menopausal and other perimenopausal disorders", + }, + { + key: "N95.0", + en: "", + de: "Postmenopausal bleeding", + }, + { + key: "N95.1", + en: "", + de: "Menopausal and female climacteric states", + }, + { + key: "N95.2", + en: "", + de: "Postmenopausal atrophic vaginitis", + }, + { + key: "N95.3", + en: "", + de: "States associated with artificial menopause", + }, + { + key: "N95.8", + en: "", + de: "Other specified menopausal and perimenopausal disorders", + }, + { + key: "N95.9", + en: "", + de: "Menopausal and perimenopausal disorder, unspecified", + }, + { + key: "N96", + en: "", + de: "Habitual aborter", + }, + { + key: "N97", + en: "", + de: "Female infertility", + }, + { + key: "N97.0", + en: "", + de: "Female infertility associated with anovulation", + }, + { + key: "N97.1", + en: "", + de: "Female infertility of tubal origin", + }, + { + key: "N97.2", + en: "", + de: "Female infertility of uterine origin", + }, + { + key: "N97.3", + en: "", + de: "Female infertility of cervical origin", + }, + { + key: "N97.4", + en: "", + de: "Female infertility associated with male factors", + }, + { + key: "N97.8", + en: "", + de: "Female infertility of other origin", + }, + { + key: "N97.9", + en: "", + de: "Female infertility, unspecified", + }, + { + key: "N98", + en: "", + de: "Complications associated with artificial fertilization", + }, + { + key: "N98.0", + en: "", + de: "Infection associated with artificial insemination", + }, + { + key: "N98.1", + en: "", + de: "Hyperstimulation of ovaries", + }, + { + key: "N98.2", + en: "", + de: "Complications of attempted introduction of fertilized ovum following in vitro fertilization", + }, + { + key: "N98.3", + en: "", + de: "Complications of attempted introduction of embryo in embryo transfer", + }, + { + key: "N98.8", + en: "", + de: "Other complications associated with artificial fertilization", + }, + { + key: "N98.9", + en: "", + de: "Complication associated with artificial fertilization, unspecified", + }, + { + key: "N99", + en: "", + de: "Postprocedural disorders of genitourinary system, not elsewhere classified", + }, + { + key: "N99.0", + en: "", + de: "Postprocedural renal failure", + }, + { + key: "N99.1", + en: "", + de: "Postprocedural urethral stricture", + }, + { + key: "N99.2", + en: "", + de: "Postoperative adhesions of vagina", + }, + { + key: "N99.3", + en: "", + de: "Prolapse of vaginal vault after hysterectomy", + }, + { + key: "N99.4", + en: "", + de: "Postprocedural pelvic peritoneal adhesions", + }, + { + key: "N99.5", + en: "", + de: "Malfunction of external stoma of urinary tract", + }, + { + key: "N99.8", + en: "", + de: "Other postprocedural disorders of genitourinary system", + }, + { + key: "N99.9", + en: "", + de: "Postprocedural disorder of genitourinary system, unspecified", + }, + { + key: "O00", + en: "", + de: "Ectopic pregnancy", + }, + { + key: "O00.0", + en: "", + de: "Abdominal pregnancy", + }, + { + key: "O00.1", + en: "", + de: "Tubal pregnancy", + }, + { + key: "O00.2", + en: "", + de: "Ovarian pregnancy", + }, + { + key: "O00.8", + en: "", + de: "Other ectopic pregnancy", + }, + { + key: "O00.9", + en: "", + de: "Ectopic pregnancy, unspecified", + }, + { + key: "O01", + en: "", + de: "Hydatidiform mole", + }, + { + key: "O01.0", + en: "", + de: "Classical hydatidiform mole", + }, + { + key: "O01.1", + en: "", + de: "Incomplete and partial hydatidiform mole", + }, + { + key: "O01.9", + en: "", + de: "Hydatidiform mole, unspecified", + }, + { + key: "O02", + en: "", + de: "Other abnormal products of conception", + }, + { + key: "O02.0", + en: "", + de: "Blighted ovum and nonhydatidiform mole", + }, + { + key: "O02.1", + en: "", + de: "Missed abortion", + }, + { + key: "O02.8", + en: "", + de: "Other specified abnormal products of conception", + }, + { + key: "O02.9", + en: "", + de: "Abnormal product of conception, unspecified", + }, + { + key: "O03", + en: "", + de: "Spontaneous abortion", + }, + { + key: "O04", + en: "", + de: "Medical abortion", + }, + { + key: "O05", + en: "", + de: "Other abortion", + }, + { + key: "O06", + en: "", + de: "Unspecified abortion", + }, + { + key: "O07", + en: "", + de: "Failed attempted abortion", + }, + { + key: "O07.0", + en: "", + de: "Failed medical abortion, complicated by genital tract and pelvic infection", + }, + { + key: "O07.1", + en: "", + de: "Failed medical abortion, complicated by delayed or excessive haemorrhage", + }, + { + key: "O07.2", + en: "", + de: "Failed medical abortion, complicated by embolism", + }, + { + key: "O07.3", + en: "", + de: "Failed medical abortion, with other and unspecified complications", + }, + { + key: "O07.4", + en: "", + de: "Failed medical abortion, without complication", + }, + { + key: "O07.5", + en: "", + de: "Other and unspecified failed attempted abortion, complicated by genital tract and pelvic infection", + }, + { + key: "O07.6", + en: "", + de: "Other and unspecified failed attempted abortion, complicated by delayed or excessive haemorrhage", + }, + { + key: "O07.7", + en: "", + de: "Other and unspecified failed attempted abortion, complicated by embolism", + }, + { + key: "O07.8", + en: "", + de: "Other and unspecified failed attempted abortion, with other and unspecified complications", + }, + { + key: "O07.9", + en: "", + de: "Other and unspecified failed attempted abortion, without complication", + }, + { + key: "O08", + en: "", + de: "Complications following abortion and ectopic and molar pregnancy", + }, + { + key: "O08.0", + en: "", + de: "Genital tract and pelvic infection following abortion and ectopic and molar pregnancy", + }, + { + key: "O08.1", + en: "", + de: "Delayed or excessive haemorrhage following abortion and ectopic and molar pregnancy", + }, + { + key: "O08.2", + en: "", + de: "Embolism following abortion and ectopic and molar pregnancy", + }, + { + key: "O08.3", + en: "", + de: "Shock following abortion and ectopic and molar pregnancy", + }, + { + key: "O08.4", + en: "", + de: "Renal failure following abortion and ectopic and molar pregnancy", + }, + { + key: "O08.5", + en: "", + de: "Metabolic disorders following abortion and ectopic and molar pregnancy", + }, + { + key: "O08.6", + en: "", + de: "Damage to pelvic organs and tissues following abortion and ectopic and molar pregnancy", + }, + { + key: "O08.7", + en: "", + de: "Other venous complications following abortion and ectopic and molar pregnancy", + }, + { + key: "O08.8", + en: "", + de: "Other complications following abortion and ectopic and molar pregnancy", + }, + { + key: "O08.9", + en: "", + de: "Complication following abortion and ectopic and molar pregnancy, unspecified", + }, + { + key: "O10", + en: "", + de: "Pre-existing hypertension complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O10.0", + en: "", + de: "Pre-existing essential hypertension complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O10.1", + en: "", + de: "Pre-existing hypertensive heart disease complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O10.2", + en: "", + de: "Pre-existing hypertensive renal disease complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O10.3", + en: "", + de: "Pre-existing hypertensive heart and renal disease complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O10.4", + en: "", + de: "Pre-existing secondary hypertension complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O10.9", + en: "", + de: "Unspecified pre-existing hypertension complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O11", + en: "", + de: "Pre-eclampsia superimposed on chronic hypertension", + }, + { + key: "O12", + en: "", + de: "Gestational [pregnancy-induced] oedema and proteinuria without hypertension", + }, + { + key: "O12.0", + en: "", + de: "Gestational oedema", + }, + { + key: "O12.1", + en: "", + de: "Gestational proteinuria", + }, + { + key: "O12.2", + en: "", + de: "Gestational oedema with proteinuria", + }, + { + key: "O13", + en: "", + de: "Gestational [pregnancy-induced] hypertension", + }, + { + key: "O14", + en: "", + de: "Pre-eclampsia", + }, + { + key: "O14.0", + en: "", + de: "Mild to moderate pre-eclampsia", + }, + { + key: "O14.1", + en: "", + de: "Severe pre-eclampsia", + }, + { + key: "O14.2", + en: "", + de: "HELLP syndrome", + }, + { + key: "O14.9", + en: "", + de: "Pre-eclampsia, unspecified", + }, + { + key: "O15", + en: "", + de: "Eclampsia", + }, + { + key: "O15.0", + en: "", + de: "Eclampsia in pregnancy", + }, + { + key: "O15.1", + en: "", + de: "Eclampsia in labour", + }, + { + key: "O15.2", + en: "", + de: "Eclampsia in the puerperium", + }, + { + key: "O15.9", + en: "", + de: "Eclampsia, unspecified as to time period", + }, + { + key: "O16", + en: "", + de: "Unspecified maternal hypertension", + }, + { + key: "O20", + en: "", + de: "Haemorrhage in early pregnancy", + }, + { + key: "O20.0", + en: "", + de: "Threatened abortion", + }, + { + key: "O20.8", + en: "", + de: "Other haemorrhage in early pregnancy", + }, + { + key: "O20.9", + en: "", + de: "Haemorrhage in early pregnancy, unspecified", + }, + { + key: "O21", + en: "", + de: "Excessive vomiting in pregnancy", + }, + { + key: "O21.0", + en: "", + de: "Mild hyperemesis gravidarum", + }, + { + key: "O21.1", + en: "", + de: "Hyperemesis gravidarum with metabolic disturbance", + }, + { + key: "O21.2", + en: "", + de: "Late vomiting of pregnancy", + }, + { + key: "O21.8", + en: "", + de: "Other vomiting complicating pregnancy", + }, + { + key: "O21.9", + en: "", + de: "Vomiting of pregnancy, unspecified", + }, + { + key: "O22", + en: "", + de: "Venous complications and haemorrhoids in pregnancy", + }, + { + key: "O22.0", + en: "", + de: "Varicose veins of lower extremity in pregnancy", + }, + { + key: "O22.1", + en: "", + de: "Genital varices in pregnancy", + }, + { + key: "O22.2", + en: "", + de: "Superficial thrombophlebitis in pregnancy", + }, + { + key: "O22.3", + en: "", + de: "Deep phlebothrombosis in pregnancy", + }, + { + key: "O22.4", + en: "", + de: "Haemorrhoids in pregnancy", + }, + { + key: "O22.5", + en: "", + de: "Cerebral venous thrombosis in pregnancy", + }, + { + key: "O22.8", + en: "", + de: "Other venous complications in pregnancy", + }, + { + key: "O22.9", + en: "", + de: "Venous complication in pregnancy, unspecified", + }, + { + key: "O23", + en: "", + de: "Infections of genitourinary tract in pregnancy", + }, + { + key: "O23.0", + en: "", + de: "Infections of kidney in pregnancy", + }, + { + key: "O23.1", + en: "", + de: "Infections of bladder in pregnancy", + }, + { + key: "O23.2", + en: "", + de: "Infections of urethra in pregnancy", + }, + { + key: "O23.3", + en: "", + de: "Infections of other parts of urinary tract in pregnancy", + }, + { + key: "O23.4", + en: "", + de: "Unspecified infection of urinary tract in pregnancy", + }, + { + key: "O23.5", + en: "", + de: "Infections of the genital tract in pregnancy", + }, + { + key: "O23.9", + en: "", + de: "Other and unspecified genitourinary tract infection in pregnancy", + }, + { + key: "O24", + en: "", + de: "Diabetes mellitus in pregnancy", + }, + { + key: "O24.0", + en: "", + de: "Diabetes mellitus in pregnancy: Pre-existing diabetes mellitus, insulin-dependent", + }, + { + key: "O24.1", + en: "", + de: "Diabetes mellitus in pregnancy: Pre-existing diabetes mellitus, non-insulin-dependent", + }, + { + key: "O24.2", + en: "", + de: "Diabetes mellitus in pregnancy: Pre-existing malnutrition-related diabetes mellitus", + }, + { + key: "O24.3", + en: "", + de: "Diabetes mellitus in pregnancy: Pre-existing diabetes mellitus, unspecified", + }, + { + key: "O24.4", + en: "", + de: "Diabetes mellitus arising in pregnancy", + }, + { + key: "O24.9", + en: "", + de: "Diabetes mellitus in pregnancy, unspecified", + }, + { + key: "O25", + en: "", + de: "Malnutrition in pregnancy", + }, + { + key: "O26", + en: "", + de: "Maternal care for other conditions predominantly related to pregnancy", + }, + { + key: "O26.0", + en: "", + de: "Excessive weight gain in pregnancy", + }, + { + key: "O26.1", + en: "", + de: "Low weight gain in pregnancy", + }, + { + key: "O26.2", + en: "", + de: "Pregnancy care of habitual aborter", + }, + { + key: "O26.3", + en: "", + de: "Retained intrauterine contraceptive device in pregnancy", + }, + { + key: "O26.4", + en: "", + de: "Herpes gestationis", + }, + { + key: "O26.5", + en: "", + de: "Maternal hypotension syndrome", + }, + { + key: "O26.6", + en: "", + de: "Liver disorders in pregnancy, childbirth and the puerperium", + }, + { + key: "O26.7", + en: "", + de: "Subluxation of symphysis (pubis) in pregnancy, childbirth and the puerperium", + }, + { + key: "O26.8", + en: "", + de: "Other specified pregnancy-related conditions", + }, + { + key: "O26.9", + en: "", + de: "Pregnancy-related condition, unspecified", + }, + { + key: "O28", + en: "", + de: "Abnormal findings on antenatal screening of mother", + }, + { + key: "O28.0", + en: "", + de: "Abnormal haematological finding on antenatal screening of mother", + }, + { + key: "O28.1", + en: "", + de: "Abnormal biochemical finding on antenatal screening of mother", + }, + { + key: "O28.2", + en: "", + de: "Abnormal cytological finding on antenatal screening of mother", + }, + { + key: "O28.3", + en: "", + de: "Abnormal ultrasonic finding on antenatal screening of mother", + }, + { + key: "O28.4", + en: "", + de: "Abnormal radiological finding on antenatal screening of mother", + }, + { + key: "O28.5", + en: "", + de: "Abnormal chromosomal and genetic finding on antenatal screening of mother", + }, + { + key: "O28.8", + en: "", + de: "Other abnormal findings on antenatal screening of mother", + }, + { + key: "O28.9", + en: "", + de: "Abnormal finding on antenatal screening of mother, unspecified", + }, + { + key: "O29", + en: "", + de: "Complications of anaesthesia during pregnancy", + }, + { + key: "O29.0", + en: "", + de: "Pulmonary complications of anaesthesia during pregnancy", + }, + { + key: "O29.1", + en: "", + de: "Cardiac complications of anaesthesia during pregnancy", + }, + { + key: "O29.2", + en: "", + de: "Central nervous system complications of anaesthesia during pregnancy", + }, + { + key: "O29.3", + en: "", + de: "Toxic reaction to local anaesthesia during pregnancy", + }, + { + key: "O29.4", + en: "", + de: "Spinal and epidural anaesthesia-induced headache during pregnancy", + }, + { + key: "O29.5", + en: "", + de: "Other complications of spinal and epidural anaesthesia during pregnancy", + }, + { + key: "O29.6", + en: "", + de: "Failed or difficult intubation during pregnancy", + }, + { + key: "O29.8", + en: "", + de: "Other complications of anaesthesia during pregnancy", + }, + { + key: "O29.9", + en: "", + de: "Complication of anaesthesia during pregnancy, unspecified", + }, + { + key: "O30", + en: "", + de: "Multiple gestation", + }, + { + key: "O30.0", + en: "", + de: "Twin pregnancy", + }, + { + key: "O30.1", + en: "", + de: "Triplet pregnancy", + }, + { + key: "O30.2", + en: "", + de: "Quadruplet pregnancy", + }, + { + key: "O30.8", + en: "", + de: "Other multiple gestation", + }, + { + key: "O30.9", + en: "", + de: "Multiple gestation, unspecified", + }, + { + key: "O31", + en: "", + de: "Complications specific to multiple gestation", + }, + { + key: "O31.0", + en: "", + de: "Papyraceous fetus", + }, + { + key: "O31.1", + en: "", + de: "Continuing pregnancy after abortion of one fetus or more", + }, + { + key: "O31.2", + en: "", + de: "Continuing pregnancy after intrauterine death of one fetus or more", + }, + { + key: "O31.8", + en: "", + de: "Other complications specific to multiple gestation", + }, + { + key: "O32", + en: "", + de: "Maternal care for known or suspected malpresentation of fetus", + }, + { + key: "O32.0", + en: "", + de: "Maternal care for unstable lie", + }, + { + key: "O32.1", + en: "", + de: "Maternal care for breech presentation", + }, + { + key: "O32.2", + en: "", + de: "Maternal care for transverse and oblique lie", + }, + { + key: "O32.3", + en: "", + de: "Maternal care for face, brow and chin presentation", + }, + { + key: "O32.4", + en: "", + de: "Maternal care for high head at term", + }, + { + key: "O32.5", + en: "", + de: "Maternal care for multiple gestation with malpresentation of one fetus or more", + }, + { + key: "O32.6", + en: "", + de: "Maternal care for compound presentation", + }, + { + key: "O32.8", + en: "", + de: "Maternal care for other malpresentation of fetus", + }, + { + key: "O32.9", + en: "", + de: "Maternal care for malpresentation of fetus, unspecified", + }, + { + key: "O33", + en: "", + de: "Maternal care for known or suspected disproportion", + }, + { + key: "O33.0", + en: "", + de: "Maternal care for disproportion due to deformity of maternal pelvic bones", + }, + { + key: "O33.1", + en: "", + de: "Maternal care for disproportion due to generally contracted pelvis", + }, + { + key: "O33.2", + en: "", + de: "Maternal care for disproportion due to inlet contraction of pelvis", + }, + { + key: "O33.3", + en: "", + de: "Maternal care for disproportion due to outlet contraction of pelvis", + }, + { + key: "O33.4", + en: "", + de: "Maternal care for disproportion of mixed maternal and fetal origin", + }, + { + key: "O33.5", + en: "", + de: "Maternal care for disproportion due to unusually large fetus", + }, + { + key: "O33.6", + en: "", + de: "Maternal care for disproportion due to hydrocephalic fetus", + }, + { + key: "O33.7", + en: "", + de: "Maternal care for disproportion due to other fetal deformities", + }, + { + key: "O33.8", + en: "", + de: "Maternal care for disproportion of other origin", + }, + { + key: "O33.9", + en: "", + de: "Maternal care for disproportion, unspecified", + }, + { + key: "O34", + en: "", + de: "Maternal care for known or suspected abnormality of pelvic organs", + }, + { + key: "O34.0", + en: "", + de: "Maternal care for congenital malformation of uterus", + }, + { + key: "O34.1", + en: "", + de: "Maternal care for tumour of corpus uteri", + }, + { + key: "O34.2", + en: "", + de: "Maternal care due to uterine scar from previous surgery", + }, + { + key: "O34.3", + en: "", + de: "Maternal care for cervical incompetence", + }, + { + key: "O34.4", + en: "", + de: "Maternal care for other abnormalities of cervix", + }, + { + key: "O34.5", + en: "", + de: "Maternal care for other abnormalities of gravid uterus", + }, + { + key: "O34.6", + en: "", + de: "Maternal care for abnormality of vagina", + }, + { + key: "O34.7", + en: "", + de: "Maternal care for abnormality of vulva and perineum", + }, + { + key: "O34.8", + en: "", + de: "Maternal care for other abnormalities of pelvic organs", + }, + { + key: "O34.9", + en: "", + de: "Maternal care for abnormality of pelvic organ, unspecified", + }, + { + key: "O35", + en: "", + de: "Maternal care for known or suspected fetal abnormality and damage", + }, + { + key: "O35.0", + en: "", + de: "Maternal care for (suspected) central nervous system malformation in fetus", + }, + { + key: "O35.1", + en: "", + de: "Maternal care for (suspected) chromosomal abnormality in fetus", + }, + { + key: "O35.2", + en: "", + de: "Maternal care for (suspected) hereditary disease in fetus", + }, + { + key: "O35.3", + en: "", + de: "Maternal care for (suspected) damage to fetus from viral disease in mother", + }, + { + key: "O35.4", + en: "", + de: "Maternal care for (suspected) damage to fetus from alcohol", + }, + { + key: "O35.5", + en: "", + de: "Maternal care for (suspected) damage to fetus by drugs", + }, + { + key: "O35.6", + en: "", + de: "Maternal care for (suspected) damage to fetus by radiation", + }, + { + key: "O35.7", + en: "", + de: "Maternal care for (suspected) damage to fetus by other medical procedures", + }, + { + key: "O35.8", + en: "", + de: "Maternal care for other (suspected) fetal abnormality and damage", + }, + { + key: "O35.9", + en: "", + de: "Maternal care for (suspected) fetal abnormality and damage, unspecified", + }, + { + key: "O36", + en: "", + de: "Maternal care for other known or suspected fetal problems", + }, + { + key: "O36.0", + en: "", + de: "Maternal care for rhesus isoimmunization", + }, + { + key: "O36.1", + en: "", + de: "Maternal care for other isoimmunization", + }, + { + key: "O36.2", + en: "", + de: "Maternal care for hydrops fetalis", + }, + { + key: "O36.3", + en: "", + de: "Maternal care for signs of fetal hypoxia", + }, + { + key: "O36.4", + en: "", + de: "Maternal care for intrauterine death", + }, + { + key: "O36.5", + en: "", + de: "Maternal care for poor fetal growth", + }, + { + key: "O36.6", + en: "", + de: "Maternal care for excessive fetal growth", + }, + { + key: "O36.7", + en: "", + de: "Maternal care for viable fetus in abdominal pregnancy", + }, + { + key: "O36.8", + en: "", + de: "Maternal care for other specified fetal problems", + }, + { + key: "O36.9", + en: "", + de: "Maternal care for fetal problem, unspecified", + }, + { + key: "O40", + en: "", + de: "Polyhydramnios", + }, + { + key: "O41", + en: "", + de: "Other disorders of amniotic fluid and membranes", + }, + { + key: "O41.0", + en: "", + de: "Oligohydramnios", + }, + { + key: "O41.1", + en: "", + de: "Infection of amniotic sac and membranes", + }, + { + key: "O41.8", + en: "", + de: "Other specified disorders of amniotic fluid and membranes", + }, + { + key: "O41.9", + en: "", + de: "Disorder of amniotic fluid and membranes, unspecified", + }, + { + key: "O42", + en: "", + de: "Premature rupture of membranes", + }, + { + key: "O42.0", + en: "", + de: "Premature rupture of membranes, onset of labour within 24 hours", + }, + { + key: "O42.1", + en: "", + de: "Premature rupture of membranes, onset of labour after 24 hours", + }, + { + key: "O42.2", + en: "", + de: "Premature rupture of membranes, labour delayed by therapy", + }, + { + key: "O42.9", + en: "", + de: "Premature rupture of membranes, unspecified", + }, + { + key: "O43", + en: "", + de: "Placental disorders", + }, + { + key: "O43.0", + en: "", + de: "Placental transfusion syndromes", + }, + { + key: "O43.1", + en: "", + de: "Malformation of placenta", + }, + { + key: "O43.2", + en: "", + de: "Morbidly adherent placenta", + }, + { + key: "O43.8", + en: "", + de: "Other placental disorders", + }, + { + key: "O43.9", + en: "", + de: "Placental disorder, unspecified", + }, + { + key: "O44", + en: "", + de: "Placenta praevia", + }, + { + key: "O44.0", + en: "", + de: "Placenta praevia specified as without haemorrhage", + }, + { + key: "O44.1", + en: "", + de: "Placenta praevia with haemorrhage", + }, + { + key: "O45", + en: "", + de: "Premature separation of placenta [abruptio placentae]", + }, + { + key: "O45.0", + en: "", + de: "Premature separation of placenta with coagulation defect", + }, + { + key: "O45.8", + en: "", + de: "Other premature separation of placenta", + }, + { + key: "O45.9", + en: "", + de: "Premature separation of placenta, unspecified", + }, + { + key: "O46", + en: "", + de: "Antepartum haemorrhage, not elsewhere classified", + }, + { + key: "O46.0", + en: "", + de: "Antepartum haemorrhage with coagulation defect", + }, + { + key: "O46.8", + en: "", + de: "Other antepartum haemorrhage", + }, + { + key: "O46.9", + en: "", + de: "Antepartum haemorrhage, unspecified", + }, + { + key: "O47", + en: "", + de: "False labour", + }, + { + key: "O47.0", + en: "", + de: "False labour before 37 completed weeks of gestation", + }, + { + key: "O47.1", + en: "", + de: "False labour at or after 37 completed weeks of gestation", + }, + { + key: "O47.9", + en: "", + de: "False labour, unspecified", + }, + { + key: "O48", + en: "", + de: "Prolonged pregnancy", + }, + { + key: "O60", + en: "", + de: "Preterm labour and delivery", + }, + { + key: "O60.0", + en: "", + de: "Preterm labour without delivery", + }, + { + key: "O60.1", + en: "", + de: "Preterm spontaneous labour with preterm delivery", + }, + { + key: "O60.2", + en: "", + de: "Preterm spontaneous labour with term delivery", + }, + { + key: "O60.3", + en: "", + de: "Preterm delivery without spontaneous labour", + }, + { + key: "O61", + en: "", + de: "Failed induction of labour", + }, + { + key: "O61.0", + en: "", + de: "Failed medical induction of labour", + }, + { + key: "O61.1", + en: "", + de: "Failed instrumental induction of labour", + }, + { + key: "O61.8", + en: "", + de: "Other failed induction of labour", + }, + { + key: "O61.9", + en: "", + de: "Failed induction of labour, unspecified", + }, + { + key: "O62", + en: "", + de: "Abnormalities of forces of labour", + }, + { + key: "O62.0", + en: "", + de: "Primary inadequate contractions", + }, + { + key: "O62.1", + en: "", + de: "Secondary uterine inertia", + }, + { + key: "O62.2", + en: "", + de: "Other uterine inertia", + }, + { + key: "O62.3", + en: "", + de: "Precipitate labour", + }, + { + key: "O62.4", + en: "", + de: "Hypertonic, incoordinate, and prolonged uterine contractions", + }, + { + key: "O62.8", + en: "", + de: "Other abnormalities of forces of labour", + }, + { + key: "O62.9", + en: "", + de: "Abnormality of forces of labour, unspecified", + }, + { + key: "O63", + en: "", + de: "Long labour", + }, + { + key: "O63.0", + en: "", + de: "Prolonged first stage (of labour)", + }, + { + key: "O63.1", + en: "", + de: "Prolonged second stage (of labour)", + }, + { + key: "O63.2", + en: "", + de: "Delayed delivery of second twin, triplet, etc.", + }, + { + key: "O63.9", + en: "", + de: "Long labour, unspecified", + }, + { + key: "O64", + en: "", + de: "Obstructed labour due to malposition and malpresentation of fetus", + }, + { + key: "O64.0", + en: "", + de: "Obstructed labour due to incomplete rotation of fetal head", + }, + { + key: "O64.1", + en: "", + de: "Obstructed labour due to breech presentation", + }, + { + key: "O64.2", + en: "", + de: "Obstructed labour due to face presentation", + }, + { + key: "O64.3", + en: "", + de: "Obstructed labour due to brow presentation", + }, + { + key: "O64.4", + en: "", + de: "Obstructed labour due to shoulder presentation", + }, + { + key: "O64.5", + en: "", + de: "Obstructed labour due to compound presentation", + }, + { + key: "O64.8", + en: "", + de: "Obstructed labour due to other malposition and malpresentation", + }, + { + key: "O64.9", + en: "", + de: "Obstructed labour due to malposition and malpresentation, unspecified", + }, + { + key: "O65", + en: "", + de: "Obstructed labour due to maternal pelvic abnormality", + }, + { + key: "O65.0", + en: "", + de: "Obstructed labour due to deformed pelvis", + }, + { + key: "O65.1", + en: "", + de: "Obstructed labour due to generally contracted pelvis", + }, + { + key: "O65.2", + en: "", + de: "Obstructed labour due to pelvic inlet contraction", + }, + { + key: "O65.3", + en: "", + de: "Obstructed labour due to pelvic outlet and mid-cavity contraction", + }, + { + key: "O65.4", + en: "", + de: "Obstructed labour due to fetopelvic disproportion, unspecified", + }, + { + key: "O65.5", + en: "", + de: "Obstructed labour due to abnormality of maternal pelvic organs", + }, + { + key: "O65.8", + en: "", + de: "Obstructed labour due to other maternal pelvic abnormalities", + }, + { + key: "O65.9", + en: "", + de: "Obstructed labour due to maternal pelvic abnormality, unspecified", + }, + { + key: "O66", + en: "", + de: "Other obstructed labour", + }, + { + key: "O66.0", + en: "", + de: "Obstructed labour due to shoulder dystocia", + }, + { + key: "O66.1", + en: "", + de: "Obstructed labour due to locked twins", + }, + { + key: "O66.2", + en: "", + de: "Obstructed labour due to unusually large fetus", + }, + { + key: "O66.3", + en: "", + de: "Obstructed labour due to other abnormalities of fetus", + }, + { + key: "O66.4", + en: "", + de: "Failed trial of labour, unspecified", + }, + { + key: "O66.5", + en: "", + de: "Failed application of vacuum extractor and forceps, unspecified", + }, + { + key: "O66.8", + en: "", + de: "Other specified obstructed labour", + }, + { + key: "O66.9", + en: "", + de: "Obstructed labour, unspecified", + }, + { + key: "O67", + en: "", + de: "Labour and delivery complicated by intrapartum haemorrhage, not elsewhere classified", + }, + { + key: "O67.0", + en: "", + de: "Intrapartum haemorrhage with coagulation defect", + }, + { + key: "O67.8", + en: "", + de: "Other intrapartum haemorrhage", + }, + { + key: "O67.9", + en: "", + de: "Intrapartum haemorrhage, unspecified", + }, + { + key: "O68", + en: "", + de: "Labour and delivery complicated by fetal stress [distress]", + }, + { + key: "O68.0", + en: "", + de: "Labour and delivery complicated by fetal heart rate anomaly", + }, + { + key: "O68.1", + en: "", + de: "Labour and delivery complicated by meconium in amniotic fluid", + }, + { + key: "O68.2", + en: "", + de: "Labour and delivery complicated by fetal heart rate anomaly with meconium in amniotic fluid", + }, + { + key: "O68.3", + en: "", + de: "Labour and delivery complicated by biochemical evidence of fetal stress", + }, + { + key: "O68.8", + en: "", + de: "Labour and delivery complicated by other evidence of fetal stress", + }, + { + key: "O68.9", + en: "", + de: "Labour and delivery complicated by fetal stress, unspecified", + }, + { + key: "O69", + en: "", + de: "Labour and delivery complicated by umbilical cord complications", + }, + { + key: "O69.0", + en: "", + de: "Labour and delivery complicated by prolapse of cord", + }, + { + key: "O69.1", + en: "", + de: "Labour and delivery complicated by cord around neck, with compression", + }, + { + key: "O69.2", + en: "", + de: "Labour and delivery complicated by other cord entanglement, with compression", + }, + { + key: "O69.3", + en: "", + de: "Labour and delivery complicated by short cord", + }, + { + key: "O69.4", + en: "", + de: "Labour and delivery complicated by vasa praevia", + }, + { + key: "O69.5", + en: "", + de: "Labour and delivery complicated by vascular lesion of cord", + }, + { + key: "O69.8", + en: "", + de: "Labour and delivery complicated by other cord complications", + }, + { + key: "O69.9", + en: "", + de: "Labour and delivery complicated by cord complication, unspecified", + }, + { + key: "O70", + en: "", + de: "Perineal laceration during delivery", + }, + { + key: "O70.0", + en: "", + de: "First degree perineal laceration during delivery", + }, + { + key: "O70.1", + en: "", + de: "Second degree perineal laceration during delivery", + }, + { + key: "O70.2", + en: "", + de: "Third degree perineal laceration during delivery", + }, + { + key: "O70.3", + en: "", + de: "Fourth degree perineal laceration during delivery", + }, + { + key: "O70.9", + en: "", + de: "Perineal laceration during delivery, unspecified", + }, + { + key: "O71", + en: "", + de: "Other obstetric trauma", + }, + { + key: "O71.0", + en: "", + de: "Rupture of uterus before onset of labour", + }, + { + key: "O71.1", + en: "", + de: "Rupture of uterus during labour", + }, + { + key: "O71.2", + en: "", + de: "Postpartum inversion of uterus", + }, + { + key: "O71.3", + en: "", + de: "Obstetric laceration of cervix", + }, + { + key: "O71.4", + en: "", + de: "Obstetric high vaginal laceration", + }, + { + key: "O71.5", + en: "", + de: "Other obstetric injury to pelvic organs", + }, + { + key: "O71.6", + en: "", + de: "Obstetric damage to pelvic joints and ligaments", + }, + { + key: "O71.7", + en: "", + de: "Obstetric haematoma of pelvis", + }, + { + key: "O71.8", + en: "", + de: "Other specified obstetric trauma", + }, + { + key: "O71.9", + en: "", + de: "Obstetric trauma, unspecified", + }, + { + key: "O72", + en: "", + de: "Postpartum haemorrhage", + }, + { + key: "O72.0", + en: "", + de: "Third-stage haemorrhage", + }, + { + key: "O72.1", + en: "", + de: "Other immediate postpartum haemorrhage", + }, + { + key: "O72.2", + en: "", + de: "Delayed and secondary postpartum haemorrhage", + }, + { + key: "O72.3", + en: "", + de: "Postpartum coagulation defects", + }, + { + key: "O73", + en: "", + de: "Retained placenta and membranes, without haemorrhage", + }, + { + key: "O73.0", + en: "", + de: "Retained placenta without haemorrhage", + }, + { + key: "O73.1", + en: "", + de: "Retained portions of placenta and membranes, without haemorrhage", + }, + { + key: "O74", + en: "", + de: "Complications of anaesthesia during labour and delivery", + }, + { + key: "O74.0", + en: "", + de: "Aspiration pneumonitis due to anaesthesia during labour and delivery", + }, + { + key: "O74.1", + en: "", + de: "Other pulmonary complications of anaesthesia during labour and delivery", + }, + { + key: "O74.2", + en: "", + de: "Cardiac complications of anaesthesia during labour and delivery", + }, + { + key: "O74.3", + en: "", + de: "Central nervous system complications of anaesthesia during labour and delivery", + }, + { + key: "O74.4", + en: "", + de: "Toxic reaction to local anaesthesia during labour and delivery", + }, + { + key: "O74.5", + en: "", + de: "Spinal and epidural anaesthesia-induced headache during labour and delivery", + }, + { + key: "O74.6", + en: "", + de: "Other complications of spinal and epidural anaesthesia during labour and delivery", + }, + { + key: "O74.7", + en: "", + de: "Failed or difficult intubation during labour and delivery", + }, + { + key: "O74.8", + en: "", + de: "Other complications of anaesthesia during labour and delivery", + }, + { + key: "O74.9", + en: "", + de: "Complication of anaesthesia during labour and delivery, unspecified", + }, + { + key: "O75", + en: "", + de: "Other complications of labour and delivery, not elsewhere classified", + }, + { + key: "O75.0", + en: "", + de: "Maternal distress during labour and delivery", + }, + { + key: "O75.1", + en: "", + de: "Shock during or following labour and delivery", + }, + { + key: "O75.2", + en: "", + de: "Pyrexia during labour, not elsewhere classified", + }, + { + key: "O75.3", + en: "", + de: "Other infection during labour", + }, + { + key: "O75.4", + en: "", + de: "Other complications of obstetric surgery and procedures", + }, + { + key: "O75.5", + en: "", + de: "Delayed delivery after artificial rupture of membranes", + }, + { + key: "O75.6", + en: "", + de: "Delayed delivery after spontaneous or unspecified rupture of membranes", + }, + { + key: "O75.7", + en: "", + de: "Vaginal delivery following previous caesarean section", + }, + { + key: "O75.8", + en: "", + de: "Other specified complications of labour and delivery", + }, + { + key: "O75.9", + en: "", + de: "Complication of labour and delivery, unspecified", + }, + { + key: "O80", + en: "", + de: "Single spontaneous delivery", + }, + { + key: "O81", + en: "", + de: "Single delivery by forceps and vacuum extractor", + }, + { + key: "O82", + en: "", + de: "Single delivery by caesarean section", + }, + { + key: "O85", + en: "", + de: "Puerperal sepsis", + }, + { + key: "O86", + en: "", + de: "Other puerperal infections", + }, + { + key: "O86.0", + en: "", + de: "Infection of obstetric surgical wound", + }, + { + key: "O86.1", + en: "", + de: "Other infection of genital tract following delivery", + }, + { + key: "O86.2", + en: "", + de: "Urinary tract infection following delivery", + }, + { + key: "O86.3", + en: "", + de: "Other genitourinary tract infections following delivery", + }, + { + key: "O86.4", + en: "", + de: "Pyrexia of unknown origin following delivery", + }, + { + key: "O86.8", + en: "", + de: "Other specified puerperal infections", + }, + { + key: "O87", + en: "", + de: "Venous complications and haemorrhoids in the puerperium", + }, + { + key: "O87.0", + en: "", + de: "Superficial thrombophlebitis in the puerperium", + }, + { + key: "O87.1", + en: "", + de: "Deep phlebothrombosis in the puerperium", + }, + { + key: "O87.2", + en: "", + de: "Haemorrhoids in the puerperium", + }, + { + key: "O87.3", + en: "", + de: "Cerebral venous thrombosis in the puerperium", + }, + { + key: "O87.8", + en: "", + de: "Other venous complications in the puerperium", + }, + { + key: "O87.9", + en: "", + de: "Venous complication in the puerperium, unspecified", + }, + { + key: "O88", + en: "", + de: "Obstetric embolism", + }, + { + key: "O88.0", + en: "", + de: "Obstetric air embolism", + }, + { + key: "O88.1", + en: "", + de: "Amniotic fluid embolism", + }, + { + key: "O88.2", + en: "", + de: "Obstetric blood-clot embolism", + }, + { + key: "O88.3", + en: "", + de: "Obstetric pyaemic and septic embolism", + }, + { + key: "O88.8", + en: "", + de: "Other obstetric embolism", + }, + { + key: "O89", + en: "", + de: "Complications of anaesthesia during the puerperium", + }, + { + key: "O89.0", + en: "", + de: "Pulmonary complications of anaesthesia during the puerperium", + }, + { + key: "O89.1", + en: "", + de: "Cardiac complications of anaesthesia during the puerperium", + }, + { + key: "O89.2", + en: "", + de: "Central nervous system complications of anaesthesia during the puerperium", + }, + { + key: "O89.3", + en: "", + de: "Toxic reaction to local anaesthesia during the puerperium", + }, + { + key: "O89.4", + en: "", + de: "Spinal and epidural anaesthesia-induced headache during the puerperium", + }, + { + key: "O89.5", + en: "", + de: "Other complications of spinal and epidural anaesthesia during the puerperium", + }, + { + key: "O89.6", + en: "", + de: "Failed or difficult intubation during the puerperium", + }, + { + key: "O89.8", + en: "", + de: "Other complications of anaesthesia during the puerperium", + }, + { + key: "O89.9", + en: "", + de: "Complication of anaesthesia during the puerperium, unspecified", + }, + { + key: "O90", + en: "", + de: "Complications of the puerperium, not elsewhere classified", + }, + { + key: "O90.0", + en: "", + de: "Disruption of caesarean section wound", + }, + { + key: "O90.1", + en: "", + de: "Disruption of perineal obstetric wound", + }, + { + key: "O90.2", + en: "", + de: "Haematoma of obstetric wound", + }, + { + key: "O90.3", + en: "", + de: "Cardiomyopathy in the puerperium", + }, + { + key: "O90.4", + en: "", + de: "Postpartum acute renal failure", + }, + { + key: "O90.5", + en: "", + de: "Postpartum thyroiditis", + }, + { + key: "O90.8", + en: "", + de: "Other complications of the puerperium, not elsewhere classified", + }, + { + key: "O90.9", + en: "", + de: "Complication of the puerperium, unspecified", + }, + { + key: "O91", + en: "", + de: "Infections of breast associated with childbirth", + }, + { + key: "O91.0", + en: "", + de: "Infection of nipple associated with childbirth", + }, + { + key: "O91.1", + en: "", + de: "Abscess of breast associated with childbirth", + }, + { + key: "O91.2", + en: "", + de: "Nonpurulent mastitis associated with childbirth", + }, + { + key: "O92", + en: "", + de: "Other disorders of breast and lactation associated with childbirth", + }, + { + key: "O92.0", + en: "", + de: "Retracted nipple associated with childbirth", + }, + { + key: "O92.1", + en: "", + de: "Cracked nipple associated with childbirth", + }, + { + key: "O92.2", + en: "", + de: "Other and unspecified disorders of breast associated with childbirth", + }, + { + key: "O92.3", + en: "", + de: "Agalactia", + }, + { + key: "O92.4", + en: "", + de: "Hypogalactia", + }, + { + key: "O92.5", + en: "", + de: "Suppressed lactation", + }, + { + key: "O92.6", + en: "", + de: "Galactorrhoea", + }, + { + key: "O92.7", + en: "", + de: "Other and unspecified disorders of lactation", + }, + { + key: "O94", + en: "", + de: "Sequelae of complication of pregnancy, childbirth and the puerperium", + }, + { + key: "O95", + en: "", + de: "Obstetric death of unspecified cause", + }, + { + key: "O96", + en: "", + de: "Death from any obstetric cause occurring more than 42 days but less than one year after delivery", + }, + { + key: "O96.0", + en: "", + de: "Death from direct obstetric cause occurring more than 42 days but less than one year after delivery", + }, + { + key: "O96.1", + en: "", + de: "Death from indirect obstetric cause occurring more than 42 days but less than one year after delivery", + }, + { + key: "O96.9", + en: "", + de: "Death from unspecified obstetric cause occurring more than 42 days but less than one year after delivery", + }, + { + key: "O97", + en: "", + de: "Death from sequelae of obstetric causes", + }, + { + key: "O97.0", + en: "", + de: "Death from sequelae of direct obstetric cause", + }, + { + key: "O97.1", + en: "", + de: "Death from sequelae of indirect obstetric cause", + }, + { + key: "O97.9", + en: "", + de: "Death from sequelae of obstetric cause, unspecified", + }, + { + key: "O98", + en: "", + de: "Maternal infectious and parasitic diseases classifiable elsewhere but complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O98.0", + en: "", + de: "Tuberculosis complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O98.1", + en: "", + de: "Syphilis complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O98.2", + en: "", + de: "Gonorrhoea complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O98.3", + en: "", + de: "Other infections with a predominantly sexual mode of transmission complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O98.4", + en: "", + de: "Viral hepatitis complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O98.5", + en: "", + de: "Other viral diseases complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O98.6", + en: "", + de: "Protozoal diseases complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O98.7", + en: "", + de: "Human immunodeficiency virus [HIV] disease complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O98.8", + en: "", + de: "Other maternal infectious and parasitic diseases complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O98.9", + en: "", + de: "Unspecified maternal infectious or parasitic disease complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O99", + en: "", + de: "Other maternal diseases classifiable elsewhere but complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O99.0", + en: "", + de: "Anaemia complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O99.1", + en: "", + de: "Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O99.2", + en: "", + de: "Endocrine, nutritional and metabolic diseases complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O99.3", + en: "", + de: "Mental disorders and diseases of the nervous system complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O99.4", + en: "", + de: "Diseases of the circulatory system complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O99.5", + en: "", + de: "Diseases of the respiratory system complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O99.6", + en: "", + de: "Diseases of the digestive system complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O99.7", + en: "", + de: "Diseases of the skin and subcutaneous tissue complicating pregnancy, childbirth and the puerperium", + }, + { + key: "O99.8", + en: "", + de: "Other specified diseases and conditions complicating pregnancy, childbirth and the puerperium", + }, + { + key: "P00", + en: "", + de: "Fetus and newborn affected by maternal conditions that may be unrelated to present pregnancy", + }, + { + key: "P00.0", + en: "", + de: "Fetus and newborn affected by maternal hypertensive disorders", + }, + { + key: "P00.1", + en: "", + de: "Fetus and newborn affected by maternal renal and urinary tract diseases", + }, + { + key: "P00.2", + en: "", + de: "Fetus and newborn affected by maternal infectious and parasitic diseases", + }, + { + key: "P00.3", + en: "", + de: "Fetus and newborn affected by other maternal circulatory and respiratory diseases", + }, + { + key: "P00.4", + en: "", + de: "Fetus and newborn affected by maternal nutritional disorders", + }, + { + key: "P00.5", + en: "", + de: "Fetus and newborn affected by maternal injury", + }, + { + key: "P00.6", + en: "", + de: "Fetus and newborn affected by surgical procedure on mother", + }, + { + key: "P00.7", + en: "", + de: "Fetus and newborn affected by other medical procedures on mother, not elsewhere classified", + }, + { + key: "P00.8", + en: "", + de: "Fetus and newborn affected by other maternal conditions", + }, + { + key: "P00.9", + en: "", + de: "Fetus and newborn affected by unspecified maternal condition", + }, + { + key: "P01", + en: "", + de: "Fetus and newborn affected by maternal complications of pregnancy", + }, + { + key: "P01.0", + en: "", + de: "Fetus and newborn affected by incompetent cervix", + }, + { + key: "P01.1", + en: "", + de: "Fetus and newborn affected by premature rupture of membranes", + }, + { + key: "P01.2", + en: "", + de: "Fetus and newborn affected by oligohydramnios", + }, + { + key: "P01.3", + en: "", + de: "Fetus and newborn affected by polyhydramnios", + }, + { + key: "P01.4", + en: "", + de: "Fetus and newborn affected by ectopic pregnancy", + }, + { + key: "P01.5", + en: "", + de: "Fetus and newborn affected by multiple pregnancy", + }, + { + key: "P01.6", + en: "", + de: "Fetus and newborn affected by maternal death", + }, + { + key: "P01.7", + en: "", + de: "Fetus and newborn affected by malpresentation before labour", + }, + { + key: "P01.8", + en: "", + de: "Fetus and newborn affected by other maternal complications of pregnancy", + }, + { + key: "P01.9", + en: "", + de: "Fetus and newborn affected by maternal complication of pregnancy, unspecified", + }, + { + key: "P02", + en: "", + de: "Fetus and newborn affected by complications of placenta, cord and membranes", + }, + { + key: "P02.0", + en: "", + de: "Fetus and newborn affected by placenta praevia", + }, + { + key: "P02.1", + en: "", + de: "Fetus and newborn affected by other forms of placental separation and haemorrhage", + }, + { + key: "P02.2", + en: "", + de: "Fetus and newborn affected by other and unspecified morphological and functional abnormalities of placenta", + }, + { + key: "P02.3", + en: "", + de: "Fetus and newborn affected by placental transfusion syndromes", + }, + { + key: "P02.4", + en: "", + de: "Fetus and newborn affected by prolapsed cord", + }, + { + key: "P02.5", + en: "", + de: "Fetus and newborn affected by other compression of umbilical cord", + }, + { + key: "P02.6", + en: "", + de: "Fetus and newborn affected by other and unspecified conditions of umbilical cord", + }, + { + key: "P02.7", + en: "", + de: "Fetus and newborn affected by chorioamnionitis", + }, + { + key: "P02.8", + en: "", + de: "Fetus and newborn affected by other abnormalities of membranes", + }, + { + key: "P02.9", + en: "", + de: "Fetus and newborn affected by abnormality of membranes, unspecified", + }, + { + key: "P03", + en: "", + de: "Fetus and newborn affected by other complications of labour and delivery", + }, + { + key: "P03.0", + en: "", + de: "Fetus and newborn affected by breech delivery and extraction", + }, + { + key: "P03.1", + en: "", + de: "Fetus and newborn affected by other malpresentation, malposition and disproportion during labour and delivery", + }, + { + key: "P03.2", + en: "", + de: "Fetus and newborn affected by forceps delivery", + }, + { + key: "P03.3", + en: "", + de: "Fetus and newborn affected by delivery by vacuum extractor [ventouse]", + }, + { + key: "P03.4", + en: "", + de: "Fetus and newborn affected by caesarean delivery", + }, + { + key: "P03.5", + en: "", + de: "Fetus and newborn affected by precipitate delivery", + }, + { + key: "P03.6", + en: "", + de: "Fetus and newborn affected by abnormal uterine contractions", + }, + { + key: "P03.8", + en: "", + de: "Fetus and newborn affected by other specified complications of labour and delivery", + }, + { + key: "P03.9", + en: "", + de: "Fetus and newborn affected by complication of labour and delivery, unspecified", + }, + { + key: "P04", + en: "", + de: "Fetus and newborn affected by noxious influences transmitted via placenta or breast milk", + }, + { + key: "P04.0", + en: "", + de: "Fetus and newborn affected by maternal anaesthesia and analgesia in pregnancy, labour and delivery", + }, + { + key: "P04.1", + en: "", + de: "Fetus and newborn affected by other maternal medication", + }, + { + key: "P04.2", + en: "", + de: "Fetus and newborn affected by maternal use of tobacco", + }, + { + key: "P04.3", + en: "", + de: "Fetus and newborn affected by maternal use of alcohol", + }, + { + key: "P04.4", + en: "", + de: "Fetus and newborn affected by maternal use of drugs of addiction", + }, + { + key: "P04.5", + en: "", + de: "Fetus and newborn affected by maternal use of nutritional chemical substances", + }, + { + key: "P04.6", + en: "", + de: "Fetus and newborn affected by maternal exposure to environmental chemical substances", + }, + { + key: "P04.8", + en: "", + de: "Fetus and newborn affected by other maternal noxious influences", + }, + { + key: "P04.9", + en: "", + de: "Fetus and newborn affected by maternal noxious influence, unspecified", + }, + { + key: "P05", + en: "", + de: "Slow fetal growth and fetal malnutrition", + }, + { + key: "P05.0", + en: "", + de: "Light for gestational age", + }, + { + key: "P05.1", + en: "", + de: "Small for gestational age", + }, + { + key: "P05.2", + en: "", + de: "Fetal malnutrition without mention of light or small for gestational age", + }, + { + key: "P05.9", + en: "", + de: "Slow fetal growth, unspecified", + }, + { + key: "P07", + en: "", + de: "Disorders related to short gestation and low birth weight, not elsewhere classified", + }, + { + key: "P07.0", + en: "", + de: "Extremely low birth weight", + }, + { + key: "P07.1", + en: "", + de: "Other low birth weight", + }, + { + key: "P07.2", + en: "", + de: "Extreme immaturity", + }, + { + key: "P07.3", + en: "", + de: "Other preterm infants", + }, + { + key: "P08", + en: "", + de: "Disorders related to long gestation and high birth weight", + }, + { + key: "P08.0", + en: "", + de: "Exceptionally large baby", + }, + { + key: "P08.1", + en: "", + de: "Other heavy for gestational age infants", + }, + { + key: "P08.2", + en: "", + de: "Post-term infant, not heavy for gestational age", + }, + { + key: "P10", + en: "", + de: "Intracranial laceration and haemorrhage due to birth injury", + }, + { + key: "P10.0", + en: "", + de: "Subdural haemorrhage due to birth injury", + }, + { + key: "P10.1", + en: "", + de: "Cerebral haemorrhage due to birth injury", + }, + { + key: "P10.2", + en: "", + de: "Intraventricular haemorrhage due to birth injury", + }, + { + key: "P10.3", + en: "", + de: "Subarachnoid haemorrhage due to birth injury", + }, + { + key: "P10.4", + en: "", + de: "Tentorial tear due to birth injury", + }, + { + key: "P10.8", + en: "", + de: "Other intracranial lacerations and haemorrhages due to birth injury", + }, + { + key: "P10.9", + en: "", + de: "Unspecified intracranial laceration and haemorrhage due to birth injury", + }, + { + key: "P11", + en: "", + de: "Other birth injuries to central nervous system", + }, + { + key: "P11.0", + en: "", + de: "Cerebral oedema due to birth injury", + }, + { + key: "P11.1", + en: "", + de: "Other specified brain damage due to birth injury", + }, + { + key: "P11.2", + en: "", + de: "Unspecified brain damage due to birth injury", + }, + { + key: "P11.3", + en: "", + de: "Birth injury to facial nerve", + }, + { + key: "P11.4", + en: "", + de: "Birth injury to other cranial nerves", + }, + { + key: "P11.5", + en: "", + de: "Birth injury to spine and spinal cord", + }, + { + key: "P11.9", + en: "", + de: "Birth injury to central nervous system, unspecified", + }, + { + key: "P12", + en: "", + de: "Birth injury to scalp", + }, + { + key: "P12.0", + en: "", + de: "Cephalhaematoma due to birth injury", + }, + { + key: "P12.1", + en: "", + de: "Chignon due to birth injury", + }, + { + key: "P12.2", + en: "", + de: "Epicranial subaponeurotic haemorrhage due to birth injury", + }, + { + key: "P12.3", + en: "", + de: "Bruising of scalp due to birth injury", + }, + { + key: "P12.4", + en: "", + de: "Monitoring injury of scalp of newborn", + }, + { + key: "P12.8", + en: "", + de: "Other birth injuries to scalp", + }, + { + key: "P12.9", + en: "", + de: "Birth injury to scalp, unspecified", + }, + { + key: "P13", + en: "", + de: "Birth injury to skeleton", + }, + { + key: "P13.0", + en: "", + de: "Fracture of skull due to birth injury", + }, + { + key: "P13.1", + en: "", + de: "Other birth injuries to skull", + }, + { + key: "P13.2", + en: "", + de: "Birth injury to femur", + }, + { + key: "P13.3", + en: "", + de: "Birth injury to other long bones", + }, + { + key: "P13.4", + en: "", + de: "Fracture of clavicle due to birth injury", + }, + { + key: "P13.8", + en: "", + de: "Birth injuries to other parts of skeleton", + }, + { + key: "P13.9", + en: "", + de: "Birth injury to skeleton, unspecified", + }, + { + key: "P14", + en: "", + de: "Birth injury to peripheral nervous system", + }, + { + key: "P14.0", + en: "", + de: "Erb paralysis due to birth injury", + }, + { + key: "P14.1", + en: "", + de: "Klumpke paralysis due to birth injury", + }, + { + key: "P14.2", + en: "", + de: "Phrenic nerve paralysis due to birth injury", + }, + { + key: "P14.3", + en: "", + de: "Other brachial plexus birth injuries", + }, + { + key: "P14.8", + en: "", + de: "Birth injuries to other parts of peripheral nervous system", + }, + { + key: "P14.9", + en: "", + de: "Birth injury to peripheral nervous system, unspecified", + }, + { + key: "P15", + en: "", + de: "Other birth injuries", + }, + { + key: "P15.0", + en: "", + de: "Birth injury to liver", + }, + { + key: "P15.1", + en: "", + de: "Birth injury to spleen", + }, + { + key: "P15.2", + en: "", + de: "Sternomastoid injury due to birth injury", + }, + { + key: "P15.3", + en: "", + de: "Birth injury to eye", + }, + { + key: "P15.4", + en: "", + de: "Birth injury to face", + }, + { + key: "P15.5", + en: "", + de: "Birth injury to external genitalia", + }, + { + key: "P15.6", + en: "", + de: "Subcutaneous fat necrosis due to birth injury", + }, + { + key: "P15.8", + en: "", + de: "Other specified birth injuries", + }, + { + key: "P15.9", + en: "", + de: "Birth injury, unspecified", + }, + { + key: "P20", + en: "", + de: "Intrauterine hypoxia", + }, + { + key: "P20.0", + en: "", + de: "Intrauterine hypoxia first noted before onset of labour", + }, + { + key: "P20.1", + en: "", + de: "Intrauterine hypoxia first noted during labour and delivery", + }, + { + key: "P20.9", + en: "", + de: "Intrauterine hypoxia, unspecified", + }, + { + key: "P21", + en: "", + de: "Birth asphyxia", + }, + { + key: "P21.0", + en: "", + de: "Severe birth asphyxia", + }, + { + key: "P21.1", + en: "", + de: "Mild and moderate birth asphyxia", + }, + { + key: "P21.9", + en: "", + de: "Birth asphyxia, unspecified", + }, + { + key: "P22", + en: "", + de: "Respiratory distress of newborn", + }, + { + key: "P22.0", + en: "", + de: "Respiratory distress syndrome of newborn", + }, + { + key: "P22.1", + en: "", + de: "Transient tachypnoea of newborn", + }, + { + key: "P22.8", + en: "", + de: "Other respiratory distress of newborn", + }, + { + key: "P22.9", + en: "", + de: "Respiratory distress of newborn, unspecified", + }, + { + key: "P23", + en: "", + de: "Congenital pneumonia", + }, + { + key: "P23.0", + en: "", + de: "Congenital pneumonia due to viral agent", + }, + { + key: "P23.1", + en: "", + de: "Congenital pneumonia due to Chlamydia", + }, + { + key: "P23.2", + en: "", + de: "Congenital pneumonia due to staphylococcus", + }, + { + key: "P23.3", + en: "", + de: "Congenital pneumonia due to streptococcus, group B", + }, + { + key: "P23.4", + en: "", + de: "Congenital pneumonia due to Escherichia coli", + }, + { + key: "P23.5", + en: "", + de: "Congenital pneumonia due to Pseudomonas", + }, + { + key: "P23.6", + en: "", + de: "Congenital pneumonia due to other bacterial agents", + }, + { + key: "P23.8", + en: "", + de: "Congenital pneumonia due to other organisms", + }, + { + key: "P23.9", + en: "", + de: "Congenital pneumonia, unspecified", + }, + { + key: "P24", + en: "", + de: "Neonatal aspiration syndromes", + }, + { + key: "P24.0", + en: "", + de: "Neonatal aspiration of meconium", + }, + { + key: "P24.1", + en: "", + de: "Neonatal aspiration of amniotic fluid and mucus", + }, + { + key: "P24.2", + en: "", + de: "Neonatal aspiration of blood", + }, + { + key: "P24.3", + en: "", + de: "Neonatal aspiration of milk and regurgitated food", + }, + { + key: "P24.8", + en: "", + de: "Other neonatal aspiration syndromes", + }, + { + key: "P24.9", + en: "", + de: "Neonatal aspiration syndrome, unspecified", + }, + { + key: "P25", + en: "", + de: "Interstitial emphysema and related conditions originating in the perinatal period", + }, + { + key: "P25.0", + en: "", + de: "Interstitial emphysema originating in the perinatal period", + }, + { + key: "P25.1", + en: "", + de: "Pneumothorax originating in the perinatal period", + }, + { + key: "P25.2", + en: "", + de: "Pneumomediastinum originating in the perinatal period", + }, + { + key: "P25.3", + en: "", + de: "Pneumopericardium originating in the perinatal period", + }, + { + key: "P25.8", + en: "", + de: "Other conditions related to interstitial emphysema originating in the perinatal period", + }, + { + key: "P26", + en: "", + de: "Pulmonary haemorrhage originating in the perinatal period", + }, + { + key: "P26.0", + en: "", + de: "Tracheobronchial haemorrhage originating in the perinatal period", + }, + { + key: "P26.1", + en: "", + de: "Massive pulmonary haemorrhage originating in the perinatal period", + }, + { + key: "P26.8", + en: "", + de: "Other pulmonary haemorrhages originating in the perinatal period", + }, + { + key: "P26.9", + en: "", + de: "Unspecified pulmonary haemorrhage originating in the perinatal period", + }, + { + key: "P27", + en: "", + de: "Chronic respiratory disease originating in the perinatal period", + }, + { + key: "P27.0", + en: "", + de: "Wilson-Mikity syndrome", + }, + { + key: "P27.1", + en: "", + de: "Bronchopulmonary dysplasia originating in the perinatal period", + }, + { + key: "P27.8", + en: "", + de: "Other chronic respiratory diseases originating in the perinatal period", + }, + { + key: "P27.9", + en: "", + de: "Unspecified chronic respiratory disease originating in the perinatal period", + }, + { + key: "P28", + en: "", + de: "Other respiratory conditions originating in the perinatal period", + }, + { + key: "P28.0", + en: "", + de: "Primary atelectasis of newborn", + }, + { + key: "P28.1", + en: "", + de: "Other and unspecified atelectasis of newborn", + }, + { + key: "P28.2", + en: "", + de: "Cyanotic attacks of newborn", + }, + { + key: "P28.3", + en: "", + de: "Primary sleep apnoea of newborn", + }, + { + key: "P28.4", + en: "", + de: "Other apnoea of newborn", + }, + { + key: "P28.5", + en: "", + de: "Respiratory failure of newborn", + }, + { + key: "P28.8", + en: "", + de: "Other specified respiratory conditions of newborn", + }, + { + key: "P28.9", + en: "", + de: "Respiratory condition of newborn, unspecified", + }, + { + key: "P29", + en: "", + de: "Cardiovascular disorders originating in the perinatal period", + }, + { + key: "P29.0", + en: "", + de: "Neonatal cardiac failure", + }, + { + key: "P29.1", + en: "", + de: "Neonatal cardiac dysrhythmia", + }, + { + key: "P29.2", + en: "", + de: "Neonatal hypertension", + }, + { + key: "P29.3", + en: "", + de: "Persistent fetal circulation", + }, + { + key: "P29.4", + en: "", + de: "Transient myocardial ischaemia of newborn", + }, + { + key: "P29.8", + en: "", + de: "Other cardiovascular disorders originating in the perinatal period", + }, + { + key: "P29.9", + en: "", + de: "Cardiovascular disorder originating in the perinatal period, unspecified", + }, + { + key: "P35", + en: "", + de: "Congenital viral diseases", + }, + { + key: "P35.0", + en: "", + de: "Congenital rubella syndrome", + }, + { + key: "P35.1", + en: "", + de: "Congenital cytomegalovirus infection", + }, + { + key: "P35.2", + en: "", + de: "Congenital herpesviral [herpes simplex] infection", + }, + { + key: "P35.3", + en: "", + de: "Congenital viral hepatitis", + }, + { + key: "P35.4", + en: "", + de: "Congenital Zika virus disease", + }, + { + key: "P35.8", + en: "", + de: "Other congenital viral diseases", + }, + { + key: "P35.9", + en: "", + de: "Congenital viral disease, unspecified", + }, + { + key: "P36", + en: "", + de: "Bacterial sepsis of newborn", + }, + { + key: "P36.0", + en: "", + de: "Sepsis of newborn due to streptococcus, group B", + }, + { + key: "P36.1", + en: "", + de: "Sepsis of newborn due to other and unspecified streptococci", + }, + { + key: "P36.2", + en: "", + de: "Sepsis of newborn due to Staphylococcus aureus", + }, + { + key: "P36.3", + en: "", + de: "Sepsis of newborn due to other and unspecified staphylococci", + }, + { + key: "P36.4", + en: "", + de: "Sepsis of newborn due to Escherichia coli", + }, + { + key: "P36.5", + en: "", + de: "Sepsis of newborn due to anaerobes", + }, + { + key: "P36.8", + en: "", + de: "Other bacterial sepsis of newborn", + }, + { + key: "P36.9", + en: "", + de: "Bacterial sepsis of newborn, unspecified", + }, + { + key: "P37", + en: "", + de: "Other congenital infectious and parasitic diseases", + }, + { + key: "P37.0", + en: "", + de: "Congenital tuberculosis", + }, + { + key: "P37.1", + en: "", + de: "Congenital toxoplasmosis", + }, + { + key: "P37.2", + en: "", + de: "Neonatal (disseminated) listeriosis", + }, + { + key: "P37.3", + en: "", + de: "Congenital falciparum malaria", + }, + { + key: "P37.4", + en: "", + de: "Other congenital malaria", + }, + { + key: "P37.5", + en: "", + de: "Neonatal candidiasis", + }, + { + key: "P37.8", + en: "", + de: "Other specified congenital infectious and parasitic diseases", + }, + { + key: "P37.9", + en: "", + de: "Congenital infectious and parasitic disease, unspecified", + }, + { + key: "P38", + en: "", + de: "Omphalitis of newborn with or without mild haemorrhage", + }, + { + key: "P39", + en: "", + de: "Other infections specific to the perinatal period", + }, + { + key: "P39.0", + en: "", + de: "Neonatal infective mastitis", + }, + { + key: "P39.1", + en: "", + de: "Neonatal conjunctivitis and dacryocystitis", + }, + { + key: "P39.2", + en: "", + de: "Intra-amniotic infection of fetus, not elsewhere classified", + }, + { + key: "P39.3", + en: "", + de: "Neonatal urinary tract infection", + }, + { + key: "P39.4", + en: "", + de: "Neonatal skin infection", + }, + { + key: "P39.8", + en: "", + de: "Other specified infections specific to the perinatal period", + }, + { + key: "P39.9", + en: "", + de: "Infection specific to the perinatal period, unspecified", + }, + { + key: "P50", + en: "", + de: "Fetal blood loss", + }, + { + key: "P50.0", + en: "", + de: "Fetal blood loss from vasa praevia", + }, + { + key: "P50.1", + en: "", + de: "Fetal blood loss from ruptured cord", + }, + { + key: "P50.2", + en: "", + de: "Fetal blood loss from placenta", + }, + { + key: "P50.3", + en: "", + de: "Haemorrhage into co-twin", + }, + { + key: "P50.4", + en: "", + de: "Haemorrhage into maternal circulation", + }, + { + key: "P50.5", + en: "", + de: "Fetal blood loss from cut end of co-twin's cord", + }, + { + key: "P50.8", + en: "", + de: "Other fetal blood loss", + }, + { + key: "P50.9", + en: "", + de: "Fetal blood loss, unspecified", + }, + { + key: "P51", + en: "", + de: "Umbilical haemorrhage of newborn", + }, + { + key: "P51.0", + en: "", + de: "Massive umbilical haemorrhage of newborn", + }, + { + key: "P51.8", + en: "", + de: "Other umbilical haemorrhages of newborn", + }, + { + key: "P51.9", + en: "", + de: "Umbilical haemorrhage of newborn, unspecified", + }, + { + key: "P52", + en: "", + de: "Intracranial nontraumatic haemorrhage of fetus and newborn", + }, + { + key: "P52.0", + en: "", + de: "Intraventricular (nontraumatic) haemorrhage, grade 1, of fetus and newborn", + }, + { + key: "P52.1", + en: "", + de: "Intraventricular (nontraumatic) haemorrhage, grade 2, of fetus and newborn", + }, + { + key: "P52.2", + en: "", + de: "Intraventricular (nontraumatic) haemorrhage, grade 3, and grade 4 of fetus and newborn", + }, + { + key: "P52.3", + en: "", + de: "Unspecified intraventricular (nontraumatic) haemorrhage of fetus and newborn", + }, + { + key: "P52.4", + en: "", + de: "Intracerebral (nontraumatic) haemorrhage of fetus and newborn", + }, + { + key: "P52.5", + en: "", + de: "Subarachnoid (nontraumatic) haemorrhage of fetus and newborn", + }, + { + key: "P52.6", + en: "", + de: "Cerebellar (nontraumatic) and posterior fossa haemorrhage of fetus and newborn", + }, + { + key: "P52.8", + en: "", + de: "Other intracranial (nontraumatic) haemorrhages of fetus and newborn", + }, + { + key: "P52.9", + en: "", + de: "Intracranial (nontraumatic) haemorrhage of fetus and newborn, unspecified", + }, + { + key: "P53", + en: "", + de: "Haemorrhagic disease of fetus and newborn", + }, + { + key: "P54", + en: "", + de: "Other neonatal haemorrhages", + }, + { + key: "P54.0", + en: "", + de: "Neonatal haematemesis", + }, + { + key: "P54.1", + en: "", + de: "Neonatal melaena", + }, + { + key: "P54.2", + en: "", + de: "Neonatal rectal haemorrhage", + }, + { + key: "P54.3", + en: "", + de: "Other neonatal gastrointestinal haemorrhage", + }, + { + key: "P54.4", + en: "", + de: "Neonatal adrenal haemorrhage", + }, + { + key: "P54.5", + en: "", + de: "Neonatal cutaneous haemorrhage", + }, + { + key: "P54.6", + en: "", + de: "Neonatal vaginal haemorrhage", + }, + { + key: "P54.8", + en: "", + de: "Other specified neonatal haemorrhages", + }, + { + key: "P54.9", + en: "", + de: "Neonatal haemorrhage, unspecified", + }, + { + key: "P55", + en: "", + de: "Haemolytic disease of fetus and newborn", + }, + { + key: "P55.0", + en: "", + de: "Rh isoimmunization of fetus and newborn", + }, + { + key: "P55.1", + en: "", + de: "ABO isoimmunization of fetus and newborn", + }, + { + key: "P55.8", + en: "", + de: "Other haemolytic diseases of fetus and newborn", + }, + { + key: "P55.9", + en: "", + de: "Haemolytic disease of fetus and newborn, unspecified", + }, + { + key: "P56", + en: "", + de: "Hydrops fetalis due to haemolytic disease", + }, + { + key: "P56.0", + en: "", + de: "Hydrops fetalis due to isoimmunization", + }, + { + key: "P56.9", + en: "", + de: "Hydrops fetalis due to other and unspecified haemolytic disease", + }, + { + key: "P57", + en: "", + de: "Kernicterus", + }, + { + key: "P57.0", + en: "", + de: "Kernicterus due to isoimmunization", + }, + { + key: "P57.8", + en: "", + de: "Other specified kernicterus", + }, + { + key: "P57.9", + en: "", + de: "Kernicterus, unspecified", + }, + { + key: "P58", + en: "", + de: "Neonatal jaundice due to other excessive haemolysis", + }, + { + key: "P58.0", + en: "", + de: "Neonatal jaundice due to bruising", + }, + { + key: "P58.1", + en: "", + de: "Neonatal jaundice due to bleeding", + }, + { + key: "P58.2", + en: "", + de: "Neonatal jaundice due to infection", + }, + { + key: "P58.3", + en: "", + de: "Neonatal jaundice due to polycythaemia", + }, + { + key: "P58.4", + en: "", + de: "Neonatal jaundice due to drugs or toxins transmitted from mother or given to newborn", + }, + { + key: "P58.5", + en: "", + de: "Neonatal jaundice due to swallowed maternal blood", + }, + { + key: "P58.8", + en: "", + de: "Neonatal jaundice due to other specified excessive haemolysis", + }, + { + key: "P58.9", + en: "", + de: "Neonatal jaundice due to excessive haemolysis, unspecified", + }, + { + key: "P59", + en: "", + de: "Neonatal jaundice from other and unspecified causes", + }, + { + key: "P59.0", + en: "", + de: "Neonatal jaundice associated with preterm delivery", + }, + { + key: "P59.1", + en: "", + de: "Inspissated bile syndrome", + }, + { + key: "P59.2", + en: "", + de: "Neonatal jaundice from other and unspecified hepatocellular damage", + }, + { + key: "P59.3", + en: "", + de: "Neonatal jaundice from breast milk inhibitor", + }, + { + key: "P59.8", + en: "", + de: "Neonatal jaundice from other specified causes", + }, + { + key: "P59.9", + en: "", + de: "Neonatal jaundice, unspecified", + }, + { + key: "P60", + en: "", + de: "Disseminated intravascular coagulation of fetus and newborn", + }, + { + key: "P61", + en: "", + de: "Other perinatal haematological disorders", + }, + { + key: "P61.0", + en: "", + de: "Transient neonatal thrombocytopenia", + }, + { + key: "P61.1", + en: "", + de: "Polycythaemia neonatorum", + }, + { + key: "P61.2", + en: "", + de: "Anaemia of prematurity", + }, + { + key: "P61.3", + en: "", + de: "Congenital anaemia from fetal blood loss", + }, + { + key: "P61.4", + en: "", + de: "Other congenital anaemias, not elsewhere classified", + }, + { + key: "P61.5", + en: "", + de: "Transient neonatal neutropenia", + }, + { + key: "P61.6", + en: "", + de: "Other transient neonatal disorders of coagulation", + }, + { + key: "P61.8", + en: "", + de: "Other specified perinatal haematological disorders", + }, + { + key: "P61.9", + en: "", + de: "Perinatal haematological disorder, unspecified", + }, + { + key: "P70", + en: "", + de: "Transitory disorders of carbohydrate metabolism specific to fetus and newborn", + }, + { + key: "P70.0", + en: "", + de: "Syndrome of infant of mother with gestational diabetes", + }, + { + key: "P70.1", + en: "", + de: "Syndrome of infant of a diabetic mother", + }, + { + key: "P70.2", + en: "", + de: "Neonatal diabetes mellitus", + }, + { + key: "P70.3", + en: "", + de: "Iatrogenic neonatal hypoglycaemia", + }, + { + key: "P70.4", + en: "", + de: "Other neonatal hypoglycaemia", + }, + { + key: "P70.8", + en: "", + de: "Other transitory disorders of carbohydrate metabolism of fetus and newborn", + }, + { + key: "P70.9", + en: "", + de: "Transitory disorder of carbohydrate metabolism of fetus and newborn, unspecified", + }, + { + key: "P71", + en: "", + de: "Transitory neonatal disorders of calcium and magnesium metabolism", + }, + { + key: "P71.0", + en: "", + de: "Cow milk hypocalcaemia in newborn", + }, + { + key: "P71.1", + en: "", + de: "Other neonatal hypocalcaemia", + }, + { + key: "P71.2", + en: "", + de: "Neonatal hypomagnesaemia", + }, + { + key: "P71.3", + en: "", + de: "Neonatal tetany without calcium or magnesium deficiency", + }, + { + key: "P71.4", + en: "", + de: "Transitory neonatal hypoparathyroidism", + }, + { + key: "P71.8", + en: "", + de: "Other transitory neonatal disorders of calcium and magnesium metabolism", + }, + { + key: "P71.9", + en: "", + de: "Transitory neonatal disorder of calcium and magnesium metabolism, unspecified", + }, + { + key: "P72", + en: "", + de: "Other transitory neonatal endocrine disorders", + }, + { + key: "P72.0", + en: "", + de: "Neonatal goitre, not elsewhere classified", + }, + { + key: "P72.1", + en: "", + de: "Transitory neonatal hyperthyroidism", + }, + { + key: "P72.2", + en: "", + de: "Other transitory neonatal disorders of thyroid function, not elsewhere classified", + }, + { + key: "P72.8", + en: "", + de: "Other specified transitory neonatal endocrine disorders", + }, + { + key: "P72.9", + en: "", + de: "Transitory neonatal endocrine disorder, unspecified", + }, + { + key: "P74", + en: "", + de: "Other transitory neonatal electrolyte and metabolic disturbances", + }, + { + key: "P74.0", + en: "", + de: "Late metabolic acidosis of newborn", + }, + { + key: "P74.1", + en: "", + de: "Dehydration of newborn", + }, + { + key: "P74.2", + en: "", + de: "Disturbances of sodium balance of newborn", + }, + { + key: "P74.3", + en: "", + de: "Disturbances of potassium balance of newborn", + }, + { + key: "P74.4", + en: "", + de: "Other transitory electrolyte disturbances of newborn", + }, + { + key: "P74.5", + en: "", + de: "Transitory tyrosinaemia of newborn", + }, + { + key: "P74.8", + en: "", + de: "Other transitory metabolic disturbances of newborn", + }, + { + key: "P74.9", + en: "", + de: "Transitory metabolic disturbance of newborn, unspecified", + }, + { + key: "P76", + en: "", + de: "Other intestinal obstruction of newborn", + }, + { + key: "P76.0", + en: "", + de: "Meconium plug syndrome", + }, + { + key: "P76.1", + en: "", + de: "Transitory ileus of newborn", + }, + { + key: "P76.2", + en: "", + de: "Intestinal obstruction due to inspissated milk", + }, + { + key: "P76.8", + en: "", + de: "Other specified intestinal obstruction of newborn", + }, + { + key: "P76.9", + en: "", + de: "Intestinal obstruction of newborn, unspecified", + }, + { + key: "P77", + en: "", + de: "Necrotizing enterocolitis of fetus and newborn", + }, + { + key: "P78", + en: "", + de: "Other perinatal digestive system disorders", + }, + { + key: "P78.0", + en: "", + de: "Perinatal intestinal perforation", + }, + { + key: "P78.1", + en: "", + de: "Other neonatal peritonitis", + }, + { + key: "P78.2", + en: "", + de: "Neonatal haematemesis and melaena due to swallowed maternal blood", + }, + { + key: "P78.3", + en: "", + de: "Noninfective neonatal diarrhoea", + }, + { + key: "P78.8", + en: "", + de: "Other specified perinatal digestive system disorders", + }, + { + key: "P78.9", + en: "", + de: "Perinatal digestive system disorder, unspecified", + }, + { + key: "P80", + en: "", + de: "Hypothermia of newborn", + }, + { + key: "P80.0", + en: "", + de: "Cold injury syndrome", + }, + { + key: "P80.8", + en: "", + de: "Other hypothermia of newborn", + }, + { + key: "P80.9", + en: "", + de: "Hypothermia of newborn, unspecified", + }, + { + key: "P81", + en: "", + de: "Other disturbances of temperature regulation of newborn", + }, + { + key: "P81.0", + en: "", + de: "Environmental hyperthermia of newborn", + }, + { + key: "P81.8", + en: "", + de: "Other specified disturbances of temperature regulation of newborn", + }, + { + key: "P81.9", + en: "", + de: "Disturbance of temperature regulation of newborn, unspecified", + }, + { + key: "P83", + en: "", + de: "Other conditions of integument specific to fetus and newborn", + }, + { + key: "P83.0", + en: "", + de: "Sclerema neonatorum", + }, + { + key: "P83.1", + en: "", + de: "Neonatal erythema toxicum", + }, + { + key: "P83.2", + en: "", + de: "Hydrops fetalis not due to haemolytic disease", + }, + { + key: "P83.3", + en: "", + de: "Other and unspecified oedema specific to fetus and newborn", + }, + { + key: "P83.4", + en: "", + de: "Breast engorgement of newborn", + }, + { + key: "P83.5", + en: "", + de: "Congenital hydrocele", + }, + { + key: "P83.6", + en: "", + de: "Umbilical polyp of newborn", + }, + { + key: "P83.8", + en: "", + de: "Other specified conditions of integument specific to fetus and newborn", + }, + { + key: "P83.9", + en: "", + de: "Condition of integument specific to fetus and newborn, unspecified", + }, + { + key: "P90", + en: "", + de: "Convulsions of newborn", + }, + { + key: "P91", + en: "", + de: "Other disturbances of cerebral status of newborn", + }, + { + key: "P91.0", + en: "", + de: "Neonatal cerebral ischaemia", + }, + { + key: "P91.1", + en: "", + de: "Acquired periventricular cysts of newborn", + }, + { + key: "P91.2", + en: "", + de: "Neonatal cerebral leukomalacia", + }, + { + key: "P91.3", + en: "", + de: "Neonatal cerebral irritability", + }, + { + key: "P91.4", + en: "", + de: "Neonatal cerebral depression", + }, + { + key: "P91.5", + en: "", + de: "Neonatal coma", + }, + { + key: "P91.6", + en: "", + de: "Hypoxic ischaemic encephalopathy of newborn", + }, + { + key: "P91.7", + en: "", + de: "Acquired hydrocephalus of newborn", + }, + { + key: "P91.8", + en: "", + de: "Other specified disturbances of cerebral status of newborn", + }, + { + key: "P91.9", + en: "", + de: "Disturbance of cerebral status of newborn, unspecified", + }, + { + key: "P92", + en: "", + de: "Feeding problems of newborn", + }, + { + key: "P92.0", + en: "", + de: "Vomiting in newborn", + }, + { + key: "P92.1", + en: "", + de: "Regurgitation and rumination in newborn", + }, + { + key: "P92.2", + en: "", + de: "Slow feeding of newborn", + }, + { + key: "P92.3", + en: "", + de: "Underfeeding of newborn", + }, + { + key: "P92.4", + en: "", + de: "Overfeeding of newborn", + }, + { + key: "P92.5", + en: "", + de: "Neonatal difficulty in feeding at breast", + }, + { + key: "P92.8", + en: "", + de: "Other feeding problems of newborn", + }, + { + key: "P92.9", + en: "", + de: "Feeding problem of newborn, unspecified", + }, + { + key: "P93", + en: "", + de: "Reactions and intoxications due to drugs administered to fetus and newborn", + }, + { + key: "P94", + en: "", + de: "Disorders of muscle tone of newborn", + }, + { + key: "P94.0", + en: "", + de: "Transient neonatal myasthenia gravis", + }, + { + key: "P94.1", + en: "", + de: "Congenital hypertonia", + }, + { + key: "P94.2", + en: "", + de: "Congenital hypotonia", + }, + { + key: "P94.8", + en: "", + de: "Other disorders of muscle tone of newborn", + }, + { + key: "P94.9", + en: "", + de: "Disorder of muscle tone of newborn, unspecified", + }, + { + key: "P95", + en: "", + de: "Fetal death of unspecified cause", + }, + { + key: "P96", + en: "", + de: "Other conditions originating in the perinatal period", + }, + { + key: "P96.0", + en: "", + de: "Congenital renal failure", + }, + { + key: "P96.1", + en: "", + de: "Neonatal withdrawal symptoms from maternal use of drugs of addiction", + }, + { + key: "P96.2", + en: "", + de: "Withdrawal symptoms from therapeutic use of drugs in newborn", + }, + { + key: "P96.3", + en: "", + de: "Wide cranial sutures of newborn", + }, + { + key: "P96.4", + en: "", + de: "Termination of pregnancy, affecting fetus and newborn", + }, + { + key: "P96.5", + en: "", + de: "Complications of intrauterine procedures, not elsewhere classified", + }, + { + key: "P96.8", + en: "", + de: "Other specified conditions originating in the perinatal period", + }, + { + key: "P96.9", + en: "", + de: "Condition originating in the perinatal period, unspecified", + }, + { + key: "Q00", + en: "", + de: "Anencephaly and similar malformations", + }, + { + key: "Q00.0", + en: "", + de: "Anencephaly", + }, + { + key: "Q00.1", + en: "", + de: "Craniorachischisis", + }, + { + key: "Q00.2", + en: "", + de: "Iniencephaly", + }, + { + key: "Q01", + en: "", + de: "Encephalocele", + }, + { + key: "Q01.0", + en: "", + de: "Frontal encephalocele", + }, + { + key: "Q01.1", + en: "", + de: "Nasofrontal encephalocele", + }, + { + key: "Q01.2", + en: "", + de: "Occipital encephalocele", + }, + { + key: "Q01.8", + en: "", + de: "Encephalocele of other sites", + }, + { + key: "Q01.9", + en: "", + de: "Encephalocele, unspecified", + }, + { + key: "Q02", + en: "", + de: "Microcephaly", + }, + { + key: "Q03", + en: "", + de: "Congenital hydrocephalus", + }, + { + key: "Q03.0", + en: "", + de: "Malformations of aqueduct of Sylvius", + }, + { + key: "Q03.1", + en: "", + de: "Atresia of foramina of Magendie and Luschka", + }, + { + key: "Q03.8", + en: "", + de: "Other congenital hydrocephalus", + }, + { + key: "Q03.9", + en: "", + de: "Congenital hydrocephalus, unspecified", + }, + { + key: "Q04", + en: "", + de: "Other congenital malformations of brain", + }, + { + key: "Q04.0", + en: "", + de: "Congenital malformations of corpus callosum", + }, + { + key: "Q04.1", + en: "", + de: "Arhinencephaly", + }, + { + key: "Q04.2", + en: "", + de: "Holoprosencephaly", + }, + { + key: "Q04.3", + en: "", + de: "Other reduction deformities of brain", + }, + { + key: "Q04.4", + en: "", + de: "Septo-optic dysplasia", + }, + { + key: "Q04.5", + en: "", + de: "Megalencephaly", + }, + { + key: "Q04.6", + en: "", + de: "Congenital cerebral cysts", + }, + { + key: "Q04.8", + en: "", + de: "Other specified congenital malformations of brain", + }, + { + key: "Q04.9", + en: "", + de: "Congenital malformation of brain, unspecified", + }, + { + key: "Q05", + en: "", + de: "Spina bifida", + }, + { + key: "Q05.0", + en: "", + de: "Cervical spina bifida with hydrocephalus", + }, + { + key: "Q05.1", + en: "", + de: "Thoracic spina bifida with hydrocephalus", + }, + { + key: "Q05.2", + en: "", + de: "Lumbar spina bifida with hydrocephalus", + }, + { + key: "Q05.3", + en: "", + de: "Sacral spina bifida with hydrocephalus", + }, + { + key: "Q05.4", + en: "", + de: "Unspecified spina bifida with hydrocephalus", + }, + { + key: "Q05.5", + en: "", + de: "Cervical spina bifida without hydrocephalus", + }, + { + key: "Q05.6", + en: "", + de: "Thoracic spina bifida without hydrocephalus", + }, + { + key: "Q05.7", + en: "", + de: "Lumbar spina bifida without hydrocephalus", + }, + { + key: "Q05.8", + en: "", + de: "Sacral spina bifida without hydrocephalus", + }, + { + key: "Q05.9", + en: "", + de: "Spina bifida, unspecified", + }, + { + key: "Q06", + en: "", + de: "Other congenital malformations of spinal cord", + }, + { + key: "Q06.0", + en: "", + de: "Amyelia", + }, + { + key: "Q06.1", + en: "", + de: "Hypoplasia and dysplasia of spinal cord", + }, + { + key: "Q06.2", + en: "", + de: "Diastematomyelia", + }, + { + key: "Q06.3", + en: "", + de: "Other congenital cauda equina malformations", + }, + { + key: "Q06.4", + en: "", + de: "Hydromyelia", + }, + { + key: "Q06.8", + en: "", + de: "Other specified congenital malformations of spinal cord", + }, + { + key: "Q06.9", + en: "", + de: "Congenital malformation of spinal cord, unspecified", + }, + { + key: "Q07", + en: "", + de: "Other congenital malformations of nervous system", + }, + { + key: "Q07.0", + en: "", + de: "Arnold-Chiari syndrome", + }, + { + key: "Q07.8", + en: "", + de: "Other specified congenital malformations of nervous system", + }, + { + key: "Q07.9", + en: "", + de: "Congenital malformation of nervous system, unspecified", + }, + { + key: "Q10", + en: "", + de: "Congenital malformations of eyelid, lacrimal apparatus and orbit", + }, + { + key: "Q10.0", + en: "", + de: "Congenital ptosis", + }, + { + key: "Q10.1", + en: "", + de: "Congenital ectropion", + }, + { + key: "Q10.2", + en: "", + de: "Congenital entropion", + }, + { + key: "Q10.3", + en: "", + de: "Other congenital malformations of eyelid", + }, + { + key: "Q10.4", + en: "", + de: "Absence and agenesis of lacrimal apparatus", + }, + { + key: "Q10.5", + en: "", + de: "Congenital stenosis and stricture of lacrimal duct", + }, + { + key: "Q10.6", + en: "", + de: "Other congenital malformations of lacrimal apparatus", + }, + { + key: "Q10.7", + en: "", + de: "Congenital malformation of orbit", + }, + { + key: "Q11", + en: "", + de: "Anophthalmos, microphthalmos and macrophthalmos", + }, + { + key: "Q11.0", + en: "", + de: "Cystic eyeball", + }, + { + key: "Q11.1", + en: "", + de: "Other anophthalmos", + }, + { + key: "Q11.2", + en: "", + de: "Microphthalmos", + }, + { + key: "Q11.3", + en: "", + de: "Macrophthalmos", + }, + { + key: "Q12", + en: "", + de: "Congenital lens malformations", + }, + { + key: "Q12.0", + en: "", + de: "Congenital cataract", + }, + { + key: "Q12.1", + en: "", + de: "Congenital displaced lens", + }, + { + key: "Q12.2", + en: "", + de: "Coloboma of lens", + }, + { + key: "Q12.3", + en: "", + de: "Congenital aphakia", + }, + { + key: "Q12.4", + en: "", + de: "Spherophakia", + }, + { + key: "Q12.8", + en: "", + de: "Other congenital lens malformations", + }, + { + key: "Q12.9", + en: "", + de: "Congenital lens malformation, unspecified", + }, + { + key: "Q13", + en: "", + de: "Congenital malformations of anterior segment of eye", + }, + { + key: "Q13.0", + en: "", + de: "Coloboma of iris", + }, + { + key: "Q13.1", + en: "", + de: "Absence of iris", + }, + { + key: "Q13.2", + en: "", + de: "Other congenital malformations of iris", + }, + { + key: "Q13.3", + en: "", + de: "Congenital corneal opacity", + }, + { + key: "Q13.4", + en: "", + de: "Other congenital corneal malformations", + }, + { + key: "Q13.5", + en: "", + de: "Blue sclera", + }, + { + key: "Q13.8", + en: "", + de: "Other congenital malformations of anterior segment of eye", + }, + { + key: "Q13.9", + en: "", + de: "Congenital malformation of anterior segment of eye, unspecified", + }, + { + key: "Q14", + en: "", + de: "Congenital malformations of posterior segment of eye", + }, + { + key: "Q14.0", + en: "", + de: "Congenital malformation of vitreous humour", + }, + { + key: "Q14.1", + en: "", + de: "Congenital malformation of retina", + }, + { + key: "Q14.2", + en: "", + de: "Congenital malformation of optic disc", + }, + { + key: "Q14.3", + en: "", + de: "Congenital malformation of choroid", + }, + { + key: "Q14.8", + en: "", + de: "Other congenital malformations of posterior segment of eye", + }, + { + key: "Q14.9", + en: "", + de: "Congenital malformation of posterior segment of eye, unspecified", + }, + { + key: "Q15", + en: "", + de: "Other congenital malformations of eye", + }, + { + key: "Q15.0", + en: "", + de: "Congenital glaucoma", + }, + { + key: "Q15.8", + en: "", + de: "Other specified congenital malformations of eye", + }, + { + key: "Q15.9", + en: "", + de: "Congenital malformation of eye, unspecified", + }, + { + key: "Q16", + en: "", + de: "Congenital malformations of ear causing impairment of hearing", + }, + { + key: "Q16.0", + en: "", + de: "Congenital absence of (ear) auricle", + }, + { + key: "Q16.1", + en: "", + de: "Congenital absence, atresia and stricture of auditory canal (external)", + }, + { + key: "Q16.2", + en: "", + de: "Absence of eustachian tube", + }, + { + key: "Q16.3", + en: "", + de: "Congenital malformation of ear ossicles", + }, + { + key: "Q16.4", + en: "", + de: "Other congenital malformations of middle ear", + }, + { + key: "Q16.5", + en: "", + de: "Congenital malformation of inner ear", + }, + { + key: "Q16.9", + en: "", + de: "Congenital malformation of ear causing impairment of hearing, unspecified", + }, + { + key: "Q17", + en: "", + de: "Other congenital malformations of ear", + }, + { + key: "Q17.0", + en: "", + de: "Accessory auricle", + }, + { + key: "Q17.1", + en: "", + de: "Macrotia", + }, + { + key: "Q17.2", + en: "", + de: "Microtia", + }, + { + key: "Q17.3", + en: "", + de: "Other misshapen ear", + }, + { + key: "Q17.4", + en: "", + de: "Misplaced ear", + }, + { + key: "Q17.5", + en: "", + de: "Prominent ear", + }, + { + key: "Q17.8", + en: "", + de: "Other specified congenital malformations of ear", + }, + { + key: "Q17.9", + en: "", + de: "Congenital malformation of ear, unspecified", + }, + { + key: "Q18", + en: "", + de: "Other congenital malformations of face and neck", + }, + { + key: "Q18.0", + en: "", + de: "Sinus, fistula and cyst of branchial cleft", + }, + { + key: "Q18.1", + en: "", + de: "Preauricular sinus and cyst", + }, + { + key: "Q18.2", + en: "", + de: "Other branchial cleft malformations", + }, + { + key: "Q18.3", + en: "", + de: "Webbing of neck", + }, + { + key: "Q18.4", + en: "", + de: "Macrostomia", + }, + { + key: "Q18.5", + en: "", + de: "Microstomia", + }, + { + key: "Q18.6", + en: "", + de: "Macrocheilia", + }, + { + key: "Q18.7", + en: "", + de: "Microcheilia", + }, + { + key: "Q18.8", + en: "", + de: "Other specified congenital malformations of face and neck", + }, + { + key: "Q18.9", + en: "", + de: "Congenital malformation of face and neck, unspecified", + }, + { + key: "Q20", + en: "", + de: "Congenital malformations of cardiac chambers and connections", + }, + { + key: "Q20.0", + en: "", + de: "Common arterial trunk", + }, + { + key: "Q20.1", + en: "", + de: "Double outlet right ventricle", + }, + { + key: "Q20.2", + en: "", + de: "Double outlet left ventricle", + }, + { + key: "Q20.3", + en: "", + de: "Discordant ventriculoarterial connection", + }, + { + key: "Q20.4", + en: "", + de: "Double inlet ventricle", + }, + { + key: "Q20.5", + en: "", + de: "Discordant atrioventricular connection", + }, + { + key: "Q20.6", + en: "", + de: "Isomerism of atrial appendages", + }, + { + key: "Q20.8", + en: "", + de: "Other congenital malformations of cardiac chambers and connections", + }, + { + key: "Q20.9", + en: "", + de: "Congenital malformation of cardiac chambers and connections, unspecified", + }, + { + key: "Q21", + en: "", + de: "Congenital malformations of cardiac septa", + }, + { + key: "Q21.0", + en: "", + de: "Ventricular septal defect", + }, + { + key: "Q21.1", + en: "", + de: "Atrial septal defect", + }, + { + key: "Q21.2", + en: "", + de: "Atrioventricular septal defect", + }, + { + key: "Q21.3", + en: "", + de: "Tetralogy of Fallot", + }, + { + key: "Q21.4", + en: "", + de: "Aortopulmonary septal defect", + }, + { + key: "Q21.8", + en: "", + de: "Other congenital malformations of cardiac septa", + }, + { + key: "Q21.9", + en: "", + de: "Congenital malformation of cardiac septum, unspecified", + }, + { + key: "Q22", + en: "", + de: "Congenital malformations of pulmonary and tricuspid valves", + }, + { + key: "Q22.0", + en: "", + de: "Pulmonary valve atresia", + }, + { + key: "Q22.1", + en: "", + de: "Congenital pulmonary valve stenosis", + }, + { + key: "Q22.2", + en: "", + de: "Congenital pulmonary valve insufficiency", + }, + { + key: "Q22.3", + en: "", + de: "Other congenital malformations of pulmonary valve", + }, + { + key: "Q22.4", + en: "", + de: "Congenital tricuspid stenosis", + }, + { + key: "Q22.5", + en: "", + de: "Ebstein anomaly", + }, + { + key: "Q22.6", + en: "", + de: "Hypoplastic right heart syndrome", + }, + { + key: "Q22.8", + en: "", + de: "Other congenital malformations of tricuspid valve", + }, + { + key: "Q22.9", + en: "", + de: "Congenital malformation of tricuspid valve, unspecified", + }, + { + key: "Q23", + en: "", + de: "Congenital malformations of aortic and mitral valves", + }, + { + key: "Q23.0", + en: "", + de: "Congenital stenosis of aortic valve", + }, + { + key: "Q23.1", + en: "", + de: "Congenital insufficiency of aortic valve", + }, + { + key: "Q23.2", + en: "", + de: "Congenital mitral stenosis", + }, + { + key: "Q23.3", + en: "", + de: "Congenital mitral insufficiency", + }, + { + key: "Q23.4", + en: "", + de: "Hypoplastic left heart syndrome", + }, + { + key: "Q23.8", + en: "", + de: "Other congenital malformations of aortic and mitral valves", + }, + { + key: "Q23.9", + en: "", + de: "Congenital malformation of aortic and mitral valves, unspecified", + }, + { + key: "Q24", + en: "", + de: "Other congenital malformations of heart", + }, + { + key: "Q24.0", + en: "", + de: "Dextrocardia", + }, + { + key: "Q24.1", + en: "", + de: "Laevocardia", + }, + { + key: "Q24.2", + en: "", + de: "Cor triatriatum", + }, + { + key: "Q24.3", + en: "", + de: "Pulmonary infundibular stenosis", + }, + { + key: "Q24.4", + en: "", + de: "Congenital subaortic stenosis", + }, + { + key: "Q24.5", + en: "", + de: "Malformation of coronary vessels", + }, + { + key: "Q24.6", + en: "", + de: "Congenital heart block", + }, + { + key: "Q24.8", + en: "", + de: "Other specified congenital malformations of heart", + }, + { + key: "Q24.9", + en: "", + de: "Congenital malformation of heart, unspecified", + }, + { + key: "Q25", + en: "", + de: "Congenital malformations of great arteries", + }, + { + key: "Q25.0", + en: "", + de: "Patent ductus arteriosus", + }, + { + key: "Q25.1", + en: "", + de: "Coarctation of aorta", + }, + { + key: "Q25.2", + en: "", + de: "Atresia of aorta", + }, + { + key: "Q25.3", + en: "", + de: "Stenosis of aorta", + }, + { + key: "Q25.4", + en: "", + de: "Other congenital malformations of aorta", + }, + { + key: "Q25.5", + en: "", + de: "Atresia of pulmonary artery", + }, + { + key: "Q25.6", + en: "", + de: "Stenosis of pulmonary artery", + }, + { + key: "Q25.7", + en: "", + de: "Other congenital malformations of pulmonary artery", + }, + { + key: "Q25.8", + en: "", + de: "Other congenital malformations of great arteries", + }, + { + key: "Q25.9", + en: "", + de: "Congenital malformation of great arteries, unspecified", + }, + { + key: "Q26", + en: "", + de: "Congenital malformations of great veins", + }, + { + key: "Q26.0", + en: "", + de: "Congenital stenosis of vena cava", + }, + { + key: "Q26.1", + en: "", + de: "Persistent left superior vena cava", + }, + { + key: "Q26.2", + en: "", + de: "Total anomalous pulmonary venous connection", + }, + { + key: "Q26.3", + en: "", + de: "Partial anomalous pulmonary venous connection", + }, + { + key: "Q26.4", + en: "", + de: "Anomalous pulmonary venous connection, unspecified", + }, + { + key: "Q26.5", + en: "", + de: "Anomalous portal venous connection", + }, + { + key: "Q26.6", + en: "", + de: "Portal vein-hepatic artery fistula", + }, + { + key: "Q26.8", + en: "", + de: "Other congenital malformations of great veins", + }, + { + key: "Q26.9", + en: "", + de: "Congenital malformation of great vein, unspecified", + }, + { + key: "Q27", + en: "", + de: "Other congenital malformations of peripheral vascular system", + }, + { + key: "Q27.0", + en: "", + de: "Congenital absence and hypoplasia of umbilical artery", + }, + { + key: "Q27.1", + en: "", + de: "Congenital renal artery stenosis", + }, + { + key: "Q27.2", + en: "", + de: "Other congenital malformations of renal artery", + }, + { + key: "Q27.3", + en: "", + de: "Peripheral arteriovenous malformation", + }, + { + key: "Q27.4", + en: "", + de: "Congenital phlebectasia", + }, + { + key: "Q27.8", + en: "", + de: "Other specified congenital malformations of peripheral vascular system", + }, + { + key: "Q27.9", + en: "", + de: "Congenital malformation of peripheral vascular system, unspecified", + }, + { + key: "Q28", + en: "", + de: "Other congenital malformations of circulatory system", + }, + { + key: "Q28.0", + en: "", + de: "Arteriovenous malformation of precerebral vessels", + }, + { + key: "Q28.1", + en: "", + de: "Other malformations of precerebral vessels", + }, + { + key: "Q28.2", + en: "", + de: "Arteriovenous malformation of cerebral vessels", + }, + { + key: "Q28.3", + en: "", + de: "Other malformations of cerebral vessels", + }, + { + key: "Q28.8", + en: "", + de: "Other specified congenital malformations of circulatory system", + }, + { + key: "Q28.9", + en: "", + de: "Congenital malformation of circulatory system, unspecified", + }, + { + key: "Q30", + en: "", + de: "Congenital malformations of nose", + }, + { + key: "Q30.0", + en: "", + de: "Choanal atresia", + }, + { + key: "Q30.1", + en: "", + de: "Agenesis and underdevelopment of nose", + }, + { + key: "Q30.2", + en: "", + de: "Fissured, notched and cleft nose", + }, + { + key: "Q30.3", + en: "", + de: "Congenital perforated nasal septum", + }, + { + key: "Q30.8", + en: "", + de: "Other congenital malformations of nose", + }, + { + key: "Q30.9", + en: "", + de: "Congenital malformation of nose, unspecified", + }, + { + key: "Q31", + en: "", + de: "Congenital malformations of larynx", + }, + { + key: "Q31.0", + en: "", + de: "Web of larynx", + }, + { + key: "Q31.1", + en: "", + de: "Congenital subglottic stenosis", + }, + { + key: "Q31.2", + en: "", + de: "Laryngeal hypoplasia", + }, + { + key: "Q31.3", + en: "", + de: "Laryngocele", + }, + { + key: "Q31.5", + en: "", + de: "Congenital laryngomalacia", + }, + { + key: "Q31.8", + en: "", + de: "Other congenital malformations of larynx", + }, + { + key: "Q31.9", + en: "", + de: "Congenital malformation of larynx, unspecified", + }, + { + key: "Q32", + en: "", + de: "Congenital malformations of trachea and bronchus", + }, + { + key: "Q32.0", + en: "", + de: "Congenital tracheomalacia", + }, + { + key: "Q32.1", + en: "", + de: "Other congenital malformations of trachea", + }, + { + key: "Q32.2", + en: "", + de: "Congenital bronchomalacia", + }, + { + key: "Q32.3", + en: "", + de: "Congenital stenosis of bronchus", + }, + { + key: "Q32.4", + en: "", + de: "Other congenital malformations of bronchus", + }, + { + key: "Q33", + en: "", + de: "Congenital malformations of lung", + }, + { + key: "Q33.0", + en: "", + de: "Congenital cystic lung", + }, + { + key: "Q33.1", + en: "", + de: "Accessory lobe of lung", + }, + { + key: "Q33.2", + en: "", + de: "Sequestration of lung", + }, + { + key: "Q33.3", + en: "", + de: "Agenesis of lung", + }, + { + key: "Q33.4", + en: "", + de: "Congenital bronchiectasis", + }, + { + key: "Q33.5", + en: "", + de: "Ectopic tissue in lung", + }, + { + key: "Q33.6", + en: "", + de: "Hypoplasia and dysplasia of lung", + }, + { + key: "Q33.8", + en: "", + de: "Other congenital malformations of lung", + }, + { + key: "Q33.9", + en: "", + de: "Congenital malformation of lung, unspecified", + }, + { + key: "Q34", + en: "", + de: "Other congenital malformations of respiratory system", + }, + { + key: "Q34.0", + en: "", + de: "Anomaly of pleura", + }, + { + key: "Q34.1", + en: "", + de: "Congenital cyst of mediastinum", + }, + { + key: "Q34.8", + en: "", + de: "Other specified congenital malformations of respiratory system", + }, + { + key: "Q34.9", + en: "", + de: "Congenital malformation of respiratory system, unspecified", + }, + { + key: "Q35", + en: "", + de: "Cleft palate", + }, + { + key: "Q35.1", + en: "", + de: "Cleft hard palate", + }, + { + key: "Q35.3", + en: "", + de: "Cleft soft palate", + }, + { + key: "Q35.5", + en: "", + de: "Cleft hard palate with cleft soft palate", + }, + { + key: "Q35.7", + en: "", + de: "Cleft uvula", + }, + { + key: "Q35.9", + en: "", + de: "Cleft palate, unspecified", + }, + { + key: "Q36", + en: "", + de: "Cleft lip", + }, + { + key: "Q36.0", + en: "", + de: "Cleft lip, bilateral", + }, + { + key: "Q36.1", + en: "", + de: "Cleft lip, median", + }, + { + key: "Q36.9", + en: "", + de: "Cleft lip, unilateral", + }, + { + key: "Q37", + en: "", + de: "Cleft palate with cleft lip", + }, + { + key: "Q37.0", + en: "", + de: "Cleft hard palate with bilateral cleft lip", + }, + { + key: "Q37.1", + en: "", + de: "Cleft hard palate with unilateral cleft lip", + }, + { + key: "Q37.2", + en: "", + de: "Cleft soft palate with bilateral cleft lip", + }, + { + key: "Q37.3", + en: "", + de: "Cleft soft palate with unilateral cleft lip", + }, + { + key: "Q37.4", + en: "", + de: "Cleft hard and soft palate with bilateral cleft lip", + }, + { + key: "Q37.5", + en: "", + de: "Cleft hard and soft palate with unilateral cleft lip", + }, + { + key: "Q37.8", + en: "", + de: "Unspecified cleft palate with bilateral cleft lip", + }, + { + key: "Q37.9", + en: "", + de: "Unspecified cleft palate with unilateral cleft lip", + }, + { + key: "Q38", + en: "", + de: "Other congenital malformations of tongue, mouth and pharynx", + }, + { + key: "Q38.0", + en: "", + de: "Congenital malformations of lips, not elsewhere classified", + }, + { + key: "Q38.1", + en: "", + de: "Ankyloglossia", + }, + { + key: "Q38.2", + en: "", + de: "Macroglossia", + }, + { + key: "Q38.3", + en: "", + de: "Other congenital malformations of tongue", + }, + { + key: "Q38.4", + en: "", + de: "Congenital malformations of salivary glands and ducts", + }, + { + key: "Q38.5", + en: "", + de: "Congenital malformations of palate, not elsewhere classified", + }, + { + key: "Q38.6", + en: "", + de: "Other congenital malformations of mouth", + }, + { + key: "Q38.7", + en: "", + de: "Pharyngeal pouch", + }, + { + key: "Q38.8", + en: "", + de: "Other congenital malformations of pharynx", + }, + { + key: "Q39", + en: "", + de: "Congenital malformations of oesophagus", + }, + { + key: "Q39.0", + en: "", + de: "Atresia of oesophagus without fistula", + }, + { + key: "Q39.1", + en: "", + de: "Atresia of oesophagus with tracheo-oesophageal fistula", + }, + { + key: "Q39.2", + en: "", + de: "Congenital tracheo-oesophageal fistula without atresia", + }, + { + key: "Q39.3", + en: "", + de: "Congenital stenosis and stricture of oesophagus", + }, + { + key: "Q39.4", + en: "", + de: "Congenital oesophageal web", + }, + { + key: "Q39.5", + en: "", + de: "Congenital dilatation of oesophagus", + }, + { + key: "Q39.6", + en: "", + de: "Diverticulum of oesophagus", + }, + { + key: "Q39.8", + en: "", + de: "Other congenital malformations of oesophagus", + }, + { + key: "Q39.9", + en: "", + de: "Congenital malformation of oesophagus, unspecified", + }, + { + key: "Q40", + en: "", + de: "Other congenital malformations of upper alimentary tract", + }, + { + key: "Q40.0", + en: "", + de: "Congenital hypertrophic pyloric stenosis", + }, + { + key: "Q40.1", + en: "", + de: "Congenital hiatus hernia", + }, + { + key: "Q40.2", + en: "", + de: "Other specified congenital malformations of stomach", + }, + { + key: "Q40.3", + en: "", + de: "Congenital malformation of stomach, unspecified", + }, + { + key: "Q40.8", + en: "", + de: "Other specified congenital malformations of upper alimentary tract", + }, + { + key: "Q40.9", + en: "", + de: "Congenital malformation of upper alimentary tract, unspecified", + }, + { + key: "Q41", + en: "", + de: "Congenital absence, atresia and stenosis of small intestine", + }, + { + key: "Q41.0", + en: "", + de: "Congenital absence, atresia and stenosis of duodenum", + }, + { + key: "Q41.1", + en: "", + de: "Congenital absence, atresia and stenosis of jejunum", + }, + { + key: "Q41.2", + en: "", + de: "Congenital absence, atresia and stenosis of ileum", + }, + { + key: "Q41.8", + en: "", + de: "Congenital absence, atresia and stenosis of other specified parts of small intestine", + }, + { + key: "Q41.9", + en: "", + de: "Congenital absence, atresia and stenosis of small intestine, part unspecified", + }, + { + key: "Q42", + en: "", + de: "Congenital absence, atresia and stenosis of large intestine", + }, + { + key: "Q42.0", + en: "", + de: "Congenital absence, atresia and stenosis of rectum with fistula", + }, + { + key: "Q42.1", + en: "", + de: "Congenital absence, atresia and stenosis of rectum without fistula", + }, + { + key: "Q42.2", + en: "", + de: "Congenital absence, atresia and stenosis of anus with fistula", + }, + { + key: "Q42.3", + en: "", + de: "Congenital absence, atresia and stenosis of anus without fistula", + }, + { + key: "Q42.8", + en: "", + de: "Congenital absence, atresia and stenosis of other parts of large intestine", + }, + { + key: "Q42.9", + en: "", + de: "Congenital absence, atresia and stenosis of large intestine, part unspecified", + }, + { + key: "Q43", + en: "", + de: "Other congenital malformations of intestine", + }, + { + key: "Q43.0", + en: "", + de: "Meckel diverticulum", + }, + { + key: "Q43.1", + en: "", + de: "Hirschsprung disease", + }, + { + key: "Q43.2", + en: "", + de: "Other congenital functional disorders of colon", + }, + { + key: "Q43.3", + en: "", + de: "Congenital malformations of intestinal fixation", + }, + { + key: "Q43.4", + en: "", + de: "Duplication of intestine", + }, + { + key: "Q43.5", + en: "", + de: "Ectopic anus", + }, + { + key: "Q43.6", + en: "", + de: "Congenital fistula of rectum and anus", + }, + { + key: "Q43.7", + en: "", + de: "Persistent cloaca", + }, + { + key: "Q43.8", + en: "", + de: "Other specified congenital malformations of intestine", + }, + { + key: "Q43.9", + en: "", + de: "Congenital malformation of intestine, unspecified", + }, + { + key: "Q44", + en: "", + de: "Congenital malformations of gallbladder, bile ducts and liver", + }, + { + key: "Q44.0", + en: "", + de: "Agenesis, aplasia and hypoplasia of gallbladder", + }, + { + key: "Q44.1", + en: "", + de: "Other congenital malformations of gallbladder", + }, + { + key: "Q44.2", + en: "", + de: "Atresia of bile ducts", + }, + { + key: "Q44.3", + en: "", + de: "Congenital stenosis and stricture of bile ducts", + }, + { + key: "Q44.4", + en: "", + de: "Choledochal cyst", + }, + { + key: "Q44.5", + en: "", + de: "Other congenital malformations of bile ducts", + }, + { + key: "Q44.6", + en: "", + de: "Cystic disease of liver", + }, + { + key: "Q44.7", + en: "", + de: "Other congenital malformations of liver", + }, + { + key: "Q45", + en: "", + de: "Other congenital malformations of digestive system", + }, + { + key: "Q45.0", + en: "", + de: "Agenesis, aplasia and hypoplasia of pancreas", + }, + { + key: "Q45.1", + en: "", + de: "Annular pancreas", + }, + { + key: "Q45.2", + en: "", + de: "Congenital pancreatic cyst", + }, + { + key: "Q45.3", + en: "", + de: "Other congenital malformations of pancreas and pancreatic duct", + }, + { + key: "Q45.8", + en: "", + de: "Other specified congenital malformations of digestive system", + }, + { + key: "Q45.9", + en: "", + de: "Congenital malformation of digestive system, unspecified", + }, + { + key: "Q50", + en: "", + de: "Congenital malformations of ovaries, fallopian tubes and broad ligaments", + }, + { + key: "Q50.0", + en: "", + de: "Congenital absence of ovary", + }, + { + key: "Q50.1", + en: "", + de: "Developmental ovarian cyst", + }, + { + key: "Q50.2", + en: "", + de: "Congenital torsion of ovary", + }, + { + key: "Q50.3", + en: "", + de: "Other congenital malformations of ovary", + }, + { + key: "Q50.4", + en: "", + de: "Embryonic cyst of fallopian tube", + }, + { + key: "Q50.5", + en: "", + de: "Embryonic cyst of broad ligament", + }, + { + key: "Q50.6", + en: "", + de: "Other congenital malformations of fallopian tube and broad ligament", + }, + { + key: "Q51", + en: "", + de: "Congenital malformations of uterus and cervix", + }, + { + key: "Q51.0", + en: "", + de: "Agenesis and aplasia of uterus", + }, + { + key: "Q51.1", + en: "", + de: "Doubling of uterus with doubling of cervix and vagina", + }, + { + key: "Q51.2", + en: "", + de: "Other doubling of uterus", + }, + { + key: "Q51.3", + en: "", + de: "Bicornate uterus", + }, + { + key: "Q51.4", + en: "", + de: "Unicornate uterus", + }, + { + key: "Q51.5", + en: "", + de: "Agenesis and aplasia of cervix", + }, + { + key: "Q51.6", + en: "", + de: "Embryonic cyst of cervix", + }, + { + key: "Q51.7", + en: "", + de: "Congenital fistulae between uterus and digestive and urinary tracts", + }, + { + key: "Q51.8", + en: "", + de: "Other congenital malformations of uterus and cervix", + }, + { + key: "Q51.9", + en: "", + de: "Congenital malformation of uterus and cervix, unspecified", + }, + { + key: "Q52", + en: "", + de: "Other congenital malformations of female genitalia", + }, + { + key: "Q52.0", + en: "", + de: "Congenital absence of vagina", + }, + { + key: "Q52.1", + en: "", + de: "Doubling of vagina", + }, + { + key: "Q52.2", + en: "", + de: "Congenital rectovaginal fistula", + }, + { + key: "Q52.3", + en: "", + de: "Imperforate hymen", + }, + { + key: "Q52.4", + en: "", + de: "Other congenital malformations of vagina", + }, + { + key: "Q52.5", + en: "", + de: "Fusion of labia", + }, + { + key: "Q52.6", + en: "", + de: "Congenital malformation of clitoris", + }, + { + key: "Q52.7", + en: "", + de: "Other congenital malformations of vulva", + }, + { + key: "Q52.8", + en: "", + de: "Other specified congenital malformations of female genitalia", + }, + { + key: "Q52.9", + en: "", + de: "Congenital malformation of female genitalia, unspecified", + }, + { + key: "Q53", + en: "", + de: "Undescended testicle", + }, + { + key: "Q53.0", + en: "", + de: "Ectopic testis", + }, + { + key: "Q53.1", + en: "", + de: "Undescended testicle, unilateral", + }, + { + key: "Q53.2", + en: "", + de: "Undescended testicle, bilateral", + }, + { + key: "Q53.9", + en: "", + de: "Undescended testicle, unspecified", + }, + { + key: "Q54", + en: "", + de: "Hypospadias", + }, + { + key: "Q54.0", + en: "", + de: "Hypospadias, balanic", + }, + { + key: "Q54.1", + en: "", + de: "Hypospadias, penile", + }, + { + key: "Q54.2", + en: "", + de: "Hypospadias, penoscrotal", + }, + { + key: "Q54.3", + en: "", + de: "Hypospadias, perineal", + }, + { + key: "Q54.4", + en: "", + de: "Congenital chordee", + }, + { + key: "Q54.8", + en: "", + de: "Other hypospadias", + }, + { + key: "Q54.9", + en: "", + de: "Hypospadias, unspecified", + }, + { + key: "Q55", + en: "", + de: "Other congenital malformations of male genital organs", + }, + { + key: "Q55.0", + en: "", + de: "Absence and aplasia of testis", + }, + { + key: "Q55.1", + en: "", + de: "Hypoplasia of testis and scrotum", + }, + { + key: "Q55.2", + en: "", + de: "Other congenital malformations of testis and scrotum", + }, + { + key: "Q55.3", + en: "", + de: "Atresia of vas deferens", + }, + { + key: "Q55.4", + en: "", + de: "Other congenital malformations of vas deferens, epididymis, seminal vesicles and prostate", + }, + { + key: "Q55.5", + en: "", + de: "Congenital absence and aplasia of penis", + }, + { + key: "Q55.6", + en: "", + de: "Other congenital malformations of penis", + }, + { + key: "Q55.8", + en: "", + de: "Other specified congenital malformations of male genital organs", + }, + { + key: "Q55.9", + en: "", + de: "Congenital malformation of male genital organ, unspecified", + }, + { + key: "Q56", + en: "", + de: "Indeterminate sex and pseudohermaphroditism", + }, + { + key: "Q56.0", + en: "", + de: "Hermaphroditism, not elsewhere classified", + }, + { + key: "Q56.1", + en: "", + de: "Male pseudohermaphroditism, not elsewhere classified", + }, + { + key: "Q56.2", + en: "", + de: "Female pseudohermaphroditism, not elsewhere classified", + }, + { + key: "Q56.3", + en: "", + de: "Pseudohermaphroditism, unspecified", + }, + { + key: "Q56.4", + en: "", + de: "Indeterminate sex, unspecified", + }, + { + key: "Q60", + en: "", + de: "Renal agenesis and other reduction defects of kidney", + }, + { + key: "Q60.0", + en: "", + de: "Renal agenesis, unilateral", + }, + { + key: "Q60.1", + en: "", + de: "Renal agenesis, bilateral", + }, + { + key: "Q60.2", + en: "", + de: "Renal agenesis, unspecified", + }, + { + key: "Q60.3", + en: "", + de: "Renal hypoplasia, unilateral", + }, + { + key: "Q60.4", + en: "", + de: "Renal hypoplasia, bilateral", + }, + { + key: "Q60.5", + en: "", + de: "Renal hypoplasia, unspecified", + }, + { + key: "Q60.6", + en: "", + de: "Potter syndrome", + }, + { + key: "Q61", + en: "", + de: "Cystic kidney disease", + }, + { + key: "Q61.0", + en: "", + de: "Congenital single renal cyst", + }, + { + key: "Q61.1", + en: "", + de: "Polycystic kidney, autosomal recessive", + }, + { + key: "Q61.2", + en: "", + de: "Polycystic kidney, autosomal dominant", + }, + { + key: "Q61.3", + en: "", + de: "Polycystic kidney, unspecified", + }, + { + key: "Q61.4", + en: "", + de: "Renal dysplasia", + }, + { + key: "Q61.5", + en: "", + de: "Medullary cystic kidney", + }, + { + key: "Q61.8", + en: "", + de: "Other cystic kidney diseases", + }, + { + key: "Q61.9", + en: "", + de: "Cystic kidney disease, unspecified", + }, + { + key: "Q62", + en: "", + de: "Congenital obstructive defects of renal pelvis and congenital malformations of ureter", + }, + { + key: "Q62.0", + en: "", + de: "Congenital hydronephrosis", + }, + { + key: "Q62.1", + en: "", + de: "Atresia and stenosis of ureter", + }, + { + key: "Q62.2", + en: "", + de: "Congenital megaloureter", + }, + { + key: "Q62.3", + en: "", + de: "Other obstructive defects of renal pelvis and ureter", + }, + { + key: "Q62.4", + en: "", + de: "Agenesis of ureter", + }, + { + key: "Q62.5", + en: "", + de: "Duplication of ureter", + }, + { + key: "Q62.6", + en: "", + de: "Malposition of ureter", + }, + { + key: "Q62.7", + en: "", + de: "Congenital vesico-uretero-renal reflux", + }, + { + key: "Q62.8", + en: "", + de: "Other congenital malformations of ureter", + }, + { + key: "Q63", + en: "", + de: "Other congenital malformations of kidney", + }, + { + key: "Q63.0", + en: "", + de: "Accessory kidney", + }, + { + key: "Q63.1", + en: "", + de: "Lobulated, fused and horseshoe kidney", + }, + { + key: "Q63.2", + en: "", + de: "Ectopic kidney", + }, + { + key: "Q63.3", + en: "", + de: "Hyperplastic and giant kidney", + }, + { + key: "Q63.8", + en: "", + de: "Other specified congenital malformations of kidney", + }, + { + key: "Q63.9", + en: "", + de: "Congenital malformation of kidney, unspecified", + }, + { + key: "Q64", + en: "", + de: "Other congenital malformations of urinary system", + }, + { + key: "Q64.0", + en: "", + de: "Epispadias", + }, + { + key: "Q64.1", + en: "", + de: "Exstrophy of urinary bladder", + }, + { + key: "Q64.2", + en: "", + de: "Congenital posterior urethral valves", + }, + { + key: "Q64.3", + en: "", + de: "Other atresia and stenosis of urethra and bladder neck", + }, + { + key: "Q64.4", + en: "", + de: "Malformation of urachus", + }, + { + key: "Q64.5", + en: "", + de: "Congenital absence of bladder and urethra", + }, + { + key: "Q64.6", + en: "", + de: "Congenital diverticulum of bladder", + }, + { + key: "Q64.7", + en: "", + de: "Other congenital malformations of bladder and urethra", + }, + { + key: "Q64.8", + en: "", + de: "Other specified congenital malformations of urinary system", + }, + { + key: "Q64.9", + en: "", + de: "Congenital malformation of urinary system, unspecified", + }, + { + key: "Q65", + en: "", + de: "Congenital deformities of hip", + }, + { + key: "Q65.0", + en: "", + de: "Congenital dislocation of hip, unilateral", + }, + { + key: "Q65.1", + en: "", + de: "Congenital dislocation of hip, bilateral", + }, + { + key: "Q65.2", + en: "", + de: "Congenital dislocation of hip, unspecified", + }, + { + key: "Q65.3", + en: "", + de: "Congenital subluxation of hip, unilateral", + }, + { + key: "Q65.4", + en: "", + de: "Congenital subluxation of hip, bilateral", + }, + { + key: "Q65.5", + en: "", + de: "Congenital subluxation of hip, unspecified", + }, + { + key: "Q65.6", + en: "", + de: "Unstable hip", + }, + { + key: "Q65.8", + en: "", + de: "Other congenital deformities of hip", + }, + { + key: "Q65.9", + en: "", + de: "Congenital deformity of hip, unspecified", + }, + { + key: "Q66", + en: "", + de: "Congenital deformities of feet", + }, + { + key: "Q66.0", + en: "", + de: "Talipes equinovarus", + }, + { + key: "Q66.1", + en: "", + de: "Talipes calcaneovarus", + }, + { + key: "Q66.2", + en: "", + de: "Metatarsus varus", + }, + { + key: "Q66.3", + en: "", + de: "Other congenital varus deformities of feet", + }, + { + key: "Q66.4", + en: "", + de: "Talipes calcaneovalgus", + }, + { + key: "Q66.5", + en: "", + de: "Congenital pes planus", + }, + { + key: "Q66.6", + en: "", + de: "Other congenital valgus deformities of feet", + }, + { + key: "Q66.7", + en: "", + de: "Pes cavus", + }, + { + key: "Q66.8", + en: "", + de: "Other congenital deformities of feet", + }, + { + key: "Q66.9", + en: "", + de: "Congenital deformity of feet, unspecified", + }, + { + key: "Q67", + en: "", + de: "Congenital musculoskeletal deformities of head, face, spine and chest", + }, + { + key: "Q67.0", + en: "", + de: "Facial asymmetry", + }, + { + key: "Q67.1", + en: "", + de: "Compression facies", + }, + { + key: "Q67.2", + en: "", + de: "Dolichocephaly", + }, + { + key: "Q67.3", + en: "", + de: "Plagiocephaly", + }, + { + key: "Q67.4", + en: "", + de: "Other congenital deformities of skull, face and jaw", + }, + { + key: "Q67.5", + en: "", + de: "Congenital deformity of spine", + }, + { + key: "Q67.6", + en: "", + de: "Pectus excavatum", + }, + { + key: "Q67.7", + en: "", + de: "Pectus carinatum", + }, + { + key: "Q67.8", + en: "", + de: "Other congenital deformities of chest", + }, + { + key: "Q68", + en: "", + de: "Other congenital musculoskeletal deformities", + }, + { + key: "Q68.0", + en: "", + de: "Congenital deformity of sternocleidomastoid muscle", + }, + { + key: "Q68.1", + en: "", + de: "Congenital deformity of hand", + }, + { + key: "Q68.2", + en: "", + de: "Congenital deformity of knee", + }, + { + key: "Q68.3", + en: "", + de: "Congenital bowing of femur", + }, + { + key: "Q68.4", + en: "", + de: "Congenital bowing of tibia and fibula", + }, + { + key: "Q68.5", + en: "", + de: "Congenital bowing of long bones of leg, unspecified", + }, + { + key: "Q68.8", + en: "", + de: "Other specified congenital musculoskeletal deformities", + }, + { + key: "Q69", + en: "", + de: "Polydactyly", + }, + { + key: "Q69.0", + en: "", + de: "Accessory finger(s)", + }, + { + key: "Q69.1", + en: "", + de: "Accessory thumb(s)", + }, + { + key: "Q69.2", + en: "", + de: "Accessory toe(s)", + }, + { + key: "Q69.9", + en: "", + de: "Polydactyly, unspecified", + }, + { + key: "Q70", + en: "", + de: "Syndactyly", + }, + { + key: "Q70.0", + en: "", + de: "Fused fingers", + }, + { + key: "Q70.1", + en: "", + de: "Webbed fingers", + }, + { + key: "Q70.2", + en: "", + de: "Fused toes", + }, + { + key: "Q70.3", + en: "", + de: "Webbed toes", + }, + { + key: "Q70.4", + en: "", + de: "Polysyndactyly", + }, + { + key: "Q70.9", + en: "", + de: "Syndactyly, unspecified", + }, + { + key: "Q71", + en: "", + de: "Reduction defects of upper limb", + }, + { + key: "Q71.0", + en: "", + de: "Congenital complete absence of upper limb(s)", + }, + { + key: "Q71.1", + en: "", + de: "Congenital absence of upper arm and forearm with hand present", + }, + { + key: "Q71.2", + en: "", + de: "Congenital absence of both forearm and hand", + }, + { + key: "Q71.3", + en: "", + de: "Congenital absence of hand and finger(s)", + }, + { + key: "Q71.4", + en: "", + de: "Longitudinal reduction defect of radius", + }, + { + key: "Q71.5", + en: "", + de: "Longitudinal reduction defect of ulna", + }, + { + key: "Q71.6", + en: "", + de: "Lobster-claw hand", + }, + { + key: "Q71.8", + en: "", + de: "Other reduction defects of upper limb(s)", + }, + { + key: "Q71.9", + en: "", + de: "Reduction defect of upper limb, unspecified", + }, + { + key: "Q72", + en: "", + de: "Reduction defects of lower limb", + }, + { + key: "Q72.0", + en: "", + de: "Congenital complete absence of lower limb(s)", + }, + { + key: "Q72.1", + en: "", + de: "Congenital absence of thigh and lower leg with foot present", + }, + { + key: "Q72.2", + en: "", + de: "Congenital absence of both lower leg and foot", + }, + { + key: "Q72.3", + en: "", + de: "Congenital absence of foot and toe(s)", + }, + { + key: "Q72.4", + en: "", + de: "Longitudinal reduction defect of femur", + }, + { + key: "Q72.5", + en: "", + de: "Longitudinal reduction defect of tibia", + }, + { + key: "Q72.6", + en: "", + de: "Longitudinal reduction defect of fibula", + }, + { + key: "Q72.7", + en: "", + de: "Split foot", + }, + { + key: "Q72.8", + en: "", + de: "Other reduction defects of lower limb(s)", + }, + { + key: "Q72.9", + en: "", + de: "Reduction defect of lower limb, unspecified", + }, + { + key: "Q73", + en: "", + de: "Reduction defects of unspecified limb", + }, + { + key: "Q73.0", + en: "", + de: "Congenital absence of unspecified limb(s)", + }, + { + key: "Q73.1", + en: "", + de: "Phocomelia, unspecified limb(s)", + }, + { + key: "Q73.8", + en: "", + de: "Other reduction defects of unspecified limb(s)", + }, + { + key: "Q74", + en: "", + de: "Other congenital malformations of limb(s)", + }, + { + key: "Q74.0", + en: "", + de: "Other congenital malformations of upper limb(s), including shoulder girdle", + }, + { + key: "Q74.1", + en: "", + de: "Congenital malformation of knee", + }, + { + key: "Q74.2", + en: "", + de: "Other congenital malformations of lower limb(s), including pelvic girdle", + }, + { + key: "Q74.3", + en: "", + de: "Arthrogryposis multiplex congenita", + }, + { + key: "Q74.8", + en: "", + de: "Other specified congenital malformations of limb(s)", + }, + { + key: "Q74.9", + en: "", + de: "Unspecified congenital malformation of limb(s)", + }, + { + key: "Q75", + en: "", + de: "Other congenital malformations of skull and face bones", + }, + { + key: "Q75.0", + en: "", + de: "Craniosynostosis", + }, + { + key: "Q75.1", + en: "", + de: "Craniofacial dysostosis", + }, + { + key: "Q75.2", + en: "", + de: "Hypertelorism", + }, + { + key: "Q75.3", + en: "", + de: "Macrocephaly", + }, + { + key: "Q75.4", + en: "", + de: "Mandibulofacial dysostosis", + }, + { + key: "Q75.5", + en: "", + de: "Oculomandibular dysostosis", + }, + { + key: "Q75.8", + en: "", + de: "Other specified congenital malformations of skull and face bones", + }, + { + key: "Q75.9", + en: "", + de: "Congenital malformation of skull and face bones, unspecified", + }, + { + key: "Q76", + en: "", + de: "Congenital malformations of spine and bony thorax", + }, + { + key: "Q76.0", + en: "", + de: "Spina bifida occulta", + }, + { + key: "Q76.1", + en: "", + de: "Klippel-Feil syndrome", + }, + { + key: "Q76.2", + en: "", + de: "Congenital spondylolisthesis", + }, + { + key: "Q76.3", + en: "", + de: "Congenital scoliosis due to congenital bony malformation", + }, + { + key: "Q76.4", + en: "", + de: "Other congenital malformations of spine, not associated with scoliosis", + }, + { + key: "Q76.5", + en: "", + de: "Cervical rib", + }, + { + key: "Q76.6", + en: "", + de: "Other congenital malformations of ribs", + }, + { + key: "Q76.7", + en: "", + de: "Congenital malformation of sternum", + }, + { + key: "Q76.8", + en: "", + de: "Other congenital malformations of bony thorax", + }, + { + key: "Q76.9", + en: "", + de: "Congenital malformation of bony thorax, unspecified", + }, + { + key: "Q77", + en: "", + de: "Osteochondrodysplasia with defects of growth of tubular bones and spine", + }, + { + key: "Q77.0", + en: "", + de: "Achondrogenesis", + }, + { + key: "Q77.1", + en: "", + de: "Thanatophoric short stature", + }, + { + key: "Q77.2", + en: "", + de: "Short rib syndrome", + }, + { + key: "Q77.3", + en: "", + de: "Chondrodysplasia punctata", + }, + { + key: "Q77.4", + en: "", + de: "Achondroplasia", + }, + { + key: "Q77.5", + en: "", + de: "Dystrophic dysplasia", + }, + { + key: "Q77.6", + en: "", + de: "Chondroectodermal dysplasia", + }, + { + key: "Q77.7", + en: "", + de: "Spondyloepiphyseal dysplasia", + }, + { + key: "Q77.8", + en: "", + de: "Other osteochondrodysplasia with defects of growth of tubular bones and spine", + }, + { + key: "Q77.9", + en: "", + de: "Osteochondrodysplasia with defects of growth of tubular bones and spine, unspecified", + }, + { + key: "Q78", + en: "", + de: "Other osteochondrodysplasias", + }, + { + key: "Q78.0", + en: "", + de: "Osteogenesis imperfecta", + }, + { + key: "Q78.1", + en: "", + de: "Polyostotic fibrous dysplasia", + }, + { + key: "Q78.2", + en: "", + de: "Osteopetrosis", + }, + { + key: "Q78.3", + en: "", + de: "Progressive diaphyseal dysplasia", + }, + { + key: "Q78.4", + en: "", + de: "Enchondromatosis", + }, + { + key: "Q78.5", + en: "", + de: "Metaphyseal dysplasia", + }, + { + key: "Q78.6", + en: "", + de: "Multiple congenital exostoses", + }, + { + key: "Q78.8", + en: "", + de: "Other specified osteochondrodysplasias", + }, + { + key: "Q78.9", + en: "", + de: "Osteochondrodysplasia, unspecified", + }, + { + key: "Q79", + en: "", + de: "Congenital malformations of the musculoskeletal system, not elsewhere classified", + }, + { + key: "Q79.0", + en: "", + de: "Congenital diaphragmatic hernia", + }, + { + key: "Q79.1", + en: "", + de: "Other congenital malformations of diaphragm", + }, + { + key: "Q79.2", + en: "", + de: "Exomphalos", + }, + { + key: "Q79.3", + en: "", + de: "Gastroschisis", + }, + { + key: "Q79.4", + en: "", + de: "Prune belly syndrome", + }, + { + key: "Q79.5", + en: "", + de: "Other congenital malformations of abdominal wall", + }, + { + key: "Q79.6", + en: "", + de: "Ehlers-Danlos syndrome", + }, + { + key: "Q79.8", + en: "", + de: "Other congenital malformations of musculoskeletal system", + }, + { + key: "Q79.9", + en: "", + de: "Congenital malformation of musculoskeletal system, unspecified", + }, + { + key: "Q80", + en: "", + de: "Congenital ichthyosis", + }, + { + key: "Q80.0", + en: "", + de: "Ichthyosis vulgaris", + }, + { + key: "Q80.1", + en: "", + de: "X-linked ichthyosis", + }, + { + key: "Q80.2", + en: "", + de: "Lamellar ichthyosis", + }, + { + key: "Q80.3", + en: "", + de: "Congenital bullous ichthyosiform erythroderma", + }, + { + key: "Q80.4", + en: "", + de: "Harlequin fetus", + }, + { + key: "Q80.8", + en: "", + de: "Other congenital ichthyosis", + }, + { + key: "Q80.9", + en: "", + de: "Congenital ichthyosis, unspecified", + }, + { + key: "Q81", + en: "", + de: "Epidermolysis bullosa", + }, + { + key: "Q81.0", + en: "", + de: "Epidermolysis bullosa simplex", + }, + { + key: "Q81.1", + en: "", + de: "Epidermolysis bullosa letalis", + }, + { + key: "Q81.2", + en: "", + de: "Epidermolysis bullosa dystrophica", + }, + { + key: "Q81.8", + en: "", + de: "Other epidermolysis bullosa", + }, + { + key: "Q81.9", + en: "", + de: "Epidermolysis bullosa, unspecified", + }, + { + key: "Q82", + en: "", + de: "Other congenital malformations of skin", + }, + { + key: "Q82.0", + en: "", + de: "Hereditary lymphoedema", + }, + { + key: "Q82.1", + en: "", + de: "Xeroderma pigmentosum", + }, + { + key: "Q82.2", + en: "", + de: "Mastocytosis", + }, + { + key: "Q82.3", + en: "", + de: "Incontinentia pigmenti", + }, + { + key: "Q82.4", + en: "", + de: "Ectodermal dysplasia (anhidrotic)", + }, + { + key: "Q82.5", + en: "", + de: "Congenital non-neoplastic naevus", + }, + { + key: "Q82.8", + en: "", + de: "Other specified congenital malformations of skin", + }, + { + key: "Q82.9", + en: "", + de: "Congenital malformation of skin, unspecified", + }, + { + key: "Q83", + en: "", + de: "Congenital malformations of breast", + }, + { + key: "Q83.0", + en: "", + de: "Congenital absence of breast with absent nipple", + }, + { + key: "Q83.1", + en: "", + de: "Accessory breast", + }, + { + key: "Q83.2", + en: "", + de: "Absent nipple", + }, + { + key: "Q83.3", + en: "", + de: "Accessory nipple", + }, + { + key: "Q83.8", + en: "", + de: "Other congenital malformations of breast", + }, + { + key: "Q83.9", + en: "", + de: "Congenital malformation of breast, unspecified", + }, + { + key: "Q84", + en: "", + de: "Other congenital malformations of integument", + }, + { + key: "Q84.0", + en: "", + de: "Congenital alopecia", + }, + { + key: "Q84.1", + en: "", + de: "Congenital morphological disturbances of hair, not elsewhere classified", + }, + { + key: "Q84.2", + en: "", + de: "Other congenital malformations of hair", + }, + { + key: "Q84.3", + en: "", + de: "Anonychia", + }, + { + key: "Q84.4", + en: "", + de: "Congenital leukonychia", + }, + { + key: "Q84.5", + en: "", + de: "Enlarged and hypertrophic nails", + }, + { + key: "Q84.6", + en: "", + de: "Other congenital malformations of nails", + }, + { + key: "Q84.8", + en: "", + de: "Other specified congenital malformations of integument", + }, + { + key: "Q84.9", + en: "", + de: "Congenital malformation of integument, unspecified", + }, + { + key: "Q85", + en: "", + de: "Phakomatoses, not elsewhere classified", + }, + { + key: "Q85.0", + en: "", + de: "Neurofibromatosis (nonmalignant)", + }, + { + key: "Q85.1", + en: "", + de: "Tuberous sclerosis", + }, + { + key: "Q85.8", + en: "", + de: "Other phakomatoses, not elsewhere classified", + }, + { + key: "Q85.9", + en: "", + de: "Phakomatosis, unspecified", + }, + { + key: "Q86", + en: "", + de: "Congenital malformation syndromes due to known exogenous causes, not elsewhere classified", + }, + { + key: "Q86.0", + en: "", + de: "Fetal alcohol syndrome (dysmorphic)", + }, + { + key: "Q86.1", + en: "", + de: "Fetal hydantoin syndrome", + }, + { + key: "Q86.2", + en: "", + de: "Dysmorphism due to warfarin", + }, + { + key: "Q86.8", + en: "", + de: "Other congenital malformation syndromes due to known exogenous causes", + }, + { + key: "Q87", + en: "", + de: "Other specified congenital malformation syndromes affecting multiple systems", + }, + { + key: "Q87.0", + en: "", + de: "Congenital malformation syndromes predominantly affecting facial appearance", + }, + { + key: "Q87.1", + en: "", + de: "Congenital malformation syndromes predominantly associated with short stature", + }, + { + key: "Q87.2", + en: "", + de: "Congenital malformation syndromes predominantly involving limbs", + }, + { + key: "Q87.3", + en: "", + de: "Congenital malformation syndromes involving early overgrowth", + }, + { + key: "Q87.4", + en: "", + de: "Marfan syndrome", + }, + { + key: "Q87.5", + en: "", + de: "Other congenital malformation syndromes with other skeletal changes", + }, + { + key: "Q87.8", + en: "", + de: "Other specified congenital malformation syndromes, not elsewhere classified", + }, + { + key: "Q89", + en: "", + de: "Other congenital malformations, not elsewhere classified", + }, + { + key: "Q89.0", + en: "", + de: "Congenital malformations of spleen", + }, + { + key: "Q89.1", + en: "", + de: "Congenital malformations of adrenal gland", + }, + { + key: "Q89.2", + en: "", + de: "Congenital malformations of other endocrine glands", + }, + { + key: "Q89.3", + en: "", + de: "Situs inversus", + }, + { + key: "Q89.4", + en: "", + de: "Conjoined twins", + }, + { + key: "Q89.7", + en: "", + de: "Multiple congenital malformations, not elsewhere classified", + }, + { + key: "Q89.8", + en: "", + de: "Other specified congenital malformations", + }, + { + key: "Q89.9", + en: "", + de: "Congenital malformation, unspecified", + }, + { + key: "Q90", + en: "", + de: "Down syndrome", + }, + { + key: "Q90.0", + en: "", + de: "Trisomy 21, meiotic nondisjunction", + }, + { + key: "Q90.1", + en: "", + de: "Trisomy 21, mosaicism (mitotic nondisjunction)", + }, + { + key: "Q90.2", + en: "", + de: "Trisomy 21, translocation", + }, + { + key: "Q90.9", + en: "", + de: "Down syndrome, unspecified", + }, + { + key: "Q91", + en: "", + de: "Edwards syndrome and Patau syndrome", + }, + { + key: "Q91.0", + en: "", + de: "Trisomy 18, meiotic nondisjunction", + }, + { + key: "Q91.1", + en: "", + de: "Trisomy 18, mosaicism (mitotic nondisjunction)", + }, + { + key: "Q91.2", + en: "", + de: "Trisomy 18, translocation", + }, + { + key: "Q91.3", + en: "", + de: "Edwards syndrome, unspecified", + }, + { + key: "Q91.4", + en: "", + de: "Trisomy 13, meiotic nondisjunction", + }, + { + key: "Q91.5", + en: "", + de: "Trisomy 13, mosaicism (mitotic nondisjunction)", + }, + { + key: "Q91.6", + en: "", + de: "Trisomy 13, translocation", + }, + { + key: "Q91.7", + en: "", + de: "Patau syndrome, unspecified", + }, + { + key: "Q92", + en: "", + de: "Other trisomies and partial trisomies of the autosomes, not elsewhere classified", + }, + { + key: "Q92.0", + en: "", + de: "Whole chromosome trisomy, meiotic nondisjunction", + }, + { + key: "Q92.1", + en: "", + de: "Whole chromosome trisomy, mosaicism (mitotic nondisjunction)", + }, + { + key: "Q92.2", + en: "", + de: "Major partial trisomy", + }, + { + key: "Q92.3", + en: "", + de: "Minor partial trisomy", + }, + { + key: "Q92.4", + en: "", + de: "Duplications seen only at prometaphase", + }, + { + key: "Q92.5", + en: "", + de: "Duplications with other complex rearrangements", + }, + { + key: "Q92.6", + en: "", + de: "Extra marker chromosomes", + }, + { + key: "Q92.7", + en: "", + de: "Triploidy and polyploidy", + }, + { + key: "Q92.8", + en: "", + de: "Other specified trisomies and partial trisomies of autosomes", + }, + { + key: "Q92.9", + en: "", + de: "Trisomy and partial trisomy of autosomes, unspecified", + }, + { + key: "Q93", + en: "", + de: "Monosomies and deletions from the autosomes, not elsewhere classified", + }, + { + key: "Q93.0", + en: "", + de: "Whole chromosome monosomy, meiotic nondisjunction", + }, + { + key: "Q93.1", + en: "", + de: "Whole chromosome monosomy, mosaicism (mitotic nondisjunction)", + }, + { + key: "Q93.2", + en: "", + de: "Chromosome replaced with ring or dicentric", + }, + { + key: "Q93.3", + en: "", + de: "Deletion of short arm of chromosome 4", + }, + { + key: "Q93.4", + en: "", + de: "Deletion of short arm of chromosome 5", + }, + { + key: "Q93.5", + en: "", + de: "Other deletions of part of a chromosome", + }, + { + key: "Q93.6", + en: "", + de: "Deletions seen only at prometaphase", + }, + { + key: "Q93.7", + en: "", + de: "Deletions with other complex rearrangements", + }, + { + key: "Q93.8", + en: "", + de: "Other deletions from the autosomes", + }, + { + key: "Q93.9", + en: "", + de: "Deletion from autosomes, unspecified", + }, + { + key: "Q95", + en: "", + de: "Balanced rearrangements and structural markers, not elsewhere classified", + }, + { + key: "Q95.0", + en: "", + de: "Balanced translocation and insertion in normal individual", + }, + { + key: "Q95.1", + en: "", + de: "Chromosome inversion in normal individual", + }, + { + key: "Q95.2", + en: "", + de: "Balanced autosomal rearrangement in abnormal individual", + }, + { + key: "Q95.3", + en: "", + de: "Balanced sex/autosomal rearrangement in abnormal individual", + }, + { + key: "Q95.4", + en: "", + de: "Individuals with marker heterochromatin", + }, + { + key: "Q95.5", + en: "", + de: "Individuals with autosomal fragile site", + }, + { + key: "Q95.8", + en: "", + de: "Other balanced rearrangements and structural markers", + }, + { + key: "Q95.9", + en: "", + de: "Balanced rearrangement and structural marker, unspecified", + }, + { + key: "Q96", + en: "", + de: "Turner syndrome", + }, + { + key: "Q96.0", + en: "", + de: "Karyotype 45,X", + }, + { + key: "Q96.1", + en: "", + de: "Karyotype 46,X iso (Xq)", + }, + { + key: "Q96.2", + en: "", + de: "Karyotype 46,X with abnormal sex chromosome, except iso (Xq)", + }, + { + key: "Q96.3", + en: "", + de: "Mosaicism, 45,X/46,XX or XY", + }, + { + key: "Q96.4", + en: "", + de: "Mosaicism, 45,X/other cell line(s) with abnormal sex chromosome", + }, + { + key: "Q96.8", + en: "", + de: "Other variants of Turner syndrome", + }, + { + key: "Q96.9", + en: "", + de: "Turner syndrome, unspecified", + }, + { + key: "Q97", + en: "", + de: "Other sex chromosome abnormalities, female phenotype, not elsewhere classified", + }, + { + key: "Q97.0", + en: "", + de: "Karyotype 47,XXX", + }, + { + key: "Q97.1", + en: "", + de: "Female with more than three X chromosomes", + }, + { + key: "Q97.2", + en: "", + de: "Mosaicism, lines with various numbers of X chromosomes", + }, + { + key: "Q97.3", + en: "", + de: "Female with 46,XY karyotype", + }, + { + key: "Q97.8", + en: "", + de: "Other specified sex chromosome abnormalities, female phenotype", + }, + { + key: "Q97.9", + en: "", + de: "Sex chromosome abnormality, female phenotype, unspecified", + }, + { + key: "Q98", + en: "", + de: "Other sex chromosome abnormalities, male phenotype, not elsewhere classified", + }, + { + key: "Q98.0", + en: "", + de: "Klinefelter syndrome karyotype 47,XXY", + }, + { + key: "Q98.1", + en: "", + de: "Klinefelter syndrome, male with more than two X chromosomes", + }, + { + key: "Q98.2", + en: "", + de: "Klinefelter syndrome, male with 46,XX karyotype", + }, + { + key: "Q98.3", + en: "", + de: "Other male with 46,XX karyotype", + }, + { + key: "Q98.4", + en: "", + de: "Klinefelter syndrome, unspecified", + }, + { + key: "Q98.5", + en: "", + de: "Karyotype 47,XYY", + }, + { + key: "Q98.6", + en: "", + de: "Male with structurally abnormal sex chromosome", + }, + { + key: "Q98.7", + en: "", + de: "Male with sex chromosome mosaicism", + }, + { + key: "Q98.8", + en: "", + de: "Other specified sex chromosome abnormalities, male phenotype", + }, + { + key: "Q98.9", + en: "", + de: "Sex chromosome abnormality, male phenotype, unspecified", + }, + { + key: "Q99", + en: "", + de: "Other chromosome abnormalities, not elsewhere classified", + }, + { + key: "Q99.0", + en: "", + de: "Chimera 46,XX/46,XY", + }, + { + key: "Q99.1", + en: "", + de: "46,XX true hermaphrodite", + }, + { + key: "Q99.2", + en: "", + de: "Fragile X chromosome", + }, + { + key: "Q99.8", + en: "", + de: "Other specified chromosome abnormalities", + }, + { + key: "Q99.9", + en: "", + de: "Chromosomal abnormality, unspecified", + }, + { + key: "R00", + en: "", + de: "Abnormalities of heart beat", + }, + { + key: "R00.0", + en: "", + de: "Tachycardia, unspecified", + }, + { + key: "R00.1", + en: "", + de: "Bradycardia, unspecified", + }, + { + key: "R00.2", + en: "", + de: "Palpitations", + }, + { + key: "R00.3", + en: "", + de: "Pulseless electrical activity, not elsewhere classified", + }, + { + key: "R00.8", + en: "", + de: "Other and unspecified abnormalities of heart beat", + }, + { + key: "R01", + en: "", + de: "Cardiac murmurs and other cardiac sounds", + }, + { + key: "R01.0", + en: "", + de: "Benign and innocent cardiac murmurs", + }, + { + key: "R01.1", + en: "", + de: "Cardiac murmur, unspecified", + }, + { + key: "R01.2", + en: "", + de: "Other cardiac sounds", + }, + { + key: "R02", + en: "", + de: "Gangrene, not elsewhere classified", + }, + { + key: "R03", + en: "", + de: "Abnormal blood-pressure reading, without diagnosis", + }, + { + key: "R03.0", + en: "", + de: "Elevated blood-pressure reading, without diagnosis of hypertension", + }, + { + key: "R03.1", + en: "", + de: "Nonspecific low blood-pressure reading", + }, + { + key: "R04", + en: "", + de: "Haemorrhage from respiratory passages", + }, + { + key: "R04.0", + en: "", + de: "Epistaxis", + }, + { + key: "R04.1", + en: "", + de: "Haemorrhage from throat", + }, + { + key: "R04.2", + en: "", + de: "Haemoptysis", + }, + { + key: "R04.8", + en: "", + de: "Haemorrhage from other sites in respiratory passages", + }, + { + key: "R04.9", + en: "", + de: "Haemorrhage from respiratory passages, unspecified", + }, + { + key: "R05", + en: "", + de: "Cough", + }, + { + key: "R06", + en: "", + de: "Abnormalities of breathing", + }, + { + key: "R06.0", + en: "", + de: "Dyspnoea", + }, + { + key: "R06.1", + en: "", + de: "Stridor", + }, + { + key: "R06.2", + en: "", + de: "Wheezing", + }, + { + key: "R06.3", + en: "", + de: "Periodic breathing", + }, + { + key: "R06.4", + en: "", + de: "Hyperventilation", + }, + { + key: "R06.5", + en: "", + de: "Mouth breathing", + }, + { + key: "R06.6", + en: "", + de: "Hiccough", + }, + { + key: "R06.7", + en: "", + de: "Sneezing", + }, + { + key: "R06.8", + en: "", + de: "Other and unspecified abnormalities of breathing", + }, + { + key: "R07", + en: "", + de: "Pain in throat and chest", + }, + { + key: "R07.0", + en: "", + de: "Pain in throat", + }, + { + key: "R07.1", + en: "", + de: "Chest pain on breathing", + }, + { + key: "R07.2", + en: "", + de: "Precordial pain", + }, + { + key: "R07.3", + en: "", + de: "Other chest pain", + }, + { + key: "R07.4", + en: "", + de: "Chest pain, unspecified", + }, + { + key: "R09", + en: "", + de: "Other symptoms and signs involving the circulatory and respiratory systems", + }, + { + key: "R09.0", + en: "", + de: "Asphyxia", + }, + { + key: "R09.1", + en: "", + de: "Pleurisy", + }, + { + key: "R09.2", + en: "", + de: "Respiratory arrest", + }, + { + key: "R09.3", + en: "", + de: "Abnormal sputum", + }, + { + key: "R09.8", + en: "", + de: "Other specified symptoms and signs involving the circulatory and respiratory systems", + }, + { + key: "R10", + en: "", + de: "Abdominal and pelvic pain", + }, + { + key: "R10.0", + en: "", + de: "Acute abdomen", + }, + { + key: "R10.1", + en: "", + de: "Pain localized to upper abdomen", + }, + { + key: "R10.2", + en: "", + de: "Pelvic and perineal pain", + }, + { + key: "R10.3", + en: "", + de: "Pain localized to other parts of lower abdomen", + }, + { + key: "R10.4", + en: "", + de: "Other and unspecified abdominal pain", + }, + { + key: "R11", + en: "", + de: "Nausea and vomiting", + }, + { + key: "R12", + en: "", + de: "Heartburn", + }, + { + key: "R13", + en: "", + de: "Dysphagia", + }, + { + key: "R14", + en: "", + de: "Flatulence and related conditions", + }, + { + key: "R15", + en: "", + de: "Faecal incontinence", + }, + { + key: "R16", + en: "", + de: "Hepatomegaly and splenomegaly, not elsewhere classified", + }, + { + key: "R16.0", + en: "", + de: "Hepatomegaly, not elsewhere classified", + }, + { + key: "R16.1", + en: "", + de: "Splenomegaly, not elsewhere classified", + }, + { + key: "R16.2", + en: "", + de: "Hepatomegaly with splenomegaly, not elsewhere classified", + }, + { + key: "R17", + en: "", + de: "Hyperbilirubinaemia, with or without jaundice, not elsewhere classified", + }, + { + key: "R17.0", + en: "", + de: "Hyperbilirubinaemia with mention of jaundice, not elsewhere classified", + }, + { + key: "R17.9", + en: "", + de: "Hyperbilirubinaemia without mention of jaundice, not elsewhere classified", + }, + { + key: "R18", + en: "", + de: "Ascites", + }, + { + key: "R19", + en: "", + de: "Other symptoms and signs involving the digestive system and abdomen", + }, + { + key: "R19.0", + en: "", + de: "Intra-abdominal and pelvic swelling, mass and lump", + }, + { + key: "R19.1", + en: "", + de: "Abnormal bowel sounds", + }, + { + key: "R19.2", + en: "", + de: "Visible peristalsis", + }, + { + key: "R19.3", + en: "", + de: "Abdominal rigidity", + }, + { + key: "R19.4", + en: "", + de: "Change in bowel habit", + }, + { + key: "R19.5", + en: "", + de: "Other faecal abnormalities", + }, + { + key: "R19.6", + en: "", + de: "Halitosis", + }, + { + key: "R19.8", + en: "", + de: "Other specified symptoms and signs involving the digestive system and abdomen", + }, + { + key: "R20", + en: "", + de: "Disturbances of skin sensation", + }, + { + key: "R20.0", + en: "", + de: "Anaesthesia of skin", + }, + { + key: "R20.1", + en: "", + de: "Hypoaesthesia of skin", + }, + { + key: "R20.2", + en: "", + de: "Paraesthesia of skin", + }, + { + key: "R20.3", + en: "", + de: "Hyperaesthesia", + }, + { + key: "R20.8", + en: "", + de: "Other and unspecified disturbances of skin sensation", + }, + { + key: "R21", + en: "", + de: "Rash and other nonspecific skin eruption", + }, + { + key: "R22", + en: "", + de: "Localized swelling, mass and lump of skin and subcutaneous tissue", + }, + { + key: "R22.0", + en: "", + de: "Localized swelling, mass and lump, head", + }, + { + key: "R22.1", + en: "", + de: "Localized swelling, mass and lump, neck", + }, + { + key: "R22.2", + en: "", + de: "Localized swelling, mass and lump, trunk", + }, + { + key: "R22.3", + en: "", + de: "Localized swelling, mass and lump, upper limb", + }, + { + key: "R22.4", + en: "", + de: "Localized swelling, mass and lump, lower limb", + }, + { + key: "R22.7", + en: "", + de: "Localized swelling, mass and lump, multiple sites", + }, + { + key: "R22.9", + en: "", + de: "Localized swelling, mass and lump, unspecified", + }, + { + key: "R23", + en: "", + de: "Other skin changes", + }, + { + key: "R23.0", + en: "", + de: "Cyanosis", + }, + { + key: "R23.1", + en: "", + de: "Pallor", + }, + { + key: "R23.2", + en: "", + de: "Flushing", + }, + { + key: "R23.3", + en: "", + de: "Spontaneous ecchymoses", + }, + { + key: "R23.4", + en: "", + de: "Changes in skin texture", + }, + { + key: "R23.8", + en: "", + de: "Other and unspecified skin changes", + }, + { + key: "R25", + en: "", + de: "Abnormal involuntary movements", + }, + { + key: "R25.0", + en: "", + de: "Abnormal head movements", + }, + { + key: "R25.1", + en: "", + de: "Tremor, unspecified", + }, + { + key: "R25.2", + en: "", + de: "Cramp and spasm", + }, + { + key: "R25.3", + en: "", + de: "Fasciculation", + }, + { + key: "R25.8", + en: "", + de: "Other and unspecified abnormal involuntary movements", + }, + { + key: "R26", + en: "", + de: "Abnormalities of gait and mobility", + }, + { + key: "R26.0", + en: "", + de: "Ataxic gait", + }, + { + key: "R26.1", + en: "", + de: "Paralytic gait", + }, + { + key: "R26.2", + en: "", + de: "Difficulty in walking, not elsewhere classified", + }, + { + key: "R26.3", + en: "", + de: "Immobility", + }, + { + key: "R26.8", + en: "", + de: "Other and unspecified abnormalities of gait and mobility", + }, + { + key: "R27", + en: "", + de: "Other lack of coordination", + }, + { + key: "R27.0", + en: "", + de: "Ataxia, unspecified", + }, + { + key: "R27.8", + en: "", + de: "Other and unspecified lack of coordination", + }, + { + key: "R29", + en: "", + de: "Other symptoms and signs involving the nervous and musculoskeletal systems", + }, + { + key: "R29.0", + en: "", + de: "Tetany", + }, + { + key: "R29.1", + en: "", + de: "Meningismus", + }, + { + key: "R29.2", + en: "", + de: "Abnormal reflex", + }, + { + key: "R29.3", + en: "", + de: "Abnormal posture", + }, + { + key: "R29.4", + en: "", + de: "Clicking hip", + }, + { + key: "R29.6", + en: "", + de: "Tendency to fall, not elsewhere classified", + }, + { + key: "R29.8", + en: "", + de: "Other and unspecified symptoms and signs involving the nervous and musculoskeletal systems", + }, + { + key: "R30", + en: "", + de: "Pain associated with micturition", + }, + { + key: "R30.0", + en: "", + de: "Dysuria", + }, + { + key: "R30.1", + en: "", + de: "Vesical tenesmus", + }, + { + key: "R30.9", + en: "", + de: "Painful micturition, unspecified", + }, + { + key: "R31", + en: "", + de: "Unspecified haematuria", + }, + { + key: "R32", + en: "", + de: "Unspecified urinary incontinence", + }, + { + key: "R33", + en: "", + de: "Retention of urine", + }, + { + key: "R34", + en: "", + de: "Anuria and oliguria", + }, + { + key: "R35", + en: "", + de: "Polyuria", + }, + { + key: "R36", + en: "", + de: "Urethral discharge", + }, + { + key: "R39", + en: "", + de: "Other symptoms and signs involving the urinary system", + }, + { + key: "R39.0", + en: "", + de: "Extravasation of urine", + }, + { + key: "R39.1", + en: "", + de: "Other difficulties with micturition", + }, + { + key: "R39.2", + en: "", + de: "Extrarenal uraemia", + }, + { + key: "R39.8", + en: "", + de: "Other and unspecified symptoms and signs involving the urinary system", + }, + { + key: "R40", + en: "", + de: "Somnolence, stupor and coma", + }, + { + key: "R40.0", + en: "", + de: "Somnolence", + }, + { + key: "R40.1", + en: "", + de: "Stupor", + }, + { + key: "R40.2", + en: "", + de: "Coma, unspecified", + }, + { + key: "R41", + en: "", + de: "Other symptoms and signs involving cognitive functions and awareness", + }, + { + key: "R41.0", + en: "", + de: "Disorientation, unspecified", + }, + { + key: "R41.1", + en: "", + de: "Anterograde amnesia", + }, + { + key: "R41.2", + en: "", + de: "Retrograde amnesia", + }, + { + key: "R41.3", + en: "", + de: "Other amnesia", + }, + { + key: "R41.8", + en: "", + de: "Other and unspecified symptoms and signs involving cognitive functions and awareness", + }, + { + key: "R42", + en: "", + de: "Dizziness and giddiness", + }, + { + key: "R43", + en: "", + de: "Disturbances of smell and taste", + }, + { + key: "R43.0", + en: "", + de: "Anosmia", + }, + { + key: "R43.1", + en: "", + de: "Parosmia", + }, + { + key: "R43.2", + en: "", + de: "Parageusia", + }, + { + key: "R43.8", + en: "", + de: "Other and unspecified disturbances of smell and taste", + }, + { + key: "R44", + en: "", + de: "Other symptoms and signs involving general sensations and perceptions", + }, + { + key: "R44.0", + en: "", + de: "Auditory hallucinations", + }, + { + key: "R44.1", + en: "", + de: "Visual hallucinations", + }, + { + key: "R44.2", + en: "", + de: "Other hallucinations", + }, + { + key: "R44.3", + en: "", + de: "Hallucinations, unspecified", + }, + { + key: "R44.8", + en: "", + de: "Other and unspecified symptoms and signs involving general sensations and perceptions", + }, + { + key: "R45", + en: "", + de: "Symptoms and signs involving emotional state", + }, + { + key: "R45.0", + en: "", + de: "Nervousness", + }, + { + key: "R45.1", + en: "", + de: "Restlessness and agitation", + }, + { + key: "R45.2", + en: "", + de: "Unhappiness", + }, + { + key: "R45.3", + en: "", + de: "Demoralization and apathy", + }, + { + key: "R45.4", + en: "", + de: "Irritability and anger", + }, + { + key: "R45.5", + en: "", + de: "Hostility", + }, + { + key: "R45.6", + en: "", + de: "Physical violence", + }, + { + key: "R45.7", + en: "", + de: "State of emotional shock and stress, unspecified", + }, + { + key: "R45.8", + en: "", + de: "Other symptoms and signs involving emotional state", + }, + { + key: "R46", + en: "", + de: "Symptoms and signs involving appearance and behaviour", + }, + { + key: "R46.0", + en: "", + de: "Very low level of personal hygiene", + }, + { + key: "R46.1", + en: "", + de: "Bizarre personal appearance", + }, + { + key: "R46.2", + en: "", + de: "Strange and inexplicable behaviour", + }, + { + key: "R46.3", + en: "", + de: "Overactivity", + }, + { + key: "R46.4", + en: "", + de: "Slowness and poor responsiveness", + }, + { + key: "R46.5", + en: "", + de: "Suspiciousness and marked evasiveness", + }, + { + key: "R46.6", + en: "", + de: "Undue concern and preoccupation with stressful events", + }, + { + key: "R46.7", + en: "", + de: "Verbosity and circumstantial detail obscuring reason for contact", + }, + { + key: "R46.8", + en: "", + de: "Other symptoms and signs involving appearance and behaviour", + }, + { + key: "R47", + en: "", + de: "Speech disturbances, not elsewhere classified", + }, + { + key: "R47.0", + en: "", + de: "Dysphasia and aphasia", + }, + { + key: "R47.1", + en: "", + de: "Dysarthria and anarthria", + }, + { + key: "R47.8", + en: "", + de: "Other and unspecified speech disturbances", + }, + { + key: "R48", + en: "", + de: "Dyslexia and other symbolic dysfunctions, not elsewhere classified", + }, + { + key: "R48.0", + en: "", + de: "Dyslexia and alexia", + }, + { + key: "R48.1", + en: "", + de: "Agnosia", + }, + { + key: "R48.2", + en: "", + de: "Apraxia", + }, + { + key: "R48.8", + en: "", + de: "Other and unspecified symbolic dysfunctions", + }, + { + key: "R49", + en: "", + de: "Voice disturbances", + }, + { + key: "R49.0", + en: "", + de: "Dysphonia", + }, + { + key: "R49.1", + en: "", + de: "Aphonia", + }, + { + key: "R49.2", + en: "", + de: "Hypernasality and hyponasality", + }, + { + key: "R49.8", + en: "", + de: "Other and unspecified voice disturbances", + }, + { + key: "R50", + en: "", + de: "Fever of other and unknown origin", + }, + { + key: "R50.2", + en: "", + de: "Drug-induced fever", + }, + { + key: "R50.8", + en: "", + de: "Other specified fever", + }, + { + key: "R50.9", + en: "", + de: "Fever, unspecified", + }, + { + key: "R51", + en: "", + de: "Headache", + }, + { + key: "R52", + en: "", + de: "Pain, not elsewhere classified", + }, + { + key: "R52.0", + en: "", + de: "Acute pain", + }, + { + key: "R52.1", + en: "", + de: "Chronic intractable pain", + }, + { + key: "R52.2", + en: "", + de: "Other chronic pain", + }, + { + key: "R52.9", + en: "", + de: "Pain, unspecified", + }, + { + key: "R53", + en: "", + de: "Malaise and fatigue", + }, + { + key: "R54", + en: "", + de: "Senility", + }, + { + key: "R55", + en: "", + de: "Syncope and collapse", + }, + { + key: "R56", + en: "", + de: "Convulsions, not elsewhere classified", + }, + { + key: "R56.0", + en: "", + de: "Febrile convulsions", + }, + { + key: "R56.8", + en: "", + de: "Other and unspecified convulsions", + }, + { + key: "R57", + en: "", + de: "Shock, not elsewhere classified", + }, + { + key: "R57.0", + en: "", + de: "Cardiogenic shock", + }, + { + key: "R57.1", + en: "", + de: "Hypovolaemic shock", + }, + { + key: "R57.2", + en: "", + de: "Septic shock", + }, + { + key: "R57.8", + en: "", + de: "Other shock", + }, + { + key: "R57.9", + en: "", + de: "Shock, unspecified", + }, + { + key: "R58", + en: "", + de: "Haemorrhage, not elsewhere classified", + }, + { + key: "R59", + en: "", + de: "Enlarged lymph nodes", + }, + { + key: "R59.0", + en: "", + de: "Localized enlarged lymph nodes", + }, + { + key: "R59.1", + en: "", + de: "Generalized enlarged lymph nodes", + }, + { + key: "R59.9", + en: "", + de: "Enlarged lymph nodes, unspecified", + }, + { + key: "R60", + en: "", + de: "Oedema, not elsewhere classified", + }, + { + key: "R60.0", + en: "", + de: "Localized oedema", + }, + { + key: "R60.1", + en: "", + de: "Generalized oedema", + }, + { + key: "R60.9", + en: "", + de: "Oedema, unspecified", + }, + { + key: "R61", + en: "", + de: "Hyperhidrosis", + }, + { + key: "R61.0", + en: "", + de: "Localized hyperhidrosis", + }, + { + key: "R61.1", + en: "", + de: "Generalized hyperhidrosis", + }, + { + key: "R61.9", + en: "", + de: "Hyperhidrosis, unspecified", + }, + { + key: "R62", + en: "", + de: "Lack of expected normal physiological development", + }, + { + key: "R62.0", + en: "", + de: "Delayed milestone", + }, + { + key: "R62.8", + en: "", + de: "Other lack of expected normal physiological development", + }, + { + key: "R62.9", + en: "", + de: "Lack of expected normal physiological development, unspecified", + }, + { + key: "R63", + en: "", + de: "Symptoms and signs concerning food and fluid intake", + }, + { + key: "R63.0", + en: "", + de: "Anorexia", + }, + { + key: "R63.1", + en: "", + de: "Polydipsia", + }, + { + key: "R63.2", + en: "", + de: "Polyphagia", + }, + { + key: "R63.3", + en: "", + de: "Feeding difficulties and mismanagement", + }, + { + key: "R63.4", + en: "", + de: "Abnormal weight loss", + }, + { + key: "R63.5", + en: "", + de: "Abnormal weight gain", + }, + { + key: "R63.6", + en: "", + de: "Insufficient intake of food and water", + }, + { + key: "R63.8", + en: "", + de: "Other symptoms and signs concerning food and fluid intake", + }, + { + key: "R64", + en: "", + de: "Cachexia", + }, + { + key: "R68", + en: "", + de: "Other general symptoms and signs", + }, + { + key: "R68.0", + en: "", + de: "Hypothermia, not associated with low environmental temperature", + }, + { + key: "R68.1", + en: "", + de: "Nonspecific symptoms peculiar to infancy", + }, + { + key: "R68.2", + en: "", + de: "Dry mouth, unspecified", + }, + { + key: "R68.3", + en: "", + de: "Clubbing of fingers", + }, + { + key: "R68.8", + en: "", + de: "Other specified general symptoms and signs", + }, + { + key: "R69", + en: "", + de: "Unknown and unspecified causes of morbidity", + }, + { + key: "R70", + en: "", + de: "Elevated erythrocyte sedimentation rate and abnormality of plasma viscosity", + }, + { + key: "R70.0", + en: "", + de: "Elevated erythrocyte sedimentation rate", + }, + { + key: "R70.1", + en: "", + de: "Abnormal plasma viscosity", + }, + { + key: "R71", + en: "", + de: "Abnormality of red blood cells", + }, + { + key: "R72", + en: "", + de: "Abnormality of white blood cells, not elsewhere classified", + }, + { + key: "R73", + en: "", + de: "Elevated blood glucose level", + }, + { + key: "R73.0", + en: "", + de: "Abnormal glucose tolerance test", + }, + { + key: "R73.9", + en: "", + de: "Hyperglycaemia, unspecified", + }, + { + key: "R74", + en: "", + de: "Abnormal serum enzyme levels", + }, + { + key: "R74.0", + en: "", + de: "Elevation of levels of transaminase and lactic acid dehydrogenase [LDH]", + }, + { + key: "R74.8", + en: "", + de: "Abnormal levels of other serum enzymes", + }, + { + key: "R74.9", + en: "", + de: "Abnormal level of unspecified serum enzyme", + }, + { + key: "R75", + en: "", + de: "Laboratory evidence of human immunodeficiency virus [HIV]", + }, + { + key: "R76", + en: "", + de: "Other abnormal immunological findings in serum", + }, + { + key: "R76.0", + en: "", + de: "Raised antibody titre", + }, + { + key: "R76.1", + en: "", + de: "Abnormal reaction to tuberculin test", + }, + { + key: "R76.2", + en: "", + de: "False-positive serological test for syphilis", + }, + { + key: "R76.8", + en: "", + de: "Other specified abnormal immunological findings in serum", + }, + { + key: "R76.9", + en: "", + de: "Abnormal immunological finding in serum, unspecified", + }, + { + key: "R77", + en: "", + de: "Other abnormalities of plasma proteins", + }, + { + key: "R77.0", + en: "", + de: "Abnormality of albumin", + }, + { + key: "R77.1", + en: "", + de: "Abnormality of globulin", + }, + { + key: "R77.2", + en: "", + de: "Abnormality of alphafetoprotein", + }, + { + key: "R77.8", + en: "", + de: "Other specified abnormalities of plasma proteins", + }, + { + key: "R77.9", + en: "", + de: "Abnormality of plasma protein, unspecified", + }, + { + key: "R78", + en: "", + de: "Findings of drugs and other substances, not normally found in blood", + }, + { + key: "R78.0", + en: "", + de: "Finding of alcohol in blood", + }, + { + key: "R78.1", + en: "", + de: "Finding of opiate drug in blood", + }, + { + key: "R78.2", + en: "", + de: "Finding of cocaine in blood", + }, + { + key: "R78.3", + en: "", + de: "Finding of hallucinogen in blood", + }, + { + key: "R78.4", + en: "", + de: "Finding of other drugs of addictive potential in blood", + }, + { + key: "R78.5", + en: "", + de: "Finding of psychotropic drug in blood", + }, + { + key: "R78.6", + en: "", + de: "Finding of steroid agent in blood", + }, + { + key: "R78.7", + en: "", + de: "Finding of abnormal level of heavy metals in blood", + }, + { + key: "R78.8", + en: "", + de: "Finding of other specified substances, not normally found in blood", + }, + { + key: "R78.9", + en: "", + de: "Finding of unspecified substance, not normally found in blood", + }, + { + key: "R79", + en: "", + de: "Other abnormal findings of blood chemistry", + }, + { + key: "R79.0", + en: "", + de: "Abnormal level of blood mineral", + }, + { + key: "R79.8", + en: "", + de: "Other specified abnormal findings of blood chemistry", + }, + { + key: "R79.9", + en: "", + de: "Abnormal finding of blood chemistry, unspecified", + }, + { + key: "R80", + en: "", + de: "Isolated proteinuria", + }, + { + key: "R81", + en: "", + de: "Glycosuria", + }, + { + key: "R82", + en: "", + de: "Other abnormal findings in urine", + }, + { + key: "R82.0", + en: "", + de: "Chyluria", + }, + { + key: "R82.1", + en: "", + de: "Myoglobinuria", + }, + { + key: "R82.2", + en: "", + de: "Biliuria", + }, + { + key: "R82.3", + en: "", + de: "Haemoglobinuria", + }, + { + key: "R82.4", + en: "", + de: "Acetonuria", + }, + { + key: "R82.5", + en: "", + de: "Elevated urine levels of drugs, medicaments and biological substances", + }, + { + key: "R82.6", + en: "", + de: "Abnormal urine levels of substances chiefly nonmedicinal as to source", + }, + { + key: "R82.7", + en: "", + de: "Abnormal findings on microbiological examination of urine", + }, + { + key: "R82.8", + en: "", + de: "Abnormal findings on cytological and histological examination of urine", + }, + { + key: "R82.9", + en: "", + de: "Other and unspecified abnormal findings in urine", + }, + { + key: "R83", + en: "", + de: "Abnormal findings in cerebrospinal fluid", + }, + { + key: "R84", + en: "", + de: "Abnormal findings in specimens from respiratory organs and thorax", + }, + { + key: "R85", + en: "", + de: "Abnormal findings in specimens from digestive organs and abdominal cavity", + }, + { + key: "R86", + en: "", + de: "Abnormal findings in specimens from male genital organs", + }, + { + key: "R87", + en: "", + de: "Abnormal findings in specimens from female genital organs", + }, + { + key: "R89", + en: "", + de: "Abnormal findings in specimens from other organs, systems and tissues", + }, + { + key: "R90", + en: "", + de: "Abnormal findings on diagnostic imaging of central nervous system", + }, + { + key: "R90.0", + en: "", + de: "Intracranial space-occupying lesion", + }, + { + key: "R90.8", + en: "", + de: "Other abnormal findings on diagnostic imaging of central nervous system", + }, + { + key: "R91", + en: "", + de: "Abnormal findings on diagnostic imaging of lung", + }, + { + key: "R92", + en: "", + de: "Abnormal findings on diagnostic imaging of breast", + }, + { + key: "R93", + en: "", + de: "Abnormal findings on diagnostic imaging of other body structures", + }, + { + key: "R93.0", + en: "", + de: "Abnormal findings on diagnostic imaging of skull and head, not elsewhere classified", + }, + { + key: "R93.1", + en: "", + de: "Abnormal findings on diagnostic imaging of heart and coronary circulation", + }, + { + key: "R93.2", + en: "", + de: "Abnormal findings on diagnostic imaging of liver and biliary tract", + }, + { + key: "R93.3", + en: "", + de: "Abnormal findings on diagnostic imaging of other parts of digestive tract", + }, + { + key: "R93.4", + en: "", + de: "Abnormal findings on diagnostic imaging of urinary organs", + }, + { + key: "R93.5", + en: "", + de: "Abnormal findings on diagnostic imaging of other abdominal regions, including retroperitoneum", + }, + { + key: "R93.6", + en: "", + de: "Abnormal findings on diagnostic imaging of limbs", + }, + { + key: "R93.7", + en: "", + de: "Abnormal findings on diagnostic imaging of other parts of musculoskeletal system", + }, + { + key: "R93.8", + en: "", + de: "Abnormal findings on diagnostic imaging of other specified body structures", + }, + { + key: "R94", + en: "", + de: "Abnormal results of function studies", + }, + { + key: "R94.0", + en: "", + de: "Abnormal results of function studies of central nervous system", + }, + { + key: "R94.1", + en: "", + de: "Abnormal results of function studies of peripheral nervous system and special senses", + }, + { + key: "R94.2", + en: "", + de: "Abnormal results of pulmonary function studies", + }, + { + key: "R94.3", + en: "", + de: "Abnormal results of cardiovascular function studies", + }, + { + key: "R94.4", + en: "", + de: "Abnormal results of kidney function studies", + }, + { + key: "R94.5", + en: "", + de: "Abnormal results of liver function studies", + }, + { + key: "R94.6", + en: "", + de: "Abnormal results of thyroid function studies", + }, + { + key: "R94.7", + en: "", + de: "Abnormal results of other endocrine function studies", + }, + { + key: "R94.8", + en: "", + de: "Abnormal results of function studies of other organs and systems", + }, + { + key: "R95", + en: "", + de: "Sudden infant death syndrome", + }, + { + key: "R95.0", + en: "", + de: "Sudden infant death syndrome with mention of autopsy", + }, + { + key: "R95.9", + en: "", + de: "Sudden infant death syndrome without mention of autopsy", + }, + { + key: "R96", + en: "", + de: "Other sudden death, cause unknown", + }, + { + key: "R96.0", + en: "", + de: "Instantaneous death", + }, + { + key: "R96.1", + en: "", + de: "Death occurring less than 24 hours from onset of symptoms, not otherwise explained", + }, + { + key: "R98", + en: "", + de: "Unattended death", + }, + { + key: "R99", + en: "", + de: "Other ill-defined and unspecified causes of mortality", + }, + { + key: "S00", + en: "", + de: "Superficial injury of head", + }, + { + key: "S00.0", + en: "", + de: "Superficial injury of scalp", + }, + { + key: "S00.1", + en: "", + de: "Contusion of eyelid and periocular area", + }, + { + key: "S00.2", + en: "", + de: "Other superficial injuries of eyelid and periocular area", + }, + { + key: "S00.3", + en: "", + de: "Superficial injury of nose", + }, + { + key: "S00.4", + en: "", + de: "Superficial injury of ear", + }, + { + key: "S00.5", + en: "", + de: "Superficial injury of lip and oral cavity", + }, + { + key: "S00.7", + en: "", + de: "Multiple superficial injuries of head", + }, + { + key: "S00.8", + en: "", + de: "Superficial injury of other parts of head", + }, + { + key: "S00.9", + en: "", + de: "Superficial injury of head, part unspecified", + }, + { + key: "S01", + en: "", + de: "Open wound of head", + }, + { + key: "S01.0", + en: "", + de: "Open wound of scalp", + }, + { + key: "S01.1", + en: "", + de: "Open wound of eyelid and periocular area", + }, + { + key: "S01.2", + en: "", + de: "Open wound of nose", + }, + { + key: "S01.3", + en: "", + de: "Open wound of ear", + }, + { + key: "S01.4", + en: "", + de: "Open wound of cheek and temporomandibular area", + }, + { + key: "S01.5", + en: "", + de: "Open wound of lip and oral cavity", + }, + { + key: "S01.7", + en: "", + de: "Multiple open wounds of head", + }, + { + key: "S01.8", + en: "", + de: "Open wound of other parts of head", + }, + { + key: "S01.9", + en: "", + de: "Open wound of head, part unspecified", + }, + { + key: "S02", + en: "", + de: "Fracture of skull and facial bones", + }, + { + key: "S02.0", + en: "", + de: "Fracture of vault of skull", + }, + { + key: "S02.1", + en: "", + de: "Fracture of base of skull", + }, + { + key: "S02.2", + en: "", + de: "Fracture of nasal bones", + }, + { + key: "S02.3", + en: "", + de: "Fracture of orbital floor", + }, + { + key: "S02.4", + en: "", + de: "Fracture of malar and maxillary bones", + }, + { + key: "S02.5", + en: "", + de: "Fracture of tooth", + }, + { + key: "S02.6", + en: "", + de: "Fracture of mandible", + }, + { + key: "S02.7", + en: "", + de: "Multiple fractures involving skull and facial bones", + }, + { + key: "S02.8", + en: "", + de: "Fractures of other skull and facial bones", + }, + { + key: "S02.9", + en: "", + de: "Fracture of skull and facial bones, part unspecified", + }, + { + key: "S03", + en: "", + de: "Dislocation, sprain and strain of joints and ligaments of head", + }, + { + key: "S03.0", + en: "", + de: "Dislocation of jaw", + }, + { + key: "S03.1", + en: "", + de: "Dislocation of septal cartilage of nose", + }, + { + key: "S03.2", + en: "", + de: "Dislocation of tooth", + }, + { + key: "S03.3", + en: "", + de: "Dislocation of other and unspecified parts of head", + }, + { + key: "S03.4", + en: "", + de: "Sprain and strain of jaw", + }, + { + key: "S03.5", + en: "", + de: "Sprain and strain of joints and ligaments of other and unspecified parts of head", + }, + { + key: "S04", + en: "", + de: "Injury of cranial nerves", + }, + { + key: "S04.0", + en: "", + de: "Injury of optic nerve and pathways", + }, + { + key: "S04.1", + en: "", + de: "Injury of oculomotor nerve", + }, + { + key: "S04.2", + en: "", + de: "Injury of trochlear nerve", + }, + { + key: "S04.3", + en: "", + de: "Injury of trigeminal nerve", + }, + { + key: "S04.4", + en: "", + de: "Injury of abducent nerve", + }, + { + key: "S04.5", + en: "", + de: "Injury of facial nerve", + }, + { + key: "S04.6", + en: "", + de: "Injury of acoustic nerve", + }, + { + key: "S04.7", + en: "", + de: "Injury of accessory nerve", + }, + { + key: "S04.8", + en: "", + de: "Injury of other cranial nerves", + }, + { + key: "S04.9", + en: "", + de: "Injury of unspecified cranial nerve", + }, + { + key: "S05", + en: "", + de: "Injury of eye and orbit", + }, + { + key: "S05.0", + en: "", + de: "Injury of conjunctiva and corneal abrasion without mention of foreign body", + }, + { + key: "S05.1", + en: "", + de: "Contusion of eyeball and orbital tissues", + }, + { + key: "S05.2", + en: "", + de: "Ocular laceration and rupture with prolapse or loss of intraocular tissue", + }, + { + key: "S05.3", + en: "", + de: "Ocular laceration without prolapse or loss of intraocular tissue", + }, + { + key: "S05.4", + en: "", + de: "Penetrating wound of orbit with or without foreign body", + }, + { + key: "S05.5", + en: "", + de: "Penetrating wound of eyeball with foreign body", + }, + { + key: "S05.6", + en: "", + de: "Penetrating wound of eyeball without foreign body", + }, + { + key: "S05.7", + en: "", + de: "Avulsion of eye", + }, + { + key: "S05.8", + en: "", + de: "Other injuries of eye and orbit", + }, + { + key: "S05.9", + en: "", + de: "Injury of eye and orbit, unspecified", + }, + { + key: "S06", + en: "", + de: "Intracranial injury", + }, + { + key: "S06.0", + en: "", + de: "Concussion", + }, + { + key: "S06.1", + en: "", + de: "Traumatic cerebral oedema", + }, + { + key: "S06.2", + en: "", + de: "Diffuse brain injury", + }, + { + key: "S06.3", + en: "", + de: "Focal brain injury", + }, + { + key: "S06.4", + en: "", + de: "Epidural haemorrhage", + }, + { + key: "S06.5", + en: "", + de: "Traumatic subdural haemorrhage", + }, + { + key: "S06.6", + en: "", + de: "Traumatic subarachnoid haemorrhage", + }, + { + key: "S06.8", + en: "", + de: "Other intracranial injuries", + }, + { + key: "S06.9", + en: "", + de: "Intracranial injury, unspecified", + }, + { + key: "S07", + en: "", + de: "Crushing injury of head", + }, + { + key: "S07.0", + en: "", + de: "Crushing injury of face", + }, + { + key: "S07.1", + en: "", + de: "Crushing injury of skull", + }, + { + key: "S07.8", + en: "", + de: "Crushing injury of other parts of head", + }, + { + key: "S07.9", + en: "", + de: "Crushing injury of head, part unspecified", + }, + { + key: "S08", + en: "", + de: "Traumatic amputation of part of head", + }, + { + key: "S08.0", + en: "", + de: "Avulsion of scalp", + }, + { + key: "S08.1", + en: "", + de: "Traumatic amputation of ear", + }, + { + key: "S08.8", + en: "", + de: "Traumatic amputation of other parts of head", + }, + { + key: "S08.9", + en: "", + de: "Traumatic amputation of unspecified part of head", + }, + { + key: "S09", + en: "", + de: "Other and unspecified injuries of head", + }, + { + key: "S09.0", + en: "", + de: "Injury of blood vessels of head, not elsewhere classified", + }, + { + key: "S09.1", + en: "", + de: "Injury of muscle and tendon of head", + }, + { + key: "S09.2", + en: "", + de: "Traumatic rupture of ear drum", + }, + { + key: "S09.7", + en: "", + de: "Multiple injuries of head", + }, + { + key: "S09.8", + en: "", + de: "Other specified injuries of head", + }, + { + key: "S09.9", + en: "", + de: "Unspecified injury of head", + }, + { + key: "S10", + en: "", + de: "Superficial injury of neck", + }, + { + key: "S10.0", + en: "", + de: "Contusion of throat", + }, + { + key: "S10.1", + en: "", + de: "Other and unspecified superficial injuries of throat", + }, + { + key: "S10.7", + en: "", + de: "Multiple superficial injuries of neck", + }, + { + key: "S10.8", + en: "", + de: "Superficial injury of other parts of neck", + }, + { + key: "S10.9", + en: "", + de: "Superficial injury of neck, part unspecified", + }, + { + key: "S11", + en: "", + de: "Open wound of neck", + }, + { + key: "S11.0", + en: "", + de: "Open wound involving larynx and trachea", + }, + { + key: "S11.1", + en: "", + de: "Open wound involving thyroid gland", + }, + { + key: "S11.2", + en: "", + de: "Open wound involving pharynx and cervical oesophagus", + }, + { + key: "S11.7", + en: "", + de: "Multiple open wounds of neck", + }, + { + key: "S11.8", + en: "", + de: "Open wound of other parts of neck", + }, + { + key: "S11.9", + en: "", + de: "Open wound of neck, part unspecified", + }, + { + key: "S12", + en: "", + de: "Fracture of neck", + }, + { + key: "S12.0", + en: "", + de: "Fracture of first cervical vertebra", + }, + { + key: "S12.1", + en: "", + de: "Fracture of second cervical vertebra", + }, + { + key: "S12.2", + en: "", + de: "Fracture of other specified cervical vertebra", + }, + { + key: "S12.7", + en: "", + de: "Multiple fractures of cervical spine", + }, + { + key: "S12.8", + en: "", + de: "Fracture of other parts of neck", + }, + { + key: "S12.9", + en: "", + de: "Fracture of neck, part unspecified", + }, + { + key: "S13", + en: "", + de: "Dislocation, sprain and strain of joints and ligaments at neck level", + }, + { + key: "S13.0", + en: "", + de: "Traumatic rupture of cervical intervertebral disc", + }, + { + key: "S13.1", + en: "", + de: "Dislocation of cervical vertebra", + }, + { + key: "S13.2", + en: "", + de: "Dislocation of other and unspecified parts of neck", + }, + { + key: "S13.3", + en: "", + de: "Multiple dislocations of neck", + }, + { + key: "S13.4", + en: "", + de: "Sprain and strain of cervical spine", + }, + { + key: "S13.5", + en: "", + de: "Sprain and strain of thyroid region", + }, + { + key: "S13.6", + en: "", + de: "Sprain and strain of joints and ligaments of other and unspecified parts of neck", + }, + { + key: "S14", + en: "", + de: "Injury of nerves and spinal cord at neck level", + }, + { + key: "S14.0", + en: "", + de: "Concussion and oedema of cervical spinal cord", + }, + { + key: "S14.1", + en: "", + de: "Other and unspecified injuries of cervical spinal cord", + }, + { + key: "S14.2", + en: "", + de: "Injury of nerve root of cervical spine", + }, + { + key: "S14.3", + en: "", + de: "Injury of brachial plexus", + }, + { + key: "S14.4", + en: "", + de: "Injury of peripheral nerves of neck", + }, + { + key: "S14.5", + en: "", + de: "Injury of cervical sympathetic nerves", + }, + { + key: "S14.6", + en: "", + de: "Injury of other and unspecified nerves of neck", + }, + { + key: "S15", + en: "", + de: "Injury of blood vessels at neck level", + }, + { + key: "S15.0", + en: "", + de: "Injury of carotid artery", + }, + { + key: "S15.1", + en: "", + de: "Injury of vertebral artery", + }, + { + key: "S15.2", + en: "", + de: "Injury of external jugular vein", + }, + { + key: "S15.3", + en: "", + de: "Injury of internal jugular vein", + }, + { + key: "S15.7", + en: "", + de: "Injury of multiple blood vessels at neck level", + }, + { + key: "S15.8", + en: "", + de: "Injury of other blood vessels at neck level", + }, + { + key: "S15.9", + en: "", + de: "Injury of unspecified blood vessel at neck level", + }, + { + key: "S16", + en: "", + de: "Injury of muscle and tendon at neck level", + }, + { + key: "S17", + en: "", + de: "Crushing injury of neck", + }, + { + key: "S17.0", + en: "", + de: "Crushing injury of larynx and trachea", + }, + { + key: "S17.8", + en: "", + de: "Crushing injury of other parts of neck", + }, + { + key: "S17.9", + en: "", + de: "Crushing injury of neck, part unspecified", + }, + { + key: "S18", + en: "", + de: "Traumatic amputation at neck level", + }, + { + key: "S19", + en: "", + de: "Other and unspecified injuries of neck", + }, + { + key: "S19.7", + en: "", + de: "Multiple injuries of neck", + }, + { + key: "S19.8", + en: "", + de: "Other specified injuries of neck", + }, + { + key: "S19.9", + en: "", + de: "Unspecified injury of neck", + }, + { + key: "S20", + en: "", + de: "Superficial injury of thorax", + }, + { + key: "S20.0", + en: "", + de: "Contusion of breast", + }, + { + key: "S20.1", + en: "", + de: "Other and unspecified superficial injuries of breast", + }, + { + key: "S20.2", + en: "", + de: "Contusion of thorax", + }, + { + key: "S20.3", + en: "", + de: "Other superficial injuries of front wall of thorax", + }, + { + key: "S20.4", + en: "", + de: "Other superficial injuries of back wall of thorax", + }, + { + key: "S20.7", + en: "", + de: "Multiple superficial injuries of thorax", + }, + { + key: "S20.8", + en: "", + de: "Superficial injury of other and unspecified parts of thorax", + }, + { + key: "S21", + en: "", + de: "Open wound of thorax", + }, + { + key: "S21.0", + en: "", + de: "Open wound of breast", + }, + { + key: "S21.1", + en: "", + de: "Open wound of front wall of thorax", + }, + { + key: "S21.2", + en: "", + de: "Open wound of back wall of thorax", + }, + { + key: "S21.7", + en: "", + de: "Multiple open wounds of thoracic wall", + }, + { + key: "S21.8", + en: "", + de: "Open wound of other parts of thorax", + }, + { + key: "S21.9", + en: "", + de: "Open wound of thorax, part unspecified", + }, + { + key: "S22", + en: "", + de: "Fracture of rib(s), sternum and thoracic spine", + }, + { + key: "S22.0", + en: "", + de: "Fracture of thoracic vertebra", + }, + { + key: "S22.1", + en: "", + de: "Multiple fractures of thoracic spine", + }, + { + key: "S22.2", + en: "", + de: "Fracture of sternum", + }, + { + key: "S22.3", + en: "", + de: "Fracture of rib", + }, + { + key: "S22.4", + en: "", + de: "Multiple fractures of ribs", + }, + { + key: "S22.5", + en: "", + de: "Flail chest", + }, + { + key: "S22.8", + en: "", + de: "Fracture of other parts of bony thorax", + }, + { + key: "S22.9", + en: "", + de: "Fracture of bony thorax, part unspecified", + }, + { + key: "S23", + en: "", + de: "Dislocation, sprain and strain of joints and ligaments of thorax", + }, + { + key: "S23.0", + en: "", + de: "Traumatic rupture of thoracic intervertebral disc", + }, + { + key: "S23.1", + en: "", + de: "Dislocation of thoracic vertebra", + }, + { + key: "S23.2", + en: "", + de: "Dislocation of other and unspecified parts of thorax", + }, + { + key: "S23.3", + en: "", + de: "Sprain and strain of thoracic spine", + }, + { + key: "S23.4", + en: "", + de: "Sprain and strain of ribs and sternum", + }, + { + key: "S23.5", + en: "", + de: "Sprain and strain of other and unspecified parts of thorax", + }, + { + key: "S24", + en: "", + de: "Injury of nerves and spinal cord at thorax level", + }, + { + key: "S24.0", + en: "", + de: "Concussion and oedema of thoracic spinal cord", + }, + { + key: "S24.1", + en: "", + de: "Other and unspecified injuries of thoracic spinal cord", + }, + { + key: "S24.2", + en: "", + de: "Injury of nerve root of thoracic spine", + }, + { + key: "S24.3", + en: "", + de: "Injury of peripheral nerves of thorax", + }, + { + key: "S24.4", + en: "", + de: "Injury of thoracic sympathetic nerves", + }, + { + key: "S24.5", + en: "", + de: "Injury of other nerves of thorax", + }, + { + key: "S24.6", + en: "", + de: "Injury of unspecified nerve of thorax", + }, + { + key: "S25", + en: "", + de: "Injury of blood vessels of thorax", + }, + { + key: "S25.0", + en: "", + de: "Injury of thoracic aorta", + }, + { + key: "S25.1", + en: "", + de: "Injury of innominate or subclavian artery", + }, + { + key: "S25.2", + en: "", + de: "Injury of superior vena cava", + }, + { + key: "S25.3", + en: "", + de: "Injury of innominate or subclavian vein", + }, + { + key: "S25.4", + en: "", + de: "Injury of pulmonary blood vessels", + }, + { + key: "S25.5", + en: "", + de: "Injury of intercostal blood vessels", + }, + { + key: "S25.7", + en: "", + de: "Injury of multiple blood vessels of thorax", + }, + { + key: "S25.8", + en: "", + de: "Injury of other blood vessels of thorax", + }, + { + key: "S25.9", + en: "", + de: "Injury of unspecified blood vessel of thorax", + }, + { + key: "S26", + en: "", + de: "Injury of heart", + }, + { + key: "S26.0", + en: "", + de: "Injury of heart with haemopericardium", + }, + { + key: "S26.8", + en: "", + de: "Other injuries of heart", + }, + { + key: "S26.9", + en: "", + de: "Injury of heart, unspecified", + }, + { + key: "S27", + en: "", + de: "Injury of other and unspecified intrathoracic organs", + }, + { + key: "S27.0", + en: "", + de: "Traumatic pneumothorax", + }, + { + key: "S27.1", + en: "", + de: "Traumatic haemothorax", + }, + { + key: "S27.2", + en: "", + de: "Traumatic haemopneumothorax", + }, + { + key: "S27.3", + en: "", + de: "Other injuries of lung", + }, + { + key: "S27.4", + en: "", + de: "Injury of bronchus", + }, + { + key: "S27.5", + en: "", + de: "Injury of thoracic trachea", + }, + { + key: "S27.6", + en: "", + de: "Injury of pleura", + }, + { + key: "S27.7", + en: "", + de: "Multiple injuries of intrathoracic organs", + }, + { + key: "S27.8", + en: "", + de: "Injury of other specified intrathoracic organs", + }, + { + key: "S27.9", + en: "", + de: "Injury of unspecified intrathoracic organ", + }, + { + key: "S28", + en: "", + de: "Crushing injury of thorax and traumatic amputation of part of thorax", + }, + { + key: "S28.0", + en: "", + de: "Crushed chest", + }, + { + key: "S28.1", + en: "", + de: "Traumatic amputation of part of thorax", + }, + { + key: "S29", + en: "", + de: "Other and unspecified injuries of thorax", + }, + { + key: "S29.0", + en: "", + de: "Injury of muscle and tendon at thorax level", + }, + { + key: "S29.7", + en: "", + de: "Multiple injuries of thorax", + }, + { + key: "S29.8", + en: "", + de: "Other specified injuries of thorax", + }, + { + key: "S29.9", + en: "", + de: "Unspecified injury of thorax", + }, + { + key: "S30", + en: "", + de: "Superficial injury of abdomen, lower back and pelvis", + }, + { + key: "S30.0", + en: "", + de: "Contusion of lower back and pelvis", + }, + { + key: "S30.1", + en: "", + de: "Contusion of abdominal wall", + }, + { + key: "S30.2", + en: "", + de: "Contusion of external genital organs", + }, + { + key: "S30.7", + en: "", + de: "Multiple superficial injuries of abdomen, lower back and pelvis", + }, + { + key: "S30.8", + en: "", + de: "Other superficial injuries of abdomen, lower back and pelvis", + }, + { + key: "S30.9", + en: "", + de: "Superficial injury of abdomen, lower back and pelvis, part unspecified", + }, + { + key: "S31", + en: "", + de: "Open wound of abdomen, lower back and pelvis", + }, + { + key: "S31.0", + en: "", + de: "Open wound of lower back and pelvis", + }, + { + key: "S31.1", + en: "", + de: "Open wound of abdominal wall", + }, + { + key: "S31.2", + en: "", + de: "Open wound of penis", + }, + { + key: "S31.3", + en: "", + de: "Open wound of scrotum and testes", + }, + { + key: "S31.4", + en: "", + de: "Open wound of vagina and vulva", + }, + { + key: "S31.5", + en: "", + de: "Open wound of other and unspecified external genital organs", + }, + { + key: "S31.7", + en: "", + de: "Multiple open wounds of abdomen, lower back and pelvis", + }, + { + key: "S31.8", + en: "", + de: "Open wound of other and unspecified parts of abdomen", + }, + { + key: "S32", + en: "", + de: "Fracture of lumbar spine and pelvis", + }, + { + key: "S32.0", + en: "", + de: "Fracture of lumbar vertebra", + }, + { + key: "S32.1", + en: "", + de: "Fracture of sacrum", + }, + { + key: "S32.2", + en: "", + de: "Fracture of coccyx", + }, + { + key: "S32.3", + en: "", + de: "Fracture of ilium", + }, + { + key: "S32.4", + en: "", + de: "Fracture of acetabulum", + }, + { + key: "S32.5", + en: "", + de: "Fracture of pubis", + }, + { + key: "S32.7", + en: "", + de: "Multiple fractures of lumbar spine and pelvis", + }, + { + key: "S32.8", + en: "", + de: "Fracture of other and unspecified parts of lumbar spine and pelvis", + }, + { + key: "S33", + en: "", + de: "Dislocation, sprain and strain of joints and ligaments of lumbar spine and pelvis", + }, + { + key: "S33.0", + en: "", + de: "Traumatic rupture of lumbar intervertebral disc", + }, + { + key: "S33.1", + en: "", + de: "Dislocation of lumbar vertebra", + }, + { + key: "S33.2", + en: "", + de: "Dislocation of sacroiliac and sacrococcygeal joint", + }, + { + key: "S33.3", + en: "", + de: "Dislocation of other and unspecified parts of lumbar spine and pelvis", + }, + { + key: "S33.4", + en: "", + de: "Traumatic rupture of symphysis pubis", + }, + { + key: "S33.5", + en: "", + de: "Sprain and strain of lumbar spine", + }, + { + key: "S33.6", + en: "", + de: "Sprain and strain of sacroiliac joint", + }, + { + key: "S33.7", + en: "", + de: "Sprain and strain of other and unspecified parts of lumbar spine and pelvis", + }, + { + key: "S34", + en: "", + de: "Injury of nerves and lumbar spinal cord at abdomen, lower back and pelvis level", + }, + { + key: "S34.0", + en: "", + de: "Concussion and oedema of lumbar spinal cord", + }, + { + key: "S34.1", + en: "", + de: "Other injury of lumbar spinal cord", + }, + { + key: "S34.2", + en: "", + de: "Injury of nerve root of lumbar and sacral spine", + }, + { + key: "S34.3", + en: "", + de: "Injury of cauda equina", + }, + { + key: "S34.4", + en: "", + de: "Injury of lumbosacral plexus", + }, + { + key: "S34.5", + en: "", + de: "Injury of lumbar, sacral and pelvic sympathetic nerves", + }, + { + key: "S34.6", + en: "", + de: "Injury of peripheral nerve(s) of abdomen, lower back and pelvis", + }, + { + key: "S34.8", + en: "", + de: "Injury of other and unspecified nerves at abdomen, lower back and pelvis level", + }, + { + key: "S35", + en: "", + de: "Injury of blood vessels at abdomen, lower back and pelvis level", + }, + { + key: "S35.0", + en: "", + de: "Injury of abdominal aorta", + }, + { + key: "S35.1", + en: "", + de: "Injury of inferior vena cava", + }, + { + key: "S35.2", + en: "", + de: "Injury of coeliac or mesenteric artery", + }, + { + key: "S35.3", + en: "", + de: "Injury of portal or splenic vein", + }, + { + key: "S35.4", + en: "", + de: "Injury of renal blood vessels", + }, + { + key: "S35.5", + en: "", + de: "Injury of iliac blood vessels", + }, + { + key: "S35.7", + en: "", + de: "Injury of multiple blood vessels at abdomen, lower back and pelvis level", + }, + { + key: "S35.8", + en: "", + de: "Injury of other blood vessels at abdomen, lower back and pelvis level", + }, + { + key: "S35.9", + en: "", + de: "Injury of unspecified blood vessel at abdomen, lower back and pelvis level", + }, + { + key: "S36", + en: "", + de: "Injury of intra-abdominal organs", + }, + { + key: "S36.0", + en: "", + de: "Injury of spleen", + }, + { + key: "S36.1", + en: "", + de: "Injury of liver or gallbladder", + }, + { + key: "S36.2", + en: "", + de: "Injury of pancreas", + }, + { + key: "S36.3", + en: "", + de: "Injury of stomach", + }, + { + key: "S36.4", + en: "", + de: "Injury of small intestine", + }, + { + key: "S36.5", + en: "", + de: "Injury of colon", + }, + { + key: "S36.6", + en: "", + de: "Injury of rectum", + }, + { + key: "S36.7", + en: "", + de: "Injury of multiple intra-abdominal organs", + }, + { + key: "S36.8", + en: "", + de: "Injury of other intra-abdominal organs", + }, + { + key: "S36.9", + en: "", + de: "Injury of unspecified intra-abdominal organ", + }, + { + key: "S37", + en: "", + de: "Injury of urinary and pelvic organs", + }, + { + key: "S37.0", + en: "", + de: "Injury of kidney", + }, + { + key: "S37.1", + en: "", + de: "Injury of ureter", + }, + { + key: "S37.2", + en: "", + de: "Injury of bladder", + }, + { + key: "S37.3", + en: "", + de: "Injury of urethra", + }, + { + key: "S37.4", + en: "", + de: "Injury of ovary", + }, + { + key: "S37.5", + en: "", + de: "Injury of fallopian tube", + }, + { + key: "S37.6", + en: "", + de: "Injury of uterus", + }, + { + key: "S37.7", + en: "", + de: "Injury of multiple pelvic organs", + }, + { + key: "S37.8", + en: "", + de: "Injury of other pelvic organs", + }, + { + key: "S37.9", + en: "", + de: "Injury of unspecified pelvic organ", + }, + { + key: "S38", + en: "", + de: "Crushing injury and traumatic amputation of part of abdomen, lower back and pelvis", + }, + { + key: "S38.0", + en: "", + de: "Crushing injury of external genital organs", + }, + { + key: "S38.1", + en: "", + de: "Crushing injury of other and unspecified parts of abdomen, lower back and pelvis", + }, + { + key: "S38.2", + en: "", + de: "Traumatic amputation of external genital organs", + }, + { + key: "S38.3", + en: "", + de: "Traumatic amputation of other and unspecified parts of abdomen, lower back and pelvis", + }, + { + key: "S39", + en: "", + de: "Other and unspecified injuries of abdomen, lower back and pelvis", + }, + { + key: "S39.0", + en: "", + de: "Injury of muscle and tendon of abdomen, lower back and pelvis", + }, + { + key: "S39.6", + en: "", + de: "Injury of intra-abdominal organ(s) with pelvic organ(s)", + }, + { + key: "S39.7", + en: "", + de: "Other multiple injuries of abdomen, lower back and pelvis", + }, + { + key: "S39.8", + en: "", + de: "Other specified injuries of abdomen, lower back and pelvis", + }, + { + key: "S39.9", + en: "", + de: "Unspecified injury of abdomen, lower back and pelvis", + }, + { + key: "S40", + en: "", + de: "Superficial injury of shoulder and upper arm", + }, + { + key: "S40.0", + en: "", + de: "Contusion of shoulder and upper arm", + }, + { + key: "S40.7", + en: "", + de: "Multiple superficial injuries of shoulder and upper arm", + }, + { + key: "S40.8", + en: "", + de: "Other superficial injuries of shoulder and upper arm", + }, + { + key: "S40.9", + en: "", + de: "Superficial injury of shoulder and upper arm, unspecified", + }, + { + key: "S41", + en: "", + de: "Open wound of shoulder and upper arm", + }, + { + key: "S41.0", + en: "", + de: "Open wound of shoulder", + }, + { + key: "S41.1", + en: "", + de: "Open wound of upper arm", + }, + { + key: "S41.7", + en: "", + de: "Multiple open wounds of shoulder and upper arm", + }, + { + key: "S41.8", + en: "", + de: "Open wound of other and unspecified parts of shoulder girdle", + }, + { + key: "S42", + en: "", + de: "Fracture of shoulder and upper arm", + }, + { + key: "S42.0", + en: "", + de: "Fracture of clavicle", + }, + { + key: "S42.1", + en: "", + de: "Fracture of scapula", + }, + { + key: "S42.2", + en: "", + de: "Fracture of upper end of humerus", + }, + { + key: "S42.3", + en: "", + de: "Fracture of shaft of humerus", + }, + { + key: "S42.4", + en: "", + de: "Fracture of lower end of humerus", + }, + { + key: "S42.7", + en: "", + de: "Multiple fractures of clavicle, scapula and humerus", + }, + { + key: "S42.8", + en: "", + de: "Fracture of other parts of shoulder and upper arm", + }, + { + key: "S42.9", + en: "", + de: "Fracture of shoulder girdle, part unspecified", + }, + { + key: "S43", + en: "", + de: "Dislocation, sprain and strain of joints and ligaments of shoulder girdle", + }, + { + key: "S43.0", + en: "", + de: "Dislocation of shoulder joint", + }, + { + key: "S43.1", + en: "", + de: "Dislocation of acromioclavicular joint", + }, + { + key: "S43.2", + en: "", + de: "Dislocation of sternoclavicular joint", + }, + { + key: "S43.3", + en: "", + de: "Dislocation of other and unspecified parts of shoulder girdle", + }, + { + key: "S43.4", + en: "", + de: "Sprain and strain of shoulder joint", + }, + { + key: "S43.5", + en: "", + de: "Sprain and strain of acromioclavicular joint", + }, + { + key: "S43.6", + en: "", + de: "Sprain and strain of sternoclavicular joint", + }, + { + key: "S43.7", + en: "", + de: "Sprain and strain of other and unspecified parts of shoulder girdle", + }, + { + key: "S44", + en: "", + de: "Injury of nerves at shoulder and upper arm level", + }, + { + key: "S44.0", + en: "", + de: "Injury of ulnar nerve at upper arm level", + }, + { + key: "S44.1", + en: "", + de: "Injury of median nerve at upper arm level", + }, + { + key: "S44.2", + en: "", + de: "Injury of radial nerve at upper arm level", + }, + { + key: "S44.3", + en: "", + de: "Injury of axillary nerve", + }, + { + key: "S44.4", + en: "", + de: "Injury of musculocutaneous nerve", + }, + { + key: "S44.5", + en: "", + de: "Injury of cutaneous sensory nerve at shoulder and upper arm level", + }, + { + key: "S44.7", + en: "", + de: "Injury of multiple nerves at shoulder and upper arm level", + }, + { + key: "S44.8", + en: "", + de: "Injury of other nerves at shoulder and upper arm level", + }, + { + key: "S44.9", + en: "", + de: "Injury of unspecified nerve at shoulder and upper arm level", + }, + { + key: "S45", + en: "", + de: "Injury of blood vessels at shoulder and upper arm level", + }, + { + key: "S45.0", + en: "", + de: "Injury of axillary artery", + }, + { + key: "S45.1", + en: "", + de: "Injury of brachial artery", + }, + { + key: "S45.2", + en: "", + de: "Injury of axillary or brachial vein", + }, + { + key: "S45.3", + en: "", + de: "Injury of superficial vein at shoulder and upper arm level", + }, + { + key: "S45.7", + en: "", + de: "Injury of multiple blood vessels at shoulder and upper arm level", + }, + { + key: "S45.8", + en: "", + de: "Injury of other blood vessels at shoulder and upper arm level", + }, + { + key: "S45.9", + en: "", + de: "Injury of unspecified blood vessel at shoulder and upper arm level", + }, + { + key: "S46", + en: "", + de: "Injury of muscle and tendon at shoulder and upper arm level", + }, + { + key: "S46.0", + en: "", + de: "Injury of muscle(s) and tendon(s) of the rotator cuff of shoulder", + }, + { + key: "S46.1", + en: "", + de: "Injury of muscle and tendon of long head of biceps", + }, + { + key: "S46.2", + en: "", + de: "Injury of muscle and tendon of other parts of biceps", + }, + { + key: "S46.3", + en: "", + de: "Injury of muscle and tendon of triceps", + }, + { + key: "S46.7", + en: "", + de: "Injury of multiple muscles and tendons at shoulder and upper arm level", + }, + { + key: "S46.8", + en: "", + de: "Injury of other muscles and tendons at shoulder and upper arm level", + }, + { + key: "S46.9", + en: "", + de: "Injury of unspecified muscle and tendon at shoulder and upper arm level", + }, + { + key: "S47", + en: "", + de: "Crushing injury of shoulder and upper arm", + }, + { + key: "S48", + en: "", + de: "Traumatic amputation of shoulder and upper arm", + }, + { + key: "S48.0", + en: "", + de: "Traumatic amputation at shoulder joint", + }, + { + key: "S48.1", + en: "", + de: "Traumatic amputation at level between shoulder and elbow", + }, + { + key: "S48.9", + en: "", + de: "Traumatic amputation of shoulder and upper arm, level unspecified", + }, + { + key: "S49", + en: "", + de: "Other and unspecified injuries of shoulder and upper arm", + }, + { + key: "S49.7", + en: "", + de: "Multiple injuries of shoulder and upper arm", + }, + { + key: "S49.8", + en: "", + de: "Other specified injuries of shoulder and upper arm", + }, + { + key: "S49.9", + en: "", + de: "Unspecified injury of shoulder and upper arm", + }, + { + key: "S50", + en: "", + de: "Superficial injury of forearm", + }, + { + key: "S50.0", + en: "", + de: "Contusion of elbow", + }, + { + key: "S50.1", + en: "", + de: "Contusion of other and unspecified parts of forearm", + }, + { + key: "S50.7", + en: "", + de: "Multiple superficial injuries of forearm", + }, + { + key: "S50.8", + en: "", + de: "Other superficial injuries of forearm", + }, + { + key: "S50.9", + en: "", + de: "Superficial injury of forearm, unspecified", + }, + { + key: "S51", + en: "", + de: "Open wound of forearm", + }, + { + key: "S51.0", + en: "", + de: "Open wound of elbow", + }, + { + key: "S51.7", + en: "", + de: "Multiple open wounds of forearm", + }, + { + key: "S51.8", + en: "", + de: "Open wound of other parts of forearm", + }, + { + key: "S51.9", + en: "", + de: "Open wound of forearm, part unspecified", + }, + { + key: "S52", + en: "", + de: "Fracture of forearm", + }, + { + key: "S52.0", + en: "", + de: "Fracture of upper end of ulna", + }, + { + key: "S52.1", + en: "", + de: "Fracture of upper end of radius", + }, + { + key: "S52.2", + en: "", + de: "Fracture of shaft of ulna", + }, + { + key: "S52.3", + en: "", + de: "Fracture of shaft of radius", + }, + { + key: "S52.4", + en: "", + de: "Fracture of shafts of both ulna and radius", + }, + { + key: "S52.5", + en: "", + de: "Fracture of lower end of radius", + }, + { + key: "S52.6", + en: "", + de: "Fracture of lower end of both ulna and radius", + }, + { + key: "S52.7", + en: "", + de: "Multiple fractures of forearm", + }, + { + key: "S52.8", + en: "", + de: "Fracture of other parts of forearm", + }, + { + key: "S52.9", + en: "", + de: "Fracture of forearm, part unspecified", + }, + { + key: "S53", + en: "", + de: "Dislocation, sprain and strain of joints and ligaments of elbow", + }, + { + key: "S53.0", + en: "", + de: "Dislocation of radial head", + }, + { + key: "S53.1", + en: "", + de: "Dislocation of elbow, unspecified", + }, + { + key: "S53.2", + en: "", + de: "Traumatic rupture of radial collateral ligament", + }, + { + key: "S53.3", + en: "", + de: "Traumatic rupture of ulnar collateral ligament", + }, + { + key: "S53.4", + en: "", + de: "Sprain and strain of elbow", + }, + { + key: "S54", + en: "", + de: "Injury of nerves at forearm level", + }, + { + key: "S54.0", + en: "", + de: "Injury of ulnar nerve at forearm level", + }, + { + key: "S54.1", + en: "", + de: "Injury of median nerve at forearm level", + }, + { + key: "S54.2", + en: "", + de: "Injury of radial nerve at forearm level", + }, + { + key: "S54.3", + en: "", + de: "Injury of cutaneous sensory nerve at forearm level", + }, + { + key: "S54.7", + en: "", + de: "Injury of multiple nerves at forearm level", + }, + { + key: "S54.8", + en: "", + de: "Injury of other nerves at forearm level", + }, + { + key: "S54.9", + en: "", + de: "Injury of unspecified nerve at forearm level", + }, + { + key: "S55", + en: "", + de: "Injury of blood vessels at forearm level", + }, + { + key: "S55.0", + en: "", + de: "Injury of ulnar artery at forearm level", + }, + { + key: "S55.1", + en: "", + de: "Injury of radial artery at forearm level", + }, + { + key: "S55.2", + en: "", + de: "Injury of vein at forearm level", + }, + { + key: "S55.7", + en: "", + de: "Injury of multiple blood vessels at forearm level", + }, + { + key: "S55.8", + en: "", + de: "Injury of other blood vessels at forearm level", + }, + { + key: "S55.9", + en: "", + de: "Injury of unspecified blood vessel at forearm level", + }, + { + key: "S56", + en: "", + de: "Injury of muscle and tendon at forearm level", + }, + { + key: "S56.0", + en: "", + de: "Injury of flexor muscle and tendon of thumb at forearm level", + }, + { + key: "S56.1", + en: "", + de: "Injury of long flexor muscle and tendon of other finger(s) at forearm level", + }, + { + key: "S56.2", + en: "", + de: "Injury of other flexor muscle and tendon at forearm level", + }, + { + key: "S56.3", + en: "", + de: "Injury of extensor or abductor muscles and tendons of thumb at forearm level", + }, + { + key: "S56.4", + en: "", + de: "Injury of extensor muscle and tendon of other finger(s) at forearm level", + }, + { + key: "S56.5", + en: "", + de: "Injury of other extensor muscle and tendon at forearm level", + }, + { + key: "S56.7", + en: "", + de: "Injury of multiple muscles and tendons at forearm level", + }, + { + key: "S56.8", + en: "", + de: "Injury of other and unspecified muscles and tendons at forearm level", + }, + { + key: "S57", + en: "", + de: "Crushing injury of forearm", + }, + { + key: "S57.0", + en: "", + de: "Crushing injury of elbow", + }, + { + key: "S57.8", + en: "", + de: "Crushing injury of other parts of forearm", + }, + { + key: "S57.9", + en: "", + de: "Crushing injury of forearm, part unspecified", + }, + { + key: "S58", + en: "", + de: "Traumatic amputation of forearm", + }, + { + key: "S58.0", + en: "", + de: "Traumatic amputation at elbow level", + }, + { + key: "S58.1", + en: "", + de: "Traumatic amputation at level between elbow and wrist", + }, + { + key: "S58.9", + en: "", + de: "Traumatic amputation of forearm, level unspecified", + }, + { + key: "S59", + en: "", + de: "Other and unspecified injuries of forearm", + }, + { + key: "S59.7", + en: "", + de: "Multiple injuries of forearm", + }, + { + key: "S59.8", + en: "", + de: "Other specified injuries of forearm", + }, + { + key: "S59.9", + en: "", + de: "Unspecified injury of forearm", + }, + { + key: "S60", + en: "", + de: "Superficial injury of wrist and hand", + }, + { + key: "S60.0", + en: "", + de: "Contusion of finger(s) without damage to nail", + }, + { + key: "S60.1", + en: "", + de: "Contusion of finger(s) with damage to nail", + }, + { + key: "S60.2", + en: "", + de: "Contusion of other parts of wrist and hand", + }, + { + key: "S60.7", + en: "", + de: "Multiple superficial injuries of wrist and hand", + }, + { + key: "S60.8", + en: "", + de: "Other superficial injuries of wrist and hand", + }, + { + key: "S60.9", + en: "", + de: "Superficial injury of wrist and hand, unspecified", + }, + { + key: "S61", + en: "", + de: "Open wound of wrist and hand", + }, + { + key: "S61.0", + en: "", + de: "Open wound of finger(s) without damage to nail", + }, + { + key: "S61.1", + en: "", + de: "Open wound of finger(s) with damage to nail", + }, + { + key: "S61.7", + en: "", + de: "Multiple open wounds of wrist and hand", + }, + { + key: "S61.8", + en: "", + de: "Open wound of other parts of wrist and hand", + }, + { + key: "S61.9", + en: "", + de: "Open wound of wrist and hand, part unspecified", + }, + { + key: "S62", + en: "", + de: "Fracture at wrist and hand level", + }, + { + key: "S62.0", + en: "", + de: "Fracture of navicular [scaphoid] bone of hand", + }, + { + key: "S62.1", + en: "", + de: "Fracture of other carpal bone(s)", + }, + { + key: "S62.2", + en: "", + de: "Fracture of first metacarpal bone", + }, + { + key: "S62.3", + en: "", + de: "Fracture of other metacarpal bone", + }, + { + key: "S62.4", + en: "", + de: "Multiple fractures of metacarpal bones", + }, + { + key: "S62.5", + en: "", + de: "Fracture of thumb", + }, + { + key: "S62.6", + en: "", + de: "Fracture of other finger", + }, + { + key: "S62.7", + en: "", + de: "Multiple fractures of fingers", + }, + { + key: "S62.8", + en: "", + de: "Fracture of other and unspecified parts of wrist and hand", + }, + { + key: "S63", + en: "", + de: "Dislocation, sprain and strain of joints and ligaments at wrist and hand level", + }, + { + key: "S63.0", + en: "", + de: "Dislocation of wrist", + }, + { + key: "S63.1", + en: "", + de: "Dislocation of finger", + }, + { + key: "S63.2", + en: "", + de: "Multiple dislocations of fingers", + }, + { + key: "S63.3", + en: "", + de: "Traumatic rupture of ligament of wrist and carpus", + }, + { + key: "S63.4", + en: "", + de: "Traumatic rupture of ligament of finger at metacarpophalangeal and interphalangeal joint(s)", + }, + { + key: "S63.5", + en: "", + de: "Sprain and strain of wrist", + }, + { + key: "S63.6", + en: "", + de: "Sprain and strain of finger(s)", + }, + { + key: "S63.7", + en: "", + de: "Sprain and strain of other and unspecified parts of hand", + }, + { + key: "S64", + en: "", + de: "Injury of nerves at wrist and hand level", + }, + { + key: "S64.0", + en: "", + de: "Injury of ulnar nerve at wrist and hand level", + }, + { + key: "S64.1", + en: "", + de: "Injury of median nerve at wrist and hand level", + }, + { + key: "S64.2", + en: "", + de: "Injury of radial nerve at wrist and hand level", + }, + { + key: "S64.3", + en: "", + de: "Injury of digital nerve of thumb", + }, + { + key: "S64.4", + en: "", + de: "Injury of digital nerve of other finger", + }, + { + key: "S64.7", + en: "", + de: "Injury of multiple nerves at wrist and hand level", + }, + { + key: "S64.8", + en: "", + de: "Injury of other nerves at wrist and hand level", + }, + { + key: "S64.9", + en: "", + de: "Injury of unspecified nerve at wrist and hand level", + }, + { + key: "S65", + en: "", + de: "Injury of blood vessels at wrist and hand level", + }, + { + key: "S65.0", + en: "", + de: "Injury of ulnar artery at wrist and hand level", + }, + { + key: "S65.1", + en: "", + de: "Injury of radial artery at wrist and hand level", + }, + { + key: "S65.2", + en: "", + de: "Injury of superficial palmar arch", + }, + { + key: "S65.3", + en: "", + de: "Injury of deep palmar arch", + }, + { + key: "S65.4", + en: "", + de: "Injury of blood vessel(s) of thumb", + }, + { + key: "S65.5", + en: "", + de: "Injury of blood vessel(s) of other finger", + }, + { + key: "S65.7", + en: "", + de: "Injury of multiple blood vessels at wrist and hand level", + }, + { + key: "S65.8", + en: "", + de: "Injury of other blood vessels at wrist and hand level", + }, + { + key: "S65.9", + en: "", + de: "Injury of unspecified blood vessel at wrist and hand level", + }, + { + key: "S66", + en: "", + de: "Injury of muscle and tendon at wrist and hand level", + }, + { + key: "S66.0", + en: "", + de: "Injury of long flexor muscle and tendon of thumb at wrist and hand level", + }, + { + key: "S66.1", + en: "", + de: "Injury of flexor muscle and tendon of other finger at wrist and hand level", + }, + { + key: "S66.2", + en: "", + de: "Injury of extensor muscle and tendon of thumb at wrist and hand level", + }, + { + key: "S66.3", + en: "", + de: "Injury of extensor muscle and tendon of other finger at wrist and hand level", + }, + { + key: "S66.4", + en: "", + de: "Injury of intrinsic muscle and tendon of thumb at wrist and hand level", + }, + { + key: "S66.5", + en: "", + de: "Injury of intrinsic muscle and tendon of other finger at wrist and hand level", + }, + { + key: "S66.6", + en: "", + de: "Injury of multiple flexor muscles and tendons at wrist and hand level", + }, + { + key: "S66.7", + en: "", + de: "Injury of multiple extensor muscles and tendons at wrist and hand level", + }, + { + key: "S66.8", + en: "", + de: "Injury of other muscles and tendons at wrist and hand level", + }, + { + key: "S66.9", + en: "", + de: "Injury of unspecified muscle and tendon at wrist and hand level", + }, + { + key: "S67", + en: "", + de: "Crushing injury of wrist and hand", + }, + { + key: "S67.0", + en: "", + de: "Crushing injury of thumb and other finger(s)", + }, + { + key: "S67.8", + en: "", + de: "Crushing injury of other and unspecified parts of wrist and hand", + }, + { + key: "S68", + en: "", + de: "Traumatic amputation of wrist and hand", + }, + { + key: "S68.0", + en: "", + de: "Traumatic amputation of thumb (complete)(partial)", + }, + { + key: "S68.1", + en: "", + de: "Traumatic amputation of other single finger (complete)(partial)", + }, + { + key: "S68.2", + en: "", + de: "Traumatic amputation of two or more fingers alone (complete)(partial)", + }, + { + key: "S68.3", + en: "", + de: "Combined traumatic amputation of (part of) finger(s) with other parts of wrist and hand", + }, + { + key: "S68.4", + en: "", + de: "Traumatic amputation of hand at wrist level", + }, + { + key: "S68.8", + en: "", + de: "Traumatic amputation of other parts of wrist and hand", + }, + { + key: "S68.9", + en: "", + de: "Traumatic amputation of wrist and hand, level unspecified", + }, + { + key: "S69", + en: "", + de: "Other and unspecified injuries of wrist and hand", + }, + { + key: "S69.7", + en: "", + de: "Multiple injuries of wrist and hand", + }, + { + key: "S69.8", + en: "", + de: "Other specified injuries of wrist and hand", + }, + { + key: "S69.9", + en: "", + de: "Unspecified injury of wrist and hand", + }, + { + key: "S70", + en: "", + de: "Superficial injury of hip and thigh", + }, + { + key: "S70.0", + en: "", + de: "Contusion of hip", + }, + { + key: "S70.1", + en: "", + de: "Contusion of thigh", + }, + { + key: "S70.7", + en: "", + de: "Multiple superficial injuries of hip and thigh", + }, + { + key: "S70.8", + en: "", + de: "Other superficial injuries of hip and thigh", + }, + { + key: "S70.9", + en: "", + de: "Superficial injury of hip and thigh, unspecified", + }, + { + key: "S71", + en: "", + de: "Open wound of hip and thigh", + }, + { + key: "S71.0", + en: "", + de: "Open wound of hip", + }, + { + key: "S71.1", + en: "", + de: "Open wound of thigh", + }, + { + key: "S71.7", + en: "", + de: "Multiple open wounds of hip and thigh", + }, + { + key: "S71.8", + en: "", + de: "Open wound of other and unspecified parts of pelvic girdle", + }, + { + key: "S72", + en: "", + de: "Fracture of femur", + }, + { + key: "S72.0", + en: "", + de: "Fracture of neck of femur", + }, + { + key: "S72.1", + en: "", + de: "Pertrochanteric fracture", + }, + { + key: "S72.2", + en: "", + de: "Subtrochanteric fracture", + }, + { + key: "S72.3", + en: "", + de: "Fracture of shaft of femur", + }, + { + key: "S72.4", + en: "", + de: "Fracture of lower end of femur", + }, + { + key: "S72.7", + en: "", + de: "Multiple fractures of femur", + }, + { + key: "S72.8", + en: "", + de: "Fractures of other parts of femur", + }, + { + key: "S72.9", + en: "", + de: "Fracture of femur, part unspecified", + }, + { + key: "S73", + en: "", + de: "Dislocation, sprain and strain of joint and ligaments of hip", + }, + { + key: "S73.0", + en: "", + de: "Dislocation of hip", + }, + { + key: "S73.1", + en: "", + de: "Sprain and strain of hip", + }, + { + key: "S74", + en: "", + de: "Injury of nerves at hip and thigh level", + }, + { + key: "S74.0", + en: "", + de: "Injury of sciatic nerve at hip and thigh level", + }, + { + key: "S74.1", + en: "", + de: "Injury of femoral nerve at hip and thigh level", + }, + { + key: "S74.2", + en: "", + de: "Injury of cutaneous sensory nerve at hip and thigh level", + }, + { + key: "S74.7", + en: "", + de: "Injury of multiple nerves at hip and thigh level", + }, + { + key: "S74.8", + en: "", + de: "Injury of other nerves at hip and thigh level", + }, + { + key: "S74.9", + en: "", + de: "Injury of unspecified nerve at hip and thigh level", + }, + { + key: "S75", + en: "", + de: "Injury of blood vessels at hip and thigh level", + }, + { + key: "S75.0", + en: "", + de: "Injury of femoral artery", + }, + { + key: "S75.1", + en: "", + de: "Injury of femoral vein at hip and thigh level", + }, + { + key: "S75.2", + en: "", + de: "Injury of greater saphenous vein at hip and thigh level", + }, + { + key: "S75.7", + en: "", + de: "Injury of multiple blood vessels at hip and thigh level", + }, + { + key: "S75.8", + en: "", + de: "Injury of other blood vessels at hip and thigh level", + }, + { + key: "S75.9", + en: "", + de: "Injury of unspecified blood vessel at hip and thigh level", + }, + { + key: "S76", + en: "", + de: "Injury of muscle and tendon at hip and thigh level", + }, + { + key: "S76.0", + en: "", + de: "Injury of muscle and tendon of hip", + }, + { + key: "S76.1", + en: "", + de: "Injury of quadriceps muscle and tendon", + }, + { + key: "S76.2", + en: "", + de: "Injury of adductor muscle and tendon of thigh", + }, + { + key: "S76.3", + en: "", + de: "Injury of muscle and tendon of the posterior muscle group at thigh level", + }, + { + key: "S76.4", + en: "", + de: "Injury of other and unspecified muscles and tendons at thigh level", + }, + { + key: "S76.7", + en: "", + de: "Injury of multiple muscles and tendons at hip and thigh level", + }, + { + key: "S77", + en: "", + de: "Crushing injury of hip and thigh", + }, + { + key: "S77.0", + en: "", + de: "Crushing injury of hip", + }, + { + key: "S77.1", + en: "", + de: "Crushing injury of thigh", + }, + { + key: "S77.2", + en: "", + de: "Crushing injury of hip with thigh", + }, + { + key: "S78", + en: "", + de: "Traumatic amputation of hip and thigh", + }, + { + key: "S78.0", + en: "", + de: "Traumatic amputation at hip joint", + }, + { + key: "S78.1", + en: "", + de: "Traumatic amputation at level between hip and knee", + }, + { + key: "S78.9", + en: "", + de: "Traumatic amputation of hip and thigh, level unspecified", + }, + { + key: "S79", + en: "", + de: "Other and unspecified injuries of hip and thigh", + }, + { + key: "S79.7", + en: "", + de: "Multiple injuries of hip and thigh", + }, + { + key: "S79.8", + en: "", + de: "Other specified injuries of hip and thigh", + }, + { + key: "S79.9", + en: "", + de: "Unspecified injury of hip and thigh", + }, + { + key: "S80", + en: "", + de: "Superficial injury of lower leg", + }, + { + key: "S80.0", + en: "", + de: "Contusion of knee", + }, + { + key: "S80.1", + en: "", + de: "Contusion of other and unspecified parts of lower leg", + }, + { + key: "S80.7", + en: "", + de: "Multiple superficial injuries of lower leg", + }, + { + key: "S80.8", + en: "", + de: "Other superficial injuries of lower leg", + }, + { + key: "S80.9", + en: "", + de: "Superficial injury of lower leg, unspecified", + }, + { + key: "S81", + en: "", + de: "Open wound of lower leg", + }, + { + key: "S81.0", + en: "", + de: "Open wound of knee", + }, + { + key: "S81.7", + en: "", + de: "Multiple open wounds of lower leg", + }, + { + key: "S81.8", + en: "", + de: "Open wound of other parts of lower leg", + }, + { + key: "S81.9", + en: "", + de: "Open wound of lower leg, part unspecified", + }, + { + key: "S82", + en: "", + de: "Fracture of lower leg, including ankle", + }, + { + key: "S82.0", + en: "", + de: "Fracture of patella", + }, + { + key: "S82.1", + en: "", + de: "Fracture of upper end of tibia", + }, + { + key: "S82.2", + en: "", + de: "Fracture of shaft of tibia", + }, + { + key: "S82.3", + en: "", + de: "Fracture of lower end of tibia", + }, + { + key: "S82.4", + en: "", + de: "Fracture of fibula alone", + }, + { + key: "S82.5", + en: "", + de: "Fracture of medial malleolus", + }, + { + key: "S82.6", + en: "", + de: "Fracture of lateral malleolus", + }, + { + key: "S82.7", + en: "", + de: "Multiple fractures of lower leg", + }, + { + key: "S82.8", + en: "", + de: "Fractures of other parts of lower leg", + }, + { + key: "S82.9", + en: "", + de: "Fracture of lower leg, part unspecified", + }, + { + key: "S83", + en: "", + de: "Dislocation, sprain and strain of joints and ligaments of knee", + }, + { + key: "S83.0", + en: "", + de: "Dislocation of patella", + }, + { + key: "S83.1", + en: "", + de: "Dislocation of knee", + }, + { + key: "S83.2", + en: "", + de: "Tear of meniscus, current", + }, + { + key: "S83.3", + en: "", + de: "Tear of articular cartilage of knee, current", + }, + { + key: "S83.4", + en: "", + de: "Sprain and strain involving (fibular)(tibial) collateral ligament of knee", + }, + { + key: "S83.5", + en: "", + de: "Sprain and strain involving (anterior)(posterior) cruciate ligament of knee", + }, + { + key: "S83.6", + en: "", + de: "Sprain and strain of other and unspecified parts of knee", + }, + { + key: "S83.7", + en: "", + de: "Injury to multiple structures of knee", + }, + { + key: "S84", + en: "", + de: "Injury of nerves at lower leg level", + }, + { + key: "S84.0", + en: "", + de: "Injury of tibial nerve at lower leg level", + }, + { + key: "S84.1", + en: "", + de: "Injury of peroneal nerve at lower leg level", + }, + { + key: "S84.2", + en: "", + de: "Injury of cutaneous sensory nerve at lower leg level", + }, + { + key: "S84.7", + en: "", + de: "Injury of multiple nerves at lower leg level", + }, + { + key: "S84.8", + en: "", + de: "Injury of other nerves at lower leg level", + }, + { + key: "S84.9", + en: "", + de: "Injury of unspecified nerve at lower leg level", + }, + { + key: "S85", + en: "", + de: "Injury of blood vessels at lower leg level", + }, + { + key: "S85.0", + en: "", + de: "Injury of popliteal artery", + }, + { + key: "S85.1", + en: "", + de: "Injury of (anterior)(posterior) tibial artery", + }, + { + key: "S85.2", + en: "", + de: "Injury of peroneal artery", + }, + { + key: "S85.3", + en: "", + de: "Injury of greater saphenous vein at lower leg level", + }, + { + key: "S85.4", + en: "", + de: "Injury of lesser saphenous vein at lower leg level", + }, + { + key: "S85.5", + en: "", + de: "Injury of popliteal vein", + }, + { + key: "S85.7", + en: "", + de: "Injury of multiple blood vessels at lower leg level", + }, + { + key: "S85.8", + en: "", + de: "Injury of other blood vessels at lower leg level", + }, + { + key: "S85.9", + en: "", + de: "Injury of unspecified blood vessel at lower leg level", + }, + { + key: "S86", + en: "", + de: "Injury of muscle and tendon at lower leg level", + }, + { + key: "S86.0", + en: "", + de: "Injury of Achilles tendon", + }, + { + key: "S86.1", + en: "", + de: "Injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level", + }, + { + key: "S86.2", + en: "", + de: "Injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level", + }, + { + key: "S86.3", + en: "", + de: "Injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level", + }, + { + key: "S86.7", + en: "", + de: "Injury of multiple muscles and tendons at lower leg level", + }, + { + key: "S86.8", + en: "", + de: "Injury of other muscles and tendons at lower leg level", + }, + { + key: "S86.9", + en: "", + de: "Injury of unspecified muscle and tendon at lower leg level", + }, + { + key: "S87", + en: "", + de: "Crushing injury of lower leg", + }, + { + key: "S87.0", + en: "", + de: "Crushing injury of knee", + }, + { + key: "S87.8", + en: "", + de: "Crushing injury of other and unspecified parts of lower leg", + }, + { + key: "S88", + en: "", + de: "Traumatic amputation of lower leg", + }, + { + key: "S88.0", + en: "", + de: "Traumatic amputation at knee level", + }, + { + key: "S88.1", + en: "", + de: "Traumatic amputation at level between knee and ankle", + }, + { + key: "S88.9", + en: "", + de: "Traumatic amputation of lower leg, level unspecified", + }, + { + key: "S89", + en: "", + de: "Other and unspecified injuries of lower leg", + }, + { + key: "S89.7", + en: "", + de: "Multiple injuries of lower leg", + }, + { + key: "S89.8", + en: "", + de: "Other specified injuries of lower leg", + }, + { + key: "S89.9", + en: "", + de: "Unspecified injury of lower leg", + }, + { + key: "S90", + en: "", + de: "Superficial injury of ankle and foot", + }, + { + key: "S90.0", + en: "", + de: "Contusion of ankle", + }, + { + key: "S90.1", + en: "", + de: "Contusion of toe(s) without damage to nail", + }, + { + key: "S90.2", + en: "", + de: "Contusion of toe(s) with damage to nail", + }, + { + key: "S90.3", + en: "", + de: "Contusion of other and unspecified parts of foot", + }, + { + key: "S90.7", + en: "", + de: "Multiple superficial injuries of ankle and foot", + }, + { + key: "S90.8", + en: "", + de: "Other superficial injuries of ankle and foot", + }, + { + key: "S90.9", + en: "", + de: "Superficial injury of ankle and foot, unspecified", + }, + { + key: "S91", + en: "", + de: "Open wound of ankle and foot", + }, + { + key: "S91.0", + en: "", + de: "Open wound of ankle", + }, + { + key: "S91.1", + en: "", + de: "Open wound of toe(s) without damage to nail", + }, + { + key: "S91.2", + en: "", + de: "Open wound of toe(s) with damage to nail", + }, + { + key: "S91.3", + en: "", + de: "Open wound of other parts of foot", + }, + { + key: "S91.7", + en: "", + de: "Multiple open wounds of ankle and foot", + }, + { + key: "S92", + en: "", + de: "Fracture of foot, except ankle", + }, + { + key: "S92.0", + en: "", + de: "Fracture of calcaneus", + }, + { + key: "S92.1", + en: "", + de: "Fracture of talus", + }, + { + key: "S92.2", + en: "", + de: "Fracture of other tarsal bone(s)", + }, + { + key: "S92.3", + en: "", + de: "Fracture of metatarsal bone", + }, + { + key: "S92.4", + en: "", + de: "Fracture of great toe", + }, + { + key: "S92.5", + en: "", + de: "Fracture of other toe", + }, + { + key: "S92.7", + en: "", + de: "Multiple fractures of foot", + }, + { + key: "S92.9", + en: "", + de: "Fracture of foot, unspecified", + }, + { + key: "S93", + en: "", + de: "Dislocation, sprain and strain of joints and ligaments at ankle and foot level", + }, + { + key: "S93.0", + en: "", + de: "Dislocation of ankle joint", + }, + { + key: "S93.1", + en: "", + de: "Dislocation of toe(s)", + }, + { + key: "S93.2", + en: "", + de: "Rupture of ligaments at ankle and foot level", + }, + { + key: "S93.3", + en: "", + de: "Dislocation of other and unspecified parts of foot", + }, + { + key: "S93.4", + en: "", + de: "Sprain and strain of ankle", + }, + { + key: "S93.5", + en: "", + de: "Sprain and strain of toe(s)", + }, + { + key: "S93.6", + en: "", + de: "Sprain and strain of other and unspecified parts of foot", + }, + { + key: "S94", + en: "", + de: "Injury of nerves at ankle and foot level", + }, + { + key: "S94.0", + en: "", + de: "Injury of lateral plantar nerve", + }, + { + key: "S94.1", + en: "", + de: "Injury of medial plantar nerve", + }, + { + key: "S94.2", + en: "", + de: "Injury of deep peroneal nerve at ankle and foot level", + }, + { + key: "S94.3", + en: "", + de: "Injury of cutaneous sensory nerve at ankle and foot level", + }, + { + key: "S94.7", + en: "", + de: "Injury of multiple nerves at ankle and foot level", + }, + { + key: "S94.8", + en: "", + de: "Injury of other nerves at ankle and foot level", + }, + { + key: "S94.9", + en: "", + de: "Injury of unspecified nerve at ankle and foot level", + }, + { + key: "S95", + en: "", + de: "Injury of blood vessels at ankle and foot level", + }, + { + key: "S95.0", + en: "", + de: "Injury of dorsal artery of foot", + }, + { + key: "S95.1", + en: "", + de: "Injury of plantar artery of foot", + }, + { + key: "S95.2", + en: "", + de: "Injury of dorsal vein of foot", + }, + { + key: "S95.7", + en: "", + de: "Injury of multiple blood vessels at ankle and foot level", + }, + { + key: "S95.8", + en: "", + de: "Injury of other blood vessels at ankle and foot level", + }, + { + key: "S95.9", + en: "", + de: "Injury of unspecified blood vessel at ankle and foot level", + }, + { + key: "S96", + en: "", + de: "Injury of muscle and tendon at ankle and foot level", + }, + { + key: "S96.0", + en: "", + de: "Injury of muscle and tendon of long flexor muscle of toe at ankle and foot level", + }, + { + key: "S96.1", + en: "", + de: "Injury of muscle and tendon of long extensor muscle of toe at ankle and foot level", + }, + { + key: "S96.2", + en: "", + de: "Injury of intrinsic muscle and tendon at ankle and foot level", + }, + { + key: "S96.7", + en: "", + de: "Injury of multiple muscles and tendons at ankle and foot level", + }, + { + key: "S96.8", + en: "", + de: "Injury of other muscles and tendons at ankle and foot level", + }, + { + key: "S96.9", + en: "", + de: "Injury of unspecified muscle and tendon at ankle and foot level", + }, + { + key: "S97", + en: "", + de: "Crushing injury of ankle and foot", + }, + { + key: "S97.0", + en: "", + de: "Crushing injury of ankle", + }, + { + key: "S97.1", + en: "", + de: "Crushing injury of toe(s)", + }, + { + key: "S97.8", + en: "", + de: "Crushing injury of other parts of ankle and foot", + }, + { + key: "S98", + en: "", + de: "Traumatic amputation of ankle and foot", + }, + { + key: "S98.0", + en: "", + de: "Traumatic amputation of foot at ankle level", + }, + { + key: "S98.1", + en: "", + de: "Traumatic amputation of one toe", + }, + { + key: "S98.2", + en: "", + de: "Traumatic amputation of two or more toes", + }, + { + key: "S98.3", + en: "", + de: "Traumatic amputation of other parts of foot", + }, + { + key: "S98.4", + en: "", + de: "Traumatic amputation of foot, level unspecified", + }, + { + key: "S99", + en: "", + de: "Other and unspecified injuries of ankle and foot", + }, + { + key: "S99.7", + en: "", + de: "Multiple injuries of ankle and foot", + }, + { + key: "S99.8", + en: "", + de: "Other specified injuries of ankle and foot", + }, + { + key: "S99.9", + en: "", + de: "Unspecified injury of ankle and foot", + }, + { + key: "T00", + en: "", + de: "Superficial injuries involving multiple body regions", + }, + { + key: "T00.0", + en: "", + de: "Superficial injuries involving head with neck", + }, + { + key: "T00.1", + en: "", + de: "Superficial injuries involving thorax with abdomen, lower back and pelvis", + }, + { + key: "T00.2", + en: "", + de: "Superficial injuries involving multiple regions of upper limb(s)", + }, + { + key: "T00.3", + en: "", + de: "Superficial injuries involving multiple regions of lower limb(s)", + }, + { + key: "T00.6", + en: "", + de: "Superficial injuries involving multiple regions of upper limb(s) with lower limb(s)", + }, + { + key: "T00.8", + en: "", + de: "Superficial injuries involving other combinations of body regions", + }, + { + key: "T00.9", + en: "", + de: "Multiple superficial injuries, unspecified", + }, + { + key: "T01", + en: "", + de: "Open wounds involving multiple body regions", + }, + { + key: "T01.0", + en: "", + de: "Open wounds involving head with neck", + }, + { + key: "T01.1", + en: "", + de: "Open wounds involving thorax with abdomen, lower back and pelvis", + }, + { + key: "T01.2", + en: "", + de: "Open wounds involving multiple regions of upper limb(s)", + }, + { + key: "T01.3", + en: "", + de: "Open wounds involving multiple regions of lower limb(s)", + }, + { + key: "T01.6", + en: "", + de: "Open wounds involving multiple regions of upper limb(s) with lower limb(s)", + }, + { + key: "T01.8", + en: "", + de: "Open wounds involving other combinations of body regions", + }, + { + key: "T01.9", + en: "", + de: "Multiple open wounds, unspecified", + }, + { + key: "T02", + en: "", + de: "Fractures involving multiple body regions", + }, + { + key: "T02.0", + en: "", + de: "Fractures involving head with neck", + }, + { + key: "T02.1", + en: "", + de: "Fractures involving thorax with lower back and pelvis", + }, + { + key: "T02.2", + en: "", + de: "Fractures involving multiple regions of one upper limb", + }, + { + key: "T02.3", + en: "", + de: "Fractures involving multiple regions of one lower limb", + }, + { + key: "T02.4", + en: "", + de: "Fractures involving multiple regions of both upper limbs", + }, + { + key: "T02.5", + en: "", + de: "Fractures involving multiple regions of both lower limbs", + }, + { + key: "T02.6", + en: "", + de: "Fractures involving multiple regions of upper limb(s) with lower limb(s)", + }, + { + key: "T02.7", + en: "", + de: "Fractures involving thorax with lower back and pelvis with limb(s)", + }, + { + key: "T02.8", + en: "", + de: "Fractures involving other combinations of body regions", + }, + { + key: "T02.9", + en: "", + de: "Multiple fractures, unspecified", + }, + { + key: "T03", + en: "", + de: "Dislocations, sprains and strains involving multiple body regions", + }, + { + key: "T03.0", + en: "", + de: "Dislocations, sprains and strains involving head with neck", + }, + { + key: "T03.1", + en: "", + de: "Dislocations, sprains and strains involving thorax with lower back and pelvis", + }, + { + key: "T03.2", + en: "", + de: "Dislocations, sprains and strains involving multiple regions of upper limb(s)", + }, + { + key: "T03.3", + en: "", + de: "Dislocations, sprains and strains involving multiple regions of lower limb(s)", + }, + { + key: "T03.4", + en: "", + de: "Dislocations, sprains and strains involving multiple regions of upper limb(s) with lower limb(s)", + }, + { + key: "T03.8", + en: "", + de: "Dislocations, sprains and strains involving other combinations of body regions", + }, + { + key: "T03.9", + en: "", + de: "Multiple dislocations, sprains and strains, unspecified", + }, + { + key: "T04", + en: "", + de: "Crushing injuries involving multiple body regions", + }, + { + key: "T04.0", + en: "", + de: "Crushing injuries involving head with neck", + }, + { + key: "T04.1", + en: "", + de: "Crushing injuries involving thorax with abdomen, lower back and pelvis", + }, + { + key: "T04.2", + en: "", + de: "Crushing injuries involving multiple regions of upper limb(s)", + }, + { + key: "T04.3", + en: "", + de: "Crushing injuries involving multiple regions of lower limb(s)", + }, + { + key: "T04.4", + en: "", + de: "Crushing injuries involving multiple regions of upper limb(s) with lower limb(s)", + }, + { + key: "T04.7", + en: "", + de: "Crushing injuries of thorax with abdomen, lower back and pelvis with limb(s)", + }, + { + key: "T04.8", + en: "", + de: "Crushing injuries involving other combinations of body regions", + }, + { + key: "T04.9", + en: "", + de: "Multiple crushing injuries, unspecified", + }, + { + key: "T05", + en: "", + de: "Traumatic amputations involving multiple body regions", + }, + { + key: "T05.0", + en: "", + de: "Traumatic amputation of both hands", + }, + { + key: "T05.1", + en: "", + de: "Traumatic amputation of one hand and other arm [any level, except hand]", + }, + { + key: "T05.2", + en: "", + de: "Traumatic amputation of both arms [any level]", + }, + { + key: "T05.3", + en: "", + de: "Traumatic amputation of both feet", + }, + { + key: "T05.4", + en: "", + de: "Traumatic amputation of one foot and other leg [any level, except foot]", + }, + { + key: "T05.5", + en: "", + de: "Traumatic amputation of both legs [any level]", + }, + { + key: "T05.6", + en: "", + de: "Traumatic amputation of upper and lower limbs, any combination [any level]", + }, + { + key: "T05.8", + en: "", + de: "Traumatic amputations involving other combinations of body regions", + }, + { + key: "T05.9", + en: "", + de: "Multiple traumatic amputations, unspecified", + }, + { + key: "T06", + en: "", + de: "Other injuries involving multiple body regions, not elsewhere classified", + }, + { + key: "T06.0", + en: "", + de: "Injuries of brain and cranial nerves with injuries of nerves and spinal cord at neck level", + }, + { + key: "T06.1", + en: "", + de: "Injuries of nerves and spinal cord involving other multiple body regions", + }, + { + key: "T06.2", + en: "", + de: "Injuries of nerves involving multiple body regions", + }, + { + key: "T06.3", + en: "", + de: "Injuries of blood vessels involving multiple body regions", + }, + { + key: "T06.4", + en: "", + de: "Injuries of muscles and tendons involving multiple body regions", + }, + { + key: "T06.5", + en: "", + de: "Injuries of intrathoracic organs with intra-abdominal and pelvic organs", + }, + { + key: "T06.8", + en: "", + de: "Other specified injuries involving multiple body regions", + }, + { + key: "T07", + en: "", + de: "Unspecified multiple injuries", + }, + { + key: "T08", + en: "", + de: "Fracture of spine, level unspecified", + }, + { + key: "T09", + en: "", + de: "Other injuries of spine and trunk, level unspecified", + }, + { + key: "T09.0", + en: "", + de: "Superficial injury of trunk, level unspecified", + }, + { + key: "T09.1", + en: "", + de: "Open wound of trunk, level unspecified", + }, + { + key: "T09.2", + en: "", + de: "Dislocation, sprain and strain of unspecified joint and ligament of trunk", + }, + { + key: "T09.3", + en: "", + de: "Injury of spinal cord, level unspecified", + }, + { + key: "T09.4", + en: "", + de: "Injury of unspecified nerve, spinal nerve root and plexus of trunk", + }, + { + key: "T09.5", + en: "", + de: "Injury of unspecified muscle and tendon of trunk", + }, + { + key: "T09.6", + en: "", + de: "Traumatic amputation of trunk, level unspecified", + }, + { + key: "T09.8", + en: "", + de: "Other specified injuries of trunk, level unspecified", + }, + { + key: "T09.9", + en: "", + de: "Unspecified injury of trunk, level unspecified", + }, + { + key: "T10", + en: "", + de: "Fracture of upper limb, level unspecified", + }, + { + key: "T11", + en: "", + de: "Other injuries of upper limb, level unspecified", + }, + { + key: "T11.0", + en: "", + de: "Superficial injury of upper limb, level unspecified", + }, + { + key: "T11.1", + en: "", + de: "Open wound of upper limb, level unspecified", + }, + { + key: "T11.2", + en: "", + de: "Dislocation, sprain and strain of unspecified joint and ligament of upper limb, level unspecified", + }, + { + key: "T11.3", + en: "", + de: "Injury of unspecified nerve of upper limb, level unspecified", + }, + { + key: "T11.4", + en: "", + de: "Injury of unspecified blood vessel of upper limb, level unspecified", + }, + { + key: "T11.5", + en: "", + de: "Injury of unspecified muscle and tendon of upper limb, level unspecified", + }, + { + key: "T11.6", + en: "", + de: "Traumatic amputation of upper limb, level unspecified", + }, + { + key: "T11.8", + en: "", + de: "Other specified injuries of upper limb, level unspecified", + }, + { + key: "T11.9", + en: "", + de: "Unspecified injury of upper limb, level unspecified", + }, + { + key: "T12", + en: "", + de: "Fracture of lower limb, level unspecified", + }, + { + key: "T13", + en: "", + de: "Other injuries of lower limb, level unspecified", + }, + { + key: "T13.0", + en: "", + de: "Superficial injury of lower limb, level unspecified", + }, + { + key: "T13.1", + en: "", + de: "Open wound of lower limb, level unspecified", + }, + { + key: "T13.2", + en: "", + de: "Dislocation, sprain and strain of unspecified joint and ligament of lower limb, level unspecified", + }, + { + key: "T13.3", + en: "", + de: "Injury of unspecified nerve of lower limb, level unspecified", + }, + { + key: "T13.4", + en: "", + de: "Injury of unspecified blood vessel of lower limb, level unspecified", + }, + { + key: "T13.5", + en: "", + de: "Injury of unspecified muscle and tendon of lower limb, level unspecified", + }, + { + key: "T13.6", + en: "", + de: "Traumatic amputation of lower limb, level unspecified", + }, + { + key: "T13.8", + en: "", + de: "Other specified injuries of lower limb, level unspecified", + }, + { + key: "T13.9", + en: "", + de: "Unspecified injury of lower limb, level unspecified", + }, + { + key: "T14", + en: "", + de: "Injury of unspecified body region", + }, + { + key: "T14.0", + en: "", + de: "Superficial injury of unspecified body region", + }, + { + key: "T14.1", + en: "", + de: "Open wound of unspecified body region", + }, + { + key: "T14.2", + en: "", + de: "Fracture of unspecified body region", + }, + { + key: "T14.3", + en: "", + de: "Dislocation, sprain and strain of unspecified body region", + }, + { + key: "T14.4", + en: "", + de: "Injury of nerve(s) of unspecified body region", + }, + { + key: "T14.5", + en: "", + de: "Injury of blood vessel(s) of unspecified body region", + }, + { + key: "T14.6", + en: "", + de: "Injury of muscles and tendons of unspecified body region", + }, + { + key: "T14.7", + en: "", + de: "Crushing injury and traumatic amputation of unspecified body region", + }, + { + key: "T14.8", + en: "", + de: "Other injuries of unspecified body region", + }, + { + key: "T14.9", + en: "", + de: "Injury, unspecified", + }, + { + key: "T15", + en: "", + de: "Foreign body on external eye", + }, + { + key: "T15.0", + en: "", + de: "Foreign body in cornea", + }, + { + key: "T15.1", + en: "", + de: "Foreign body in conjunctival sac", + }, + { + key: "T15.8", + en: "", + de: "Foreign body in other and multiple parts of external eye", + }, + { + key: "T15.9", + en: "", + de: "Foreign body on external eye, part unspecified", + }, + { + key: "T16", + en: "", + de: "Foreign body in ear", + }, + { + key: "T17", + en: "", + de: "Foreign body in respiratory tract", + }, + { + key: "T17.0", + en: "", + de: "Foreign body in nasal sinus", + }, + { + key: "T17.1", + en: "", + de: "Foreign body in nostril", + }, + { + key: "T17.2", + en: "", + de: "Foreign body in pharynx", + }, + { + key: "T17.3", + en: "", + de: "Foreign body in larynx", + }, + { + key: "T17.4", + en: "", + de: "Foreign body in trachea", + }, + { + key: "T17.5", + en: "", + de: "Foreign body in bronchus", + }, + { + key: "T17.8", + en: "", + de: "Foreign body in other and multiple parts of respiratory tract", + }, + { + key: "T17.9", + en: "", + de: "Foreign body in respiratory tract, part unspecified", + }, + { + key: "T18", + en: "", + de: "Foreign body in alimentary tract", + }, + { + key: "T18.0", + en: "", + de: "Foreign body in mouth", + }, + { + key: "T18.1", + en: "", + de: "Foreign body in oesophagus", + }, + { + key: "T18.2", + en: "", + de: "Foreign body in stomach", + }, + { + key: "T18.3", + en: "", + de: "Foreign body in small intestine", + }, + { + key: "T18.4", + en: "", + de: "Foreign body in colon", + }, + { + key: "T18.5", + en: "", + de: "Foreign body in anus and rectum", + }, + { + key: "T18.8", + en: "", + de: "Foreign body in other and multiple parts of alimentary tract", + }, + { + key: "T18.9", + en: "", + de: "Foreign body in alimentary tract, part unspecified", + }, + { + key: "T19", + en: "", + de: "Foreign body in genitourinary tract", + }, + { + key: "T19.0", + en: "", + de: "Foreign body in urethra", + }, + { + key: "T19.1", + en: "", + de: "Foreign body in bladder", + }, + { + key: "T19.2", + en: "", + de: "Foreign body in vulva and vagina", + }, + { + key: "T19.3", + en: "", + de: "Foreign body in uterus [any part]", + }, + { + key: "T19.8", + en: "", + de: "Foreign body in other and multiple parts of genitourinary tract", + }, + { + key: "T19.9", + en: "", + de: "Foreign body in genitourinary tract, part unspecified", + }, + { + key: "T20", + en: "", + de: "Burn and corrosion of head and neck", + }, + { + key: "T20.0", + en: "", + de: "Burn of unspecified degree of head and neck", + }, + { + key: "T20.1", + en: "", + de: "Burn of first degree of head and neck", + }, + { + key: "T20.2", + en: "", + de: "Burn of second degree of head and neck", + }, + { + key: "T20.3", + en: "", + de: "Burn of third degree of head and neck", + }, + { + key: "T20.4", + en: "", + de: "Corrosion of unspecified degree of head and neck", + }, + { + key: "T20.5", + en: "", + de: "Corrosion of first degree of head and neck", + }, + { + key: "T20.6", + en: "", + de: "Corrosion of second degree of head and neck", + }, + { + key: "T20.7", + en: "", + de: "Corrosion of third degree of head and neck", + }, + { + key: "T21", + en: "", + de: "Burn and corrosion of trunk", + }, + { + key: "T21.0", + en: "", + de: "Burn of unspecified degree of trunk", + }, + { + key: "T21.1", + en: "", + de: "Burn of first degree of trunk", + }, + { + key: "T21.2", + en: "", + de: "Burn of second degree of trunk", + }, + { + key: "T21.3", + en: "", + de: "Burn of third degree of trunk", + }, + { + key: "T21.4", + en: "", + de: "Corrosion of unspecified degree of trunk", + }, + { + key: "T21.5", + en: "", + de: "Corrosion of first degree of trunk", + }, + { + key: "T21.6", + en: "", + de: "Corrosion of second degree of trunk", + }, + { + key: "T21.7", + en: "", + de: "Corrosion of third degree of trunk", + }, + { + key: "T22", + en: "", + de: "Burn and corrosion of shoulder and upper limb, except wrist and hand", + }, + { + key: "T22.0", + en: "", + de: "Burn of unspecified degree of shoulder and upper limb, except wrist and hand", + }, + { + key: "T22.1", + en: "", + de: "Burn of first degree of shoulder and upper limb, except wrist and hand", + }, + { + key: "T22.2", + en: "", + de: "Burn of second degree of shoulder and upper limb, except wrist and hand", + }, + { + key: "T22.3", + en: "", + de: "Burn of third degree of shoulder and upper limb, except wrist and hand", + }, + { + key: "T22.4", + en: "", + de: "Corrosion of unspecified degree of shoulder and upper limb, except wrist and hand", + }, + { + key: "T22.5", + en: "", + de: "Corrosion of first degree of shoulder and upper limb, except wrist and hand", + }, + { + key: "T22.6", + en: "", + de: "Corrosion of second degree of shoulder and upper limb, except wrist and hand", + }, + { + key: "T22.7", + en: "", + de: "Corrosion of third degree of shoulder and upper limb, except wrist and hand", + }, + { + key: "T23", + en: "", + de: "Burn and corrosion of wrist and hand", + }, + { + key: "T23.0", + en: "", + de: "Burn of unspecified degree of wrist and hand", + }, + { + key: "T23.1", + en: "", + de: "Burn of first degree of wrist and hand", + }, + { + key: "T23.2", + en: "", + de: "Burn of second degree of wrist and hand", + }, + { + key: "T23.3", + en: "", + de: "Burn of third degree of wrist and hand", + }, + { + key: "T23.4", + en: "", + de: "Corrosion of unspecified degree of wrist and hand", + }, + { + key: "T23.5", + en: "", + de: "Corrosion of first degree of wrist and hand", + }, + { + key: "T23.6", + en: "", + de: "Corrosion of second degree of wrist and hand", + }, + { + key: "T23.7", + en: "", + de: "Corrosion of third degree of wrist and hand", + }, + { + key: "T24", + en: "", + de: "Burn and corrosion of hip and lower limb, except ankle and foot", + }, + { + key: "T24.0", + en: "", + de: "Burn of unspecified degree of hip and lower limb, except ankle and foot", + }, + { + key: "T24.1", + en: "", + de: "Burn of first degree of hip and lower limb, except ankle and foot", + }, + { + key: "T24.2", + en: "", + de: "Burn of second degree of hip and lower limb, except ankle and foot", + }, + { + key: "T24.3", + en: "", + de: "Burn of third degree of hip and lower limb, except ankle and foot", + }, + { + key: "T24.4", + en: "", + de: "Corrosion of unspecified degree of hip and lower limb, except ankle and foot", + }, + { + key: "T24.5", + en: "", + de: "Corrosion of first degree of hip and lower limb, except ankle and foot", + }, + { + key: "T24.6", + en: "", + de: "Corrosion of second degree of hip and lower limb, except ankle and foot", + }, + { + key: "T24.7", + en: "", + de: "Corrosion of third degree of hip and lower limb, except ankle and foot", + }, + { + key: "T25", + en: "", + de: "Burn and corrosion of ankle and foot", + }, + { + key: "T25.0", + en: "", + de: "Burn of unspecified degree of ankle and foot", + }, + { + key: "T25.1", + en: "", + de: "Burn of first degree of ankle and foot", + }, + { + key: "T25.2", + en: "", + de: "Burn of second degree of ankle and foot", + }, + { + key: "T25.3", + en: "", + de: "Burn of third degree of ankle and foot", + }, + { + key: "T25.4", + en: "", + de: "Corrosion of unspecified degree of ankle and foot", + }, + { + key: "T25.5", + en: "", + de: "Corrosion of first degree of ankle and foot", + }, + { + key: "T25.6", + en: "", + de: "Corrosion of second degree of ankle and foot", + }, + { + key: "T25.7", + en: "", + de: "Corrosion of third degree of ankle and foot", + }, + { + key: "T26", + en: "", + de: "Burn and corrosion confined to eye and adnexa", + }, + { + key: "T26.0", + en: "", + de: "Burn of eyelid and periocular area", + }, + { + key: "T26.1", + en: "", + de: "Burn of cornea and conjunctival sac", + }, + { + key: "T26.2", + en: "", + de: "Burn with resulting rupture and destruction of eyeball", + }, + { + key: "T26.3", + en: "", + de: "Burn of other parts of eye and adnexa", + }, + { + key: "T26.4", + en: "", + de: "Burn of eye and adnexa, part unspecified", + }, + { + key: "T26.5", + en: "", + de: "Corrosion of eyelid and periocular area", + }, + { + key: "T26.6", + en: "", + de: "Corrosion of cornea and conjunctival sac", + }, + { + key: "T26.7", + en: "", + de: "Corrosion with resulting rupture and destruction of eyeball", + }, + { + key: "T26.8", + en: "", + de: "Corrosion of other parts of eye and adnexa", + }, + { + key: "T26.9", + en: "", + de: "Corrosion of eye and adnexa, part unspecified", + }, + { + key: "T27", + en: "", + de: "Burn and corrosion of respiratory tract", + }, + { + key: "T27.0", + en: "", + de: "Burn of larynx and trachea", + }, + { + key: "T27.1", + en: "", + de: "Burn involving larynx and trachea with lung", + }, + { + key: "T27.2", + en: "", + de: "Burn of other parts of respiratory tract", + }, + { + key: "T27.3", + en: "", + de: "Burn of respiratory tract, part unspecified", + }, + { + key: "T27.4", + en: "", + de: "Corrosion of larynx and trachea", + }, + { + key: "T27.5", + en: "", + de: "Corrosion involving larynx and trachea with lung", + }, + { + key: "T27.6", + en: "", + de: "Corrosion of other parts of respiratory tract", + }, + { + key: "T27.7", + en: "", + de: "Corrosion of respiratory tract, part unspecified", + }, + { + key: "T28", + en: "", + de: "Burn and corrosion of other internal organs", + }, + { + key: "T28.0", + en: "", + de: "Burn of mouth and pharynx", + }, + { + key: "T28.1", + en: "", + de: "Burn of oesophagus", + }, + { + key: "T28.2", + en: "", + de: "Burn of other parts of alimentary tract", + }, + { + key: "T28.3", + en: "", + de: "Burn of internal genitourinary organs", + }, + { + key: "T28.4", + en: "", + de: "Burn of other and unspecified internal organs", + }, + { + key: "T28.5", + en: "", + de: "Corrosion of mouth and pharynx", + }, + { + key: "T28.6", + en: "", + de: "Corrosion of oesophagus", + }, + { + key: "T28.7", + en: "", + de: "Corrosion of other parts of alimentary tract", + }, + { + key: "T28.8", + en: "", + de: "Corrosion of internal genitourinary organs", + }, + { + key: "T28.9", + en: "", + de: "Corrosion of other and unspecified internal organs", + }, + { + key: "T29", + en: "", + de: "Burns and corrosions of multiple body regions", + }, + { + key: "T29.0", + en: "", + de: "Burns of multiple regions, unspecified degree", + }, + { + key: "T29.1", + en: "", + de: "Burns of multiple regions, no more than first-degree burns mentioned", + }, + { + key: "T29.2", + en: "", + de: "Burns of multiple regions, no more than second-degree burns mentioned", + }, + { + key: "T29.3", + en: "", + de: "Burns of multiple regions, at least one burn of third degree mentioned", + }, + { + key: "T29.4", + en: "", + de: "Corrosions of multiple regions, unspecified degree", + }, + { + key: "T29.5", + en: "", + de: "Corrosions of multiple regions, no more than first-degree corrosions mentioned", + }, + { + key: "T29.6", + en: "", + de: "Corrosions of multiple regions, no more than second-degree corrosions mentioned", + }, + { + key: "T29.7", + en: "", + de: "Corrosions of multiple regions, at least one corrosion of third degree mentioned", + }, + { + key: "T30", + en: "", + de: "Burn and corrosion, body region unspecified", + }, + { + key: "T30.0", + en: "", + de: "Burn of unspecified body region, unspecified degree", + }, + { + key: "T30.1", + en: "", + de: "Burn of first degree, body region unspecified", + }, + { + key: "T30.2", + en: "", + de: "Burn of second degree, body region unspecified", + }, + { + key: "T30.3", + en: "", + de: "Burn of third degree, body region unspecified", + }, + { + key: "T30.4", + en: "", + de: "Corrosion of unspecified body region, unspecified degree", + }, + { + key: "T30.5", + en: "", + de: "Corrosion of first degree, body region unspecified", + }, + { + key: "T30.6", + en: "", + de: "Corrosion of second degree, body region unspecified", + }, + { + key: "T30.7", + en: "", + de: "Corrosion of third degree, body region unspecified", + }, + { + key: "T33", + en: "", + de: "Superficial frostbite", + }, + { + key: "T33.0", + en: "", + de: "Superficial frostbite of head", + }, + { + key: "T33.1", + en: "", + de: "Superficial frostbite of neck", + }, + { + key: "T33.2", + en: "", + de: "Superficial frostbite of thorax", + }, + { + key: "T33.3", + en: "", + de: "Superficial frostbite of abdominal wall, lower back and pelvis", + }, + { + key: "T33.4", + en: "", + de: "Superficial frostbite of arm", + }, + { + key: "T33.5", + en: "", + de: "Superficial frostbite of wrist and hand", + }, + { + key: "T33.6", + en: "", + de: "Superficial frostbite of hip and thigh", + }, + { + key: "T33.7", + en: "", + de: "Superficial frostbite of knee and lower leg", + }, + { + key: "T33.8", + en: "", + de: "Superficial frostbite of ankle and foot", + }, + { + key: "T33.9", + en: "", + de: "Superficial frostbite of other and unspecified sites", + }, + { + key: "T34", + en: "", + de: "Frostbite with tissue necrosis", + }, + { + key: "T34.0", + en: "", + de: "Frostbite with tissue necrosis of head", + }, + { + key: "T34.1", + en: "", + de: "Frostbite with tissue necrosis of neck", + }, + { + key: "T34.2", + en: "", + de: "Frostbite with tissue necrosis of thorax", + }, + { + key: "T34.3", + en: "", + de: "Frostbite with tissue necrosis of abdominal wall, lower back and pelvis", + }, + { + key: "T34.4", + en: "", + de: "Frostbite with tissue necrosis of arm", + }, + { + key: "T34.5", + en: "", + de: "Frostbite with tissue necrosis of wrist and hand", + }, + { + key: "T34.6", + en: "", + de: "Frostbite with tissue necrosis of hip and thigh", + }, + { + key: "T34.7", + en: "", + de: "Frostbite with tissue necrosis of knee and lower leg", + }, + { + key: "T34.8", + en: "", + de: "Frostbite with tissue necrosis of ankle and foot", + }, + { + key: "T34.9", + en: "", + de: "Frostbite with tissue necrosis of other and unspecified sites", + }, + { + key: "T35", + en: "", + de: "Frostbite involving multiple body regions and unspecified frostbite", + }, + { + key: "T35.0", + en: "", + de: "Superficial frostbite involving multiple body regions", + }, + { + key: "T35.1", + en: "", + de: "Frostbite with tissue necrosis involving multiple body regions", + }, + { + key: "T35.2", + en: "", + de: "Unspecified frostbite of head and neck", + }, + { + key: "T35.3", + en: "", + de: "Unspecified frostbite of thorax, abdomen, lower back and pelvis", + }, + { + key: "T35.4", + en: "", + de: "Unspecified frostbite of upper limb", + }, + { + key: "T35.5", + en: "", + de: "Unspecified frostbite of lower limb", + }, + { + key: "T35.6", + en: "", + de: "Unspecified frostbite involving multiple body regions", + }, + { + key: "T35.7", + en: "", + de: "Unspecified frostbite of unspecified site", + }, + { + key: "T36", + en: "", + de: "Poisoning by systemic antibiotics", + }, + { + key: "T36.0", + en: "", + de: "Poisoning: Penicillins", + }, + { + key: "T36.1", + en: "", + de: "Poisoning: Cefalosporins and other beta-lactam antibiotics", + }, + { + key: "T36.2", + en: "", + de: "Poisoning: Chloramphenicol group", + }, + { + key: "T36.3", + en: "", + de: "Poisoning: Macrolides", + }, + { + key: "T36.4", + en: "", + de: "Poisoning: Tetracyclines", + }, + { + key: "T36.5", + en: "", + de: "Poisoning: Aminoglycosides", + }, + { + key: "T36.6", + en: "", + de: "Poisoning: Rifamycins", + }, + { + key: "T36.7", + en: "", + de: "Poisoning: Antifungal antibiotics, systemically used", + }, + { + key: "T36.8", + en: "", + de: "Poisoning: Other systemic antibiotics", + }, + { + key: "T36.9", + en: "", + de: "Poisoning: Systemic antibiotic, unspecified", + }, + { + key: "T37", + en: "", + de: "Poisoning by other systemic anti-infectives and antiparasitics", + }, + { + key: "T37.0", + en: "", + de: "Poisoning: Sulfonamides", + }, + { + key: "T37.1", + en: "", + de: "Poisoning: Antimycobacterial drugs", + }, + { + key: "T37.2", + en: "", + de: "Poisoning: Antimalarials and drugs acting on other blood protozoa", + }, + { + key: "T37.3", + en: "", + de: "Poisoning: Other antiprotozoal drugs", + }, + { + key: "T37.4", + en: "", + de: "Poisoning: Anthelminthics", + }, + { + key: "T37.5", + en: "", + de: "Poisoning: Antiviral drugs", + }, + { + key: "T37.8", + en: "", + de: "Poisoning: Other specified systemic anti-infectives and antiparasitics", + }, + { + key: "T37.9", + en: "", + de: "Poisoning: Systemic anti-infective and antiparasitic, unspecified", + }, + { + key: "T38", + en: "", + de: "Poisoning by hormones and their synthetic substitutes and antagonists, not elsewhere classified", + }, + { + key: "T38.0", + en: "", + de: "Poisoning: Glucocorticoids and synthetic analogues", + }, + { + key: "T38.1", + en: "", + de: "Poisoning: Thyroid hormones and substitutes", + }, + { + key: "T38.2", + en: "", + de: "Poisoning: Antithyroid drugs", + }, + { + key: "T38.3", + en: "", + de: "Poisoning: Insulin and oral hypoglycaemic [antidiabetic] drugs", + }, + { + key: "T38.4", + en: "", + de: "Poisoning: Oral contraceptives", + }, + { + key: "T38.5", + en: "", + de: "Poisoning: Other estrogens and progestogens", + }, + { + key: "T38.6", + en: "", + de: "Poisoning: Antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified", + }, + { + key: "T38.7", + en: "", + de: "Poisoning: Androgens and anabolic congeners", + }, + { + key: "T38.8", + en: "", + de: "Poisoning: Other and unspecified hormones and their synthetic substitutes", + }, + { + key: "T38.9", + en: "", + de: "Poisoning: Other and unspecified hormone antagonists", + }, + { + key: "T39", + en: "", + de: "Poisoning by nonopioid analgesics, antipyretics and antirheumatics", + }, + { + key: "T39.0", + en: "", + de: "Poisoning: Salicylates", + }, + { + key: "T39.1", + en: "", + de: "Poisoning: 4-Aminophenol derivatives", + }, + { + key: "T39.2", + en: "", + de: "Poisoning: Pyrazolone derivatives", + }, + { + key: "T39.3", + en: "", + de: "Poisoning: Other nonsteroidal anti-inflammatory drugs [NSAID]", + }, + { + key: "T39.4", + en: "", + de: "Poisoning: Antirheumatics, not elsewhere classified", + }, + { + key: "T39.8", + en: "", + de: "Poisoning: Other nonopioid analgesics and antipyretics, not elsewhere classified", + }, + { + key: "T39.9", + en: "", + de: "Poisoning: Nonopioid analgesic, antipyretic and antirheumatic, unspecified", + }, + { + key: "T40", + en: "", + de: "Poisoning by narcotics and psychodysleptics [hallucinogens]", + }, + { + key: "T40.0", + en: "", + de: "Poisoning: Opium", + }, + { + key: "T40.1", + en: "", + de: "Poisoning: Heroin", + }, + { + key: "T40.2", + en: "", + de: "Poisoning: Other opioids", + }, + { + key: "T40.3", + en: "", + de: "Poisoning: Methadone", + }, + { + key: "T40.4", + en: "", + de: "Poisoning: Other synthetic narcotics", + }, + { + key: "T40.5", + en: "", + de: "Poisoning: Cocaine", + }, + { + key: "T40.6", + en: "", + de: "Poisoning: Other and unspecified narcotics", + }, + { + key: "T40.7", + en: "", + de: "Poisoning: Cannabis (derivatives)", + }, + { + key: "T40.8", + en: "", + de: "Poisoning: Lysergide [LSD]", + }, + { + key: "T40.9", + en: "", + de: "Poisoning: Other and unspecified psychodysleptics [hallucinogens]", + }, + { + key: "T41", + en: "", + de: "Poisoning by anaesthetics and therapeutic gases", + }, + { + key: "T41.0", + en: "", + de: "Poisoning: Inhaled anaesthetics", + }, + { + key: "T41.1", + en: "", + de: "Poisoning: Intravenous anaesthetics", + }, + { + key: "T41.2", + en: "", + de: "Poisoning: Other and unspecified general anaesthetics", + }, + { + key: "T41.3", + en: "", + de: "Poisoning: Local anaesthetics", + }, + { + key: "T41.4", + en: "", + de: "Poisoning: Anaesthetic, unspecified", + }, + { + key: "T41.5", + en: "", + de: "Poisoning: Therapeutic gases", + }, + { + key: "T42", + en: "", + de: "Poisoning by antiepileptic, sedative-hypnotic and antiparkinsonism drugs", + }, + { + key: "T42.0", + en: "", + de: "Poisoning: Hydantoin derivatives", + }, + { + key: "T42.1", + en: "", + de: "Poisoning: Iminostilbenes", + }, + { + key: "T42.2", + en: "", + de: "Poisoning: Succinimides and oxazolidinediones", + }, + { + key: "T42.3", + en: "", + de: "Poisoning: Barbiturates", + }, + { + key: "T42.4", + en: "", + de: "Poisoning: Benzodiazepines", + }, + { + key: "T42.5", + en: "", + de: "Poisoning: Mixed antiepileptics, not elsewhere classified", + }, + { + key: "T42.6", + en: "", + de: "Poisoning: Other antiepileptic and sedative-hypnotic drugs", + }, + { + key: "T42.7", + en: "", + de: "Poisoning: Antiepileptic and sedative-hypnotic drugs, unspecified", + }, + { + key: "T42.8", + en: "", + de: "Poisoning: Antiparkinsonism drugs and other central muscle-tone depressants", + }, + { + key: "T43", + en: "", + de: "Poisoning by psychotropic drugs, not elsewhere classified", + }, + { + key: "T43.0", + en: "", + de: "Poisoning: Tricyclic and tetracyclic antidepressants", + }, + { + key: "T43.1", + en: "", + de: "Poisoning: Monoamine-oxidase-inhibitor antidepressants", + }, + { + key: "T43.2", + en: "", + de: "Poisoning: Other and unspecified antidepressants", + }, + { + key: "T43.3", + en: "", + de: "Poisoning: Phenothiazine antipsychotics and neuroleptics", + }, + { + key: "T43.4", + en: "", + de: "Poisoning: Butyrophenone and thioxanthene neuroleptics", + }, + { + key: "T43.5", + en: "", + de: "Poisoning: Other and unspecified antipsychotics and neuroleptics", + }, + { + key: "T43.6", + en: "", + de: "Poisoning: Psychostimulants with abuse potential", + }, + { + key: "T43.8", + en: "", + de: "Poisoning: Other psychotropic drugs, not elsewhere classified", + }, + { + key: "T43.9", + en: "", + de: "Poisoning: Psychotropic drug, unspecified", + }, + { + key: "T44", + en: "", + de: "Poisoning by drugs primarily affecting the autonomic nervous system", + }, + { + key: "T44.0", + en: "", + de: "Poisoning: Anticholinesterase agents", + }, + { + key: "T44.1", + en: "", + de: "Poisoning: Other parasympathomimetics [cholinergics]", + }, + { + key: "T44.2", + en: "", + de: "Poisoning: Ganglionic blocking drugs, not elsewhere classified", + }, + { + key: "T44.3", + en: "", + de: "Poisoning: Other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, not elsewhere classified", + }, + { + key: "T44.4", + en: "", + de: "Poisoning: Predominantly alpha-adrenoreceptor agonists, not elsewhere classified", + }, + { + key: "T44.5", + en: "", + de: "Poisoning: Predominantly beta-adrenoreceptor agonists, not elsewhere classified", + }, + { + key: "T44.6", + en: "", + de: "Poisoning: Alpha-adrenoreceptor antagonists, not elsewhere classified", + }, + { + key: "T44.7", + en: "", + de: "Poisoning: Beta-adrenoreceptor antagonists, not elsewhere classified", + }, + { + key: "T44.8", + en: "", + de: "Poisoning: Centrally acting and adrenergic-neuron-blocking agents, not elsewhere classified", + }, + { + key: "T44.9", + en: "", + de: "Poisoning: Other and unspecified drugs primarily affecting the autonomic nervous system", + }, + { + key: "T45", + en: "", + de: "Poisoning by primarily systemic and haematological agents, not elsewhere classified", + }, + { + key: "T45.0", + en: "", + de: "Poisoning: Antiallergic and antiemetic drugs", + }, + { + key: "T45.1", + en: "", + de: "Poisoning: Antineoplastic and immunosuppressive drugs", + }, + { + key: "T45.2", + en: "", + de: "Poisoning: Vitamins, not elsewhere classified", + }, + { + key: "T45.3", + en: "", + de: "Poisoning: Enzymes, not elsewhere classified", + }, + { + key: "T45.4", + en: "", + de: "Poisoning: Iron and its compounds", + }, + { + key: "T45.5", + en: "", + de: "Poisoning: Anticoagulants", + }, + { + key: "T45.6", + en: "", + de: "Poisoning: Fibrinolysis-affecting drugs", + }, + { + key: "T45.7", + en: "", + de: "Poisoning: Anticoagulant antagonists, vitamin K and other coagulants", + }, + { + key: "T45.8", + en: "", + de: "Poisoning: Other primarily systemic and haematological agents", + }, + { + key: "T45.9", + en: "", + de: "Poisoning: Primarily systemic and haematological agent, unspecified", + }, + { + key: "T46", + en: "", + de: "Poisoning by agents primarily affecting the cardiovascular system", + }, + { + key: "T46.0", + en: "", + de: "Poisoning: Cardiac-stimulant glycosides and drugs of similar action", + }, + { + key: "T46.1", + en: "", + de: "Poisoning: Calcium-channel blockers", + }, + { + key: "T46.2", + en: "", + de: "Poisoning: Other antidysrhythmic drugs, not elsewhere classified", + }, + { + key: "T46.3", + en: "", + de: "Poisoning: Coronary vasodilators, not elsewhere classified", + }, + { + key: "T46.4", + en: "", + de: "Poisoning: Angiotensin-converting-enzyme inhibitors", + }, + { + key: "T46.5", + en: "", + de: "Poisoning: Other antihypertensive drugs, not elsewhere classified", + }, + { + key: "T46.6", + en: "", + de: "Poisoning: Antihyperlipidaemic and antiarteriosclerotic drugs", + }, + { + key: "T46.7", + en: "", + de: "Poisoning: Peripheral vasodilators", + }, + { + key: "T46.8", + en: "", + de: "Poisoning: Antivaricose drugs, including sclerosing agents", + }, + { + key: "T46.9", + en: "", + de: "Poisoning: Other and unspecified agents primarily affecting the cardiovascular system", + }, + { + key: "T47", + en: "", + de: "Poisoning by agents primarily affecting the gastrointestinal system", + }, + { + key: "T47.0", + en: "", + de: "Poisoning: Histamine H 2 -receptor antagonists", + }, + { + key: "T47.1", + en: "", + de: "Poisoning: Other antacids and anti-gastric-secretion drugs", + }, + { + key: "T47.2", + en: "", + de: "Poisoning: Stimulant laxatives", + }, + { + key: "T47.3", + en: "", + de: "Poisoning: Saline and osmotic laxatives", + }, + { + key: "T47.4", + en: "", + de: "Poisoning: Other laxatives", + }, + { + key: "T47.5", + en: "", + de: "Poisoning: Digestants", + }, + { + key: "T47.6", + en: "", + de: "Poisoning: Antidiarrhoeal drugs", + }, + { + key: "T47.7", + en: "", + de: "Poisoning: Emetics", + }, + { + key: "T47.8", + en: "", + de: "Poisoning: Other agents primarily affecting the gastrointestinal system", + }, + { + key: "T47.9", + en: "", + de: "Poisoning: Agent primarily affecting the gastrointestinal system, unspecified", + }, + { + key: "T48", + en: "", + de: "Poisoning by agents primarily acting on smooth and skeletal muscles and the respiratory system", + }, + { + key: "T48.0", + en: "", + de: "Poisoning: Oxytocic drugs", + }, + { + key: "T48.1", + en: "", + de: "Poisoning: Skeletal muscle relaxants [neuromuscular blocking agents]", + }, + { + key: "T48.2", + en: "", + de: "Poisoning: Other and unspecified agents primarily acting on muscles", + }, + { + key: "T48.3", + en: "", + de: "Poisoning: Antitussives", + }, + { + key: "T48.4", + en: "", + de: "Poisoning: Expectorants", + }, + { + key: "T48.5", + en: "", + de: "Poisoning: Anti-common-cold drugs", + }, + { + key: "T48.6", + en: "", + de: "Poisoning: Antiasthmatics, not elsewhere classified", + }, + { + key: "T48.7", + en: "", + de: "Poisoning: Other and unspecified agents primarily acting on the respiratory system", + }, + { + key: "T49", + en: "", + de: "Poisoning by topical agents primarily affecting skin and mucous membrane and by ophthalmological, otorhinolaryngological and dental drugs", + }, + { + key: "T49.0", + en: "", + de: "Poisoning: Local antifungal, anti-infective and anti-inflammatory drugs, not elsewhere classified", + }, + { + key: "T49.1", + en: "", + de: "Poisoning: Antipruritics", + }, + { + key: "T49.2", + en: "", + de: "Poisoning: Local astringents and local detergents", + }, + { + key: "T49.3", + en: "", + de: "Poisoning: Emollients, demulcents and protectants", + }, + { + key: "T49.4", + en: "", + de: "Poisoning: Keratolytics, keratoplastics and other hair treatment drugs and preparations", + }, + { + key: "T49.5", + en: "", + de: "Poisoning: Ophthalmological drugs and preparations", + }, + { + key: "T49.6", + en: "", + de: "Poisoning: Otorhinolaryngological drugs and preparations", + }, + { + key: "T49.7", + en: "", + de: "Poisoning: Dental drugs, topically applied", + }, + { + key: "T49.8", + en: "", + de: "Poisoning: Other topical agents", + }, + { + key: "T49.9", + en: "", + de: "Poisoning: Topical agent, unspecified", + }, + { + key: "T50", + en: "", + de: "Poisoning by diuretics and other and unspecified drugs, medicaments and biological substances", + }, + { + key: "T50.0", + en: "", + de: "Poisoning: Mineralocorticoids and their antagonists", + }, + { + key: "T50.1", + en: "", + de: "Poisoning: Loop [high-ceiling] diuretics", + }, + { + key: "T50.2", + en: "", + de: "Poisoning: Carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics", + }, + { + key: "T50.3", + en: "", + de: "Poisoning: Electrolytic, caloric and water-balance agents", + }, + { + key: "T50.4", + en: "", + de: "Poisoning: Drugs affecting uric acid metabolism", + }, + { + key: "T50.5", + en: "", + de: "Poisoning: Appetite depressants", + }, + { + key: "T50.6", + en: "", + de: "Poisoning: Antidotes and chelating agents, not elsewhere classified", + }, + { + key: "T50.7", + en: "", + de: "Poisoning: Analeptics and opioid receptor antagonists", + }, + { + key: "T50.8", + en: "", + de: "Poisoning: Diagnostic agents", + }, + { + key: "T50.9", + en: "", + de: "Poisoning: Other and unspecified drugs, medicaments and biological substances", + }, + { + key: "T51", + en: "", + de: "Toxic effect of alcohol", + }, + { + key: "T51.0", + en: "", + de: "Toxic effect: Ethanol", + }, + { + key: "T51.1", + en: "", + de: "Toxic effect: Methanol", + }, + { + key: "T51.2", + en: "", + de: "Toxic effect: 2-Propanol", + }, + { + key: "T51.3", + en: "", + de: "Toxic effect: Fusel oil", + }, + { + key: "T51.8", + en: "", + de: "Toxic effect: Other alcohols", + }, + { + key: "T51.9", + en: "", + de: "Toxic effect: Alcohol, unspecified", + }, + { + key: "T52", + en: "", + de: "Toxic effect of organic solvents", + }, + { + key: "T52.0", + en: "", + de: "Toxic effect: Petroleum products", + }, + { + key: "T52.1", + en: "", + de: "Toxic effect: Benzene", + }, + { + key: "T52.2", + en: "", + de: "Toxic effect: Homologues of benzene", + }, + { + key: "T52.3", + en: "", + de: "Toxic effect: Glycols", + }, + { + key: "T52.4", + en: "", + de: "Toxic effect: Ketones", + }, + { + key: "T52.8", + en: "", + de: "Toxic effect: Other organic solvents", + }, + { + key: "T52.9", + en: "", + de: "Toxic effect: Organic solvent, unspecified", + }, + { + key: "T53", + en: "", + de: "Toxic effect of halogen derivatives of aliphatic and aromatic hydrocarbons", + }, + { + key: "T53.0", + en: "", + de: "Toxic effect: Carbon tetrachloride", + }, + { + key: "T53.1", + en: "", + de: "Toxic effect: Chloroform", + }, + { + key: "T53.2", + en: "", + de: "Toxic effect: Trichloroethylene", + }, + { + key: "T53.3", + en: "", + de: "Toxic effect: Tetrachloroethylene", + }, + { + key: "T53.4", + en: "", + de: "Toxic effect: Dichloromethane", + }, + { + key: "T53.5", + en: "", + de: "Toxic effect: Chlorofluorocarbons", + }, + { + key: "T53.6", + en: "", + de: "Toxic effect: Other halogen derivatives of aliphatic hydrocarbons", + }, + { + key: "T53.7", + en: "", + de: "Toxic effect: Other halogen derivatives of aromatic hydrocarbons", + }, + { + key: "T53.9", + en: "", + de: "Toxic effect: Halogen derivative of aliphatic and aromatic hydrocarbons, unspecified", + }, + { + key: "T54", + en: "", + de: "Toxic effect of corrosive substances", + }, + { + key: "T54.0", + en: "", + de: "Toxic effect: Phenol and phenol homologues", + }, + { + key: "T54.1", + en: "", + de: "Toxic effect: Other corrosive organic compounds", + }, + { + key: "T54.2", + en: "", + de: "Toxic effect: Corrosive acids and acid-like substances", + }, + { + key: "T54.3", + en: "", + de: "Toxic effect: Corrosive alkalis and alkali-like substances", + }, + { + key: "T54.9", + en: "", + de: "Toxic effect: Corrosive substance, unspecified", + }, + { + key: "T55", + en: "", + de: "Toxic effect of soaps and detergents", + }, + { + key: "T56", + en: "", + de: "Toxic effect of metals", + }, + { + key: "T56.0", + en: "", + de: "Toxic effect: Lead and its compounds", + }, + { + key: "T56.1", + en: "", + de: "Toxic effect: Mercury and its compounds", + }, + { + key: "T56.2", + en: "", + de: "Toxic effect: Chromium and its compounds", + }, + { + key: "T56.3", + en: "", + de: "Toxic effect: Cadmium and its compounds", + }, + { + key: "T56.4", + en: "", + de: "Toxic effect: Copper and its compounds", + }, + { + key: "T56.5", + en: "", + de: "Toxic effect: Zinc and its compounds", + }, + { + key: "T56.6", + en: "", + de: "Toxic effect: Tin and its compounds", + }, + { + key: "T56.7", + en: "", + de: "Toxic effect: Beryllium and its compounds", + }, + { + key: "T56.8", + en: "", + de: "Toxic effect: Other metals", + }, + { + key: "T56.9", + en: "", + de: "Toxic effect: Metal, unspecified", + }, + { + key: "T57", + en: "", + de: "Toxic effect of other inorganic substances", + }, + { + key: "T57.0", + en: "", + de: "Toxic effect: Arsenic and its compounds", + }, + { + key: "T57.1", + en: "", + de: "Toxic effect: Phosphorus and its compounds", + }, + { + key: "T57.2", + en: "", + de: "Toxic effect: Manganese and its compounds", + }, + { + key: "T57.3", + en: "", + de: "Toxic effect: Hydrogen cyanide", + }, + { + key: "T57.8", + en: "", + de: "Toxic effect: Other specified inorganic substances", + }, + { + key: "T57.9", + en: "", + de: "Toxic effect: Inorganic substance, unspecified", + }, + { + key: "T58", + en: "", + de: "Toxic effect of carbon monoxide", + }, + { + key: "T59", + en: "", + de: "Toxic effect of other gases, fumes and vapours", + }, + { + key: "T59.0", + en: "", + de: "Toxic effect: Nitrogen oxides", + }, + { + key: "T59.1", + en: "", + de: "Toxic effect: Sulfur dioxide", + }, + { + key: "T59.2", + en: "", + de: "Toxic effect: Formaldehyde", + }, + { + key: "T59.3", + en: "", + de: "Toxic effect: Lacrimogenic gas", + }, + { + key: "T59.4", + en: "", + de: "Toxic effect: Chlorine gas", + }, + { + key: "T59.5", + en: "", + de: "Toxic effect: Fluorine gas and hydrogen fluoride", + }, + { + key: "T59.6", + en: "", + de: "Toxic effect: Hydrogen sulfide", + }, + { + key: "T59.7", + en: "", + de: "Toxic effect: Carbon dioxide", + }, + { + key: "T59.8", + en: "", + de: "Toxic effect: Other specified gases, fumes and vapours", + }, + { + key: "T59.9", + en: "", + de: "Toxic effect: Gases, fumes and vapours, unspecified", + }, + { + key: "T60", + en: "", + de: "Toxic effect of pesticides", + }, + { + key: "T60.0", + en: "", + de: "Toxic effect: Organophosphate and carbamate insecticides", + }, + { + key: "T60.1", + en: "", + de: "Toxic effect: Halogenated insecticides", + }, + { + key: "T60.2", + en: "", + de: "Toxic effect: Other and unspecified insecticides", + }, + { + key: "T60.3", + en: "", + de: "Toxic effect: Herbicides and fungicides", + }, + { + key: "T60.4", + en: "", + de: "Toxic effect: Rodenticides", + }, + { + key: "T60.8", + en: "", + de: "Toxic effect: Other pesticides", + }, + { + key: "T60.9", + en: "", + de: "Toxic effect: Pesticide, unspecified", + }, + { + key: "T61", + en: "", + de: "Toxic effect of noxious substances eaten as seafood", + }, + { + key: "T61.0", + en: "", + de: "Toxic effect: Ciguatera fish poisoning", + }, + { + key: "T61.1", + en: "", + de: "Toxic effect: Scombroid fish poisoning", + }, + { + key: "T61.2", + en: "", + de: "Toxic effect: Other fish and shellfish poisoning", + }, + { + key: "T61.8", + en: "", + de: "Toxic effect: Toxic effect of other seafoods", + }, + { + key: "T61.9", + en: "", + de: "Toxic effect: Toxic effect of unspecified seafood", + }, + { + key: "T62", + en: "", + de: "Toxic effect of other noxious substances eaten as food", + }, + { + key: "T62.0", + en: "", + de: "Toxic effect: Ingested mushrooms", + }, + { + key: "T62.1", + en: "", + de: "Toxic effect: Ingested berries", + }, + { + key: "T62.2", + en: "", + de: "Toxic effect: Other ingested (parts of) plant(s)", + }, + { + key: "T62.8", + en: "", + de: "Toxic effect: Other specified noxious substances eaten as food", + }, + { + key: "T62.9", + en: "", + de: "Toxic effect: Noxious substance eaten as food, unspecified", + }, + { + key: "T63", + en: "", + de: "Toxic effect of contact with venomous animals", + }, + { + key: "T63.0", + en: "", + de: "Toxic effect: Snake venom", + }, + { + key: "T63.1", + en: "", + de: "Toxic effect: Venom of other reptiles", + }, + { + key: "T63.2", + en: "", + de: "Toxic effect: Venom of scorpion", + }, + { + key: "T63.3", + en: "", + de: "Toxic effect: Venom of spider", + }, + { + key: "T63.4", + en: "", + de: "Toxic effect: Venom of other arthropods", + }, + { + key: "T63.5", + en: "", + de: "Toxic effect: Toxic effect of contact with fish", + }, + { + key: "T63.6", + en: "", + de: "Toxic effect: Toxic effect of contact with other marine animals", + }, + { + key: "T63.8", + en: "", + de: "Toxic effect: Toxic effect of contact with other venomous animals", + }, + { + key: "T63.9", + en: "", + de: "Toxic effect: Toxic effect of contact with unspecified venomous animal", + }, + { + key: "T64", + en: "", + de: "Toxic effect of aflatoxin and other mycotoxin food contaminants", + }, + { + key: "T65", + en: "", + de: "Toxic effect of other and unspecified substances", + }, + { + key: "T65.0", + en: "", + de: "Toxic effect: Cyanides", + }, + { + key: "T65.1", + en: "", + de: "Toxic effect: Strychnine and its salts", + }, + { + key: "T65.2", + en: "", + de: "Toxic effect: Tobacco and nicotine", + }, + { + key: "T65.3", + en: "", + de: "Toxic effect: Nitroderivatives and aminoderivatives of benzene and its homologues", + }, + { + key: "T65.4", + en: "", + de: "Toxic effect: Carbon disulfide", + }, + { + key: "T65.5", + en: "", + de: "Toxic effect: Nitroglycerin and other nitric acids and esters", + }, + { + key: "T65.6", + en: "", + de: "Toxic effect: Paints and dyes, not elsewhere classified", + }, + { + key: "T65.8", + en: "", + de: "Toxic effect: Toxic effect of other specified substances", + }, + { + key: "T65.9", + en: "", + de: "Toxic effect: Toxic effect of unspecified substance", + }, + { + key: "T66", + en: "", + de: "Unspecified effects of radiation", + }, + { + key: "T67", + en: "", + de: "Effects of heat and light", + }, + { + key: "T67.0", + en: "", + de: "Heatstroke and sunstroke", + }, + { + key: "T67.1", + en: "", + de: "Heat syncope", + }, + { + key: "T67.2", + en: "", + de: "Heat cramp", + }, + { + key: "T67.3", + en: "", + de: "Heat exhaustion, anhydrotic", + }, + { + key: "T67.4", + en: "", + de: "Heat exhaustion due to salt depletion", + }, + { + key: "T67.5", + en: "", + de: "Heat exhaustion, unspecified", + }, + { + key: "T67.6", + en: "", + de: "Heat fatigue, transient", + }, + { + key: "T67.7", + en: "", + de: "Heat oedema", + }, + { + key: "T67.8", + en: "", + de: "Other effects of heat and light", + }, + { + key: "T67.9", + en: "", + de: "Effect of heat and light, unspecified", + }, + { + key: "T68", + en: "", + de: "Hypothermia", + }, + { + key: "T69", + en: "", + de: "Other effects of reduced temperature", + }, + { + key: "T69.0", + en: "", + de: "Immersion hand and foot", + }, + { + key: "T69.1", + en: "", + de: "Chilblains", + }, + { + key: "T69.8", + en: "", + de: "Other specified effects of reduced temperature", + }, + { + key: "T69.9", + en: "", + de: "Effect of reduced temperature, unspecified", + }, + { + key: "T70", + en: "", + de: "Effects of air pressure and water pressure", + }, + { + key: "T70.0", + en: "", + de: "Otitic barotrauma", + }, + { + key: "T70.1", + en: "", + de: "Sinus barotrauma", + }, + { + key: "T70.2", + en: "", + de: "Other and unspecified effects of high altitude", + }, + { + key: "T70.3", + en: "", + de: "Caisson disease [decompression sickness]", + }, + { + key: "T70.4", + en: "", + de: "Effects of high-pressure fluids", + }, + { + key: "T70.8", + en: "", + de: "Other effects of air pressure and water pressure", + }, + { + key: "T70.9", + en: "", + de: "Effect of air pressure and water pressure, unspecified", + }, + { + key: "T71", + en: "", + de: "Asphyxiation", + }, + { + key: "T73", + en: "", + de: "Effects of other deprivation", + }, + { + key: "T73.0", + en: "", + de: "Effects of hunger", + }, + { + key: "T73.1", + en: "", + de: "Effects of thirst", + }, + { + key: "T73.2", + en: "", + de: "Exhaustion due to exposure", + }, + { + key: "T73.3", + en: "", + de: "Exhaustion due to excessive exertion", + }, + { + key: "T73.8", + en: "", + de: "Other effects of deprivation", + }, + { + key: "T73.9", + en: "", + de: "Effect of deprivation, unspecified", + }, + { + key: "T74", + en: "", + de: "Maltreatment syndromes", + }, + { + key: "T74.0", + en: "", + de: "Neglect or abandonment", + }, + { + key: "T74.1", + en: "", + de: "Physical abuse", + }, + { + key: "T74.2", + en: "", + de: "Sexual abuse", + }, + { + key: "T74.3", + en: "", + de: "Psychological abuse", + }, + { + key: "T74.8", + en: "", + de: "Other maltreatment syndromes", + }, + { + key: "T74.9", + en: "", + de: "Maltreatment syndrome, unspecified", + }, + { + key: "T75", + en: "", + de: "Effects of other external causes", + }, + { + key: "T75.0", + en: "", + de: "Effects of lightning", + }, + { + key: "T75.1", + en: "", + de: "Drowning and nonfatal submersion", + }, + { + key: "T75.2", + en: "", + de: "Effects of vibration", + }, + { + key: "T75.3", + en: "", + de: "Motion sickness", + }, + { + key: "T75.4", + en: "", + de: "Effects of electric current", + }, + { + key: "T75.8", + en: "", + de: "Other specified effects of other external causes", + }, + { + key: "T76", + en: "", + de: "Unspecified effects of external causes", + }, + { + key: "T78", + en: "", + de: "Adverse effects, not elsewhere classified", + }, + { + key: "T78.0", + en: "", + de: "Anaphylactic shock due to adverse food reaction", + }, + { + key: "T78.1", + en: "", + de: "Other adverse food reactions, not elsewhere classified", + }, + { + key: "T78.2", + en: "", + de: "Anaphylactic shock, unspecified", + }, + { + key: "T78.3", + en: "", + de: "Angioneurotic oedema", + }, + { + key: "T78.4", + en: "", + de: "Allergy, unspecified", + }, + { + key: "T78.8", + en: "", + de: "Other adverse effects, not elsewhere classified", + }, + { + key: "T78.9", + en: "", + de: "Adverse effect, unspecified", + }, + { + key: "T79", + en: "", + de: "Certain early complications of trauma, not elsewhere classified", + }, + { + key: "T79.0", + en: "", + de: "Air embolism (traumatic)", + }, + { + key: "T79.1", + en: "", + de: "Fat embolism (traumatic)", + }, + { + key: "T79.2", + en: "", + de: "Traumatic secondary and recurrent haemorrhage", + }, + { + key: "T79.3", + en: "", + de: "Post-traumatic wound infection, not elsewhere classified", + }, + { + key: "T79.4", + en: "", + de: "Traumatic shock", + }, + { + key: "T79.5", + en: "", + de: "Traumatic anuria", + }, + { + key: "T79.6", + en: "", + de: "Traumatic ischaemia of muscle", + }, + { + key: "T79.7", + en: "", + de: "Traumatic subcutaneous emphysema", + }, + { + key: "T79.8", + en: "", + de: "Other early complications of trauma", + }, + { + key: "T79.9", + en: "", + de: "Unspecified early complication of trauma", + }, + { + key: "T80", + en: "", + de: "Complications following infusion, transfusion and therapeutic injection", + }, + { + key: "T80.0", + en: "", + de: "Air embolism following infusion, transfusion and therapeutic injection", + }, + { + key: "T80.1", + en: "", + de: "Vascular complications following infusion, transfusion and therapeutic injection", + }, + { + key: "T80.2", + en: "", + de: "Infections following infusion, transfusion and therapeutic injection", + }, + { + key: "T80.3", + en: "", + de: "ABO incompatibility reaction", + }, + { + key: "T80.4", + en: "", + de: "Rh incompatibility reaction", + }, + { + key: "T80.5", + en: "", + de: "Anaphylactic shock due to serum", + }, + { + key: "T80.6", + en: "", + de: "Other serum reactions", + }, + { + key: "T80.8", + en: "", + de: "Other complications following infusion, transfusion and therapeutic injection", + }, + { + key: "T80.9", + en: "", + de: "Unspecified complication following infusion, transfusion and therapeutic injection", + }, + { + key: "T81", + en: "", + de: "Complications of procedures, not elsewhere classified", + }, + { + key: "T81.0", + en: "", + de: "Haemorrhage and haematoma complicating a procedure, not elsewhere classified", + }, + { + key: "T81.1", + en: "", + de: "Shock during or resulting from a procedure, not elsewhere classified", + }, + { + key: "T81.2", + en: "", + de: "Accidental puncture and laceration during a procedure, not elsewhere classified", + }, + { + key: "T81.3", + en: "", + de: "Disruption of operation wound, not elsewhere classified", + }, + { + key: "T81.4", + en: "", + de: "Infection following a procedure, not elsewhere classified", + }, + { + key: "T81.5", + en: "", + de: "Foreign body accidentally left in body cavity or operation wound following a procedure", + }, + { + key: "T81.6", + en: "", + de: "Acute reaction to foreign substance accidentally left during a procedure", + }, + { + key: "T81.7", + en: "", + de: "Vascular complications following a procedure, not elsewhere classified", + }, + { + key: "T81.8", + en: "", + de: "Other complications of procedures, not elsewhere classified", + }, + { + key: "T81.9", + en: "", + de: "Unspecified complication of procedure", + }, + { + key: "T82", + en: "", + de: "Complications of cardiac and vascular prosthetic devices, implants and grafts", + }, + { + key: "T82.0", + en: "", + de: "Mechanical complication of heart valve prosthesis", + }, + { + key: "T82.1", + en: "", + de: "Mechanical complication of cardiac electronic device", + }, + { + key: "T82.2", + en: "", + de: "Mechanical complication of coronary artery bypass and valve grafts", + }, + { + key: "T82.3", + en: "", + de: "Mechanical complication of other vascular grafts", + }, + { + key: "T82.4", + en: "", + de: "Mechanical complication of vascular dialysis catheter", + }, + { + key: "T82.5", + en: "", + de: "Mechanical complication of other cardiac and vascular devices and implants", + }, + { + key: "T82.6", + en: "", + de: "Infection and inflammatory reaction due to cardiac valve prosthesis", + }, + { + key: "T82.7", + en: "", + de: "Infection and inflammatory reaction due to other cardiac and vascular devices, implants and grafts", + }, + { + key: "T82.8", + en: "", + de: "Other specified complications of cardiac and vascular prosthetic devices, implants and grafts", + }, + { + key: "T82.9", + en: "", + de: "Unspecified complication of cardiac and vascular prosthetic device, implant and graft", + }, + { + key: "T83", + en: "", + de: "Complications of genitourinary prosthetic devices, implants and grafts", + }, + { + key: "T83.0", + en: "", + de: "Mechanical complication of urinary (indwelling) catheter", + }, + { + key: "T83.1", + en: "", + de: "Mechanical complication of other urinary devices and implants", + }, + { + key: "T83.2", + en: "", + de: "Mechanical complication of graft of urinary organ", + }, + { + key: "T83.3", + en: "", + de: "Mechanical complication of intrauterine contraceptive device", + }, + { + key: "T83.4", + en: "", + de: "Mechanical complication of other prosthetic devices, implants and grafts in genital tract", + }, + { + key: "T83.5", + en: "", + de: "Infection and inflammatory reaction due to prosthetic device, implant and graft in urinary system", + }, + { + key: "T83.6", + en: "", + de: "Infection and inflammatory reaction due to prosthetic device, implant and graft in genital tract", + }, + { + key: "T83.8", + en: "", + de: "Other complications of genitourinary prosthetic devices, implants and grafts", + }, + { + key: "T83.9", + en: "", + de: "Unspecified complication of genitourinary prosthetic device, implant and graft", + }, + { + key: "T84", + en: "", + de: "Complications of internal orthopaedic prosthetic devices, implants and grafts", + }, + { + key: "T84.0", + en: "", + de: "Mechanical complication of internal joint prosthesis", + }, + { + key: "T84.1", + en: "", + de: "Mechanical complication of internal fixation device of bones of limb", + }, + { + key: "T84.2", + en: "", + de: "Mechanical complication of internal fixation device of other bones", + }, + { + key: "T84.3", + en: "", + de: "Mechanical complication of other bone devices, implants and grafts", + }, + { + key: "T84.4", + en: "", + de: "Mechanical complication of other internal orthopaedic devices, implants and grafts", + }, + { + key: "T84.5", + en: "", + de: "Infection and inflammatory reaction due to internal joint prosthesis", + }, + { + key: "T84.6", + en: "", + de: "Infection and inflammatory reaction due to internal fixation device [any site]", + }, + { + key: "T84.7", + en: "", + de: "Infection and inflammatory reaction due to other internal orthopaedic prosthetic devices, implants and grafts", + }, + { + key: "T84.8", + en: "", + de: "Other complications of internal orthopaedic prosthetic devices, implants and grafts", + }, + { + key: "T84.9", + en: "", + de: "Unspecified complication of internal orthopaedic prosthetic device, implant and graft", + }, + { + key: "T85", + en: "", + de: "Complications of other internal prosthetic devices, implants and grafts", + }, + { + key: "T85.0", + en: "", + de: "Mechanical complication of ventricular intracranial (communicating) shunt", + }, + { + key: "T85.1", + en: "", + de: "Mechanical complication of implanted electronic stimulator of nervous system", + }, + { + key: "T85.2", + en: "", + de: "Mechanical complication of intraocular lens", + }, + { + key: "T85.3", + en: "", + de: "Mechanical complication of other ocular prosthetic devices, implants and grafts", + }, + { + key: "T85.4", + en: "", + de: "Mechanical complication of breast prosthesis and implant", + }, + { + key: "T85.5", + en: "", + de: "Mechanical complication of gastrointestinal prosthetic devices, implants and grafts", + }, + { + key: "T85.6", + en: "", + de: "Mechanical complication of other specified internal prosthetic devices, implants and grafts", + }, + { + key: "T85.7", + en: "", + de: "Infection and inflammatory reaction due to other internal prosthetic devices, implants and grafts", + }, + { + key: "T85.8", + en: "", + de: "Other complications of internal prosthetic devices, implants and grafts, not elsewhere classified", + }, + { + key: "T85.9", + en: "", + de: "Unspecified complication of internal prosthetic device, implant and graft", + }, + { + key: "T86", + en: "", + de: "Failure and rejection of transplanted organs and tissues", + }, + { + key: "T86.0", + en: "", + de: "Bone-marrow transplant rejection", + }, + { + key: "T86.1", + en: "", + de: "Kidney transplant failure and rejection", + }, + { + key: "T86.2", + en: "", + de: "Heart transplant failure and rejection", + }, + { + key: "T86.3", + en: "", + de: "Heart-lung transplant failure and rejection", + }, + { + key: "T86.4", + en: "", + de: "Liver transplant failure and rejection", + }, + { + key: "T86.8", + en: "", + de: "Failure and rejection of other transplanted organs and tissues", + }, + { + key: "T86.9", + en: "", + de: "Failure and rejection of unspecified transplanted organ and tissue", + }, + { + key: "T87", + en: "", + de: "Complications peculiar to reattachment and amputation", + }, + { + key: "T87.0", + en: "", + de: "Complications of reattached (part of) upper extremity", + }, + { + key: "T87.1", + en: "", + de: "Complications of reattached (part of) lower extremity", + }, + { + key: "T87.2", + en: "", + de: "Complications of other reattached body part", + }, + { + key: "T87.3", + en: "", + de: "Neuroma of amputation stump", + }, + { + key: "T87.4", + en: "", + de: "Infection of amputation stump", + }, + { + key: "T87.5", + en: "", + de: "Necrosis of amputation stump", + }, + { + key: "T87.6", + en: "", + de: "Other and unspecified complications of amputation stump", + }, + { + key: "T88", + en: "", + de: "Other complications of surgical and medical care, not elsewhere classified", + }, + { + key: "T88.0", + en: "", + de: "Infection following immunization", + }, + { + key: "T88.1", + en: "", + de: "Other complications following immunization, not elsewhere classified", + }, + { + key: "T88.2", + en: "", + de: "Shock due to anaesthesia", + }, + { + key: "T88.3", + en: "", + de: "Malignant hyperthermia due to anaesthesia", + }, + { + key: "T88.4", + en: "", + de: "Failed or difficult intubation", + }, + { + key: "T88.5", + en: "", + de: "Other complications of anaesthesia", + }, + { + key: "T88.6", + en: "", + de: "Anaphylactic shock due to adverse effect of correct drug or medicament properly administered", + }, + { + key: "T88.7", + en: "", + de: "Unspecified adverse effect of drug or medicament", + }, + { + key: "T88.8", + en: "", + de: "Other specified complications of surgical and medical care, not elsewhere classified", + }, + { + key: "T88.9", + en: "", + de: "Complication of surgical and medical care, unspecified", + }, + { + key: "T90", + en: "", + de: "Sequelae of injuries of head", + }, + { + key: "T90.0", + en: "", + de: "Sequelae of superficial injury of head", + }, + { + key: "T90.1", + en: "", + de: "Sequelae of open wound of head", + }, + { + key: "T90.2", + en: "", + de: "Sequelae of fracture of skull and facial bones", + }, + { + key: "T90.3", + en: "", + de: "Sequelae of injury of cranial nerves", + }, + { + key: "T90.4", + en: "", + de: "Sequelae of injury of eye and orbit", + }, + { + key: "T90.5", + en: "", + de: "Sequelae of intracranial injury", + }, + { + key: "T90.8", + en: "", + de: "Sequelae of other specified injuries of head", + }, + { + key: "T90.9", + en: "", + de: "Sequelae of unspecified injury of head", + }, + { + key: "T91", + en: "", + de: "Sequelae of injuries of neck and trunk", + }, + { + key: "T91.0", + en: "", + de: "Sequelae of superficial injury and open wound of neck and trunk", + }, + { + key: "T91.1", + en: "", + de: "Sequelae of fracture of spine", + }, + { + key: "T91.2", + en: "", + de: "Sequelae of other fracture of thorax and pelvis", + }, + { + key: "T91.3", + en: "", + de: "Sequelae of injury of spinal cord", + }, + { + key: "T91.4", + en: "", + de: "Sequelae of injury of intrathoracic organs", + }, + { + key: "T91.5", + en: "", + de: "Sequelae of injury of intra-abdominal and pelvic organs", + }, + { + key: "T91.8", + en: "", + de: "Sequelae of other specified injuries of neck and trunk", + }, + { + key: "T91.9", + en: "", + de: "Sequelae of unspecified injury of neck and trunk", + }, + { + key: "T92", + en: "", + de: "Sequelae of injuries of upper limb", + }, + { + key: "T92.0", + en: "", + de: "Sequelae of open wound of upper limb", + }, + { + key: "T92.1", + en: "", + de: "Sequelae of fracture of arm", + }, + { + key: "T92.2", + en: "", + de: "Sequelae of fracture at wrist and hand level", + }, + { + key: "T92.3", + en: "", + de: "Sequelae of dislocation, sprain and strain of upper limb", + }, + { + key: "T92.4", + en: "", + de: "Sequelae of injury of nerve of upper limb", + }, + { + key: "T92.5", + en: "", + de: "Sequelae of injury of muscle and tendon of upper limb", + }, + { + key: "T92.6", + en: "", + de: "Sequelae of crushing injury and traumatic amputation of upper limb", + }, + { + key: "T92.8", + en: "", + de: "Sequelae of other specified injuries of upper limb", + }, + { + key: "T92.9", + en: "", + de: "Sequelae of unspecified injury of upper limb", + }, + { + key: "T93", + en: "", + de: "Sequelae of injuries of lower limb", + }, + { + key: "T93.0", + en: "", + de: "Sequelae of open wound of lower limb", + }, + { + key: "T93.1", + en: "", + de: "Sequelae of fracture of femur", + }, + { + key: "T93.2", + en: "", + de: "Sequelae of other fractures of lower limb", + }, + { + key: "T93.3", + en: "", + de: "Sequelae of dislocation, sprain and strain of lower limb", + }, + { + key: "T93.4", + en: "", + de: "Sequelae of injury of nerve of lower limb", + }, + { + key: "T93.5", + en: "", + de: "Sequelae of injury of muscle and tendon of lower limb", + }, + { + key: "T93.6", + en: "", + de: "Sequelae of crushing injury and traumatic amputation of lower limb", + }, + { + key: "T93.8", + en: "", + de: "Sequelae of other specified injuries of lower limb", + }, + { + key: "T93.9", + en: "", + de: "Sequelae of unspecified injury of lower limb", + }, + { + key: "T94", + en: "", + de: "Sequelae of injuries involving multiple and unspecified body regions", + }, + { + key: "T94.0", + en: "", + de: "Sequelae of injuries involving multiple body regions", + }, + { + key: "T94.1", + en: "", + de: "Sequelae of injuries, not specified by body region", + }, + { + key: "T95", + en: "", + de: "Sequelae of burns, corrosions and frostbite", + }, + { + key: "T95.0", + en: "", + de: "Sequelae of burn, corrosion and frostbite of head and neck", + }, + { + key: "T95.1", + en: "", + de: "Sequelae of burn, corrosion and frostbite of trunk", + }, + { + key: "T95.2", + en: "", + de: "Sequelae of burn, corrosion and frostbite of upper limb", + }, + { + key: "T95.3", + en: "", + de: "Sequelae of burn, corrosion and frostbite of lower limb", + }, + { + key: "T95.4", + en: "", + de: "Sequelae of burn and corrosion classifiable only according to extent of body surface involved", + }, + { + key: "T95.8", + en: "", + de: "Sequelae of other specified burn, corrosion and frostbite", + }, + { + key: "T95.9", + en: "", + de: "Sequelae of unspecified burn, corrosion and frostbite", + }, + { + key: "T96", + en: "", + de: "Sequelae of poisoning by drugs, medicaments and biological substances", + }, + { + key: "T97", + en: "", + de: "Sequelae of toxic effects of substances chiefly nonmedicinal as to source", + }, + { + key: "T98", + en: "", + de: "Sequelae of other and unspecified effects of external causes", + }, + { + key: "T98.0", + en: "", + de: "Sequelae of effects of foreign body entering through natural orifice", + }, + { + key: "T98.1", + en: "", + de: "Sequelae of other and unspecified effects of external causes", + }, + { + key: "T98.2", + en: "", + de: "Sequelae of certain early complications of trauma", + }, + { + key: "T98.3", + en: "", + de: "Sequelae of complications of surgical and medical care, not elsewhere classified", + }, + { + key: "Z00", + en: "", + de: "General examination and investigation of persons without complaint and reported diagnosis", + }, + { + key: "Z00.0", + en: "", + de: "General medical examination", + }, + { + key: "Z00.1", + en: "", + de: "Routine child health examination", + }, + { + key: "Z00.2", + en: "", + de: "Examination for period of rapid growth in childhood", + }, + { + key: "Z00.3", + en: "", + de: "Examination for adolescent development state", + }, + { + key: "Z00.4", + en: "", + de: "General psychiatric examination, not elsewhere classified", + }, + { + key: "Z00.5", + en: "", + de: "Examination of potential donor of organ and tissue", + }, + { + key: "Z00.6", + en: "", + de: "Examination for normal comparison and control in clinical research programme", + }, + { + key: "Z00.8", + en: "", + de: "Other general examinations", + }, + { + key: "Z01", + en: "", + de: "Other special examinations and investigations of persons without complaint or reported diagnosis", + }, + { + key: "Z01.0", + en: "", + de: "Examination of eyes and vision", + }, + { + key: "Z01.1", + en: "", + de: "Examination of ears and hearing", + }, + { + key: "Z01.2", + en: "", + de: "Dental examination", + }, + { + key: "Z01.3", + en: "", + de: "Examination of blood pressure", + }, + { + key: "Z01.4", + en: "", + de: "Gynaecological examination (general)(routine)", + }, + { + key: "Z01.5", + en: "", + de: "Diagnostic skin and sensitization tests", + }, + { + key: "Z01.6", + en: "", + de: "Radiological examination, not elsewhere classified", + }, + { + key: "Z01.7", + en: "", + de: "Laboratory examination", + }, + { + key: "Z01.8", + en: "", + de: "Other specified special examinations", + }, + { + key: "Z01.9", + en: "", + de: "Special examination, unspecified", + }, + { + key: "Z02", + en: "", + de: "Examination and encounter for administrative purposes", + }, + { + key: "Z03", + en: "", + de: "Medical observation and evaluation for suspected diseases and conditions, ruled out", + }, + { + key: "Z03.0", + en: "", + de: "Observation for suspected tuberculosis", + }, + { + key: "Z03.1", + en: "", + de: "Observation for suspected malignant neoplasm", + }, + { + key: "Z03.2", + en: "", + de: "Observation for suspected mental and behavioural disorders", + }, + { + key: "Z03.3", + en: "", + de: "Observation for suspected nervous system disorder", + }, + { + key: "Z03.4", + en: "", + de: "Observation for suspected myocardial infarction", + }, + { + key: "Z03.5", + en: "", + de: "Observation for other suspected cardiovascular diseases", + }, + { + key: "Z03.6", + en: "", + de: "Observation for suspected toxic effect from ingested substance", + }, + { + key: "Z03.8", + en: "", + de: "Observation for other suspected diseases and conditions", + }, + { + key: "Z03.9", + en: "", + de: "Observation for suspected disease or condition, unspecified", + }, + { + key: "Z04", + en: "", + de: "Examination and observation for other reasons", + }, + { + key: "Z04.1", + en: "", + de: "Examination and observation following transport accident", + }, + { + key: "Z04.2", + en: "", + de: "Examination and observation following work accident", + }, + { + key: "Z04.3", + en: "", + de: "Examination and observation following other accident", + }, + { + key: "Z04.5", + en: "", + de: "Examination and observation following other inflicted injury", + }, + { + key: "Z04.8", + en: "", + de: "Examination and observation for other specified reasons", + }, + { + key: "Z04.9", + en: "", + de: "Examination and observation for unspecified reason", + }, + { + key: "Z08", + en: "", + de: "Follow-up examination after treatment for malignant neoplasms", + }, + { + key: "Z08.0", + en: "", + de: "Follow-up examination after surgery for malignant neoplasm", + }, + { + key: "Z08.1", + en: "", + de: "Follow-up examination after radiotherapy for malignant neoplasm", + }, + { + key: "Z08.2", + en: "", + de: "Follow-up examination after chemotherapy for malignant neoplasm", + }, + { + key: "Z08.7", + en: "", + de: "Follow-up examination after combined treatment for malignant neoplasm", + }, + { + key: "Z08.8", + en: "", + de: "Follow-up examination after other treatment for malignant neoplasm", + }, + { + key: "Z08.9", + en: "", + de: "Follow-up examination after unspecified treatment for malignant neoplasm", + }, + { + key: "Z09", + en: "", + de: "Follow-up examination after treatment for conditions other than malignant neoplasms", + }, + { + key: "Z09.0", + en: "", + de: "Follow-up examination after surgery for other conditions", + }, + { + key: "Z09.1", + en: "", + de: "Follow-up examination after radiotherapy for other conditions", + }, + { + key: "Z09.2", + en: "", + de: "Follow-up examination after chemotherapy for other conditions", + }, + { + key: "Z09.3", + en: "", + de: "Follow-up examination after psychotherapy", + }, + { + key: "Z09.4", + en: "", + de: "Follow-up examination after treatment of fracture", + }, + { + key: "Z09.7", + en: "", + de: "Follow-up examination after combined treatment for other conditions", + }, + { + key: "Z09.8", + en: "", + de: "Follow-up examination after other treatment for other conditions", + }, + { + key: "Z09.9", + en: "", + de: "Follow-up examination after unspecified treatment for other conditions", + }, + { + key: "Z10", + en: "", + de: "Routine general health check-up of defined subpopulation", + }, + { + key: "Z11", + en: "", + de: "Special screening examination for infectious and parasitic diseases", + }, + { + key: "Z12", + en: "", + de: "Special screening examination for neoplasms", + }, + { + key: "Z12.0", + en: "", + de: "Special screening examination for neoplasm of stomach", + }, + { + key: "Z12.1", + en: "", + de: "Special screening examination for neoplasm of intestinal tract", + }, + { + key: "Z12.2", + en: "", + de: "Special screening examination for neoplasm of respiratory organs", + }, + { + key: "Z12.3", + en: "", + de: "Special screening examination for neoplasm of breast", + }, + { + key: "Z12.4", + en: "", + de: "Special screening examination for neoplasm of cervix", + }, + { + key: "Z12.5", + en: "", + de: "Special screening examination for neoplasm of prostate", + }, + { + key: "Z12.6", + en: "", + de: "Special screening examination for neoplasm of bladder", + }, + { + key: "Z12.8", + en: "", + de: "Special screening examination for neoplasms of other sites", + }, + { + key: "Z12.9", + en: "", + de: "Special screening examination for neoplasm, unspecified", + }, + { + key: "Z13", + en: "", + de: "Special screening examination for other diseases and disorders", + }, + { + key: "Z13.0", + en: "", + de: "Special screening examination for diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism", + }, + { + key: "Z13.1", + en: "", + de: "Special screening examination for diabetes mellitus", + }, + { + key: "Z13.2", + en: "", + de: "Special screening examination for nutritional disorders", + }, + { + key: "Z13.4", + en: "", + de: "Special screening examination for certain developmental disorders in childhood", + }, + { + key: "Z13.5", + en: "", + de: "Special screening examination for eye and ear disorders", + }, + { + key: "Z13.6", + en: "", + de: "Special screening examination for cardiovascular disorders", + }, + { + key: "Z13.7", + en: "", + de: "Special screening examination for congenital malformations, deformations and chromosomal abnormalities", + }, + { + key: "Z13.8", + en: "", + de: "Special screening examination for other specified diseases and disorders", + }, + { + key: "Z13.9", + en: "", + de: "Special screening examination, unspecified", + }, + { + key: "Z20", + en: "", + de: "Contact with and exposure to communicable diseases", + }, + { + key: "Z20.0", + en: "", + de: "Contact with and exposure to intestinal infectious diseases", + }, + { + key: "Z20.1", + en: "", + de: "Contact with and exposure to tuberculosis", + }, + { + key: "Z20.2", + en: "", + de: "Contact with and exposure to infections with a predominantly sexual mode of transmission", + }, + { + key: "Z20.3", + en: "", + de: "Contact with and exposure to rabies", + }, + { + key: "Z20.4", + en: "", + de: "Contact with and exposure to rubella", + }, + { + key: "Z20.5", + en: "", + de: "Contact with and exposure to viral hepatitis", + }, + { + key: "Z20.6", + en: "", + de: "Contact with and exposure to human immunodeficiency virus [HIV]", + }, + { + key: "Z20.7", + en: "", + de: "Contact with and exposure to pediculosis, acariasis and other infestations", + }, + { + key: "Z20.8", + en: "", + de: "Contact with and exposure to other communicable diseases", + }, + { + key: "Z20.9", + en: "", + de: "Contact with and exposure to unspecified communicable disease", + }, + { + key: "Z21", + en: "", + de: "Asymptomatic human immunodeficiency virus [HIV] infection status", + }, + { + key: "Z22", + en: "", + de: "Carrier of infectious disease", + }, + { + key: "Z22.0", + en: "", + de: "Carrier of typhoid", + }, + { + key: "Z22.1", + en: "", + de: "Carrier of other intestinal infectious diseases", + }, + { + key: "Z22.2", + en: "", + de: "Carrier of diphtheria", + }, + { + key: "Z22.3", + en: "", + de: "Carrier of other specified bacterial diseases", + }, + { + key: "Z22.4", + en: "", + de: "Carrier of infections with a predominantly sexual mode of transmission", + }, + { + key: "Z22.6", + en: "", + de: "Carrier of human T-lymphotropic virus type- 1 [HTLV-1] infection", + }, + { + key: "Z22.7", + en: "", + de: "Latent tuberculosis", + }, + { + key: "Z22.8", + en: "", + de: "Carrier of other infectious diseases", + }, + { + key: "Z22.9", + en: "", + de: "Carrier of infectious disease, unspecified", + }, + { + key: "Z23", + en: "", + de: "Need for immunization against single bacterial diseases", + }, + { + key: "Z23.0", + en: "", + de: "Need for immunization against cholera alone", + }, + { + key: "Z23.1", + en: "", + de: "Need for immunization against typhoid-paratyphoid alone [TAB]", + }, + { + key: "Z23.2", + en: "", + de: "Need for immunization against tuberculosis [BCG]", + }, + { + key: "Z23.3", + en: "", + de: "Need for immunization against plague", + }, + { + key: "Z23.4", + en: "", + de: "Need for immunization against tularaemia", + }, + { + key: "Z23.5", + en: "", + de: "Need for immunization against tetanus alone", + }, + { + key: "Z23.6", + en: "", + de: "Need for immunization against diphtheria alone", + }, + { + key: "Z23.7", + en: "", + de: "Need for immunization against pertussis alone", + }, + { + key: "Z23.8", + en: "", + de: "Need for immunization against other single bacterial diseases", + }, + { + key: "Z24", + en: "", + de: "Need for immunization against certain single viral diseases", + }, + { + key: "Z24.0", + en: "", + de: "Need for immunization against poliomyelitis", + }, + { + key: "Z24.1", + en: "", + de: "Need for immunization against arthropod-borne viral encephalitis", + }, + { + key: "Z24.2", + en: "", + de: "Need for immunization against rabies", + }, + { + key: "Z24.3", + en: "", + de: "Need for immunization against yellow fever", + }, + { + key: "Z24.4", + en: "", + de: "Need for immunization against measles alone", + }, + { + key: "Z24.5", + en: "", + de: "Need for immunization against rubella alone", + }, + { + key: "Z24.6", + en: "", + de: "Need for immunization against viral hepatitis", + }, + { + key: "Z25", + en: "", + de: "Need for immunization against other single viral diseases", + }, + { + key: "Z25.0", + en: "", + de: "Need for immunization against mumps alone", + }, + { + key: "Z25.1", + en: "", + de: "Need for immunization against influenza", + }, + { + key: "Z25.8", + en: "", + de: "Need for immunization against other specified single viral diseases", + }, + { + key: "Z26", + en: "", + de: "Need for immunization against other single infectious diseases", + }, + { + key: "Z26.0", + en: "", + de: "Need for immunization against leishmaniasis", + }, + { + key: "Z26.8", + en: "", + de: "Need for immunization against other specified single infectious diseases", + }, + { + key: "Z26.9", + en: "", + de: "Need for immunization against unspecified infectious disease", + }, + { + key: "Z27", + en: "", + de: "Need for immunization against combinations of infectious diseases", + }, + { + key: "Z27.0", + en: "", + de: "Need for immunization against cholera with typhoid-paratyphoid [cholera + TAB]", + }, + { + key: "Z27.1", + en: "", + de: "Need for immunization against diphtheria-tetanus-pertussis, combined [DTP]", + }, + { + key: "Z27.2", + en: "", + de: "Need for immunization against diphtheria-tetanus-pertussis with typhoid-paratyphoid [DTP + TAB]", + }, + { + key: "Z27.3", + en: "", + de: "Need for immunization against diphtheria-tetanus-pertussis with poliomyelitis [DTP + polio]", + }, + { + key: "Z27.4", + en: "", + de: "Need for immunization against measles-mumps-rubella [MMR]", + }, + { + key: "Z27.8", + en: "", + de: "Need for immunization against other combinations of infectious diseases", + }, + { + key: "Z27.9", + en: "", + de: "Need for immunization against unspecified combinations of infectious diseases", + }, + { + key: "Z28", + en: "", + de: "Immunization not carried out", + }, + { + key: "Z29", + en: "", + de: "Need for other prophylactic measures", + }, + { + key: "Z29.0", + en: "", + de: "Isolation", + }, + { + key: "Z29.1", + en: "", + de: "Prophylactic immunotherapy", + }, + { + key: "Z29.2", + en: "", + de: "Other prophylactic chemotherapy", + }, + { + key: "Z29.8", + en: "", + de: "Other specified prophylactic measures", + }, + { + key: "Z29.9", + en: "", + de: "Prophylactic measure, unspecified", + }, + { + key: "Z30", + en: "", + de: "Contraceptive management", + }, + { + key: "Z30.0", + en: "", + de: "General counselling and advice on contraception", + }, + { + key: "Z30.1", + en: "", + de: "Insertion of (intrauterine) contraceptive device", + }, + { + key: "Z30.2", + en: "", + de: "Sterilization", + }, + { + key: "Z30.3", + en: "", + de: "Menstrual extraction", + }, + { + key: "Z30.4", + en: "", + de: "Surveillance of contraceptive drugs", + }, + { + key: "Z30.5", + en: "", + de: "Surveillance of (intrauterine) contraceptive device", + }, + { + key: "Z30.8", + en: "", + de: "Other contraceptive management", + }, + { + key: "Z30.9", + en: "", + de: "Contraceptive management, unspecified", + }, + { + key: "Z31", + en: "", + de: "Procreative management", + }, + { + key: "Z31.0", + en: "", + de: "Tuboplasty or vasoplasty after previous sterilization", + }, + { + key: "Z31.1", + en: "", + de: "Artificial insemination", + }, + { + key: "Z31.2", + en: "", + de: "In vitro fertilization", + }, + { + key: "Z31.3", + en: "", + de: "Other assisted fertilization methods", + }, + { + key: "Z31.4", + en: "", + de: "Procreative investigation and testing", + }, + { + key: "Z31.5", + en: "", + de: "Genetic counselling", + }, + { + key: "Z31.6", + en: "", + de: "General counselling and advice on procreation", + }, + { + key: "Z31.8", + en: "", + de: "Other procreative management", + }, + { + key: "Z31.9", + en: "", + de: "Procreative management, unspecified", + }, + { + key: "Z32", + en: "", + de: "Pregnancy examination and test", + }, + { + key: "Z34", + en: "", + de: "Supervision of normal pregnancy", + }, + { + key: "Z35", + en: "", + de: "Supervision of high-risk pregnancy", + }, + { + key: "Z35.0", + en: "", + de: "Supervision of pregnancy with history of infertility", + }, + { + key: "Z35.1", + en: "", + de: "Supervision of pregnancy with history of abortive outcome", + }, + { + key: "Z35.2", + en: "", + de: "Supervision of pregnancy with other poor reproductive or obstetric history", + }, + { + key: "Z35.3", + en: "", + de: "Supervision of pregnancy with history of insufficient antenatal care", + }, + { + key: "Z35.4", + en: "", + de: "Supervision of pregnancy with grand multiparity", + }, + { + key: "Z35.5", + en: "", + de: "Supervision of elderly primigravida", + }, + { + key: "Z35.6", + en: "", + de: "Supervision of very young primigravida", + }, + { + key: "Z35.8", + en: "", + de: "Supervision of other high-risk pregnancies", + }, + { + key: "Z35.9", + en: "", + de: "Supervision of high-risk pregnancy, unspecified", + }, + { + key: "Z36", + en: "", + de: "Antenatal screening", + }, + { + key: "Z36.0", + en: "", + de: "Antenatal screening for chromosomal anomalies", + }, + { + key: "Z36.1", + en: "", + de: "Antenatal screening for raised alphafetoprotein level", + }, + { + key: "Z36.2", + en: "", + de: "Other antenatal screening based on amniocentesis", + }, + { + key: "Z36.3", + en: "", + de: "Antenatal screening for malformations using ultrasound and other physical methods", + }, + { + key: "Z36.4", + en: "", + de: "Antenatal screening for fetal growth retardation using ultrasound and other physical methods", + }, + { + key: "Z36.5", + en: "", + de: "Antenatal screening for isoimmunization", + }, + { + key: "Z36.8", + en: "", + de: "Other antenatal screening", + }, + { + key: "Z36.9", + en: "", + de: "Antenatal screening, unspecified", + }, + { + key: "Z38", + en: "", + de: "Liveborn infants according to place of birth", + }, + { + key: "Z38.0", + en: "", + de: "Singleton, born in hospital", + }, + { + key: "Z38.1", + en: "", + de: "Singleton, born outside hospital", + }, + { + key: "Z38.2", + en: "", + de: "Singleton, unspecified as to place of birth", + }, + { + key: "Z38.3", + en: "", + de: "Twin, born in hospital", + }, + { + key: "Z38.4", + en: "", + de: "Twin, born outside hospital", + }, + { + key: "Z38.5", + en: "", + de: "Twin, unspecified as to place of birth", + }, + { + key: "Z38.6", + en: "", + de: "Other multiple, born in hospital", + }, + { + key: "Z38.7", + en: "", + de: "Other multiple, born outside hospital", + }, + { + key: "Z38.8", + en: "", + de: "Other multiple, unspecified as to place of birth", + }, + { + key: "Z39", + en: "", + de: "Postpartum care and examination", + }, + { + key: "Z39.0", + en: "", + de: "Care and examination immediately after delivery", + }, + { + key: "Z39.1", + en: "", + de: "Care and examination of lactating mother", + }, + { + key: "Z39.2", + en: "", + de: "Routine postpartum follow-up", + }, + { + key: "Z40", + en: "", + de: "Prophylactic surgery", + }, + { + key: "Z40.0", + en: "", + de: "Prophylactic surgery for risk-factors related to malignant neoplasms", + }, + { + key: "Z40.8", + en: "", + de: "Other prophylactic surgery", + }, + { + key: "Z40.9", + en: "", + de: "Prophylactic surgery, unspecified", + }, + { + key: "Z41", + en: "", + de: "Procedures for purposes other than remedying health state", + }, + { + key: "Z41.1", + en: "", + de: "Other plastic surgery for unacceptable cosmetic appearance", + }, + { + key: "Z41.2", + en: "", + de: "Routine and ritual circumcision", + }, + { + key: "Z41.8", + en: "", + de: "Other procedures for purposes other than remedying health state", + }, + { + key: "Z41.9", + en: "", + de: "Procedure for purposes other than remedying health state, unspecified", + }, + { + key: "Z42", + en: "", + de: "Follow-up care involving plastic surgery", + }, + { + key: "Z42.0", + en: "", + de: "Follow-up care involving plastic surgery of head and neck", + }, + { + key: "Z42.1", + en: "", + de: "Follow-up care involving plastic surgery of breast", + }, + { + key: "Z42.2", + en: "", + de: "Follow-up care involving plastic surgery of other parts of trunk", + }, + { + key: "Z42.3", + en: "", + de: "Follow-up care involving plastic surgery of upper extremity", + }, + { + key: "Z42.4", + en: "", + de: "Follow-up care involving plastic surgery of lower extremity", + }, + { + key: "Z42.8", + en: "", + de: "Follow-up care involving plastic surgery of other body part", + }, + { + key: "Z42.9", + en: "", + de: "Follow-up care involving plastic surgery, unspecified", + }, + { + key: "Z43", + en: "", + de: "Attention to artificial openings", + }, + { + key: "Z43.0", + en: "", + de: "Attention to tracheostomy", + }, + { + key: "Z43.1", + en: "", + de: "Attention to gastrostomy", + }, + { + key: "Z43.2", + en: "", + de: "Attention to ileostomy", + }, + { + key: "Z43.3", + en: "", + de: "Attention to colostomy", + }, + { + key: "Z43.4", + en: "", + de: "Attention to other artificial openings of digestive tract", + }, + { + key: "Z43.5", + en: "", + de: "Attention to cystostomy", + }, + { + key: "Z43.6", + en: "", + de: "Attention to other artificial openings of urinary tract", + }, + { + key: "Z43.7", + en: "", + de: "Attention to artificial vagina", + }, + { + key: "Z43.8", + en: "", + de: "Attention to other artificial openings", + }, + { + key: "Z43.9", + en: "", + de: "Attention to unspecified artificial opening", + }, + { + key: "Z44", + en: "", + de: "Fitting and adjustment of external prosthetic device", + }, + { + key: "Z44.0", + en: "", + de: "Fitting and adjustment of artificial arm (complete)(partial)", + }, + { + key: "Z44.1", + en: "", + de: "Fitting and adjustment of artificial leg (complete)(partial)", + }, + { + key: "Z44.2", + en: "", + de: "Fitting and adjustment of artificial eye", + }, + { + key: "Z44.3", + en: "", + de: "Fitting and adjustment of external breast prosthesis", + }, + { + key: "Z44.8", + en: "", + de: "Fitting and adjustment of other external prosthetic devices", + }, + { + key: "Z44.9", + en: "", + de: "Fitting and adjustment of unspecified external prosthetic device", + }, + { + key: "Z45", + en: "", + de: "Adjustment and management of implanted device", + }, + { + key: "Z45.0", + en: "", + de: "Adjustment and management of cardiac devices", + }, + { + key: "Z45.1", + en: "", + de: "Adjustment and management of infusion pump", + }, + { + key: "Z45.2", + en: "", + de: "Adjustment and management of vascular access device", + }, + { + key: "Z45.3", + en: "", + de: "Adjustment and management of implanted hearing device", + }, + { + key: "Z45.8", + en: "", + de: "Adjustment and management of other implanted devices", + }, + { + key: "Z45.9", + en: "", + de: "Adjustment and management of unspecified implanted device", + }, + { + key: "Z46", + en: "", + de: "Fitting and adjustment of other devices", + }, + { + key: "Z46.0", + en: "", + de: "Fitting and adjustment of spectacles and contact lenses", + }, + { + key: "Z46.1", + en: "", + de: "Fitting and adjustment of hearing aid", + }, + { + key: "Z46.2", + en: "", + de: "Fitting and adjustment of other devices related to nervous system and special senses", + }, + { + key: "Z46.3", + en: "", + de: "Fitting and adjustment of dental prosthetic device", + }, + { + key: "Z46.4", + en: "", + de: "Fitting and adjustment of orthodontic device", + }, + { + key: "Z46.5", + en: "", + de: "Fitting and adjustment of ileostomy and other intestinal appliances", + }, + { + key: "Z46.6", + en: "", + de: "Fitting and adjustment of urinary device", + }, + { + key: "Z46.7", + en: "", + de: "Fitting and adjustment of orthopaedic device", + }, + { + key: "Z46.8", + en: "", + de: "Fitting and adjustment of other specified devices", + }, + { + key: "Z46.9", + en: "", + de: "Fitting and adjustment of unspecified device", + }, + { + key: "Z47", + en: "", + de: "Other orthopaedic follow-up care", + }, + { + key: "Z47.0", + en: "", + de: "Follow-up care involving removal of fracture plate and other internal fixation device", + }, + { + key: "Z47.8", + en: "", + de: "Other specified orthopaedic follow-up care", + }, + { + key: "Z47.9", + en: "", + de: "Orthopaedic follow-up care, unspecified", + }, + { + key: "Z48", + en: "", + de: "Other surgical follow-up care", + }, + { + key: "Z48.0", + en: "", + de: "Attention to surgical dressings and sutures", + }, + { + key: "Z48.8", + en: "", + de: "Other specified surgical follow-up care", + }, + { + key: "Z48.9", + en: "", + de: "Surgical follow-up care, unspecified", + }, + { + key: "Z49", + en: "", + de: "Care involving dialysis", + }, + { + key: "Z49.0", + en: "", + de: "Preparatory care for dialysis", + }, + { + key: "Z49.1", + en: "", + de: "Extracorporeal dialysis", + }, + { + key: "Z49.2", + en: "", + de: "Other dialysis", + }, + { + key: "Z51", + en: "", + de: "Other medical care", + }, + { + key: "Z51.0", + en: "", + de: "Radiotherapy session", + }, + { + key: "Z51.1", + en: "", + de: "Chemotherapy session for neoplasm", + }, + { + key: "Z51.2", + en: "", + de: "Other chemotherapy", + }, + { + key: "Z51.3", + en: "", + de: "Blood transfusion (without reported diagnosis)", + }, + { + key: "Z51.4", + en: "", + de: "Preparatory care for subsequent treatment, not elsewhere classified", + }, + { + key: "Z51.5", + en: "", + de: "Palliative care", + }, + { + key: "Z51.6", + en: "", + de: "Desensitization to allergens", + }, + { + key: "Z51.8", + en: "", + de: "Other specified medical care", + }, + { + key: "Z51.9", + en: "", + de: "Medical care, unspecified", + }, + { + key: "Z52", + en: "", + de: "Donors of organs and tissues", + }, + { + key: "Z52.0", + en: "", + de: "Blood donor", + }, + { + key: "Z52.1", + en: "", + de: "Skin donor", + }, + { + key: "Z52.2", + en: "", + de: "Bone donor", + }, + { + key: "Z52.3", + en: "", + de: "Bone marrow donor", + }, + { + key: "Z52.4", + en: "", + de: "Kidney donor", + }, + { + key: "Z52.5", + en: "", + de: "Cornea donor", + }, + { + key: "Z52.6", + en: "", + de: "Liver donor", + }, + { + key: "Z52.7", + en: "", + de: "Heart donor", + }, + { + key: "Z52.8", + en: "", + de: "Donor of other organs and tissues", + }, + { + key: "Z52.9", + en: "", + de: "Donor of unspecified organ or tissue", + }, + { + key: "Z53", + en: "", + de: "Persons encountering health services for specific procedures, not carried out", + }, + { + key: "Z55", + en: "", + de: "Problems related to education and literacy", + }, + { + key: "Z56", + en: "", + de: "Problems related to employment and unemployment", + }, + { + key: "Z57", + en: "", + de: "Occupational exposure to risk-factors", + }, + { + key: "Z58", + en: "", + de: "Problems related to physical environment", + }, + { + key: "Z59", + en: "", + de: "Problems related to housing and economic circumstances", + }, + { + key: "Z60", + en: "", + de: "Problems related to social environment", + }, + { + key: "Z61", + en: "", + de: "Problems related to negative life events in childhood", + }, + { + key: "Z62", + en: "", + de: "Other problems related to upbringing", + }, + { + key: "Z63", + en: "", + de: "Other problems related to primary support group, including family circumstances", + }, + { + key: "Z64", + en: "", + de: "Problems related to certain psychosocial circumstances", + }, + { + key: "Z64.0", + en: "", + de: "Problems related to unwanted pregnancy", + }, + { + key: "Z64.1", + en: "", + de: "Problems related to multiparity", + }, + { + key: "Z65", + en: "", + de: "Problems related to other psychosocial circumstances", + }, + { + key: "Z70", + en: "", + de: "Counselling related to sexual attitude, behaviour and orientation", + }, + { + key: "Z71", + en: "", + de: "Persons encountering health services for other counselling and medical advice, not elsewhere classified", + }, + { + key: "Z72", + en: "", + de: "Problems related to lifestyle", + }, + { + key: "Z72.0", + en: "", + de: "Tobacco use", + }, + { + key: "Z72.8", + en: "", + de: "Other problems related to lifestyle", + }, + { + key: "Z72.9", + en: "", + de: "Problem related to lifestyle, unspecified", + }, + { + key: "Z73", + en: "", + de: "Problems related to life-management difficulty", + }, + { + key: "Z74", + en: "", + de: "Problems related to care-provider dependency", + }, + { + key: "Z74.0", + en: "", + de: "Need for assistance due to reduced mobility", + }, + { + key: "Z74.1", + en: "", + de: "Need for assistance with personal care", + }, + { + key: "Z74.2", + en: "", + de: "Need for assistance at home and no other household member able to render care", + }, + { + key: "Z74.3", + en: "", + de: "Need for continuous supervision", + }, + { + key: "Z74.8", + en: "", + de: "Other problems related to care-provider dependency", + }, + { + key: "Z74.9", + en: "", + de: "Problem related to care-provider dependency, unspecified", + }, + { + key: "Z75", + en: "", + de: "Problems related to medical facilities and other health care", + }, + { + key: "Z75.2", + en: "", + de: "Other waiting period for investigation and treatment", + }, + { + key: "Z75.8", + en: "", + de: "Other problems related to medical facilities and other health care", + }, + { + key: "Z75.9", + en: "", + de: "Unspecified problem related to medical facilities and other health care", + }, + { + key: "Z76", + en: "", + de: "Persons encountering health services in other circumstances", + }, + { + key: "Z76.0", + en: "", + de: "Issue of repeat prescription", + }, + { + key: "Z76.1", + en: "", + de: "Health supervision and care of foundling", + }, + { + key: "Z76.2", + en: "", + de: "Health supervision and care of other healthy infant and child", + }, + { + key: "Z76.3", + en: "", + de: "Healthy person accompanying sick person", + }, + { + key: "Z76.4", + en: "", + de: "Other boarder in health-care facility", + }, + { + key: "Z76.8", + en: "", + de: "Persons encountering health services in other specified circumstances", + }, + { + key: "Z76.9", + en: "", + de: "Person encountering health services in unspecified circumstances", + }, + { + key: "Z80", + en: "", + de: "Family history of malignant neoplasm", + }, + { + key: "Z80.0", + en: "", + de: "Family history of malignant neoplasm of digestive organs", + }, + { + key: "Z80.1", + en: "", + de: "Family history of malignant neoplasm of trachea, bronchus and lung", + }, + { + key: "Z80.2", + en: "", + de: "Family history of malignant neoplasm of other respiratory and intrathoracic organs", + }, + { + key: "Z80.3", + en: "", + de: "Family history of malignant neoplasm of breast", + }, + { + key: "Z80.4", + en: "", + de: "Family history of malignant neoplasm of genital organs", + }, + { + key: "Z80.5", + en: "", + de: "Family history of malignant neoplasm of urinary tract", + }, + { + key: "Z80.6", + en: "", + de: "Family history of leukaemia", + }, + { + key: "Z80.7", + en: "", + de: "Family history of other malignant neoplasms of lymphoid, haematopoietic and related tissues", + }, + { + key: "Z80.8", + en: "", + de: "Family history of malignant neoplasm of other organs or systems", + }, + { + key: "Z80.9", + en: "", + de: "Family history of malignant neoplasm, unspecified", + }, + { + key: "Z81", + en: "", + de: "Family history of mental and behavioural disorders", + }, + { + key: "Z82", + en: "", + de: "Family history of certain disabilities and chronic diseases leading to disablement", + }, + { + key: "Z83", + en: "", + de: "Family history of other specific disorders", + }, + { + key: "Z83.1", + en: "", + de: "Family history of other infectious and parasitic diseases", + }, + { + key: "Z83.2", + en: "", + de: "Family history of diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism", + }, + { + key: "Z83.3", + en: "", + de: "Family history of diabetes mellitus", + }, + { + key: "Z83.4", + en: "", + de: "Family history of other endocrine, nutritional and metabolic diseases", + }, + { + key: "Z83.5", + en: "", + de: "Family history of eye and ear disorders", + }, + { + key: "Z83.6", + en: "", + de: "Family history of diseases of the respiratory system", + }, + { + key: "Z83.7", + en: "", + de: "Family history of diseases of the digestive system", + }, + { + key: "Z84", + en: "", + de: "Family history of other conditions", + }, + { + key: "Z84.0", + en: "", + de: "Family history of diseases of the skin and subcutaneous tissue", + }, + { + key: "Z84.1", + en: "", + de: "Family history of disorders of kidney and ureter", + }, + { + key: "Z84.2", + en: "", + de: "Family history of other diseases of the genitourinary system", + }, + { + key: "Z84.3", + en: "", + de: "Family history of consanguinity", + }, + { + key: "Z84.8", + en: "", + de: "Family history of other specified conditions", + }, + { + key: "Z85", + en: "", + de: "Personal history of malignant neoplasm", + }, + { + key: "Z85.0", + en: "", + de: "Personal history of malignant neoplasm of digestive organs", + }, + { + key: "Z85.1", + en: "", + de: "Personal history of malignant neoplasm of trachea, bronchus and lung", + }, + { + key: "Z85.2", + en: "", + de: "Personal history of malignant neoplasm of other respiratory and intrathoracic organs", + }, + { + key: "Z85.3", + en: "", + de: "Personal history of malignant neoplasm of breast", + }, + { + key: "Z85.4", + en: "", + de: "Personal history of malignant neoplasm of genital organs", + }, + { + key: "Z85.5", + en: "", + de: "Personal history of malignant neoplasm of urinary tract", + }, + { + key: "Z85.6", + en: "", + de: "Personal history of leukaemia", + }, + { + key: "Z85.7", + en: "", + de: "Personal history of other malignant neoplasms of lymphoid, haematopoietic and related tissues", + }, + { + key: "Z85.8", + en: "", + de: "Personal history of malignant neoplasms of other organs and systems", + }, + { + key: "Z85.9", + en: "", + de: "Personal history of malignant neoplasm, unspecified", + }, + { + key: "Z86", + en: "", + de: "Personal history of certain other diseases", + }, + { + key: "Z86.0", + en: "", + de: "Personal history of other neoplasms", + }, + { + key: "Z86.1", + en: "", + de: "Personal history of infectious and parasitic diseases", + }, + { + key: "Z86.2", + en: "", + de: "Personal history of diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism", + }, + { + key: "Z86.3", + en: "", + de: "Personal history of endocrine, nutritional and metabolic diseases", + }, + { + key: "Z86.4", + en: "", + de: "Personal history of psychoactive substance abuse", + }, + { + key: "Z86.5", + en: "", + de: "Personal history of other mental and behavioural disorders", + }, + { + key: "Z86.6", + en: "", + de: "Personal history of diseases of the nervous system and sense organs", + }, + { + key: "Z86.7", + en: "", + de: "Personal history of diseases of the circulatory system", + }, + { + key: "Z87", + en: "", + de: "Personal history of other diseases and conditions", + }, + { + key: "Z87.0", + en: "", + de: "Personal history of diseases of the respiratory system", + }, + { + key: "Z87.1", + en: "", + de: "Personal history of diseases of the digestive system", + }, + { + key: "Z87.2", + en: "", + de: "Personal history of diseases of the skin and subcutaneous tissue", + }, + { + key: "Z87.3", + en: "", + de: "Personal history of diseases of the musculoskeletal system and connective tissue", + }, + { + key: "Z87.4", + en: "", + de: "Personal history of diseases of the genitourinary system", + }, + { + key: "Z87.5", + en: "", + de: "Personal history of complications of pregnancy, childbirth and the puerperium", + }, + { + key: "Z87.6", + en: "", + de: "Personal history of certain conditions arising in the perinatal period", + }, + { + key: "Z87.7", + en: "", + de: "Personal history of congenital malformations, deformations and chromosomal abnormalities", + }, + { + key: "Z87.8", + en: "", + de: "Personal history of other specified conditions", + }, + { + key: "Z88", + en: "", + de: "Personal history of allergy to drugs, medicaments and biological substances", + }, + { + key: "Z88.0", + en: "", + de: "Personal history of allergy to penicillin", + }, + { + key: "Z88.1", + en: "", + de: "Personal history of allergy to other antibiotic agents", + }, + { + key: "Z88.2", + en: "", + de: "Personal history of allergy to sulfonamides", + }, + { + key: "Z88.3", + en: "", + de: "Personal history of allergy to other anti-infective agents", + }, + { + key: "Z88.4", + en: "", + de: "Personal history of allergy to anaesthetic agent", + }, + { + key: "Z88.5", + en: "", + de: "Personal history of allergy to narcotic agent", + }, + { + key: "Z88.6", + en: "", + de: "Personal history of allergy to analgesic agent", + }, + { + key: "Z88.7", + en: "", + de: "Personal history of allergy to serum and vaccine", + }, + { + key: "Z88.8", + en: "", + de: "Personal history of allergy to other drugs, medicaments and biological substances", + }, + { + key: "Z88.9", + en: "", + de: "Personal history of allergy to unspecified drugs, medicaments and biological substances", + }, + { + key: "Z89", + en: "", + de: "Acquired absence of limb", + }, + { + key: "Z89.0", + en: "", + de: "Acquired absence of finger(s) [including thumb], unilateral", + }, + { + key: "Z89.1", + en: "", + de: "Acquired absence of hand and wrist", + }, + { + key: "Z89.2", + en: "", + de: "Acquired absence of upper limb above wrist", + }, + { + key: "Z89.3", + en: "", + de: "Acquired absence of both upper limbs [any level]", + }, + { + key: "Z89.4", + en: "", + de: "Acquired absence of foot and ankle", + }, + { + key: "Z89.5", + en: "", + de: "Acquired absence of leg at or below knee", + }, + { + key: "Z89.6", + en: "", + de: "Acquired absence of leg above knee", + }, + { + key: "Z89.7", + en: "", + de: "Acquired absence of both lower limbs [any level, except toes alone]", + }, + { + key: "Z89.8", + en: "", + de: "Acquired absence of upper and lower limbs [any level]", + }, + { + key: "Z89.9", + en: "", + de: "Acquired absence of limb, unspecified", + }, + { + key: "Z90", + en: "", + de: "Acquired absence of organs, not elsewhere classified", + }, + { + key: "Z90.0", + en: "", + de: "Acquired absence of part of head and neck", + }, + { + key: "Z90.1", + en: "", + de: "Acquired absence of breast(s)", + }, + { + key: "Z90.2", + en: "", + de: "Acquired absence of lung [part of]", + }, + { + key: "Z90.3", + en: "", + de: "Acquired absence of part of stomach", + }, + { + key: "Z90.4", + en: "", + de: "Acquired absence of other parts of digestive tract", + }, + { + key: "Z90.5", + en: "", + de: "Acquired absence of kidney", + }, + { + key: "Z90.6", + en: "", + de: "Acquired absence of other organs of urinary tract", + }, + { + key: "Z90.7", + en: "", + de: "Acquired absence of genital organ(s)", + }, + { + key: "Z90.8", + en: "", + de: "Acquired absence of other organs", + }, + { + key: "Z91", + en: "", + de: "Personal history of risk-factors, not elsewhere classified", + }, + { + key: "Z91.0", + en: "", + de: "Personal history of allergy, other than to drugs and biological substances", + }, + { + key: "Z91.1", + en: "", + de: "Personal history of noncompliance with medical treatment and regimen", + }, + { + key: "Z91.7", + en: "", + de: "Personal history of female genital mutilation", + }, + { + key: "Z91.8", + en: "", + de: "Personal history of other specified risk-factors, not elsewhere classified", + }, + { + key: "Z92", + en: "", + de: "Personal history of medical treatment", + }, + { + key: "Z92.1", + en: "", + de: "Personal history of long-term (current) use of anticoagulants", + }, + { + key: "Z92.2", + en: "", + de: "Personal history of long-term (current) use of other medicaments", + }, + { + key: "Z92.3", + en: "", + de: "Personal history of irradiation", + }, + { + key: "Z92.4", + en: "", + de: "Personal history of major surgery, not elsewhere classified", + }, + { + key: "Z92.6", + en: "", + de: "Personal history of chemotherapy for neoplastic disease", + }, + { + key: "Z92.8", + en: "", + de: "Personal history of other medical treatment", + }, + { + key: "Z92.9", + en: "", + de: "Personal history of medical treatment, unspecified", + }, + { + key: "Z93", + en: "", + de: "Artificial opening status", + }, + { + key: "Z93.0", + en: "", + de: "Tracheostomy status", + }, + { + key: "Z93.1", + en: "", + de: "Gastrostomy status", + }, + { + key: "Z93.2", + en: "", + de: "Ileostomy status", + }, + { + key: "Z93.3", + en: "", + de: "Colostomy status", + }, + { + key: "Z93.4", + en: "", + de: "Other artificial openings of gastrointestinal tract status", + }, + { + key: "Z93.5", + en: "", + de: "Cystostomy status", + }, + { + key: "Z93.6", + en: "", + de: "Other artificial openings of urinary tract status", + }, + { + key: "Z93.8", + en: "", + de: "Other artificial opening status", + }, + { + key: "Z93.9", + en: "", + de: "Artificial opening status, unspecified", + }, + { + key: "Z94", + en: "", + de: "Transplanted organ and tissue status", + }, + { + key: "Z94.0", + en: "", + de: "Kidney transplant status", + }, + { + key: "Z94.1", + en: "", + de: "Heart transplant status", + }, + { + key: "Z94.2", + en: "", + de: "Lung transplant status", + }, + { + key: "Z94.3", + en: "", + de: "Heart and lungs transplant status", + }, + { + key: "Z94.4", + en: "", + de: "Liver transplant status", + }, + { + key: "Z94.5", + en: "", + de: "Skin transplant status", + }, + { + key: "Z94.6", + en: "", + de: "Bone transplant status", + }, + { + key: "Z94.7", + en: "", + de: "Corneal transplant status", + }, + { + key: "Z94.8", + en: "", + de: "Other transplanted organ and tissue status", + }, + { + key: "Z94.9", + en: "", + de: "Transplanted organ and tissue status, unspecified", + }, + { + key: "Z95", + en: "", + de: "Presence of cardiac and vascular implants and grafts", + }, + { + key: "Z95.0", + en: "", + de: "Presence of electronic cardiac devices", + }, + { + key: "Z95.1", + en: "", + de: "Presence of aortocoronary bypass graft", + }, + { + key: "Z95.2", + en: "", + de: "Presence of prosthetic heart valve", + }, + { + key: "Z95.3", + en: "", + de: "Presence of xenogenic heart valve", + }, + { + key: "Z95.4", + en: "", + de: "Presence of other heart-valve replacement", + }, + { + key: "Z95.5", + en: "", + de: "Presence of coronary angioplasty implant and graft", + }, + { + key: "Z95.8", + en: "", + de: "Presence of other cardiac and vascular implants and grafts", + }, + { + key: "Z95.9", + en: "", + de: "Presence of cardiac and vascular implant and graft, unspecified", + }, + { + key: "Z96", + en: "", + de: "Presence of other functional implants", + }, + { + key: "Z96.0", + en: "", + de: "Presence of urogenital implants", + }, + { + key: "Z96.1", + en: "", + de: "Presence of intraocular lens", + }, + { + key: "Z96.2", + en: "", + de: "Presence of otological and audiological implants", + }, + { + key: "Z96.3", + en: "", + de: "Presence of artificial larynx", + }, + { + key: "Z96.4", + en: "", + de: "Presence of endocrine implants", + }, + { + key: "Z96.5", + en: "", + de: "Presence of tooth-root and mandibular implants", + }, + { + key: "Z96.6", + en: "", + de: "Presence of orthopaedic joint implants", + }, + { + key: "Z96.7", + en: "", + de: "Presence of other bone and tendon implants", + }, + { + key: "Z96.8", + en: "", + de: "Presence of other specified functional implants", + }, + { + key: "Z96.9", + en: "", + de: "Presence of functional implant, unspecified", + }, + { + key: "Z97", + en: "", + de: "Presence of other devices", + }, + { + key: "Z97.1", + en: "", + de: "Presence of artificial limb (complete)(partial)", + }, + { + key: "Z97.8", + en: "", + de: "Presence of other specified devices", + }, + { + key: "Z98", + en: "", + de: "Other postsurgical states", + }, + { + key: "Z98.0", + en: "", + de: "Intestinal bypass and anastomosis status", + }, + { + key: "Z98.1", + en: "", + de: "Arthrodesis status", + }, + { + key: "Z98.2", + en: "", + de: "Presence of cerebrospinal fluid drainage device", + }, + { + key: "Z98.8", + en: "", + de: "Other specified postsurgical states", + }, + { + key: "Z99", + en: "", + de: "Dependence on enabling machines and devices, not elsewhere classified", + }, + { + key: "Z99.0", + en: "", + de: "Dependence on aspirator", + }, + { + key: "Z99.1", + en: "", + de: "Dependence on respirator", + }, + { + key: "Z99.2", + en: "", + de: "Dependence on renal dialysis", + }, + { + key: "Z99.3", + en: "", + de: "Dependence on wheelchair", + }, + { + key: "Z99.4", + en: "", + de: "Dependence on artificial heart", + }, + { + key: "Z99.8", + en: "", + de: "Dependence on other enabling machines and devices", + }, + { + key: "Z99.9", + en: "", + de: "Dependence on unspecified enabling machine and device", + }, + { + key: "U04", + en: "", + de: "Severe acute respiratory syndrome [SARS]", + }, + { + key: "U04.9", + en: "", + de: "Severe acute respiratory syndrome [SARS], unspecified", + }, + { + key: "U07", + en: "", + de: "Emergency use of U07", + }, + { + key: "U07.6", + en: "", + de: "Emergency use of U07.6", + }, + { + key: "U07.7", + en: "", + de: "Emergency use of U07.7", + }, + { + key: "U07.8", + en: "", + de: "Emergency use of U07.8", + }, + { + key: "U07.9", + en: "", + de: "Emergency use of U07.9", + }, + { + key: "U08", + en: "", + de: "Emergency use of U08", + }, + { + key: "U08.9", + en: "", + de: "Emergency use of U08.9", + }, + ] + ); diff --git a/src/assets/lokalisation.ts b/src/assets/lokalisation.ts index 5d75c60..f4d6360 100644 --- a/src/assets/lokalisation.ts +++ b/src/assets/lokalisation.ts @@ -3,3222 +3,2702 @@ import { Criteria } from '@samply/lens-core'; export const Lokalisation: Criteria = new Criteria( 'urn:oid:2.16.840.1.113883.6.43.1', { - de: 'Lokalisation (ICD-O-3 Klassifizierung)', + de: 'Lokalization (ICD-O-3 classification)', en: 'Localization (ICD-O-3 classification)', }, 'string', - 'http://fhir.de/CodeSystem/bfarm/icd-10-gm', + 'http://terminology.hl7.org/CodeSystem/icd-o-3', ['EQUALS'], [ - { - key: 'C00.0', - de: 'Bösartige Neubildung: Äußere Oberlippe', - en: '', - }, - { - key: 'C00.1', - de: 'Bösartige Neubildung: Äußere Unterlippe', - en: '', - }, - { - key: 'C00.3', - de: 'Bösartige Neubildung: Oberlippe, Innenseite', - en: '', - }, - { - key: 'C00.4', - de: 'Bösartige Neubildung: Unterlippe, Innenseite', - en: '', - }, - { - key: 'C00.6', - de: 'Bösartige Neubildung: Lippenkommissur', - en: '', - }, - { - key: 'C00.8', - de: 'Bösartige Neubildung: Lippe, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C01.9', - de: '', - en: '', - }, - { - key: 'C02.0', - de: 'Bösartige Neubildung: Zungenrücken', - en: '', - }, - { - key: 'C02.1', - de: 'Bösartige Neubildung: Zungenrand', - en: '', - }, - { - key: 'C02.2', - de: 'Bösartige Neubildung: Zungenunterfläche', - en: '', - }, - { - key: 'C02.3', - de: 'Bösartige Neubildung: Vordere zwei Drittel der Zunge, Bereich nicht näher bezeichnet', - en: '', - }, - { - key: 'C02.4', - de: 'Bösartige Neubildung: Zungentonsille', - en: '', - }, - { - key: 'C02.8', - de: 'Bösartige Neubildung: Zunge, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C02.9', - de: 'Bösartige Neubildung: Zunge, nicht näher bezeichnet', - en: '', - }, - { - key: 'C03.0', - de: 'Bösartige Neubildung: Oberkieferzahnfleisch', - en: '', - }, - { - key: 'C03.01', - de: '', - en: '', - }, - { - key: 'C03.02', - de: '', - en: '', - }, - { - key: 'C03.1', - de: 'Bösartige Neubildung: Unterkieferzahnfleisch', - en: '', - }, - { - key: 'C03.11', - de: '', - en: '', - }, - { - key: 'C03.12', - de: '', - en: '', - }, - { - key: 'C03.13', - de: '', - en: '', - }, - { - key: 'C03.8', - de: '', - en: '', - }, - { - key: 'C03.9', - de: 'Bösartige Neubildung: Zahnfleisch, nicht näher bezeichnet', - en: '', - }, - { - key: 'C04.0', - de: 'Bösartige Neubildung: Vorderer Teil des Mundbodens', - en: '', - }, - { - key: 'C04.1', - de: 'Bösartige Neubildung: Seitlicher Teil des Mundbodens', - en: '', - }, - { - key: 'C04.8', - de: 'Bösartige Neubildung: Mundboden, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C04.9', - de: 'Bösartige Neubildung: Mundboden, nicht näher bezeichnet', - en: '', - }, - { - key: 'C05.0', - de: 'Bösartige Neubildung: Harter Gaumen', - en: '', - }, - { - key: 'C05.1', - de: 'Bösartige Neubildung: Weicher Gaumen', - en: '', - }, - { - key: 'C05.2', - de: 'Bösartige Neubildung: Uvula', - en: '', - }, - { - key: 'C05.8', - de: 'Bösartige Neubildung: Gaumen, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C05.9', - de: 'Bösartige Neubildung: Gaumen, nicht näher bezeichnet', - en: '', - }, - { - key: 'C06.0', - de: 'Bösartige Neubildung: Wangenschleimhaut', - en: '', - }, - { - key: 'C06.1', - de: 'Bösartige Neubildung: Vestibulum oris', - en: '', - }, - { - key: 'C06.2', - de: 'Bösartige Neubildung: Retromolarregion', - en: '', - }, - { - key: 'C06.8', - de: 'Bösartige Neubildung: Sonstige und nicht näher bezeichnete Teile des Mundes, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C06.9', - de: 'Bösartige Neubildung: Mund, nicht näher bezeichnet', - en: '', - }, - { - key: 'C07.9', - de: '', - en: '', - }, - { - key: 'C08.0', - de: 'Bösartige Neubildung: Glandula submandibularis', - en: '', - }, - { - key: 'C08.1', - de: 'Bösartige Neubildung: Glandula sublingualis', - en: '', - }, - { - key: 'C08.8', - de: 'Bösartige Neubildung: Große Speicheldrüsen, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C08.9', - de: 'Bösartige Neubildung: Große Speicheldrüse, nicht näher bezeichnet', - en: '', - }, - { - key: 'C09.0', - de: 'Bösartige Neubildung: Fossa tonsillaris', - en: '', - }, - { - key: 'C09.1', - de: 'Bösartige Neubildung: Gaumenbogen (vorderer) (hinterer)', - en: '', - }, - { - key: 'C09.8', - de: 'Bösartige Neubildung: Tonsille, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C09.9', - de: 'Bösartige Neubildung: Tonsille, nicht näher bezeichnet', - en: '', - }, - { - key: 'C10.0', - de: 'Bösartige Neubildung: Vallecula epiglottica', - en: '', - }, - { - key: 'C10.1', - de: 'Bösartige Neubildung: Vorderfläche der Epiglottis', - en: '', - }, - { - key: 'C10.2', - de: 'Bösartige Neubildung: Seitenwand des Oropharynx', - en: '', - }, - { - key: 'C10.3', - de: 'Bösartige Neubildung: Hinterwand des Oropharynx', - en: '', - }, - { - key: 'C10.8', - de: 'Bösartige Neubildung: Oropharynx, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C10.9', - de: 'Bösartige Neubildung: Oropharynx, nicht näher bezeichnet', - en: '', - }, - { - key: 'C11.0', - de: 'Bösartige Neubildung: Obere Wand des Nasopharynx', - en: '', - }, - { - key: 'C11.1', - de: 'Bösartige Neubildung: Hinterwand des Nasopharynx', - en: '', - }, - { - key: 'C11.2', - de: 'Bösartige Neubildung: Seitenwand des Nasopharynx', - en: '', - }, - { - key: 'C11.3', - de: 'Bösartige Neubildung: Vorderwand des Nasopharynx', - en: '', - }, - { - key: 'C11.8', - de: 'Bösartige Neubildung: Nasopharynx, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C11.9', - de: 'Bösartige Neubildung: Nasopharynx, nicht näher bezeichnet', - en: '', - }, - { - key: 'C12.9', - de: '', - en: '', - }, - { - key: 'C13.0', - de: 'Bösartige Neubildung: Regio postcricoidea', - en: '', - }, - { - key: 'C13.1', - de: 'Bösartige Neubildung: Aryepiglottische Falte, hypopharyngeale Seite', - en: '', - }, - { - key: 'C13.2', - de: 'Bösartige Neubildung: Hinterwand des Hypopharynx', - en: '', - }, - { - key: 'C13.8', - de: 'Bösartige Neubildung: Hypopharynx, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C13.9', - de: 'Bösartige Neubildung: Hypopharynx, nicht näher bezeichnet', - en: '', - }, - { - key: 'C14.0', - de: 'Bösartige Neubildung: Pharynx, nicht näher bezeichnet', - en: '', - }, - { - key: 'C14.2', - de: 'Bösartige Neubildung: Lymphatischer Rachenring [Waldeyer]', - en: '', - }, - { - key: 'C14.8', - de: 'Bösartige Neubildung: Lippe, Mundhöhle und Pharynx, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C15.0', - de: 'Bösartige Neubildung: Zervikaler Ösophagus', - en: '', - }, - { - key: 'C15.1', - de: 'Bösartige Neubildung: Thorakaler Ösophagus', - en: '', - }, - { - key: 'C15.2', - de: 'Bösartige Neubildung: Abdominaler Ösophagus', - en: '', - }, - { - key: 'C15.3', - de: 'Bösartige Neubildung: Ösophagus, oberes Drittel', - en: '', - }, - { - key: 'C15.4', - de: 'Bösartige Neubildung: Ösophagus, mittleres Drittel', - en: '', - }, - { - key: 'C15.5', - de: 'Bösartige Neubildung: Ösophagus, unteres Drittel', - en: '', - }, - { - key: 'C15.8', - de: 'Bösartige Neubildung: Ösophagus, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C15.9', - de: 'Bösartige Neubildung: Ösophagus, nicht näher bezeichnet', - en: '', - }, - { - key: 'C16.0', - de: 'Bösartige Neubildung: Kardia', - en: '', - }, - { - key: 'C16.1', - de: 'Bösartige Neubildung: Fundus ventriculi', - en: '', - }, - { - key: 'C16.11', - de: '', - en: '', - }, - { - key: 'C16.13', - de: '', - en: '', - }, - { - key: 'C16.14', - de: '', - en: '', - }, - { - key: 'C16.2', - de: 'Bösartige Neubildung: Corpus ventriculi', - en: '', - }, - { - key: 'C16.21', - de: '', - en: '', - }, - { - key: 'C16.22', - de: '', - en: '', - }, - { - key: 'C16.23', - de: '', - en: '', - }, - { - key: 'C16.24', - de: '', - en: '', - }, - { - key: 'C16.3', - de: 'Bösartige Neubildung: Antrum pyloricum', - en: '', - }, - { - key: 'C16.31', - de: '', - en: '', - }, - { - key: 'C16.33', - de: '', - en: '', - }, - { - key: 'C16.34', - de: '', - en: '', - }, - { - key: 'C16.4', - de: 'Bösartige Neubildung: Pylorus', - en: '', - }, - { - key: 'C16.5', - de: 'Bösartige Neubildung: Kleine Kurvatur des Magens, nicht näher bezeichnet', - en: '', - }, - { - key: 'C16.6', - de: 'Bösartige Neubildung: Große Kurvatur des Magens, nicht näher bezeichnet', - en: '', - }, - { - key: 'C16.8', - de: 'Bösartige Neubildung: Magen, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C16.9', - de: 'Bösartige Neubildung: Magen, nicht näher bezeichnet', - en: '', - }, - { - key: 'C17.0', - de: 'Bösartige Neubildung: Duodenum', - en: '', - }, - { - key: 'C17.01', - de: '', - en: '', - }, - { - key: 'C17.03', - de: '', - en: '', - }, - { - key: 'C17.1', - de: 'Bösartige Neubildung: Jejunum', - en: '', - }, - { - key: 'C17.2', - de: 'Bösartige Neubildung: Ileum', - en: '', - }, - { - key: 'C17.3', - de: 'Bösartige Neubildung: Meckel-Divertikel', - en: '', - }, - { - key: 'C17.8', - de: 'Bösartige Neubildung: Dünndarm, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C17.9', - de: 'Bösartige Neubildung: Dünndarm, nicht näher bezeichnet', - en: '', - }, - { - key: 'C18.0', - de: 'Bösartige Neubildung: Zäkum', - en: '', - }, - { - key: 'C18.1', - de: 'Bösartige Neubildung: Appendix vermiformis', - en: '', - }, - { - key: 'C18.2', - de: 'Bösartige Neubildung: Colon ascendens', - en: '', - }, - { - key: 'C18.3', - de: 'Bösartige Neubildung: Flexura coli dextra [hepatica]', - en: '', - }, - { - key: 'C18.4', - de: 'Bösartige Neubildung: Colon transversum', - en: '', - }, - { - key: 'C18.41', - de: '', - en: '', - }, - { - key: 'C18.42', - de: '', - en: '', - }, - { - key: 'C18.43', - de: '', - en: '', - }, - { - key: 'C18.5', - de: 'Bösartige Neubildung: Flexura coli sinistra [lienalis]', - en: '', - }, - { - key: 'C18.6', - de: 'Bösartige Neubildung: Colon descendens', - en: '', - }, - { - key: 'C18.7', - de: 'Bösartige Neubildung: Colon sigmoideum', - en: '', - }, - { - key: 'C18.8', - de: 'Bösartige Neubildung: Kolon, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C18.9', - de: 'Bösartige Neubildung: Kolon, nicht näher bezeichnet', - en: '', - }, - { - key: 'C19.9', - de: '', - en: '', - }, - { - key: 'C20.9', - de: '', - en: '', - }, - { - key: 'C20.91', - de: '', - en: '', - }, - { - key: 'C20.92', - de: '', - en: '', - }, - { - key: 'C20.93', - de: '', - en: '', - }, - { - key: 'C20.94', - de: '', - en: '', - }, - { - key: 'C20.95', - de: '', - en: '', - }, - { - key: 'C20.96', - de: '', - en: '', - }, - { - key: 'C21.0', - de: 'Bösartige Neubildung: Anus, nicht näher bezeichnet', - en: '', - }, - { - key: 'C21.1', - de: 'Bösartige Neubildung: Analkanal', - en: '', - }, - { - key: 'C21.2', - de: 'Bösartige Neubildung: Kloakenregion', - en: '', - }, - { - key: 'C21.8', - de: 'Bösartige Neubildung: Rektum, Anus und Analkanal, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C22.0', - de: 'Leberzellkarzinom', - en: '', - }, - { - key: 'C22.01', - de: '', - en: '', - }, - { - key: 'C22.02', - de: '', - en: '', - }, - { - key: 'C22.1', - de: 'Intrahepatisches Gallengangskarzinom', - en: '', - }, - { - key: 'C22.3', - de: 'Angiosarkom der Leber', - en: '', - }, - { - key: 'C22.7', - de: 'Sonstige näher bezeichnete Karzinome der Leber', - en: '', - }, - { - key: 'C23.9', - de: '', - en: '', - }, - { - key: 'C23.92', - de: '', - en: '', - }, - { - key: 'C24.0', - de: 'Bösartige Neubildung: Extrahepatischer Gallengang', - en: '', - }, - { - key: 'C24.01', - de: '', - en: '', - }, - { - key: 'C24.02', - de: '', - en: '', - }, - { - key: 'C24.03', - de: '', - en: '', - }, - { - key: 'C24.04', - de: '', - en: '', - }, - { - key: 'C24.05', - de: '', - en: '', - }, - { - key: 'C24.1', - de: 'Bösartige Neubildung: Ampulla hepatopancreatica [Ampulla Vateri]', - en: '', - }, - { - key: 'C24.8', - de: 'Bösartige Neubildung: Gallenwege, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C25.0', - de: 'Bösartige Neubildung: Pankreaskopf', - en: '', - }, - { - key: 'C25.1', - de: 'Bösartige Neubildung: Pankreaskörper', - en: '', - }, - { - key: 'C25.2', - de: 'Bösartige Neubildung: Pankreasschwanz', - en: '', - }, - { - key: 'C25.4', - de: 'Bösartige Neubildung: Endokriner Drüsenanteil des Pankreas', - en: '', - }, - { - key: 'C25.7', - de: 'Bösartige Neubildung: Sonstige Teile des Pankreas', - en: '', - }, - { - key: 'C25.8', - de: 'Bösartige Neubildung: Pankreas, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C25.9', - de: 'Bösartige Neubildung: Pankreas, nicht näher bezeichnet', - en: '', - }, - { - key: 'C26.0', - de: 'Bösartige Neubildung: Intestinaltrakt, Teil nicht näher bezeichnet', - en: '', - }, - { - key: 'C26.8', - de: 'Bösartige Neubildung: Verdauungssystem, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C26.9', - de: 'Bösartige Neubildung: Ungenau bezeichnete Lokalisationen des Verdauungssystems', - en: '', - }, - { - key: 'C30.0', - de: 'Bösartige Neubildung: Nasenhöhle', - en: '', - }, - { - key: 'C30.1', - de: 'Bösartige Neubildung: Mittelohr', - en: '', - }, - { - key: 'C31.0', - de: 'Bösartige Neubildung: Sinus maxillaris [Kieferhöhle]', - en: '', - }, - { - key: 'C31.1', - de: 'Bösartige Neubildung: Sinus ethmoidalis [Siebbeinzellen]', - en: '', - }, - { - key: 'C31.2', - de: 'Bösartige Neubildung: Sinus frontalis [Stirnhöhle]', - en: '', - }, - { - key: 'C31.3', - de: 'Bösartige Neubildung: Sinus sphenoidalis [Keilbeinhöhle]', - en: '', - }, - { - key: 'C31.8', - de: 'Bösartige Neubildung: Nasennebenhöhlen, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C31.9', - de: 'Bösartige Neubildung: Nasennebenhöhle, nicht näher bezeichnet', - en: '', - }, - { - key: 'C32.0', - de: 'Bösartige Neubildung: Glottis', - en: '', - }, - { - key: 'C32.1', - de: 'Bösartige Neubildung: Supraglottis', - en: '', - }, - { - key: 'C32.2', - de: 'Bösartige Neubildung: Subglottis', - en: '', - }, - { - key: 'C32.8', - de: 'Bösartige Neubildung: Larynx, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C32.9', - de: 'Bösartige Neubildung: Larynx, nicht näher bezeichnet', - en: '', - }, - { - key: 'C33.9', - de: '', - en: '', - }, - { - key: 'C34.0', - de: 'Bösartige Neubildung: Hauptbronchus', - en: '', - }, - { - key: 'C34.01', - de: '', - en: '', - }, - { - key: 'C34.02', - de: '', - en: '', - }, - { - key: 'C34.1', - de: 'Bösartige Neubildung: Oberlappen (-Bronchus)', - en: '', - }, - { - key: 'C34.2', - de: 'Bösartige Neubildung: Mittellappen (-Bronchus)', - en: '', - }, - { - key: 'C34.3', - de: 'Bösartige Neubildung: Unterlappen (-Bronchus)', - en: '', - }, - { - key: 'C34.4', - de: '', - en: '', - }, - { - key: 'C34.8', - de: 'Bösartige Neubildung: Bronchus und Lunge, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C34.9', - de: 'Bösartige Neubildung: Bronchus oder Lunge, nicht näher bezeichnet', - en: '', - }, - { - key: 'C37.9', - de: '', - en: '', - }, - { - key: 'C38.0', - de: 'Bösartige Neubildung: Herz', - en: '', - }, - { - key: 'C38.1', - de: 'Bösartige Neubildung: Vorderes Mediastinum', - en: '', - }, - { - key: 'C38.2', - de: 'Bösartige Neubildung: Hinteres Mediastinum', - en: '', - }, - { - key: 'C38.3', - de: 'Bösartige Neubildung: Mediastinum, Teil nicht näher bezeichnet', - en: '', - }, - { - key: 'C38.4', - de: 'Bösartige Neubildung: Pleura', - en: '', - }, - { - key: 'C38.41', - de: '', - en: '', - }, - { - key: 'C38.42', - de: '', - en: '', - }, - { - key: 'C38.8', - de: 'Bösartige Neubildung: Herz, Mediastinum und Pleura, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C39.8', - de: 'Bösartige Neubildung: Atmungsorgane und sonstige intrathorakale Organe, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C39.9', - de: 'Bösartige Neubildung: Ungenau bezeichnete Lokalisationen des Atmungssystems', - en: '', - }, - { - key: 'C40.0', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Skapula und lange Knochen der oberen Extremität', - en: '', - }, - { - key: 'C40.01', - de: '', - en: '', - }, - { - key: 'C40.02', - de: '', - en: '', - }, - { - key: 'C40.05', - de: '', - en: '', - }, - { - key: 'C40.1', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Kurze Knochen der oberen Extremität', - en: '', - }, - { - key: 'C40.13', - de: '', - en: '', - }, - { - key: 'C40.14', - de: '', - en: '', - }, - { - key: 'C40.2', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Lange Knochen der unteren Extremität', - en: '', - }, - { - key: 'C40.21', - de: '', - en: '', - }, - { - key: 'C40.22', - de: '', - en: '', - }, - { - key: 'C40.25', - de: '', - en: '', - }, - { - key: 'C40.3', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Kurze Knochen der unteren Extremität', - en: '', - }, - { - key: 'C40.31', - de: '', - en: '', - }, - { - key: 'C40.33', - de: '', - en: '', - }, - { - key: 'C40.8', - de: 'Bösartige Neubildung: Knochen und Gelenkknorpel der Extremitäten, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C41.0', - de: '', - en: '', - }, - { - key: 'C41.01', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Kraniofazial', - en: '', - }, - { - key: 'C41.02', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Maxillofazial', - en: '', - }, - { - key: 'C41.03', - de: '', - en: '', - }, - { - key: 'C41.05', - de: '', - en: '', - }, - { - key: 'C41.07', - de: '', - en: '', - }, - { - key: 'C41.1', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Unterkieferknochen', - en: '', - }, - { - key: 'C41.2', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Wirbelsäule', - en: '', - }, - { - key: 'C41.21', - de: '', - en: '', - }, - { - key: 'C41.22', - de: '', - en: '', - }, - { - key: 'C41.23', - de: '', - en: '', - }, - { - key: 'C41.25', - de: '', - en: '', - }, - { - key: 'C41.26', - de: '', - en: '', - }, - { - key: 'C41.3', - de: '', - en: '', - }, - { - key: 'C41.30', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Rippen', - en: '', - }, - { - key: 'C41.31', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Sternum', - en: '', - }, - { - key: 'C41.33', - de: '', - en: '', - }, - { - key: 'C41.34', - de: '', - en: '', - }, - { - key: 'C41.4', - de: 'Bösartige Neubildung des Knochens und des Gelenkknorpels: Beckenknochen', - en: '', - }, - { - key: 'C41.41', - de: '', - en: '', - }, - { - key: 'C41.42', - de: '', - en: '', - }, - { - key: 'C41.43', - de: '', - en: '', - }, - { - key: 'C41.44', - de: '', - en: '', - }, - { - key: 'C41.45', - de: '', - en: '', - }, - { - key: 'C41.46', - de: '', - en: '', - }, - { - key: 'C41.47', - de: '', - en: '', - }, - { - key: 'C41.8', - de: 'Bösartige Neubildung: Knochen und Gelenkknorpel, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C41.9', - de: 'Bösartige Neubildung: Knochen und Gelenkknorpel, nicht näher bezeichnet', - en: '', - }, - { - key: 'C42.0', - de: '', - en: '', - }, - { - key: 'C42.1', - de: '', - en: '', - }, - { - key: 'C42.2', - de: '', - en: '', - }, - { - key: 'C43.0', - de: 'Bösartiges Melanom der Lippe', - en: '', - }, - { - key: 'C43.1', - de: 'Bösartiges Melanom des Augenlides, einschließlich Kanthus', - en: '', - }, - { - key: 'C43.2', - de: 'Bösartiges Melanom des Ohres und des äußeren Gehörganges', - en: '', - }, - { - key: 'C43.3', - de: 'Bösartiges Melanom sonstiger und nicht näher bezeichneter Teile des Gesichtes', - en: '', - }, - { - key: 'C43.4', - de: 'Bösartiges Melanom der behaarten Kopfhaut und des Halses', - en: '', - }, - { - key: 'C43.5', - de: 'Bösartiges Melanom des Rumpfes', - en: '', - }, - { - key: 'C43.6', - de: 'Bösartiges Melanom der oberen Extremität, einschließlich Schulter', - en: '', - }, - { - key: 'C43.7', - de: 'Bösartiges Melanom der unteren Extremität, einschließlich Hüfte', - en: '', - }, - { - key: 'C43.8', - de: 'Bösartiges Melanom der Haut, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C43.9', - de: 'Bösartiges Melanom der Haut, nicht näher bezeichnet', - en: '', - }, - { - key: 'C44.0', - de: 'Sonstige bösartige Neubildungen: Lippenhaut', - en: '', - }, - { - key: 'C44.01', - de: '', - en: '', - }, - { - key: 'C44.02', - de: '', - en: '', - }, - { - key: 'C44.03', - de: '', - en: '', - }, - { - key: 'C44.1', - de: 'Sonstige bösartige Neubildungen: Haut des Augenlides, einschließlich Kanthus', - en: '', - }, - { - key: 'C44.11', - de: '', - en: '', - }, - { - key: 'C44.12', - de: '', - en: '', - }, - { - key: 'C44.13', - de: '', - en: '', - }, - { - key: 'C44.14', - de: '', - en: '', - }, - { - key: 'C44.2', - de: 'Sonstige bösartige Neubildungen: Haut des Ohres und des äußeren Gehörganges', - en: '', - }, - { - key: 'C44.21', - de: '', - en: '', - }, - { - key: 'C44.22', - de: '', - en: '', - }, - { - key: 'C44.3', - de: 'Sonstige bösartige Neubildungen: Haut sonstiger und nicht näher bezeichneter Teile des Gesichtes', - en: '', - }, - { - key: 'C44.31', - de: '', - en: '', - }, - { - key: 'C44.32', - de: '', - en: '', - }, - { - key: 'C44.33', - de: '', - en: '', - }, - { - key: 'C44.34', - de: '', - en: '', - }, - { - key: 'C44.35', - de: '', - en: '', - }, - { - key: 'C44.36', - de: '', - en: '', - }, - { - key: 'C44.4', - de: 'Sonstige bösartige Neubildungen: Behaarte Kopfhaut und Haut des Halses', - en: '', - }, - { - key: 'C44.41', - de: '', - en: '', - }, - { - key: 'C44.42', - de: '', - en: '', - }, - { - key: 'C44.43', - de: '', - en: '', - }, - { - key: 'C44.44', - de: '', - en: '', - }, - { - key: 'C44.5', - de: 'Sonstige bösartige Neubildungen: Haut des Rumpfes', - en: '', - }, - { - key: 'C44.51', - de: '', - en: '', - }, - { - key: 'C44.52', - de: '', - en: '', - }, - { - key: 'C44.53', - de: '', - en: '', - }, - { - key: 'C44.54', - de: '', - en: '', - }, - { - key: 'C44.55', - de: '', - en: '', - }, - { - key: 'C44.56', - de: '', - en: '', - }, - { - key: 'C44.57', - de: '', - en: '', - }, - { - key: 'C44.6', - de: 'Sonstige bösartige Neubildungen: Haut der oberen Extremität, einschließlich Schulter', - en: '', - }, - { - key: 'C44.61', - de: '', - en: '', - }, - { - key: 'C44.62', - de: '', - en: '', - }, - { - key: 'C44.63', - de: '', - en: '', - }, - { - key: 'C44.64', - de: '', - en: '', - }, - { - key: 'C44.65', - de: '', - en: '', - }, - { - key: 'C44.66', - de: '', - en: '', - }, - { - key: 'C44.67', - de: '', - en: '', - }, - { - key: 'C44.68', - de: '', - en: '', - }, - { - key: 'C44.69', - de: '', - en: '', - }, - { - key: 'C44.7', - de: 'Sonstige bösartige Neubildungen: Haut der unteren Extremität, einschließlich Hüfte', - en: '', - }, - { - key: 'C44.71', - de: '', - en: '', - }, - { - key: 'C44.72', - de: '', - en: '', - }, - { - key: 'C44.73', - de: '', - en: '', - }, - { - key: 'C44.74', - de: '', - en: '', - }, - { - key: 'C44.75', - de: '', - en: '', - }, - { - key: 'C44.76', - de: '', - en: '', - }, - { - key: 'C44.77', - de: '', - en: '', - }, - { - key: 'C44.78', - de: '', - en: '', - }, - { - key: 'C44.79', - de: '', - en: '', - }, - { - key: 'C44.8', - de: 'Sonstige bösartige Neubildungen: Haut, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C44.9', - de: 'Bösartige Neubildung der Haut, nicht näher bezeichnet', - en: '', - }, - { - key: 'C45.0', - de: 'Mesotheliom der Pleura', - en: '', - }, - { - key: 'C45.1', - de: 'Mesotheliom des Peritoneums', - en: '', - }, - { - key: 'C45.9', - de: 'Mesotheliom, nicht näher bezeichnet', - en: '', - }, - { - key: 'C46.0', - de: 'Kaposi-Sarkom der Haut', - en: '', - }, - { - key: 'C46.9', - de: 'Kaposi-Sarkom, nicht näher bezeichnet', - en: '', - }, - { - key: 'C47.0', - de: 'Bösartige Neubildung: Periphere Nerven des Kopfes, des Gesichtes und des Halses', - en: '', - }, - { - key: 'C47.1', - de: 'Bösartige Neubildung: Periphere Nerven der oberen Extremität, einschließlich Schulter', - en: '', - }, - { - key: 'C47.2', - de: 'Bösartige Neubildung: Periphere Nerven der unteren Extremität, einschließlich Hüfte', - en: '', - }, - { - key: 'C47.3', - de: 'Bösartige Neubildung: Periphere Nerven des Thorax', - en: '', - }, - { - key: 'C47.4', - de: 'Bösartige Neubildung: Periphere Nerven des Abdomens', - en: '', - }, - { - key: 'C47.5', - de: 'Bösartige Neubildung: Periphere Nerven des Beckens', - en: '', - }, - { - key: 'C47.6', - de: 'Bösartige Neubildung: Periphere Nerven des Rumpfes, nicht näher bezeichnet', - en: '', - }, - { - key: 'C47.8', - de: 'Bösartige Neubildung: Periphere Nerven und autonomes Nervensystem, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C47.9', - de: 'Bösartige Neubildung: Periphere Nerven und autonomes Nervensystem, nicht näher bezeichnet', - en: '', - }, - { - key: 'C48.0', - de: 'Bösartige Neubildung: Retroperitoneum', - en: '', - }, - { - key: 'C48.1', - de: 'Bösartige Neubildung: Näher bezeichnete Teile des Peritoneums', - en: '', - }, - { - key: 'C48.11', - de: '', - en: '', - }, - { - key: 'C48.13', - de: '', - en: '', - }, - { - key: 'C48.2', - de: 'Bösartige Neubildung: Peritoneum, nicht näher bezeichnet', - en: '', - }, - { - key: 'C48.8', - de: 'Bösartige Neubildung: Retroperitoneum und Peritoneum, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C49.0', - de: 'Bösartige Neubildung: Bindegewebe und andere Weichteilgewebe des Kopfes, des Gesichtes und des Halses', - en: '', - }, - { - key: 'C49.01', - de: '', - en: '', - }, - { - key: 'C49.02', - de: '', - en: '', - }, - { - key: 'C49.03', - de: '', - en: '', - }, - { - key: 'C49.04', - de: '', - en: '', - }, - { - key: 'C49.06', - de: '', - en: '', - }, - { - key: 'C49.07', - de: '', - en: '', - }, - { - key: 'C49.1', - de: 'Bösartige Neubildung: Bindegewebe und andere Weichteilgewebe der oberen Extremität, einschließlich Schulter', - en: '', - }, - { - key: 'C49.11', - de: '', - en: '', - }, - { - key: 'C49.12', - de: '', - en: '', - }, - { - key: 'C49.13', - de: '', - en: '', - }, - { - key: 'C49.15', - de: '', - en: '', - }, - { - key: 'C49.16', - de: '', - en: '', - }, - { - key: 'C49.17', - de: '', - en: '', - }, - { - key: 'C49.18', - de: '', - en: '', - }, - { - key: 'C49.2', - de: 'Bösartige Neubildung: Bindegewebe und andere Weichteilgewebe der unteren Extremität, einschließlich Hüfte', - en: '', - }, - { - key: 'C49.21', - de: '', - en: '', - }, - { - key: 'C49.22', - de: '', - en: '', - }, - { - key: 'C49.23', - de: '', - en: '', - }, - { - key: 'C49.24', - de: '', - en: '', - }, - { - key: 'C49.25', - de: '', - en: '', - }, - { - key: 'C49.26', - de: '', - en: '', - }, - { - key: 'C49.27', - de: '', - en: '', - }, - { - key: 'C49.28', - de: '', - en: '', - }, - { - key: 'C49.3', - de: 'Bösartige Neubildung: Bindegewebe und andere Weichteilgewebe des Thorax', - en: '', - }, - { - key: 'C49.32', - de: '', - en: '', - }, - { - key: 'C49.33', - de: '', - en: '', - }, - { - key: 'C49.34', - de: '', - en: '', - }, - { - key: 'C49.36', - de: '', - en: '', - }, - { - key: 'C49.37', - de: '', - en: '', - }, - { - key: 'C49.4', - de: 'Bösartige Neubildung: Bindegewebe und andere Weichteilgewebe des Abdomens', - en: '', - }, - { - key: 'C49.42', - de: '', - en: '', - }, - { - key: 'C49.46', - de: '', - en: '', - }, - { - key: 'C49.5', - de: 'Bösartige Neubildung: Bindegewebe und andere Weichteilgewebe des Beckens', - en: '', - }, - { - key: 'C49.54', - de: '', - en: '', - }, - { - key: 'C49.57', - de: '', - en: '', - }, - { - key: 'C49.6', - de: 'Bösartige Neubildung: Bindegewebe und andere Weichteilgewebe des Rumpfes, nicht näher bezeichnet', - en: '', - }, - { - key: 'C49.61', - de: '', - en: '', - }, - { - key: 'C49.62', - de: '', - en: '', - }, - { - key: 'C49.63', - de: '', - en: '', - }, - { - key: 'C49.8', - de: 'Bösartige Neubildung: Bindegewebe und andere Weichteilgewebe, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C49.9', - de: 'Bösartige Neubildung: Bindegewebe und andere Weichteilgewebe, nicht näher bezeichnet', - en: '', - }, - { - key: 'C49.98', - de: '', - en: '', - }, - { - key: 'C50.0', - de: 'Bösartige Neubildung: Brustwarze und Warzenhof', - en: '', - }, - { - key: 'C50.1', - de: 'Bösartige Neubildung: Zentraler Drüsenkörper der Brustdrüse', - en: '', - }, - { - key: 'C50.2', - de: 'Bösartige Neubildung: Oberer innerer Quadrant der Brustdrüse', - en: '', - }, - { - key: 'C50.3', - de: 'Bösartige Neubildung: Unterer innerer Quadrant der Brustdrüse', - en: '', - }, - { - key: 'C50.4', - de: 'Bösartige Neubildung: Oberer äußerer Quadrant der Brustdrüse', - en: '', - }, - { - key: 'C50.5', - de: 'Bösartige Neubildung: Unterer äußerer Quadrant der Brustdrüse', - en: '', - }, - { - key: 'C50.6', - de: 'Bösartige Neubildung: Recessus axillaris der Brustdrüse', - en: '', - }, - { - key: 'C50.8', - de: 'Bösartige Neubildung: Brustdrüse, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C50.9', - de: 'Bösartige Neubildung: Brustdrüse, nicht näher bezeichnet', - en: '', - }, - { - key: 'C51.0', - de: 'Bösartige Neubildung der Vulva: Labium majus', - en: '', - }, - { - key: 'C51.1', - de: 'Bösartige Neubildung der Vulva: Labium minus', - en: '', - }, - { - key: 'C51.2', - de: 'Bösartige Neubildung der Vulva: Klitoris', - en: '', - }, - { - key: 'C51.8', - de: 'Bösartige Neubildung: Vulva, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C51.9', - de: 'Bösartige Neubildung: Vulva, nicht näher bezeichnet', - en: '', - }, - { - key: 'C52.9', - de: '', - en: '', - }, - { - key: 'C52.91', - de: '', - en: '', - }, - { - key: 'C52.93', - de: '', - en: '', - }, - { - key: 'C52.94', - de: '', - en: '', - }, - { - key: 'C52.95', - de: '', - en: '', - }, - { - key: 'C53.0', - de: 'Bösartige Neubildung: Endozervix', - en: '', - }, - { - key: 'C53.01', - de: '', - en: '', - }, - { - key: 'C53.1', - de: 'Bösartige Neubildung: Ektozervix', - en: '', - }, - { - key: 'C53.11', - de: '', - en: '', - }, - { - key: 'C53.12', - de: '', - en: '', - }, - { - key: 'C53.8', - de: 'Bösartige Neubildung: Cervix uteri, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C53.9', - de: 'Bösartige Neubildung: Cervix uteri, nicht näher bezeichnet', - en: '', - }, - { - key: 'C54.0', - de: 'Bösartige Neubildung: Isthmus uteri', - en: '', - }, - { - key: 'C54.1', - de: 'Bösartige Neubildung: Endometrium', - en: '', - }, - { - key: 'C54.2', - de: 'Bösartige Neubildung: Myometrium', - en: '', - }, - { - key: 'C54.3', - de: 'Bösartige Neubildung: Fundus uteri', - en: '', - }, - { - key: 'C54.8', - de: 'Bösartige Neubildung: Corpus uteri, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C54.9', - de: 'Bösartige Neubildung: Corpus uteri, nicht näher bezeichnet', - en: '', - }, - { - key: 'C55.9', - de: '', - en: '', - }, - { - key: 'C56.9', - de: '', - en: '', - }, - { - key: 'C57.0', - de: 'Bösartige Neubildung: Tuba uterina [Falloppio]', - en: '', - }, - { - key: 'C57.1', - de: 'Bösartige Neubildung: Lig. latum uteri', - en: '', - }, - { - key: 'C57.4', - de: 'Bösartige Neubildung: Uterine Adnexe, nicht näher bezeichnet', - en: '', - }, - { - key: 'C57.9', - de: 'Bösartige Neubildung: Weibliches Genitalorgan, nicht näher bezeichnet', - en: '', - }, - { - key: 'C60.0', - de: 'Bösartige Neubildung: Praeputium penis', - en: '', - }, - { - key: 'C60.1', - de: 'Bösartige Neubildung: Glans penis', - en: '', - }, - { - key: 'C60.2', - de: 'Bösartige Neubildung: Penisschaft', - en: '', - }, - { - key: 'C60.8', - de: 'Bösartige Neubildung: Penis, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C60.9', - de: 'Bösartige Neubildung: Penis, nicht näher bezeichnet', - en: '', - }, - { - key: 'C61.0', - de: '', - en: '', - }, - { - key: 'C61.9', - de: '', - en: '', - }, - { - key: 'C61.91', - de: '', - en: '', - }, - { - key: 'C61.92', - de: '', - en: '', - }, - { - key: 'C61.94', - de: '', - en: '', - }, - { - key: 'C62.1', - de: 'Bösartige Neubildung: Deszendierter Hoden', - en: '', - }, - { - key: 'C62.9', - de: 'Bösartige Neubildung: Hoden, nicht näher bezeichnet', - en: '', - }, - { - key: 'C63.0', - de: 'Bösartige Neubildung: Nebenhoden [Epididymis]', - en: '', - }, - { - key: 'C63.1', - de: 'Bösartige Neubildung: Samenstrang', - en: '', - }, - { - key: 'C63.2', - de: 'Bösartige Neubildung: Skrotum', - en: '', - }, - { - key: 'C64.9', - de: '', - en: '', - }, - { - key: 'C64.91', - de: '', - en: '', - }, - { - key: 'C64.92', - de: '', - en: '', - }, - { - key: 'C64.93', - de: '', - en: '', - }, - { - key: 'C65.9', - de: '', - en: '', - }, - { - key: 'C65.91', - de: '', - en: '', - }, - { - key: 'C66.9', - de: '', - en: '', - }, - { - key: 'C67.0', - de: 'Bösartige Neubildung: Trigonum vesicae', - en: '', - }, - { - key: 'C67.1', - de: 'Bösartige Neubildung: Apex vesicae', - en: '', - }, - { - key: 'C67.2', - de: 'Bösartige Neubildung: Laterale Harnblasenwand', - en: '', - }, - { - key: 'C67.3', - de: 'Bösartige Neubildung: Vordere Harnblasenwand', - en: '', - }, - { - key: 'C67.4', - de: 'Bösartige Neubildung: Hintere Harnblasenwand', - en: '', - }, - { - key: 'C67.5', - de: 'Bösartige Neubildung: Harnblasenhals', - en: '', - }, - { - key: 'C67.6', - de: 'Bösartige Neubildung: Ostium ureteris', - en: '', - }, - { - key: 'C67.7', - de: 'Bösartige Neubildung: Urachus', - en: '', - }, - { - key: 'C67.8', - de: 'Bösartige Neubildung: Harnblase, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C67.9', - de: 'Bösartige Neubildung: Harnblase, nicht näher bezeichnet', - en: '', - }, - { - key: 'C68.0', - de: 'Bösartige Neubildung: Urethra', - en: '', - }, - { - key: 'C68.8', - de: 'Bösartige Neubildung: Harnorgane, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C68.9', - de: 'Bösartige Neubildung: Harnorgan, nicht näher bezeichnet', - en: '', - }, - { - key: 'C69.0', - de: 'Bösartige Neubildung: Konjunktiva', - en: '', - }, - { - key: 'C69.01', - de: '', - en: '', - }, - { - key: 'C69.2', - de: 'Bösartige Neubildung: Retina', - en: '', - }, - { - key: 'C69.3', - de: 'Bösartige Neubildung: Chorioidea', - en: '', - }, - { - key: 'C69.4', - de: 'Bösartige Neubildung: Ziliarkörper', - en: '', - }, - { - key: 'C69.41', - de: '', - en: '', - }, - { - key: 'C69.43', - de: '', - en: '', - }, - { - key: 'C69.5', - de: 'Bösartige Neubildung: Tränendrüse und Tränenwege', - en: '', - }, - { - key: 'C69.53', - de: '', - en: '', - }, - { - key: 'C69.6', - de: 'Bösartige Neubildung: Orbita', - en: '', - }, - { - key: 'C69.61', - de: '', - en: '', - }, - { - key: 'C69.8', - de: 'Bösartige Neubildung: Auge und Augenanhangsgebilde, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C69.9', - de: 'Bösartige Neubildung: Auge, nicht näher bezeichnet', - en: '', - }, - { - key: 'C70.0', - de: 'Bösartige Neubildung: Hirnhäute', - en: '', - }, - { - key: 'C70.01', - de: '', - en: '', - }, - { - key: 'C70.02', - de: '', - en: '', - }, - { - key: 'C70.04', - de: '', - en: '', - }, - { - key: 'C70.06', - de: '', - en: '', - }, - { - key: 'C70.1', - de: 'Bösartige Neubildung: Rückenmarkhäute', - en: '', - }, - { - key: 'C70.11', - de: '', - en: '', - }, - { - key: 'C70.12', - de: '', - en: '', - }, - { - key: 'C70.13', - de: '', - en: '', - }, - { - key: 'C70.9', - de: 'Bösartige Neubildung: Meningen, nicht näher bezeichnet', - en: '', - }, - { - key: 'C71.0', - de: 'Bösartige Neubildung: Zerebrum, ausgenommen Hirnlappen und Ventrikel', - en: '', - }, - { - key: 'C71.01', - de: '', - en: '', - }, - { - key: 'C71.03', - de: '', - en: '', - }, - { - key: 'C71.04', - de: '', - en: '', - }, - { - key: 'C71.05', - de: '', - en: '', - }, - { - key: 'C71.06', - de: '', - en: '', - }, - { - key: 'C71.07', - de: '', - en: '', - }, - { - key: 'C71.1', - de: 'Bösartige Neubildung: Frontallappen', - en: '', - }, - { - key: 'C71.2', - de: 'Bösartige Neubildung: Temporallappen', - en: '', - }, - { - key: 'C71.21', - de: '', - en: '', - }, - { - key: 'C71.3', - de: 'Bösartige Neubildung: Parietallappen', - en: '', - }, - { - key: 'C71.4', - de: 'Bösartige Neubildung: Okzipitallappen', - en: '', - }, - { - key: 'C71.5', - de: 'Bösartige Neubildung: Hirnventrikel', - en: '', - }, - { - key: 'C71.51', - de: '', - en: '', - }, - { - key: 'C71.53', - de: '', - en: '', - }, - { - key: 'C71.56', - de: '', - en: '', - }, - { - key: 'C71.6', - de: 'Bösartige Neubildung: Zerebellum', - en: '', - }, - { - key: 'C71.61', - de: '', - en: '', - }, - { - key: 'C71.63', - de: '', - en: '', - }, - { - key: 'C71.64', - de: '', - en: '', - }, - { - key: 'C71.65', - de: '', - en: '', - }, - { - key: 'C71.7', - de: 'Bösartige Neubildung: Hirnstamm', - en: '', - }, - { - key: 'C71.71', - de: '', - en: '', - }, - { - key: 'C71.72', - de: '', - en: '', - }, - { - key: 'C71.73', - de: '', - en: '', - }, - { - key: 'C71.76', - de: '', - en: '', - }, - { - key: 'C71.77', - de: '', - en: '', - }, - { - key: 'C71.8', - de: 'Bösartige Neubildung: Gehirn, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C71.9', - de: 'Bösartige Neubildung: Gehirn, nicht näher bezeichnet', - en: '', - }, - { - key: 'C72.0', - de: 'Bösartige Neubildung: Rückenmark', - en: '', - }, - { - key: 'C72.01', - de: '', - en: '', - }, - { - key: 'C72.02', - de: '', - en: '', - }, - { - key: 'C72.03', - de: '', - en: '', - }, - { - key: 'C72.04', - de: '', - en: '', - }, - { - key: 'C72.05', - de: '', - en: '', - }, - { - key: 'C72.1', - de: 'Bösartige Neubildung: Cauda equina', - en: '', - }, - { - key: 'C72.2', - de: 'Bösartige Neubildung: Nn. olfactorii [I. Hirnnerv]', - en: '', - }, - { - key: 'C72.3', - de: 'Bösartige Neubildung: N. opticus [II. Hirnnerv]', - en: '', - }, - { - key: 'C72.4', - de: 'Bösartige Neubildung: N. vestibulocochlearis [VIII. Hirnnerv]', - en: '', - }, - { - key: 'C72.5', - de: 'Bösartige Neubildung: Sonstige und nicht näher bezeichnete Hirnnerven', - en: '', - }, - { - key: 'C72.51', - de: '', - en: '', - }, - { - key: 'C72.52', - de: '', - en: '', - }, - { - key: 'C72.53', - de: '', - en: '', - }, - { - key: 'C72.54', - de: '', - en: '', - }, - { - key: 'C72.56', - de: '', - en: '', - }, - { - key: 'C72.57', - de: '', - en: '', - }, - { - key: 'C72.8', - de: 'Bösartige Neubildung: Gehirn und andere Teile des Zentralnervensystems, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C72.9', - de: 'Bösartige Neubildung: Zentralnervensystem, nicht näher bezeichnet', - en: '', - }, - { - key: 'C73.9', - de: '', - en: '', - }, - { - key: 'C73.91', - de: '', - en: '', - }, - { - key: 'C73.92', - de: '', - en: '', - }, - { - key: 'C73.93', - de: '', - en: '', - }, - { - key: 'C74.0', - de: 'Bösartige Neubildung: Nebennierenrinde', - en: '', - }, - { - key: 'C74.1', - de: 'Bösartige Neubildung: Nebennierenmark', - en: '', - }, - { - key: 'C74.9', - de: 'Bösartige Neubildung: Nebenniere, nicht näher bezeichnet', - en: '', - }, - { - key: 'C75.1', - de: 'Bösartige Neubildung: Hypophyse', - en: '', - }, - { - key: 'C75.11', - de: '', - en: '', - }, - { - key: 'C75.13', - de: '', - en: '', - }, - { - key: 'C75.2', - de: 'Bösartige Neubildung: Ductus craniopharyngealis', - en: '', - }, - { - key: 'C75.3', - de: 'Bösartige Neubildung: Epiphyse [Glandula pinealis] [Zirbeldrüse]', - en: '', - }, - { - key: 'C75.4', - de: 'Bösartige Neubildung: Glomus caroticum', - en: '', - }, - { - key: 'C75.5', - de: 'Bösartige Neubildung: Glomus aorticum und sonstige Paraganglien', - en: '', - }, - { - key: 'C75.51', - de: '', - en: '', - }, - { - key: 'C75.53', - de: '', - en: '', - }, - { - key: 'C76.0', - de: 'Bösartige Neubildung ungenau bezeichneter Lokalisationen: Kopf, Gesicht und Hals', - en: '', - }, - { - key: 'C76.1', - de: 'Bösartige Neubildung ungenau bezeichneter Lokalisationen: Thorax', - en: '', - }, - { - key: 'C76.2', - de: 'Bösartige Neubildung ungenau bezeichneter Lokalisationen: Abdomen', - en: '', - }, - { - key: 'C76.3', - de: 'Bösartige Neubildung ungenau bezeichneter Lokalisationen: Becken', - en: '', - }, - { - key: 'C76.4', - de: 'Bösartige Neubildung ungenau bezeichneter Lokalisationen: Obere Extremität', - en: '', - }, - { - key: 'C76.5', - de: 'Bösartige Neubildung ungenau bezeichneter Lokalisationen: Untere Extremität', - en: '', - }, - { - key: 'C76.7', - de: 'Bösartige Neubildung: Sonstige ungenau bezeichnete Lokalisationen', - en: '', - }, - { - key: 'C76.8', - de: 'Bösartige Neubildung: Sonstige und ungenau bezeichnete Lokalisationen, mehrere Teilbereiche überlappend', - en: '', - }, - { - key: 'C77.0', - de: 'Sekundäre und nicht näher bezeichnete bösartige Neubildung: Lymphknoten des Kopfes, des Gesichtes und des Halses', - en: '', - }, - { - key: 'C77.02', - de: '', - en: '', - }, - { - key: 'C77.03', - de: '', - en: '', - }, - { - key: 'C77.04', - de: '', - en: '', - }, - { - key: 'C77.07', - de: '', - en: '', - }, - { - key: 'C77.09', - de: '', - en: '', - }, - { - key: 'C77.1', - de: 'Sekundäre und nicht näher bezeichnete bösartige Neubildung: Intrathorakale Lymphknoten', - en: '', - }, - { - key: 'C77.12', - de: '', - en: '', - }, - { - key: 'C77.14', - de: '', - en: '', - }, - { - key: 'C77.15', - de: '', - en: '', - }, - { - key: 'C77.19', - de: '', - en: '', - }, - { - key: 'C77.2', - de: 'Sekundäre und nicht näher bezeichnete bösartige Neubildung: Intraabdominale Lymphknoten', - en: '', - }, - { - key: 'C77.21', - de: '', - en: '', - }, - { - key: 'C77.24', - de: '', - en: '', - }, - { - key: 'C77.25', - de: '', - en: '', - }, - { - key: 'C77.26', - de: '', - en: '', - }, - { - key: 'C77.28', - de: '', - en: '', - }, - { - key: 'C77.29', - de: '', - en: '', - }, - { - key: 'C77.3', - de: 'Sekundäre und nicht näher bezeichnete bösartige Neubildung: Axilläre Lymphknoten und Lymphknoten der oberen Extremität', - en: '', - }, - { - key: 'C77.35', - de: '', - en: '', - }, - { - key: 'C77.4', - de: 'Sekundäre und nicht näher bezeichnete bösartige Neubildung: Inguinale Lymphknoten und Lymphknoten der unteren Extremität', - en: '', - }, - { - key: 'C77.41', - de: '', - en: '', - }, - { - key: 'C77.48', - de: '', - en: '', - }, - { - key: 'C77.5', - de: 'Sekundäre und nicht näher bezeichnete bösartige Neubildung: Intrapelvine Lymphknoten', - en: '', - }, - { - key: 'C77.53', - de: '', - en: '', - }, - { - key: 'C77.58', - de: '', - en: '', - }, - { - key: 'C77.8', - de: 'Sekundäre und nicht näher bezeichnete bösartige Neubildung: Lymphknoten mehrerer Regionen', - en: '', - }, - { - key: 'C77.9', - de: 'Sekundäre und nicht näher bezeichnete bösartige Neubildung: Lymphknoten, nicht näher bezeichnet', - en: '', - }, - { - key: 'C79.3', - de: 'Sekundäre bösartige Neubildung des Gehirns und der Hirnhäute', - en: '', - }, - { - key: 'C80.0', - de: 'Bösartige Neubildung, primäre Lokalisation unbekannt, so bezeichnet', - en: '', - }, - { - key: 'C80.9', - de: 'Bösartige Neubildung, nicht näher bezeichnet', - en: '', - }, - { - key: 'C81.0', - de: 'Noduläres lymphozytenprädominantes Hodgkin-Lymphom', - en: '', - }, - { - key: 'C81.1', - de: 'Nodulär-sklerosierendes (klassisches) Hodgkin-Lymphom', - en: '', - }, - { - key: 'C81.2', - de: 'Gemischtzelliges (klassisches) Hodgkin-Lymphom', - en: '', - }, - { - key: 'C81.4', - de: 'Lymphozytenreiches (klassisches) Hodgkin-Lymphom', - en: '', - }, - { - key: 'C81.7', - de: 'Sonstige Typen des (klassischen) Hodgkin-Lymphoms', - en: '', - }, - { - key: 'C81.9', - de: 'Hodgkin-Lymphom, nicht näher bezeichnet', - en: '', - }, - { - key: 'C82.0', - de: 'Follikuläres Lymphom Grad I', - en: '', - }, - { - key: 'C82.1', - de: 'Follikuläres Lymphom Grad II', - en: '', - }, - { - key: 'C82.2', - de: 'Follikuläres Lymphom Grad III, nicht näher bezeichnet', - en: '', - }, - { - key: 'C82.3', - de: 'Follikuläres Lymphom Grad IIIa', - en: '', - }, - { - key: 'C82.4', - de: 'Follikuläres Lymphom Grad IIIb', - en: '', - }, - { - key: 'C82.6', - de: 'Kutanes Follikelzentrumslymphom', - en: '', - }, - { - key: 'C82.7', - de: 'Sonstige Typen des follikulären Lymphoms', - en: '', - }, - { - key: 'C82.9', - de: 'Follikuläres Lymphom, nicht näher bezeichnet', - en: '', - }, - { - key: 'C83.0', - de: 'Kleinzelliges B-Zell-Lymphom', - en: '', - }, - { - key: 'C83.1', - de: 'Mantelzell-Lymphom', - en: '', - }, - { - key: 'C83.3', - de: 'Diffuses großzelliges B-Zell-Lymphom', - en: '', - }, - { - key: 'C83.4', - de: '', - en: '', - }, - { - key: 'C83.5', - de: 'Lymphoblastisches Lymphom', - en: '', - }, - { - key: 'C83.7', - de: 'Burkitt-Lymphom', - en: '', - }, - { - key: 'C83.8', - de: 'Sonstige nicht follikuläre Lymphome', - en: '', - }, - { - key: 'C83.9', - de: 'Nicht follikuläres Lymphom, nicht näher bezeichnet', - en: '', - }, - { - key: 'C84.0', - de: 'Mycosis fungoides', - en: '', - }, - { - key: 'C84.2', - de: '', - en: '', - }, - { - key: 'C84.4', - de: 'Peripheres T-Zell-Lymphom, nicht spezifiziert', - en: '', - }, - { - key: 'C84.5', - de: 'Sonstige reifzellige T/NK-Zell-Lymphome', - en: '', - }, - { - key: 'C84.6', - de: 'Anaplastisches großzelliges Lymphom, ALK-positiv', - en: '', - }, - { - key: 'C84.8', - de: 'Kutanes T-Zell-Lymphom, nicht näher bezeichnet', - en: '', - }, - { - key: 'C85.1', - de: 'B-Zell-Lymphom, nicht näher bezeichnet', - en: '', - }, - { - key: 'C85.2', - de: 'Mediastinales (thymisches) großzelliges B-Zell-Lymphom', - en: '', - }, - { - key: 'C85.7', - de: 'Sonstige näher bezeichnete Typen des Non-Hodgkin-Lymphoms', - en: '', - }, - { - key: 'C85.9', - de: 'Non-Hodgkin-Lymphom, nicht näher bezeichnet', - en: '', - }, - { - key: 'C86.0', - de: 'Extranodales NK/T-Zell-Lymphom, nasaler Typ', - en: '', - }, - { - key: 'C86.3', - de: 'Subkutanes pannikulitisches T-Zell-Lymphom', - en: '', - }, - { - key: 'C86.4', - de: 'Blastisches NK-Zell-Lymphom', - en: '', - }, - { - key: 'C86.5', - de: 'Angioimmunoblastisches T-Zell-Lymphom', - en: '', - }, - { - key: 'C86.6', - de: 'Primäre kutane CD30-positive T-Zell-Proliferationen', - en: '', - }, - { - key: 'C88.00', - de: 'Makroglobulinämie Waldenström: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C88.3', - de: '', - en: '', - }, - { - key: 'C88.4', - de: '', - en: '', - }, - { - key: 'C88.40', - de: 'Extranodales Marginalzonen-B-Zell-Lymphom des Mukosa-assoziierten lymphatischen Gewebes [MALT-Lymphom]: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C88.41', - de: 'Extranodales Marginalzonen-B-Zell-Lymphom des Mukosa-assoziierten lymphatischen Gewebes [MALT-Lymphom]: In kompletter Remission', - en: '', - }, - { - key: 'C88.9', - de: '', - en: '', - }, - { - key: 'C90.0', - de: '', - en: '', - }, - { - key: 'C90.00', - de: 'Multiples Myelom: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C90.1', - de: '', - en: '', - }, - { - key: 'C90.10', - de: 'Plasmazellenleukämie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C90.2', - de: '', - en: '', - }, - { - key: 'C90.20', - de: 'Extramedulläres Plasmozytom: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C90.30', - de: 'Solitäres Plasmozytom: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C91.0', - de: '', - en: '', - }, - { - key: 'C91.00', - de: 'Akute lymphatische Leukämie [ALL]: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C91.01', - de: 'Akute lymphatische Leukämie [ALL]: In kompletter Remission', - en: '', - }, - { - key: 'C91.1', - de: '', - en: '', - }, - { - key: 'C91.10', - de: 'Chronische lymphatische Leukämie vom B-Zell-Typ [CLL]: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C91.11', - de: 'Chronische lymphatische Leukämie vom B-Zell-Typ [CLL]: In kompletter Remission', - en: '', - }, - { - key: 'C91.30', - de: 'Prolymphozytäre Leukämie vom B-Zell-Typ: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C91.5', - de: '', - en: '', - }, - { - key: 'C91.50', - de: 'Adulte(s) T-Zell-Lymphom/Leukämie (HTLV-1-assoziiert): Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C91.70', - de: 'Sonstige lymphatische Leukämie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C92.0', - de: '', - en: '', - }, - { - key: 'C92.00', - de: 'Akute myeloblastische Leukämie [AML]: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C92.01', - de: 'Akute myeloblastische Leukämie [AML]: In kompletter Remission', - en: '', - }, - { - key: 'C92.1', - de: '', - en: '', - }, - { - key: 'C92.10', - de: 'Chronische myeloische Leukämie [CML], BCR/ABL-positiv: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C92.50', - de: 'Akute myelomonozytäre Leukämie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C92.60', - de: 'Akute myeloische Leukämie mit 11q23-Abnormität: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C92.80', - de: 'Akute myeloische Leukämie mit multilineärer Dysplasie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C92.90', - de: 'Myeloische Leukämie, nicht näher bezeichnet: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C93.00', - de: 'Akute Monoblasten-/Monozytenleukämie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C93.10', - de: 'Chronische myelomonozytäre Leukämie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C94.00', - de: 'Akute Erythroleukämie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C94.20', - de: 'Akute Megakaryoblastenleukämie: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C94.40', - de: 'Akute Panmyelose mit Myelofibrose: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C95.0', - de: '', - en: '', - }, - { - key: 'C95.00', - de: 'Akute Leukämie nicht näher bezeichneten Zelltyps: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C95.70', - de: 'Sonstige Leukämie nicht näher bezeichneten Zelltyps: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C95.90', - de: 'Leukämie, nicht näher bezeichnet: Ohne Angabe einer kompletten Remission', - en: '', - }, - { - key: 'C96.1', - de: '', - en: '', - }, - { - key: 'C96.4', - de: 'Sarkom der dendritischen Zellen (akzessorische Zellen)', - en: '', - }, - { - key: 'C96.6', - de: 'Unifokale Langerhans-Zell-Histiozytose', - en: '', - }, - { - key: 'C96.7', - de: 'Sonstige näher bezeichnete bösartige Neubildungen des lymphatischen, blutbildenden und verwandten Gewebes', - en: '', - }, - { - key: 'C96.9', - de: 'Bösartige Neubildung des lymphatischen, blutbildenden und verwandten Gewebes, nicht näher bezeichnet', - en: '', - }, + { + key: "C00", + en: "", + de: "Malignant neoplasm of lip", + }, + { + key: "C00.0", + en: "", + de: "Malignant neoplasm: External upper lip", + }, + { + key: "C00.1", + en: "", + de: "Malignant neoplasm: External lower lip", + }, + { + key: "C00.2", + en: "", + de: "Malignant neoplasm: External lip, unspecified", + }, + { + key: "C00.3", + en: "", + de: "Malignant neoplasm: Upper lip, inner aspect", + }, + { + key: "C00.4", + en: "", + de: "Malignant neoplasm: Lower lip, inner aspect", + }, + { + key: "C00.5", + en: "", + de: "Malignant neoplasm: Lip, unspecified, inner aspect", + }, + { + key: "C00.6", + en: "", + de: "Malignant neoplasm: Commissure of lip", + }, + { + key: "C00.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of lip", + }, + { + key: "C00.9", + en: "", + de: "Malignant neoplasm: Lip, unspecified", + }, + { + key: "C01", + en: "", + de: "Malignant neoplasm of base of tongue", + }, + { + key: "C02", + en: "", + de: "Malignant neoplasm of other and unspecified parts of tongue", + }, + { + key: "C02.0", + en: "", + de: "Malignant neoplasm: Dorsal surface of tongue", + }, + { + key: "C02.1", + en: "", + de: "Malignant neoplasm: Border of tongue", + }, + { + key: "C02.2", + en: "", + de: "Malignant neoplasm: Ventral surface of tongue", + }, + { + key: "C02.3", + en: "", + de: "Malignant neoplasm: Anterior two-thirds of tongue, part unspecified", + }, + { + key: "C02.4", + en: "", + de: "Malignant neoplasm: Lingual tonsil", + }, + { + key: "C02.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of tongue", + }, + { + key: "C02.9", + en: "", + de: "Malignant neoplasm: Tongue, unspecified", + }, + { + key: "C03", + en: "", + de: "Malignant neoplasm of gum", + }, + { + key: "C03.0", + en: "", + de: "Malignant neoplasm: Upper gum", + }, + { + key: "C03.1", + en: "", + de: "Malignant neoplasm: Lower gum", + }, + { + key: "C03.9", + en: "", + de: "Malignant neoplasm: Gum, unspecified", + }, + { + key: "C04", + en: "", + de: "Malignant neoplasm of floor of mouth", + }, + { + key: "C04.0", + en: "", + de: "Malignant neoplasm: Anterior floor of mouth", + }, + { + key: "C04.1", + en: "", + de: "Malignant neoplasm: Lateral floor of mouth", + }, + { + key: "C04.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of floor of mouth", + }, + { + key: "C04.9", + en: "", + de: "Malignant neoplasm: Floor of mouth, unspecified", + }, + { + key: "C05", + en: "", + de: "Malignant neoplasm of palate", + }, + { + key: "C05.0", + en: "", + de: "Malignant neoplasm: Hard palate", + }, + { + key: "C05.1", + en: "", + de: "Malignant neoplasm: Soft palate", + }, + { + key: "C05.2", + en: "", + de: "Malignant neoplasm: Uvula", + }, + { + key: "C05.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of palate", + }, + { + key: "C05.9", + en: "", + de: "Malignant neoplasm: Palate, unspecified", + }, + { + key: "C06", + en: "", + de: "Malignant neoplasm of other and unspecified parts of mouth", + }, + { + key: "C06.0", + en: "", + de: "Malignant neoplasm: Cheek mucosa", + }, + { + key: "C06.1", + en: "", + de: "Malignant neoplasm: Vestibule of mouth", + }, + { + key: "C06.2", + en: "", + de: "Malignant neoplasm: Retromolar area", + }, + { + key: "C06.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of other and unspecified parts of mouth", + }, + { + key: "C06.9", + en: "", + de: "Malignant neoplasm: Mouth, unspecified", + }, + { + key: "C07", + en: "", + de: "Malignant neoplasm of parotid gland", + }, + { + key: "C08", + en: "", + de: "Malignant neoplasm of other and unspecified major salivary glands", + }, + { + key: "C08.0", + en: "", + de: "Malignant neoplasm: Submandibular gland", + }, + { + key: "C08.1", + en: "", + de: "Malignant neoplasm: Sublingual gland", + }, + { + key: "C08.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of major salivary glands", + }, + { + key: "C08.9", + en: "", + de: "Malignant neoplasm: Major salivary gland, unspecified", + }, + { + key: "C09", + en: "", + de: "Malignant neoplasm of tonsil", + }, + { + key: "C09.0", + en: "", + de: "Malignant neoplasm: Tonsillar fossa", + }, + { + key: "C09.1", + en: "", + de: "Malignant neoplasm: Tonsillar pillar (anterior)(posterior)", + }, + { + key: "C09.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of tonsil", + }, + { + key: "C09.9", + en: "", + de: "Malignant neoplasm: Tonsil, unspecified", + }, + { + key: "C10", + en: "", + de: "Malignant neoplasm of oropharynx", + }, + { + key: "C10.0", + en: "", + de: "Malignant neoplasm: Vallecula", + }, + { + key: "C10.1", + en: "", + de: "Malignant neoplasm: Anterior surface of epiglottis", + }, + { + key: "C10.2", + en: "", + de: "Malignant neoplasm: Lateral wall of oropharynx", + }, + { + key: "C10.3", + en: "", + de: "Malignant neoplasm: Posterior wall of oropharynx", + }, + { + key: "C10.4", + en: "", + de: "Malignant neoplasm: Branchial cleft", + }, + { + key: "C10.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of oropharynx", + }, + { + key: "C10.9", + en: "", + de: "Malignant neoplasm: Oropharynx, unspecified", + }, + { + key: "C11", + en: "", + de: "Malignant neoplasm of nasopharynx", + }, + { + key: "C11.0", + en: "", + de: "Malignant neoplasm: Superior wall of nasopharynx", + }, + { + key: "C11.1", + en: "", + de: "Malignant neoplasm: Posterior wall of nasopharynx", + }, + { + key: "C11.2", + en: "", + de: "Malignant neoplasm: Lateral wall of nasopharynx", + }, + { + key: "C11.3", + en: "", + de: "Malignant neoplasm: Anterior wall of nasopharynx", + }, + { + key: "C11.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of nasopharynx", + }, + { + key: "C11.9", + en: "", + de: "Malignant neoplasm: Nasopharynx, unspecified", + }, + { + key: "C12", + en: "", + de: "Malignant neoplasm of piriform sinus", + }, + { + key: "C13", + en: "", + de: "Malignant neoplasm of hypopharynx", + }, + { + key: "C13.0", + en: "", + de: "Malignant neoplasm: Postcricoid region", + }, + { + key: "C13.1", + en: "", + de: "Malignant neoplasm: Aryepiglottic fold, hypopharyngeal aspect", + }, + { + key: "C13.2", + en: "", + de: "Malignant neoplasm: Posterior wall of hypopharynx", + }, + { + key: "C13.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of hypopharynx", + }, + { + key: "C13.9", + en: "", + de: "Malignant neoplasm: Hypopharynx, unspecified", + }, + { + key: "C14", + en: "", + de: "Malignant neoplasm of other and ill-defined sites in the lip, oral cavity and pharynx", + }, + { + key: "C14.0", + en: "", + de: "Malignant neoplasm: Pharynx, unspecified", + }, + { + key: "C14.2", + en: "", + de: "Malignant neoplasm: Waldeyer ring", + }, + { + key: "C14.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of lip, oral cavity and pharynx", + }, + { + key: "C15", + en: "", + de: "Malignant neoplasm of oesophagus", + }, + { + key: "C15.0", + en: "", + de: "Malignant neoplasm: Cervical part of oesophagus", + }, + { + key: "C15.1", + en: "", + de: "Malignant neoplasm: Thoracic part of oesophagus", + }, + { + key: "C15.2", + en: "", + de: "Malignant neoplasm: Abdominal part of oesophagus", + }, + { + key: "C15.3", + en: "", + de: "Malignant neoplasm: Upper third of oesophagus", + }, + { + key: "C15.4", + en: "", + de: "Malignant neoplasm: Middle third of oesophagus", + }, + { + key: "C15.5", + en: "", + de: "Malignant neoplasm: Lower third of oesophagus", + }, + { + key: "C15.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of oesophagus", + }, + { + key: "C15.9", + en: "", + de: "Malignant neoplasm: Oesophagus, unspecified", + }, + { + key: "C16", + en: "", + de: "Malignant neoplasm of stomach", + }, + { + key: "C16.0", + en: "", + de: "Malignant neoplasm: Cardia", + }, + { + key: "C16.1", + en: "", + de: "Malignant neoplasm: Fundus of stomach", + }, + { + key: "C16.2", + en: "", + de: "Malignant neoplasm: Body of stomach", + }, + { + key: "C16.3", + en: "", + de: "Malignant neoplasm: Pyloric antrum", + }, + { + key: "C16.4", + en: "", + de: "Malignant neoplasm: Pylorus", + }, + { + key: "C16.5", + en: "", + de: "Malignant neoplasm: Lesser curvature of stomach, unspecified", + }, + { + key: "C16.6", + en: "", + de: "Malignant neoplasm: Greater curvature of stomach, unspecified", + }, + { + key: "C16.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of stomach", + }, + { + key: "C16.9", + en: "", + de: "Malignant neoplasm: Stomach, unspecified", + }, + { + key: "C17", + en: "", + de: "Malignant neoplasm of small intestine", + }, + { + key: "C17.0", + en: "", + de: "Malignant neoplasm: Duodenum", + }, + { + key: "C17.1", + en: "", + de: "Malignant neoplasm: Jejunum", + }, + { + key: "C17.2", + en: "", + de: "Malignant neoplasm: Ileum", + }, + { + key: "C17.3", + en: "", + de: "Malignant neoplasm: Meckel diverticulum", + }, + { + key: "C17.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of small intestine", + }, + { + key: "C17.9", + en: "", + de: "Malignant neoplasm: Small intestine, unspecified", + }, + { + key: "C18", + en: "", + de: "Malignant neoplasm of colon", + }, + { + key: "C18.0", + en: "", + de: "Malignant neoplasm: Caecum", + }, + { + key: "C18.1", + en: "", + de: "Malignant neoplasm: Appendix", + }, + { + key: "C18.2", + en: "", + de: "Malignant neoplasm: Ascending colon", + }, + { + key: "C18.3", + en: "", + de: "Malignant neoplasm: Hepatic flexure", + }, + { + key: "C18.4", + en: "", + de: "Malignant neoplasm: Transverse colon", + }, + { + key: "C18.5", + en: "", + de: "Malignant neoplasm: Splenic flexure", + }, + { + key: "C18.6", + en: "", + de: "Malignant neoplasm: Descending colon", + }, + { + key: "C18.7", + en: "", + de: "Malignant neoplasm: Sigmoid colon", + }, + { + key: "C18.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of colon", + }, + { + key: "C18.9", + en: "", + de: "Malignant neoplasm: Colon, unspecified", + }, + { + key: "C19", + en: "", + de: "Malignant neoplasm of rectosigmoid junction", + }, + { + key: "C20", + en: "", + de: "Malignant neoplasm of rectum", + }, + { + key: "C21", + en: "", + de: "Malignant neoplasm of anus and anal canal", + }, + { + key: "C21.0", + en: "", + de: "Malignant neoplasm: Anus, unspecified", + }, + { + key: "C21.1", + en: "", + de: "Malignant neoplasm: Anal canal", + }, + { + key: "C21.2", + en: "", + de: "Malignant neoplasm: Cloacogenic zone", + }, + { + key: "C21.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of rectum, anus and anal canal", + }, + { + key: "C22", + en: "", + de: "Malignant neoplasm of liver and intrahepatic bile ducts", + }, + { + key: "C22.0", + en: "", + de: "Malignant neoplasm: Liver cell carcinoma", + }, + { + key: "C22.1", + en: "", + de: "Malignant neoplasm: Intrahepatic bile duct carcinoma", + }, + { + key: "C22.2", + en: "", + de: "Malignant neoplasm: Hepatoblastoma", + }, + { + key: "C22.3", + en: "", + de: "Malignant neoplasm: Angiosarcoma of liver", + }, + { + key: "C22.4", + en: "", + de: "Malignant neoplasm: Other sarcomas of liver", + }, + { + key: "C22.7", + en: "", + de: "Malignant neoplasm: Other specified carcinomas of liver", + }, + { + key: "C22.9", + en: "", + de: "Malignant neoplasm: Liver, unspecified", + }, + { + key: "C23", + en: "", + de: "Malignant neoplasm of gallbladder", + }, + { + key: "C24", + en: "", + de: "Malignant neoplasm of other and unspecified parts of biliary tract", + }, + { + key: "C24.0", + en: "", + de: "Malignant neoplasm: Extrahepatic bile duct", + }, + { + key: "C24.1", + en: "", + de: "Malignant neoplasm: Ampulla of Vater", + }, + { + key: "C24.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of biliary tract", + }, + { + key: "C24.9", + en: "", + de: "Malignant neoplasm: Biliary tract, unspecified", + }, + { + key: "C25", + en: "", + de: "Malignant neoplasm of pancreas", + }, + { + key: "C25.0", + en: "", + de: "Malignant neoplasm: Head of pancreas", + }, + { + key: "C25.1", + en: "", + de: "Malignant neoplasm: Body of pancreas", + }, + { + key: "C25.2", + en: "", + de: "Malignant neoplasm: Tail of pancreas", + }, + { + key: "C25.3", + en: "", + de: "Malignant neoplasm: Pancreatic duct", + }, + { + key: "C25.4", + en: "", + de: "Malignant neoplasm: Endocrine pancreas", + }, + { + key: "C25.7", + en: "", + de: "Malignant neoplasm: Other parts of pancreas", + }, + { + key: "C25.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of pancreas", + }, + { + key: "C25.9", + en: "", + de: "Malignant neoplasm: Pancreas, unspecified", + }, + { + key: "C26", + en: "", + de: "Malignant neoplasm of other and ill-defined digestive organs", + }, + { + key: "C26.0", + en: "", + de: "Malignant neoplasm: Intestinal tract, part unspecified", + }, + { + key: "C26.1", + en: "", + de: "Malignant neoplasm: Spleen", + }, + { + key: "C26.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of digestive system", + }, + { + key: "C26.9", + en: "", + de: "Malignant neoplasm: Ill-defined sites within the digestive system", + }, + { + key: "C30", + en: "", + de: "Malignant neoplasm of nasal cavity and middle ear", + }, + { + key: "C30.0", + en: "", + de: "Malignant neoplasm: Nasal cavity", + }, + { + key: "C30.1", + en: "", + de: "Malignant neoplasm: Middle ear", + }, + { + key: "C31", + en: "", + de: "Malignant neoplasm of accessory sinuses", + }, + { + key: "C31.0", + en: "", + de: "Malignant neoplasm: Maxillary sinus", + }, + { + key: "C31.1", + en: "", + de: "Malignant neoplasm: Ethmoidal sinus", + }, + { + key: "C31.2", + en: "", + de: "Malignant neoplasm: Frontal sinus", + }, + { + key: "C31.3", + en: "", + de: "Malignant neoplasm: Sphenoidal sinus", + }, + { + key: "C31.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of accessory sinuses", + }, + { + key: "C31.9", + en: "", + de: "Malignant neoplasm: Accessory sinus, unspecified", + }, + { + key: "C32", + en: "", + de: "Malignant neoplasm of larynx", + }, + { + key: "C32.0", + en: "", + de: "Malignant neoplasm: Glottis", + }, + { + key: "C32.1", + en: "", + de: "Malignant neoplasm: Supraglottis", + }, + { + key: "C32.2", + en: "", + de: "Malignant neoplasm: Subglottis", + }, + { + key: "C32.3", + en: "", + de: "Malignant neoplasm: Laryngeal cartilage", + }, + { + key: "C32.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of larynx", + }, + { + key: "C32.9", + en: "", + de: "Malignant neoplasm: Larynx, unspecified", + }, + { + key: "C33", + en: "", + de: "Malignant neoplasm of trachea", + }, + { + key: "C34", + en: "", + de: "Malignant neoplasm of bronchus and lung", + }, + { + key: "C34.0", + en: "", + de: "Malignant neoplasm: Main bronchus", + }, + { + key: "C34.1", + en: "", + de: "Malignant neoplasm: Upper lobe, bronchus or lung", + }, + { + key: "C34.2", + en: "", + de: "Malignant neoplasm: Middle lobe, bronchus or lung", + }, + { + key: "C34.3", + en: "", + de: "Malignant neoplasm: Lower lobe, bronchus or lung", + }, + { + key: "C34.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of bronchus and lung", + }, + { + key: "C34.9", + en: "", + de: "Malignant neoplasm: Bronchus or lung, unspecified", + }, + { + key: "C37", + en: "", + de: "Malignant neoplasm of thymus", + }, + { + key: "C38", + en: "", + de: "Malignant neoplasm of heart, mediastinum and pleura", + }, + { + key: "C38.0", + en: "", + de: "Malignant neoplasm: Heart", + }, + { + key: "C38.1", + en: "", + de: "Malignant neoplasm: Anterior mediastinum", + }, + { + key: "C38.2", + en: "", + de: "Malignant neoplasm: Posterior mediastinum", + }, + { + key: "C38.3", + en: "", + de: "Malignant neoplasm: Mediastinum, part unspecified", + }, + { + key: "C38.4", + en: "", + de: "Malignant neoplasm: Pleura", + }, + { + key: "C38.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of heart, mediastinum and pleura", + }, + { + key: "C39", + en: "", + de: "Malignant neoplasm of other and ill-defined sites in the respiratory system and intrathoracic organs", + }, + { + key: "C39.0", + en: "", + de: "Malignant neoplasm: Upper respiratory tract, part unspecified", + }, + { + key: "C39.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of respiratory and intrathoracic organs", + }, + { + key: "C39.9", + en: "", + de: "Malignant neoplasm: Ill-defined sites within the respiratory system", + }, + { + key: "C40", + en: "", + de: "Malignant neoplasm of bone and articular cartilage of limbs", + }, + { + key: "C40.0", + en: "", + de: "Malignant neoplasm: Scapula and long bones of upper limb", + }, + { + key: "C40.1", + en: "", + de: "Malignant neoplasm: Short bones of upper limb", + }, + { + key: "C40.2", + en: "", + de: "Malignant neoplasm: Long bones of lower limb", + }, + { + key: "C40.3", + en: "", + de: "Malignant neoplasm: Short bones of lower limb", + }, + { + key: "C40.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of bone and articular cartilage of limbs", + }, + { + key: "C40.9", + en: "", + de: "Malignant neoplasm: Bone and articular cartilage of limb, unspecified", + }, + { + key: "C41", + en: "", + de: "Malignant neoplasm of bone and articular cartilage of other and unspecified sites", + }, + { + key: "C41.0", + en: "", + de: "Malignant neoplasm: Bones of skull and face", + }, + { + key: "C41.1", + en: "", + de: "Malignant neoplasm: Mandible", + }, + { + key: "C41.2", + en: "", + de: "Malignant neoplasm: Vertebral column", + }, + { + key: "C41.3", + en: "", + de: "Malignant neoplasm: Ribs, sternum and clavicle", + }, + { + key: "C41.4", + en: "", + de: "Malignant neoplasm: Pelvic bones, sacrum and coccyx", + }, + { + key: "C41.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of bone and articular cartilage", + }, + { + key: "C41.9", + en: "", + de: "Malignant neoplasm: Bone and articular cartilage, unspecified", + }, + { + key: "C43", + en: "", + de: "Malignant melanoma of skin", + }, + { + key: "C43.0", + en: "", + de: "Malignant neoplasm: Malignant melanoma of lip", + }, + { + key: "C43.1", + en: "", + de: "Malignant neoplasm: Malignant melanoma of eyelid, including canthus", + }, + { + key: "C43.2", + en: "", + de: "Malignant neoplasm: Malignant melanoma of ear and external auricular canal", + }, + { + key: "C43.3", + en: "", + de: "Malignant neoplasm: Malignant melanoma of other and unspecified parts of face", + }, + { + key: "C43.4", + en: "", + de: "Malignant neoplasm: Malignant melanoma of scalp and neck", + }, + { + key: "C43.5", + en: "", + de: "Malignant neoplasm: Malignant melanoma of trunk", + }, + { + key: "C43.6", + en: "", + de: "Malignant neoplasm: Malignant melanoma of upper limb, including shoulder", + }, + { + key: "C43.7", + en: "", + de: "Malignant neoplasm: Malignant melanoma of lower limb, including hip", + }, + { + key: "C43.8", + en: "", + de: "Malignant neoplasm: Overlapping malignant melanoma of skin", + }, + { + key: "C43.9", + en: "", + de: "Malignant neoplasm: Malignant melanoma of skin, unspecified", + }, + { + key: "C44", + en: "", + de: "Other malignant neoplasms of skin", + }, + { + key: "C44.0", + en: "", + de: "Malignant neoplasm: Skin of lip", + }, + { + key: "C44.1", + en: "", + de: "Malignant neoplasm: Skin of eyelid, including canthus", + }, + { + key: "C44.2", + en: "", + de: "Malignant neoplasm: Skin of ear and external auricular canal", + }, + { + key: "C44.3", + en: "", + de: "Malignant neoplasm: Skin of other and unspecified parts of face", + }, + { + key: "C44.4", + en: "", + de: "Malignant neoplasm: Skin of scalp and neck", + }, + { + key: "C44.5", + en: "", + de: "Malignant neoplasm: Skin of trunk", + }, + { + key: "C44.6", + en: "", + de: "Malignant neoplasm: Skin of upper limb, including shoulder", + }, + { + key: "C44.7", + en: "", + de: "Malignant neoplasm: Skin of lower limb, including hip", + }, + { + key: "C44.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of skin", + }, + { + key: "C44.9", + en: "", + de: "Malignant neoplasm: Malignant neoplasm of skin, unspecified", + }, + { + key: "C45", + en: "", + de: "Mesothelioma", + }, + { + key: "C45.0", + en: "", + de: "Mesothelioma of pleura", + }, + { + key: "C45.1", + en: "", + de: "Mesothelioma of peritoneum", + }, + { + key: "C45.2", + en: "", + de: "Mesothelioma of pericardium", + }, + { + key: "C45.7", + en: "", + de: "Mesothelioma of other sites", + }, + { + key: "C45.9", + en: "", + de: "Mesothelioma, unspecified", + }, + { + key: "C46", + en: "", + de: "Kaposi sarcoma", + }, + { + key: "C46.0", + en: "", + de: "Kaposi sarcoma of skin", + }, + { + key: "C46.1", + en: "", + de: "Kaposi sarcoma of soft tissue", + }, + { + key: "C46.2", + en: "", + de: "Kaposi sarcoma of palate", + }, + { + key: "C46.3", + en: "", + de: "Kaposi sarcoma of lymph nodes", + }, + { + key: "C46.7", + en: "", + de: "Kaposi sarcoma of other sites", + }, + { + key: "C46.8", + en: "", + de: "Kaposi sarcoma of multiple organs", + }, + { + key: "C46.9", + en: "", + de: "Kaposi sarcoma, unspecified", + }, + { + key: "C47", + en: "", + de: "Malignant neoplasm of peripheral nerves and autonomic nervous system", + }, + { + key: "C47.0", + en: "", + de: "Malignant neoplasm: Peripheral nerves of head, face and neck", + }, + { + key: "C47.1", + en: "", + de: "Malignant neoplasm: Peripheral nerves of upper limb, including shoulder", + }, + { + key: "C47.2", + en: "", + de: "Malignant neoplasm: Peripheral nerves of lower limb, including hip", + }, + { + key: "C47.3", + en: "", + de: "Malignant neoplasm: Peripheral nerves of thorax", + }, + { + key: "C47.4", + en: "", + de: "Malignant neoplasm: Peripheral nerves of abdomen", + }, + { + key: "C47.5", + en: "", + de: "Malignant neoplasm: Peripheral nerves of pelvis", + }, + { + key: "C47.6", + en: "", + de: "Malignant neoplasm: Peripheral nerves of trunk, unspecified", + }, + { + key: "C47.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of peripheral nerves and autonomic nervous system", + }, + { + key: "C47.9", + en: "", + de: "Malignant neoplasm: Peripheral nerves and autonomic nervous system, unspecified", + }, + { + key: "C48", + en: "", + de: "Malignant neoplasm of retroperitoneum and peritoneum", + }, + { + key: "C48.0", + en: "", + de: "Malignant neoplasm: Retroperitoneum", + }, + { + key: "C48.1", + en: "", + de: "Malignant neoplasm: Specified parts of peritoneum", + }, + { + key: "C48.2", + en: "", + de: "Malignant neoplasm: Peritoneum, unspecified", + }, + { + key: "C48.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of retroperitoneum and peritoneum", + }, + { + key: "C49", + en: "", + de: "Malignant neoplasm of other connective and soft tissue", + }, + { + key: "C49.0", + en: "", + de: "Malignant neoplasm: Connective and soft tissue of head, face and neck", + }, + { + key: "C49.1", + en: "", + de: "Malignant neoplasm: Connective and soft tissue of upper limb, including shoulder", + }, + { + key: "C49.2", + en: "", + de: "Malignant neoplasm: Connective and soft tissue of lower limb, including hip", + }, + { + key: "C49.3", + en: "", + de: "Malignant neoplasm: Connective and soft tissue of thorax", + }, + { + key: "C49.4", + en: "", + de: "Malignant neoplasm: Connective and soft tissue of abdomen", + }, + { + key: "C49.5", + en: "", + de: "Malignant neoplasm: Connective and soft tissue of pelvis", + }, + { + key: "C49.6", + en: "", + de: "Malignant neoplasm: Connective and soft tissue of trunk, unspecified", + }, + { + key: "C49.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of connective and soft tissue", + }, + { + key: "C49.9", + en: "", + de: "Malignant neoplasm: Connective and soft tissue, unspecified", + }, + { + key: "C50", + en: "", + de: "Malignant neoplasm of breast", + }, + { + key: "C50.0", + en: "", + de: "Malignant neoplasm: Nipple and areola", + }, + { + key: "C50.1", + en: "", + de: "Malignant neoplasm: Central portion of breast", + }, + { + key: "C50.2", + en: "", + de: "Malignant neoplasm: Upper-inner quadrant of breast", + }, + { + key: "C50.3", + en: "", + de: "Malignant neoplasm: Lower-inner quadrant of breast", + }, + { + key: "C50.4", + en: "", + de: "Malignant neoplasm: Upper-outer quadrant of breast", + }, + { + key: "C50.5", + en: "", + de: "Malignant neoplasm: Lower-outer quadrant of breast", + }, + { + key: "C50.6", + en: "", + de: "Malignant neoplasm: Axillary tail of breast", + }, + { + key: "C50.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of breast", + }, + { + key: "C50.9", + en: "", + de: "Malignant neoplasm: Breast, unspecified", + }, + { + key: "C51", + en: "", + de: "Malignant neoplasm of vulva", + }, + { + key: "C51.0", + en: "", + de: "Malignant neoplasm: Labium majus", + }, + { + key: "C51.1", + en: "", + de: "Malignant neoplasm: Labium minus", + }, + { + key: "C51.2", + en: "", + de: "Malignant neoplasm: Clitoris", + }, + { + key: "C51.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of vulva", + }, + { + key: "C51.9", + en: "", + de: "Malignant neoplasm: Vulva, unspecified", + }, + { + key: "C52", + en: "", + de: "Malignant neoplasm of vagina", + }, + { + key: "C53", + en: "", + de: "Malignant neoplasm of cervix uteri", + }, + { + key: "C53.0", + en: "", + de: "Malignant neoplasm: Endocervix", + }, + { + key: "C53.1", + en: "", + de: "Malignant neoplasm: Exocervix", + }, + { + key: "C53.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of cervix uteri", + }, + { + key: "C53.9", + en: "", + de: "Malignant neoplasm: Cervix uteri, unspecified", + }, + { + key: "C54", + en: "", + de: "Malignant neoplasm of corpus uteri", + }, + { + key: "C54.0", + en: "", + de: "Malignant neoplasm: Isthmus uteri", + }, + { + key: "C54.1", + en: "", + de: "Malignant neoplasm: Endometrium", + }, + { + key: "C54.2", + en: "", + de: "Malignant neoplasm: Myometrium", + }, + { + key: "C54.3", + en: "", + de: "Malignant neoplasm: Fundus uteri", + }, + { + key: "C54.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of corpus uteri", + }, + { + key: "C54.9", + en: "", + de: "Malignant neoplasm: Corpus uteri, unspecified", + }, + { + key: "C55", + en: "", + de: "Malignant neoplasm of uterus, part unspecified", + }, + { + key: "C56", + en: "", + de: "Malignant neoplasm of ovary", + }, + { + key: "C57", + en: "", + de: "Malignant neoplasm of other and unspecified female genital organs", + }, + { + key: "C57.0", + en: "", + de: "Malignant neoplasm: Fallopian tube", + }, + { + key: "C57.1", + en: "", + de: "Malignant neoplasm: Broad ligament", + }, + { + key: "C57.2", + en: "", + de: "Malignant neoplasm: Round ligament", + }, + { + key: "C57.3", + en: "", + de: "Malignant neoplasm: Parametrium", + }, + { + key: "C57.4", + en: "", + de: "Malignant neoplasm: Uterine adnexa, unspecified", + }, + { + key: "C57.7", + en: "", + de: "Malignant neoplasm: Other specified female genital organs", + }, + { + key: "C57.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of female genital organs", + }, + { + key: "C57.9", + en: "", + de: "Malignant neoplasm: Female genital organ, unspecified", + }, + { + key: "C58", + en: "", + de: "Malignant neoplasm of placenta", + }, + { + key: "C60", + en: "", + de: "Malignant neoplasm of penis", + }, + { + key: "C60.0", + en: "", + de: "Malignant neoplasm: Prepuce", + }, + { + key: "C60.1", + en: "", + de: "Malignant neoplasm: Glans penis", + }, + { + key: "C60.2", + en: "", + de: "Malignant neoplasm: Body of penis", + }, + { + key: "C60.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of penis", + }, + { + key: "C60.9", + en: "", + de: "Malignant neoplasm: Penis, unspecified", + }, + { + key: "C61", + en: "", + de: "Malignant neoplasm of prostate", + }, + { + key: "C62", + en: "", + de: "Malignant neoplasm of testis", + }, + { + key: "C62.0", + en: "", + de: "Malignant neoplasm: Undescended testis", + }, + { + key: "C62.1", + en: "", + de: "Malignant neoplasm: Descended testis", + }, + { + key: "C62.9", + en: "", + de: "Malignant neoplasm: Testis, unspecified", + }, + { + key: "C63", + en: "", + de: "Malignant neoplasm of other and unspecified male genital organs", + }, + { + key: "C63.0", + en: "", + de: "Malignant neoplasm: Epididymis", + }, + { + key: "C63.1", + en: "", + de: "Malignant neoplasm: Spermatic cord", + }, + { + key: "C63.2", + en: "", + de: "Malignant neoplasm: Scrotum", + }, + { + key: "C63.7", + en: "", + de: "Malignant neoplasm: Other specified male genital organs", + }, + { + key: "C63.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of male genital organs", + }, + { + key: "C63.9", + en: "", + de: "Malignant neoplasm: Male genital organ, unspecified", + }, + { + key: "C64", + en: "", + de: "Malignant neoplasm of kidney, except renal pelvis", + }, + { + key: "C65", + en: "", + de: "Malignant neoplasm of renal pelvis", + }, + { + key: "C66", + en: "", + de: "Malignant neoplasm of ureter", + }, + { + key: "C67", + en: "", + de: "Malignant neoplasm of bladder", + }, + { + key: "C67.0", + en: "", + de: "Malignant neoplasm: Trigone of bladder", + }, + { + key: "C67.1", + en: "", + de: "Malignant neoplasm: Dome of bladder", + }, + { + key: "C67.2", + en: "", + de: "Malignant neoplasm: Lateral wall of bladder", + }, + { + key: "C67.3", + en: "", + de: "Malignant neoplasm: Anterior wall of bladder", + }, + { + key: "C67.4", + en: "", + de: "Malignant neoplasm: Posterior wall of bladder", + }, + { + key: "C67.5", + en: "", + de: "Malignant neoplasm: Bladder neck", + }, + { + key: "C67.6", + en: "", + de: "Malignant neoplasm: Ureteric orifice", + }, + { + key: "C67.7", + en: "", + de: "Malignant neoplasm: Urachus", + }, + { + key: "C67.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of bladder", + }, + { + key: "C67.9", + en: "", + de: "Malignant neoplasm: Bladder, unspecified", + }, + { + key: "C68", + en: "", + de: "Malignant neoplasm of other and unspecified urinary organs", + }, + { + key: "C68.0", + en: "", + de: "Malignant neoplasm: Urethra", + }, + { + key: "C68.1", + en: "", + de: "Malignant neoplasm: Paraurethral gland", + }, + { + key: "C68.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of urinary organs", + }, + { + key: "C68.9", + en: "", + de: "Malignant neoplasm: Urinary organ, unspecified", + }, + { + key: "C69", + en: "", + de: "Malignant neoplasm of eye and adnexa", + }, + { + key: "C69.0", + en: "", + de: "Malignant neoplasm: Conjunctiva", + }, + { + key: "C69.1", + en: "", + de: "Malignant neoplasm: Cornea", + }, + { + key: "C69.2", + en: "", + de: "Malignant neoplasm: Retina", + }, + { + key: "C69.3", + en: "", + de: "Malignant neoplasm: Choroid", + }, + { + key: "C69.4", + en: "", + de: "Malignant neoplasm: Ciliary body", + }, + { + key: "C69.5", + en: "", + de: "Malignant neoplasm: Lacrimal gland and duct", + }, + { + key: "C69.6", + en: "", + de: "Malignant neoplasm: Orbit", + }, + { + key: "C69.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of eye and adnexa", + }, + { + key: "C69.9", + en: "", + de: "Malignant neoplasm: Eye, unspecified", + }, + { + key: "C70", + en: "", + de: "Malignant neoplasm of meninges", + }, + { + key: "C70.0", + en: "", + de: "Malignant neoplasm: Cerebral meninges", + }, + { + key: "C70.1", + en: "", + de: "Malignant neoplasm: Spinal meninges", + }, + { + key: "C70.9", + en: "", + de: "Malignant neoplasm: Meninges, unspecified", + }, + { + key: "C71", + en: "", + de: "Malignant neoplasm of brain", + }, + { + key: "C71.0", + en: "", + de: "Malignant neoplasm: Cerebrum, except lobes and ventricles", + }, + { + key: "C71.1", + en: "", + de: "Malignant neoplasm: Frontal lobe", + }, + { + key: "C71.2", + en: "", + de: "Malignant neoplasm: Temporal lobe", + }, + { + key: "C71.3", + en: "", + de: "Malignant neoplasm: Parietal lobe", + }, + { + key: "C71.4", + en: "", + de: "Malignant neoplasm: Occipital lobe", + }, + { + key: "C71.5", + en: "", + de: "Malignant neoplasm: Cerebral ventricle", + }, + { + key: "C71.6", + en: "", + de: "Malignant neoplasm: Cerebellum", + }, + { + key: "C71.7", + en: "", + de: "Malignant neoplasm: Brain stem", + }, + { + key: "C71.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of brain", + }, + { + key: "C71.9", + en: "", + de: "Malignant neoplasm: Brain, unspecified", + }, + { + key: "C72", + en: "", + de: "Malignant neoplasm of spinal cord, cranial nerves and other parts of central nervous system", + }, + { + key: "C72.0", + en: "", + de: "Malignant neoplasm: Spinal cord", + }, + { + key: "C72.1", + en: "", + de: "Malignant neoplasm: Cauda equina", + }, + { + key: "C72.2", + en: "", + de: "Malignant neoplasm: Olfactory nerve", + }, + { + key: "C72.3", + en: "", + de: "Malignant neoplasm: Optic nerve", + }, + { + key: "C72.4", + en: "", + de: "Malignant neoplasm: Acoustic nerve", + }, + { + key: "C72.5", + en: "", + de: "Malignant neoplasm: Other and unspecified cranial nerves", + }, + { + key: "C72.8", + en: "", + de: "Malignant neoplasm: Overlapping lesion of brain and other parts of central nervous system", + }, + { + key: "C72.9", + en: "", + de: "Malignant neoplasm: Central nervous system, unspecified", + }, + { + key: "C73", + en: "", + de: "Malignant neoplasm of thyroid gland", + }, + { + key: "C74", + en: "", + de: "Malignant neoplasm of adrenal gland", + }, + { + key: "C74.0", + en: "", + de: "Malignant neoplasm: Cortex of adrenal gland", + }, + { + key: "C74.1", + en: "", + de: "Malignant neoplasm: Medulla of adrenal gland", + }, + { + key: "C74.9", + en: "", + de: "Malignant neoplasm: Adrenal gland, unspecified", + }, + { + key: "C75", + en: "", + de: "Malignant neoplasm of other endocrine glands and related structures", + }, + { + key: "C75.0", + en: "", + de: "Malignant neoplasm: Parathyroid gland", + }, + { + key: "C75.1", + en: "", + de: "Malignant neoplasm: Pituitary gland", + }, + { + key: "C75.2", + en: "", + de: "Malignant neoplasm: Craniopharyngeal duct", + }, + { + key: "C75.3", + en: "", + de: "Malignant neoplasm: Pineal gland", + }, + { + key: "C75.4", + en: "", + de: "Malignant neoplasm: Carotid body", + }, + { + key: "C75.5", + en: "", + de: "Malignant neoplasm: Aortic body and other paraganglia", + }, + { + key: "C75.8", + en: "", + de: "Malignant neoplasm: Pluriglandular involvement, unspecified", + }, + { + key: "C75.9", + en: "", + de: "Malignant neoplasm: Endocrine gland, unspecified", + }, + { + key: "C76", + en: "", + de: "Malignant neoplasm of other and ill-defined sites", + }, + { + key: "C76.0", + en: "", + de: "Malignant neoplasm of other and ill-defined sites: Head, face and neck", + }, + { + key: "C76.1", + en: "", + de: "Malignant neoplasm of other and ill-defined sites: Thorax", + }, + { + key: "C76.2", + en: "", + de: "Malignant neoplasm of other and ill-defined sites: Abdomen", + }, + { + key: "C76.3", + en: "", + de: "Malignant neoplasm of other and ill-defined sites: Pelvis", + }, + { + key: "C76.4", + en: "", + de: "Malignant neoplasm of other and ill-defined sites: Upper limb", + }, + { + key: "C76.5", + en: "", + de: "Malignant neoplasm of other and ill-defined sites: Lower limb", + }, + { + key: "C76.7", + en: "", + de: "Malignant neoplasm of other and ill-defined sites: Other ill-defined sites", + }, + { + key: "C76.8", + en: "", + de: "Malignant neoplasm of other and ill-defined sites: Overlapping lesion of other and ill-defined sites", + }, + { + key: "C77", + en: "", + de: "Secondary and unspecified malignant neoplasm of lymph nodes", + }, + { + key: "C77.0", + en: "", + de: "Secondary and unspecified malignant neoplasm: Lymph nodes of head, face and neck", + }, + { + key: "C77.1", + en: "", + de: "Secondary and unspecified malignant neoplasm: Intrathoracic lymph nodes", + }, + { + key: "C77.2", + en: "", + de: "Secondary and unspecified malignant neoplasm: Intra-abdominal lymph nodes", + }, + { + key: "C77.3", + en: "", + de: "Secondary and unspecified malignant neoplasm: Axillary and upper limb lymph nodes", + }, + { + key: "C77.4", + en: "", + de: "Secondary and unspecified malignant neoplasm: Inguinal and lower limb lymph nodes", + }, + { + key: "C77.5", + en: "", + de: "Secondary and unspecified malignant neoplasm: Intrapelvic lymph nodes", + }, + { + key: "C77.8", + en: "", + de: "Secondary and unspecified malignant neoplasm: Lymph nodes of multiple regions", + }, + { + key: "C77.9", + en: "", + de: "Secondary and unspecified malignant neoplasm: Lymph node, unspecified", + }, + { + key: "C78", + en: "", + de: "Secondary malignant neoplasm of respiratory and digestive organs", + }, + { + key: "C78.0", + en: "", + de: "Secondary malignant neoplasm of lung", + }, + { + key: "C78.1", + en: "", + de: "Secondary malignant neoplasm of mediastinum", + }, + { + key: "C78.2", + en: "", + de: "Secondary malignant neoplasm of pleura", + }, + { + key: "C78.3", + en: "", + de: "Secondary malignant neoplasm of other and unspecified respiratory organs", + }, + { + key: "C78.4", + en: "", + de: "Secondary malignant neoplasm of small intestine", + }, + { + key: "C78.5", + en: "", + de: "Secondary malignant neoplasm of large intestine and rectum", + }, + { + key: "C78.6", + en: "", + de: "Secondary malignant neoplasm of retroperitoneum and peritoneum", + }, + { + key: "C78.7", + en: "", + de: "Secondary malignant neoplasm of liver and intrahepatic bile duct", + }, + { + key: "C78.8", + en: "", + de: "Secondary malignant neoplasm of other and unspecified digestive organs", + }, + { + key: "C79", + en: "", + de: "Secondary malignant neoplasm of other and unspecified sites", + }, + { + key: "C79.0", + en: "", + de: "Secondary malignant neoplasm of kidney and renal pelvis", + }, + { + key: "C79.1", + en: "", + de: "Secondary malignant neoplasm of bladder and other and unspecified urinary organs", + }, + { + key: "C79.2", + en: "", + de: "Secondary malignant neoplasm of skin", + }, + { + key: "C79.3", + en: "", + de: "Secondary malignant neoplasm of brain and cerebral meninges", + }, + { + key: "C79.4", + en: "", + de: "Secondary malignant neoplasm of other and unspecified parts of nervous system", + }, + { + key: "C79.5", + en: "", + de: "Secondary malignant neoplasm of bone and bone marrow", + }, + { + key: "C79.6", + en: "", + de: "Secondary malignant neoplasm of ovary", + }, + { + key: "C79.7", + en: "", + de: "Secondary malignant neoplasm of adrenal gland", + }, + { + key: "C79.8", + en: "", + de: "Secondary malignant neoplasm of other specified sites", + }, + { + key: "C79.9", + en: "", + de: "Secondary malignant neoplasm, unspecified site", + }, + { + key: "C80", + en: "", + de: "Malignant neoplasm, without specification of site", + }, + { + key: "C80.0", + en: "", + de: "Malignant neoplasm, primary site unknown, so stated", + }, + { + key: "C80.9", + en: "", + de: "Malignant neoplasm, primary site unspecified", + }, + { + key: "C81", + en: "", + de: "Hodgkin lymphoma", + }, + { + key: "C81.0", + en: "", + de: "Nodular lymphocyte predominant Hodgkin lymphoma", + }, + { + key: "C81.1", + en: "", + de: "Nodular sclerosis classical Hodgkin lymphoma", + }, + { + key: "C81.2", + en: "", + de: "Mixed cellularity classical Hodgkin lymphoma", + }, + { + key: "C81.3", + en: "", + de: "Lymphocyte depleted classical Hodgkin lymphoma", + }, + { + key: "C81.4", + en: "", + de: "Lymphocyte-rich (classical) Hodgkin lymphoma", + }, + { + key: "C81.7", + en: "", + de: "Other classical Hodgkin lymphoma", + }, + { + key: "C81.9", + en: "", + de: "Hodgkin lymphoma, unspecified", + }, + { + key: "C82", + en: "", + de: "Follicular lymphoma", + }, + { + key: "C82.0", + en: "", + de: "Follicular lymphoma grade I", + }, + { + key: "C82.1", + en: "", + de: "Follicular lymphoma grade II", + }, + { + key: "C82.2", + en: "", + de: "Follicular lymphoma grade III, unspecified", + }, + { + key: "C82.3", + en: "", + de: "Follicular lymphoma grade IIIa", + }, + { + key: "C82.4", + en: "", + de: "Follicular lymphoma grade IIIb", + }, + { + key: "C82.5", + en: "", + de: "Diffuse follicle centre lymphoma", + }, + { + key: "C82.6", + en: "", + de: "Cutaneous follicle centre lymphoma", + }, + { + key: "C82.7", + en: "", + de: "Other types of follicular lymphoma", + }, + { + key: "C82.9", + en: "", + de: "Follicular lymphoma, unspecified", + }, + { + key: "C83", + en: "", + de: "Non-follicular lymphoma", + }, + { + key: "C83.0", + en: "", + de: "Small cell B-cell lymphoma", + }, + { + key: "C83.1", + en: "", + de: "Mantle cell lymphoma", + }, + { + key: "C83.3", + en: "", + de: "Diffuse large B-cell lymphoma", + }, + { + key: "C83.5", + en: "", + de: "Lymphoblastic (diffuse) lymphoma", + }, + { + key: "C83.7", + en: "", + de: "Burkitt lymphoma", + }, + { + key: "C83.8", + en: "", + de: "Other non-follicular lymphoma", + }, + { + key: "C83.9", + en: "", + de: "Non-follicular (diffuse) lymphoma, unspecified", + }, + { + key: "C84", + en: "", + de: "Mature T/NK-cell lymphomas", + }, + { + key: "C84.0", + en: "", + de: "Mycosis fungoides", + }, + { + key: "C84.1", + en: "", + de: "Sézary disease", + }, + { + key: "C84.4", + en: "", + de: "Peripheral T-cell lymphoma, not elsewhere classified", + }, + { + key: "C84.5", + en: "", + de: "Other mature T/NK-cell lymphomas", + }, + { + key: "C84.6", + en: "", + de: "Anaplastic large cell lymphoma, ALK-positive", + }, + { + key: "C84.7", + en: "", + de: "Anaplastic large cell lymphoma, ALK-negative", + }, + { + key: "C84.8", + en: "", + de: "Cutaneous T-cell lymphoma, unspecified", + }, + { + key: "C84.9", + en: "", + de: "Mature T/NK-cell lymphoma, unspecified", + }, + { + key: "C85", + en: "", + de: "Other and unspecified types of non-Hodgkin lymphoma", + }, + { + key: "C85.1", + en: "", + de: "B-cell lymphoma, unspecified", + }, + { + key: "C85.2", + en: "", + de: "Mediastinal (thymic) large B-cell lymphoma", + }, + { + key: "C85.7", + en: "", + de: "Other specified types of non-Hodgkin lymphoma", + }, + { + key: "C85.9", + en: "", + de: "Non-Hodgkin lymphoma, unspecified", + }, + { + key: "C86", + en: "", + de: "Other specified types of T/NK-cell lymphoma", + }, + { + key: "C86.0", + en: "", + de: "Extranodal NK/T-cell lymphoma, nasal type", + }, + { + key: "C86.1", + en: "", + de: "Hepatosplenic T-cell lymphoma", + }, + { + key: "C86.2", + en: "", + de: "Enteropathy-type (intestinal) T-cell lymphoma", + }, + { + key: "C86.3", + en: "", + de: "Subcutaneous panniculitis-like T-cell lymphoma", + }, + { + key: "C86.4", + en: "", + de: "Blastic NK-cell lymphoma", + }, + { + key: "C86.5", + en: "", + de: "Angioimmunoblastic T-cell lymphoma", + }, + { + key: "C86.6", + en: "", + de: "Primary cutaneous CD30-positive T-cell proliferations", + }, + { + key: "C88", + en: "", + de: "Malignant immunoproliferative diseases", + }, + { + key: "C88.0", + en: "", + de: "Waldenström macroglobulinaemia", + }, + { + key: "C88.2", + en: "", + de: "Other heavy chain disease", + }, + { + key: "C88.3", + en: "", + de: "Immunoproliferative small intestinal disease", + }, + { + key: "C88.4", + en: "", + de: "Extranodal marginal zone B-cell lymphoma of mucosa-associated lymphoid tissue [MALT-lyphoma]", + }, + { + key: "C88.7", + en: "", + de: "Other malignant immunoproliferative diseases", + }, + { + key: "C88.9", + en: "", + de: "Malignant immunoproliferative disease, unspecified", + }, + { + key: "C90", + en: "", + de: "Multiple myeloma and malignant plasma cell neoplasms", + }, + { + key: "C90.0", + en: "", + de: "Multiple myeloma", + }, + { + key: "C90.1", + en: "", + de: "Plasma cell leukaemia", + }, + { + key: "C90.2", + en: "", + de: "Extramedullary plasmacytoma", + }, + { + key: "C90.3", + en: "", + de: "Solitary plasmacytoma", + }, + { + key: "C91", + en: "", + de: "Lymphoid leukaemia", + }, + { + key: "C91.0", + en: "", + de: "Acute lymphoblastic leukaemia [ALL]", + }, + { + key: "C91.1", + en: "", + de: "Chronic lymphocytic leukaemia of B-cell type", + }, + { + key: "C91.3", + en: "", + de: "Prolymphocytic leukaemia of B-cell type", + }, + { + key: "C91.4", + en: "", + de: "Hairy-cell leukaemia", + }, + { + key: "C91.5", + en: "", + de: "Adult T-cell lymphoma/leukaemia [HTLV-1-associated]", + }, + { + key: "C91.6", + en: "", + de: "Prolymphocytic leukaemia of T-cell type", + }, + { + key: "C91.7", + en: "", + de: "Other lymphoid leukaemia", + }, + { + key: "C91.8", + en: "", + de: "Mature B-cell leukaemia Burkitt-type", + }, + { + key: "C91.9", + en: "", + de: "Lymphoid leukaemia, unspecified", + }, + { + key: "C92", + en: "", + de: "Myeloid leukaemia", + }, + { + key: "C92.0", + en: "", + de: "Acute myeloblastic leukaemia [AML]", + }, + { + key: "C92.1", + en: "", + de: "Chronic myeloid leukaemia [CML], BCR/ABL-positive", + }, + { + key: "C92.2", + en: "", + de: "Atypical chronic myeloid leukaemia, BCR/ABL- negative", + }, + { + key: "C92.3", + en: "", + de: "Myeloid sarcoma", + }, + { + key: "C92.4", + en: "", + de: "Acute promyelocytic leukaemia [PML]", + }, + { + key: "C92.5", + en: "", + de: "Acute myelomonocytic leukaemia", + }, + { + key: "C92.6", + en: "", + de: "Acute myeloid leukaemia with 11q23-abnormality", + }, + { + key: "C92.7", + en: "", + de: "Other myeloid leukaemia", + }, + { + key: "C92.8", + en: "", + de: "Acute myeloid leukaemia with multilineage dysplasia", + }, + { + key: "C92.9", + en: "", + de: "Myeloid leukaemia, unspecified", + }, + { + key: "C93", + en: "", + de: "Monocytic leukaemia", + }, + { + key: "C93.0", + en: "", + de: "Acute monoblastic/monocytic leukaemia", + }, + { + key: "C93.1", + en: "", + de: "Chronic myelomonocytic leukaemia", + }, + { + key: "C93.3", + en: "", + de: "Juvenile myelomonocytic leukaemia", + }, + { + key: "C93.7", + en: "", + de: "Other monocytic leukaemia", + }, + { + key: "C93.9", + en: "", + de: "Monocytic leukaemia, unspecified", + }, + { + key: "C94", + en: "", + de: "Other leukaemias of specified cell type", + }, + { + key: "C94.0", + en: "", + de: "Acute erythroid leukaemia", + }, + { + key: "C94.2", + en: "", + de: "Acute megakaryoblastic leukaemia", + }, + { + key: "C94.3", + en: "", + de: "Mast cell leukaemia", + }, + { + key: "C94.4", + en: "", + de: "Acute panmyelosis with myelofibrosis", + }, + { + key: "C94.6", + en: "", + de: "Myelodysplastic and myeloproliferative disease, not elsewhere classified", + }, + { + key: "C94.7", + en: "", + de: "Other specified leukaemias", + }, + { + key: "C95", + en: "", + de: "Leukaemia of unspecified cell type", + }, + { + key: "C95.0", + en: "", + de: "Acute leukaemia of unspecified cell type", + }, + { + key: "C95.1", + en: "", + de: "Chronic leukaemia of unspecified cell type", + }, + { + key: "C95.7", + en: "", + de: "Other leukaemia of unspecified cell type", + }, + { + key: "C95.9", + en: "", + de: "Leukaemia, unspecified", + }, + { + key: "C96", + en: "", + de: "Other and unspecified malignant neoplasms of lymphoid, haematopoietic and related tissue", + }, + { + key: "C96.0", + en: "", + de: "Multifocal and multisystemic (disseminated) Langerhans-cell histiocytosis [Letterer-Siwe disease]", + }, + { + key: "C96.2", + en: "", + de: "Malignant mast cell tumour", + }, + { + key: "C96.4", + en: "", + de: "Sarcoma of dendritic cells (accessory cells)", + }, + { + key: "C96.5", + en: "", + de: "Multifocal and unisystemic Langerhans-cell histiocytosis", + }, + { + key: "C96.6", + en: "", + de: "Unifocal Langerhans-cell histiocytosis", + }, + { + key: "C96.7", + en: "", + de: "Other specified malignant neoplasms of lymphoid, haematopoietic and related tissue", + }, + { + key: "C96.8", + en: "", + de: "Histiocytic sarcoma", + }, + { + key: "C96.9", + en: "", + de: "Malignant neoplasm of lymphoid, haematopoietic and related tissue, unspecified", + }, ] ); diff --git a/src/assets/manufacturer.ts b/src/assets/manufacturer.ts new file mode 100644 index 0000000..608f517 --- /dev/null +++ b/src/assets/manufacturer.ts @@ -0,0 +1,34 @@ +import { Criteria } from '@samply/lens-core'; + +export const Manufacturer: Criteria = new Criteria( + '', + { + de: 'Manufacturer', + en: 'Manufacturer', + }, + 'string', + '', + ['EQUALS'], + [ + { + key: 'siemens', + de: 'Siemens Healthineers', + en: 'Siemens Healthineers', + }, + { + key: 'ge', + de: 'GE Healthcare', + en: 'GE Healthcare', + }, + { + key: 'philips', + de: 'Philips Healthcare', + en: 'Philips Healthcare', + }, + { + key: 'canon', + de: 'Canon Medical Systems', + en: 'Canon Medical Systems', + }, + ] +); diff --git a/src/environments/environment.prod.ts b/src/environments/environment.prod.ts index 9d90cc6..ec2f15c 100644 --- a/src/environments/environment.prod.ts +++ b/src/environments/environment.prod.ts @@ -6,18 +6,21 @@ import { proceduresMeasure, specimenMeasure, } from '@samply/lens-core'; -import { Blaze } from '@samply/lens-core/cql'; +import { Beam } from '@samply/lens-core/cql'; export const environment = { production: true, lensConfig: new LensConfig( - [new Blaze('blaze', new URL('http://localhost:8080'))], + [new Beam('broker', new URL('http://localhost:8085'),[ + 'proxy1', + 'proxy2', + ])], [ - patientsMeasure, - diagnosisMeasure, - specimenMeasure, - proceduresMeasure, - medicationStatementsMeasure, + // patientsMeasure, + // diagnosisMeasure, + // specimenMeasure, + // proceduresMeasure, + // medicationStatementsMeasure, ] ), };