abstractor 1.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/MIT-LICENSE +20 -0
- data/README.md +14 -0
- data/Rakefile +33 -0
- data/app/assets/images/abstractor/add.png +0 -0
- data/app/assets/images/abstractor/ajax-loader.gif +0 -0
- data/app/assets/images/abstractor/bar.gif +0 -0
- data/app/assets/images/abstractor/bti_logo.jpg +0 -0
- data/app/assets/images/abstractor/bullet_arrow_down.png +0 -0
- data/app/assets/images/abstractor/bullet_arrow_up.png +0 -0
- data/app/assets/images/abstractor/cog.png +0 -0
- data/app/assets/images/abstractor/delete.png +0 -0
- data/app/assets/images/abstractor/edit.png +0 -0
- data/app/assets/images/abstractor/excel.png +0 -0
- data/app/assets/images/abstractor/favicon.ico +0 -0
- data/app/assets/images/abstractor/greencheck.gif +0 -0
- data/app/assets/images/abstractor/loading.gif +0 -0
- data/app/assets/images/abstractor/nu_logo.jpg +0 -0
- data/app/assets/images/abstractor/nubic_logo.png +0 -0
- data/app/assets/images/abstractor/page.png +0 -0
- data/app/assets/images/abstractor/rails.png +0 -0
- data/app/assets/images/abstractor/robert_h_lurie.jpg +0 -0
- data/app/assets/images/abstractor/show.png +0 -0
- data/app/assets/images/abstractor/switch_minus.gif +0 -0
- data/app/assets/images/abstractor/switch_plus.gif +0 -0
- data/app/assets/javascripts/abstractor/abstractor.js +89 -0
- data/app/assets/javascripts/abstractor/application.js +21 -0
- data/app/assets/javascripts/abstractor/combobox.js +301 -0
- data/app/assets/javascripts/abstractor/jquery/jquery.form.js +1074 -0
- data/app/assets/javascripts/abstractor/nested_attributes.js +69 -0
- data/app/assets/stylesheets/abstractor/abstractor_abstractions.css +312 -0
- data/app/assets/stylesheets/abstractor/application.css +21 -0
- data/app/assets/stylesheets/abstractor/jquery.ui.override.css.scss +73 -0
- data/app/controllers/abstractor/abstractor_abstraction_groups_controller.rb +5 -0
- data/app/controllers/abstractor/abstractor_abstractions_controller.rb +5 -0
- data/app/controllers/abstractor/abstractor_suggestions_controller.rb +5 -0
- data/app/controllers/abstractor/application_controller.rb +2 -0
- data/app/helpers/abstractor/application_helper.rb +4 -0
- data/app/models/abstractor/abstractor_abstraction.rb +6 -0
- data/app/models/abstractor/abstractor_abstraction_group.rb +6 -0
- data/app/models/abstractor/abstractor_abstraction_group_member.rb +6 -0
- data/app/models/abstractor/abstractor_abstraction_schema.rb +6 -0
- data/app/models/abstractor/abstractor_abstraction_schema_object_value.rb +6 -0
- data/app/models/abstractor/abstractor_abstraction_schema_predicate_variant.rb +6 -0
- data/app/models/abstractor/abstractor_abstraction_schema_relation.rb +6 -0
- data/app/models/abstractor/abstractor_abstraction_source.rb +6 -0
- data/app/models/abstractor/abstractor_object_type.rb +6 -0
- data/app/models/abstractor/abstractor_object_value.rb +6 -0
- data/app/models/abstractor/abstractor_object_value_variant.rb +6 -0
- data/app/models/abstractor/abstractor_relation_type.rb +6 -0
- data/app/models/abstractor/abstractor_rule_type.rb +6 -0
- data/app/models/abstractor/abstractor_subject.rb +6 -0
- data/app/models/abstractor/abstractor_subject_group.rb +6 -0
- data/app/models/abstractor/abstractor_subject_group_member.rb +6 -0
- data/app/models/abstractor/abstractor_subject_relation.rb +6 -0
- data/app/models/abstractor/abstractor_suggestion.rb +6 -0
- data/app/models/abstractor/abstractor_suggestion_object_value.rb +6 -0
- data/app/models/abstractor/abstractor_suggestion_source.rb +6 -0
- data/app/models/abstractor/abstractor_suggestion_status.rb +6 -0
- data/app/views/abstractor/abstractor_abstraction_groups/_form.html.haml +10 -0
- data/app/views/abstractor/abstractor_abstraction_groups/edit.html.haml +1 -0
- data/app/views/abstractor/abstractor_abstractions/_fields.html.haml +63 -0
- data/app/views/abstractor/abstractor_abstractions/_list.html.haml +45 -0
- data/app/views/abstractor/abstractor_abstractions/edit.html.haml +53 -0
- data/app/views/abstractor/abstractor_abstractions/show.html.haml +1 -0
- data/app/views/abstractor/shared/_error_messages.html.haml +5 -0
- data/config/cucumber.yml +8 -0
- data/config/routes.rb +7 -0
- data/db/migrate/20131227205140_create_abstractor_object_types.rb +10 -0
- data/db/migrate/20131227205219_create_abstractor_object_values.rb +10 -0
- data/db/migrate/20131227205256_create_abstractor_object_value_variants.rb +11 -0
- data/db/migrate/20131227205320_create_abstractor_relation_types.rb +10 -0
- data/db/migrate/20131227205354_create_abstractor_rule_types.rb +11 -0
- data/db/migrate/20131227205432_create_abstractor_abstraction_schemas.rb +13 -0
- data/db/migrate/20131227205456_create_abstractor_abstraction_schema_object_values.rb +10 -0
- data/db/migrate/20131227205529_create_abstractor_abstraction_schema_predicate_variants.rb +11 -0
- data/db/migrate/20131227205610_create_abstractor_abstraction_schema_relations.rb +11 -0
- data/db/migrate/20131227205652_create_abstractor_subjects.rb +12 -0
- data/db/migrate/20131227205732_create_abstractor_subject_relations.rb +11 -0
- data/db/migrate/20131227205831_create_abstractor_abstraction_sources.rb +11 -0
- data/db/migrate/20131227210211_create_abstractor_subject_groups.rb +10 -0
- data/db/migrate/20131227210244_create_abstractor_subject_group_members.rb +11 -0
- data/db/migrate/20131227210350_create_abstractor_abstraction_groups.rb +12 -0
- data/db/migrate/20131227210353_create_abstractor_abstraction_group_members.rb +11 -0
- data/db/migrate/20131227211050_create_abstractor_suggestion_statuses.rb +10 -0
- data/db/migrate/20131227211303_create_abstractor_abstractions.rb +15 -0
- data/db/migrate/20131227213427_create_abstractor_suggestions.rb +14 -0
- data/db/migrate/20131228041944_create_abstractor_suggestion_object_values.rb +11 -0
- data/db/migrate/20131228041945_create_abstractor_suggestion_sources.rb +16 -0
- data/db/seeds.rb +0 -0
- data/lib/abstractor.rb +8 -0
- data/lib/abstractor/abstractable.rb +190 -0
- data/lib/abstractor/core_ext/string.rb +99 -0
- data/lib/abstractor/engine.rb +14 -0
- data/lib/abstractor/methods/controllers/abstractor_abstraction_groups_controller.rb +37 -0
- data/lib/abstractor/methods/controllers/abstractor_abstractions_controller.rb +42 -0
- data/lib/abstractor/methods/controllers/abstractor_suggestions_controller.rb +28 -0
- data/lib/abstractor/methods/models/abstractor_abstraction.rb +65 -0
- data/lib/abstractor/methods/models/abstractor_abstraction_group.rb +37 -0
- data/lib/abstractor/methods/models/abstractor_abstraction_group_member.rb +17 -0
- data/lib/abstractor/methods/models/abstractor_abstraction_schema.rb +27 -0
- data/lib/abstractor/methods/models/abstractor_abstraction_schema_object_value.rb +17 -0
- data/lib/abstractor/methods/models/abstractor_abstraction_schema_predicate_variant.rb +16 -0
- data/lib/abstractor/methods/models/abstractor_abstraction_schema_relation.rb +18 -0
- data/lib/abstractor/methods/models/abstractor_abstraction_source.rb +29 -0
- data/lib/abstractor/methods/models/abstractor_object_type.rb +16 -0
- data/lib/abstractor/methods/models/abstractor_object_value.rb +24 -0
- data/lib/abstractor/methods/models/abstractor_object_value_variant.rb +16 -0
- data/lib/abstractor/methods/models/abstractor_relation_type.rb +16 -0
- data/lib/abstractor/methods/models/abstractor_rule_type.rb +17 -0
- data/lib/abstractor/methods/models/abstractor_subject.rb +258 -0
- data/lib/abstractor/methods/models/abstractor_subject_group.rb +19 -0
- data/lib/abstractor/methods/models/abstractor_subject_group_member.rb +17 -0
- data/lib/abstractor/methods/models/abstractor_subject_relation.rb +18 -0
- data/lib/abstractor/methods/models/abstractor_suggestion.rb +88 -0
- data/lib/abstractor/methods/models/abstractor_suggestion_object_value.rb +17 -0
- data/lib/abstractor/methods/models/abstractor_suggestion_source.rb +17 -0
- data/lib/abstractor/methods/models/abstractor_suggestion_status.rb +29 -0
- data/lib/abstractor/methods/models/soft_delete.rb +35 -0
- data/lib/abstractor/negation_detection.rb +43 -0
- data/lib/abstractor/parser.rb +76 -0
- data/lib/abstractor/setup.rb +24 -0
- data/lib/abstractor/user_interface.rb +40 -0
- data/lib/abstractor/utility.rb +8 -0
- data/lib/abstractor/version.rb +3 -0
- data/lib/generators/abstractor/install/install_generator.rb +118 -0
- data/lib/generators/abstractor/install/templates/controllers/abstractor_abstraction_groups_controller.rb +16 -0
- data/lib/generators/abstractor/install/templates/controllers/abstractor_abstractions_controller.rb +24 -0
- data/lib/generators/abstractor/install/templates/controllers/abstractor_suggestions_controller.rb +12 -0
- data/lib/generators/abstractor/install/templates/dictionaries.yml +235 -0
- data/lib/generators/abstractor/install/templates/helpers/abstractions_helper.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_abstraction.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_abstraction_group.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_abstraction_group_member.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_abstraction_schema.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_abstraction_schema_object_value.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_abstraction_schema_predicate_variant.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_abstraction_schema_relation.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_abstraction_source.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_object_type.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_object_value.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_object_value_variant.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_relation_type.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_rule_type.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_subject.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_subject_group.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_subject_group_member.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_subject_relation.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_suggestion.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_suggestion_object_value.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_suggestion_source.rb +9 -0
- data/lib/generators/abstractor/install/templates/models/abstractor_suggestion_status.rb +9 -0
- data/lib/lingscope/build.xml +74 -0
- data/lib/lingscope/build/built-jar.properties +4 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/AbnerTokenizer.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/AnnotationComparer.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/Annotator.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/BaselineAnnotator.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/BaselineCueAnnotator.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/BaselineScopeAnnotator.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/CrfAnnotator.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/NegexAnnotator.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/NegexCueAnnotator.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/NegexScopeAnnotator.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/PosTagger.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/negex/GenNegEx.class +0 -0
- data/lib/lingscope/build/classes/lingscope/algorithms/negex/Sorter.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/AnnotatedFilesMerger.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/AnnotationComparerDriver.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/BaselineDriver.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/CrfDriver.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/CueAndPosFilesMerger.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/ModelTrainer.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/NegexDriver.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/PosTaggerDriver.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/SentencePosTagger.class +0 -0
- data/lib/lingscope/build/classes/lingscope/drivers/SentenceTagger.class +0 -0
- data/lib/lingscope/build/classes/lingscope/io/AnnotatedSentencesIO.class +0 -0
- data/lib/lingscope/build/classes/lingscope/structures/AnnotatedSentence.class +0 -0
- data/lib/lingscope/dist/README.TXT +32 -0
- data/lib/lingscope/dist/javadoc/allclasses-frame.html +80 -0
- data/lib/lingscope/dist/javadoc/allclasses-noframe.html +80 -0
- data/lib/lingscope/dist/javadoc/constant-values.html +199 -0
- data/lib/lingscope/dist/javadoc/deprecated-list.html +147 -0
- data/lib/lingscope/dist/javadoc/help-doc.html +224 -0
- data/lib/lingscope/dist/javadoc/index-files/index-1.html +188 -0
- data/lib/lingscope/dist/javadoc/index-files/index-10.html +149 -0
- data/lib/lingscope/dist/javadoc/index-files/index-11.html +158 -0
- data/lib/lingscope/dist/javadoc/index-files/index-12.html +157 -0
- data/lib/lingscope/dist/javadoc/index-files/index-13.html +177 -0
- data/lib/lingscope/dist/javadoc/index-files/index-14.html +155 -0
- data/lib/lingscope/dist/javadoc/index-files/index-15.html +152 -0
- data/lib/lingscope/dist/javadoc/index-files/index-16.html +146 -0
- data/lib/lingscope/dist/javadoc/index-files/index-2.html +158 -0
- data/lib/lingscope/dist/javadoc/index-files/index-3.html +165 -0
- data/lib/lingscope/dist/javadoc/index-files/index-4.html +146 -0
- data/lib/lingscope/dist/javadoc/index-files/index-5.html +219 -0
- data/lib/lingscope/dist/javadoc/index-files/index-6.html +149 -0
- data/lib/lingscope/dist/javadoc/index-files/index-7.html +155 -0
- data/lib/lingscope/dist/javadoc/index-files/index-8.html +185 -0
- data/lib/lingscope/dist/javadoc/index-files/index-9.html +164 -0
- data/lib/lingscope/dist/javadoc/index.html +74 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/AbnerTokenizer.html +280 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/AnnotationComparer.html +526 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/Annotator.html +401 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/BaselineAnnotator.html +375 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/BaselineCueAnnotator.html +309 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/BaselineScopeAnnotator.html +340 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/CrfAnnotator.html +340 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/NegexAnnotator.html +364 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/NegexCueAnnotator.html +309 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/NegexScopeAnnotator.html +309 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/PosTagger.html +268 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/AbnerTokenizer.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/AnnotationComparer.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/Annotator.html +299 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/BaselineAnnotator.html +189 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/BaselineCueAnnotator.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/BaselineScopeAnnotator.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/CrfAnnotator.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/NegexAnnotator.html +189 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/NegexCueAnnotator.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/NegexScopeAnnotator.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/class-use/PosTagger.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/negex/GenNegEx.html +369 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/negex/Sorter.html +253 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/negex/class-use/GenNegEx.html +181 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/negex/class-use/Sorter.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/negex/package-frame.html +35 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/negex/package-summary.html +165 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/negex/package-tree.html +154 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/negex/package-use.html +174 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/package-frame.html +53 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/package-summary.html +198 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/package-tree.html +160 -0
- data/lib/lingscope/dist/javadoc/lingscope/algorithms/package-use.html +202 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/AnnotatedFilesMerger.html +284 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/AnnotationComparerDriver.html +258 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/BaselineDriver.html +260 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/CrfDriver.html +262 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/CueAndPosFilesMerger.html +310 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/ModelTrainer.html +281 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/NegexDriver.html +262 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/PosTaggerDriver.html +289 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/SentencePosTagger.html +313 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/SentenceTagger.html +512 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/AnnotatedFilesMerger.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/AnnotationComparerDriver.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/BaselineDriver.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/CrfDriver.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/CueAndPosFilesMerger.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/ModelTrainer.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/NegexDriver.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/PosTaggerDriver.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/SentencePosTagger.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/class-use/SentenceTagger.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/package-frame.html +51 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/package-summary.html +195 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/package-tree.html +154 -0
- data/lib/lingscope/dist/javadoc/lingscope/drivers/package-use.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/io/AnnotatedSentencesIO.html +285 -0
- data/lib/lingscope/dist/javadoc/lingscope/io/class-use/AnnotatedSentencesIO.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/io/package-frame.html +33 -0
- data/lib/lingscope/dist/javadoc/lingscope/io/package-summary.html +158 -0
- data/lib/lingscope/dist/javadoc/lingscope/io/package-tree.html +154 -0
- data/lib/lingscope/dist/javadoc/lingscope/io/package-use.html +145 -0
- data/lib/lingscope/dist/javadoc/lingscope/structures/AnnotatedSentence.html +425 -0
- data/lib/lingscope/dist/javadoc/lingscope/structures/class-use/AnnotatedSentence.html +423 -0
- data/lib/lingscope/dist/javadoc/lingscope/structures/package-frame.html +33 -0
- data/lib/lingscope/dist/javadoc/lingscope/structures/package-summary.html +158 -0
- data/lib/lingscope/dist/javadoc/lingscope/structures/package-tree.html +154 -0
- data/lib/lingscope/dist/javadoc/lingscope/structures/package-use.html +209 -0
- data/lib/lingscope/dist/javadoc/overview-frame.html +51 -0
- data/lib/lingscope/dist/javadoc/overview-summary.html +168 -0
- data/lib/lingscope/dist/javadoc/overview-tree.html +159 -0
- data/lib/lingscope/dist/javadoc/package-list +5 -0
- data/lib/lingscope/dist/javadoc/resources/inherit.gif +0 -0
- data/lib/lingscope/dist/javadoc/stylesheet.css +29 -0
- data/lib/lingscope/dist/lib/abner.jar +0 -0
- data/lib/lingscope/dist/lib/commons-lang-2.4.jar +0 -0
- data/lib/lingscope/dist/lib/java_utils.jar +0 -0
- data/lib/lingscope/dist/lib/sptoolkit.jar +0 -0
- data/lib/lingscope/dist/lib/stanford-postagger.jar +0 -0
- data/lib/lingscope/dist/lingscope.jar +0 -0
- data/lib/lingscope/lingscope.zip +0 -0
- data/lib/lingscope/manifest.mf +3 -0
- data/lib/lingscope/nbproject/build-impl.xml +1338 -0
- data/lib/lingscope/nbproject/genfiles.properties +8 -0
- data/lib/lingscope/nbproject/private/config.properties +0 -0
- data/lib/lingscope/nbproject/private/private.properties +10 -0
- data/lib/lingscope/nbproject/private/private.xml +5 -0
- data/lib/lingscope/nbproject/project.properties +85 -0
- data/lib/lingscope/nbproject/project.xml +15 -0
- data/lib/lingscope/negation_models.zip +0 -0
- data/lib/lingscope/negation_models/baseline_cue_all_both.model +49 -0
- data/lib/lingscope/negation_models/baseline_cue_all_clinical.model +19 -0
- data/lib/lingscope/negation_models/crf_cue_all_both.model +0 -0
- data/lib/lingscope/negation_models/crf_cue_all_clinical.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_cue_crf_all_both.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_cue_crf_all_clinical.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_cue_regex_all_both.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_cue_regex_all_clinical.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_words_all_both.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_words_all_clinical.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_words_crf_all_both.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_words_crf_all_clinical.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_words_regex_all_both.model +0 -0
- data/lib/lingscope/negation_models/crf_scope_words_regex_all_clinical.model +0 -0
- data/lib/lingscope/src/lingscope/algorithms/AbnerTokenizer.java +58 -0
- data/lib/lingscope/src/lingscope/algorithms/AnnotationComparer.java +207 -0
- data/lib/lingscope/src/lingscope/algorithms/Annotator.java +51 -0
- data/lib/lingscope/src/lingscope/algorithms/BaselineAnnotator.java +80 -0
- data/lib/lingscope/src/lingscope/algorithms/BaselineCueAnnotator.java +84 -0
- data/lib/lingscope/src/lingscope/algorithms/BaselineScopeAnnotator.java +101 -0
- data/lib/lingscope/src/lingscope/algorithms/CrfAnnotator.java +45 -0
- data/lib/lingscope/src/lingscope/algorithms/NegexAnnotator.java +52 -0
- data/lib/lingscope/src/lingscope/algorithms/NegexCueAnnotator.java +26 -0
- data/lib/lingscope/src/lingscope/algorithms/NegexScopeAnnotator.java +26 -0
- data/lib/lingscope/src/lingscope/algorithms/PosTagger.java +54 -0
- data/lib/lingscope/src/lingscope/algorithms/negex/GenNegEx.java +530 -0
- data/lib/lingscope/src/lingscope/algorithms/negex/Sorter.java +36 -0
- data/lib/lingscope/src/lingscope/drivers/AnnotatedFilesMerger.java +61 -0
- data/lib/lingscope/src/lingscope/drivers/AnnotationComparerDriver.java +22 -0
- data/lib/lingscope/src/lingscope/drivers/BaselineDriver.java +45 -0
- data/lib/lingscope/src/lingscope/drivers/CrfDriver.java +31 -0
- data/lib/lingscope/src/lingscope/drivers/CueAndPosFilesMerger.java +86 -0
- data/lib/lingscope/src/lingscope/drivers/ModelTrainer.java +39 -0
- data/lib/lingscope/src/lingscope/drivers/NegexDriver.java +32 -0
- data/lib/lingscope/src/lingscope/drivers/PosTaggerDriver.java +62 -0
- data/lib/lingscope/src/lingscope/drivers/SentencePosTagger.java +89 -0
- data/lib/lingscope/src/lingscope/drivers/SentenceTagger.java +158 -0
- data/lib/lingscope/src/lingscope/io/AnnotatedSentencesIO.java +53 -0
- data/lib/lingscope/src/lingscope/structures/AnnotatedSentence.java +105 -0
- data/lib/setup/data/ICD-O-3_CSV-metadata/Morphenglish.csv +1 -0
- data/lib/setup/data/ICD-O-3_CSV-metadata/Morphenglish.txt +2273 -0
- data/lib/setup/data/ICD-O-3_CSV-metadata/Topoenglish.csv +1 -0
- data/lib/setup/data/ICD-O-3_CSV-metadata/Topoenglish.txt +1342 -0
- data/lib/setup/data/ICD-O-3_CSV-metadata/icd-o3 readme.txt +21 -0
- data/lib/setup/data/custom_site_synonyms.csv +1 -0
- data/lib/setup/data/diagnosis_categorizations.csv +1 -0
- data/lib/setup/data/high_level_primary_cns_diagnosis_categorizations.yml +597 -0
- data/lib/setup/data/icdo3_sites_with_laterality.txt +11 -0
- data/lib/setup/data/site_site_categories.txt +28 -0
- data/lib/tasks/abstractor_tasks.rake +22 -0
- data/lib/tasks/cucumber.rake +65 -0
- metadata +754 -0
@@ -0,0 +1,158 @@
|
|
1
|
+
package lingscope.drivers;
|
2
|
+
|
3
|
+
import generalutils.FileOperations;
|
4
|
+
import java.util.ArrayList;
|
5
|
+
import java.util.List;
|
6
|
+
import java.util.logging.Level;
|
7
|
+
import java.util.logging.Logger;
|
8
|
+
import lingscope.algorithms.Annotator;
|
9
|
+
import lingscope.algorithms.BaselineCueAnnotator;
|
10
|
+
import lingscope.algorithms.BaselineScopeAnnotator;
|
11
|
+
import lingscope.algorithms.CrfAnnotator;
|
12
|
+
import lingscope.algorithms.NegexCueAnnotator;
|
13
|
+
import lingscope.algorithms.NegexScopeAnnotator;
|
14
|
+
import lingscope.io.AnnotatedSentencesIO;
|
15
|
+
import lingscope.structures.AnnotatedSentence;
|
16
|
+
|
17
|
+
/**
|
18
|
+
* Tags scope or cue in a single sentence
|
19
|
+
* @author shashank
|
20
|
+
*/
|
21
|
+
public class SentenceTagger {
|
22
|
+
|
23
|
+
public static final String CUE_START = "B-C";
|
24
|
+
public static final String CUE_INTER = "I-C";
|
25
|
+
public static final String SCOPE_START = "B-S";
|
26
|
+
public static final String SCOPE_INTER = "I-S";
|
27
|
+
public static final String OTHER = "O";
|
28
|
+
|
29
|
+
/**
|
30
|
+
* Tags the given sentence with the given annotator
|
31
|
+
* @param annotator
|
32
|
+
* @param sentence
|
33
|
+
* @param isTokenized
|
34
|
+
* @return
|
35
|
+
*/
|
36
|
+
public static AnnotatedSentence tag(Annotator annotator, String sentence, boolean isTokenized) {
|
37
|
+
return annotator.annotateSentence(sentence, isTokenized);
|
38
|
+
}
|
39
|
+
|
40
|
+
/**
|
41
|
+
* Prints the usage for the sentence tagger
|
42
|
+
*/
|
43
|
+
public static void usage() {
|
44
|
+
System.out.println("Usage:\njava lingscope.drivers.SentenceTagger (cue|scope) (crf|baseline|negex) saved_model_file sentence_to_tag");
|
45
|
+
System.out.println("\tSaved model for negation can be obtained from http://negscope.askhermes.org/");
|
46
|
+
System.out.println("\tSaved model for speculation can be obtained from http://hedgescope.askhermes.org/");
|
47
|
+
System.out.println("\tSaved model for NegEx can be obtained from http://code.google.com/p/negex/downloads/list");
|
48
|
+
}
|
49
|
+
|
50
|
+
/**
|
51
|
+
* Given a list of annotated sentences, return a list where the annotated
|
52
|
+
* sentences are replaced with strings
|
53
|
+
* @param annotatedSentences
|
54
|
+
* @return
|
55
|
+
*/
|
56
|
+
public static List<String> getStringListFromAnnotatedSentences(List<AnnotatedSentence> annotatedSentences) {
|
57
|
+
List<String> strings = new ArrayList<String>(annotatedSentences.size());
|
58
|
+
for (AnnotatedSentence annotatedSentence : annotatedSentences) {
|
59
|
+
strings.add(annotatedSentence.getSentenceText());
|
60
|
+
}
|
61
|
+
return strings;
|
62
|
+
}
|
63
|
+
|
64
|
+
public static List<AnnotatedSentence> annotateSentences(Annotator annotator, List<String> inputSentences, boolean isTokenized) {
|
65
|
+
List<AnnotatedSentence> outputSentences = new ArrayList<AnnotatedSentence>(inputSentences.size());
|
66
|
+
for (String inputSentence : inputSentences) {
|
67
|
+
AnnotatedSentence outputSentence = annotator.annotateSentence(inputSentence, isTokenized);
|
68
|
+
outputSentences.add(outputSentence);
|
69
|
+
}
|
70
|
+
return outputSentences;
|
71
|
+
}
|
72
|
+
|
73
|
+
/**
|
74
|
+
* Gets the list of sentences in string format from the given inputFile.
|
75
|
+
* @param inputFile the file containing input sentences
|
76
|
+
* @param isAnnotated set this as true if the input file contains annotated
|
77
|
+
* sentences. Set this as false if the input file contains only sentences
|
78
|
+
* as strings
|
79
|
+
* @return the list of sentences in string format in the given inputFile
|
80
|
+
*/
|
81
|
+
public static List<String> getStringList(String inputFile, boolean isAnnotated) {
|
82
|
+
if (!isAnnotated) {
|
83
|
+
try {
|
84
|
+
return FileOperations.readFile(inputFile);
|
85
|
+
} catch (Exception ex) {
|
86
|
+
Logger.getLogger(SentenceTagger.class.getName()).log(Level.SEVERE, null, ex);
|
87
|
+
}
|
88
|
+
}
|
89
|
+
List<AnnotatedSentence> annotatedSentences = AnnotatedSentencesIO.read(inputFile);
|
90
|
+
return getStringListFromAnnotatedSentences(annotatedSentences);
|
91
|
+
}
|
92
|
+
|
93
|
+
/**
|
94
|
+
* Gets the Annotator from the given classifier and mark type
|
95
|
+
* @param classifierType such as "baseline", "crf", or "negex"
|
96
|
+
* @param markType
|
97
|
+
* @return
|
98
|
+
*/
|
99
|
+
public static Annotator getAnnotator(String classifierType, String markType) {
|
100
|
+
if ("cue".equalsIgnoreCase(markType)) {
|
101
|
+
if ("baseline".equalsIgnoreCase(classifierType)) {
|
102
|
+
return new BaselineCueAnnotator(CUE_START, CUE_INTER, OTHER);
|
103
|
+
} else if ("crf".equalsIgnoreCase(classifierType)) {
|
104
|
+
return new CrfAnnotator(CUE_START, CUE_INTER, OTHER);
|
105
|
+
} else if ("negex".equalsIgnoreCase(classifierType)) {
|
106
|
+
return new NegexCueAnnotator(CUE_START, CUE_INTER, OTHER);
|
107
|
+
}
|
108
|
+
return null;
|
109
|
+
} else if ("scope".equalsIgnoreCase(markType)) {
|
110
|
+
if ("baseline".equalsIgnoreCase(classifierType)) {
|
111
|
+
return new BaselineScopeAnnotator(SCOPE_START, SCOPE_INTER, OTHER, true, true);
|
112
|
+
} else if ("crf".equalsIgnoreCase(classifierType)) {
|
113
|
+
return new CrfAnnotator(SCOPE_START, SCOPE_INTER, OTHER);
|
114
|
+
} else if ("negex".equalsIgnoreCase(classifierType)) {
|
115
|
+
return new NegexScopeAnnotator(SCOPE_START, SCOPE_INTER, OTHER);
|
116
|
+
}
|
117
|
+
return null;
|
118
|
+
}
|
119
|
+
return null;
|
120
|
+
}
|
121
|
+
|
122
|
+
/**
|
123
|
+
*
|
124
|
+
* @param args
|
125
|
+
* 0 - Annotator type ("cue" or "scope")
|
126
|
+
* 1 - Model type ("crf", "baseline" or "negex")
|
127
|
+
* 2 - Saved model file
|
128
|
+
* 3 - Sentence to tag
|
129
|
+
*/
|
130
|
+
public static void main(String[] args) {
|
131
|
+
if (args.length < 4) {
|
132
|
+
usage();
|
133
|
+
System.exit(0);
|
134
|
+
}
|
135
|
+
Annotator annotator = getAnnotator(args[1], args[0]);
|
136
|
+
if (annotator == null) {
|
137
|
+
usage();
|
138
|
+
System.exit(1);
|
139
|
+
}
|
140
|
+
annotator.loadAnnotator(args[2]);
|
141
|
+
|
142
|
+
if ("file".equalsIgnoreCase(args[3])) {
|
143
|
+
String fileName = args[4];
|
144
|
+
try {
|
145
|
+
List<String> sentences = FileOperations.readFile(fileName);
|
146
|
+
for (String sentence : sentences) {
|
147
|
+
AnnotatedSentence annotatedSentence = tag(annotator, sentence, false);
|
148
|
+
System.out.println(annotatedSentence.getRawText());
|
149
|
+
}
|
150
|
+
} catch (Exception ex) {
|
151
|
+
ex.printStackTrace(System.err);
|
152
|
+
}
|
153
|
+
} else {
|
154
|
+
AnnotatedSentence sentence = tag(annotator, args[3], false);
|
155
|
+
System.out.println(sentence.getRawText());
|
156
|
+
}
|
157
|
+
}
|
158
|
+
}
|
@@ -0,0 +1,53 @@
|
|
1
|
+
package lingscope.io;
|
2
|
+
|
3
|
+
import generalutils.FileOperations;
|
4
|
+
import lingscope.structures.AnnotatedSentence;
|
5
|
+
import java.util.ArrayList;
|
6
|
+
import java.util.LinkedList;
|
7
|
+
import java.util.List;
|
8
|
+
import java.util.logging.Level;
|
9
|
+
import java.util.logging.Logger;
|
10
|
+
|
11
|
+
/**
|
12
|
+
* Reads and writes annotated sentences
|
13
|
+
* @author shashank
|
14
|
+
*/
|
15
|
+
public class AnnotatedSentencesIO {
|
16
|
+
|
17
|
+
/**
|
18
|
+
* Reads and returns the list of {@link AnnotatedSentence} from the given
|
19
|
+
* file
|
20
|
+
* @param fileToRead
|
21
|
+
* @return
|
22
|
+
*/
|
23
|
+
public static List<AnnotatedSentence> read(String fileToRead) {
|
24
|
+
List<AnnotatedSentence> sentences = null;
|
25
|
+
try {
|
26
|
+
List<String> rawSentences = FileOperations.readFile(fileToRead);
|
27
|
+
sentences = new ArrayList<AnnotatedSentence>(rawSentences.size());
|
28
|
+
for (String rawSentence : rawSentences) {
|
29
|
+
sentences.add(new AnnotatedSentence(rawSentence));
|
30
|
+
}
|
31
|
+
} catch (Exception ex) {
|
32
|
+
Logger.getLogger(AnnotatedSentencesIO.class.getName()).log(Level.SEVERE, null, ex);
|
33
|
+
}
|
34
|
+
return sentences;
|
35
|
+
}
|
36
|
+
|
37
|
+
/**
|
38
|
+
* Writes the given list of annotated sentences to the given fileToWrite
|
39
|
+
* @param fileToWrite
|
40
|
+
* @param annotatedSentences
|
41
|
+
*/
|
42
|
+
public static void write(String fileToWrite, List<AnnotatedSentence> annotatedSentences) {
|
43
|
+
List<String> rawSentences = new ArrayList<String>(annotatedSentences.size());
|
44
|
+
for (AnnotatedSentence annotatedSentence : annotatedSentences) {
|
45
|
+
rawSentences.add(annotatedSentence.getRawText());
|
46
|
+
}
|
47
|
+
try {
|
48
|
+
FileOperations.writeFile(fileToWrite, rawSentences);
|
49
|
+
} catch (Exception ex) {
|
50
|
+
Logger.getLogger(AnnotatedSentencesIO.class.getName()).log(Level.SEVERE, null, ex);
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
@@ -0,0 +1,105 @@
|
|
1
|
+
package lingscope.structures;
|
2
|
+
|
3
|
+
import java.util.ArrayList;
|
4
|
+
import java.util.List;
|
5
|
+
|
6
|
+
/**
|
7
|
+
* Represents an AnnotatedSentence
|
8
|
+
* @author shashank
|
9
|
+
*/
|
10
|
+
public class AnnotatedSentence {
|
11
|
+
|
12
|
+
public static String nonScopeTag = "O";
|
13
|
+
|
14
|
+
private String rawText;
|
15
|
+
private List<String> words;
|
16
|
+
private List<String> tags;
|
17
|
+
private List<Boolean> isAnnotatedTags;
|
18
|
+
|
19
|
+
/**
|
20
|
+
* Initializes an AnnotatedSentence object
|
21
|
+
*/
|
22
|
+
public AnnotatedSentence() {
|
23
|
+
words = new ArrayList<String>();
|
24
|
+
tags = new ArrayList<String>();
|
25
|
+
isAnnotatedTags = new ArrayList<Boolean>();
|
26
|
+
}
|
27
|
+
|
28
|
+
/**
|
29
|
+
* Creates an object of AnnotatedSentence with the given rawText
|
30
|
+
* @param rawText
|
31
|
+
*/
|
32
|
+
public AnnotatedSentence(String rawText) {
|
33
|
+
this();
|
34
|
+
processRawText(rawText);
|
35
|
+
}
|
36
|
+
|
37
|
+
/**
|
38
|
+
* Processes the given raw text and extracts tags from it
|
39
|
+
* @param rawText
|
40
|
+
*/
|
41
|
+
public final void processRawText(String rawText) {
|
42
|
+
this.rawText = rawText;
|
43
|
+
words.clear();
|
44
|
+
tags.clear();
|
45
|
+
isAnnotatedTags.clear();
|
46
|
+
String[] tokens = rawText.split("\\s+");
|
47
|
+
for (String token : tokens) {
|
48
|
+
String[] wordTag = token.split("\\|");
|
49
|
+
words.add(wordTag[0]);
|
50
|
+
tags.add(wordTag[1]);
|
51
|
+
if (nonScopeTag.equalsIgnoreCase(wordTag[1])) {
|
52
|
+
isAnnotatedTags.add(Boolean.FALSE);
|
53
|
+
} else {
|
54
|
+
isAnnotatedTags.add(Boolean.TRUE);
|
55
|
+
}
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
/**
|
60
|
+
* Gets the is annotated tags for this AnnotatedSentence
|
61
|
+
* @return
|
62
|
+
*/
|
63
|
+
public List<Boolean> getIsAnnotatedTags() {
|
64
|
+
return isAnnotatedTags;
|
65
|
+
}
|
66
|
+
|
67
|
+
/**
|
68
|
+
* Gets the raw text (with tags) for this AnnotatedSentence
|
69
|
+
* @return
|
70
|
+
*/
|
71
|
+
public String getRawText() {
|
72
|
+
return rawText;
|
73
|
+
}
|
74
|
+
|
75
|
+
/**
|
76
|
+
* Gets the tags in this AnnotatedSentence
|
77
|
+
* @return
|
78
|
+
*/
|
79
|
+
public List<String> getTags() {
|
80
|
+
return tags;
|
81
|
+
}
|
82
|
+
|
83
|
+
/**
|
84
|
+
* Gets the words in this AnnotatedSentence
|
85
|
+
* @return
|
86
|
+
*/
|
87
|
+
public List<String> getWords() {
|
88
|
+
return words;
|
89
|
+
}
|
90
|
+
|
91
|
+
/**
|
92
|
+
* Gets the sentence text (without the tags)
|
93
|
+
* @return
|
94
|
+
*/
|
95
|
+
public String getSentenceText() {
|
96
|
+
StringBuilder sentenceText = new StringBuilder();
|
97
|
+
for (String word : words) {
|
98
|
+
sentenceText.append(" ").append(word);
|
99
|
+
}
|
100
|
+
if (sentenceText.length() == 0) {
|
101
|
+
return "";
|
102
|
+
}
|
103
|
+
return sentenceText.substring(1);
|
104
|
+
}
|
105
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
Code,Struct,Label
|
@@ -0,0 +1,2273 @@
|
|
1
|
+
Code Struct Label
|
2
|
+
8000/0 title "Neoplasm, benign"
|
3
|
+
8000/0 sub "Tumor, benign"
|
4
|
+
8000/0 sub "Unclassified tumor, benign"
|
5
|
+
8000/1 title "Neoplasm, uncertain whether benign or malignant"
|
6
|
+
8000/1 sub "Neoplasm, NOS"
|
7
|
+
8000/1 sub "Tumor, NOS"
|
8
|
+
8000/1 sub "Unclassified tumor, uncertain whether benign or malignant"
|
9
|
+
8000/1 sub "Unclassified tumor, borderline malignancy"
|
10
|
+
8000/3 title "Neoplasm, malignant"
|
11
|
+
8000/3 sub "Tumor, malignant, NOS"
|
12
|
+
8000/3 sub Malignancy
|
13
|
+
8000/3 sub Cancer
|
14
|
+
8000/3 sub "Unclassified tumor, malignant"
|
15
|
+
8000/3 sub "Blastoma, NOS"
|
16
|
+
8000/6 title "Neoplasm, metastatic"
|
17
|
+
8000/6 sub "Neoplasm, secondary"
|
18
|
+
8000/6 sub "Tumor, metastatic"
|
19
|
+
8000/6 sub "Tumor, secondary"
|
20
|
+
8000/6 sub Tumor embolus
|
21
|
+
8000/9 title "Neoplasm, malignant, uncertain whether primary or metastatic"
|
22
|
+
8000/9 sub "Unclassified tumor, malignant, uncertain whether primary or metastatic"
|
23
|
+
8001/0 title "Tumor cells, benign"
|
24
|
+
8001/1 title "Tumor cells, uncertain whether benign or malignant"
|
25
|
+
8001/1 sub "Tumor cells, NOS"
|
26
|
+
8001/3 title "Tumor cells, malignant"
|
27
|
+
8002/3 title "Malignant tumor, small cell type"
|
28
|
+
8003/3 title "Malignant tumor, giant cell type"
|
29
|
+
8004/3 title "Malignant tumor, spindle cell type"
|
30
|
+
8004/3 sub "Malignant tumor, fusiform cell type"
|
31
|
+
8005/0 title "Clear cell tumor, NOS"
|
32
|
+
8005/3 title "Malignant tumor, clear cell type"
|
33
|
+
8010/0 title "Epithelial tumor, benign"
|
34
|
+
8010/2 title "Carcinoma in situ, NOS"
|
35
|
+
8010/2 sub "Intraepithelial carcinoma, NOS"
|
36
|
+
8010/3 title "Carcinoma, NOS"
|
37
|
+
8010/3 sub "Epithelial tumor, malignant"
|
38
|
+
8010/6 title "Carcinoma, metastatic, NOS"
|
39
|
+
8010/6 sub Secondary carcinoma
|
40
|
+
8010/9 title Carcinomatosis
|
41
|
+
8011/0 title "Epithelioma, benign"
|
42
|
+
8011/3 title "Epithelioma, malignant"
|
43
|
+
8011/3 sub "Epithelioma, NOS"
|
44
|
+
8012/3 title "Large cell carcinoma, NOS"
|
45
|
+
8013/3 title Large cell neuroendocrine carcinoma
|
46
|
+
8014/3 title Large cell carcinoma with rhabdoid phenotype
|
47
|
+
8015/3 title Glassy cell carcinoma
|
48
|
+
8020/3 title "Carcinoma, undifferentiated, NOS"
|
49
|
+
8021/3 title "Carcinoma, anaplastic, NOS"
|
50
|
+
8022/3 title Pleomorphic carcinoma
|
51
|
+
8030/3 title Giant cell and spindle cell carcinoma
|
52
|
+
8031/3 title Giant cell carcinoma
|
53
|
+
8032/3 title "Spindle cell carcinoma, NOS"
|
54
|
+
8033/3 title Pseudosarcomatous carcinoma
|
55
|
+
8033/3 sub Sarcomatoid carcinoma
|
56
|
+
8034/3 title Polygonal cell carcinoma
|
57
|
+
8035/3 title Carcinoma with osteoclast-like giant cells
|
58
|
+
8040/0 title "Tumorlet, benign"
|
59
|
+
8040/1 title "Tumorlet, NOS"
|
60
|
+
8041/3 title "Small cell carcinoma, NOS"
|
61
|
+
8041/3 sub Reserve cell carcinoma
|
62
|
+
8041/3 sub Round cell carcinoma
|
63
|
+
8041/3 sub Small cell neuroendocrine carcinoma
|
64
|
+
8042/3 title Oat cell carcinoma
|
65
|
+
8043/3 title "Small cell carcinoma, fusiform cell"
|
66
|
+
8044/3 title "Small cell carcinoma, intermediate cell"
|
67
|
+
8045/3 title Combined small cell carcinoma
|
68
|
+
8045/3 sub Mixed small cell carcinoma
|
69
|
+
8045/3 sub Combined small cell-large cell carcinoma
|
70
|
+
8045/3 sub Combined small cell-adenocarcinoma
|
71
|
+
8045/3 sub Combined small cell-squamous cell carcinoma
|
72
|
+
8046/3 title Non-small cell carcinoma
|
73
|
+
8050/0 title "Papilloma, NOS"
|
74
|
+
8050/2 title Papillary carcinoma in situ
|
75
|
+
8050/3 title "Papillary carcinoma, NOS"
|
76
|
+
8051/0 title Verrucous papilloma
|
77
|
+
8051/3 title "Verrucous carcinoma, NOS"
|
78
|
+
8051/3 sub Condylomatous carcinoma
|
79
|
+
8051/3 sub Verrucous squamous cell carcinoma
|
80
|
+
8051/3 sub Verrucous epidermoid carcinoma
|
81
|
+
8051/3 sub Warty carcinoma
|
82
|
+
8052/0 title "Squamous cell papilloma, NOS"
|
83
|
+
8052/0 sub Squamous papilloma
|
84
|
+
8052/0 sub Keratotic papilloma
|
85
|
+
8052/2 title "Papillary squamous cell carcinoma, non-invasive"
|
86
|
+
8052/2 sub Papillary squamous cell carcinoma in situ
|
87
|
+
8052/3 title Papillary squamous cell carcinoma
|
88
|
+
8052/3 sub Papillary epidermoid carcinoma
|
89
|
+
8053/0 title "Squamous cell papilloma, inverted"
|
90
|
+
8060/0 title Squamous papillomatosis
|
91
|
+
8060/0 sub "Papillomatosis, NOS"
|
92
|
+
8070/2 title "Squamous cell carcinoma in situ, NOS"
|
93
|
+
8070/2 sub "Epidermoid carcinoma in situ, NOS"
|
94
|
+
8070/2 sub "Intraepidermal carcinoma, NOS"
|
95
|
+
8070/2 sub Intraepithelial squamous cell carcinoma
|
96
|
+
8070/3 title "Squamous cell carcinoma, NOS"
|
97
|
+
8070/3 sub "Epidermoid carcinoma, NOS"
|
98
|
+
8070/3 sub Squamous carcinoma
|
99
|
+
8070/3 sub Squamous cell epithelioma
|
100
|
+
8070/6 title "Squamous cell carcinoma, metastatic, NOS"
|
101
|
+
8071/3 title "Squamous cell carcinoma, keratinizing, NOS"
|
102
|
+
8071/3 sub "Squamous cell carcinoma, large cell, keratinizing"
|
103
|
+
8071/3 sub "Epidermoid carcinoma, keratinizing"
|
104
|
+
8072/3 title "Squamous cell carcinoma, large cell, nonkeratinizing, NOS"
|
105
|
+
8072/3 sub "Squamous cell carcinoma, nonkeratinizing, NOS"
|
106
|
+
8072/3 sub "Epidermoid carcinoma, large cell, nonkeratinizing"
|
107
|
+
8073/3 title "Squamous cell carcinoma, small cell, nonkeratinizing"
|
108
|
+
8073/3 sub "Epidermoid carcinoma, small cell, nonkeratinizing"
|
109
|
+
8074/3 title "Squamous cell carcinoma, spindle cell"
|
110
|
+
8074/3 sub "Epidermoid carcinoma, spindle cell"
|
111
|
+
8074/3 sub "Squamous cell carcinoma, sarcomatoid"
|
112
|
+
8075/3 title "Squamous cell carcinoma, adenoid"
|
113
|
+
8075/3 sub "Squamous cell carcinoma, pseudoglandular"
|
114
|
+
8075/3 sub "Squamous cell carcinoma, acantholytic"
|
115
|
+
8076/2 title Squamous cell carcinoma in situ with questionable stromal invasion
|
116
|
+
8076/2 sub Epidermoid carcinoma in situ with questionable stromal invasion
|
117
|
+
8076/3 title "Squamous cell carcinoma, microinvasive"
|
118
|
+
8077/2 title "Squamous intraepithelial neoplasia, grade III"
|
119
|
+
8077/2 sub "Cervical intraepithelial neoplasia, grade III"
|
120
|
+
8077/2 sub "CIN III, NOS"
|
121
|
+
8077/2 sub CIN III with severe dysplasia
|
122
|
+
8077/2 sub "Vaginal intraepithelial neoplasia, grade III"
|
123
|
+
8077/2 sub VAIN III
|
124
|
+
8077/2 sub "Vulvar intraepithelial neoplasia, grade III"
|
125
|
+
8077/2 sub VIN III
|
126
|
+
8077/2 sub "Anal intraepithelial neoplasia, grade III"
|
127
|
+
8077/2 sub AIN III
|
128
|
+
8078/3 title Squamous cell carcinoma with horn formation
|
129
|
+
8080/2 title Queyrat erythroplasia
|
130
|
+
8081/2 title Bowen disease
|
131
|
+
8081/2 sub "Intraepidermal squamous cell carcinoma, Bowen type"
|
132
|
+
8082/3 title Lymphoepithelial carcinoma
|
133
|
+
8082/3 sub Lymphoepithelioma
|
134
|
+
8082/3 sub Lymphoepithelioma-like carcinoma
|
135
|
+
8082/3 sub Schmincke tumor
|
136
|
+
8083/3 title Basaloid squamous cell carcinoma
|
137
|
+
8084/3 title "Squamous cell carcinoma, clear cell type"
|
138
|
+
8090/1 title Basal cell tumor
|
139
|
+
8090/3 title "Basal cell carcinoma, NOS"
|
140
|
+
8090/3 sub Basal cell epithelioma
|
141
|
+
8090/3 sub Rodent ulcer
|
142
|
+
8090/3 sub Pigmented basal cell carcinoma
|
143
|
+
8091/3 title Multifocal superficial basal cell carcinoma
|
144
|
+
8091/3 sub Multicentric basal cell carcinoma
|
145
|
+
8092/3 title "Infiltrating basal cell carcinoma, NOS"
|
146
|
+
8092/3 sub "Infiltrating basal cell carcinoma, non-sclerosing"
|
147
|
+
8092/3 sub "Infiltrating basal cell carcinoma, sclerosing"
|
148
|
+
8092/3 sub "Basal cell carcinoma, morpheic"
|
149
|
+
8092/3 sub "Basal cell carcinoma, desmoplastic type"
|
150
|
+
8093/3 title "Basal cell carcinoma, fibroepithelial"
|
151
|
+
8093/3 sub Fibroepithelioma of Pinkus type
|
152
|
+
8093/3 sub "Fibroepithelial basal cell carcinoma, Pinkus type"
|
153
|
+
8093/3 sub Pinkus tumor
|
154
|
+
8093/3 sub "Fibroepithelioma, NOS"
|
155
|
+
8094/3 title Basosquamous carcinoma
|
156
|
+
8094/3 sub Mixed basal-squamous cell carcinoma
|
157
|
+
8095/3 title Metatypical carcinoma
|
158
|
+
8096/0 title Intraepidermal epithelioma of Jadassohn
|
159
|
+
8097/3 title "Basal cell carcinoma, nodular"
|
160
|
+
8097/3 sub "Basal cell carcinoma, micronodular"
|
161
|
+
8098/3 title Adenoid basal carcinoma
|
162
|
+
8100/0 title Trichoepithelioma
|
163
|
+
8100/0 sub Brooke tumor
|
164
|
+
8100/0 sub Epithelioma adenoides cysticum
|
165
|
+
8101/0 title Trichofolliculoma
|
166
|
+
8102/0 title Trichilemmoma
|
167
|
+
8102/3 title Trichilemmocarcinoma
|
168
|
+
8102/3 sub Trichilemmal carcinoma
|
169
|
+
8103/0 title Pilar tumor
|
170
|
+
8103/0 sub Proliferating trichilemmal cyst
|
171
|
+
8103/0 sub Proliferating trichilemmal tumor
|
172
|
+
8110/0 title "Pilomatrixoma, NOS"
|
173
|
+
8110/0 sub Calcifying epithelioma of Malherbe
|
174
|
+
8110/0 sub "Pilomatricoma, NOS"
|
175
|
+
8110/3 title Pilomatrix carcinoma
|
176
|
+
8110/3 sub "Pilomatrixoma, malignant"
|
177
|
+
8110/3 sub "Pilomatricoma, malignant"
|
178
|
+
8110/3 sub Matrical carcinoma
|
179
|
+
8120/0 title "Transitional cell papilloma, benign"
|
180
|
+
8120/0 sub Transitional papilloma
|
181
|
+
8120/1 title "Urothelial papilloma, NOS"
|
182
|
+
8120/1 sub Papilloma of bladder
|
183
|
+
8120/1 sub "Transitional cell papilloma, NOS"
|
184
|
+
8120/2 title Transitional cell carcinoma in situ
|
185
|
+
8120/2 sub Urothelial carcinoma in situ
|
186
|
+
8120/3 title "Transitional cell carcinoma, NOS"
|
187
|
+
8120/3 sub "Urothelial carcinoma, NOS"
|
188
|
+
8120/3 sub Transitional carcinoma
|
189
|
+
8121/0 title "Schneiderian papilloma, NOS"
|
190
|
+
8121/0 sub "Sinonasal papilloma, NOS"
|
191
|
+
8121/0 sub "Sinonasal papilloma, exophytic"
|
192
|
+
8121/0 sub "Sinonasal papilloma, fungiform"
|
193
|
+
8121/0 sub "Transitional cell papilloma, inverted, benign"
|
194
|
+
8121/0 sub "Transitional papilloma, inverted, benign"
|
195
|
+
8121/1 title "Transitional cell papilloma, inverted, NOS"
|
196
|
+
8121/1 sub "Transitional papilloma, inverted, NOS"
|
197
|
+
8121/1 sub "Schneiderian papilloma, inverted"
|
198
|
+
8121/1 sub Columnar cell papilloma
|
199
|
+
8121/1 sub Cylindrical cell papilloma
|
200
|
+
8121/1 sub Oncocytic Schneiderian papilloma
|
201
|
+
8121/3 title Schneiderian carcinoma
|
202
|
+
8121/3 sub Cylindrical cell carcinoma
|
203
|
+
8122/3 title "Transitional cell carcinoma, spindle cell"
|
204
|
+
8122/3 sub "Transitional cell carcinoma, sarcomatoid"
|
205
|
+
8123/3 title Basaloid carcinoma
|
206
|
+
8124/3 title Cloacogenic carcinoma
|
207
|
+
8130/1 title Papillary transitional cell neoplasm of low malignant potential
|
208
|
+
8130/1 sub Papillary urothelial neoplasm of low malignant potential
|
209
|
+
8130/2 title "Papillary transitional cell carcinoma, non-invasive"
|
210
|
+
8130/2 sub "Papillary urothelial carcinoma, non-invasive"
|
211
|
+
8130/3 title Papillary transitional cell carcinoma
|
212
|
+
8130/3 sub Papillary urothelial carcinoma
|
213
|
+
8131/3 title "Transitional cell carcinoma, micropapillary"
|
214
|
+
8140/0 title "Adenoma, NOS"
|
215
|
+
8140/1 title Atypical adenoma
|
216
|
+
8140/1 sub "Bronchial adenoma, NOS"
|
217
|
+
8140/2 title "Adenocarcinoma in situ, NOS"
|
218
|
+
8140/3 title "Adenocarcinoma, NOS"
|
219
|
+
8140/6 title "Adenocarcinoma, metastatic, NOS"
|
220
|
+
8141/3 title Scirrhous adenocarcinoma
|
221
|
+
8141/3 sub Scirrhous carcinoma
|
222
|
+
8141/3 sub Carcinoma with productive fibrosis
|
223
|
+
8142/3 title Linitis plastica
|
224
|
+
8143/3 title Superficial spreading adenocarcinoma
|
225
|
+
8144/3 title "Adenocarcinoma, intestinal type"
|
226
|
+
8144/3 sub "Carcinoma, intestinal type"
|
227
|
+
8145/3 title "Carcinoma, diffuse type"
|
228
|
+
8145/3 sub "Adenocarcinoma, diffuse type"
|
229
|
+
8146/0 title Monomorphic adenoma
|
230
|
+
8147/0 title Basal cell adenoma
|
231
|
+
8147/3 title Basal cell adenocarcinoma
|
232
|
+
8148/2 title "Glandular intraepithelial neoplasia, grade III"
|
233
|
+
8148/2 sub "Prostatic intraepithelial neoplasia, grade III"
|
234
|
+
8148/2 sub PIN III
|
235
|
+
8149/0 title Canalicular adenoma
|
236
|
+
8150/0 title Islet cell adenoma
|
237
|
+
8150/0 sub "Islet cell tumor, benign"
|
238
|
+
8150/0 sub Nesidioblastoma
|
239
|
+
8150/0 sub Islet cell adenomatosis
|
240
|
+
8150/1 title "Islet cell tumor, NOS"
|
241
|
+
8150/3 title Islet cell carcinoma
|
242
|
+
8150/3 sub Islet cell adenocarcinoma
|
243
|
+
8151/0 title "Insulinoma, NOS"
|
244
|
+
8151/0 sub Beta cell adenoma
|
245
|
+
8151/3 title "Insulinoma, malignant"
|
246
|
+
8151/3 sub "Beta cell tumor, malignant"
|
247
|
+
8152/1 title "Glucagonoma, NOS"
|
248
|
+
8152/1 sub "Alpha cell tumor, NOS"
|
249
|
+
8152/3 title "Glucagonoma, malignant"
|
250
|
+
8152/3 sub "Alpha cell tumor, malignant"
|
251
|
+
8153/1 title "Gastrinoma, NOS"
|
252
|
+
8153/1 sub "G cell tumor, NOS"
|
253
|
+
8153/1 sub Gastrin cell tumor
|
254
|
+
8153/3 title "Gastrinoma, malignant"
|
255
|
+
8153/3 sub "G cell tumor, malignant"
|
256
|
+
8153/3 sub "Gastrin cell tumor, malignant"
|
257
|
+
8154/3 title Mixed islet cell and exocrine adenocarcinoma
|
258
|
+
8154/3 sub Mixed acinar-endocrine carcinoma
|
259
|
+
8154/3 sub Mixed ductal-endocrine carcinoma
|
260
|
+
8155/1 title "Vipoma, NOS"
|
261
|
+
8155/3 title "Vipoma, malignant"
|
262
|
+
8156/1 title "Somatostatinoma, NOS"
|
263
|
+
8156/1 sub "Somatostatin cell tumor, NOS"
|
264
|
+
8156/3 title "Somatostatinoma, malignant"
|
265
|
+
8156/3 sub "Somatostatin cell tumor, malignant"
|
266
|
+
8157/1 title "Enteroglucagonoma, NOS"
|
267
|
+
8157/3 title "Enteroglucagonoma, malignant"
|
268
|
+
8160/0 title Bile duct adenoma
|
269
|
+
8160/0 sub Cholangioma
|
270
|
+
8160/3 title Cholangiocarcinoma
|
271
|
+
8160/3 sub Bile duct carcinoma
|
272
|
+
8160/3 sub Bile duct adenocarcinoma
|
273
|
+
8161/0 title Bile duct cystadenoma
|
274
|
+
8161/3 title Bile duct cystadenocarcinoma
|
275
|
+
8162/3 title Klatskin tumor
|
276
|
+
8170/0 title Liver cell adenoma
|
277
|
+
8170/0 sub Hepatocellular adenoma
|
278
|
+
8170/0 sub "Hepatoma, benign"
|
279
|
+
8170/3 title "Hepatocellular carcinoma, NOS"
|
280
|
+
8170/3 sub Liver cell carcinoma
|
281
|
+
8170/3 sub Hepatocarcinoma
|
282
|
+
8170/3 sub "Hepatoma, malignant"
|
283
|
+
8170/3 sub "Hepatoma, NOS"
|
284
|
+
8171/3 title "Hepatocellular carcinoma, fibrolamellar"
|
285
|
+
8172/3 title "Hepatocellular carcinoma, scirrhous"
|
286
|
+
8172/3 sub Sclerosing hepatic carcinoma
|
287
|
+
8173/3 title "Hepatocellular carcinoma, spindle cell variant"
|
288
|
+
8173/3 sub "Hepatocellular carcinoma, sarcomatoid"
|
289
|
+
8174/3 title "Hepatocellular carcinoma, clear cell type"
|
290
|
+
8175/3 title "Hepatocellular carcinoma, pleomorphic type"
|
291
|
+
8180/3 title Combined hepatocellular carcinoma and cholangiocarcinoma
|
292
|
+
8180/3 sub Mixed hepatocellular and bile duct carcinoma
|
293
|
+
8180/3 sub Hepatocholangiocarcinoma
|
294
|
+
8190/0 title Trabecular adenoma
|
295
|
+
8190/3 title Trabecular adenocarcinoma
|
296
|
+
8190/3 sub Trabecular carcinoma
|
297
|
+
8191/0 title Embryonal adenoma
|
298
|
+
8200/0 title Eccrine dermal cylindroma
|
299
|
+
8200/0 sub Turban tumor
|
300
|
+
8200/0 sub Cylindroma of skin
|
301
|
+
8200/3 title Adenoid cystic carcinoma
|
302
|
+
8200/3 sub Adenocystic carcinoma
|
303
|
+
8200/3 sub "Cylindroma, NOS"
|
304
|
+
8200/3 sub "Adenocarcinoma, cylindroid"
|
305
|
+
8200/3 sub "Bronchial adenoma, cylindroid"
|
306
|
+
8201/2 title Cribriform carcinoma in situ
|
307
|
+
8201/2 sub "Ductal carcinoma in situ, cribriform type"
|
308
|
+
8201/3 title "Cribriform carcinoma, NOS"
|
309
|
+
8201/3 sub "Ductal carcinoma, cribriform type"
|
310
|
+
8202/0 title Microcystic adenoma
|
311
|
+
8204/0 title Lactating adenoma
|
312
|
+
8210/0 title "Adenomatous polyp, NOS"
|
313
|
+
8210/0 sub Polypoid adenoma
|
314
|
+
8210/2 title Adenocarcinoma in situ in adenomatous polyp
|
315
|
+
8210/2 sub Adenocarcinoma in situ in tubular adenoma
|
316
|
+
8210/2 sub Carcinoma in situ in adenomatous polyp
|
317
|
+
8210/2 sub Adenocarcinoma in situ in polypoid adenoma
|
318
|
+
8210/2 sub "Adenocarcinoma in situ in a polyp, NOS"
|
319
|
+
8210/2 sub "Carcinoma in situ in a polyp, NOS"
|
320
|
+
8210/3 title Adenocarcinoma in adenomatous polyp
|
321
|
+
8210/3 sub Adenocarcinoma in tubular adenoma
|
322
|
+
8210/3 sub Carcinoma in adenomatous polyp
|
323
|
+
8210/3 sub Adenocarcinoma in polypoid adenoma
|
324
|
+
8210/3 sub "Adenocarcinoma in a polyp, NOS"
|
325
|
+
8210/3 sub "Carcinoma in a polyp, NOS"
|
326
|
+
8211/0 title "Tubular adenoma, NOS"
|
327
|
+
8211/3 title Tubular adenocarcinoma
|
328
|
+
8211/3 sub Tubular carcinoma
|
329
|
+
8212/0 title Flat adenoma
|
330
|
+
8213/0 title Serrated adenoma
|
331
|
+
8213/0 sub Mixed adenomatous and hyperplastic polyp
|
332
|
+
8214/3 title Parietal cell carcinoma
|
333
|
+
8214/3 sub Parietal cell adenocarcinoma
|
334
|
+
8215/3 title Adenocarcinoma of anal glands
|
335
|
+
8215/3 sub Adenocarcinoma of anal ducts
|
336
|
+
8220/0 title Adenomatous polyposis coli
|
337
|
+
8220/0 sub Familial polyposis coli
|
338
|
+
8220/0 sub "Adenomatosis, NOS"
|
339
|
+
8220/3 title Adenocarcinoma in adenomatous polyposis coli
|
340
|
+
8221/0 title Multiple adenomatous polyps
|
341
|
+
8221/3 title Adenocarcinoma in multiple adenomatous polyps
|
342
|
+
8230/2 title "Ductal carcinoma in situ, solid type"
|
343
|
+
8230/2 sub "Intraductal carcinoma, solid type"
|
344
|
+
8230/3 title "Solid carcinoma, NOS"
|
345
|
+
8230/3 sub Solid carcinoma with mucin formation
|
346
|
+
8230/3 sub Solid adenocarcinoma with mucin formation
|
347
|
+
8231/3 title Carcinoma simplex
|
348
|
+
8240/1 title Carcinoid tumor of uncertain malignant potential
|
349
|
+
8240/1 sub "Carcinoid tumor, NOS, of appendix"
|
350
|
+
8240/1 sub "Carcinoid, NOS, of appendix"
|
351
|
+
8240/1 sub "Carcinoid tumor, argentaffin, NOS"
|
352
|
+
8240/1 sub "Argentaffinoma, NOS"
|
353
|
+
8240/3 title "Carcinoid tumor, NOS"
|
354
|
+
8240/3 sub "Carcinoid, NOS"
|
355
|
+
8240/3 sub Typical carcinoid
|
356
|
+
8240/3 sub "Bronchial adenoma, carcinoid"
|
357
|
+
8241/3 title Enterochromaffin cell carcinoid
|
358
|
+
8241/3 sub "Carcinoid tumor, argentaffin, malignant"
|
359
|
+
8241/3 sub "Argentaffinoma, malignant"
|
360
|
+
8241/3 sub EC cell carcinoid
|
361
|
+
8241/3 sub Serotonin producing carcinoid
|
362
|
+
8242/1 title "Enterochromaffin-like cell carcinoid, NOS"
|
363
|
+
8242/1 sub "ECL cell carcinoid, NOS"
|
364
|
+
8242/3 title "Enterochromaffin-like cell tumor, malignant"
|
365
|
+
8242/3 sub "ECL cell carcinoid, malignant"
|
366
|
+
8243/3 title Goblet cell carcinoid
|
367
|
+
8243/3 sub Mucocarcinoid tumor
|
368
|
+
8243/3 sub Mucinous carcinoid
|
369
|
+
8244/3 title Composite carcinoid
|
370
|
+
8244/3 sub Combined carcinoid and adenocarcinoma
|
371
|
+
8244/3 sub Mixed carcinoid-adenocarcinoma
|
372
|
+
8245/1 title Tubular carcinoid
|
373
|
+
8245/3 title Adenocarcinoid tumor
|
374
|
+
8246/3 title "Neuroendocrine carcinoma, NOS"
|
375
|
+
8247/3 title Merkel cell carcinoma
|
376
|
+
8247/3 sub Merkel cell tumor
|
377
|
+
8247/3 sub Primary cutaneous neuroendocrine carcinoma
|
378
|
+
8248/1 title Apudoma
|
379
|
+
8249/3 title Atypical carcinoid tumor
|
380
|
+
8250/1 title Pulmonary adenomatosis
|
381
|
+
8250/3 title "Bronchiolo-alveolar adenocarcinoma, NOS"
|
382
|
+
8250/3 sub "Bronchiolo-alveolar carcinoma, NOS"
|
383
|
+
8250/3 sub Bronchiolar adenocarcinoma
|
384
|
+
8250/3 sub Bronchiolar carcinoma
|
385
|
+
8250/3 sub Alveolar cell carcinoma
|
386
|
+
8251/0 title Alveolar adenoma
|
387
|
+
8251/3 title Alveolar adenocarcinoma
|
388
|
+
8251/3 sub Alveolar carcinoma
|
389
|
+
8252/3 title "Bronchiolo-alveolar carcinoma, non- mucinous"
|
390
|
+
8252/3 sub "Bronchiolo-alveolar carcinoma, Clara cell"
|
391
|
+
8252/3 sub "Bronchiolo-alveolar carcinoma, type II pneumocyte"
|
392
|
+
8253/3 title "Bronchiolo-alveolar carcinoma, mucinous"
|
393
|
+
8253/3 sub "Bronchiolo-alveolar carcinoma, goblet cell type"
|
394
|
+
8254/3 title "Bronchiolo-alveolar carcinoma, mixed mucinous and non-mucinous"
|
395
|
+
8254/3 sub "Bronchiolo-alveolar carcinoma, Clara cell and goblet cell type"
|
396
|
+
8254/3 sub "Bronchiolo-alveolar carcinoma, type II pneumocyte and goblet cell type"
|
397
|
+
8254/3 sub "Bronchiolo-alveolar carcinoma, indeterminate type"
|
398
|
+
8255/3 title Adenocarcinoma with mixed subtypes
|
399
|
+
8255/3 sub Adenocarcinoma combined with other types of carcinoma
|
400
|
+
8260/0 title "Papillary adenoma, NOS"
|
401
|
+
8260/0 sub Glandular papilloma
|
402
|
+
8260/3 title "Papillary adenocarcinoma, NOS"
|
403
|
+
8260/3 sub Papillary carcinoma of thyroid
|
404
|
+
8260/3 sub Papillary renal cell carcinoma
|
405
|
+
8261/0 title "Villous adenoma, NOS"
|
406
|
+
8261/0 sub Villous papilloma
|
407
|
+
8261/2 title Adenocarcinoma in situ in villous adenoma
|
408
|
+
8261/3 title Adenocarcinoma in villous adenoma
|
409
|
+
8262/3 title Villous adenocarcinoma
|
410
|
+
8263/0 title "Tubulovillous adenoma, NOS"
|
411
|
+
8263/0 sub Villoglandular adenoma
|
412
|
+
8263/0 sub Papillotubular adenoma
|
413
|
+
8263/2 title Adenocarcinoma in situ in tubulovillous adenoma
|
414
|
+
8263/3 title Adenocarcinoma in tubulovillous adenoma
|
415
|
+
8263/3 sub Papillotubular adenocarcinoma
|
416
|
+
8263/3 sub Tubulopapillary adenocarcinoma
|
417
|
+
8264/0 title "Papillomatosis, glandular"
|
418
|
+
8264/0 sub Biliary papillomatosis
|
419
|
+
8270/0 title Chromophobe adenoma
|
420
|
+
8270/3 title Chromophobe carcinoma
|
421
|
+
8270/3 sub Chromophobe adenocarcinoma
|
422
|
+
8271/0 title Prolactinoma
|
423
|
+
8272/0 title "Pituitary adenoma, NOS"
|
424
|
+
8272/3 title "Pituitary carcinoma, NOS"
|
425
|
+
8280/0 title Acidophil adenoma
|
426
|
+
8280/0 sub Eosinophil adenoma
|
427
|
+
8280/3 title Acidophil carcinoma
|
428
|
+
8280/3 sub Acidophil adenocarcinoma
|
429
|
+
8280/3 sub Eosinophil carcinoma
|
430
|
+
8280/3 sub Eosinophil adenocarcinoma
|
431
|
+
8281/0 title Mixed acidophil-basophil adenoma
|
432
|
+
8281/3 title Mixed acidophil-basophil carcinoma
|
433
|
+
8290/0 title Oxyphilic adenoma
|
434
|
+
8290/0 sub Oncocytic adenoma
|
435
|
+
8290/0 sub Oncocytoma
|
436
|
+
8290/0 sub Hurthle cell adenoma
|
437
|
+
8290/0 sub Hurthle cell tumor
|
438
|
+
8290/0 sub "Follicular adenoma, oxyphilic cell"
|
439
|
+
8290/3 title Oxyphilic adenocarcinoma
|
440
|
+
8290/3 sub Oncocytic carcinoma
|
441
|
+
8290/3 sub Oncocytic adenocarcinoma
|
442
|
+
8290/3 sub Hurthle cell carcinoma
|
443
|
+
8290/3 sub Hurthle cell adenocarcinoma
|
444
|
+
8290/3 sub "Follicular carcinoma, oxyphilic cell"
|
445
|
+
8300/0 title Basophil adenoma
|
446
|
+
8300/0 sub Mucoid cell adenoma
|
447
|
+
8300/3 title Basophil carcinoma
|
448
|
+
8300/3 sub Basophil adenocarcinoma
|
449
|
+
8300/3 sub Mucoid cell adenocarcinoma
|
450
|
+
8310/0 title Clear cell adenoma
|
451
|
+
8310/3 title "Clear cell adenocarcinoma, NOS"
|
452
|
+
8310/3 sub Clear cell carcinoma
|
453
|
+
8310/3 sub "Clear cell adenocarcinoma, mesonephroid"
|
454
|
+
8311/1 title Hypernephroid tumor
|
455
|
+
8312/3 title "Renal cell carcinoma, NOS"
|
456
|
+
8312/3 sub Renal cell adenocarcinoma
|
457
|
+
8312/3 sub Grawitz tumor
|
458
|
+
8312/3 sub Hypernephroma
|
459
|
+
8313/0 title Clear cell adenofibroma
|
460
|
+
8313/0 sub Clear cell cystadenofibroma
|
461
|
+
8313/1 title Clear cell adenofibroma of borderline malignancy
|
462
|
+
8313/1 sub Clear cell cystadenofibroma of borderline malignancy
|
463
|
+
8313/3 title Clear cell adenocarcinofibroma
|
464
|
+
8313/3 sub Clear cell cystadenocarcinofibroma
|
465
|
+
8314/3 title Lipid-rich carcinoma
|
466
|
+
8315/3 title Glycogen-rich carcinoma
|
467
|
+
8316/3 title Cyst-associated renal cell carcinoma
|
468
|
+
8317/3 title "Renal cell carcinoma, chromophobe type"
|
469
|
+
8317/3 sub Chromophobe cell renal carcinoma
|
470
|
+
8318/3 title "Renal cell carcinoma, sarcomatoid"
|
471
|
+
8318/3 sub "Renal cell carcinoma, spindle cell"
|
472
|
+
8319/3 title Collecting duct carcinoma
|
473
|
+
8319/3 sub Bellini duct carcinoma
|
474
|
+
8319/3 sub "Renal carcinoma, collecting duct type"
|
475
|
+
8320/3 title Granular cell carcinoma
|
476
|
+
8320/3 sub Granular cell adenocarcinoma
|
477
|
+
8321/0 title Chief cell adenoma
|
478
|
+
8322/0 title Water-clear cell adenoma
|
479
|
+
8322/3 title Water-clear cell adenocarcinoma
|
480
|
+
8322/3 sub Water-clear cell carcinoma
|
481
|
+
8323/0 title Mixed cell adenoma
|
482
|
+
8323/3 title Mixed cell adenocarcinoma
|
483
|
+
8324/0 title Lipoadenoma
|
484
|
+
8324/0 sub Adenolipoma
|
485
|
+
8325/0 title Metanephric adenoma
|
486
|
+
8330/0 title Follicular adenoma
|
487
|
+
8330/1 title Atypical follicular adenoma
|
488
|
+
8330/3 title "Follicular adenocarcinoma, NOS"
|
489
|
+
8330/3 sub "Follicular carcinoma, NOS"
|
490
|
+
8331/3 title "Follicular adenocarcinoma, well differentiated"
|
491
|
+
8331/3 sub "Follicular carcinoma, well differentiated"
|
492
|
+
8332/3 title "Follicular adenocarcinoma, trabecular"
|
493
|
+
8332/3 sub "Follicular carcinoma, trabecular"
|
494
|
+
8332/3 sub "Follicular adenocarcinoma, moderately differentiated"
|
495
|
+
8332/3 sub "Follicular carcinoma, moderately differentiated"
|
496
|
+
8333/0 title "Microfollicular adenoma, NOS"
|
497
|
+
8333/0 sub Fetal adenoma
|
498
|
+
8333/3 title Fetal adenocarcinoma
|
499
|
+
8334/0 title Macrofollicular adenoma
|
500
|
+
8334/0 sub Colloid adenoma
|
501
|
+
8335/3 title "Follicular carcinoma, minimally invasive"
|
502
|
+
8335/3 sub "Follicular carcinoma, encapsulated"
|
503
|
+
8336/0 title Hyalinizing trabecular adenoma
|
504
|
+
8337/3 title Insular carcinoma
|
505
|
+
8340/3 title "Papillary carcinoma, follicular variant"
|
506
|
+
8340/3 sub "Papillary adenocarcinoma, follicular variant"
|
507
|
+
8340/3 sub Papillary and follicular adenocarcinoma
|
508
|
+
8340/3 sub Papillary and follicular carcinoma
|
509
|
+
8341/3 title Papillary microcarcinoma
|
510
|
+
8342/3 title "Papillary carcinoma, oxyphilic cell"
|
511
|
+
8343/3 title "Papillary carcinoma, encapsulated"
|
512
|
+
8344/3 title "Papillary carcinoma, columnar cell"
|
513
|
+
8344/3 sub "Papillary carcinoma, tall cell"
|
514
|
+
8345/3 title Medullary carcinoma with amyloid stroma
|
515
|
+
8345/3 sub Parafollicular cell carcinoma
|
516
|
+
8345/3 sub C cell carcinoma
|
517
|
+
8346/3 title Mixed medullary-follicular carcinoma
|
518
|
+
8347/3 title Mixed medullary-papillary carcinoma
|
519
|
+
8350/3 title Nonencapsulated sclerosing carcinoma
|
520
|
+
8350/3 sub Nonencapsulated sclerosing adenocarcinoma
|
521
|
+
8350/3 sub Nonencapsulated sclerosing tumor
|
522
|
+
8350/3 sub "Papillary carcinoma, diffuse sclerosing"
|
523
|
+
8360/1 title Multiple endocrine adenomas
|
524
|
+
8360/1 sub Endocrine adenomatosis
|
525
|
+
8361/0 title Juxtaglomerular tumor
|
526
|
+
8361/0 sub Reninoma
|
527
|
+
8370/0 title "Adrenal cortical adenoma, NOS"
|
528
|
+
8370/0 sub "Adrenal cortical tumor, benign"
|
529
|
+
8370/0 sub "Adrenal cortical tumor, NOS"
|
530
|
+
8370/3 title Adrenal cortical carcinoma
|
531
|
+
8370/3 sub Adrenal cortical adenocarcinoma
|
532
|
+
8370/3 sub "Adrenal cortical tumor, malignant"
|
533
|
+
8371/0 title "Adrenal cortical adenoma, compact cell"
|
534
|
+
8372/0 title "Adrenal cortical adenoma, pigmented"
|
535
|
+
8372/0 sub Black adenoma
|
536
|
+
8372/0 sub Pigmented adenoma
|
537
|
+
8373/0 title "Adrenal cortical adenoma, clear cell"
|
538
|
+
8374/0 title "Adrenal cortical adenoma, glomerulosa cell"
|
539
|
+
8375/0 title "Adrenal cortical adenoma, mixed cell"
|
540
|
+
8380/0 title "Endometrioid adenoma, NOS"
|
541
|
+
8380/0 sub "Endometrioid cystadenoma, NOS"
|
542
|
+
8380/1 title "Endometrioid adenoma, borderline malignancy"
|
543
|
+
8380/1 sub "Endometrioid cystadenoma, borderline malignancy"
|
544
|
+
8380/1 sub Endometrioid tumor of low malignant potential
|
545
|
+
8380/1 sub Atypical proliferative endometrioid tumor
|
546
|
+
8380/3 title "Endometrioid adenocarcinoma, NOS"
|
547
|
+
8380/3 sub "Endometrioid carcinoma, NOS"
|
548
|
+
8380/3 sub Endometrioid cystadenocarcinoma
|
549
|
+
8381/0 title "Endometrioid adenofibroma, NOS"
|
550
|
+
8381/0 sub "Endometrioid cystadenofibroma, NOS"
|
551
|
+
8381/1 title "Endometrioid adenofibroma, borderline malignancy"
|
552
|
+
8381/1 sub "Endometrioid cystadenofibroma, borderline malignancy"
|
553
|
+
8381/3 title "Endometrioid adenofibroma, malignant"
|
554
|
+
8381/3 sub "Endometrioid cystadenofibroma, malignant"
|
555
|
+
8382/3 title "Endometrioid adenocarcinoma, secretory variant"
|
556
|
+
8383/3 title "Endometrioid adenocarcinoma, ciliated cell variant"
|
557
|
+
8384/3 title "Adenocarcinoma, endocervical type"
|
558
|
+
8390/0 title Skin appendage adenoma
|
559
|
+
8390/0 sub "Skin appendage tumor, benign"
|
560
|
+
8390/0 sub "Adnexal tumor, benign"
|
561
|
+
8390/3 title Skin appendage carcinoma
|
562
|
+
8390/3 sub Adnexal carcinoma
|
563
|
+
8391/0 title Follicular fibroma
|
564
|
+
8391/0 sub Trichodiscoma
|
565
|
+
8391/0 sub Fibrofolliculoma
|
566
|
+
8391/0 sub Perifollicular fibroma
|
567
|
+
8392/0 title Syringofibroadenoma
|
568
|
+
8400/0 title Sweat gland adenoma
|
569
|
+
8400/0 sub "Sweat gland tumor, benign"
|
570
|
+
8400/0 sub "Hidradenoma, NOS"
|
571
|
+
8400/0 sub "Syringadenoma, NOS"
|
572
|
+
8400/1 title "Sweat gland tumor, NOS"
|
573
|
+
8400/3 title Sweat gland adenocarcinoma
|
574
|
+
8400/3 sub Sweat gland carcinoma
|
575
|
+
8400/3 sub "Sweat gland tumor, malignant"
|
576
|
+
8401/0 title Apocrine adenoma
|
577
|
+
8401/0 sub Apocrine cystadenoma
|
578
|
+
8401/3 title Apocrine adenocarcinoma
|
579
|
+
8402/0 title Nodular hidradenoma
|
580
|
+
8402/0 sub Eccrine acrospiroma
|
581
|
+
8402/0 sub Clear cell hidradenoma
|
582
|
+
8402/3 title "Nodular hidradenoma, malignant"
|
583
|
+
8402/3 sub Hidradenocarcinoma
|
584
|
+
8403/0 title Eccrine spiradenoma
|
585
|
+
8403/0 sub "Spiradenoma, NOS"
|
586
|
+
8403/3 title Malignant eccrine spiradenoma
|
587
|
+
8404/0 title Hidrocystoma
|
588
|
+
8404/0 sub Eccrine cystadenoma
|
589
|
+
8405/0 title Papillary hidradenoma
|
590
|
+
8405/0 sub Hidradenoma papilliferum
|
591
|
+
8406/0 title Papillary syringadenoma
|
592
|
+
8406/0 sub Papillary syringocystadenoma
|
593
|
+
8406/0 sub Syringocystadenoma papilliferum
|
594
|
+
8407/0 title "Syringoma, NOS"
|
595
|
+
8407/3 title Sclerosing sweat duct carcinoma
|
596
|
+
8407/3 sub Syringomatous carcinoma
|
597
|
+
8407/3 sub Microcystic adnexal carcinoma
|
598
|
+
8408/0 title Eccrine papillary adenoma
|
599
|
+
8408/1 title Aggressive digital papillary adenoma
|
600
|
+
8408/3 title Eccrine papillary adenocarcinoma
|
601
|
+
8408/3 sub Digital papillary adenocarcinoma
|
602
|
+
8409/0 title Eccrine poroma
|
603
|
+
8409/3 title "Eccrine poroma, malignant"
|
604
|
+
8409/3 sub Porocarcinoma
|
605
|
+
8410/0 title Sebaceous adenoma
|
606
|
+
8410/0 sub Sebaceous epithelioma
|
607
|
+
8410/3 title Sebaceous adenocarcinoma
|
608
|
+
8410/3 sub Sebaceous carcinoma
|
609
|
+
8413/3 title Eccrine adenocarcinoma
|
610
|
+
8420/0 title Ceruminous adenoma
|
611
|
+
8420/3 title Ceruminous adenocarcinoma
|
612
|
+
8420/3 sub Ceruminous carcinoma
|
613
|
+
8430/1 title Mucoepidermoid tumor
|
614
|
+
8430/3 title Mucoepidermoid carcinoma
|
615
|
+
8440/0 title "Cystadenoma, NOS"
|
616
|
+
8440/0 sub "Cystoma, NOS"
|
617
|
+
8440/3 title "Cystadenocarcinoma, NOS"
|
618
|
+
8441/0 title "Serous cystadenoma, NOS"
|
619
|
+
8441/0 sub Serous cystoma
|
620
|
+
8441/0 sub Serous microcystic adenoma
|
621
|
+
8441/3 title "Serous cystadenocarcinoma, NOS"
|
622
|
+
8441/3 sub "Serous adenocarcinoma, NOS"
|
623
|
+
8441/3 sub "Serous carcinoma, NOS"
|
624
|
+
8442/1 title "Serous cystadenoma, borderline malignancy"
|
625
|
+
8442/1 sub "Serous tumor, NOS, of low malignant potential"
|
626
|
+
8442/1 sub Atypical proliferating serous tumor
|
627
|
+
8443/0 title Clear cell cystadenoma
|
628
|
+
8444/1 title Clear cell cystic tumor of borderline malignancy
|
629
|
+
8444/1 sub Atypical proliferating clear cell tumor
|
630
|
+
8450/0 title "Papillary cystadenoma, NOS"
|
631
|
+
8450/3 title "Papillary cystadenocarcinoma, NOS"
|
632
|
+
8450/3 sub Papillocystic adenocarcinoma
|
633
|
+
8451/1 title "Papillary cystadenoma, borderline malignancy"
|
634
|
+
8452/1 title Solid pseudopapillary tumor
|
635
|
+
8452/1 sub Papillary cystic tumor
|
636
|
+
8452/1 sub Solid and papillary epithelial neoplasm
|
637
|
+
8452/1 sub Solid and cystic tumor
|
638
|
+
8452/3 title Solid pseudopapillary carcinoma
|
639
|
+
8453/0 title Intraductal papillary-mucinous adenoma
|
640
|
+
8453/1 title Intraductal papillary-mucinous tumor with moderate dysplasia
|
641
|
+
8453/2 title "Intraductal papillary-mucinous carcinoma, non-invasive"
|
642
|
+
8453/3 title "Intraductal papillary-mucinous carcinoma, invasive"
|
643
|
+
8454/0 title Cystic tumor of atrio-ventricular node
|
644
|
+
8460/0 title "Papillary serous cystadenoma, NOS"
|
645
|
+
8460/3 title Papillary serous cystadenocarcinoma
|
646
|
+
8460/3 sub Papillary serous adenocarcinoma
|
647
|
+
8460/3 sub Micropapillary serous carcinoma
|
648
|
+
8461/0 title Serous surface papilloma
|
649
|
+
8461/3 title Serous surface papillary carcinoma
|
650
|
+
8461/3 sub Primary serous papillary carcinoma of peritoneum
|
651
|
+
8462/1 title Serous papillary cystic tumor of borderline malignancy
|
652
|
+
8462/1 sub "Papillary serous cystadenoma, borderline malignancy"
|
653
|
+
8462/1 sub Papillary serous tumor of low malignant potential
|
654
|
+
8462/1 sub Atypical proliferative papillary serous tumor
|
655
|
+
8463/1 title Serous surface papillary tumor of borderline malignancy
|
656
|
+
8470/0 title "Mucinous cystadenoma, NOS"
|
657
|
+
8470/0 sub Mucinous cystoma
|
658
|
+
8470/0 sub "Pseudomucinous cystadenoma, NOS"
|
659
|
+
8470/1 title Mucinous cystic tumor with moderate dysplasia
|
660
|
+
8470/2 title "Mucinous cystadenocarcinoma, non-invasive"
|
661
|
+
8470/3 title "Mucinous cystadenocarcinoma, NOS"
|
662
|
+
8470/3 sub Pseudomucinous adenocarcinoma
|
663
|
+
8470/3 sub "Pseudomucinous cystadenocarcinoma, NOS"
|
664
|
+
8471/0 title "Papillary mucinous cystadenoma, NOS"
|
665
|
+
8471/0 sub "Papillary pseudomucinous cystadenoma, NOS"
|
666
|
+
8471/3 title Papillary mucinous cystadenocarcinoma
|
667
|
+
8471/3 sub Papillary pseudomucinous cystadenocarcinoma
|
668
|
+
8472/1 title Mucinous cystic tumor of borderline malignancy
|
669
|
+
8472/1 sub "Mucinous cystadenoma, borderline malignancy"
|
670
|
+
8472/1 sub "Pseudomucinous cystadenoma, borderline malignancy"
|
671
|
+
8472/1 sub "Mucinous tumor, NOS, of low malignant potential"
|
672
|
+
8472/1 sub Atypical proliferative mucinous tumor
|
673
|
+
8473/1 title "Papillary mucinous cystadenoma, borderline malignancy"
|
674
|
+
8473/1 sub "Papillary pseudomucinous cystadenoma, borderline malignancy"
|
675
|
+
8473/1 sub Papillary mucinous tumor of low malignant potential
|
676
|
+
8480/0 title Mucinous adenoma
|
677
|
+
8480/3 title Mucinous adenocarcinoma
|
678
|
+
8480/3 sub Mucinous carcinoma
|
679
|
+
8480/3 sub Colloid adenocarcinoma
|
680
|
+
8480/3 sub Colloid carcinoma
|
681
|
+
8480/3 sub Gelatinous adenocarcinoma
|
682
|
+
8480/3 sub Gelatinous carcinoma
|
683
|
+
8480/3 sub Mucoid adenocarcinoma
|
684
|
+
8480/3 sub Mucoid carcinoma
|
685
|
+
8480/3 sub Mucous adenocarcinoma
|
686
|
+
8480/3 sub Mucous carcinoma
|
687
|
+
8480/3 sub Pseudomyxoma peritonei with unknown primary site
|
688
|
+
8480/6 title Pseudomyxoma peritonei
|
689
|
+
8481/3 title Mucin-producing adenocarcinoma
|
690
|
+
8481/3 sub Mucin-producing carcinoma
|
691
|
+
8481/3 sub Mucin-secreting adenocarcinoma
|
692
|
+
8481/3 sub Mucin-secreting carcinoma
|
693
|
+
8482/3 title "Mucinous adenocarcinoma, endocervical type"
|
694
|
+
8490/3 title Signet ring cell carcinoma
|
695
|
+
8490/3 sub Signet ring cell adenocarcinoma
|
696
|
+
8490/6 title Metastatic signet ring cell carcinoma
|
697
|
+
8490/6 sub Krukenberg tumor
|
698
|
+
8500/2 title "Intraductal carcinoma, noninfiltrating, NOS"
|
699
|
+
8500/2 sub "Intraductal adenocarcinoma, noninfiltrating, NOS"
|
700
|
+
8500/2 sub "Intraductal carcinoma, NOS"
|
701
|
+
8500/2 sub "Ductal carcinoma in situ, NOS"
|
702
|
+
8500/2 sub "DCIS, NOS"
|
703
|
+
8500/2 sub Ductal intraepithelial neoplasia 3
|
704
|
+
8500/2 sub DIN 3
|
705
|
+
8500/3 title "Infiltrating duct carcinoma, NOS"
|
706
|
+
8500/3 sub Infiltrating duct adenocarcinoma
|
707
|
+
8500/3 sub "Duct adenocarcinoma, NOS"
|
708
|
+
8500/3 sub "Duct carcinoma, NOS"
|
709
|
+
8500/3 sub Duct cell carcinoma
|
710
|
+
8500/3 sub "Ductal carcinoma, NOS"
|
711
|
+
8501/2 title "Comedocarcinoma, noninfiltrating"
|
712
|
+
8501/2 sub "Ductal carcinoma in situ, comedo type"
|
713
|
+
8501/2 sub "DCIS, comedo type"
|
714
|
+
8501/3 title "Comedocarcinoma, NOS"
|
715
|
+
8502/3 title Secretory carcinoma of breast
|
716
|
+
8502/3 sub Juvenile carcinoma of breast
|
717
|
+
8503/0 title Intraductal papilloma
|
718
|
+
8503/0 sub "Duct adenoma, NOS"
|
719
|
+
8503/0 sub Ductal papilloma
|
720
|
+
8503/2 title Noninfiltrating intraductal papillary adenocarcinoma
|
721
|
+
8503/2 sub Noninfiltrating intraductal papillary carcinoma
|
722
|
+
8503/2 sub "Intraductal papillary adenocarcinoma, NOS"
|
723
|
+
8503/2 sub "Intraductal papillary carcinoma, NOS"
|
724
|
+
8503/2 sub "Ductal carcinoma in situ, papillary"
|
725
|
+
8503/2 sub "DCIS, papillary"
|
726
|
+
8503/3 title Intraductal papillary adenocarcinoma with invasion
|
727
|
+
8503/3 sub Infiltrating papillary adenocarcinoma
|
728
|
+
8503/3 sub Infiltrating and papillary adenocarcinoma
|
729
|
+
8504/0 title Intracystic papillary adenoma
|
730
|
+
8504/0 sub Intracystic papilloma
|
731
|
+
8504/2 title Noninfiltrating intracystic carcinoma
|
732
|
+
8504/3 title "Intracystic carcinoma, NOS"
|
733
|
+
8504/3 sub Intracystic papillary adenocarcinoma
|
734
|
+
8505/0 title "Intraductal papillomatosis, NOS"
|
735
|
+
8505/0 sub Diffuse intraductal papillomatosis
|
736
|
+
8506/0 title Adenoma of nipple
|
737
|
+
8506/0 sub Subareolar duct papillomatosis
|
738
|
+
8507/2 title Intraductal micropapillary carcinoma
|
739
|
+
8507/2 sub "Ductal carcinoma in situ, micropapillary"
|
740
|
+
8507/2 sub "Intraductal carcinoma, clinging"
|
741
|
+
8508/3 title Cystic hypersecretory carcinoma
|
742
|
+
8510/3 title "Medullary carcinoma, NOS"
|
743
|
+
8510/3 sub Medullary adenocarcinoma
|
744
|
+
8512/3 title Medullary carcinoma with lymphoid stroma
|
745
|
+
8513/3 title Atypical medullary carcinoma
|
746
|
+
8514/3 title "Duct carcinoma, desmoplastic type"
|
747
|
+
8520/2 title "Lobular carcinoma in situ, NOS"
|
748
|
+
8520/2 sub "Lobular carcinoma, noninfiltrating"
|
749
|
+
8520/2 sub "LCIS, NOS"
|
750
|
+
8520/3 title "Lobular carcinoma, NOS"
|
751
|
+
8520/3 sub Lobular adenocarcinoma
|
752
|
+
8851/0 title Fibrolipoma
|
753
|
+
8851/3 title "Liposarcoma, well differentiated"
|
754
|
+
8851/3 sub "Liposarcoma, differentiated"
|
755
|
+
8851/3 sub Lipoma-like liposarcoma
|
756
|
+
8851/3 sub Sclerosing liposarcoma
|
757
|
+
8851/3 sub Inflammatory liposarcoma
|
758
|
+
8852/0 title Fibromyxolipoma
|
759
|
+
8852/0 sub Myxolipoma
|
760
|
+
8852/3 title Myxoid liposarcoma
|
761
|
+
8852/3 sub Myxoliposarcoma
|
762
|
+
8853/3 title Round cell liposarcoma
|
763
|
+
8854/0 title Pleomorphic lipoma
|
764
|
+
8854/3 title Pleomorphic liposarcoma
|
765
|
+
8855/3 title Mixed liposarcoma
|
766
|
+
8856/0 title Intramuscular lipoma
|
767
|
+
8856/0 sub Infiltrating lipoma
|
768
|
+
8856/0 sub Infiltrating angiolipoma
|
769
|
+
8857/0 title Spindle cell lipoma
|
770
|
+
8857/3 title Fibroblastic liposarcoma
|
771
|
+
8858/3 title Dedifferentiated liposarcoma
|
772
|
+
8860/0 title Angiomyolipoma
|
773
|
+
8861/0 title "Angiolipoma, NOS"
|
774
|
+
8862/0 title Chondroid lipoma
|
775
|
+
8870/0 title Myelolipoma
|
776
|
+
8880/0 title Hibernoma
|
777
|
+
8880/0 sub Fetal fat cell lipoma
|
778
|
+
8880/0 sub Brown fat tumor
|
779
|
+
8881/0 title Lipoblastomatosis
|
780
|
+
8881/0 sub "Fetal lipoma, NOS"
|
781
|
+
8881/0 sub Fetal lipomatosis
|
782
|
+
8881/0 sub Lipoblastoma
|
783
|
+
8890/0 title "Leiomyoma, NOS"
|
784
|
+
8890/0 sub Fibroid uterus
|
785
|
+
8890/0 sub Fibromyoma
|
786
|
+
8890/0 sub Leiomyofibroma
|
787
|
+
8890/0 sub Plexiform leiomyoma
|
788
|
+
8890/0 sub Lipoleiomyoma
|
789
|
+
8890/1 title "Leiomyomatosis, NOS"
|
790
|
+
8890/1 sub Intravascular leiomyomatosis
|
791
|
+
8890/3 title "Leiomyosarcoma, NOS"
|
792
|
+
8891/0 title Epithelioid leiomyoma
|
793
|
+
8891/0 sub Leiomyoblastoma
|
794
|
+
8891/3 title Epithelioid leiomyosarcoma
|
795
|
+
8892/0 title Cellular leiomyoma
|
796
|
+
8893/0 title Bizarre leiomyoma
|
797
|
+
8893/0 sub Symplastic leiomyoma
|
798
|
+
8893/0 sub Atypical leiomyoma
|
799
|
+
8893/0 sub Pleomorphic leiomyoma
|
800
|
+
8894/0 title Angiomyoma
|
801
|
+
8894/0 sub Vascular leiomyoma
|
802
|
+
8894/0 sub Angioleiomyoma
|
803
|
+
8894/3 title Angiomyosarcoma
|
804
|
+
8895/0 title Myoma
|
805
|
+
8895/3 title Myosarcoma
|
806
|
+
8896/3 title Myxoid leiomyosarcoma
|
807
|
+
8897/1 title Smooth muscle tumor of uncertain malignant potential
|
808
|
+
8897/1 sub "Smooth muscle tumor, NOS"
|
809
|
+
8898/1 title Metastasizing leiomyoma
|
810
|
+
8900/0 title "Rhabdomyoma, NOS"
|
811
|
+
8900/3 title "Rhabdomyosarcoma, NOS"
|
812
|
+
8900/3 sub Rhabdosarcoma
|
813
|
+
8901/3 title "Pleomorphic rhabdomyosarcoma, adult type"
|
814
|
+
8901/3 sub "Pleomorphic rhabdomyosarcoma, NOS"
|
815
|
+
8902/3 title Mixed type rhabdomyosarcoma
|
816
|
+
8902/3 sub Mixed embryonal rhabdomyosarcoma and alveolar rhabdomyosarcoma
|
817
|
+
8903/0 title Fetal rhabdomyoma
|
818
|
+
8904/0 title Adult rhabdomyoma
|
819
|
+
8904/0 sub Glycogenic rhabdomyoma
|
820
|
+
8905/0 title Genital rhabdomyoma
|
821
|
+
8910/3 title "Embryonal rhabdomyosarcoma, NOS"
|
822
|
+
8910/3 sub "Embryonal rhabdomyosarcoma, pleomorphic"
|
823
|
+
8910/3 sub Sarcoma botryoides
|
824
|
+
8910/3 sub Botryoid sarcoma
|
825
|
+
8912/3 title Spindle cell rhabdomyosarcoma
|
826
|
+
8920/3 title Alveolar rhabdomyosarcoma
|
827
|
+
8921/3 title Rhabdomyosarcoma with ganglionic differentiation
|
828
|
+
8921/3 sub Ectomesenchymoma
|
829
|
+
8930/0 title Endometrial stromal nodule
|
830
|
+
8930/3 title "Endometrial stromal sarcoma, NOS"
|
831
|
+
8930/3 sub "Endometrial sarcoma, NOS"
|
832
|
+
8930/3 sub "Endometrial stromal sarcoma, high grade"
|
833
|
+
8931/3 title "Endometrial stromal sarcoma, low grade"
|
834
|
+
8931/3 sub Endolymphatic stromal myosis
|
835
|
+
8931/3 sub Endometrial stromatosis
|
836
|
+
8931/3 sub Stromal endometriosis
|
837
|
+
8931/3 sub "Stromal myosis, NOS"
|
838
|
+
8932/0 title Adenomyoma
|
839
|
+
8932/0 sub Atypical polypoid adenomyoma
|
840
|
+
8933/3 title Adenosarcoma
|
841
|
+
8934/3 title Carcinofibroma
|
842
|
+
8935/0 title "Stromal tumor, benign"
|
843
|
+
8935/1 title "Stromal tumor, NOS"
|
844
|
+
8935/3 title "Stromal sarcoma, NOS"
|
845
|
+
9290/3 sub Ameloblastic fibrodentinosarcoma
|
846
|
+
9290/3 sub Ameloblastic fibro-odontosarcoma
|
847
|
+
9300/0 title Adenomatoid odontogenic tumor
|
848
|
+
9300/0 sub Adenoameloblastoma
|
849
|
+
9301/0 title Calcifying odontogenic cyst
|
850
|
+
9302/0 title Odontogenic ghost cell tumor
|
851
|
+
9310/0 title "Ameloblastoma, NOS"
|
852
|
+
9310/0 sub "Adamantinoma, NOS"
|
853
|
+
9310/3 title "Ameloblastoma, malignant"
|
854
|
+
9310/3 sub "Adamantinoma, malignant"
|
855
|
+
9311/0 title Odontoameloblastoma
|
856
|
+
9312/0 title Squamous odontogenic tumor
|
857
|
+
9320/0 title Odontogenic myxoma
|
858
|
+
9320/0 sub Odontogenic myxofibroma
|
859
|
+
9321/0 title Central odontogenic fibroma
|
860
|
+
9321/0 sub "Odontogenic fibroma, NOS"
|
861
|
+
9322/0 title Peripheral odontogenic fibroma
|
862
|
+
9330/0 title Ameloblastic fibroma
|
863
|
+
9330/3 title Ameloblastic fibrosarcoma
|
864
|
+
9330/3 sub Ameloblastic sarcoma
|
865
|
+
9330/3 sub Odontogenic fibrosarcoma
|
866
|
+
9340/0 title Calcifying epithelial odontogenic tumor
|
867
|
+
9340/0 sub Pindborg tumor
|
868
|
+
9341/1 title Clear cell odontogenic tumor
|
869
|
+
9342/3 title Odontogenic carcinosarcoma
|
870
|
+
9350/1 title Craniopharyngioma
|
871
|
+
9350/1 sub Rathke pouch tumor
|
872
|
+
9351/1 title "Craniopharyngioma, adamantinomatous"
|
873
|
+
9352/1 title "Craniopharyngioma, papillary"
|
874
|
+
9360/1 title Pinealoma
|
875
|
+
9361/1 title Pineocytoma
|
876
|
+
9362/3 title Pineoblastoma
|
877
|
+
9362/3 sub Mixed pineal tumor
|
878
|
+
9362/3 sub Mixed pineocytoma-pineoblastoma
|
879
|
+
9362/3 sub Pineal parenchymal tumor of intermediate differentiation
|
880
|
+
9362/3 sub Transitional pineal tumor
|
881
|
+
9363/0 title Melanotic neuroectodermal tumor
|
882
|
+
9363/0 sub Retinal anlage tumor
|
883
|
+
9363/0 sub Melanoameloblastoma
|
884
|
+
9363/0 sub Melanotic progonoma
|
885
|
+
9364/3 title Peripheral neuroectodermal tumor
|
886
|
+
9364/3 sub "Neuroectodermal tumor, NOS"
|
887
|
+
9364/3 sub "Peripheral primitive neuroectodermal tumor, NOS"
|
888
|
+
9364/3 sub PPNET
|
889
|
+
9365/3 title Askin tumor
|
890
|
+
9370/3 title "Chordoma, NOS"
|
891
|
+
9371/3 title Chondroid chordoma
|
892
|
+
9372/3 title Dedifferentiated chordoma
|
893
|
+
9373/0 title Parachordoma
|
894
|
+
9380/3 title "Glioma, malignant"
|
895
|
+
9380/3 sub "Glioma, NOS"
|
896
|
+
9381/3 title Gliomatosis cerebri
|
897
|
+
9382/3 title Mixed glioma
|
898
|
+
9382/3 sub Oligoastrocytoma
|
899
|
+
9382/3 sub Anaplastic oligoastrocytoma
|
900
|
+
9383/1 title Subependymoma
|
901
|
+
9383/1 sub Subependymal glioma
|
902
|
+
9383/1 sub "Subependymal astrocytoma, NOS"
|
903
|
+
9383/1 sub Mixed subependymoma-ependymoma
|
904
|
+
9384/1 title Subependymal giant cell astrocytoma
|
905
|
+
9390/0 title "Choroid plexus papilloma, NOS"
|
906
|
+
9390/1 title Atypical choroid plexus papilloma
|
907
|
+
9390/3 title Choroid plexus carcinoma
|
908
|
+
9390/3 sub "Choroid plexus papilloma, anaplastic"
|
909
|
+
9390/3 sub "Choroid plexus papilloma, malignant"
|
910
|
+
9391/3 title "Ependymoma, NOS"
|
911
|
+
9391/3 sub Epithelial ependymoma
|
912
|
+
9391/3 sub Cellular ependymoma
|
913
|
+
8520/3 sub "Infiltrating lobular carcinoma, NOS"
|
914
|
+
8521/3 title Infiltrating ductular carcinoma
|
915
|
+
8522/2 title Intraductal carcinoma and lobular carcinoma in situ
|
916
|
+
8522/3 title Infiltrating duct and lobular carcinoma
|
917
|
+
8522/3 sub Lobular and ductal carcinoma
|
918
|
+
8522/3 sub Infiltrating duct and lobular carcinoma in situ
|
919
|
+
8522/3 sub Intraductal and lobular carcinoma
|
920
|
+
8522/3 sub Infiltrating lobular carcinoma and ductal carcinoma in situ
|
921
|
+
8523/3 title Infiltrating duct mixed with other types of carcinoma
|
922
|
+
8523/3 sub Infiltrating duct and cribriform carcinoma
|
923
|
+
8523/3 sub Infiltrating duct and mucinous carcinoma
|
924
|
+
8523/3 sub Infiltrating duct and tubular carcinoma
|
925
|
+
8523/3 sub Infiltrating duct and colloid carcinoma
|
926
|
+
8524/3 title Infiltrating lobular mixed with other types of carcinoma
|
927
|
+
8525/3 title Polymorphous low grade adenocarcinoma
|
928
|
+
8525/3 sub Terminal duct adenocarcinoma
|
929
|
+
8530/3 title Inflammatory carcinoma
|
930
|
+
8530/3 sub Inflammatory adenocarcinoma
|
931
|
+
8540/3 title "Paget disease, mammary"
|
932
|
+
8540/3 sub Paget disease of breast
|
933
|
+
8541/3 title Paget disease and infiltrating duct carcinoma of breast
|
934
|
+
8542/3 title "Paget disease, extramammary"
|
935
|
+
8543/3 title Paget disease and intraductal carcinoma of breast
|
936
|
+
8550/0 title Acinar cell adenoma
|
937
|
+
8550/0 sub Acinar adenoma
|
938
|
+
8550/0 sub Acinic cell adenoma
|
939
|
+
8550/1 title Acinar cell tumor
|
940
|
+
8550/1 sub Acinic cell tumor
|
941
|
+
8550/3 title Acinar cell carcinoma
|
942
|
+
8550/3 sub Acinic cell adenocarcinoma
|
943
|
+
8550/3 sub Acinar adenocarcinoma
|
944
|
+
8550/3 sub Acinar carcinoma
|
945
|
+
8551/3 title Acinar cell cystadenocarcinoma
|
946
|
+
8560/0 title Mixed squamous cell and glandular papilloma
|
947
|
+
8560/3 title Adenosquamous carcinoma
|
948
|
+
8560/3 sub Mixed adenocarcinoma and squamous cell carcinoma
|
949
|
+
8560/3 sub Mixed adenocarcinoma and epidermoid carcinoma
|
950
|
+
8561/0 title Adenolymphoma
|
951
|
+
8561/0 sub Papillary cystadenoma lymphomatosum
|
952
|
+
8561/0 sub Warthin tumor
|
953
|
+
8562/3 title Epithelial-myoepithelial carcinoma
|
954
|
+
8570/3 title Adenocarcinoma with squamous metaplasia
|
955
|
+
8570/3 sub Adenoacanthoma
|
956
|
+
8571/3 title Adenocarcinoma with cartilaginous and osseous metaplasia
|
957
|
+
8571/3 sub Adenocarcinoma with cartilaginous metaplasia
|
958
|
+
8571/3 sub Adenocarcinoma with osseous metaplasia
|
959
|
+
8572/3 title Adenocarcinoma with spindle cell metaplasia
|
960
|
+
8573/3 title Adenocarcinoma with apocrine metaplasia
|
961
|
+
8573/3 sub Carcinoma with apocrine metaplasia
|
962
|
+
8574/3 title Adenocarcinoma with neuroendocrine differentiation
|
963
|
+
8574/3 sub Carcinoma with neuroendocrine differentiation
|
964
|
+
8575/3 title "Metaplastic carcinoma, NOS"
|
965
|
+
8576/3 title Hepatoid adenocarcinoma
|
966
|
+
8576/3 sub Hepatoid carcinoma
|
967
|
+
8580/0 title "Thymoma, benign"
|
968
|
+
8580/1 title "Thymoma, NOS"
|
969
|
+
8580/3 title "Thymoma, malignant, NOS"
|
970
|
+
8581/1 title "Thymoma, type A, NOS"
|
971
|
+
8581/1 sub "Thymoma, spindle cell, NOS"
|
972
|
+
8581/1 sub "Thymoma, medullary, NOS"
|
973
|
+
8581/3 title "Thymoma, type A, malignant"
|
974
|
+
8581/3 sub "Thymoma, spindle cell, malignant"
|
975
|
+
8581/3 sub "Thymoma, medullary, malignant"
|
976
|
+
8582/1 title "Thymoma, type AB, NOS"
|
977
|
+
8582/1 sub "Thymoma, mixed type, NOS"
|
978
|
+
8582/3 title "Thymoma, type AB, malignant"
|
979
|
+
8582/3 sub "Thymoma, mixed type, malignant"
|
980
|
+
8583/1 title "Thymoma, type B1, NOS"
|
981
|
+
8583/1 sub "Thymoma, lymphocyte-rich, NOS"
|
982
|
+
8583/1 sub "Thymoma, lymphocytic, NOS"
|
983
|
+
8583/1 sub "Thymoma, predominantly cortical, NOS"
|
984
|
+
8583/1 sub "Thymoma, organoid, NOS"
|
985
|
+
8583/3 title "Thymoma, type B1, malignant"
|
986
|
+
8583/3 sub "Thymoma, lymphocyte-rich, malignant"
|
987
|
+
8583/3 sub "Thymoma, lymphocytic, malignant"
|
988
|
+
8583/3 sub "Thymoma, predominantly cortical, malignant"
|
989
|
+
8583/3 sub "Thymoma, organoid, malignant"
|
990
|
+
8584/1 title "Thymoma, type B2, NOS"
|
991
|
+
8584/1 sub "Thymoma, cortical, NOS"
|
992
|
+
8584/3 title "Thymoma, type B2, malignant"
|
993
|
+
8584/3 sub "Thymoma, cortical, malignant"
|
994
|
+
8585/1 title "Thymoma, type B3, NOS"
|
995
|
+
8585/1 sub "Thymoma, epithelial, NOS"
|
996
|
+
8585/1 sub "Thymoma, atypical, NOS"
|
997
|
+
8585/3 title "Thymoma, type B3, malignant"
|
998
|
+
8585/3 sub "Thymoma, epithelial, malignant"
|
999
|
+
8585/3 sub "Thymoma, atypical, malignant"
|
1000
|
+
8585/3 sub Well differentiated thymic carcinoma
|
1001
|
+
8586/3 title "Thymic carcinoma, NOS"
|
1002
|
+
8586/3 sub "Thymoma, type C"
|
1003
|
+
8587/0 title Ectopic hamartomatous thymoma
|
1004
|
+
8588/3 title Spindle epithelial tumor with thymus-like element
|
1005
|
+
8588/3 sub Spindle epithelial tumor with thymus-like differentiation
|
1006
|
+
8588/3 sub SETTLE
|
1007
|
+
8589/3 title Carcinoma showing thymus-like element
|
1008
|
+
8589/3 sub Carcinoma showing thymus-like differentiation
|
1009
|
+
8589/3 sub CASTLE
|
1010
|
+
8590/1 title "Sex cord-gonadal stromal tumor, NOS"
|
1011
|
+
8590/1 sub "Gonadal stromal tumor, NOS"
|
1012
|
+
8590/1 sub Testicular stromal tumor
|
1013
|
+
8590/1 sub Ovarian stromal tumor
|
1014
|
+
8590/1 sub "Sex cord tumor, NOS"
|
1015
|
+
8591/1 title "Sex cord-gonadal stromal tumor, incompletely differentiated"
|
1016
|
+
8592/1 title "Sex cord-gonadal stromal tumor, mixed forms"
|
1017
|
+
8593/1 title Stromal tumor with minor sex cord elements
|
1018
|
+
8600/0 title "Thecoma, NOS"
|
1019
|
+
8600/0 sub Theca cell tumor
|
1020
|
+
8600/3 title "Thecoma, malignant"
|
1021
|
+
8601/0 title "Thecoma, luteinized"
|
1022
|
+
8602/0 title Sclerosing stromal tumor
|
1023
|
+
8610/0 title "Luteoma, NOS"
|
1024
|
+
8610/0 sub Luteinoma
|
1025
|
+
8620/1 title "Granulosa cell tumor, adult type"
|
1026
|
+
8620/1 sub "Granulosa cell tumor, NOS"
|
1027
|
+
8620/3 title "Granulosa cell tumor, malignant"
|
1028
|
+
8620/3 sub Granulosa cell carcinoma
|
1029
|
+
8620/3 sub "Granulosa cell tumor, sarcomatoid"
|
1030
|
+
8621/1 title Granulosa cell-theca cell tumor
|
1031
|
+
8621/1 sub Theca cell-granulosa cell tumor
|
1032
|
+
8622/1 title "Granulosa cell tumor, juvenile"
|
1033
|
+
8623/1 title Sex cord tumor with annular tubules
|
1034
|
+
8630/0 title "Androblastoma, benign"
|
1035
|
+
8630/0 sub "Arrhenoblastoma, benign"
|
1036
|
+
8630/1 title "Androblastoma, NOS"
|
1037
|
+
8630/1 sub "Arrhenoblastoma, NOS"
|
1038
|
+
8630/3 title "Androblastoma, malignant"
|
1039
|
+
8630/3 sub "Arrhenoblastoma, malignant"
|
1040
|
+
8631/0 title "Sertoli-Leydig cell tumor, well differentiated"
|
1041
|
+
8631/1 title Sertoli-Leydig cell tumor of intermediate differentiation
|
1042
|
+
8631/1 sub "Sertoli-Leydig cell tumor, NOS"
|
1043
|
+
8631/3 title "Sertoli-Leydig cell tumor, poorly differentiated"
|
1044
|
+
8631/3 sub "Sertoli-Leydig cell tumor, sarcomatoid"
|
1045
|
+
8632/1 title Gynandroblastoma
|
1046
|
+
8633/1 title "Sertoli-Leydig cell tumor, retiform"
|
1047
|
+
8634/1 title "Sertoli-Leydig cell tumor, intermediate differentiation, with heterologous elements"
|
1048
|
+
8634/1 sub "Sertoli-Leydig cell tumor, retiform, with heterologous elements"
|
1049
|
+
"8634/3
|
1050
|
+
8634/3" title "Sertoli-Leydig cell tumor, poorly differentiated, with heterologous elements"
|
1051
|
+
8640/1 title "Sertoli cell tumor, NOS"
|
1052
|
+
8640/1 sub Pick tubular adenoma
|
1053
|
+
8640/1 sub Sertoli cell adenoma
|
1054
|
+
8640/1 sub "Tubular androblastoma, NOS"
|
1055
|
+
8640/1 sub Testicular adenoma
|
1056
|
+
8640/3 title Sertoli cell carcinoma
|
1057
|
+
8641/0 title Sertoli cell tumor with lipid storage
|
1058
|
+
8641/0 sub Folliculome lipidique
|
1059
|
+
8641/0 sub Tubular androblastoma with lipid storage
|
1060
|
+
8641/0 sub Lipid-rich Sertoli cell tumor
|
1061
|
+
8642/1 title Large cell calcifying Sertoli cell tumor
|
1062
|
+
8650/0 title "Leydig cell tumor, benign"
|
1063
|
+
8650/0 sub "Interstitial cell tumor, benign"
|
1064
|
+
8650/1 title "Leydig cell tumor, NOS"
|
1065
|
+
8650/1 sub "Interstitial cell tumor, NOS"
|
1066
|
+
8650/3 title "Leydig cell tumor, malignant"
|
1067
|
+
8650/3 sub "Interstitial cell tumor, malignant"
|
1068
|
+
8660/0 title Hilus cell tumor
|
1069
|
+
8660/0 sub Hilar cell tumor
|
1070
|
+
8670/0 title Lipid cell tumor of ovary
|
1071
|
+
8670/0 sub Lipoid cell tumor of ovary
|
1072
|
+
8670/0 sub "Steroid cell tumor, NOS"
|
1073
|
+
8670/0 sub Masculinovoblastoma
|
1074
|
+
8670/3 title "Steroid cell tumor, malignant"
|
1075
|
+
8671/0 title Adrenal rest tumor
|
1076
|
+
8680/0 title "Paraganglioma, benign"
|
1077
|
+
8680/1 title "Paraganglioma, NOS"
|
1078
|
+
8680/3 title "Paraganglioma, malignant"
|
1079
|
+
8681/1 title Sympathetic paraganglioma
|
1080
|
+
8682/1 title Parasympathetic paraganglioma
|
1081
|
+
8683/0 title Gangliocytic paraganglioma
|
1082
|
+
8690/1 title "Glomus jugulare tumor, NOS"
|
1083
|
+
8690/1 sub Jugular paraganglioma
|
1084
|
+
8690/1 sub Jugulotympanic paraganglioma
|
1085
|
+
8691/1 title Aortic body tumor
|
1086
|
+
8691/1 sub Aortic body paraganglioma
|
1087
|
+
8691/1 sub Aorticopulmonary paraganglioma
|
1088
|
+
8692/1 title Carotid body tumor
|
1089
|
+
8692/1 sub Carotid body paraganglioma
|
1090
|
+
8693/1 title "Extra-adrenal paraganglioma, NOS"
|
1091
|
+
8693/1 sub "Nonchromaffin paraganglioma, NOS"
|
1092
|
+
8693/1 sub Chemodectoma
|
1093
|
+
8693/3 title "Extra-adrenal paraganglioma, malignant"
|
1094
|
+
8693/3 sub "Nonchromaffin paraganglioma, malignant"
|
1095
|
+
8700/0 title "Pheochromocytoma, NOS"
|
1096
|
+
8700/0 sub Adrenal medullary paraganglioma
|
1097
|
+
8700/0 sub Chromaffin paraganglioma
|
1098
|
+
8700/0 sub Chromaffin tumor
|
1099
|
+
8700/0 sub Chromaffinoma
|
1100
|
+
8700/3 title "Pheochromocytoma, malignant"
|
1101
|
+
8700/3 sub "Adrenal medullary paraganglioma, malignant"
|
1102
|
+
8700/3 sub Pheochromoblastoma
|
1103
|
+
8710/3 title Glomangiosarcoma
|
1104
|
+
8710/3 sub Glomoid sarcoma
|
1105
|
+
8711/0 title "Glomus tumor, NOS"
|
1106
|
+
8711/3 title "Glomus tumor, malignant"
|
1107
|
+
8712/0 title Glomangioma
|
1108
|
+
8713/0 title Glomangiomyoma
|
1109
|
+
8720/0 title "Pigmented nevus, NOS"
|
1110
|
+
8720/0 sub "Nevus, NOS"
|
1111
|
+
8720/0 sub Melanocytic nevus
|
1112
|
+
8720/0 sub Hairy nevus
|
1113
|
+
8720/2 title Melanoma in situ
|
1114
|
+
8720/3 title "Malignant melanoma, NOS"
|
1115
|
+
8720/3 sub "Melanoma, NOS"
|
1116
|
+
8721/3 title Nodular melanoma
|
1117
|
+
8722/0 title Balloon cell nevus
|
1118
|
+
8722/3 title Balloon cell melanoma
|
1119
|
+
8723/0 title Halo nevus
|
1120
|
+
8723/0 sub Regressing nevus
|
1121
|
+
8723/3 title "Malignant melanoma, regressing"
|
1122
|
+
8725/0 title Neuronevus
|
1123
|
+
8726/0 title Magnocellular nevus
|
1124
|
+
8726/0 sub "Melanocytoma, eyeball"
|
1125
|
+
8726/0 sub "Melanocytoma, NOS"
|
1126
|
+
8727/0 title Dysplastic nevus
|
1127
|
+
8728/0 title Diffuse melanocytosis
|
1128
|
+
8728/1 title Meningeal melanocytoma
|
1129
|
+
8728/3 title Meningeal melanomatosis
|
1130
|
+
8730/0 title Nonpigmented nevus
|
1131
|
+
8730/0 sub Achromic nevus
|
1132
|
+
8730/3 title Amelanotic melanoma
|
1133
|
+
8740/0 title "Junctional nevus, NOS"
|
1134
|
+
8740/0 sub Junction nevus
|
1135
|
+
8740/0 sub Intraepidermal nevus
|
1136
|
+
8740/3 title Malignant melanoma in junctional nevus
|
1137
|
+
8741/2 title "Precancerous melanosis, NOS"
|
1138
|
+
8741/3 title Malignant melanoma in precancerous melanosis
|
1139
|
+
8742/2 title Lentigo maligna
|
1140
|
+
8742/2 sub "Hutchinson melanotic freckle, NOS"
|
1141
|
+
8742/3 title Lentigo maligna melanoma
|
1142
|
+
8742/3 sub Malignant melanoma in Hutchinson melanotic freckle
|
1143
|
+
8743/3 title Superficial spreading melanoma
|
1144
|
+
8744/3 title "Acral lentiginous melanoma, malignant"
|
1145
|
+
8745/3 title "Desmoplastic melanoma, malignant"
|
1146
|
+
8745/3 sub "Neurotropic melanoma, malignant"
|
1147
|
+
8745/3 sub "Desmoplastic melanoma, amelanotic"
|
1148
|
+
8746/3 title Mucosal lentiginous melanoma
|
1149
|
+
8750/0 title Intradermal nevus
|
1150
|
+
8750/0 sub Dermal nevus
|
1151
|
+
8760/0 title Compound nevus
|
1152
|
+
8760/0 sub Dermal and epidermal nevus
|
1153
|
+
8761/0 title Small congenital nevus
|
1154
|
+
8761/1 title "Giant pigmented nevus, NOS"
|
1155
|
+
8761/1 sub Intermediate and giant congenital nevus
|
1156
|
+
8761/3 title Malignant melanoma in giant pigmented nevus
|
1157
|
+
8761/3 sub Malignant melanoma in congenital melanocytic nevus
|
1158
|
+
8762/1 title Proliferative dermal lesion in congenital nevus
|
1159
|
+
8770/0 title Epithelioid and spindle cell nevus
|
1160
|
+
8770/0 sub Juvenile nevus
|
1161
|
+
8770/0 sub Juvenile melanoma
|
1162
|
+
8770/0 sub Spitz nevus
|
1163
|
+
8770/0 sub Pigmented spindle cell nevus of Reed
|
1164
|
+
8770/3 title Mixed epithelioid and spindle cell melanoma
|
1165
|
+
8771/0 title Epithelioid cell nevus
|
1166
|
+
8771/3 title Epithelioid cell melanoma
|
1167
|
+
8772/0 title "Spindle cell nevus, NOS"
|
1168
|
+
8772/3 title "Spindle cell melanoma, NOS"
|
1169
|
+
8773/3 title "Spindle cell melanoma, type A"
|
1170
|
+
8774/3 title "Spindle cell melanoma, type B"
|
1171
|
+
8780/0 title "Blue nevus, NOS"
|
1172
|
+
8780/0 sub Jadassohn blue nevus
|
1173
|
+
8780/3 title "Blue nevus, malignant"
|
1174
|
+
8790/0 title Cellular blue nevus
|
1175
|
+
8800/0 title "Soft tissue tumor, benign"
|
1176
|
+
8800/3 title "Sarcoma, NOS"
|
1177
|
+
8800/3 sub Soft tissue sarcoma
|
1178
|
+
8800/3 sub "Soft tissue tumor, malignant"
|
1179
|
+
8800/3 sub "Mesenchymal tumor, malignant"
|
1180
|
+
8800/9 title "Sarcomatosis, NOS"
|
1181
|
+
8801/3 title Spindle cell sarcoma
|
1182
|
+
8802/3 title Giant cell sarcoma
|
1183
|
+
8802/3 sub Pleomorphic cell sarcoma
|
1184
|
+
8803/3 title Small cell sarcoma
|
1185
|
+
8803/3 sub Round cell sarcoma
|
1186
|
+
8804/3 title Epithelioid sarcoma
|
1187
|
+
8804/3 sub Epithelioid cell sarcoma
|
1188
|
+
8805/3 title Undifferentiated sarcoma
|
1189
|
+
8806/3 title Desmoplastic small round cell tumor
|
1190
|
+
8810/0 title "Fibroma, NOS"
|
1191
|
+
8810/1 title Cellular fibroma
|
1192
|
+
8810/3 title "Fibrosarcoma, NOS"
|
1193
|
+
8811/0 title Fibromyxoma
|
1194
|
+
8811/0 sub Myxoid fibroma
|
1195
|
+
8811/0 sub "Myxofibroma, NOS"
|
1196
|
+
8811/3 title Fibromyxosarcoma
|
1197
|
+
8812/0 title Periosteal fibroma
|
1198
|
+
8812/3 title Periosteal fibrosarcoma
|
1199
|
+
8812/3 sub "Periosteal sarcoma, NOS"
|
1200
|
+
8813/0 title Fascial fibroma
|
1201
|
+
8813/3 title Fascial fibrosarcoma
|
1202
|
+
8814/3 title Infantile fibrosarcoma
|
1203
|
+
8814/3 sub Congenital fibrosarcoma
|
1204
|
+
8815/0 title Solitary fibrous tumor
|
1205
|
+
8815/0 sub Localized fibrous tumor
|
1206
|
+
8815/3 title "Solitary fibrous tumor, malignant"
|
1207
|
+
8820/0 title Elastofibroma
|
1208
|
+
8821/1 title Aggressive fibromatosis
|
1209
|
+
8821/1 sub Extra-abdominal desmoid
|
1210
|
+
8821/1 sub "Desmoid, NOS"
|
1211
|
+
8821/1 sub Invasive fibroma
|
1212
|
+
8822/1 title Abdominal fibromatosis
|
1213
|
+
8822/1 sub Abdominal desmoid
|
1214
|
+
8822/1 sub Mesenteric fibromatosis
|
1215
|
+
8822/1 sub Retroperitoneal fibromatosis
|
1216
|
+
8823/0 title Desmoplastic fibroma
|
1217
|
+
8824/0 title Myofibroma
|
1218
|
+
8824/1 title Myofibromatosis
|
1219
|
+
8824/1 sub Congenital generalized fibromatosis
|
1220
|
+
8824/1 sub Infantile myofibromatosis
|
1221
|
+
8825/0 title Myofibroblastoma
|
1222
|
+
8825/1 title "Myofibroblastic tumor, NOS"
|
1223
|
+
8825/1 sub Inflammatory myofibroblastic tumor
|
1224
|
+
8826/0 title Angiomyofibroblastoma
|
1225
|
+
8827/1 title "Myofibroblastic tumor, peribronchial"
|
1226
|
+
8827/1 sub Congenital peribronchial myofibroblastic tumor
|
1227
|
+
8830/0 title Benign fibrous histiocytoma
|
1228
|
+
8830/0 sub "Fibrous histiocytoma, NOS"
|
1229
|
+
8830/0 sub "Fibroxanthoma, NOS"
|
1230
|
+
8830/0 sub Xanthofibroma
|
1231
|
+
8830/1 title Atypical fibrous histiocytoma
|
1232
|
+
8830/1 sub Atypical fibroxanthoma
|
1233
|
+
8830/3 title Malignant fibrous histiocytoma
|
1234
|
+
8830/3 sub "Fibroxanthoma, malignant"
|
1235
|
+
8831/0 title "Histiocytoma, NOS"
|
1236
|
+
8831/0 sub Deep histiocytoma
|
1237
|
+
8831/0 sub Juvenile histiocytoma
|
1238
|
+
8831/0 sub Reticulohistiocytoma
|
1239
|
+
8832/0 title "Dermatofibroma, NOS"
|
1240
|
+
8832/0 sub Sclerosing hemangioma
|
1241
|
+
8832/0 sub "Cutaneous histiocytoma, NOS"
|
1242
|
+
8832/0 sub Subepidermal nodular fibrosis
|
1243
|
+
8832/0 sub Dermatofibroma lenticulare
|
1244
|
+
8832/3 title "Dermatofibrosarcoma, NOS"
|
1245
|
+
8832/3 sub "Dermatofibrosarcoma protuberans, NOS"
|
1246
|
+
8833/3 title Pigmented dermatofibrosarcoma protuberans
|
1247
|
+
8833/3 sub Bednar tumor
|
1248
|
+
8834/1 title Giant cell fibroblastoma
|
1249
|
+
8835/1 title Plexiform fibrohistiocytic tumor
|
1250
|
+
8836/1 title Angiomatoid fibrous histiocytoma
|
1251
|
+
8840/0 title "Myxoma, NOS"
|
1252
|
+
8840/3 title Myxosarcoma
|
1253
|
+
8841/1 title Angiomyxoma
|
1254
|
+
8841/1 sub Aggressive angiomyxoma
|
1255
|
+
8842/0 title Ossifying fibromyxoid tumor
|
1256
|
+
8850/0 title "Lipoma, NOS"
|
1257
|
+
8850/1 title Atypical lipoma/j
|
1258
|
+
8850/1 sub Superficial well differentated liposarcoma
|
1259
|
+
8850/1 sub Well differentiated liposarcoma of superficial soft tissue
|
1260
|
+
8850/3 title "Liposarcoma, NOS"
|
1261
|
+
8850/3 sub Fibroliposarcoma
|
1262
|
+
8936/0 title "Gastrointestinal stromal tumor, benign"
|
1263
|
+
8936/0 sub "GIST, benign"
|
1264
|
+
8936/1 title "Gastrointestinal stromal tumor, NOS"
|
1265
|
+
8936/1 sub "GIST, NOS"
|
1266
|
+
8936/1 sub "Gastrointestinal stromal tumor, uncertain malignant potential"
|
1267
|
+
8936/1 sub Gastrointestinal autonomic nerve tumor
|
1268
|
+
8936/1 sub GANT
|
1269
|
+
8936/1 sub Gastrointestinal pacemaker cell tumor
|
1270
|
+
8936/3 title Gastrointestinal stromal sarcoma
|
1271
|
+
8936/3 sub "Gastrointestinal stromal tumor, malignant"
|
1272
|
+
8936/3 sub "GIST, malignant"
|
1273
|
+
8940/0 title Pleomorphic adenoma
|
1274
|
+
8940/0 sub "Mixed tumor, NOS"
|
1275
|
+
8940/0 sub "Mixed tumor, salivary gland type, NOS"
|
1276
|
+
8940/0 sub Chondroid syringoma
|
1277
|
+
8940/3 title "Mixed tumor, malignant, NOS"
|
1278
|
+
8940/3 sub "Mixed tumor, salivary gland type, malignant"
|
1279
|
+
8940/3 sub Malignant chondroid syringoma
|
1280
|
+
8941/3 title Carcinoma in pleomorphic adenoma
|
1281
|
+
8950/3 title Mullerian mixed tumor
|
1282
|
+
8951/3 title Mesodermal mixed tumor
|
1283
|
+
8959/0 title Benign cystic nephroma
|
1284
|
+
8959/1 title Cystic partially differentiated nephroblastoma
|
1285
|
+
8959/3 title Malignant cystic nephroma
|
1286
|
+
8959/3 sub Malignant multilocular cystic nephroma
|
1287
|
+
8960/1 title Mesoblastic nephroma
|
1288
|
+
8960/3 title "Nephroblastoma, NOS"
|
1289
|
+
8960/3 sub Wilms tumor
|
1290
|
+
8960/3 sub "Nephroma, NOS"
|
1291
|
+
8963/3 title Malignant rhabdoid tumor
|
1292
|
+
8963/3 sub Rhabdoid sarcoma
|
1293
|
+
8963/3 sub "Rhabdoid tumor, NOS"
|
1294
|
+
8964/3 title Clear cell sarcoma of kidney
|
1295
|
+
8965/0 title Nephrogenic adenofibroma
|
1296
|
+
8966/0 title Renomedullary interstitial cell tumor
|
1297
|
+
8966/0 sub Renomedullary fibroma
|
1298
|
+
8967/0 title Ossifying renal tumor
|
1299
|
+
8970/3 title Hepatoblastoma
|
1300
|
+
8970/3 sub Embryonal hepatoma
|
1301
|
+
8971/3 title Pancreatoblastoma
|
1302
|
+
8972/3 title Pulmonary blastoma
|
1303
|
+
8972/3 sub Pneumoblastoma
|
1304
|
+
8973/3 title Pleuropulmonary blastoma
|
1305
|
+
8974/1 title Sialoblastoma
|
1306
|
+
8980/3 title "Carcinosarcoma, NOS"
|
1307
|
+
8981/3 title "Carcinosarcoma, embryonal"
|
1308
|
+
8982/0 title Myoepithelioma
|
1309
|
+
8982/0 sub Myoepithelial tumor
|
1310
|
+
8982/0 sub Myoepithelial adenoma
|
1311
|
+
8982/3 title Malignant myoepithelioma
|
1312
|
+
8982/3 sub Myoepithelial carcinoma
|
1313
|
+
8983/0 title Adenomyoepithelioma
|
1314
|
+
8990/0 title "Mesenchymoma, benign"
|
1315
|
+
8990/1 title "Mesenchymoma, NOS"
|
1316
|
+
8990/1 sub Mixed mesenchymal tumor
|
1317
|
+
8990/3 title "Mesenchymoma, malignant"
|
1318
|
+
8990/3 sub Mixed mesenchymal sarcoma
|
1319
|
+
8991/3 title Embryonal sarcoma
|
1320
|
+
9000/0 title "Brenner tumor, NOS"
|
1321
|
+
9000/1 title "Brenner tumor, borderline malignancy"
|
1322
|
+
9000/1 sub "Brenner tumor, proliferating"
|
1323
|
+
9000/3 title "Brenner tumor, malignant"
|
1324
|
+
9010/0 title "Fibroadenoma, NOS"
|
1325
|
+
9011/0 title Intracanalicular fibroadenoma
|
1326
|
+
9012/0 title Pericanalicular fibroadenoma
|
1327
|
+
9013/0 title "Adenofibroma, NOS"
|
1328
|
+
9013/0 sub "Cystadenofibroma, NOS"
|
1329
|
+
9013/0 sub Papillary adenofibroma
|
1330
|
+
9014/0 title "Serous adenofibroma, NOS"
|
1331
|
+
9014/0 sub "Serous cystadenofibroma, NOS"
|
1332
|
+
9014/1 title Serous adenofibroma of borderline malignancy
|
1333
|
+
9014/1 sub Serous cystadenofibroma of borderline malignancy
|
1334
|
+
9014/3 title Serous adenocarcinofibroma
|
1335
|
+
9014/3 sub Malignant serous adenofibroma
|
1336
|
+
9014/3 sub Serous cystadenocarcinofibroma
|
1337
|
+
9014/3 sub Malignant serous cystadenofibroma
|
1338
|
+
9015/0 title "Mucinous adenofibroma, NOS"
|
1339
|
+
9015/0 sub "Mucinous cystadenofibroma, NOS"
|
1340
|
+
9015/1 title Mucinous adenofibroma of borderline malignancy
|
1341
|
+
9015/1 sub Mucinous cystadenofibroma of borderline malignancy
|
1342
|
+
9015/3 title Mucinous adenocarcinofibroma
|
1343
|
+
9015/3 sub Malignant mucinous adenofibroma
|
1344
|
+
9015/3 sub Mucinous cystadenocarcinofibroma
|
1345
|
+
9015/3 sub Malignant mucinous cystadenofibroma
|
1346
|
+
9016/0 title Giant fibroadenoma
|
1347
|
+
9020/0 title "Phyllodes tumor, benign"
|
1348
|
+
9020/0 sub "Cystosarcoma phyllodes, benign"
|
1349
|
+
9020/1 title "Phyllodes tumor, borderline"
|
1350
|
+
9020/1 sub "Cystosarcoma phyllodes, NOS"
|
1351
|
+
9020/1 sub "Phyllodes tumor, NOS"
|
1352
|
+
9020/3 title "Phyllodes tumor, malignant"
|
1353
|
+
9020/3 sub "Cystosarcoma phyllodes, malignant"
|
1354
|
+
9030/0 title Juvenile fibroadenoma
|
1355
|
+
9040/0 title "Synovioma, benign"
|
1356
|
+
9040/3 title "Synovial sarcoma, NOS"
|
1357
|
+
9040/3 sub "Synovioma, NOS"
|
1358
|
+
9040/3 sub "Synovioma, malignant"
|
1359
|
+
9041/3 title "Synovial sarcoma, spindle cell"
|
1360
|
+
9041/3 sub "Synovial sarcoma, monophasic fibrous"
|
1361
|
+
9042/3 title "Synovial sarcoma, epithelioid cell"
|
1362
|
+
9043/3 title "Synovial sarcoma, biphasic"
|
1363
|
+
9044/3 title "Clear cell sarcoma, NOS"
|
1364
|
+
9044/3 sub "Clear cell sarcoma, of tendons and aponeuroses"
|
1365
|
+
9044/3 sub "Melanoma, malignant, of soft parts"
|
1366
|
+
9050/0 title "Mesothelioma, benign"
|
1367
|
+
9050/3 title "Mesothelioma, malignant"
|
1368
|
+
9050/3 sub "Mesothelioma, NOS"
|
1369
|
+
9051/0 title "Fibrous mesothelioma, benign"
|
1370
|
+
9051/3 title "Fibrous mesothelioma, malignant"
|
1371
|
+
9051/3 sub "Fibrous mesothelioma, NOS"
|
1372
|
+
9051/3 sub Spindled mesothelioma
|
1373
|
+
9051/3 sub Sarcomatoid mesothelioma
|
1374
|
+
9051/3 sub Desmoplastic mesothelioma
|
1375
|
+
9052/0 title "Epithelioid mesothelioma, benign"
|
1376
|
+
9052/0 sub "Well differentiated papillary mesothelioma, benign"
|
1377
|
+
9052/0 sub Mesothelial papilloma
|
1378
|
+
9052/3 title "Epithelioid mesothelioma, malignant"
|
1379
|
+
9052/3 sub "Epithelioid mesothelioma, NOS"
|
1380
|
+
9053/3 title "Mesothelioma, biphasic, malignant"
|
1381
|
+
9053/3 sub "Mesothelioma, biphasic, NOS"
|
1382
|
+
9054/0 title "Adenomatoid tumor, NOS"
|
1383
|
+
9055/0 title "Multicystic mesothelioma, benign"
|
1384
|
+
9055/0 sub "Cystic mesothelioma, benign"
|
1385
|
+
9055/1 title "Cystic mesothelioma, NOS"
|
1386
|
+
9060/3 title Dysgerminoma
|
1387
|
+
9061/3 title "Seminoma, NOS"
|
1388
|
+
9062/3 title "Seminoma, anaplastic"
|
1389
|
+
9062/3 sub Seminoma with high mitotic index
|
1390
|
+
9063/3 title Spermatocytic seminoma
|
1391
|
+
9063/3 sub Spermatocytoma
|
1392
|
+
9064/2 title Intratubular malignant germ cells
|
1393
|
+
9064/2 sub Intratubular germ cell neoplasia
|
1394
|
+
9064/3 title Germinoma
|
1395
|
+
9064/3 sub "Germ cell tumor, NOS"
|
1396
|
+
9065/3 title "Germ cell tumor, nonseminomatous"
|
1397
|
+
9070/3 title "Embryonal carcinoma, NOS"
|
1398
|
+
9070/3 sub Embryonal adenocarcinoma
|
1399
|
+
9071/3 title Yolk sac tumor
|
1400
|
+
9071/3 sub Endodermal sinus tumor
|
1401
|
+
9071/3 sub Polyvesicular vitelline tumor
|
1402
|
+
9071/3 sub Orchioblastoma
|
1403
|
+
9071/3 sub "Embryonal carcinoma, infantile"
|
1404
|
+
9071/3 sub Hepatoid yolk sac tumor
|
1405
|
+
9072/3 title Polyembryoma
|
1406
|
+
9072/3 sub "Embryonal carcinoma, polyembryonal type"
|
1407
|
+
9073/1 title Gonadoblastoma
|
1408
|
+
9073/1 sub Gonocytoma
|
1409
|
+
9080/0 title "Teratoma, benign"
|
1410
|
+
9080/0 sub Adult cystic teratoma
|
1411
|
+
9080/0 sub "Adult teratoma, NOS"
|
1412
|
+
9080/0 sub "Cystic teratoma, NOS"
|
1413
|
+
9080/0 sub "Teratoma, differentiated"
|
1414
|
+
9080/0 sub Mature teratoma
|
1415
|
+
9080/1 title "Teratoma, NOS"
|
1416
|
+
9080/1 sub Solid teratoma
|
1417
|
+
9080/3 title "Teratoma, malignant, NOS"
|
1418
|
+
9080/3 sub Embryonal teratoma
|
1419
|
+
9080/3 sub "Teratoblastoma, malignant"
|
1420
|
+
9080/3 sub "Immature teratoma, malignant"
|
1421
|
+
9080/3 sub "Immature teratoma, NOS"
|
1422
|
+
9081/3 title Teratocarcinoma
|
1423
|
+
9081/3 sub Mixed embryonal carcinoma and teratoma
|
1424
|
+
9082/3 title "Malignant teratoma, undifferentiated"
|
1425
|
+
9082/3 sub "Malignant teratoma, anaplastic"
|
1426
|
+
9083/3 title "Malignant teratoma, intermediate"
|
1427
|
+
9084/0 title "Dermoid cyst, NOS"
|
1428
|
+
9084/0 sub "Dermoid, NOS"
|
1429
|
+
9084/3 title Teratoma with malignant transformation
|
1430
|
+
9084/3 sub Dermoid cyst with malignant transformation
|
1431
|
+
9084/3 sub Dermoid cyst with secondary tumor
|
1432
|
+
9085/3 title Mixed germ cell tumor
|
1433
|
+
9085/3 sub Mixed teratoma and seminoma
|
1434
|
+
9090/0 title "Struma ovarii, NOS"
|
1435
|
+
9090/3 title "Struma ovarii, malignant"
|
1436
|
+
9091/1 title Strumal carcinoid
|
1437
|
+
9091/1 sub Struma ovarii and carcinoid
|
1438
|
+
9100/0 title "Hydatidiform mole, NOS"
|
1439
|
+
9100/0 sub Hydatid mole
|
1440
|
+
9100/0 sub Complete hydatidiform mole
|
1441
|
+
9100/1 title Invasive hydatidiform mole
|
1442
|
+
9100/1 sub Chorioadenoma destruens
|
1443
|
+
9100/1 sub Chorioadenoma
|
1444
|
+
9100/1 sub "Invasive mole, NOS"
|
1445
|
+
9100/1 sub Malignant hydatidiform mole
|
1446
|
+
9100/3 title "Choriocarcinoma, NOS"
|
1447
|
+
9100/3 sub Chorionepithelioma
|
1448
|
+
9100/3 sub Chorioepithelioma
|
1449
|
+
9101/3 title Choriocarcinoma combined with other germ cell elements
|
1450
|
+
9101/3 sub Choriocarcinoma combined with teratoma
|
1451
|
+
9101/3 sub Choriocarcinoma combined with embryonal carcinoma
|
1452
|
+
9102/3 title "Malignant teratoma, trophoblastic"
|
1453
|
+
9103/0 title Partial hydatidiform mole
|
1454
|
+
9104/1 title Placental site trophoblastic tumor
|
1455
|
+
9105/3 title "Trophoblastic tumor, epithelioid"
|
1456
|
+
9110/0 title "Mesonephroma, benign"
|
1457
|
+
9110/0 sub Mesonephric adenoma
|
1458
|
+
9110/0 sub Wolffian duct adenoma
|
1459
|
+
9110/1 title "Mesonephric tumor, NOS"
|
1460
|
+
9110/1 sub Wolffian duct tumor
|
1461
|
+
9110/3 title "Mesonephroma, malignant"
|
1462
|
+
9110/3 sub Mesonephric adenocarcinoma
|
1463
|
+
9110/3 sub "Mesonephroma, NOS"
|
1464
|
+
9110/3 sub Wolffian duct carcinoma
|
1465
|
+
9120/0 title "Hemangioma, NOS"
|
1466
|
+
9120/0 sub "Angioma, NOS"
|
1467
|
+
9120/0 sub Chorioangioma
|
1468
|
+
9120/3 title Hemangiosarcoma
|
1469
|
+
9120/3 sub Angiosarcoma
|
1470
|
+
9121/0 title Cavernous hemangioma
|
1471
|
+
9122/0 title Venous hemangioma
|
1472
|
+
9123/0 title Racemose hemangioma
|
1473
|
+
9123/0 sub Arteriovenous hemangioma
|
1474
|
+
9124/3 title Kupffer cell sarcoma
|
1475
|
+
9125/0 title Epithelioid hemangioma
|
1476
|
+
9125/0 sub Histiocytoid hemangioma
|
1477
|
+
9130/0 title "Hemangioendothelioma, benign"
|
1478
|
+
9130/1 title "Hemangioendothelioma, NOS"
|
1479
|
+
9130/1 sub Angioendothelioma
|
1480
|
+
9130/1 sub Kaposiform hemangioendothelioma
|
1481
|
+
9130/3 title "Hemangioendothelioma, malignant"
|
1482
|
+
9130/3 sub Hemangioendothelial sarcoma
|
1483
|
+
9131/0 title Capillary hemangioma
|
1484
|
+
9131/0 sub Hemangioma simplex
|
1485
|
+
9131/0 sub Infantile hemangioma
|
1486
|
+
9131/0 sub Plexiform hemangioma
|
1487
|
+
9131/0 sub Juvenile hemangioma
|
1488
|
+
9132/0 title Intramuscular hemangioma
|
1489
|
+
9133/1 title "Epithelioid hemangioendothelioma, NOS"
|
1490
|
+
9133/3 title "Epithelioid hemangioendothelioma, malignant"
|
1491
|
+
9133/3 sub Intravascular bronchial alveolar tumor
|
1492
|
+
9135/1 title Endovascular papillary angioendothelioma
|
1493
|
+
9135/1 sub Dabska tumor
|
1494
|
+
9136/1 title Spindle cell hemangioendothelioma
|
1495
|
+
9136/1 sub Spindle cell angioendothelioma
|
1496
|
+
9140/3 title Kaposi sarcoma
|
1497
|
+
9140/3 sub Multiple hemorrhagic sarcoma
|
1498
|
+
9141/0 title Angiokeratoma
|
1499
|
+
9142/0 title Verrucous keratotic hemangioma
|
1500
|
+
9150/0 title "Hemangiopericytoma, benign"
|
1501
|
+
9150/1 title "Hemangiopericytoma, NOS"
|
1502
|
+
9150/1 sub Hemangiopericytic meningioma
|
1503
|
+
9150/3 title "Hemangiopericytoma, malignant"
|
1504
|
+
9160/0 title "Angiofibroma, NOS"
|
1505
|
+
9160/0 sub Juvenile angiofibroma
|
1506
|
+
9160/0 sub Fibrous papule of nose
|
1507
|
+
9160/0 sub Involuting nevus
|
1508
|
+
9160/0 sub Giant cell angiofibroma
|
1509
|
+
9160/0 sub Cellular angiofibroma
|
1510
|
+
9161/0 title Acquired tufted hemangioma
|
1511
|
+
9161/1 title Hemangioblastoma
|
1512
|
+
9161/1 sub Angioblastoma
|
1513
|
+
9170/0 title "Lymphangioma, NOS"
|
1514
|
+
9170/0 sub "Lymphangioendothelioma, NOS"
|
1515
|
+
9170/3 title Lymphangiosarcoma
|
1516
|
+
9170/3 sub Lymphangioendothelial sarcoma
|
1517
|
+
9170/3 sub "Lymphangioendothelioma, malignant"
|
1518
|
+
9171/0 title Capillary lymphangioma
|
1519
|
+
9172/0 title Cavernous lymphangioma
|
1520
|
+
9173/0 title Cystic lymphangioma
|
1521
|
+
9173/0 sub "Hygroma, NOS"
|
1522
|
+
9173/0 sub Cystic hygroma
|
1523
|
+
9174/0 title Lymphangiomyoma
|
1524
|
+
9174/1 title Lymphangiomyomatosis
|
1525
|
+
9174/1 sub Lymphangioleiomyomatosis
|
1526
|
+
9175/0 title Hemolymphangioma
|
1527
|
+
9180/0 title "Osteoma, NOS"
|
1528
|
+
9180/3 title "Osteosarcoma, NOS"
|
1529
|
+
9180/3 sub "Osteogenic sarcoma, NOS"
|
1530
|
+
9180/3 sub Osteochondrosarcoma
|
1531
|
+
9180/3 sub Osteoblastic sarcoma
|
1532
|
+
9181/3 title Chondroblastic osteosarcoma
|
1533
|
+
9182/3 title Fibroblastic osteosarcoma
|
1534
|
+
9182/3 sub Osteofibrosarcoma
|
1535
|
+
9183/3 title Telangiectatic osteosarcoma
|
1536
|
+
9184/3 title Osteosarcoma in Paget disease of bone
|
1537
|
+
9185/3 title Small cell osteosarcoma
|
1538
|
+
9185/3 sub Round cell osteosarcoma
|
1539
|
+
9186/3 title Central osteosarcoma
|
1540
|
+
9186/3 sub Conventional central osteosarcoma
|
1541
|
+
9186/3 sub Medullary osteosarcoma
|
1542
|
+
9187/3 title Intraosseous well differentiated osteosarcoma
|
1543
|
+
9187/3 sub Intraosseous low grade osteosarcoma
|
1544
|
+
9191/0 title "Osteoid osteoma, NOS"
|
1545
|
+
9192/3 title Parosteal osteosarcoma
|
1546
|
+
9192/3 sub Juxtacortical osteosarcoma
|
1547
|
+
9193/3 title Periosteal osteosarcoma
|
1548
|
+
9194/3 title High grade surface osteosarcoma
|
1549
|
+
9195/3 title Intracortical osteosarcoma
|
1550
|
+
9200/0 title "Osteoblastoma, NOS"
|
1551
|
+
9200/0 sub Giant osteoid osteoma
|
1552
|
+
9200/1 title Aggressive osteoblastoma
|
1553
|
+
9210/0 title Osteochondroma
|
1554
|
+
9210/0 sub Cartilaginous exostosis
|
1555
|
+
9210/0 sub Osteocartilaginous exostosis
|
1556
|
+
9210/0 sub Ecchondroma
|
1557
|
+
9210/1 title "Osteochondromatosis, NOS"
|
1558
|
+
9210/1 sub Ecchondrosis
|
1559
|
+
9220/0 title "Chondroma, NOS"
|
1560
|
+
9220/0 sub Enchondroma
|
1561
|
+
9220/1 title "Chondromatosis, NOS"
|
1562
|
+
9220/3 title "Chondrosarcoma, NOS"
|
1563
|
+
9220/3 sub Fibrochondrosarcoma
|
1564
|
+
9221/0 title Juxtacortical chondroma
|
1565
|
+
9221/0 sub Periosteal chondroma
|
1566
|
+
9221/3 title Juxtacortical chondrosarcoma
|
1567
|
+
9221/3 sub Periosteal chondrosarcoma
|
1568
|
+
9230/0 title "Chondroblastoma, NOS"
|
1569
|
+
9230/0 sub Chondromatous giant cell tumor
|
1570
|
+
9230/0 sub Codman tumor
|
1571
|
+
9230/3 title "Chondroblastoma, malignant"
|
1572
|
+
9231/3 title Myxoid chondrosarcoma
|
1573
|
+
9240/3 title Mesenchymal chondrosarcoma
|
1574
|
+
9241/0 title Chondromyxoid fibroma
|
1575
|
+
9242/3 title Clear cell chondrosarcoma
|
1576
|
+
9243/3 title Dedifferentiated chondrosarcoma
|
1577
|
+
9250/1 title "Giant cell tumor of bone, NOS"
|
1578
|
+
9250/1 sub "Osteoclastoma, NOS"
|
1579
|
+
9250/3 title "Giant cell tumor of bone, malignant"
|
1580
|
+
9250/3 sub "Osteoclastoma, malignant"
|
1581
|
+
9250/3 sub Giant cell sarcoma of bone
|
1582
|
+
9251/1 title "Giant cell tumor of soft parts, NOS"
|
1583
|
+
9251/3 title Malignant giant cell tumor of soft parts
|
1584
|
+
9252/0 title Tenosynovial giant cell tumor
|
1585
|
+
9252/0 sub Fibrous histiocytoma of tendon sheath
|
1586
|
+
9252/0 sub Giant cell tumor of tendon sheath
|
1587
|
+
9252/3 title Malignant tenosynovial giant cell tumor
|
1588
|
+
9252/3 sub "Giant cell tumor of tendon sheath, malignant"
|
1589
|
+
9260/3 title Ewing sarcoma
|
1590
|
+
9260/3 sub Ewing tumor
|
1591
|
+
9261/3 title Adamantinoma of long bones
|
1592
|
+
9261/3 sub Tibial adamantinoma
|
1593
|
+
9262/0 title Ossifying fibroma
|
1594
|
+
9262/0 sub Fibro-osteoma
|
1595
|
+
9262/0 sub Osteofibroma
|
1596
|
+
9270/0 title "Odontogenic tumor, benign"
|
1597
|
+
9270/1 title "Odontogenic tumor, NOS"
|
1598
|
+
9270/3 title "Odontogenic tumor, malignant"
|
1599
|
+
9270/3 sub Odontogenic carcinoma
|
1600
|
+
9270/3 sub Odontogenic sarcoma
|
1601
|
+
9270/3 sub Primary intraosseous carcinoma
|
1602
|
+
9270/3 sub Ameloblastic carcinoma
|
1603
|
+
9271/0 title Ameloblastic fibrodentinoma
|
1604
|
+
9271/0 sub Dentinoma
|
1605
|
+
9272/0 title "Cementoma, NOS"
|
1606
|
+
9272/0 sub Periapical cemental dysplasia
|
1607
|
+
9272/0 sub Periapical cemento-osseous dysplasia
|
1608
|
+
9273/0 title "Cementoblastoma, benign"
|
1609
|
+
9274/0 title Cementifying fibroma
|
1610
|
+
9274/0 sub Cemento-ossifying fibroma
|
1611
|
+
9275/0 title Gigantiform cementoma
|
1612
|
+
9275/0 sub Florid osseous dysplasia
|
1613
|
+
9280/0 title "Odontoma, NOS"
|
1614
|
+
9281/0 title Compound odontoma
|
1615
|
+
9282/0 title Complex odontoma
|
1616
|
+
9290/0 title Ameloblastic fibro-odontoma
|
1617
|
+
9290/0 sub Fibroameloblastic odontoma
|
1618
|
+
9290/3 title Ameloblastic odontosarcoma
|
1619
|
+
9391/3 sub Clear cell ependymoma
|
1620
|
+
9391/3 sub Tanycytic ependymoma
|
1621
|
+
9392/3 title "Ependymoma, anaplastic"
|
1622
|
+
9392/3 sub Ependymoblastoma
|
1623
|
+
9393/3 title Papillary ependymoma
|
1624
|
+
9394/1 title Myxopapillary ependymoma
|
1625
|
+
9400/3 title "Astrocytoma, NOS"
|
1626
|
+
9400/3 sub Astrocytic glioma
|
1627
|
+
9400/3 sub Astroglioma
|
1628
|
+
9400/3 sub Diffuse astrocytoma
|
1629
|
+
9400/3 sub "Astrocytoma, low grade"
|
1630
|
+
9400/3 sub "Diffuse astrocytoma, low grade"
|
1631
|
+
9400/3 sub Cystic astrocytoma
|
1632
|
+
9401/3 title "Astrocytoma, anaplastic"
|
1633
|
+
9410/3 title Protoplasmic astrocytoma
|
1634
|
+
9411/3 title Gemistocytic astrocytoma
|
1635
|
+
9411/3 sub Gemistocytoma
|
1636
|
+
9412/1 title Desmoplastic infantile astrocytoma
|
1637
|
+
9412/1 sub Desmoplastic infantile ganglioglioma
|
1638
|
+
9413/0 title Dysembryoplastic neuroepithelial tumor
|
1639
|
+
9420/3 title Fibrillary astrocytoma
|
1640
|
+
9420/3 sub Fibrous astrocytoma
|
1641
|
+
9421/1 title Pilocytic astrocytoma
|
1642
|
+
9421/1 sub Piloid astrocytoma
|
1643
|
+
9421/1 sub Juvenile astrocytoma
|
1644
|
+
9421/1 sub "Spongioblastoma, NOS"
|
1645
|
+
9423/3 title Polar spongioblastoma
|
1646
|
+
9423/3 sub Spongioblastoma polare
|
1647
|
+
9423/3 sub Primitive polar spongioblastoma
|
1648
|
+
9424/3 title Pleomorphic xanthoastrocytoma
|
1649
|
+
9430/3 title Astroblastoma
|
1650
|
+
9440/3 title "Glioblastoma, NOS"
|
1651
|
+
9440/3 sub Glioblastoma multiforme
|
1652
|
+
9440/3 sub Spongioblastoma multiforme
|
1653
|
+
9441/3 title Giant cell glioblastoma
|
1654
|
+
9441/3 sub Monstrocellular sarcoma
|
1655
|
+
9442/1 title Gliofibroma
|
1656
|
+
9442/3 title Gliosarcoma
|
1657
|
+
9442/3 sub Glioblastoma with sarcomatous component
|
1658
|
+
9444/1 title Chordoid glioma
|
1659
|
+
9444/1 sub Chordoid glioma of third ventricle
|
1660
|
+
9450/3 title "Oligodendroglioma, NOS"
|
1661
|
+
9451/3 title "Oligodendroglioma, anaplastic"
|
1662
|
+
9460/3 title Oligodendroblastoma
|
1663
|
+
9470/3 title "Medulloblastoma, NOS"
|
1664
|
+
9470/3 sub Melanotic medulloblastoma
|
1665
|
+
9471/3 title Desmoplastic nodular medulloblastoma
|
1666
|
+
9471/3 sub Desmoplastic medulloblastoma
|
1667
|
+
9471/3 sub Circumscribed arachnoidal cerebellar sarcoma
|
1668
|
+
9472/3 title Medullomyoblastoma
|
1669
|
+
9473/3 title "Primitive neuroectodermal tumor, NOS"
|
1670
|
+
9473/3 sub "PNET, NOS"
|
1671
|
+
9473/3 sub "Central primitive neuroectodermal tumor, NOS"
|
1672
|
+
9473/3 sub CPNET
|
1673
|
+
9473/3 sub Supratentorial PNET
|
1674
|
+
9474/3 title Large cell medulloblastoma
|
1675
|
+
9480/3 title "Cerebellar sarcoma, NOS"
|
1676
|
+
9490/0 title Ganglioneuroma
|
1677
|
+
9490/3 title Ganglioneuroblastoma
|
1678
|
+
9491/0 title Ganglioneuromatosis
|
1679
|
+
9492/0 title Gangliocytoma
|
1680
|
+
9493/0 title Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos)
|
1681
|
+
9500/3 title "Neuroblastoma, NOS"
|
1682
|
+
9500/3 sub Sympathicoblastoma
|
1683
|
+
9500/3 sub Central neuroblastoma
|
1684
|
+
9501/0 title "Medulloepithelioma, benign"
|
1685
|
+
9501/0 sub "Diktyoma, benign"
|
1686
|
+
9501/3 title "Medulloepithelioma, NOS"
|
1687
|
+
9501/3 sub "Diktyoma, malignant"
|
1688
|
+
9502/0 title "Teratoid medulloepithelioma, benign"
|
1689
|
+
9502/3 title Teratoid medulloepithelioma
|
1690
|
+
9503/3 title "Neuroepithelioma, NOS"
|
1691
|
+
9504/3 title Spongioneuroblastoma
|
1692
|
+
9505/1 title "Ganglioglioma, NOS"
|
1693
|
+
9505/1 sub Glioneuroma
|
1694
|
+
9505/1 sub Neuroastrocytoma
|
1695
|
+
9505/3 title "Ganglioglioma, anaplastic"
|
1696
|
+
9506/1 title Central neurocytoma
|
1697
|
+
9506/1 sub Neurocytoma
|
1698
|
+
9506/1 sub Cerebellar liponeurocytoma
|
1699
|
+
9506/1 sub Lipomatous medulloblastoma
|
1700
|
+
9506/1 sub Neurolipocytoma
|
1701
|
+
9506/1 sub Medullocytoma
|
1702
|
+
9507/0 title Pacinian tumor
|
1703
|
+
9508/3 title Atypical teratoid/rhabdoid tumor
|
1704
|
+
9510/0 title Retinocytoma
|
1705
|
+
9510/3 title "Retinoblastoma, NOS"
|
1706
|
+
9511/3 title "Retinoblastoma, differentiated"
|
1707
|
+
9512/3 title "Retinoblastoma, undifferentiated"
|
1708
|
+
9513/3 title "Retinoblastoma, diffuse"
|
1709
|
+
9514/1 title "Retinoblastoma, spontaneously regressed"
|
1710
|
+
9520/3 title Olfactory neurogenic tumor
|
1711
|
+
9521/3 title Olfactory neurocytoma
|
1712
|
+
9521/3 sub Esthesioneurocytoma
|
1713
|
+
9522/3 title Olfactory neuroblastoma
|
1714
|
+
9522/3 sub Esthesioneuroblastoma
|
1715
|
+
9523/3 title Olfactory neuroepithelioma
|
1716
|
+
9523/3 sub Esthesioneuroepithelioma
|
1717
|
+
9530/0 title "Meningioma, NOS"
|
1718
|
+
9530/0 sub Microcystic meningioma
|
1719
|
+
9530/0 sub Secretory meningioma
|
1720
|
+
9530/0 sub Lymphoplasmacyte-rich meningioma
|
1721
|
+
9530/0 sub Metaplastic meningioma
|
1722
|
+
9530/1 title "Meningiomatosis, NOS"
|
1723
|
+
9530/1 sub Diffuse meningiomatosis
|
1724
|
+
9530/1 sub Multiple meningiomas
|
1725
|
+
9530/3 title "Meningioma, malignant"
|
1726
|
+
9530/3 sub "Meningioma, anaplastic"
|
1727
|
+
9530/3 sub Leptomeningeal sarcoma
|
1728
|
+
9530/3 sub Meningeal sarcoma
|
1729
|
+
9530/3 sub Meningothelial sarcoma
|
1730
|
+
9531/0 title Meningothelial meningioma
|
1731
|
+
9531/0 sub Endotheliomatous meningioma
|
1732
|
+
9531/0 sub Syncytial meningioma
|
1733
|
+
9532/0 title Fibrous meningioma
|
1734
|
+
9532/0 sub Fibroblastic meningioma
|
1735
|
+
9533/0 title Psammomatous meningioma
|
1736
|
+
9534/0 title Angiomatous meningioma
|
1737
|
+
9535/0 title Hemangioblastic meningioma
|
1738
|
+
9535/0 sub Angioblastic meningioma
|
1739
|
+
9537/0 title Transitional meningioma
|
1740
|
+
9537/0 sub Mixed meningioma
|
1741
|
+
9538/1 title Clear cell meningioma
|
1742
|
+
9538/1 sub Chordoid meningioma
|
1743
|
+
9538/3 title Papillary meningioma
|
1744
|
+
9538/3 sub Rhabdoid meningioma
|
1745
|
+
9539/1 title Atypical meningioma
|
1746
|
+
9539/3 title Meningeal sarcomatosis
|
1747
|
+
9540/0 title "Neurofibroma, NOS"
|
1748
|
+
9540/1 title "Neurofibromatosis, NOS"
|
1749
|
+
9540/1 sub Multiple neurofibromatosis
|
1750
|
+
9540/1 sub Von Recklinghausen disease
|
1751
|
+
9540/1 sub Recklinghausen disease
|
1752
|
+
9540/3 title Malignant peripheral nerve sheath tumor
|
1753
|
+
9540/3 sub "MPNST, NOS"
|
1754
|
+
9540/3 sub Neurofibrosarcoma
|
1755
|
+
9540/3 sub Neurogenic sarcoma
|
1756
|
+
9540/3 sub Neurosarcoma
|
1757
|
+
9540/3 sub MPNST with glandular differentiation
|
1758
|
+
9540/3 sub Epithelioid MPNST
|
1759
|
+
9540/3 sub MPNST with mesenchymal differentiation
|
1760
|
+
9540/3 sub Melanotic MPNST
|
1761
|
+
9540/3 sub Melanotic psammomatous MPNST
|
1762
|
+
9541/0 title Melanotic neurofibroma
|
1763
|
+
9550/0 title Plexiform neurofibroma
|
1764
|
+
9550/0 sub Plexiform neuroma
|
1765
|
+
9560/0 title "Neurilemoma, NOS"
|
1766
|
+
9560/0 sub "Schwannoma, NOS"
|
1767
|
+
9560/0 sub Neurinoma
|
1768
|
+
9560/0 sub Acoustic neuroma
|
1769
|
+
9560/0 sub Pigmented schwannoma
|
1770
|
+
9560/0 sub Melanotic schwannoma
|
1771
|
+
9560/0 sub Plexiform schwannoma
|
1772
|
+
9560/0 sub Cellular schwannoma
|
1773
|
+
9560/0 sub Degenerated schwannoma
|
1774
|
+
9560/0 sub Ancient schwannoma
|
1775
|
+
9560/0 sub Psammomatous schwannoma
|
1776
|
+
9560/1 title Neurinomatosis
|
1777
|
+
9560/3 title "Neurilemoma, malignant"
|
1778
|
+
9560/3 sub "Malignant schwannoma, NOS"
|
1779
|
+
9560/3 sub Neurilemosarcoma
|
1780
|
+
9561/3 title Malignant peripheral nerve sheath tumor with rhabdomyoblastic differentiation
|
1781
|
+
9561/3 sub MPNST with rhabdomyoblastic differentiation
|
1782
|
+
9561/3 sub "Triton tumor, malignant"
|
1783
|
+
9561/3 sub Malignant schwannoma with rhabdomyoblastic differentiation
|
1784
|
+
9562/0 title Neurothekeoma
|
1785
|
+
9562/0 sub Nerve sheath myxoma
|
1786
|
+
9570/0 title "Neuroma, NOS"
|
1787
|
+
9571/0 title "Perineurioma, NOS"
|
1788
|
+
9571/0 sub Intraneural perineurioma
|
1789
|
+
9571/0 sub Soft tissue perineurioma
|
1790
|
+
9571/3 title "Perineurioma, malignant"
|
1791
|
+
9571/3 sub Perineural MPNST
|
1792
|
+
9580/0 title "Granular cell tumor, NOS"
|
1793
|
+
9580/0 sub "Granular cell myoblastoma, NOS"
|
1794
|
+
9580/3 title "Granular cell tumor, malignant"
|
1795
|
+
9580/3 sub "Granular cell myoblastoma, malignant"
|
1796
|
+
9581/3 title Alveolar soft part sarcoma
|
1797
|
+
9582/0 title Granular cell tumor of the sellar region
|
1798
|
+
9590/3 title "Malignant lymphoma, NOS"
|
1799
|
+
9590/3 sub "Lymphoma, NOS"
|
1800
|
+
9590/3 sub Microglioma
|
1801
|
+
9591/3 title "Malignant lymphoma, non-Hodgkin, NOS"
|
1802
|
+
9591/3 sub "Non-Hodgkin lymphoma, NOS"
|
1803
|
+
9591/3 sub "B cell lymphoma, NOS"
|
1804
|
+
9591/3 sub "Malignant lymphoma, non-cleaved cell, NOS"
|
1805
|
+
9591/3 sub "Malignant lymphoma, diffuse, NOS"
|
1806
|
+
9591/3 sub "Malignant lymphoma, lymphocytic, intermediate differentiation, nodular"
|
1807
|
+
9591/3 sub "Malignant lymphoma, small cell, noncleaved, diffuse"
|
1808
|
+
9591/3 sub "Malignant lymphoma, undifferentiated cell, non-Burkitt"
|
1809
|
+
9591/3 sub "Malignant lymphoma, undifferentiated cell type, NOS"
|
1810
|
+
9591/3 sub "Lymphosarcoma, NOS"
|
1811
|
+
9591/3 sub "Lymphosarcoma, diffuse"
|
1812
|
+
9591/3 sub "Reticulum cell sarcoma, NOS"
|
1813
|
+
9591/3 sub "Reticulum cell sarcoma, diffuse"
|
1814
|
+
9591/3 sub "Reticulosarcoma, NOS"
|
1815
|
+
9591/3 sub "Reticulosarcoma, diffuse"
|
1816
|
+
9591/3 sub "Malignant lymphoma, small cleaved cell, diffuse"
|
1817
|
+
9591/3 sub "Malignant lymphoma, lymphocytic, poorly differentiated, diffuse"
|
1818
|
+
9591/3 sub "Malignant lymphoma, small cleaved cell, NOS"
|
1819
|
+
9591/3 sub "Malignant lymphoma, cleaved cell, NOS"
|
1820
|
+
9596/3 title Composite Hodgkin and non-Hodgkin lymphoma
|
1821
|
+
9650/3 title "Hodgkin lymphoma, NOS"
|
1822
|
+
9650/3 sub "Hodgkin disease, NOS"
|
1823
|
+
9650/3 sub "Malignant lymphoma, Hodgkin"
|
1824
|
+
9651/3 title "Hodgkin lymphoma, lymphocyte-rich"
|
1825
|
+
9651/3 sub "Classical Hodgkin lymphoma, lymphocyte- rich"
|
1826
|
+
9651/3 sub "Hodgkin disease, lymphocyte predominance, NOS"
|
1827
|
+
9651/3 sub "Hodgkin disease, lymphocytic-histiocytic predominance"
|
1828
|
+
9651/3 sub "Hodgkin disease, lymphocyte predominance, diffuse"
|
1829
|
+
9652/3 title "Hodgkin lymphoma, mixed cellularity, NOS"
|
1830
|
+
9652/3 sub "Classical Hodgkin lymphoma, mixed cellularity, NOS"
|
1831
|
+
9653/3 title "Hodgkin lymphoma, lymphocyte depletion, NOS"
|
1832
|
+
9653/3 sub "Classical Hodgkin lymphoma, lymphocyte depletion, NOS"
|
1833
|
+
9654/3 title "Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis"
|
1834
|
+
9654/3 sub "Classical Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis"
|
1835
|
+
9655/3 title "Hodgkin lymphoma, lymphocyte depletion, reticular"
|
1836
|
+
9655/3 sub "Classical Hodgkin lymphoma, lymphocyte depletion, reticular"
|
1837
|
+
9659/3 title "Hodgkin lymphoma, nodular lymphocyte predominance"
|
1838
|
+
9659/3 sub "Hodgkin lymphoma, lymphocyte predominance, nodular"
|
1839
|
+
9659/3 sub "Hodgkin paragranuloma, NOS"
|
1840
|
+
9659/3 sub "Hodgkin paragranuloma, nodular"
|
1841
|
+
9661/3 title Hodgkin granuloma
|
1842
|
+
9662/3 title Hodgkin sarcoma
|
1843
|
+
9663/3 title "Hodgkin lymphoma, nodular sclerosis, NOS"
|
1844
|
+
9663/3 sub "Classical Hodgkin lymphoma, nodular sclerosis, NOS"
|
1845
|
+
9663/3 sub "Hodgkin disease, nodular sclerosis, NOS"
|
1846
|
+
9664/3 title "Hodgkin lymphoma, nodular sclerosis, cellular phase"
|
1847
|
+
9664/3 sub "Classical Hodgkin lymphoma, nodular sclerosis, cellular phase"
|
1848
|
+
9665/3 title "Hodgkin lymphoma, nodular sclerosis, grade 1"
|
1849
|
+
9665/3 sub "Classical Hodgkin lymphoma, nodular sclerosis, grade 1"
|
1850
|
+
9665/3 sub "Hodgkin disease, nodular sclerosis, lymphocyte predominance"
|
1851
|
+
9665/3 sub "Hodgkin disease, nodular sclerosis, mixed cellularity"
|
1852
|
+
9667/3 title "Hodgkin lymphoma, nodular sclerosis, grade 2"
|
1853
|
+
9667/3 sub "Classical Hodgkin lymphoma, nodular sclerosis, grade 2"
|
1854
|
+
9667/3 sub "Hodgkin disease, nodular sclerosis, lymphocyte depletion"
|
1855
|
+
9667/3 sub "Hodgkin disease, nodular sclerosis, syncytial variant"
|
1856
|
+
9670/3 title "Malignant lymphoma, small B lymphocytic, NOS"
|
1857
|
+
9670/3 sub "Malignant lymphoma, small lymphocytic, NOS"
|
1858
|
+
9670/3 sub "Malignant lymphoma, lymphocytic, well differentiated, diffuse"
|
1859
|
+
9670/3 sub "Malignant lymphoma, lymphocytic, NOS"
|
1860
|
+
9670/3 sub "Malignant lymphoma, lymphocytic, diffuse, NOS"
|
1861
|
+
9670/3 sub "Malignant lymphoma, small cell, NOS"
|
1862
|
+
9670/3 sub "Malignant lymphoma, small lymphocytic, diffuse"
|
1863
|
+
9670/3 sub "Malignant lymphoma, small cell diffuse"
|
1864
|
+
9671/3 title "Malignant lymphoma, lymphoplasmacytic"
|
1865
|
+
9671/3 sub "Malignant lymphoma, lymphoplasmacytoid"
|
1866
|
+
9671/3 sub Immunocytoma
|
1867
|
+
9671/3 sub "Malignant lymphoma, plasmacytoid"
|
1868
|
+
9671/3 sub Plasmacytic lymphoma
|
1869
|
+
9673/3 title Mantle cell lymphoma
|
1870
|
+
9673/3 sub Mantle zone lymphoma
|
1871
|
+
9673/3 sub "Malignant lymphoma, lymphocytic, intermediate differentiation, diffuse"
|
1872
|
+
9673/3 sub "Malignant lymphoma, centrocytic"
|
1873
|
+
9673/3 sub Malignant lymphomatous polyposis
|
1874
|
+
9675/3 title "Malignant lymphoma, mixed small and large cell, diffuse"
|
1875
|
+
9675/3 sub "Malignant lymphoma, mixed lymphocytic-histiocytic, diffuse"
|
1876
|
+
9675/3 sub "Malignant lymphoma, mixed cell type, diffuse"
|
1877
|
+
9675/3 sub "Malignant lymphoma, centroblastic- centrocytic, NOS"
|
1878
|
+
9675/3 sub "Malignant lymphoma, centroblastic- centrocytic, diffuse"
|
1879
|
+
9678/3 title Primary effusion lymphoma
|
1880
|
+
9679/3 title Mediastinal large B-cell lymphoma
|
1881
|
+
9679/3 sub Thymic large B-cell lymphoma
|
1882
|
+
9680/3 title "Malignant lymphoma, large B-cell, diffuse, NOS"
|
1883
|
+
9680/3 sub "Diffuse large B-cell lymphoma, NOS"
|
1884
|
+
9680/3 sub "Malignant lymphoma, large cell, NOS"
|
1885
|
+
9680/3 sub "Malignant lymphoma, large B-cell, NOS"
|
1886
|
+
9680/3 sub "Malignant lymphoma, histiocytic, NOS"
|
1887
|
+
9680/3 sub "Malignant lymphoma, histiocytic, diffuse"
|
1888
|
+
9680/3 sub "Malignant lymphoma, large cell, cleaved and noncleaved"
|
1889
|
+
9680/3 sub "Malignant lymphoma, large cell, diffuse, NOS"
|
1890
|
+
9680/3 sub "Malignant lymphoma, large cleaved cell, NOS"
|
1891
|
+
9680/3 sub "Malignant lymphoma, large cell, cleaved, diffuse"
|
1892
|
+
9680/3 sub "Malignant lymphoma, large cell, cleaved, NOS"
|
1893
|
+
9680/3 sub "Malignant lymphoma, large cell, noncleaved, diffuse"
|
1894
|
+
9680/3 sub "Malignant lymphoma, large cell, noncleaved, NOS"
|
1895
|
+
9680/3 sub "Malignant lymphoma, noncleaved, diffuse, NOS"
|
1896
|
+
9680/3 sub "Malignant lymphoma, noncleaved, NOS"
|
1897
|
+
9680/3 sub "Malignant lymphoma, large B-cell, diffuse, centroblastic, NOS"
|
1898
|
+
9680/3 sub "Malignant lymphoma, centroblastic, NOS"
|
1899
|
+
9680/3 sub "Malignant lymphoma, centroblastic, diffuse"
|
1900
|
+
9680/3 sub Intravascular large B-cell lymphoma
|
1901
|
+
9680/3 sub Intravascular B-cell lymphoma
|
1902
|
+
9680/3 sub Angioendotheliomatosis
|
1903
|
+
9680/3 sub Angiotropic lymphoma
|
1904
|
+
9680/3 sub T-cell rich large B-cell lymphoma
|
1905
|
+
9680/3 sub Histiocyte-rich large B-cell lymphoma
|
1906
|
+
9680/3 sub T-cell rich/histiocyte-rich large B-cell lymphoma
|
1907
|
+
9680/3 sub Anaplastic large B-cell lymphoma
|
1908
|
+
9684/3 title "Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS"
|
1909
|
+
9684/3 sub "Malignant lymphoma, immunoblastic, NOS"
|
1910
|
+
9684/3 sub Immunoblastic sarcoma
|
1911
|
+
9684/3 sub "Malignant lymphoma, large cell, immunoblastic"
|
1912
|
+
9684/3 sub Plasmablastic lymphoma
|
1913
|
+
9687/3 title "Burkitt lymphoma, NOS"
|
1914
|
+
9687/3 sub Burkitt tumor
|
1915
|
+
9687/3 sub "Malignant lymphoma, undifferentiated, Burkitt type"
|
1916
|
+
9687/3 sub "Malignant lymphoma, small noncleaved, Burkitt type"
|
1917
|
+
9687/3 sub Burkitt-like lymphoma
|
1918
|
+
9689/3 title Splenic marginal zone B-cell lymphoma
|
1919
|
+
9689/3 sub "Splenic marginal zone lymphoma, NOS"
|
1920
|
+
9689/3 sub Splenic lymphoma with villous lymphocytes
|
1921
|
+
9690/3 title "Follicular lymphoma, NOS"
|
1922
|
+
9690/3 sub "Malignant lymphoma, follicular, NOS"
|
1923
|
+
9690/3 sub "Malignant lymphoma, follicle center, follicular"
|
1924
|
+
9690/3 sub "Malignant lymphoma, follicle center, NOS"
|
1925
|
+
9690/3 sub "Malignant lymphoma, centroblastic- centrocytic, follicular"
|
1926
|
+
9690/3 sub "Malignant lymphoma, nodular, NOS"
|
1927
|
+
9690/3 sub "Malignant lymphoma, lymphocytic, nodular, NOS"
|
1928
|
+
9691/3 title "Follicular lymphoma, grade 2"
|
1929
|
+
9691/3 sub "Malignant lymphoma, mixed small cleaved and large cell, follicular"
|
1930
|
+
9691/3 sub "Malignant lymphoma, mixed lymphocytic-histiocytic, nodular"
|
1931
|
+
9691/3 sub "Malignant lymphoma, mixed cell type, follicular"
|
1932
|
+
9691/3 sub "Malignant lymphoma, mixed cell type, nodular"
|
1933
|
+
9695/3 title "Follicular lymphoma, grade 1"
|
1934
|
+
9695/3 sub "Malignant lymphoma, small cleaved cell, follicular"
|
1935
|
+
9695/3 sub "Follicular lymphoma, small cleaved cell"
|
1936
|
+
9695/3 sub "Malignant lymphoma, lymphocytic, poorly differentiated, nodular"
|
1937
|
+
9698/3 title "Follicular lymphoma, grade 3"
|
1938
|
+
9698/3 sub "Malignant lymphoma, large cell, follicular, NOS"
|
1939
|
+
9698/3 sub "Malignant lymphoma, large cell, noncleaved, follicular"
|
1940
|
+
9698/3 sub "Malignant lymphoma, histiocytic, nodular"
|
1941
|
+
9698/3 sub "Malignant lymphoma, noncleaved cell, follicular, NOS"
|
1942
|
+
9698/3 sub "Malignant lymphoma, large cleaved cell, follicular"
|
1943
|
+
9698/3 sub "Malignant lymphoma, centroblastic, follicular"
|
1944
|
+
9698/3 sub "Malignant lymphoma, lymphocytic, well differentiated, nodular"
|
1945
|
+
9699/3 title "Marginal zone B-cell lymphoma, NOS"
|
1946
|
+
9699/3 sub "Marginal zone lymphoma, NOS"
|
1947
|
+
9699/3 sub Mucosal-associated lymphoid tissue lymphoma
|
1948
|
+
9699/3 sub MALT lymphoma
|
1949
|
+
9699/3 sub Bronchial-associated lymphoid tissue lymphoma
|
1950
|
+
9699/3 sub BALT lymphoma
|
1951
|
+
9699/3 sub Skin-associated lymphoid tissue lymphoma
|
1952
|
+
9699/3 sub SALT lymphoma
|
1953
|
+
9699/3 sub Monocytoid B-cell lymphoma
|
1954
|
+
9699/3 sub Nodal marginal zone lymphoma
|
1955
|
+
9700/3 title Mycosis fungoides
|
1956
|
+
9700/3 sub Pagetoid reticulosis
|
1957
|
+
9701/3 title Sezary syndrome
|
1958
|
+
9701/3 sub Sezary disease
|
1959
|
+
9702/3 title "Mature T-cell lymphoma, NOS"
|
1960
|
+
9702/3 sub "Peripheral T-cell lymphoma, NOS"
|
1961
|
+
9702/3 sub "T-cell lymphoma, NOS"
|
1962
|
+
9702/3 sub "Peripheral T-cell lymphoma, pleomorphic small cell"
|
1963
|
+
9702/3 sub "Peripheral T-cell lymphoma, pleomorphic medium and large cell"
|
1964
|
+
9702/3 sub "Peripheral T-cell lymphoma, large cell"
|
1965
|
+
9702/3 sub T-zone lymphoma
|
1966
|
+
9702/3 sub Lymphoepithelioid lymphoma
|
1967
|
+
9702/3 sub Lennert lymphoma
|
1968
|
+
9705/3 title Angioimmunoblastic T-cell lymphoma
|
1969
|
+
9705/3 sub "Peripheral T-cell lymphoma, AILD (Angioimmunoblastic"
|
1970
|
+
9705/3 sub Angioimmunoblastic lymphoma
|
1971
|
+
9708/3 title Subcutaneous panniculitis-like T-cell lymphoma
|
1972
|
+
9709/3 title "Cutaneous T-cell lymphoma, NOS"
|
1973
|
+
9709/3 sub "Cutaneous lymphoma, NOS"
|
1974
|
+
9714/3 title "Anaplastic large cell lymphoma, T cell and Null cell type"
|
1975
|
+
9714/3 sub Large cell (Ki-1+) lymphoma
|
1976
|
+
9714/3 sub "Anaplastic large cell lymphoma, NOS"
|
1977
|
+
9714/3 sub "Anaplastic large cell lymphoma, CD30+"
|
1978
|
+
9716/3 title Hepatosplenic (gamma-delta) cell lymphoma
|
1979
|
+
9717/3 title Intestinal T-cell lymphoma
|
1980
|
+
9717/3 sub Enteropathy type intestinal T-cell lymphoma
|
1981
|
+
9717/3 sub Enteropathy associated T-cell lymphoma
|
1982
|
+
9718/3 title Primary cutaneous CD30+ T-cell lymphoproliferative disorder
|
1983
|
+
9718/3 sub Lymphomatoid papulosis
|
1984
|
+
9718/3 sub Primary cutaneous anaplastic large cell lymphoma
|
1985
|
+
9718/3 sub Primary cutaneous CD30+ large T-cell lymphoma
|
1986
|
+
9719/3 title "NK/T-cell lymphoma, nasal and nasal-type"
|
1987
|
+
9719/3 sub T/NK-cell lymphoma
|
1988
|
+
9719/3 sub Angiocentric T-cell lymphoma
|
1989
|
+
9719/3 sub "Malignant reticulosis, NOS"
|
1990
|
+
9719/3 sub Malignant midline reticulosis
|
1991
|
+
9719/3 sub Polymorphic reticulosis
|
1992
|
+
9727/3 title "Precursor cell lymphoblastic lymphoma, NOS"
|
1993
|
+
9727/3 sub "Malignant lymphoma, lymphoblastic, NOS"
|
1994
|
+
9727/3 sub "Malignant lymphoma, convoluted cell"
|
1995
|
+
9727/3 sub Lymphoblastoma
|
1996
|
+
9728/3 title Precursor B-cell lymphoblastic lymphoma
|
1997
|
+
9729/3 title Precursor T-cell lymphoblastic lymphoma
|
1998
|
+
9731/3 title "Plasmacytoma, NOS"
|
1999
|
+
9731/3 sub Plasmacytoma of bone
|
2000
|
+
9731/3 sub Plasma cell tumor
|
2001
|
+
9731/3 sub Solitary myeloma
|
2002
|
+
9731/3 sub Solitary plasmacytoma
|
2003
|
+
9732/3 title Multiple myeloma
|
2004
|
+
9732/3 sub "Myeloma, NOS"
|
2005
|
+
9732/3 sub Myelomatosis
|
2006
|
+
9732/3 sub Plasma cell myeloma
|
2007
|
+
9733/3 title Plasma cell leukemia
|
2008
|
+
9733/3 sub Plasmacytic leukemia
|
2009
|
+
9734/3 title "Plasmacytoma, extramedullary (not occurring in bone)"
|
2010
|
+
9740/1 title "Mastocytoma, NOS"
|
2011
|
+
9740/1 sub "Mast cell tumor, NOS"
|
2012
|
+
9740/3 title Mast cell sarcoma
|
2013
|
+
9740/3 sub Malignant mast cell tumor
|
2014
|
+
9740/3 sub Malignant mastocytoma
|
2015
|
+
9741/3 title Malignant mastocytosis
|
2016
|
+
9741/3 sub Systemic tissue mast cell disease
|
2017
|
+
9742/3 title Mast cell leukemia
|
2018
|
+
9750/3 title Malignant histiocytosis
|
2019
|
+
9750/3 sub Histiocytic medullary reticulosis
|
2020
|
+
9751/1 title "Langerhans cell histiocytosis, NOS"
|
2021
|
+
9751/1 sub Langerhans cell granulomatosis
|
2022
|
+
9751/1 sub "Histiocytosis X, NOS"
|
2023
|
+
9752/1 title "Langerhans cell histiocytosis, unifocal"
|
2024
|
+
9752/1 sub "Langerhans cell granulomatosis, unifocal"
|
2025
|
+
9752/1 sub "Langerhans cell histiocytosis, mono-ostotic"
|
2026
|
+
9752/1 sub Eosinophilic granuloma
|
2027
|
+
9753/1 title "Langerhans cell histiocytosis, multifocal"
|
2028
|
+
9753/1 sub "Langerhans cell histiocytosis, poly-ostotic"
|
2029
|
+
9753/1 sub Hand-Schuller-Christian disease
|
2030
|
+
9754/3 title "Langerhans cell histiocytosis, disseminated"
|
2031
|
+
9754/3 sub "Langerhans cell histiocytosis, generalized"
|
2032
|
+
9754/3 sub Letterer-Siwe disease
|
2033
|
+
9754/3 sub Acute progressive histiocytosis X
|
2034
|
+
9754/3 sub Nonlipid reticuloendotheliosis
|
2035
|
+
9755/3 title Histiocytic sarcoma
|
2036
|
+
9755/3 sub True histiocytic lymphoma
|
2037
|
+
9756/3 title Langerhans cell sarcoma
|
2038
|
+
9757/3 title Interdigitating dendritic cell sarcoma
|
2039
|
+
9757/3 sub Interdigitating cell sarcoma
|
2040
|
+
9757/3 sub "Dendritic cell sarcoma, NOS"
|
2041
|
+
9758/3 title Follicular dendritic cell sarcoma
|
2042
|
+
9758/3 sub Follicular dendritic cell tumor
|
2043
|
+
9760/3 title "Immunoproliferative disease, NOS"
|
2044
|
+
9761/3 title Waldenstrom macroglobulinemia
|
2045
|
+
9762/3 title "Heavy chain disease, NOS"
|
2046
|
+
9762/3 sub Alpha heavy chain disease
|
2047
|
+
9762/3 sub Mu heavy chain disease
|
2048
|
+
9762/3 sub Gamma heavy chain disease
|
2049
|
+
9762/3 sub Franklin disease
|
2050
|
+
9764/3 title Immunoproliferative small intestinal disease
|
2051
|
+
9764/3 sub Mediterranean lymphoma
|
2052
|
+
9765/1 title Monoclonal gammopathy of undetermined significance
|
2053
|
+
9765/1 sub MGUS
|
2054
|
+
9765/1 sub "Monoclonal gammopathy, NOS"
|
2055
|
+
9766/1 title Angiocentric immunoproliferative lesion
|
2056
|
+
9766/1 sub Lymphoid granulomatosis
|
2057
|
+
9767/1 title Angioimmunoblastic lymphadenopathy (AIC)
|
2058
|
+
9767/1 sub Immunoblastic lymphadenopathy (IBL) [obs]
|
2059
|
+
9768/1 title T-gamma lymphoproliferative disease
|
2060
|
+
9769/1 title Immunoglobulin deposition disease
|
2061
|
+
9769/1 sub Systemic light chain disease
|
2062
|
+
9769/1 sub Primary amyloidosis
|
2063
|
+
9800/3 title "Leukemia, NOS"
|
2064
|
+
9800/3 sub "Subacute leukemia, NOS"
|
2065
|
+
9800/3 sub "Chronic leukemia, NOS"
|
2066
|
+
9800/3 sub "Aleukemic leukemia, NOS"
|
2067
|
+
9801/3 title "Acute leukemia, NOS"
|
2068
|
+
9801/3 sub Blast cell leukemia
|
2069
|
+
9801/3 sub Undifferentiated leukemia
|
2070
|
+
9801/3 sub Stem cell leukemia
|
2071
|
+
9805/3 title Acute biphenotypic leukemia
|
2072
|
+
9805/3 sub Acute mixed lineage leukemia
|
2073
|
+
9805/3 sub Acute bilineal leukemia
|
2074
|
+
9820/3 title "Lymphoid leukemia, NOS"
|
2075
|
+
9820/3 sub "Lymphocytic leukemia, NOS"
|
2076
|
+
9820/3 sub "Lymphatic leukemia, NOS"
|
2077
|
+
9820/3 sub Subacute lymphoid leukemia
|
2078
|
+
9820/3 sub Subacute lymphocytic leukemia
|
2079
|
+
9820/3 sub Subacute lymphatic leukemia
|
2080
|
+
9820/3 sub Aleukemic lymphoid leukemia
|
2081
|
+
9820/3 sub Aleukemic lymphocytic leukemia
|
2082
|
+
9820/3 sub Aleukemic lymphatic leukemia
|
2083
|
+
9820/3 sub Lymphosarcoma cell leukemia
|
2084
|
+
9823/3 title B-cell chronic lymphocytic leukemia/small lymphocytic lymphoma
|
2085
|
+
9823/3 sub "Chronic lymphocytic leukemia, B-cell type"
|
2086
|
+
9823/3 sub Chronic lymphocytic leukemia
|
2087
|
+
9823/3 sub Chronic lymphoid leukemia
|
2088
|
+
9823/3 sub Chronic lymphatic leukemia
|
2089
|
+
9826/3 title Burkitt cell leukemia
|
2090
|
+
9826/3 sub "Acute leukemia, Burkitt type"
|
2091
|
+
9826/3 sub B-ALL
|
2092
|
+
9826/3 sub FAB L3
|
2093
|
+
9826/3 sub "Acute lymphoblastic leukemia, mature B-cell type"
|
2094
|
+
9827/3 title Adult T-cell leukemia/lymphoma (HTLV-1 positive)
|
2095
|
+
9827/3 sub Adult T-cell lymphoma/leukemia
|
2096
|
+
9827/3 sub Adult T-cell lymphoma
|
2097
|
+
9827/3 sub Adult T-cell leukemia
|
2098
|
+
9831/1 title T-cell large granular lymphocytic leukemia
|
2099
|
+
9831/1 sub T-cell large granular lymphocytosis
|
2100
|
+
9831/1 sub NK-cell large granular lymphocytic leukemia
|
2101
|
+
9831/1 sub "Large granular lymphocytosis, NOS"
|
2102
|
+
9832/3 title "Prolymphocytic leukemia, NOS"
|
2103
|
+
9833/3 title "Prolymphocytic leukemia, B-cell type"
|
2104
|
+
9834/3 title "Prolymphocytic leukemia, T-cell type"
|
2105
|
+
9835/3 title "Precursor cell lymphoblastic leukemia, NOS"
|
2106
|
+
9835/3 sub "Precursor cell lymphoblastic leukemia, not phenotyped"
|
2107
|
+
9835/3 sub "Acute lymphoblastic leukemia, NOS"
|
2108
|
+
9835/3 sub "Acute lymphoblastic leukemia, precursor-cell type"
|
2109
|
+
9835/3 sub "Acute lymphoblastic leukemia-lymphoma, NOS"
|
2110
|
+
9835/3 sub Acute lymphocytic leukemia
|
2111
|
+
9835/3 sub Acute lymphoid leukemia
|
2112
|
+
9835/3 sub Acute lymphatic leukemia
|
2113
|
+
9835/3 sub "Lymphoblastic leukemia, NOS"
|
2114
|
+
9835/3 sub FAB L1
|
2115
|
+
9835/3 sub "Acute lymphoblastic leukemia, L2 type, NOS"
|
2116
|
+
9835/3 sub FAB L2
|
2117
|
+
9836/3 title Precursor B-cell lymphoblastic leukemia
|
2118
|
+
9836/3 sub Pro-B ALL
|
2119
|
+
9836/3 sub Common precursor B ALL
|
2120
|
+
9836/3 sub Pre-B ALL
|
2121
|
+
9836/3 sub Pre-pre-B ALL
|
2122
|
+
9836/3 sub Common ALL
|
2123
|
+
9836/3 sub c-ALL
|
2124
|
+
9837/3 title Precursor T-cell lymphoblastic leukemia
|
2125
|
+
9837/3 sub Pro-T ALL
|
2126
|
+
9837/3 sub Pre-T ALL
|
2127
|
+
9837/3 sub Cortical T ALL
|
2128
|
+
9837/3 sub Mature T ALL
|
2129
|
+
9840/3 title "Acute myeloid leukemia, M6 type"
|
2130
|
+
9840/3 sub Acute erythroid leukemia
|
2131
|
+
9840/3 sub M6A
|
2132
|
+
9840/3 sub M6B
|
2133
|
+
9840/3 sub Erythroleukemia
|
2134
|
+
9840/3 sub FAB M6
|
2135
|
+
9840/3 sub AML M6
|
2136
|
+
9840/3 sub "Erythremic myelosis, NOS"
|
2137
|
+
9840/3 sub Acute erythremia
|
2138
|
+
9840/3 sub Di Guglielmo disease
|
2139
|
+
9840/3 sub Acute erythremic myelosis
|
2140
|
+
9860/3 title "Myeloid leukemia, NOS"
|
2141
|
+
9860/3 sub "Non-lymphocytic leukemia, NOS"
|
2142
|
+
9860/3 sub "Granulocytic leukemia, NOS"
|
2143
|
+
9860/3 sub "Myelogenous leukemia, NOS"
|
2144
|
+
9860/3 sub "Myelomonocytic leukemia, NOS"
|
2145
|
+
9860/3 sub "Myelocytic leukemia, NOS"
|
2146
|
+
9860/3 sub Subacute myeloid leukemia
|
2147
|
+
9860/3 sub Subacute granulocytic leukemia
|
2148
|
+
9860/3 sub Subacute myelogenous leukemia
|
2149
|
+
9860/3 sub Aleukemic myeloid leukemia
|
2150
|
+
9860/3 sub Aleukemic granulocytic leukemia
|
2151
|
+
9860/3 sub Aleukemic myelogenous leukemia
|
2152
|
+
9860/3 sub Eosinophilic leukemia
|
2153
|
+
9860/3 sub "Monocytic leukemia, NOS"
|
2154
|
+
9860/3 sub Subacute monocytic leukemia
|
2155
|
+
9860/3 sub Chronic monocytic leukemia
|
2156
|
+
9860/3 sub Aleukemic monocytic leukemia
|
2157
|
+
9861/3 title "Acute myeloid leukemia, NOS"
|
2158
|
+
9861/3 sub Acute non-lymphocytic leukemia
|
2159
|
+
9861/3 sub Acute granulocytic leukemia
|
2160
|
+
9861/3 sub Acute myelogenous leukemia
|
2161
|
+
9861/3 sub Acute myelocytic leukemia
|
2162
|
+
9863/3 title "Chronic myeloid leukemia, NOS"
|
2163
|
+
9863/3 sub "Chronic granulocytic leukemia, NOS"
|
2164
|
+
9863/3 sub "Chronic myelogenous leukemia, NOS"
|
2165
|
+
9863/3 sub "Chronic myelocytic leukemia, NOS"
|
2166
|
+
9866/3 title Acute promyelocytic leukemia
|
2167
|
+
9866/3 sub "Acute promyelocytic leukemia, PML/RAR- alpha"
|
2168
|
+
9866/3 sub "Acute myeloid leukemia, t(15:17)(q22"
|
2169
|
+
9866/3 sub "Acute myeloid leukemia, PML/RAR-alpha"
|
2170
|
+
9866/3 sub "Acute promyelocytic leukemia, NOS"
|
2171
|
+
9866/3 sub FAB M3
|
2172
|
+
9867/3 title Acute myelomonocytic leukemia
|
2173
|
+
9867/3 sub FAB M4
|
2174
|
+
9870/3 title Acute basophilic leukemia
|
2175
|
+
9871/3 title Acute myeloid leukemia with abnormal marrow eosinophils
|
2176
|
+
9871/3 sub "Acute myeloid leukemia, inv(16)(p13;q22)"
|
2177
|
+
9871/3 sub "Acute myeloid leukemia, t(16;16)(p13;q11)"
|
2178
|
+
9871/3 sub "Acute myeloid leukemia, CBF-beta/MYH11"
|
2179
|
+
9871/3 sub Acute myelomonocytic leukemia with abnormal eosinophils
|
2180
|
+
9871/3 sub FAB M4Eo
|
2181
|
+
9872/3 title "Acute myeloid leukemia, minimal differentiation"
|
2182
|
+
9872/3 sub Acute myeloblastic leukemia
|
2183
|
+
9872/3 sub FAB M0
|
2184
|
+
9873/3 title Acute myeloid leukemia without maturation
|
2185
|
+
9873/3 sub FAB M1
|
2186
|
+
9874/3 title Acute myeloid leukemia with maturation
|
2187
|
+
9874/3 sub "FAB M2, NOS"
|
2188
|
+
9875/3 title "Chronic myelogenous leukemia, BCR/ABL positive"
|
2189
|
+
9875/3 sub "Chronic myelogenous leukemia, Philadelphia chromosome (Ph1) positive"
|
2190
|
+
9875/3 sub "Chronic myelogenous leukemia, t(9"
|
2191
|
+
9875/3 sub "Chronic granulocytic leukemia, Philadelphia chromosome (Ph1) positive"
|
2192
|
+
9875/3 sub "Chronic granulocytic leukemia, t(9"
|
2193
|
+
9875/3 sub "Chronic granulocytic leukemia, BCR/ABL"
|
2194
|
+
9876/3 title "Atypical chronic myeloid leukemia, BCR/ABL negative"
|
2195
|
+
9876/3 sub "Atypical chronic myeloid leukemia, Philadelphia chromosome (Ph1) negative"
|
2196
|
+
9891/3 title Acute monocytic leukemia
|
2197
|
+
9891/3 sub Acute monoblastic leukemia
|
2198
|
+
9891/3 sub "Monoblastic leukemia, NOS"
|
2199
|
+
9891/3 sub FAB M5
|
2200
|
+
9895/3 title Acute myeloid leukemia with multilineage dysplasia
|
2201
|
+
9895/3 sub Acute myeloid leukemia with prior myelodysplastic syndrome
|
2202
|
+
9895/3 sub Acute myeloid leukemia without prior myelodysplastic syndrome
|
2203
|
+
9896/3 title "Acute myeloid leukemia, t(8"
|
2204
|
+
9896/3 sub "Acute myeloid leukemia, AML1(CBF- alpha)/ETO"
|
2205
|
+
9896/3 sub "FAB M2, t(8"
|
2206
|
+
9896/3 sub "FAB M2, AML1(CBF-alpha)/ETO"
|
2207
|
+
9897/3 title "Acute myeloid leukemia, 11q23 abnormalities"
|
2208
|
+
9897/3 sub "Acute myeloid leukemia, MLL"
|
2209
|
+
9910/3 title Acute megakaryoblastic leukemia
|
2210
|
+
9910/3 sub Megakaryocytic leukemia
|
2211
|
+
9910/3 sub FAB M7
|
2212
|
+
9920/3 title "Therapy-related acute myeloid leukemia, NOS"
|
2213
|
+
9920/3 sub "Therapy-related acute myeloid leukemia, alkylating agent related"
|
2214
|
+
9920/3 sub "Therapy-related acute myeloid leukemia, epipodophyllotoxin-related"
|
2215
|
+
9930/3 title Myeloid sarcoma
|
2216
|
+
9930/3 sub Granulocytic sarcoma
|
2217
|
+
9930/3 sub Chloroma
|
2218
|
+
9931/3 title Acute panmyelosis with myelofibrosis
|
2219
|
+
9931/3 sub "Acute panmyelosis, NOS"
|
2220
|
+
9931/3 sub Acute myelofibrosis
|
2221
|
+
9931/3 sub "Acute myelosclerosis, NOS"
|
2222
|
+
9931/3 sub Malignant myelosclerosis
|
2223
|
+
9940/3 title Hairy cell leukemia
|
2224
|
+
9940/3 sub Hairy cell leukemia variant
|
2225
|
+
9940/3 sub Leukemic reticuloendotheliosis
|
2226
|
+
9945/3 title "Chronic myelomonocytic leukemia, NOS"
|
2227
|
+
9945/3 sub "Chronic myelomonocytic leukemia, Type I"
|
2228
|
+
9945/3 sub "Chronic myelomonocytic leukemia, Type II"
|
2229
|
+
9945/3 sub Chronic myelomonocytic leukemia in transformation
|
2230
|
+
9946/3 title Juvenile myelomonocytic leukemia
|
2231
|
+
9946/3 sub Juvenile chronic myelomonocytic leukemia
|
2232
|
+
9948/3 title Aggressive NK-cell leukemia
|
2233
|
+
9950/3 title Polycythemia vera
|
2234
|
+
9950/3 sub Polycythemia rubra vera
|
2235
|
+
9950/3 sub Proliferative polycythemia
|
2236
|
+
9950/3 sub Chronic erythremia
|
2237
|
+
9960/3 title "Chronic myeloproliferative disease, NOS"
|
2238
|
+
9960/3 sub Chronic myeloproliferative disorder
|
2239
|
+
9961/3 title Myelosclerosis with myeloid metaplasia
|
2240
|
+
9961/3 sub Myelofibrosis as a result of myeloproliferative disease
|
2241
|
+
9961/3 sub Chronic idiopathic myelofibrosis
|
2242
|
+
9961/3 sub Agnogenic myeloid metaplasia
|
2243
|
+
9961/3 sub Megakaryocytic myelosclerosis
|
2244
|
+
9961/3 sub Myelofibrosis with myeloid metaplasia
|
2245
|
+
9962/3 title Essential thrombocythemia
|
2246
|
+
9962/3 sub Idiopathic thrombocythemia
|
2247
|
+
9962/3 sub Essential hemorrhagic thrombocythemia
|
2248
|
+
9962/3 sub Idiopathic hemorrhagic thrombocythemia
|
2249
|
+
9963/3 title Chronic neutrophilic leukemia
|
2250
|
+
9964/3 title Hypereosinophilic syndrome
|
2251
|
+
9964/3 sub Chronic eosinophilic leukemia
|
2252
|
+
9970/1 title "Lymphoproliferative disorder, NOS"
|
2253
|
+
9970/1 sub "Lymphoproliferative disease, NOS"
|
2254
|
+
9975/1 title "Myeloproliferative disease, NOS"
|
2255
|
+
9980/3 title Refractory anemia
|
2256
|
+
9980/3 sub Refractory anemia without sideroblasts
|
2257
|
+
9982/3 title Refractory anemia with sideroblasts
|
2258
|
+
9982/3 sub Refractory anemia with ringed sideroblasts
|
2259
|
+
9982/3 sub RARS
|
2260
|
+
9983/3 title Refractory anemia with excess blasts
|
2261
|
+
9983/3 sub RAEB
|
2262
|
+
9983/3 sub RAEB I
|
2263
|
+
9983/3 sub RAEB II
|
2264
|
+
9984/3 title Refractory anemia with excess blasts in transformation
|
2265
|
+
9984/3 sub RAEB-T
|
2266
|
+
9985/3 title Refractory cytopenia with multilineage dysplasia
|
2267
|
+
9986/3 title Myelodysplastic syndrome with 5q deletion (5q-) syndrome
|
2268
|
+
9987/3 title "Therapy-related myelodysplastic syndrome, NOS"
|
2269
|
+
9987/3 sub "Therapy-related myelodysplastic syndrome, alkylating agent related"
|
2270
|
+
9987/3 sub "Therapy-related myelodysplastic syndrome, epipodophyllotoxin-related"
|
2271
|
+
9989/3 title "Myelodysplastic syndrome, NOS"
|
2272
|
+
9989/3 sub Preleukemia
|
2273
|
+
9989/3 sub Preleukemic syndrome
|